Make WordPress Core

Changeset 45433


Ignore:
Timestamp:
05/26/2019 02:39:35 PM (6 years ago)
Author:
SergeyBiryukov
Message:

I18N: Merge duplicate "Try Again" strings.

Props ramiy.
Fixes #47251.

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

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-theme-install-list-table.php

    r44151 r45433  
    149149
    150150        if ( is_wp_error( $api ) ) {
    151             wp_die( $api->get_error_message() . '</p> <p><a href="#" onclick="document.location.reload(); return false;">' . __( 'Try again' ) . '</a>' );
     151            wp_die( $api->get_error_message() . '</p> <p><a href="#" onclick="document.location.reload(); return false;">' . __( 'Try Again' ) . '</a>' );
    152152        }
    153153
  • trunk/src/wp-admin/setup-config.php

    r45416 r45433  
    273273        }
    274274
    275         $tryagain_link = '</p><p class="step"><a href="' . $step_1 . '" onclick="javascript:history.go(-1);return false;" class="button button-large">' . __( 'Try again' ) . '</a>';
     275        $tryagain_link = '</p><p class="step"><a href="' . $step_1 . '" onclick="javascript:history.go(-1);return false;" class="button button-large">' . __( 'Try Again' ) . '</a>';
    276276
    277277        if ( empty( $prefix ) ) {
Note: See TracChangeset for help on using the changeset viewer.