Translation fix.

git-svn-id: http://svn.automattic.com/wordpress/trunk@9480 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2008-11-02 22:32:57 +00:00
parent b40db2b6ab
commit f5d5354bb9
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ include('admin-header.php');
$size_names = array('' => __('Auto'), 'thumbnail' => __('Thumbnail'), 'medium' => __('Medium'), 'large' => __('Large'), 'full' => __('Full size'));
foreach ($size_names as $size => $name) { ?>
<input type="radio" name="image_default_size" id="image_default_size_<?php echo $size; ?>" value="<?php echo $size; ?>"<?php echo (get_option('image_default_size') == $size ? ' checked="checked"' : ''); ?> />
<label for="image_default_size_<?php echo $size; ?>"><?php _e($name); ?></label>
<label for="image_default_size_<?php echo $size; ?>"><?php echo $name; ?></label>
<?php
}
?>