Fix Crowdin config & workflow

Also add new languages and update translation scripts
This commit is contained in:
DisasterMo 2023-01-02 22:08:37 +01:00
parent ec5ecb26de
commit c198cdaa69
9 changed files with 1265 additions and 326 deletions

View File

@ -62,7 +62,7 @@ if __name__ == '__main__':
translate_txt = translate_txt.replace('<0-59>', f"{minutes}") translate_txt = translate_txt.replace('<0-59>', f"{minutes}")
translate_txt = translate_txt.replace('<0-23>', f"{hour}") translate_txt = translate_txt.replace('<0-23>', f"{hour}")
translate_txt = translate_txt.replace('# Fridays at , UTC', translate_txt = translate_txt.replace('# Fridays at , UTC',
f"# Fridays at {hour%12}:{minutes} {'AM' if hour < 12 else 'PM'}, UTC") f"# Fridays at {hour%12}:{minutes if minutes > 9 else '0' + str(minutes)} {'AM' if hour < 12 else 'PM'}, UTC")
translate_txt = translate_txt.replace("<CORE_NAME>", CORE_NAME) translate_txt = translate_txt.replace("<CORE_NAME>", CORE_NAME)
translate_txt = translate_txt.replace('<PATH/TO>/libretro_core_options_intl.h', translate_txt = translate_txt.replace('<PATH/TO>/libretro_core_options_intl.h',
core_intl_file) core_intl_file)

View File

