From f21e148b3890ee2eaf721ec46baf3f68b69c2833 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Sun, 7 Dec 2008 20:35:50 +0000 Subject: [PATCH] gettext image size names git-svn-id: https://develop.svn.wordpress.org/trunk@10118 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/media.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/media.php b/wp-admin/includes/media.php index 0062d4d8db..eb95bc852d 100644 --- a/wp-admin/includes/media.php +++ b/wp-admin/includes/media.php @@ -751,8 +751,8 @@ function image_align_input_fields($post, $checked='') { function image_size_input_fields($post, $checked='') { // get a list of the actual pixel dimensions of each possible intermediate version of this image - $size_names = array('thumbnail' => 'Thumbnail', 'medium' => 'Medium', 'large' => 'Large', 'full' => 'Full size'); - + $size_names = array('thumbnail' => __('Thumbnail'), 'medium' => __('Medium'), 'large' => __('Large'), 'full' => __('Full size')); + foreach ( $size_names as $size => $name) { $downsize = image_downsize($post->ID, $size);