Make WordPress Core


Ignore:
Timestamp:
02/24/2016 02:10:14 AM (10 years ago)
Author:
SergeyBiryukov
Message:

I18N: Remove <code> tag from translatable string in wp-admin/includes/class-wp-filesystem-ssh2.php.

Props ramiy.
Fixes #35741.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-filesystem-ssh2.php

    r35663 r36670  
    6363                }
    6464                if ( !function_exists('stream_get_contents') ) {
    65                         $this->errors->add('ssh2_php_requirement', __('The ssh2 PHP extension is available, however, we require the PHP5 function <code>stream_get_contents()</code>'));
     65                        $this->errors->add(
     66                                'ssh2_php_requirement',
     67                                sprintf(
     68                                        /* translators: %s: stream_get_contents() */
     69                                        __( 'The ssh2 PHP extension is available, however, we require the PHP5 function %s' ),
     70                                        '<code>stream_get_contents()</code>'
     71                                )
     72                        );
    6673                        return;
    6774                }
Note: See TracChangeset for help on using the changeset viewer.