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.

116 of 16 results
1.
File Access
2018-10-30
File Access
2.
These Python functions allow you to access asset files, which may be found in the game directory, RPA archives, or as Android assets.
2018-10-30
These Python functions allow you to access asset files, which may be found in the game directory, RPA archives, or as Android assets.
3.
Returns a read-only file-like object that accesses the file named `fn`. The file is accessed using Ren'Py's standard search method, and may reside in an RPA archive. or as an Android asset.
2018-10-30
Returns a read-only file-like object that accesses the file named `fn`. The file is accessed using Ren'Py's standard search method, and may reside in an RPA archive. or as an Android asset.
4.
The object supports a wide subset of the fields and methods found on python's standard file object, opened in binary mode. (Basically, all of the methods that are sensible for a read-only file.)
2018-10-30
The object supports a wide subset of the fields and methods found on python's standard file object, opened in binary mode. (Basically, all of the methods that are sensible for a read-only file.)
5.
Lists the files in the game directory and archive files. Returns a list of files, with / as the directory separator.
2018-10-30
Lists the files in the game directory and archive files. Returns a list of files, with / as the directory separator.
6.
`common`
2018-10-30
`common`
7.
If true, files in the common directory are included in the listing.
2018-10-30
If true, files in the common directory are included in the listing.
8.
Returns True if the given filename is loadable, meaning that it can be loaded from the disk or from inside an archive. Returns False if this is not the case.
2018-10-30
Returns True if the given filename is loadable, meaning that it can be loaded from the disk or from inside an archive. Returns False if this is not the case.
9.
Rarely Used
2018-10-30
Rarely Used
10.
These functions are used more rarely.
2018-10-30
These functions are used more rarely.
11.
Returns true if the given filename can be found in the searchpath. This only works if a physical file exists on disk. It won't find the file if it's inside of an archive.
2018-10-30
Returns true if the given filename can be found in the searchpath. This only works if a physical file exists on disk. It won't find the file if it's inside of an archive.
12.
You almost certainly want to use :func:`renpy.loadable` in preference to this function.
2018-10-30
You almost certainly want to use :func:`renpy.loadable` in preference to this function.
13.
Converts s from filesystem encoding to unicode.
2018-10-30
Converts s from filesystem encoding to unicode.
14.
Converts s from unicode to the filesystem encoding.
2018-10-30
Converts s from unicode to the filesystem encoding.
15.
Given an image manipulator, loads it and returns a (``width``, ``height``) tuple giving its size.
2018-10-30
Given an image manipulator, loads it and returns a (``width``, ``height``) tuple giving its size.
16.
This reads the image in from disk and decompresses it, without using the image cache. This can be slow.
2018-10-30
This reads the image in from disk and decompresses it, without using the image cache. This can be slow.