If you are familiar with WordPress and the many plugins and themes available for it, you’ve probably come across some strangely named files like .mo, .po, and .pot. This file explains how to take a .po file that is included with this theme and translate it into your native language.
SUMMARIZED INSTRUCTIONS:
- Download a gettext file editor like poedit and install it.
- Open the English .po file that came with this theme (custom/lang/en_EN.po).
- Now go through it and translate all the text one line at a time in the bottom box.
- hen ‘File’ => ‘Save as’ to ‘custom/lang/’ folder, where .po file is located. This will output a .po and .mo file.
- Open wp-config.php, located in WordPress root directory and search for this line of code: define (‘WPLANG’, ”); Add your own country code, Brasil as an example: define (‘WPLANG’, ‘pt_BR’);
- Add the same country code to .mo file you’ve saved in ‘custom/lang/’ folder. Example for Brasil: pt_BR.mo
- You’re done!