Hi,
In that case you should add your language files to the child theme.
Inside your child theme functions.php file add the following code.
add_action( ‘after_setup_theme’, ‘my_translation_child_theme_setup’ );
function my_translation_child_theme_setup() {
load_child_theme_textdomain( ‘swiftframework’, get_stylesheet_directory() . ‘/languages’ );
}
You should create a “languages” directory inside your child theme directory and place there your .po and .mo files.
Hope it helps.
-Rui