update i18n script
This commit is contained in:
parent
f90321ca31
commit
d4cefe30ac
224
i18n.py
224
i18n.py
@ -1,16 +1,110 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python3
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
#
|
#
|
||||||
# Script to generate the template file and update the translation files.
|
# Script to generate the template file and update the translation files.
|
||||||
# Copy the script into the mod or modpack root folder and run it there.
|
# Copy the script into the mod or modpack root folder and run it there.
|
||||||
#
|
#
|
||||||
# Copyright (C) 2019 Joachim Stolberg, 2020 FaceDeer
|
# Copyright (C) 2019 Joachim Stolberg, 2020 FaceDeer, 2020 Louis Royer
|
||||||
# LGPLv2.1+
|
# LGPLv2.1+
|
||||||
|
#
|
||||||
|
# See https://github.com/minetest-tools/update_translations for
|
||||||
|
# potential future updates to this script.
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
import os, fnmatch, re, shutil, errno
|
import os, fnmatch, re, shutil, errno
|
||||||
|
from sys import argv as _argv
|
||||||
|
|
||||||
verbose = False
|
# Running params
|
||||||
|
params = {"recursive": False,
|
||||||
|
"help": False,
|
||||||
|
"mods": False,
|
||||||
|
"verbose": False,
|
||||||
|
"folders": []
|
||||||
|
}
|
||||||
|
# Available CLI options
|
||||||
|
options = {"recursive": ['--recursive', '-r'],
|
||||||
|
"help": ['--help', '-h'],
|
||||||
|
"mods": ['--installed-mods'],
|
||||||
|
"verbose": ['--verbose', '-v']
|
||||||
|
}
|
||||||
|
|
||||||
|
# Strings longer than this will have extra space added between
|
||||||
|
# them in the translation files to make it easier to distinguish their
|
||||||
|
# beginnings and endings at a glance
|
||||||
|
doublespace_threshold = 60
|
||||||
|
|
||||||
|
def set_params_folders(tab: list):
|
||||||
|
'''Initialize params["folders"] from CLI arguments.'''
|
||||||
|
# Discarding argument 0 (tool name)
|
||||||
|
for param in tab[1:]:
|
||||||
|
stop_param = False
|
||||||
|
for option in options:
|
||||||
|
if param in options[option]:
|
||||||
|
stop_param = True
|
||||||
|
break
|
||||||
|
if not stop_param:
|
||||||
|
params["folders"].append(os.path.abspath(param))
|
||||||
|
|
||||||
|
def set_params(tab: list):
|
||||||
|
'''Initialize params from CLI arguments.'''
|
||||||
|
for option in options:
|
||||||
|
for option_name in options[option]:
|
||||||
|
if option_name in tab:
|
||||||
|
params[option] = True
|
||||||
|
break
|
||||||
|
|
||||||
|
def print_help(name):
|
||||||
|
'''Prints some help message.'''
|
||||||
|
print(f'''SYNOPSIS
|
||||||
|
{name} [OPTIONS] [PATHS...]
|
||||||
|
DESCRIPTION
|
||||||
|
{', '.join(options["help"])}
|
||||||
|
prints this help message
|
||||||
|
{', '.join(options["recursive"])}
|
||||||
|
run on all subfolders of paths given
|
||||||
|
{', '.join(options["mods"])}
|
||||||
|
run on locally installed modules
|
||||||
|
{', '.join(options["verbose"])}
|
||||||
|
add output information
|
||||||
|
''')
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
'''Main function'''
|
||||||
|
set_params(_argv)
|
||||||
|
set_params_folders(_argv)
|
||||||
|
if params["help"]:
|
||||||
|
print_help(_argv[0])
|
||||||
|
elif params["recursive"] and params["mods"]:
|
||||||
|
print("Option --installed-mods is incompatible with --recursive")
|
||||||
|
else:
|
||||||
|
# Add recursivity message
|
||||||
|
print("Running ", end='')
|
||||||
|
if params["recursive"]:
|
||||||
|
print("recursively ", end='')
|
||||||
|
# Running
|
||||||
|
if params["mods"]:
|
||||||
|
print(f"on all locally installed modules in {os.path.abspath('~/.minetest/mods/')}")
|
||||||
|
run_all_subfolders("~/.minetest/mods")
|
||||||
|
elif len(params["folders"]) >= 2:
|
||||||
|
print("on folder list:", params["folders"])
|
||||||
|
for f in params["folders"]:
|
||||||
|
if params["recursive"]:
|
||||||
|
run_all_subfolders(f)
|
||||||
|
else:
|
||||||
|
update_folder(f)
|
||||||
|
elif len(params["folders"]) == 1:
|
||||||
|
print("on folder", params["folders"][0])
|
||||||
|
if params["recursive"]:
|
||||||
|
run_all_subfolders(params["folders"][0])
|
||||||
|
else:
|
||||||
|
update_folder(params["folders"][0])
|
||||||
|
else:
|
||||||
|
print("on folder", os.path.abspath("./"))
|
||||||
|
if params["recursive"]:
|
||||||
|
run_all_subfolders(os.path.abspath("./"))
|
||||||
|
else:
|
||||||
|
update_folder(os.path.abspath("./"))
|
||||||
|
|
||||||
#group 2 will be the string, groups 1 and 3 will be the delimiters (" or ')
|
#group 2 will be the string, groups 1 and 3 will be the delimiters (" or ')
|
||||||
#See https://stackoverflow.com/questions/46967465/regex-match-text-in-either-single-or-double-quote
|
#See https://stackoverflow.com/questions/46967465/regex-match-text-in-either-single-or-double-quote
|
||||||
@ -20,7 +114,7 @@ pattern_lua_bracketed = re.compile(r'[\.=^\t,{\(\s]N?S\(\s*\[\[(.*?)\]\][\s,\)]'
|
|||||||
# Handles "concatenation" .. " of strings"
|
# Handles "concatenation" .. " of strings"
|
||||||
pattern_concat = re.compile(r'["\'][\s]*\.\.[\s]*["\']', re.DOTALL)
|
pattern_concat = re.compile(r'["\'][\s]*\.\.[\s]*["\']', re.DOTALL)
|
||||||
|
|
||||||
pattern_tr = re.compile(r'(.+?[^@])=(.+)')
|
pattern_tr = re.compile(r'(.+?[^@])=(.*)')
|
||||||
pattern_name = re.compile(r'^name[ ]*=[ ]*([^ \n]*)')
|
pattern_name = re.compile(r'^name[ ]*=[ ]*([^ \n]*)')
|
||||||
pattern_tr_filename = re.compile(r'\.tr$')
|
pattern_tr_filename = re.compile(r'\.tr$')
|
||||||
pattern_po_language_code = re.compile(r'(.*)\.po$')
|
pattern_po_language_code = re.compile(r'(.*)\.po$')
|
||||||
@ -28,7 +122,7 @@ pattern_po_language_code = re.compile(r'(.*)\.po$')
|
|||||||
#attempt to read the mod's name from the mod.conf file. Returns None on failure
|
#attempt to read the mod's name from the mod.conf file. Returns None on failure
|
||||||
def get_modname(folder):
|
def get_modname(folder):
|
||||||
try:
|
try:
|
||||||
with open(folder + "mod.conf", "r", encoding='utf-8') as mod_conf:
|
with open(os.path.join(folder, "mod.conf"), "r", encoding='utf-8') as mod_conf:
|
||||||
for line in mod_conf:
|
for line in mod_conf:
|
||||||
match = pattern_name.match(line)
|
match = pattern_name.match(line)
|
||||||
if match:
|
if match:
|
||||||
@ -40,7 +134,7 @@ def get_modname(folder):
|
|||||||
#If there are already .tr files in /locale, returns a list of their names
|
#If there are already .tr files in /locale, returns a list of their names
|
||||||
def get_existing_tr_files(folder):
|
def get_existing_tr_files(folder):
|
||||||
out = []
|
out = []
|
||||||
for root, dirs, files in os.walk(folder + 'locale/'):
|
for root, dirs, files in os.walk(os.path.join(folder, 'locale/')):
|
||||||
for name in files:
|
for name in files:
|
||||||
if pattern_tr_filename.search(name):
|
if pattern_tr_filename.search(name):
|
||||||
out.append(name)
|
out.append(name)
|
||||||
@ -76,7 +170,7 @@ def process_po_file(text):
|
|||||||
# any "no longer used" strings will be preserved.
|
# any "no longer used" strings will be preserved.
|
||||||
# Note that "fuzzy" tags will be lost in this process.
|
# Note that "fuzzy" tags will be lost in this process.
|
||||||
def process_po_files(folder, modname):
|
def process_po_files(folder, modname):
|
||||||
for root, dirs, files in os.walk(folder + 'locale/'):
|
for root, dirs, files in os.walk(os.path.join(folder, 'locale/')):
|
||||||
for name in files:
|
for name in files:
|
||||||
code_match = pattern_po_language_code.match(name)
|
code_match = pattern_po_language_code.match(name)
|
||||||
if code_match == None:
|
if code_match == None:
|
||||||
@ -85,13 +179,13 @@ def process_po_files(folder, modname):
|
|||||||
tr_name = modname + "." + language_code + ".tr"
|
tr_name = modname + "." + language_code + ".tr"
|
||||||
tr_file = os.path.join(root, tr_name)
|
tr_file = os.path.join(root, tr_name)
|
||||||
if os.path.exists(tr_file):
|
if os.path.exists(tr_file):
|
||||||
if verbose:
|
if params["verbose"]:
|
||||||
print(tr_name + " already exists, ignoring " + name)
|
print(f"{tr_name} already exists, ignoring {name}")
|
||||||
continue
|
continue
|
||||||
fname = os.path.join(root, name)
|
fname = os.path.join(root, name)
|
||||||
with open(fname, "r", encoding='utf-8') as po_file:
|
with open(fname, "r", encoding='utf-8') as po_file:
|
||||||
if verbose:
|
if params["verbose"]:
|
||||||
print("Importing translations from " + name)
|
print(f"Importing translations from {name}")
|
||||||
text = process_po_file(po_file.read())
|
text = process_po_file(po_file.read())
|
||||||
with open(tr_file, "wt", encoding='utf-8') as tr_out:
|
with open(tr_file, "wt", encoding='utf-8') as tr_out:
|
||||||
tr_out.write(text)
|
tr_out.write(text)
|
||||||
@ -109,10 +203,10 @@ def mkdir_p(path):
|
|||||||
|
|
||||||
# Converts the template dictionary to a text to be written as a file
|
# Converts the template dictionary to a text to be written as a file
|
||||||
# dKeyStrings is a dictionary of localized string to source file sets
|
# dKeyStrings is a dictionary of localized string to source file sets
|
||||||
# dOld is a dictionary of existing translations, for use when updating
|
# dOld is a dictionary of existing translations and comments from
|
||||||
# existing .tr files
|
# the previous version of this text
|
||||||
def strings_to_text(dkeyStrings, dOld, mod_name):
|
def strings_to_text(dkeyStrings, dOld, mod_name):
|
||||||
lOut = ["# textdomain: %s\n" % mod_name]
|
lOut = [f"# textdomain: {mod_name}\n"]
|
||||||
|
|
||||||
dGroupedBySource = {}
|
dGroupedBySource = {}
|
||||||
|
|
||||||
@ -127,27 +221,52 @@ def strings_to_text(dkeyStrings, dOld, mod_name):
|
|||||||
lSourceKeys = list(dGroupedBySource.keys())
|
lSourceKeys = list(dGroupedBySource.keys())
|
||||||
lSourceKeys.sort()
|
lSourceKeys.sort()
|
||||||
for source in lSourceKeys:
|
for source in lSourceKeys:
|
||||||
lOut.append("")
|
|
||||||
localizedStrings = dGroupedBySource[source]
|
localizedStrings = dGroupedBySource[source]
|
||||||
localizedStrings.sort()
|
localizedStrings.sort()
|
||||||
|
lOut.append("")
|
||||||
lOut.append(source)
|
lOut.append(source)
|
||||||
|
lOut.append("")
|
||||||
for localizedString in localizedStrings:
|
for localizedString in localizedStrings:
|
||||||
val = dOld.get(localizedString, "")
|
val = dOld.get(localizedString, {})
|
||||||
lOut.append("%s=%s" % (localizedString, val))
|
translation = val.get("translation", "")
|
||||||
|
comment = val.get("comment")
|
||||||
|
if len(localizedString) > doublespace_threshold and not lOut[-1] == "":
|
||||||
|
lOut.append("")
|
||||||
|
if comment != None:
|
||||||
|
lOut.append(comment)
|
||||||
|
lOut.append(f"{localizedString}={translation}")
|
||||||
|
if len(localizedString) > doublespace_threshold:
|
||||||
|
lOut.append("")
|
||||||
|
|
||||||
|
|
||||||
unusedExist = False
|
unusedExist = False
|
||||||
for key in dOld:
|
for key in dOld:
|
||||||
if key not in dkeyStrings:
|
if key not in dkeyStrings:
|
||||||
|
val = dOld[key]
|
||||||
|
translation = val.get("translation")
|
||||||
|
comment = val.get("comment")
|
||||||
|
# only keep an unused translation if there was translated
|
||||||
|
# text or a comment associated with it
|
||||||
|
if translation != None and (translation != "" or comment):
|
||||||
if not unusedExist:
|
if not unusedExist:
|
||||||
unusedExist = True
|
unusedExist = True
|
||||||
lOut.append("\n##### not used anymore #####")
|
lOut.append("\n\n##### not used anymore #####\n")
|
||||||
lOut.append("%s=%s" % (key, dOld[key]))
|
if len(key) > doublespace_threshold and not lOut[-1] == "":
|
||||||
return "\n".join(lOut)
|
lOut.append("")
|
||||||
|
if comment != None:
|
||||||
|
lOut.append(comment)
|
||||||
|
lOut.append(f"{key}={translation}")
|
||||||
|
if len(key) > doublespace_threshold:
|
||||||
|
lOut.append("")
|
||||||
|
return "\n".join(lOut) + '\n'
|
||||||
|
|
||||||
# Writes a template.txt file
|
# Writes a template.txt file
|
||||||
# dkeyStrings is the dictionary returned by generate_template
|
# dkeyStrings is the dictionary returned by generate_template
|
||||||
def write_template(templ_file, dkeyStrings, mod_name):
|
def write_template(templ_file, dkeyStrings, mod_name):
|
||||||
text = strings_to_text(dkeyStrings, {}, mod_name)
|
# read existing template file to preserve comments
|
||||||
|
existing_template = import_tr_file(templ_file)
|
||||||
|
|
||||||
|
text = strings_to_text(dkeyStrings, existing_template[0], mod_name)
|
||||||
mkdir_p(os.path.dirname(templ_file))
|
mkdir_p(os.path.dirname(templ_file))
|
||||||
with open(templ_file, "wt", encoding='utf-8') as template_file:
|
with open(templ_file, "wt", encoding='utf-8') as template_file:
|
||||||
template_file.write(text)
|
template_file.write(text)
|
||||||
@ -188,15 +307,37 @@ def import_tr_file(tr_file):
|
|||||||
text = None
|
text = None
|
||||||
if os.path.exists(tr_file):
|
if os.path.exists(tr_file):
|
||||||
with open(tr_file, "r", encoding='utf-8') as existing_file :
|
with open(tr_file, "r", encoding='utf-8') as existing_file :
|
||||||
|
# save the full text to allow for comparison
|
||||||
|
# of the old version with the new output
|
||||||
text = existing_file.read()
|
text = existing_file.read()
|
||||||
existing_file.seek(0)
|
existing_file.seek(0)
|
||||||
|
# a running record of the current comment block
|
||||||
|
# we're inside, to allow preceeding multi-line comments
|
||||||
|
# to be retained for a translation line
|
||||||
|
latest_comment_block = None
|
||||||
for line in existing_file.readlines():
|
for line in existing_file.readlines():
|
||||||
s = line.strip()
|
line = line.rstrip('\n')
|
||||||
if s == "" or s[0] == "#":
|
if line[:3] == "###":
|
||||||
|
# Reset comment block if we hit a header
|
||||||
|
latest_comment_block = None
|
||||||
continue
|
continue
|
||||||
match = pattern_tr.match(s)
|
if line[:1] == "#":
|
||||||
|
# Save the comment we're inside
|
||||||
|
if not latest_comment_block:
|
||||||
|
latest_comment_block = line
|
||||||
|
else:
|
||||||
|
latest_comment_block = latest_comment_block + "\n" + line
|
||||||
|
continue
|
||||||
|
match = pattern_tr.match(line)
|
||||||
if match:
|
if match:
|
||||||
dOut[match.group(1)] = match.group(2)
|
# this line is a translated line
|
||||||
|
outval = {}
|
||||||
|
outval["translation"] = match.group(2)
|
||||||
|
if latest_comment_block:
|
||||||
|
# if there was a comment, record that.
|
||||||
|
outval["comment"] = latest_comment_block
|
||||||
|
latest_comment_block = None
|
||||||
|
dOut[match.group(1)] = outval
|
||||||
return (dOut, text)
|
return (dOut, text)
|
||||||
|
|
||||||
# Walks all lua files in the mod folder, collects translatable strings,
|
# Walks all lua files in the mod folder, collects translatable strings,
|
||||||
@ -210,17 +351,17 @@ def generate_template(folder, mod_name):
|
|||||||
if fnmatch.fnmatch(name, "*.lua"):
|
if fnmatch.fnmatch(name, "*.lua"):
|
||||||
fname = os.path.join(root, name)
|
fname = os.path.join(root, name)
|
||||||
found = read_lua_file_strings(fname)
|
found = read_lua_file_strings(fname)
|
||||||
if verbose:
|
if params["verbose"]:
|
||||||
print(fname + ": " + str(len(found)) + " translatable strings")
|
print(f"{fname}: {str(len(found))} translatable strings")
|
||||||
|
|
||||||
for s in found:
|
for s in found:
|
||||||
sources = dOut.get(s, set())
|
sources = dOut.get(s, set())
|
||||||
sources.add("# " + fname)
|
sources.add(f"### {os.path.basename(fname)} ###")
|
||||||
dOut[s] = sources
|
dOut[s] = sources
|
||||||
|
|
||||||
if len(dOut) == 0:
|
if len(dOut) == 0:
|
||||||
return None
|
return None
|
||||||
templ_file = folder + "locale/template.txt"
|
templ_file = os.path.join(folder, "locale/template.txt")
|
||||||
write_template(templ_file, dOut, mod_name)
|
write_template(templ_file, dOut, mod_name)
|
||||||
return dOut
|
return dOut
|
||||||
|
|
||||||
@ -229,8 +370,8 @@ def generate_template(folder, mod_name):
|
|||||||
# dNew is the data used to generate the template, it has all the
|
# dNew is the data used to generate the template, it has all the
|
||||||
# currently-existing localized strings
|
# currently-existing localized strings
|
||||||
def update_tr_file(dNew, mod_name, tr_file):
|
def update_tr_file(dNew, mod_name, tr_file):
|
||||||
if verbose:
|
if params["verbose"]:
|
||||||
print("updating " + tr_file)
|
print(f"updating {tr_file}")
|
||||||
|
|
||||||
tr_import = import_tr_file(tr_file)
|
tr_import = import_tr_file(tr_file)
|
||||||
dOld = tr_import[0]
|
dOld = tr_import[0]
|
||||||
@ -239,8 +380,8 @@ def update_tr_file(dNew, mod_name, tr_file):
|
|||||||
textNew = strings_to_text(dNew, dOld, mod_name)
|
textNew = strings_to_text(dNew, dOld, mod_name)
|
||||||
|
|
||||||
if textOld and textOld != textNew:
|
if textOld and textOld != textNew:
|
||||||
print(tr_file + " has changed.")
|
print(f"{tr_file} has changed.")
|
||||||
shutil.copyfile(tr_file, tr_file+".old")
|
shutil.copyfile(tr_file, f"{tr_file}.old")
|
||||||
|
|
||||||
with open(tr_file, "w", encoding='utf-8') as new_tr_file:
|
with open(tr_file, "w", encoding='utf-8') as new_tr_file:
|
||||||
new_tr_file.write(textNew)
|
new_tr_file.write(textNew)
|
||||||
@ -250,20 +391,20 @@ def update_mod(folder):
|
|||||||
modname = get_modname(folder)
|
modname = get_modname(folder)
|
||||||
if modname is not None:
|
if modname is not None:
|
||||||
process_po_files(folder, modname)
|
process_po_files(folder, modname)
|
||||||
print("Updating translations for " + modname)
|
print(f"Updating translations for {modname}")
|
||||||
data = generate_template(folder, modname)
|
data = generate_template(folder, modname)
|
||||||
if data == None:
|
if data == None:
|
||||||
print("No translatable strings found in " + modname)
|
print(f"No translatable strings found in {modname}")
|
||||||
else:
|
else:
|
||||||
for tr_file in get_existing_tr_files(folder):
|
for tr_file in get_existing_tr_files(folder):
|
||||||
update_tr_file(data, modname, folder + "locale/" + tr_file)
|
update_tr_file(data, modname, os.path.join(folder, "locale/", tr_file))
|
||||||
else:
|
else:
|
||||||
print("Unable to find modname in folder " + folder)
|
print("Unable to find modname in folder " + folder)
|
||||||
|
|
||||||
# Determines if the folder being pointed to is a mod or a mod pack
|
# Determines if the folder being pointed to is a mod or a mod pack
|
||||||
# and then runs update_mod accordingly
|
# and then runs update_mod accordingly
|
||||||
def update_folder(folder):
|
def update_folder(folder):
|
||||||
is_modpack = os.path.exists(folder+"modpack.txt") or os.path.exists(folder+"modpack.conf")
|
is_modpack = os.path.exists(os.path.join(folder, "modpack.txt")) or os.path.exists(os.path.join(folder, "modpack.conf"))
|
||||||
if is_modpack:
|
if is_modpack:
|
||||||
subfolders = [f.path for f in os.scandir(folder) if f.is_dir()]
|
subfolders = [f.path for f in os.scandir(folder) if f.is_dir()]
|
||||||
for subfolder in subfolders:
|
for subfolder in subfolders:
|
||||||
@ -272,10 +413,9 @@ def update_folder(folder):
|
|||||||
update_mod(folder)
|
update_mod(folder)
|
||||||
print("Done.")
|
print("Done.")
|
||||||
|
|
||||||
|
def run_all_subfolders(folder):
|
||||||
|
for modfolder in [f.path for f in os.scandir(folder) if f.is_dir()]:
|
||||||
|
update_folder(modfolder + "/")
|
||||||
|
|
||||||
update_folder("./")
|
|
||||||
|
|
||||||
# Runs this script on each sub-folder in the parent folder.
|
main()
|
||||||
# I'm using this for testing this script on all installed mods.
|
|
||||||
#for modfolder in [f.path for f in os.scandir("../") if f.is_dir()]:
|
|
||||||
# update_folder(modfolder + "/")
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user