diff options
-rw-r--r-- | themes/default/views/photo.html.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/themes/default/views/photo.html.php b/themes/default/views/photo.html.php index f9ce96cf..1229bc00 100644 --- a/themes/default/views/photo.html.php +++ b/themes/default/views/photo.html.php @@ -1,6 +1,8 @@ <? defined("SYSPATH") or die("No direct script access."); ?> <div id="gItem"> - <a href="" class="gButtonLink">Full size (1024x768)</a> + <a href="" class="gButtonLink"> + <?= sprintf(_("Full size (%dx%d)"), $item->width, $item->height) ?> + </a> <?= $theme->photo_top() ?> <img id="gPhotoID-<?= $item->id ?>" alt="photo" src="<?= $item->resize_url() ?>" |