I am coming from #28681 to report this.
Publish to arrive at the pre-publish viewIt reads Share this page and to share this page
It reads Share this post and to share this post

Ideally Publicize support is not available for pages, but as and when we make it available, the copy should be updated. // cc @tyxla
Note: to enable Publicize support for a post type, one needs to define it specifically, like this:
add_action( 'init', '_test_jetpack_add_publicize_support_to_pages' );
function _test_jetpack_add_publicize_support_to_pages() {
// Enable Publicize support for pages
add_post_type_support( 'page', 'publicize' );
}
Ideally, we should be flexible and adapt copy when support is enabled not only on pages, but on any post types. For that purpose, we could consume the post type labels that are available for us already.
Most helpful comment
Ideally, we should be flexible and adapt copy when support is enabled not only on pages, but on any post types. For that purpose, we could consume the post type labels that are available for us already.