@ -1,14 +1,14 @@
import re import re
# 0: full struct; 1: up to & including first []; 2: content between first {} # 0: full struct; 1: up to & including first []; 2 & 3: comments; 4: content between first {}
p_struct = re.compile(r'(struct\s*[a-zA-Z0-9_\s]+\[])\s*' p_struct = re.compile(r'(\bstruct\b\s*[a-zA-Z0-9_\s]+\[])\s*' # 1st capturing group
r'(?:(?:\/\*(?:.|[\r\n])*?\*\/|\/\/.*[\r\n]+)\s*)*' r'(?:(?=(\/\*(?:.|[\r\n])*?\*\/|\/\/.*[\r\n]+))\2\s*)*' # 2nd capturing group
r'=\s*' # = r'=\s*' # =
r'(?:(?:\/\*(?:.|[\r\n])*?\*\/|\/\/.*[\r\n]+)\s*)*' r'(?:(?=(\/\*(?:.|[\r\n])*?\*\/|\/\/.*[\r\n]+))\3\s*)*' # 3rd capturing group
r'{((?:.|[\r\n])*?)\{\s*NULL,\s*NULL,\s*NULL\s*(?:.|[\r\n])*?},?(?:.|[\r\n])*?};') # captures full struct, it's beginning and it's content r'{((?:.|[\r\n])*?)\{\s*NULL,\s*NULL,\s*NULL\s*(?:.|[\r\n])*?},?(?:.|[\r\n])*?};') # captures full struct, it's beginning and it's content
# 0: type name[]; 1: type; 2: name # 0: type name[]; 1: type; 2: name
p_type_name = re.compile(r'(retro_core_option_[a-zA-Z0-9_]+)\s*' p_type_name = re.compile(r'(\bretro_core_option_[a-zA-Z0-9_]+)\s*'
r'(option_cats([a-z_]{0,8})|option_defs([a-z_]{0,8}))\s*\[]') r'(\boption_cats([a-z_]{0,8})|\boption_defs([a-z_]*))\s*\[]')
# 0: full option; 1: key; 2: description; 3: additional info; 4: key/value pairs # 0: full option; 1: key; 2: description; 3: additional info; 4: key/value pairs
p_option = re.compile(r'{\s*' # opening braces p_option = re.compile(r'{\s*' # opening braces
r'(?:(?:\/\*(?:.|[\r\n])*?\*\/|\/\/.*[\r\n]+|#.*[\r\n]+)\s*)*' r'(?:(?:\/\*(?:.|[\r\n])*?\*\/|\/\/.*[\r\n]+|#.*[\r\n]+)\s*)*'
@ -76,9 +76,9 @@ p_key_value = re.compile(r'{\s*' # opening braces
p_masked = re.compile(r'([A-Z_][A-Z0-9_]+)\s*(\"(?:"\s*"|\\\s*|.)*\")') p_masked = re.compile(r'([A-Z_][A-Z0-9_]+)\s*(\"(?:"\s*"|\\\s*|.)*\")')
p_intl = re.compile(r'(struct retro_core_option_definition \*option_defs_intl\[RETRO_LANGUAGE_LAST]) = {' p_intl = re.compile(r'(\bstruct retro_core_option_definition \*option_defs_intl\[RETRO_LANGUAGE_LAST]) = {'
r'((?:.|[\r\n])*?)};') r'((?:.|[\r\n])*?)};')
p_set = re.compile(r'static INLINE void libretro_set_core_options\(retro_environment_t environ_cb\)' p_set = re.compile(r'\bstatic INLINE void libretro_set_core_options\(retro_environment_t environ_cb\)'
r'(?:.|[\r\n])*?};?\s*#ifdef __cplusplus\s*}\s*#endif') r'(?:.|[\r\n])*?};?\s*#ifdef __cplusplus\s*}\s*#endif')
p_yaml = re.compile(r'"project_id": "[0-9]+".*\s*' p_yaml = re.compile(r'"project_id": "[0-9]+".*\s*'

View File

@ -182,17 +182,17 @@ def get_texts(text: str) -> dict:
if lang not in just_string: if lang not in just_string:
hash_n_string[lang] = {} hash_n_string[lang] = {}
just_string[lang] = set() just_string[lang] = set()
is_v2_definition = 'retro_core_option_v2_definition' == struct_type_name[0]
is_v2 = False
pre_name = '' pre_name = ''
# info texts format
p = cor.p_info p = cor.p_info
if 'retro_core_option_v2_definition' == struct_type_name[0]: if 'retro_core_option_v2_category' == struct_type_name[0]:
is_v2 = True # prepend category labels, as they can be the same as option labels
elif 'retro_core_option_v2_category' == struct_type_name[0]:
pre_name = 'CATEGORY_' pre_name = 'CATEGORY_'
# categories have different info texts format
p = cor.p_info_cat p = cor.p_info_cat
struct_content = struct.group(2) struct_content = struct.group(4)
# 0: full option; 1: key; 2: description; 3: additional info; 4: key/value pairs # 0: full option; 1: key; 2: description; 3: additional info; 4: key/value pairs
struct_options = cor.p_option.finditer(struct_content) struct_options = cor.p_option.finditer(struct_content)
for opt, option in enumerate(struct_options): for opt, option in enumerate(struct_options):
@ -218,7 +218,7 @@ def get_texts(text: str) -> dict:
if option.group(3): if option.group(3):
infos = option.group(3) infos = option.group(3)
option_info = p.finditer(infos) option_info = p.finditer(infos)
if is_v2: if is_v2_definition:
desc1 = next(option_info).group(1) desc1 = next(option_info).group(1)
if is_viable_non_dupe(desc1, just_string[lang]): if is_viable_non_dupe(desc1, just_string[lang]):
just_string[lang].add(desc1) just_string[lang].add(desc1)
@ -302,8 +302,12 @@ def h2json(file_paths: dict) -> dict:
for file_lang in file_paths: for file_lang in file_paths:
if not os.path.isfile(file_paths[file_lang]): if not os.path.isfile(file_paths[file_lang]):
continue continue
file_path = file_paths[file_lang]
jsons[file_lang] = file_paths[file_lang][:-2] + '.json' try:
jsons[file_lang] = file_path[:file_path.rindex('.')] + '.json'
except ValueError:
print(f"File {file_path} has incorrect format! File ending missing?")
continue
p = cor.p_masked p = cor.p_masked
@ -401,11 +405,11 @@ def get_crowdin_client(dir_path: str) -> str:
return jar_path return jar_path
def create_intl_file(localisation_file_path: str, intl_dir_path: str, text: str, file_path: str) -> None: def create_intl_file(intl_file_path: str, localisations_path: str, text: str, file_path: str) -> None:
"""Creates 'libretro_core_options_intl.h' from Crowdin translations. """Creates 'libretro_core_options_intl.h' from Crowdin translations.
:param localisation_file_path: Path to 'libretro_core_options_intl.h' :param intl_file_path: Path to 'libretro_core_options_intl.h'
:param intl_dir_path: Path to the intl/<core_name> directory. :param localisations_path: Path to the intl/<core_name> directory.
:param text: Content of the 'libretro_core_options.h' being translated. :param text: Content of the 'libretro_core_options.h' being translated.
:param file_path: Path to the '_us.h' file, containing the original English texts. :param file_path: Path to the '_us.h' file, containing the original English texts.
:return: None :return: None
@ -501,10 +505,11 @@ def create_intl_file(localisation_file_path: str, intl_dir_path: str, text: str,
'extern "C" {\n' \ 'extern "C" {\n' \
'#endif\n' '#endif\n'
if os.path.isfile(localisation_file_path): if os.path.isfile(intl_file_path):
# copy top of the file for re-use # copy top of the file for re-use
with open(localisation_file_path, 'r', encoding='utf-8') as intl: # libretro_core_options_intl.h with open(intl_file_path, 'r', encoding='utf-8') as intl: # libretro_core_options_intl.h
in_text = intl.read() in_text = intl.read()
# attempt 1: find the distinct comment header
intl_start = re.search(re.escape('/*\n' intl_start = re.search(re.escape('/*\n'
' ********************************\n' ' ********************************\n'
' * Core Option Definitions\n' ' * Core Option Definitions\n'
@ -513,19 +518,22 @@ def create_intl_file(localisation_file_path: str, intl_dir_path: str, text: str,
if intl_start: if intl_start:
out_txt = in_text[:intl_start.end(0)] out_txt = in_text[:intl_start.end(0)]
else: else:
# attempt 2: if no comment header present, find c++ compiler instruction (it is kind of a must)
intl_start = re.search(re.escape('#ifdef __cplusplus\n' intl_start = re.search(re.escape('#ifdef __cplusplus\n'
'extern "C" {\n' 'extern "C" {\n'
'#endif\n'), in_text) '#endif\n'), in_text)
if intl_start: if intl_start:
out_txt = in_text[:intl_start.end(0)] out_txt = in_text[:intl_start.end(0)]
# if all attempts fail, use default from above
# only write to file, if there is anything worthwhile to write! # only write to file, if there is anything worthwhile to write!
overwrite = False overwrite = False
# iterate through localisation files # iterate through localisation files
files = {} files = {}
for file in os.scandir(intl_dir_path): for file in os.scandir(localisations_path):
files[file.name] = {'is_file': file.is_file(), 'path': file.path} files[file.name] = {'is_file': file.is_file(), 'path': file.path}
for file in sorted(files): # intl/<core_name>/_* for file in sorted(files): # intl/<core_name>/_*
if files[file]['is_file'] \ if files[file]['is_file'] \
and file.startswith('_') \ and file.startswith('_') \
@ -536,6 +544,7 @@ def create_intl_file(localisation_file_path: str, intl_dir_path: str, text: str,
struct_groups = cor.p_struct.finditer(text) struct_groups = cor.p_struct.finditer(text)
lang_low = os.path.splitext(file)[0].lower() lang_low = os.path.splitext(file)[0].lower()
lang_up = lang_low.upper() lang_up = lang_low.upper()
# mark each language's section with a comment, for readability
out_txt = out_txt + f'/* RETRO_LANGUAGE{lang_up} */\n\n' # /* RETRO_LANGUAGE_NM */ out_txt = out_txt + f'/* RETRO_LANGUAGE{lang_up} */\n\n' # /* RETRO_LANGUAGE_NM */
# copy adjusted translations (makros) # copy adjusted translations (makros)
@ -548,22 +557,22 @@ def create_intl_file(localisation_file_path: str, intl_dir_path: str, text: str,
if 3 > len(struct_type_name): # no language specifier if 3 > len(struct_type_name): # no language specifier
new_decl = re.sub(re.escape(struct_type_name[1]), struct_type_name[1] + lang_low, declaration) new_decl = re.sub(re.escape(struct_type_name[1]), struct_type_name[1] + lang_low, declaration)
else: else:
new_decl = re.sub(re.escape(struct_type_name[2]), lang_low, declaration)
if '_us' != struct_type_name[2]: if '_us' != struct_type_name[2]:
# only use _us constructs - other languages present in the source file are not important
continue continue
new_decl = re.sub(re.escape(struct_type_name[2]), lang_low, declaration)
p = cor.p_info p = (cor.p_info_cat if 'retro_core_option_v2_category' == struct_type_name[0] else cor.p_info)
if 'retro_core_option_v2_category' == struct_type_name[0]:
p = cor.p_info_cat
offset_construct = construct.start(0) offset_construct = construct.start(0)
# append localised construct name and ' = {'
start = construct.end(1) - offset_construct start = construct.end(1) - offset_construct
end = construct.start(2) - offset_construct end = construct.start(4) - offset_construct
out_txt = out_txt + new_decl + construct.group(0)[start:end] out_txt = out_txt + new_decl + construct.group(0)[start:end]
# insert macros
content = construct.group(2) content = construct.group(4)
new_content = cor.p_option.sub(replace_option, content) new_content = cor.p_option.sub(replace_option, content)
start = construct.end(4) - offset_construct
start = construct.end(2) - offset_construct # append macro-filled content and close the construct
out_txt = out_txt + new_content + construct.group(0)[start:] + '\n' out_txt = out_txt + new_content + construct.group(0)[start:] + '\n'
# for v2 # for v2
@ -578,7 +587,7 @@ def create_intl_file(localisation_file_path: str, intl_dir_path: str, text: str,
# only write to file, if there is anything worthwhile to write! # only write to file, if there is anything worthwhile to write!
if overwrite: if overwrite:
with open(localisation_file_path, 'w', encoding='utf-8') as intl: with open(intl_file_path, 'w', encoding='utf-8') as intl:
intl.write(out_txt + '\n#ifdef __cplusplus\n' intl.write(out_txt + '\n#ifdef __cplusplus\n'
'}\n#endif\n' '}\n#endif\n'
'\n#endif') '\n#endif')

View File

@ -6,8 +6,8 @@
"files": "files":
[ [
{ {
"source": "/intl/_core_name_/_us.json", "source": "/_core_name_/_us.json",
"dest": "/_core_name_/_core_name_.json", "dest": "/_core_name_/_core_name_.json",
"translation": "/intl/_core_name_/_%two_letters_code%.json", "translation": "/_core_name_/_%two_letters_code%.json",
}, },
] ]

View File

@ -4,7 +4,7 @@ import core_option_translation as t
if __name__ == '__main__': if __name__ == '__main__':
try: try:
if t.os.path.isfile(t.sys.argv[1]): if t.os.path.isfile(t.sys.argv[1]) or t.sys.argv[1].endswith('.h'):
_temp = t.os.path.dirname(t.sys.argv[1]) _temp = t.os.path.dirname(t.sys.argv[1])
else: else:
_temp = t.sys.argv[1] _temp = t.sys.argv[1]

View File

@ -4,7 +4,7 @@ import core_option_translation as t
if __name__ == '__main__': if __name__ == '__main__':
try: try:
if t.os.path.isfile(t.sys.argv[1]): if t.os.path.isfile(t.sys.argv[1]) or t.sys.argv[1].endswith('.h'):
_temp = t.os.path.dirname(t.sys.argv[1]) _temp = t.os.path.dirname(t.sys.argv[1])
else: else:
_temp = t.sys.argv[1] _temp = t.sys.argv[1]

View File

@ -9,7 +9,7 @@ The original files will be preserved as *.v1
""" """
import core_option_regex as cor import core_option_regex as cor
import os import os
import sys import glob
def create_v2_code_file(struct_text, file_name): def create_v2_code_file(struct_text, file_name):
@ -379,7 +379,8 @@ def create_v2_code_file(struct_text, file_name):
f' option_defs{struct_type_name_lang[2]}\n' f' option_defs{struct_type_name_lang[2]}\n'
'};', '};',
construct.group(0)[construct.end(2) - offset:]) construct.group(0)[construct.end(2) - offset:])
out_text = cor.re.sub(cor.re.escape(construct.group(0)), repl_text, out_text) out_text = out_text.replace(construct.group(0), repl_text)
#out_text = cor.re.sub(cor.re.escape(construct.group(0)), repl_text, raw_out)
else: else:
return -2 return -2
with open(file_name, 'w', encoding='utf-8') as code_file: with open(file_name, 'w', encoding='utf-8') as code_file:
@ -408,11 +409,19 @@ def create_v2_code_file(struct_text, file_name):
' &options_ar, /* RETRO_LANGUAGE_ARABIC */\n' \ ' &options_ar, /* RETRO_LANGUAGE_ARABIC */\n' \
' &options_el, /* RETRO_LANGUAGE_GREEK */\n' \ ' &options_el, /* RETRO_LANGUAGE_GREEK */\n' \
' &options_tr, /* RETRO_LANGUAGE_TURKISH */\n' \ ' &options_tr, /* RETRO_LANGUAGE_TURKISH */\n' \
' &options_sv, /* RETRO_LANGUAGE_SLOVAK */\n' \ ' &options_sk, /* RETRO_LANGUAGE_SLOVAK */\n' \
' &options_fa, /* RETRO_LANGUAGE_PERSIAN */\n' \ ' &options_fa, /* RETRO_LANGUAGE_PERSIAN */\n' \
' &options_he, /* RETRO_LANGUAGE_HEBREW */\n' \ ' &options_he, /* RETRO_LANGUAGE_HEBREW */\n' \
' &options_ast, /* RETRO_LANGUAGE_ASTURIAN */\n' \ ' &options_ast, /* RETRO_LANGUAGE_ASTURIAN */\n' \
' &options_fi, /* RETRO_LANGUAGE_FINNISH */\n' \ ' &options_fi, /* RETRO_LANGUAGE_FINNISH */\n' \
' &options_id, /* RETRO_LANGUAGE_INDONESIAN */\n' \
' &options_sv, /* RETRO_LANGUAGE_SWEDISH */\n' \
' &options_uk, /* RETRO_LANGUAGE_UKRAINIAN */\n' \
' &options_cs, /* RETRO_LANGUAGE_CZECH */\n' \
' &options_val, /* RETRO_LANGUAGE_CATALAN_VALENCIA */\n' \
' &options_ca, /* RETRO_LANGUAGE_CATALAN */\n' \
' &options_en, /* RETRO_LANGUAGE_BRITISH_ENGLISH */\n' \
' &options_hu, /* RETRO_LANGUAGE_HUNGARIAN */\n' \
+ out_text[intl.end(2):] + out_text[intl.end(2):]
out_text = p_set.sub(new_set, new_intl) out_text = p_set.sub(new_set, new_intl)
else: else:
@ -425,21 +434,36 @@ def create_v2_code_file(struct_text, file_name):
# -------------------- MAIN -------------------- # # -------------------- MAIN -------------------- #
if __name__ == '__main__': if __name__ == '__main__':
try: DIR_PATH = os.path.dirname(os.path.realpath(__file__))
if os.path.isfile(sys.argv[1]): if os.path.basename(DIR_PATH) != "intl":
_temp = os.path.dirname(sys.argv[1]) raise RuntimeError("Script is not in intl folder!")
else:
_temp = sys.argv[1]
while _temp.endswith('/') or _temp.endswith('\\'):
_temp = _temp[:-1]
DIR_PATH = _temp
except IndexError:
DIR_PATH = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
print("No path provided, assuming parent directory:\n" + DIR_PATH)
H_FILE_PATH = os.path.join(DIR_PATH, 'libretro_core_options.h') BASE_PATH = os.path.dirname(DIR_PATH)
INTL_FILE_PATH = os.path.join(DIR_PATH, 'libretro_core_options_intl.h') CORE_OP_FILE = os.path.join(BASE_PATH, "**", "libretro_core_options.h")
core_options_hits = glob.glob(CORE_OP_FILE, recursive=True)
if len(core_options_hits) == 0:
raise RuntimeError("libretro_core_options.h not found!")
elif len(core_options_hits) > 1:
print("More than one libretro_core_options.h file found:\n\n")
for i, file in enumerate(core_options_hits):
print(f"{i} {file}\n")
while True:
user_choice = input("Please choose one ('q' will exit): ")
if user_choice == 'q':
exit(0)
elif user_choice.isdigit():
core_op_file = core_options_hits[int(user_choice)]
break
else:
print("Please make a valid choice!\n\n")
else:
core_op_file = core_options_hits[0]
H_FILE_PATH = core_op_file
INTL_FILE_PATH = core_op_file.replace("libretro_core_options.h", 'libretro_core_options_intl.h')
for file in (H_FILE_PATH, INTL_FILE_PATH): for file in (H_FILE_PATH, INTL_FILE_PATH):
if os.path.isfile(file): if os.path.isfile(file):
with open(file, 'r+', encoding='utf-8') as h_file: with open(file, 'r+', encoding='utf-8') as h_file:

View File

@ -286,6 +286,11 @@ enum retro_language
RETRO_LANGUAGE_INDONESIAN = 24, RETRO_LANGUAGE_INDONESIAN = 24,
RETRO_LANGUAGE_SWEDISH = 25, RETRO_LANGUAGE_SWEDISH = 25,
RETRO_LANGUAGE_UKRAINIAN = 26, RETRO_LANGUAGE_UKRAINIAN = 26,
RETRO_LANGUAGE_CZECH = 27,
RETRO_LANGUAGE_CATALAN_VALENCIA = 28,
RETRO_LANGUAGE_CATALAN = 29,
RETRO_LANGUAGE_BRITISH_ENGLISH = 30,
RETRO_LANGUAGE_HUNGARIAN = 31,
RETRO_LANGUAGE_LAST, RETRO_LANGUAGE_LAST,
/* Ensure sizeof(enum) == sizeof(int) */ /* Ensure sizeof(enum) == sizeof(int) */
@ -1756,6 +1761,12 @@ enum retro_mod
* the frontend is attempting to call retro_run(). * the frontend is attempting to call retro_run().
*/ */
#define RETRO_ENVIRONMENT_GET_SAVESTATE_CONTEXT (72 | RETRO_ENVIRONMENT_EXPERIMENTAL)
/* int * --
* Tells the core about the context the frontend is asking for savestate.
* (see enum retro_savestate_context)
*/
/* VFS functionality */ /* VFS functionality */
/* File paths: /* File paths:
@ -2993,6 +3004,35 @@ enum retro_pixel_format
RETRO_PIXEL_FORMAT_UNKNOWN = INT_MAX RETRO_PIXEL_FORMAT_UNKNOWN = INT_MAX
}; };
enum retro_savestate_context
{
/* Standard savestate written to disk. */
RETRO_SAVESTATE_CONTEXT_NORMAL = 0,
/* Savestate where you are guaranteed that the same instance will load the save state.
* You can store internal pointers to code or data.
* It's still a full serialization and deserialization, and could be loaded or saved at any time.
* It won't be written to disk or sent over the network.
*/
RETRO_SAVESTATE_CONTEXT_RUNAHEAD_SAME_INSTANCE = 1,
/* Savestate where you are guaranteed that the same emulator binary will load that savestate.
* You can skip anything that would slow down saving or loading state but you can not store internal pointers.
* It won't be written to disk or sent over the network.
* Example: "Second Instance" runahead
*/
RETRO_SAVESTATE_CONTEXT_RUNAHEAD_SAME_BINARY = 2,
/* Savestate used within a rollback netplay feature.
* You should skip anything that would unnecessarily increase bandwidth usage.
* It won't be written to disk but it will be sent over the network.
*/
RETRO_SAVESTATE_CONTEXT_ROLLBACK_NETPLAY = 3,
/* Ensure sizeof() == sizeof(int). */
RETRO_SAVESTATE_CONTEXT_UNKNOWN = INT_MAX
};
struct retro_message struct retro_message
{ {
const char *msg; /* Message to be displayed. */ const char *msg; /* Message to be displayed. */

File diff suppressed because it is too large Load Diff