Translations by theadmin

theadmin has submitted the following strings to this translation. Contributions are visually coded: currently used translations, unreviewed suggestions, rejected suggestions.

19 of 9 results
1.
In-Game Menus
2014-03-29
Внутриигровые меню
2.
In many visual novels, the player is asked to make choices that control the outcome of the story. The Ren'Py language contains a menus statement that makes it easy to present choices to the user.
2014-03-29
Во многих визуальных новеллах игроку нужно сделать выбор, который решает исход сюжета. В языке Ren'Py существует оператор menu, который упрощает представление выбора пользователю.
3.
Here's an example of a menu statement::
2014-03-29
Вот пример оператора menu::
4.
The menu statement begins with the keyword menu. This may be followed by a label name, in which case it's equivalent to preceding the menu with that label. For example::
2014-03-29
Оператор menu начинается с ключевого слова menu. После него может следовать имя метки, что эквивалентно размещению этой метки до меню. Например::
5.
The menu statement is followed by an indented block. This block may contain a :ref:`say statement <say-statement>`, and must contain at least one menu choice. If the say statement is present, it is displayed on the screen at the same time as the menu.
2014-03-29
После оператора menu следует индентированный блок. Блок может содержать :ref:`оператор say <say-statement>`, и должен содержать хотя бы один выбор. Если присутствует оператор say, он отображается вместе с меню.
6.
**Menu Choices.** A menu choice is an option the user can select from the in-game menu. A menu choice begins with a string. The string may be followed by an if-clause, which makes the choice conditional. The menu choice ends with a colon, and must be followed by a block of Ren'Py statements.
2014-03-29
**Выборы меню.** Выбор меню - опция, которую пользователь может выбрать из внутриигрового меню. Выбор начинается со строки. После строки может следовать оператор if, который позволяет показывать выбор только при выполнений какого-либо условия. Выбор завершается двоеточием, после которого следует блок операторов Ren'Py.
7.
When the choice is selected, the block of code is run. If execution reaches the end of this block of code, it continues with the statement after the end of the menu statement.
2014-03-29
Когда этот выбор сделан, блок будет выполнен. Если блок завершен, выполнение продолжается по окончанию оператора menu.
8.
An if-clause consists of the keyword ``if``, followed by a python expression. The menu choice is only displayed if the expression is true. In the following menu::
2014-03-29
Оператор if состоит из ключевого слова ``if`` и выражения Python. Выбор отображается только тогда, когда выражение эквивалентно True. В следующем меню::
9.
The third choice will only be presented if the drank_tea variable is true.
2014-03-29
Третий выбор будет представлен только если переменная drank_tea равна True.