diff --git a/build.py b/build.py index 86d9350ab35f31fb0cae71cf4b37b7da532c7908..e3fc8af7f5be6a51191cb598a1e98674cbeed08f 100644 --- a/build.py +++ b/build.py @@ -127,8 +127,10 @@ if __name__ == "__main__": with open(target, "r") as f: content = f.read() content = content.replace("../", "./") - content = content.replace("license.html", lang + "/license.html") + content = content.replace("licence.html", lang + "/licence.html") content = content.replace("questions.html", lang + "/questions.html") + content = content.replace("strings.js", lang + "/strings.js") + content = content.replace("./logo_g.png", lang + "/logo_g.png") # overwrite file with open(target, "w") as f: f.write(content)