Many language files are generated whenever entities are added, but my instance does not need to provide support for anything other than en_US. To prevent EspoCRM from generating language files for unneeded languages, do the following:
Create a file called language.json in custom/Espo/Custom/Resources/metadata/app.json
Add the list of supported languages:
Rebuild and Bob's your uncle.
Create a file called language.json in custom/Espo/Custom/Resources/metadata/app.json
Add the list of supported languages:
Code:
{ "list": [ "en_US" ] }
Comment