mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
3937a12a85
This allows translators to test all text boxes in the scripts. It doesn't run the scripts themselves - it only shows the basic appearance of each text box individually, so context may be lost but it's good to have a way to see any text boxes that might otherwise not be easily seen because they require specific circumstances to appear.
20 lines
565 B
C++
20 lines
565 B
C++
#ifndef LOCALIZATIONMAINT_H
|
|
#define LOCALIZATIONMAINT_H
|
|
|
|
namespace loc
|
|
{
|
|
|
|
bool sync_lang_files(void);
|
|
|
|
bool save_roomname_to_file(const std::string& langcode, bool custom_level, int roomx, int roomy, const char* tra, const char* explanation);
|
|
bool save_roomname_explanation_to_files(bool custom_level, int roomx, int roomy, const char* explanation);
|
|
|
|
void local_limits_check(void);
|
|
void global_limits_check(void);
|
|
|
|
void populate_testable_script_ids(void);
|
|
bool populate_cutscene_test(const char* script_id);
|
|
|
|
} /* namespace loc */
|
|
|
|
#endif /* LOCALIZATIONMAINT_H */
|