Support

Account

Home Forums Bug Reports l10n: ACF translates label VALUES in group editing screens Reply To: l10n: ACF translates label VALUES in group editing screens

  • I’m sorry to see that after 4 months this bug is still marked as “unread”, i.e. not even acknowledged. Is it too obscure, or did I do a bad job at describing it?

    For posterity, I ended up on the following hotfix. The additional test for the existence of get_current_screen() is necessary on some (unrelated) admin screens.

    function conditional_acf_set_l10n(){
    	if ( is_admin() ) {
    		if ( function_exists('get_current_screen') ) {
    			$current_screen = get_current_screen();
    			return ( $current_screen->post_type != 'acf-field-group' );
    		}
    	}
    	return true;
    }
    add_filter( 'acf/settings/l10n', 'conditional_acf_set_l10n' );