Make WordPress Core

Changeset 28088


Ignore:
Timestamp:
04/12/2014 07:38:49 PM (10 years ago)
Author:
nacin
Message:

About page: Translate all Under the Hood strings.

see #27713.

File:
1 edited

Legend:

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

    r28052 r28088  
    9797    <div class="feature-section col three-col">
    9898        <div>
    99             <h4><?php echo ( 'Semantic Captions and Galleries' ); ?></h4>
    100             <p><?php echo ( 'Theme developers have new options for images and galleries that use intelligent HTML5 markup.' ); ?></p>
     99            <h4><?php echo __( 'Semantic Captions and Galleries' ); ?></h4>
     100            <p><?php echo __( 'Theme developers have new options for images and galleries that use intelligent HTML5 markup.' ); ?></p>
    101101
    102             <h4><?php echo ( 'Inline Code Documentation' ); ?></h4>
    103             <p><?php echo ( 'Every action and filter hook in WordPress is now documented, along with expanded documentation for the media manager and customizer APIs.' ); ?></p>
     102            <h4><?php echo __( 'Inline Code Documentation' ); ?></h4>
     103            <p><?php echo __( 'Every action and filter hook in WordPress is now documented, along with expanded documentation for the media manager and customizer APIs.' ); ?></p>
    104104        </div>
    105105        <div>
    106             <h4><?php echo ( 'External Libraries' ); ?></h4>
    107             <p><?php echo ( 'Updated libraries: TinyMCE&nbsp;4, jQuery&nbsp;1.11, Backbone&nbsp;1.1, Underscore&nbsp;1.6, Plupload&nbsp;2, MediaElement&nbsp;2.14, Masonry&nbsp;3.' ); ?></p>
     106            <h4><?php echo __( 'External Libraries' ); ?></h4>
     107            <p><?php echo __( 'Updated libraries: TinyMCE&nbsp;4, jQuery&nbsp;1.11, Backbone&nbsp;1.1, Underscore&nbsp;1.6, Plupload&nbsp;2, MediaElement&nbsp;2.14, Masonry&nbsp;3.' ); ?></p>
    108108
    109             <h4><?php echo ( 'Improved Database Layer' ); ?></h4>
    110             <p><?php echo ( 'Database connections are now more fault-resistant and have improved compatibility with PHP 5.5 and MySQL 5.6.' ); ?></p>
     109            <h4><?php echo __( 'Improved Database Layer' ); ?></h4>
     110            <p><?php echo __( 'Database connections are now more fault-resistant and have improved compatibility with PHP 5.5 and MySQL 5.6.' ); ?></p>
    111111        </div>
    112112        <div class="last-feature">
    113             <h4><?php echo ( 'New Utility Functions' ); ?></h4>
    114             <p><?php echo ( 'Identify a hook in progress with <code>doing_action()</code> and <code>doing_filter()</code>, and manipulate custom image sizes with <code>has_image_size()</code> and <code>remove_image_size()</code>.' ); ?></p>
    115             <p><?php echo ( 'Plugins and themes registering custom theme sizes can now register suggested cropping points. For example, prevent heads from being cropped out of photos with a top-center crop.' ); ?></p>
     113            <h4><?php echo __( 'New Utility Functions' ); ?></h4>
     114            <p><?php echo __( 'Identify a hook in progress with <code>doing_action()</code> and <code>doing_filter()</code>, and manipulate custom image sizes with <code>has_image_size()</code> and <code>remove_image_size()</code>.' ); ?></p>
     115            <p><?php echo __( 'Plugins and themes registering custom theme sizes can now register suggested cropping points. For example, prevent heads from being cropped out of photos with a top-center crop.' ); ?></p>
    116116        </div>
    117117</div>
Note: See TracChangeset for help on using the changeset viewer.