Skip to content

Commit b46bb77

Browse files
committed
Help/About: Update help tab texts to consistently describe button labels.
This changeset ensures help tab texts consistently refer to the related button labels. Props kebbet, costdev. Fixes #57608. git-svn-id: https://develop.svn.wordpress.org/trunk@55195 602fd350-edb4-49c9-b593-d223f7449a82
1 parent e53d61a commit b46bb77

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/wp-admin/edit-form-advanced.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@
346346
'<p>' . __( 'This screen allows you to edit fields for metadata in a file within the media library.' ) . '</p>' .
347347
'<p>' . __( 'For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information.' ) . '</p>' .
348348
'<p>' . __( 'Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping.' ) . '</p>' .
349-
'<p>' . __( 'Remember to click Update Media to save metadata entered or changed.' ) . '</p>',
349+
'<p>' . __( 'Remember to click Update to save metadata entered or changed.' ) . '</p>',
350350
)
351351
);
352352

src/wp-admin/media.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
'<p>' . __( 'This screen allows you to edit fields for metadata in a file within the media library.' ) . '</p>' .
8989
'<p>' . __( 'For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information.' ) . '</p>' .
9090
'<p>' . __( 'Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping.' ) . '</p>' .
91-
'<p>' . __( 'Remember to click Update Media to save metadata entered or changed.' ) . '</p>',
91+
'<p>' . __( 'Remember to click Update to save metadata entered or changed.' ) . '</p>',
9292
)
9393
);
9494

@@ -134,7 +134,7 @@
134134

135135
<form method="post" class="media-upload-form" id="media-single-form">
136136
<p class="submit" style="padding-bottom: 0;">
137-
<?php submit_button( __( 'Update Media' ), 'primary', 'save', false ); ?>
137+
<?php submit_button( __( 'Update' ), 'primary', 'save', false ); ?>
138138
</p>
139139

140140
<div class="media-single">
@@ -154,7 +154,7 @@
154154
</div>
155155
</div>
156156

157-
<?php submit_button( __( 'Update Media' ), 'primary', 'save' ); ?>
157+
<?php submit_button( __( 'Update' ), 'primary', 'save' ); ?>
158158
<input type="hidden" name="post_id" id="post_id" value="<?php echo isset( $post_id ) ? esc_attr( $post_id ) : ''; ?>" />
159159
<input type="hidden" name="attachment_id" id="attachment_id" value="<?php echo esc_attr( $att_id ); ?>" />
160160
<input type="hidden" name="action" value="editattachment" />

0 commit comments

Comments
 (0)