LoafyLemon
1b1bc53759
* Fixed renpy.input not working with Chinese translation * Improved language handling for preferences
9 lines
388 B
Plaintext
9 lines
388 B
Plaintext
|
|
define CHARACTERS = {"hermione", "tonks", "astoria", "cho", "luna", "susan", "hooch"}
|
|
define SAYERS = {i[:3]:i for i in CHARACTERS}
|
|
define ALLOWED_CHARACTERS = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz "
|
|
define LANGUAGE_TRANSCRIPTS = {
|
|
"english": "{font=gui/CreativeBlockRegular.ttf}English{/font}",
|
|
"chinese": "{font=tl/chinese/NotoSansSC-Bold.otf}汉语{/font}",
|
|
}
|