Opened 17 years ago
Closed 16 years ago
#8142 closed defect (bug) (fixed)
misc i18n fixes for 2.7
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | 2.7 | Priority: | normal |
Severity: | normal | Version: | |
Component: | I18N | Keywords: | |
Focuses: | Cc: |
Description
- Admin paging:
__( 'Displaying %s–%s of %s' ) . '</span>' . __( '%s' )
The last %s
doesn't have to be i18n-ed.
- Delete confirmations:
var n = $('#the-list input[type="checkbox"]:checked').length; var m = n > 1 ? '<plural message>' : 'singular message';
Pluralization by hand is a bad idea. Plural only confirmations sound well enough in English.
- via -> via %s
Attachments (4)
Change History (15)
#6
@
16 years ago
- Resolution fixed deleted
- Status changed from closed to reopened
Last change breaks google gears for me in WordPress 2.7-beta3-9791
#10
@
16 years ago
- Resolution fixed deleted
- Status changed from closed to reopened
Two more please!
in /wp-includes/comment-template.php around the line 1184:
<div class="comment-meta commentmetadata"><a href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ) ?>"><?php printf(__('%1$s at %2$s'), get_comment_date('F jS, Y'), get_comment_time()) ?></a><?php edit_comment_link('edit',' ','') ?></div>
get_comment_date('F jS, Y')
->
get_comment_date()
and
edit_comment_link('edit',' ','')
->
edit_comment_link(__('Edit'),' ','')
Note: See
TracTickets for help on using
tickets.
(In [9589]) i18n fixes from nbachiyski. fixes #8142