I solved it. .mo file didn’t do translation of Redux Framework because he need to init BEFORE Redux loaded.
I placed this before redux loaded in functions.php:
if ( ! function_exists( ‘redux_options_translation’ ) ) {
function redux_options_translation() {
// Make theme translation ready.
load_theme_textdomain( ‘ryan’, get_template_directory() . ‘/languages’ );
}
redux_options_translation();
}
And it worked for me 🙂
sorry for bad english
-
This reply was modified 9 years, 7 months ago by dmitryursa.