#26303 closed defect (bug) (duplicate)
wp_dashboard_right_now() does not allow plural forms
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 3.8 |
Component: | I18N | Keywords: | |
Focuses: | Cc: |
Description
Site Content
Example: "15 Pages"
WordPress 3.7:
sprintf( _n( '%s page', '%s pages', $num_pages->publish )
So, for translators there could be "3 Stránky" and "10 Stránek"
WordPress 3.8:
There is only printf() function with $post_type_obj->label.
So, there is everytime "3 Stránky" and "10 Stránky" (which is wrong for our locale).
And also there is no need for capitalized first letter in our language (and it could not be changed).
Change History (2)
Note: See
TracTickets for help on using
tickets.
Duplicate of #26066.