Twenty Thirteen: fix translation string in image template, fixes #23799.

git-svn-id: http://core.svn.wordpress.org/trunk@23758 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Lance Willett 2013-03-19 22:29:44 +00:00
parent a553da699d
commit 7e9761711a
1 changed files with 3 additions and 1 deletions

View File

@ -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 &times; %3$s resolution</a></span>',
printf( '<span class="attachment-meta full-size-link"><a href="%1$s" title="%2$s">%3$s (%4$s &times; %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']
);