MyBB Community Forums

Full Version: force a language
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello again.

I need to force a language in my forum wich is not English.

How do i do that ? I've searched but there isn't plenty of information about that.

Btw the language i want to force is Portuguese.

Thanks.
AdminCP > Configuration > General Configuration > Default Language > and select your default language.
You can get rid of the language selector in the footer AdminCP -> Configuration -> General Configuration -> Show Language Selector in Footer and select no
A mixture of the above two should work. If users have already chosen an alternative language and you wish to enforce they use Portuguese, run this query in phpmyadmin:

UPDATE mybb_users SET language = 'portuguese' WHERE 1;

That SHOULD work.
Thank you all, it's just what i was looking for!