Translations by Stephan Woidowski

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

119 of 19 results
~
If not None, the input is limited to being this many pixels wide, in the font used by the
2018-11-04
If not None, the input is limited to being this many pixels wide, in the font used by the
1.
Text Input
2018-10-30
Text Input
2.
With some limitations, Ren'Py can prompt the user to input a small amount of text. This prompting is done by the renpy.input function, which returns the entered text, allowing it to be saved in a variable or otherwise processed.
2018-10-30
With some limitations, Ren'Py can prompt the user to input a small amount of text. This prompting is done by the renpy.input function, which returns the entered text, allowing it to be saved in a variable or otherwise processed.
3.
Right now, text input is limited to languages that do not require input method (IME) support. Most western languages should work, but Chinese, Japanese, and Korean probably won't.
2018-10-30
Right now, text input is limited to languages that do not require input method (IME) support. Most western languages should work, but Chinese, Japanese, and Korean probably won't.
4.
The renpy.input function is defined as:
2018-10-30
The renpy.input function is defined as:
5.
Calling this function pops up a window asking the player to enter some text. It returns the entered text.
2018-10-30
Calling this function pops up a window asking the player to enter some text. It returns the entered text.
6.
`prompt`
2018-10-30
`prompt`
7.
A string giving a prompt to display to the player.
2018-10-30
A string giving a prompt to display to the player.
8.
`default`
2018-10-30
`default`
9.
A string giving the initial text that will be edited by the player.
2018-10-30
A string giving the initial text that will be edited by the player.
10.
`allow`
2018-10-30
`allow`
11.
If not None, a string giving a list of characters that will be allowed in the text.
2018-10-30
If not None, a string giving a list of characters that will be allowed in the text.
12.
`exclude`
2018-10-30
`exclude`
13.
If not None, if a character is present in this string, it is not allowed in the text.
2018-10-30
If not None, if a character is present in this string, it is not allowed in the text.
14.
`length`
2018-10-30
`length`
15.
If not None, this must be an integer giving the maximum length of the input string.
2018-10-30
If not None, this must be an integer giving the maximum length of the input string.
16.
`pixel_width`
2018-10-30
`pixel_width`
17.
If not None, the input is limited to being this many pixels wide, in the font used by the input to display text.
2018-10-30
If not None, the input is limited to being this many pixels wide, in the font used by the input to display text.
18.
Code that uses renpy.input will often want to process the result further, using standard python string manipulation functions. For example, the following code will ask the player for his or her name and remove leading or trailing whitespace. If the name is empty, it will be replaced by a default name. Finally, it is displayed to the user. ::
2018-10-30
Code that uses renpy.input will often want to process the result further, using standard python string manipulation functions. For example, the following code will ask the player for his or her name and remove leading or trailing whitespace. If the name is empty, it will be replaced by a default name. Finally, it is displayed to the user. ::