I am using Crowdin CLI to download translations. I want to download the files from one path (flat, to be exact, so "/file.ext") and to a path structured in another way e.g. "/folder/folder2/file.ext".
How do I do that?
My current crowdin.yml that works in downloading from a flat structure to a flat structure:
"preserve_hierarchy": true
files: [
{
"source" : "/**/*.*",
"translation" : "/%locale%/%original_file_name%"
},
{
"source" : "/**/*.*",
"translation" : "/%two_letters_code%/%original_file_name%"
}
]
Extending the "translation" path to the desired "/folder/folder2/file.ext" causes the following error:
Downloaded translations don't match the current project configuration.
The translations for the following sources will be omitted (...)