Make WordPress Core


Ignore:
Timestamp:
04/16/2014 12:37:59 AM (10 years ago)
Author:
nacin
Message:

Translate a string added in 3.7.1 but never translated previously.

props SergeyBiryukov.
fixes #27819.

File:
1 edited

Legend:

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

    r27711 r28145  
    115115    $response = wp_remote_get( $url, $options );
    116116    if ( $ssl && is_wp_error( $response ) ) {
    117         trigger_error( __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="https://wordpress.org/support/">support forums</a>.' ) . ' ' . '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)', headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE );
     117        trigger_error( __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="https://wordpress.org/support/">support forums</a>.' ) . ' ' . __( '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)' ), headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE );
    118118        $response = wp_remote_get( $http_url, $options );
    119119    }
Note: See TracChangeset for help on using the changeset viewer.