I want my pulled i18n json files to have flatten key/value pair, but when I pull it from the cloud, it returns nested key.
Could you investigate this issue and give an option to have flatten key?
Here is my settings:
// package.json
"tolgee:pull": "pnpm tolgee pull"
// .tolgeerc
{
"$schema": "https://docs.tolgee.io/cli-schema.json",
"projectId": 12745,
"format": "JSON_TOLGEE",
"patterns": [
"./src/**/*.ts?(x)"
],
"push": {
"files": [
{
"path": "./src/i18n/en.json",
"language": "en"
},
{
"path": "./src/i18n/ko.json",
"language": "ko"
}
],
"forceMode": "OVERRIDE"
},
"pull": {
"path": "./src/i18n"
}
}
Results
// expected
{
"a.b.c": "test text"
}
// actual result
{
"a": {
"b": {
"c": "test text"
}
}
}