I have 2 json files:
- file1.json:
{ "subject": "Subject1" }
- file2.json:
{ "subject": "Subject2" }
as you can see, they both have the same subject key.
When I run commands to upload my json files:
lokalise2 file upload --lang-iso en --file "src/file1.json" --project-id <project_id> --token <token_id>
lokalise2 file upload --lang-iso en --file "src/file2.json" --project-id <project_id> --token <token_id>
I got uploaded only the subject from the first file1.json
Expected behavior: both subject keys are uploaded and assigned to different files in localise.
Everything works OK when they keys are different
I have 2 json files:
{ "subject": "Subject1" }{ "subject": "Subject2" }as you can see, they both have the same
subjectkey.When I run commands to upload my json files:
I got uploaded only the
subjectfrom the firstfile1.jsonExpected behavior: both
subjectkeys are uploaded and assigned to different files in localise.Everything works OK when they keys are different