Skip to content

Fixed rust template translations not working bug

In previous version of Rust template, translation files was created under "project folder/share" and the files would not be packaged when the project is being built.

This merge request changes ensures that:

  • translation files are created under "project folder/build/share" folder
  • the path "build/share" was added to clickable.yaml to ensure that the translation files are packaged
  • the "project foled/build/share" is created when build starts if it does not already exist. This fixes build crash in case there are no translation files (in my tests the folder would not be created in that case).

Merge request reports