mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 18:18:18 +00:00
7379a64004
So far only done scripts directory, will do the rest if this is considered good
69 lines
1.9 KiB
Python
Executable file
69 lines
1.9 KiB
Python
Executable file
#!/usr/bin/env python3
|
|
import os
|
|
import sys
|
|
|
|
import twlang
|
|
|
|
def copy_fix(infile, delete_unused, append_missing, delete_empty):
|
|
with open(infile, encoding="utf-8") as f:
|
|
content = f.readlines()
|
|
trans = twlang.translations(infile)
|
|
if delete_unused or append_missing:
|
|
local = twlang.localizes()
|
|
if append_missing:
|
|
supported = []
|
|
for tran, (start, expr, end) in trans.items():
|
|
if delete_unused and tran not in local:
|
|
content[start:end] = [None]*(end-start)
|
|
if append_missing and tran in local:
|
|
if expr or (not expr and delete_empty):
|
|
supported.append(local.index(tran))
|
|
else:
|
|
content[start:end] = [None]*(end-start)
|
|
if delete_empty and not expr:
|
|
content[start:end] = [None]*(end-start)
|
|
content = [line for line in content if line is not None]
|
|
if append_missing:
|
|
missing = [index for index in range(len(local)) if index not in supported]
|
|
if missing:
|
|
if content[-1] != "\n":
|
|
content.append("\n")
|
|
for miss in missing:
|
|
if local[miss][1] != "":
|
|
content.append("["+local[miss][1]+"]\n")
|
|
content.append(local[miss][0]+"\n== \n\n")
|
|
content[-1] = content[-1][:-1]
|
|
return "".join(content)
|
|
|
|
def main(argv):
|
|
os.chdir(os.path.dirname(__file__) + "/../..")
|
|
|
|
if len(argv) < 3:
|
|
print("usage: python copy_fix.py <infile> <outfile> [--delete-unused] [--append-missing] [--delete-empty]")
|
|
sys.exit()
|
|
infile = argv[1]
|
|
outfile = argv[2]
|
|
args = argv[3:]
|
|
delete_unused = False
|
|
append_missing = False
|
|
delete_empty = False
|
|
for arg in args:
|
|
if arg == "--delete-unused":
|
|
delete_unused = True
|
|
elif arg == "--append-missing":
|
|
append_missing = True
|
|
elif arg == "--delete-empty":
|
|
delete_empty = True
|
|
else:
|
|
print("No such argument '"+arg+"'.")
|
|
sys.exit()
|
|
|
|
content = copy_fix(infile, delete_unused, append_missing, delete_empty)
|
|
|
|
with open(outfile, "w", encoding="utf-8") as f:
|
|
f.write("".join(content))
|
|
print("Successfully created '" + outfile + "'.")
|
|
|
|
if __name__ == '__main__':
|
|
main(sys.argv)
|