I have the following translation files in the i18n
i18n/en.toml
i18n/es.toml
They start to get quite big, so I am wondering if their is an option to split them, so that it is easier to remember to what section of the site a string is linked to.
Something like:
i18n/topica.en.toml
i18n/topica.es.toml
i18n/topicb.en.toml
i18n/topicb.es.toml
or:
i18n/topica/en.toml
i18n/topica/es.toml
i18n/topicb/en.toml
i18n/topicb/es.toml
I understand that this could lead to potential duplicates, which would be an issue, but it won’t be the case in my situation.
Maybe it is already possible, but I have not seen anything in the documentation about multiples i18n files.