in library/scripts/move_strings_for_packing.py [0:0]
def get_resource_content_without_header(resource_file_path):
with open(resource_file_path, "rt") as resource_file:
# skip headers
for line in resource_file:
if "<resources" in line:
break
return resource_file.read()