Changeset 47152
- Timestamp:
- 02/01/2020 08:27:28 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-comments.php
r47122 r47152 271 271 if ( $approved > 0 ) { 272 272 /* translators: %s: Number of comments. */ 273 $messages[] = sprintf( _n( '%s comment approved ', '%s comments approved', $approved ), $approved );273 $messages[] = sprintf( _n( '%s comment approved.', '%s comments approved.', $approved ), $approved ); 274 274 } 275 275 … … 282 282 if ( $unspammed > 0 ) { 283 283 /* translators: %s: Number of comments. */ 284 $messages[] = sprintf( _n( '%s comment restored from the spam ', '%s comments restored from the spam', $unspammed ), $unspammed );284 $messages[] = sprintf( _n( '%s comment restored from the spam.', '%s comments restored from the spam.', $unspammed ), $unspammed ); 285 285 } 286 286 … … 293 293 if ( $untrashed > 0 ) { 294 294 /* translators: %s: Number of comments. */ 295 $messages[] = sprintf( _n( '%s comment restored from the Trash ', '%s comments restored from the Trash', $untrashed ), $untrashed );295 $messages[] = sprintf( _n( '%s comment restored from the Trash.', '%s comments restored from the Trash.', $untrashed ), $untrashed ); 296 296 } 297 297 298 298 if ( $deleted > 0 ) { 299 299 /* translators: %s: Number of comments. */ 300 $messages[] = sprintf( _n( '%s comment permanently deleted ', '%s comments permanently deleted', $deleted ), $deleted );300 $messages[] = sprintf( _n( '%s comment permanently deleted.', '%s comments permanently deleted.', $deleted ), $deleted ); 301 301 } 302 302
Note: See TracChangeset
for help on using the changeset viewer.