2022-12-29 05:23:41 +01:00
|
|
|
#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);
|
|
|
|
|
2022-12-24 04:16:56 +01:00
|
|
|
void populate_testable_script_ids(void);
|
|
|
|
bool populate_cutscene_test(const char* script_id);
|
|
|
|
|
2022-12-29 05:23:41 +01:00
|
|
|
} /* namespace loc */
|
|
|
|
|
|
|
|
#endif /* LOCALIZATIONMAINT_H */
|