Whenever I run php bin/magento setup:static-content:deploy it always generates files for en_US.

I would like it to generate files for en_GB instead.

How do I achieve this?

And is there a reference manual for these command line instructions? I tried looking on the official Magento 2 website, but couldnt find anything.

share|improve this question
2  
Possible duplicate of How to add custom css file specific to language or store in magento2 – MagenX Mar 15 '16 at 14:59
    
up vote 5 down vote accepted
bin/magento setup:static-content:deploy en_GB  

or if you want for multiple languages:

bin/magento setup:static-content:deploy en_GB en_US ro_RO
share|improve this answer
    
thanks Marius! :) – Jimmery Mar 15 '16 at 15:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.