Translation fix.

git-svn-id: https://develop.svn.wordpress.org/trunk@9480 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2008-11-02 22:32:57 +00:00
parent fbd3dc396c
commit ab7836e072
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
}
?>