Hi,
1- Create a directory named language under under child theme directory. Place your translations files there.
2- And paste this code at functions.php of child theme.
add_action( 'after_setup_theme', 'my_child_theme_setup' );
function my_child_theme_setup() {
load_child_theme_textdomain( 'swiftframework', get_stylesheet_directory() . '/language' );
}
Thanks
Mohammad