#!/usr/bin/env pythonimportosfromshutilimportcopyfile# When you "Build and Download" from Crowdin, you endup with a qgroundcontro.zip file.# It is assumed this zip file has been extracted into ./qgroundcontrolforlanginos.listdir("./qgroundcontrol"):srcFile=os.path.join("./qgroundcontrol",lang,"qgc.ts")if(os.path.exists(srcFile)):lang=lang.replace("-","_")dstFile="./qgc"+"_"+lang+".ts"print("qgc"+"_"+lang+".ts")copyfile(srcFile,dstFile)