Hi,
You should place the translations inside a child theme, to avoid that the updates delete the translations you made.
add the line below to the functions.php of your child theme, and create the directory languages inside the child theme and place there all translated files.
load_child_theme_textdomain( 'swiftframework', get_stylesheet_directory() . '/languages' );
-Rui