Translate Child Theme

To internationalize a child theme,  follow these steps below
  1. Add a languages directory to Child Theme
    Something like: urbannews-child/languages/
  2. Add language files.
    Your filenames have to be de-DE.po and de-DE.mo (depending on your language)
  3. Add this code segment to urbannews-child/functions.php file

add_action( 'after_setup_theme', 'cactusthemes_child_setup' );
function cactusthemes_child_setup() {
load_child_theme_textdomain( 'cactusthemes', get_stylesheet_directory() . '/languages' );
}
?>