Changeset 45926 for trunk/src/wp-admin/edit.php
- Timestamp:
- 09/01/2019 05:12:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit.php
r45759 r45926 315 315 $bulk_messages = array(); 316 316 $bulk_messages['post'] = array( 317 /* translators: %s: number of posts */ 317 318 'updated' => _n( '%s post updated.', '%s posts updated.', $bulk_counts['updated'] ), 318 319 'locked' => ( 1 == $bulk_counts['locked'] ) ? __( '1 post not updated, somebody is editing it.' ) : 320 /* translators: %s: number of posts */ 319 321 _n( '%s post not updated, somebody is editing it.', '%s posts not updated, somebody is editing them.', $bulk_counts['locked'] ), 322 /* translators: %s: number of posts */ 320 323 'deleted' => _n( '%s post permanently deleted.', '%s posts permanently deleted.', $bulk_counts['deleted'] ), 324 /* translators: %s: number of posts */ 321 325 'trashed' => _n( '%s post moved to the Trash.', '%s posts moved to the Trash.', $bulk_counts['trashed'] ), 326 /* translators: %s: number of posts */ 322 327 'untrashed' => _n( '%s post restored from the Trash.', '%s posts restored from the Trash.', $bulk_counts['untrashed'] ), 323 328 ); 324 329 $bulk_messages['page'] = array( 330 /* translators: %s: number of pages */ 325 331 'updated' => _n( '%s page updated.', '%s pages updated.', $bulk_counts['updated'] ), 326 332 'locked' => ( 1 == $bulk_counts['locked'] ) ? __( '1 page not updated, somebody is editing it.' ) : 333 /* translators: %s: number of pages */ 327 334 _n( '%s page not updated, somebody is editing it.', '%s pages not updated, somebody is editing them.', $bulk_counts['locked'] ), 335 /* translators: %s: number of pages */ 328 336 'deleted' => _n( '%s page permanently deleted.', '%s pages permanently deleted.', $bulk_counts['deleted'] ), 337 /* translators: %s: number of pages */ 329 338 'trashed' => _n( '%s page moved to the Trash.', '%s pages moved to the Trash.', $bulk_counts['trashed'] ), 339 /* translators: %s: number of pages */ 330 340 'untrashed' => _n( '%s page restored from the Trash.', '%s pages restored from the Trash.', $bulk_counts['untrashed'] ), 331 341 ); 332 342 $bulk_messages['wp_block'] = array( 343 /* translators: %s: number of blocks */ 333 344 'updated' => _n( '%s block updated.', '%s blocks updated.', $bulk_counts['updated'] ), 334 'locked' => ( 1 == $bulk_counts['locked'] ) ? __( '1 block not updated, somebody is editing it.' ) : _n( '%s block not updated, somebody is editing it.', '%s blocks not updated, somebody is editing them.', $bulk_counts['locked'] ), 345 'locked' => ( 1 == $bulk_counts['locked'] ) ? __( '1 block not updated, somebody is editing it.' ) : 346 /* translators: %s: number of blocks */ 347 _n( '%s block not updated, somebody is editing it.', '%s blocks not updated, somebody is editing them.', $bulk_counts['locked'] ), 348 /* translators: %s: number of blocks */ 335 349 'deleted' => _n( '%s block permanently deleted.', '%s blocks permanently deleted.', $bulk_counts['deleted'] ), 350 /* translators: %s: number of blocks */ 336 351 'trashed' => _n( '%s block moved to the Trash.', '%s blocks moved to the Trash.', $bulk_counts['trashed'] ), 352 /* translators: %s: number of blocks */ 337 353 'untrashed' => _n( '%s block restored from the Trash.', '%s blocks restored from the Trash.', $bulk_counts['untrashed'] ), 338 354 );
Note: See TracChangeset
for help on using the changeset viewer.