Skip to content
Snippets Groups Projects
Commit 96ee77b6 authored by Ming Rui Zhang's avatar Ming Rui Zhang
Browse files

misc: make initial translations copy valid

Change-Id: Iff8a624865f5ef4438b8fd7c418b1e052ecedd1b
parent 345da3d7
No related branches found
No related tags found
No related merge requests found
......@@ -188,6 +188,8 @@ def release_and_copy_translations():
for file in files:
if file.endswith(".ts"):
execute_cmd(lrelease + " " + lrc_ts_path + os.sep + file)
for _, _, files in os.walk(lrc_ts_path):
for file in files:
if file.endswith(".qm"):
print(bcolors.OKBLUE + "Copying translation file: " +
......@@ -207,6 +209,8 @@ def release_and_copy_translations():
if file.endswith(".ts"):
execute_cmd(lrelease + " " +
client_ts_path + os.sep + file)
for _, _, files in os.walk(client_ts_path):
for file in files:
if file.endswith(".qm"):
print(bcolors.OKBLUE + "Copying translation file: " +
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment