We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c99c1a4 commit 61edd18Copy full SHA for 61edd18
1 file changed
classes/class-cpt-wplf-submission.php
@@ -206,7 +206,7 @@ function metabox_submission() {
206
// if the field ends with '_attachment' and there is an attachment url that corresponds to the id, show a link
207
$attachment_suffix = '_attachment';
208
if ( substr( $field, -strlen( $attachment_suffix ) ) === $attachment_suffix && wp_get_attachment_url( $value ) ) {
209
- $link_text = __( 'View Attachment' );
+ $link_text = __( 'View Attachment', 'wp-libre-form' );
210
$possible_link = '<a target="_blank" href="' . get_edit_post_link( $value ) . '" style="float:right">' . $link_text . '</a>';
211
}
212
0 commit comments