Load Child Text-domain on Kallyas Child theme
Please add this code in your Child theme’s functions.php file:
// This will load the child theme's languages files
add_action( 'after_setup_theme', 'kallyasChildLoadTextDomain' );
function kallyasChildLoadTextDomain(){
load_child_theme_textdomain( 'zn_framework', get_stylesheet_directory().'/languages' );
}