How to Hide the "WP Override Translations" Admin Menu

function plt_hide_wp_override_translations_menus() {
	//Hide the "Settings → WP Override Translations" menu.
	remove_submenu_page('options-general.php', 'wp-override-translations');
}

add_action('admin_menu', 'plt_hide_wp_override_translations_menus', 11);

Where do I put this code?