- Timestamp:
- 11/13/2017 07:08:56 AM (7 years ago)
- Location:
- branches/4.9
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9
-
branches/4.9/src/wp-includes/widgets/class-wp-widget-custom-html.php
r41640 r42164 176 176 177 177 $l10n = array( 178 'errorNotice' => wp_array_slice_assoc(178 'errorNotice' => array( 179 179 /* translators: %d: error count */ 180 _n_noop( 'There is %d error which must be fixed before you can save.', 'There are %d errors which must be fixed before you can save.' ), 181 array( 'singular', 'plural' ) 180 'singular' => _n( 'There is %d error which must be fixed before you can save.', 'There are %d errors which must be fixed before you can save.', 1 ), 181 /* translators: %d: error count */ 182 'plural' => _n( 'There is %d error which must be fixed before you can save.', 'There are %d errors which must be fixed before you can save.', 2 ), // @todo This is lacking, as some languages have a dedicated dual form. For proper handling of plurals in JS, see #20491. 182 183 ), 183 184 );
Note: See TracChangeset
for help on using the changeset viewer.