Hi,
changed the languages files to Norwegian with PoEdit, put them in a new folder called
hueman-child/languages/
Changed functions.php in hueman-child folder to this:
<?php
/**
* Setup My Child Theme's textdomain.
*
* Declare textdomain for this child theme.
* Translations can be filed in the /languages/ directory.
*/
function my_child_theme_setup() {
load_child_theme_textdomain( 'hueman-child', get_stylesheet_directory() . '/languages' );
}
add_action( 'after_setup_theme', 'my_child_theme_setup' );
?>
— and it does not work. It uploads fine, but it’s still in english. What have I forgotten? I’m going nuts! Help!