How to Hide the "Translations" Admin Menu

function plt_hide_scrybs_translation_menus() {
	//Hide the "Translations" menu.
	remove_menu_page('Scrybs');
}

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

Where do I put this code?