From 8b14cc5a78ca7cd86ead250916f3437af7bf77af Mon Sep 17 00:00:00 2001 From: jamaa Date: Tue, 11 Jun 2013 23:10:47 +0200 Subject: internationalize image size display as per comment https://github.com/gallery/gallery3/pull/394/files#r4643737 --- modules/info/helpers/info_block.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/info/helpers/info_block.php b/modules/info/helpers/info_block.php index f4fe5a6e..f3c8cf65 100644 --- a/modules/info/helpers/info_block.php +++ b/modules/info/helpers/info_block.php @@ -75,7 +75,7 @@ class info_block_Core { if (($theme->item->width && $theme->item->height) && module::get_var("info", "show_size")) { $info["size"] = array( "label" => t("Size:"), - "value" => $theme->item->width . " x " . $theme->item->height + "value" => t("%width x %height", array("width" => $theme->item->width, "height" => $theme->item->height)) ); } -- cgit v1.2.3