Make WordPress Core

Changeset 58810


Ignore:
Timestamp:
07/25/2024 10:38:01 PM (14 months ago)
Author:
peterwilsoncc
Message:

General: Update English Gravatar links.

Replace links to en.gravatar.com with links to gravatar.com as the english site now uses the base domain. This avoids an unnecessary redirect for english language sites.

The links remain translatable for non-english versions of WordPress.

Props narenin, knutsp.
Fixes #61424.

Location:
trunk/src/wp-admin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/upgrade.php

    r58435 r58810  
    279279Commenter avatars come from <a href="%s">Gravatar</a>.'
    280280            ),
    281             esc_url( __( 'https://en.gravatar.com/' ) )
     281            /* translators: The localized Gravatar URL. */
     282            esc_url( __( 'https://gravatar.com/' ) )
    282283        );
    283284        $wpdb->insert(
  • trunk/src/wp-admin/user-edit.php

    r58581 r58810  
    629629                                            /* translators: %s: Gravatar URL. */
    630630                                            __( '<a href="%s">You can change your profile picture on Gravatar</a>.' ),
    631                                             __( 'https://en.gravatar.com/' )
     631                                            /* translators: The localized Gravatar URL. */
     632                                            __( 'https://gravatar.com/' )
    632633                                        );
    633634                                    } else {
Note: See TracChangeset for help on using the changeset viewer.