Make WordPress Core


Ignore:
Timestamp:
06/02/2022 03:03:39 PM (3 years ago)
Author:
audrasjb
Message:

Text Changes: Improve consistency of admin error notices.

This changeset replaces <strong>Error</strong>: with <strong>Error:</strong>, for better consistency.

Props transl8or, mihaidumitrascu, audrasjb.
Fixes #50785.

File:
1 edited

Legend:

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

    r53426 r53458  
    23032303
    23042304    if ( $error ) {
    2305         $error_string = __( '<strong>Error</strong>: Could not connect to the server. Please verify the settings are correct.' );
     2305        $error_string = __( '<strong>Error:</strong> Could not connect to the server. Please verify the settings are correct.' );
    23062306        if ( is_wp_error( $error ) ) {
    23072307            $error_string = esc_html( $error->get_error_message() );
Note: See TracChangeset for help on using the changeset viewer.