msgcat ru_RU.po | msgfmt -o ru_RU.mo -
msgcat en_US.po | msgfmt -o en_US.mo -
msgcat nl_NL.po | msgfmt -o nl_NL.mo -
msgcat woocommerce-be_BY.po | msgfmt -o woocommerce-be_BY.mo -



# Find PO files, process each with msgfmt and rename the result to MO
for file in `find . -name "*.po"` ; do msgfmt -o ${file/.po/.mo} $file ; done


// Load translation files from your child theme instead of the parent theme
function my_child_theme_locale() {
    load_child_theme_textdomain( 'total', get_stylesheet_directory() . '/languages' );
}
add_action( 'after_setup_theme', 'my_child_theme_locale' );

Leave a Reply

Your email address will not be published. Required fields are marked *