All Collections
Extra Theme Documentation
How to translate the Extra Theme
How to translate the Extra Theme

Manully translate Extra theme

Eduard Ungureanu avatar
Written by Eduard Ungureanu
Updated over a week ago

Step 1. Setting up WordPress to use your language

  1. You can go to your Dashboard (left menu) > Settings > General > Site Language.

  2. Choose the language from the dropdown menu and click Save Changes.

Step 2. Install and activate a Child Theme

You can go and download an Extra Child Theme from here.

Follow these steps to install & activate it:

  1. Go to Appearance -> Themes -> Add New -> Upload Theme

  2. Choose the zip file you downloaded from the link above and click the Install Now button.

  3. After the installation is completed, click on the Activate link

Step 3. Downloading Extra language files from here.

Step 4. Preparing the files

  1. Install a 3rd party plugin called WP File Manager. This will help you to download and upload files directly from your dashboard without the need to log in to the FTP server.

  2. Once the plugin is installed, go to the left menu "File Manager" -> wp-content / themes / ExtraChildTheme-master folder, where you should see two subfolders:

  • theme - this will contain the Extra general translation

  • builder - Create the builder folder manually if you want to edit the Divi Builder strings.

Once the zip file was downloaded at step 3, locate the folder called lang, open the .po file related to your language using the PO Edit app (which can be downloaded from here).

Step 5. Click on Create New Translation Button:

Step 6. Choose the language to which you want to translate Extra: 

Make your translations or change the existing ones, then save the file in the format xx_XX.po  where xx indicates the country code. 

If you're not sure about the country code, you can check on this page your language and on the 3rd line, it should have the country code: 

Example: ro_RO.po  is the file name for the Romanian translation.

The saving process will create a new file with the extension of .mo

Using the File Manager plugin, upload both files xx_XX.po  and xx_XX.mo to wp-content/themes/ExtraChildTheme-master/lang/theme folder.

Repeat those steps for the .po file located in the zip file downloaded at step 3 includes/builder/languages . Those are the translation files related to the Divi Builder interface and elements.

Using your own child theme

In case there is already a child theme installed and activated on the server, first, create a sub-folder name lang , and inside it, create new folders: theme and builder. With the correct folder structure created, copy/paste this PHP snippet into functions.php  file:

function wpcninja_translation() {
load_child_theme_textdomain( 'extra', get_stylesheet_directory() . '/lang/theme/' );
load_child_theme_textdomain( 'et_builder', get_stylesheet_directory() . '/lang/builder/' );

}
add_action( 'after_setup_theme', 'wpcninja_translation' );

Place your translation into those two respective folders.

Did this answer your question?