lokalise / i18n-ally-jetbrains-docs

6 stars 4 forks source link

JSON language files: How to support dot notation? #25

Open derwaldgeist opened 2 years ago

derwaldgeist commented 2 years ago

I am switching from VSCode to WebStorms. Our JSON files are structured with dot notation, e.g.

{
  "Common.chats": "Chats"
}

instead of using nested key notation:

{
  "Common": {
    "chats": "Chats"
  }
}

Dot notation was possible in VSCode, but I cannot find an option in WebStorm to support this. If I create new keys, they are always nested.