[Django]-Django: What's the purpose of the LANGUAGE_CODE setting?

6👍

If you do a

grep -R LANGUAGE_CODE * 

over the django code, you can see where it’s being used internally.

Quick glance tells me that it’s a fallback locale if other means can’t be used. If they can, they also usually set the LANGUAGE_CODE so other parts of the code can access it.

Leave a comment