Make WordPress Core

Changeset 34016


Ignore:
Timestamp:
09/10/2015 08:59:35 PM (10 years ago)
Author:
wonderboymusic
Message:

After [34004], don't break apart the paragraph into multiple translatable strings.

Fixes #18418.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/edit-form-advanced.php

    r34004 r34016  
    396396if ( 'post' == $post_type ) {
    397397    $publish_box = '<p>' . __('Several boxes on this screen contain settings for how your content will be published, including:') . '</p>';
    398     $publish_box .= '<ul><li>' . __( '<strong>Publish</strong> - ' ) .
    399         __( 'You can set the terms of publishing your post in the Publish box. ') .
    400         __( 'For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. ') .
    401         __( 'Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). ' ) .
    402         __( 'Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post. ' ) .
    403         __( 'The Password protected option allows you to set an arbitrary password for each post. ' ) .
    404         __( 'The Private option hides the post from everyone except editors and administrators. ' ) .
     398    $publish_box .= '<ul><li>' .
     399        __( '<strong>Publish</strong> &mdash; You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post. The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators.' ) .
    405400    '</li>';
    406401
Note: See TracChangeset for help on using the changeset viewer.