Ticket #40244: 40244.diff
File 40244.diff, 26.8 KB (added by , 7 months ago) |
---|
-
src/wp-admin/comment.php
125 125 switch ( $action ) { 126 126 case 'spam': 127 127 $caution_msg = __( 'You are about to mark the following comment as spam:' ); 128 $button = _x( 'Mark as Spam', 'comment' );128 $button = _x( 'Mark as spam', 'comment' ); 129 129 break; 130 130 case 'trash': 131 131 $caution_msg = __( 'You are about to move the following comment to the Trash:' ); 132 $button = __( 'Move to Trash' );132 $button = __( 'Move to trash' ); 133 133 break; 134 134 case 'delete': 135 135 $caution_msg = __( 'You are about to delete the following comment:' ); 136 $button = __( 'Permanently Delete Comment' );136 $button = __( 'Permanently delete comment' ); 137 137 break; 138 138 default: 139 139 $caution_msg = __( 'You are about to approve the following comment:' ); 140 $button = __( 'Approve Comment' );140 $button = __( 'Approve comment' ); 141 141 break; 142 142 } 143 143 … … 179 179 </tr> 180 180 <?php } ?> 181 181 <tr> 182 <th scope="row"><?php /* translators: Column name or table row header. */ _e( 'In Response To' ); ?></th>182 <th scope="row"><?php /* translators: Column name or table row header. */ _e( 'In response to' ); ?></th> 183 183 <td> 184 184 <?php 185 185 $post_id = $comment->comment_post_ID; -
src/wp-admin/edit-comments.php
172 172 'id' => 'overview', 173 173 'title' => __( 'Overview' ), 174 174 'content' => 175 '<p>' . __( 'You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the Bulk Actions.' ) . '</p>',175 '<p>' . __( 'You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions.' ) . '</p>', 176 176 ) 177 177 ); 178 178 get_current_screen()->add_help_tab( … … 183 183 '<p>' . __( 'A red bar on the left means the comment is waiting for you to moderate it.' ) . '</p>' . 184 184 '<p>' . __( 'In the <strong>Author</strong> column, in addition to the author’s name, email address, and blog URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.' ) . '</p>' . 185 185 '<p>' . __( 'In the <strong>Comment</strong> column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment.' ) . '</p>' . 186 '<p>' . __( 'In the <strong>In Response To</strong> column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.' ) . '</p>' .187 '<p>' . __( 'In the <strong>Submitted On</strong> column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.' ) . '</p>' .186 '<p>' . __( 'In the <strong>In response to</strong> column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.' ) . '</p>' . 187 '<p>' . __( 'In the <strong>Submitted on</strong> column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.' ) . '</p>' . 188 188 '<p>' . __( 'Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more.' ) . '</p>', 189 189 ) 190 190 ); -
src/wp-admin/edit-form-comment.php
202 202 203 203 <div id="major-publishing-actions"> 204 204 <div id="delete-action"> 205 <?php echo "<a class='submitdelete deletion' href='" . wp_nonce_url( 'comment.php?action=' . ( ! EMPTY_TRASH_DAYS ? 'deletecomment' : 'trashcomment' ) . "&c=$comment->comment_ID&_wp_original_http_referer=" . urlencode( wp_get_referer() ), 'delete-comment_' . $comment->comment_ID ) . "'>" . ( ! EMPTY_TRASH_DAYS ? __( 'Delete Permanently' ) : __( 'Move to Trash' ) ) . "</a>\n"; ?>205 <?php echo "<a class='submitdelete deletion' href='" . wp_nonce_url( 'comment.php?action=' . ( ! EMPTY_TRASH_DAYS ? 'deletecomment' : 'trashcomment' ) . "&c=$comment->comment_ID&_wp_original_http_referer=" . urlencode( wp_get_referer() ), 'delete-comment_' . $comment->comment_ID ) . "'>" . ( ! EMPTY_TRASH_DAYS ? __( 'Delete Permanently' ) : __( 'Move to trash' ) ) . "</a>\n"; ?> 206 206 </div> 207 207 <div id="publishing-action"> 208 208 <?php submit_button( __( 'Update' ), 'primary large', 'save', false ); ?> -
src/wp-admin/edit.php
264 264 get_current_screen()->add_help_tab( 265 265 array( 266 266 'id' => 'bulk-actions', 267 'title' => __( 'Bulk Actions' ),267 'title' => __( 'Bulk actions' ), 268 268 'content' => 269 '<p>' . __( 'You can also edit or move multiple posts to the Trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk Actions menu and click Apply.' ) . '</p>' .269 '<p>' . __( 'You can also edit or move multiple posts to the Trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk actions menu and click Apply.' ) . '</p>' . 270 270 '<p>' . __( 'When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the x next to its name in the Bulk Edit area that appears.' ) . '</p>', 271 271 ) 272 272 ); … … 292 292 'title' => __( 'Managing Pages' ), 293 293 'content' => 294 294 '<p>' . __( 'Managing pages is very similar to managing posts, and the screens can be customized in the same way.' ) . '</p>' . 295 '<p>' . __( 'You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk Actions menu to edit the metadata for multiple pages at once.' ) . '</p>',295 '<p>' . __( 'You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk actions menu to edit the metadata for multiple pages at once.' ) . '</p>', 296 296 ) 297 297 ); 298 298 -
src/wp-admin/includes/class-wp-comments-list-table.php
351 351 $actions['approve'] = __( 'Approve' ); 352 352 } 353 353 if ( in_array( $comment_status, array( 'all', 'moderated', 'approved', 'trash' ), true ) ) { 354 $actions['spam'] = _x( 'Mark as Spam', 'comment' );354 $actions['spam'] = _x( 'Mark as spam', 'comment' ); 355 355 } 356 356 357 357 if ( 'trash' === $comment_status ) { 358 358 $actions['untrash'] = __( 'Restore' ); 359 359 } elseif ( 'spam' === $comment_status ) { 360 $actions['unspam'] = _x( 'Not Spam', 'comment' );360 $actions['unspam'] = _x( 'Not spam', 'comment' ); 361 361 } 362 362 363 363 if ( in_array( $comment_status, array( 'trash', 'spam' ), true ) || ! EMPTY_TRASH_DAYS ) { 364 $actions['delete'] = __( 'Delete Permanently' );364 $actions['delete'] = __( 'Delete permanently' ); 365 365 } else { 366 $actions['trash'] = __( 'Move to Trash' );366 $actions['trash'] = __( 'Move to trash' ); 367 367 } 368 368 369 369 return $actions; … … 467 467 468 468 if ( ! $post_id ) { 469 469 /* translators: Column name or table row header. */ 470 $columns['response'] = __( 'In Response To' );470 $columns['response'] = __( 'In response to' ); 471 471 } 472 472 473 $columns['date'] = _x( 'Submitted On', 'column name' );473 $columns['date'] = _x( 'Submitted on', 'column name' ); 474 474 475 475 return $columns; 476 476 } -
src/wp-admin/includes/class-wp-list-table.php
440 440 if ( is_null( $this->_actions ) ) { 441 441 $this->_actions = $this->get_bulk_actions(); 442 442 /** 443 * Filters the list table Bulk Actions drop-down.443 * Filters the list table bulk actions drop-down. 444 444 * 445 445 * The dynamic portion of the hook name, `$this->screen->id`, refers 446 446 * to the ID of the current screen, usually a string. … … 463 463 464 464 echo '<label for="bulk-action-selector-' . esc_attr( $which ) . '" class="screen-reader-text">' . __( 'Select bulk action' ) . '</label>'; 465 465 echo '<select name="action' . $two . '" id="bulk-action-selector-' . esc_attr( $which ) . "\">\n"; 466 echo '<option value="-1">' . __( 'Bulk Actions' ) . "</option>\n";466 echo '<option value="-1">' . __( 'Bulk actions' ) . "</option>\n"; 467 467 468 468 foreach ( $this->_actions as $name => $title ) { 469 469 $class = 'edit' === $name ? ' class="hide-if-no-js"' : ''; -
src/wp-admin/includes/class-wp-media-list-table.php
149 149 if ( MEDIA_TRASH ) { 150 150 if ( $this->is_trash ) { 151 151 $actions['untrash'] = __( 'Restore' ); 152 $actions['delete'] = __( 'Delete Permanently' );152 $actions['delete'] = __( 'Delete permanently' ); 153 153 } else { 154 $actions['trash'] = __( 'Move to Trash' );154 $actions['trash'] = __( 'Move to trash' ); 155 155 } 156 156 } else { 157 $actions['delete'] = __( 'Delete Permanently' );157 $actions['delete'] = __( 'Delete permanently' ); 158 158 } 159 159 160 160 if ( $this->detached ) { -
src/wp-admin/includes/class-wp-posts-list-table.php
415 415 416 416 if ( current_user_can( $post_type_obj->cap->delete_posts ) ) { 417 417 if ( $this->is_trash || ! EMPTY_TRASH_DAYS ) { 418 $actions['delete'] = __( 'Delete Permanently' );418 $actions['delete'] = __( 'Delete permanently' ); 419 419 } else { 420 $actions['trash'] = __( 'Move to Trash' );420 $actions['trash'] = __( 'Move to trash' ); 421 421 } 422 422 } 423 423 -
src/wp-admin/includes/meta-boxes.php
332 332 <?php 333 333 if ( current_user_can( 'delete_post', $post_id ) ) { 334 334 if ( ! EMPTY_TRASH_DAYS ) { 335 $delete_text = __( 'Delete Permanently' );335 $delete_text = __( 'Delete permanently' ); 336 336 } else { 337 $delete_text = __( 'Move to Trash' );337 $delete_text = __( 'Move to trash' ); 338 338 } 339 339 ?> 340 340 <a class="submitdelete deletion" href="<?php echo get_delete_post_link( $post_id ); ?>"><?php echo $delete_text; ?></a> … … 438 438 <?php 439 439 if ( current_user_can( 'delete_post', $post->ID ) ) { 440 440 if ( EMPTY_TRASH_DAYS && MEDIA_TRASH ) { 441 echo "<a class='submitdelete deletion' href='" . get_delete_post_link( $post->ID ) . "'>" . __( 'Move to Trash' ) . '</a>';441 echo "<a class='submitdelete deletion' href='" . get_delete_post_link( $post->ID ) . "'>" . __( 'Move to trash' ) . '</a>'; 442 442 } else { 443 443 $delete_ays = ! MEDIA_TRASH ? " onclick='return showNotice.warn();'" : ''; 444 echo "<a class='submitdelete deletion'$delete_ays href='" . get_delete_post_link( $post->ID, null, true ) . "'>" . __( 'Delete Permanently' ) . '</a>';444 echo "<a class='submitdelete deletion'$delete_ays href='" . get_delete_post_link( $post->ID, null, true ) . "'>" . __( 'Delete permanently' ) . '</a>'; 445 445 } 446 446 } 447 447 ?> … … 1115 1115 ?> 1116 1116 <div id="taxonomy-linkcategory" class="categorydiv"> 1117 1117 <ul id="category-tabs" class="category-tabs"> 1118 <li class="tabs"><a href="#categories-all"><?php _e( 'All Categories' ); ?></a></li>1118 <li class="tabs"><a href="#categories-all"><?php _e( 'All categories' ); ?></a></li> 1119 1119 <li class="hide-if-no-js"><a href="#categories-pop"><?php _ex( 'Most Used', 'categories' ); ?></a></li> 1120 1120 </ul> 1121 1121 -
src/wp-admin/users.php
53 53 '<li>' . __( '<strong>Edit</strong> takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.' ) . '</li>'; 54 54 55 55 if ( is_multisite() ) { 56 $help .= '<li>' . __( '<strong>Remove</strong> allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using Bulk Actions.' ) . '</li>';56 $help .= '<li>' . __( '<strong>Remove</strong> allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using bulk actions.' ) . '</li>'; 57 57 } else { 58 $help .= '<li>' . __( '<strong>Delete</strong> brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using Bulk Actions.' ) . '</li>';58 $help .= '<li>' . __( '<strong>Delete</strong> brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions.' ) . '</li>'; 59 59 } 60 60 61 61 $help .= '</ul>'; -
src/wp-includes/media-template.php
514 514 <# if ( ! data.uploading && data.can.remove ) { #> | 515 515 <?php if ( MEDIA_TRASH ) : ?> 516 516 <# if ( 'trash' === data.status ) { #> 517 <button type="button" class="button-link untrash-attachment"><?php _e( 'Restore from Trash' ); ?></button>517 <button type="button" class="button-link untrash-attachment"><?php _e( 'Restore from trash' ); ?></button> 518 518 <# } else { #> 519 <button type="button" class="button-link trash-attachment"><?php _e( 'Move to Trash' ); ?></button>519 <button type="button" class="button-link trash-attachment"><?php _e( 'Move to trash' ); ?></button> 520 520 <# } #> 521 521 <?php else : ?> 522 <button type="button" class="button-link delete-attachment"><?php _e( 'Delete Permanently' ); ?></button>522 <button type="button" class="button-link delete-attachment"><?php _e( 'Delete permanently' ); ?></button> 523 523 <?php endif; ?> 524 524 <# } #> 525 525 </div> … … 635 635 <# if ( ! data.uploading && data.can.remove ) { #> 636 636 <?php if ( MEDIA_TRASH ) : ?> 637 637 <# if ( 'trash' === data.status ) { #> 638 <button type="button" class="button-link untrash-attachment"><?php _e( 'Restore from Trash' ); ?></button>638 <button type="button" class="button-link untrash-attachment"><?php _e( 'Restore from trash' ); ?></button> 639 639 <# } else { #> 640 <button type="button" class="button-link trash-attachment"><?php _e( 'Move to Trash' ); ?></button>640 <button type="button" class="button-link trash-attachment"><?php _e( 'Move to trash' ); ?></button> 641 641 <# } #> 642 642 <?php else : ?> 643 <button type="button" class="button-link delete-attachment"><?php _e( 'Delete Permanently' ); ?></button>643 <button type="button" class="button-link delete-attachment"><?php _e( 'Delete permanently' ); ?></button> 644 644 <?php endif; ?> 645 645 <# } #> 646 646 -
src/wp-includes/media.php
4022 4022 // Generic. 4023 4023 'mediaFrameDefaultTitle' => __( 'Media' ), 4024 4024 'url' => __( 'URL' ), 4025 'addMedia' => __( 'Add Media' ),4025 'addMedia' => __( 'Add media' ), 4026 4026 'search' => __( 'Search' ), 4027 4027 'select' => __( 'Select' ), 4028 4028 'cancel' => __( 'Cancel' ), … … 4039 4039 'dragInfo' => __( 'Drag and drop to reorder media files.' ), 4040 4040 4041 4041 // Upload. 4042 'uploadFilesTitle' => __( 'Upload Files' ),4043 'uploadImagesTitle' => __( 'Upload Images' ),4042 'uploadFilesTitle' => __( 'Upload files' ), 4043 'uploadImagesTitle' => __( 'Upload images' ), 4044 4044 4045 4045 // Library. 4046 4046 'mediaLibraryTitle' => __( 'Media Library' ), 4047 'insertMediaTitle' => __( 'Add Media' ),4047 'insertMediaTitle' => __( 'Add media' ), 4048 4048 'createNewGallery' => __( 'Create a new gallery' ), 4049 4049 'createNewPlaylist' => __( 'Create a new playlist' ), 4050 4050 'createNewVideoPlaylist' => __( 'Create a new video playlist' ), … … 4060 4060 'warnDelete' => __( "You are about to permanently delete this item from your site.\nThis action cannot be undone.\n 'Cancel' to stop, 'OK' to delete." ), 4061 4061 'warnBulkDelete' => __( "You are about to permanently delete these items from your site.\nThis action cannot be undone.\n 'Cancel' to stop, 'OK' to delete." ), 4062 4062 'warnBulkTrash' => __( "You are about to trash these items.\n 'Cancel' to stop, 'OK' to delete." ), 4063 'bulkSelect' => __( 'Bulk Select' ),4064 'trashSelected' => __( 'Move to Trash' ),4065 'restoreSelected' => __( 'Restore from Trash' ),4066 'deletePermanently' => __( 'Delete Permanently' ),4063 'bulkSelect' => __( 'Bulk select' ), 4064 'trashSelected' => __( 'Move to trash' ), 4065 'restoreSelected' => __( 'Restore from trash' ), 4066 'deletePermanently' => __( 'Delete permanently' ), 4067 4067 'apply' => __( 'Apply' ), 4068 4068 'filterByDate' => __( 'Filter by date' ), 4069 4069 'filterByType' => __( 'Filter by type' ), 4070 4070 'searchLabel' => __( 'Search' ), 4071 'searchMediaLabel' => __( 'Search Media' ), // Backward compatibility pre-5.3.4071 'searchMediaLabel' => __( 'Search media' ), // Backward compatibility pre-5.3. 4072 4072 'searchMediaPlaceholder' => __( 'Search media items...' ), // Placeholder (no ellipsis), backward compatibility pre-5.3. 4073 4073 'mediaFound' => __( 'Number of media items found: %d' ), 4074 4074 'mediaFoundHasMoreResults' => __( 'Number of media items displayed: %d. Scroll the page for more results.' ), … … 4076 4076 'noMediaTryNewSearch' => __( 'No media items found. Try a different search.' ), 4077 4077 4078 4078 // Library Details. 4079 'attachmentDetails' => __( 'Attachment Details' ),4079 'attachmentDetails' => __( 'Attachment details' ), 4080 4080 4081 4081 // From URL. 4082 4082 'insertFromUrlTitle' => __( 'Insert from URL' ), … … 4086 4086 'setFeaturedImage' => $post_type_object->labels->set_featured_image, 4087 4087 4088 4088 // Gallery. 4089 'createGalleryTitle' => __( 'Create Gallery' ),4090 'editGalleryTitle' => __( 'Edit Gallery' ),4091 'cancelGalleryTitle' => __( '← Cancel Gallery' ),4089 'createGalleryTitle' => __( 'Create gallery' ), 4090 'editGalleryTitle' => __( 'Edit gallery' ), 4091 'cancelGalleryTitle' => __( '← Cancel gallery' ), 4092 4092 'insertGallery' => __( 'Insert gallery' ), 4093 4093 'updateGallery' => __( 'Update gallery' ), 4094 4094 'addToGallery' => __( 'Add to gallery' ), 4095 'addToGalleryTitle' => __( 'Add to Gallery' ),4095 'addToGalleryTitle' => __( 'Add to gallery' ), 4096 4096 'reverseOrder' => __( 'Reverse order' ), 4097 4097 4098 4098 // Edit Image. 4099 'imageDetailsTitle' => __( 'Image Details' ),4100 'imageReplaceTitle' => __( 'Replace Image' ),4101 'imageDetailsCancel' => __( 'Cancel Edit' ),4102 'editImage' => __( 'Edit Image' ),4099 'imageDetailsTitle' => __( 'Image details' ), 4100 'imageReplaceTitle' => __( 'Replace image' ), 4101 'imageDetailsCancel' => __( 'Cancel edit' ), 4102 'editImage' => __( 'Edit image' ), 4103 4103 4104 4104 // Crop Image. 4105 'chooseImage' => __( 'Choose Image' ),4106 'selectAndCrop' => __( 'Select and Crop' ),4107 'skipCropping' => __( 'Skip Cropping' ),4108 'cropImage' => __( 'Crop Image' ),4105 'chooseImage' => __( 'Choose image' ), 4106 'selectAndCrop' => __( 'Select and crop' ), 4107 'skipCropping' => __( 'Skip cropping' ), 4108 'cropImage' => __( 'Crop image' ), 4109 4109 'cropYourImage' => __( 'Crop your image' ), 4110 4110 'cropping' => __( 'Cropping…' ), 4111 4111 /* translators: 1: Suggested width number, 2: Suggested height number. */ … … 4113 4113 'cropError' => __( 'There has been an error cropping your image.' ), 4114 4114 4115 4115 // Edit Audio. 4116 'audioDetailsTitle' => __( 'Audio Details' ),4117 'audioReplaceTitle' => __( 'Replace Audio' ),4118 'audioAddSourceTitle' => __( 'Add Audio Source' ),4119 'audioDetailsCancel' => __( 'Cancel Edit' ),4116 'audioDetailsTitle' => __( 'Audio details' ), 4117 'audioReplaceTitle' => __( 'Replace audio' ), 4118 'audioAddSourceTitle' => __( 'Add audio source' ), 4119 'audioDetailsCancel' => __( 'Cancel edit' ), 4120 4120 4121 4121 // Edit Video. 4122 'videoDetailsTitle' => __( 'Video Details' ),4123 'videoReplaceTitle' => __( 'Replace Video' ),4124 'videoAddSourceTitle' => __( 'Add Video Source' ),4125 'videoDetailsCancel' => __( 'Cancel Edit' ),4126 'videoSelectPosterImageTitle' => __( 'Select Poster Image' ),4127 'videoAddTrackTitle' => __( 'Add Subtitles' ),4122 'videoDetailsTitle' => __( 'Video details' ), 4123 'videoReplaceTitle' => __( 'Replace video' ), 4124 'videoAddSourceTitle' => __( 'Add video source' ), 4125 'videoDetailsCancel' => __( 'Cancel edit' ), 4126 'videoSelectPosterImageTitle' => __( 'Select poster image' ), 4127 'videoAddTrackTitle' => __( 'Add subtitles' ), 4128 4128 4129 4129 // Playlist. 4130 4130 'playlistDragInfo' => __( 'Drag and drop to reorder tracks.' ), 4131 'createPlaylistTitle' => __( 'Create Audio Playlist' ),4132 'editPlaylistTitle' => __( 'Edit Audio Playlist' ),4133 'cancelPlaylistTitle' => __( '← Cancel Audio Playlist' ),4131 'createPlaylistTitle' => __( 'Create audio playlist' ), 4132 'editPlaylistTitle' => __( 'Edit audio playlist' ), 4133 'cancelPlaylistTitle' => __( '← Cancel audio playlist' ), 4134 4134 'insertPlaylist' => __( 'Insert audio playlist' ), 4135 4135 'updatePlaylist' => __( 'Update audio playlist' ), 4136 4136 'addToPlaylist' => __( 'Add to audio playlist' ), … … 4138 4138 4139 4139 // Video Playlist. 4140 4140 'videoPlaylistDragInfo' => __( 'Drag and drop to reorder videos.' ), 4141 'createVideoPlaylistTitle' => __( 'Create Video Playlist' ),4142 'editVideoPlaylistTitle' => __( 'Edit Video Playlist' ),4143 'cancelVideoPlaylistTitle' => __( '← Cancel Video Playlist' ),4141 'createVideoPlaylistTitle' => __( 'Create video playlist' ), 4142 'editVideoPlaylistTitle' => __( 'Edit video playlist' ), 4143 'cancelVideoPlaylistTitle' => __( '← Cancel video playlist' ), 4144 4144 'insertVideoPlaylist' => __( 'Insert video playlist' ), 4145 4145 'updateVideoPlaylist' => __( 'Update video playlist' ), 4146 4146 'addToVideoPlaylist' => __( 'Add to video playlist' ), 4147 'addToVideoPlaylistTitle' => __( 'Add to Video Playlist' ),4147 'addToVideoPlaylistTitle' => __( 'Add to video Playlist' ), 4148 4148 4149 4149 // Headings. 4150 'filterAttachments' => __( 'Filter Media' ),4150 'filterAttachments' => __( 'Filter media' ), 4151 4151 'attachmentsList' => __( 'Media list' ), 4152 4152 ); 4153 4153 -
src/wp-includes/taxonomy.php
510 510 * @type string $search_items Default 'Search Tags'/'Search Categories'. 511 511 * @type string $popular_items This label is only used for non-hierarchical taxonomies. 512 512 * Default 'Popular Tags'. 513 * @type string $all_items Default 'All Tags'/'All Categories'.513 * @type string $all_items Default 'All tags'/'All categories'. 514 514 * @type string $parent_item This label is only used for hierarchical taxonomies. Default 515 515 * 'Parent Category'. 516 516 * @type string $parent_item_colon The same as `parent_item`, but with colon `:` in the end. … … 552 552 'singular_name' => array( _x( 'Tag', 'taxonomy singular name' ), _x( 'Category', 'taxonomy singular name' ) ), 553 553 'search_items' => array( __( 'Search Tags' ), __( 'Search Categories' ) ), 554 554 'popular_items' => array( __( 'Popular Tags' ), null ), 555 'all_items' => array( __( 'All Tags' ), __( 'All Categories' ) ),555 'all_items' => array( __( 'All tags' ), __( 'All categories' ) ), 556 556 'parent_item' => array( null, __( 'Parent Category' ) ), 557 557 'parent_item_colon' => array( null, __( 'Parent Category:' ) ), 558 558 'edit_item' => array( __( 'Edit Tag' ), __( 'Edit Category' ) ),