API limitation when having lot of modules
We have an android project with 30 modules (growing as we add new features) and 4 languages. Each module has its own strings, which we separate using tags in POEditor.
However this means when we want to update all strings in the project from the POEditor API we have to make a separate export call for each module and language. this means 30*4 = 120 export api calls then 120 file downloads.
This is getting slow to execute, also we probabaly started to hit the API call limitations sometimes when updating everything.
Is there a way to export the strings all at once including the tags?
With that we could make much less API calls, and take care of putting the string in their modules in the script on our side.
-
The only API method you can use to export the strings in a language with the tags included is this one: https://poeditor.com/docs/api#terms_list
Based on this JSON export, perhaps you could recreate the files for each module.