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/theme.php

    r28126 r28145  
    298298 * @return mixed
    299299 */
    300 function themes_api( $action, $args = null ) {
     300    function themes_api( $action, $args = null ) {
    301301
    302302    if ( is_array($args) )
     
    348348        if ( $ssl && is_wp_error( $request ) ) {
    349349            if ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) {
    350                 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 );
     350                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 );
    351351            }
    352352            $request = wp_remote_post( $http_url, $args );
Note: See TracChangeset for help on using the changeset viewer.