Make WordPress Core


Ignore:
Timestamp:
06/30/2015 08:20:40 PM (11 years ago)
Author:
ocean90
Message:

Make WP_Locale::rtl_src_admin_notice() translatable.

props jrf.
see #32021.

File:
1 edited

Legend:

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

    r32961 r33007  
    196196     */
    197197    public function rtl_src_admin_notice() {
    198         echo '<div class="error"><p>' . 'The <code>build</code> directory of the develop repository must be used for RTL.' . '</p></div>';
     198        /* translators: %s: Name of the directory (build) */
     199        echo '<div class="error"><p>' . sprintf( __( 'The %s directory of the develop repository must be used for RTL.' ), '<code>build</code>' ) . '</p></div>';
    199200    }
    200201
Note: See TracChangeset for help on using the changeset viewer.