Changeset 47785 for trunk/src/wp-admin/edit.php
- Timestamp:
- 05/12/2020 06:30:03 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit.php
r47550 r47785 333 333 /* translators: %s: Number of posts. */ 334 334 'updated' => _n( '%s post updated.', '%s posts updated.', $bulk_counts['updated'] ), 335 'locked' => ( 1 == $bulk_counts['locked'] ) ? __( '1 post not updated, somebody is editing it.' ) :335 'locked' => ( 1 === $bulk_counts['locked'] ) ? __( '1 post not updated, somebody is editing it.' ) : 336 336 /* translators: %s: Number of posts. */ 337 337 _n( '%s post not updated, somebody is editing it.', '%s posts not updated, somebody is editing them.', $bulk_counts['locked'] ), … … 346 346 /* translators: %s: Number of pages. */ 347 347 'updated' => _n( '%s page updated.', '%s pages updated.', $bulk_counts['updated'] ), 348 'locked' => ( 1 == $bulk_counts['locked'] ) ? __( '1 page not updated, somebody is editing it.' ) :348 'locked' => ( 1 === $bulk_counts['locked'] ) ? __( '1 page not updated, somebody is editing it.' ) : 349 349 /* translators: %s: Number of pages. */ 350 350 _n( '%s page not updated, somebody is editing it.', '%s pages not updated, somebody is editing them.', $bulk_counts['locked'] ), … … 359 359 /* translators: %s: Number of blocks. */ 360 360 'updated' => _n( '%s block updated.', '%s blocks updated.', $bulk_counts['updated'] ), 361 'locked' => ( 1 == $bulk_counts['locked'] ) ? __( '1 block not updated, somebody is editing it.' ) :361 'locked' => ( 1 === $bulk_counts['locked'] ) ? __( '1 block not updated, somebody is editing it.' ) : 362 362 /* translators: %s: Number of blocks. */ 363 363 _n( '%s block not updated, somebody is editing it.', '%s blocks not updated, somebody is editing them.', $bulk_counts['locked'] ),
Note: See TracChangeset
for help on using the changeset viewer.