Make WordPress Core

Changeset 45382


Ignore:
Timestamp:
05/23/2019 01:11:04 AM (5 years ago)
Author:
SergeyBiryukov
Message:

I18N: Make punctuation in some wp-admin strings more consistent.

Props pedromendonca.
Fixes #47358.

Location:
trunk/src/wp-admin
Files:
3 edited

Legend:

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

    r45140 r45382  
    109109    echo '<div id="message" class="updated notice is-dismissible"><p>';
    110110    $deleted = (int) $_REQUEST['deleted'];
    111     printf( _n( '%s link deleted.', '%s links deleted', $deleted ), $deleted );
     111    printf( _n( '%s link deleted.', '%s links deleted.', $deleted ), $deleted );
    112112    echo '</p></div>';
    113113    $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'deleted' ), $_SERVER['REQUEST_URI'] );
  • trunk/src/wp-admin/options-discussion.php

    r45140 r45382  
    8989<label for="show_comments_cookies_opt_in">
    9090<input name="show_comments_cookies_opt_in" type="checkbox" id="show_comments_cookies_opt_in" value="1" <?php checked( '1', get_option( 'show_comments_cookies_opt_in' ) ); ?> />
    91 <?php _e( 'Show comments cookies opt-in checkbox, allowing comment author cookies to be set.' ); ?>
     91<?php _e( 'Show comments cookies opt-in checkbox, allowing comment author cookies to be set' ); ?>
    9292</label>
    9393<br />
  • trunk/src/wp-admin/setup-config.php

    r44738 r45382  
    410410</p>
    411411<textarea id="wp-config" cols="98" rows="15" class="code" readonly="readonly"><?php echo $config_text; ?></textarea>
    412 <p><?php _e( 'After you&#8217;ve done that, click &#8220;Run the installation.&#8221;' ); ?></p>
     412<p><?php _e( 'After you&#8217;ve done that, click &#8220;Run the installation&#8221;.' ); ?></p>
    413413<p class="step"><a href="<?php echo $install; ?>" class="button button-large"><?php _e( 'Run the installation' ); ?></a></p>
    414414<script>
Note: See TracChangeset for help on using the changeset viewer.