Twenty Thirteen: fix translation string in image template, fixes #23799.
git-svn-id: https://develop.svn.wordpress.org/trunk@23758 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
067dff66cf
commit
20e493bb90
|
@ -68,8 +68,10 @@ get_header(); ?>
|
|||
);
|
||||
|
||||
$metadata = wp_get_attachment_metadata();
|
||||
printf( '<span class="attachment-meta full-size-link"><a href="%1$s" title="Link to full-size image">View full %2$s × %3$s resolution</a></span>',
|
||||
printf( '<span class="attachment-meta full-size-link"><a href="%1$s" title="%2$s">%3$s (%4$s × %5$s)</a></span>',
|
||||
esc_url( wp_get_attachment_url() ),
|
||||
esc_attr__( 'Link to full-size image', 'twentythirteen' ),
|
||||
__( 'Full resolution', 'twentythirteen' ),
|
||||
$metadata['width'],
|
||||
$metadata['height']
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue