Changeset 5001 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-customizations.php
- Timestamp:
- 02/24/2017 06:30:31 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-customizations.php
r4401 r5001 81 81 82 82 if ( $num_posts && $num_posts->publish ) { 83 $text = sprintf( _n( '%s Plugin', '%s Plugins', $num_posts->publish ), number_format_i18n( $num_posts->publish ) );83 $text = sprintf( _n( '%s Plugin', '%s Plugins', $num_posts->publish, 'wporg-plugins' ), number_format_i18n( $num_posts->publish ) ); 84 84 $post_type_object = get_post_type_object( $post_type ); 85 85 … … 198 198 'setting' => 'wporg-plugins', 199 199 'code' => 'plugins-bulk-rejected', 200 'message' => sprintf( _n( ' 1plugin rejected.', '%d plugins rejected.', $rejected, 'wporg-plugins' ), $rejected ),200 'message' => sprintf( _n( '%d plugin rejected.', '%d plugins rejected.', $rejected, 'wporg-plugins' ), $rejected ), 201 201 'type' => 'updated', 202 202 ) ) ); … … 528 528 'in_moderation' => $counts->moderated, 529 529 'i18n_comments_text' => sprintf( 530 _n( '%s Comment', '%s Comments', $counts->approved ),530 _n( '%s Comment', '%s Comments', $counts->approved, 'wporg-plugins' ), 531 531 number_format_i18n( $counts->approved ) 532 532 ), 533 533 'i18n_moderation_text' => sprintf( 534 _nx( '%s in moderation', '%s in moderation', $counts->moderated, 'comments' ),534 _nx( '%s in moderation', '%s in moderation', $counts->moderated, 'comments', 'wporg-plugins' ), 535 535 number_format_i18n( $counts->moderated ) 536 536 )
Note: See TracChangeset
for help on using the changeset viewer.