Browsing Yiddish translation

Don't show this notice anymore
Before translating, be sure to go through Launchpad Translators instructions.
312 of 16 results
3.
Note that is pages discusses statements that can be used inside Ren'Py script. Python code embedded in a Ren'Py game uses the Python while, if, and for statements, but can't embed Ren'Py script code.
(no translation yet)
Located in ../../source/conditional.rst:12
4.
If Statement
(no translation yet)
Located in ../../source/conditional.rst:19
5.
The if statement conditionally executes a block of code if a python expression is true. It consists of an ``if`` clause, zero or more ``elif`` clauses, and an optional``else`` clause.
(no translation yet)
Located in ../../source/conditional.rst:21
6.
Each clause should be on its own logical line, followed by a block of statements. The ``if`` and ``elif`` clauses are followed by an expression, while all clauses end with a colon. (:)
(no translation yet)
Located in ../../source/conditional.rst:25
7.
Examples are::
(no translation yet)
Located in ../../source/conditional.rst:29
8.
The expressions in the if statement are evaluated in order, from first to last. When an expression evaluates to true, the block corresponding to that statement is executed. When control reaches the end of the block, it proceeds to the statement following the if statement.
(no translation yet)
Located in ../../source/conditional.rst:45
9.
If all expressions evaluate to false, the block associated with the ``else`` clause is executed, if the ``else`` clause is present.
(no translation yet)
Located in ../../source/conditional.rst:51
10.
While Statement
(no translation yet)
Located in ../../source/conditional.rst:58
11.
The while statement executes a block of code while an expression evaluates true. For example::
(no translation yet)
Located in ../../source/conditional.rst:60
12.
The expression is evaluated when while statement is first reached, and then each time control reaches the end of the block. When the expression return a false value, the statement after the while statement is executed.
(no translation yet)
Located in ../../source/conditional.rst:80
312 of 16 results

This translation is managed by translation group launchpad-translators.

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

No-one has contributed to this translation yet.