How to change the “All Categories” label within the panel of my custom post type?

Add this to the labels array:

'all_items' => __( 'All Locations' ),

See register_taxonomy() docs for full description of labels argument.

tech