Add missing translations for media options.

git-svn-id: http://svn.automattic.com/wordpress/trunk@9843 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2008-11-22 09:56:20 +00:00
parent a0d49f5ee3
commit 99cddfb8b8
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ include('admin-header.php');
<th scope="row"><?php _e('Default media links') ?></th>
<td><fieldset><legend class="hidden"><?php _e('Default image links') ?></legend>
<?php
$link_types = array('none' => 'None', 'post' => 'Post URL', 'file' => 'File');
$link_types = array('none' => __('None'), 'post' => __('Post URL'), 'file' => __('File'));
$default_link_type = get_option('image_default_link_type');
if ( empty($default_link_type) )
@ -40,7 +40,7 @@ include('admin-header.php');
foreach ($link_types as $type => $name) { ?>
<input type="radio" name="image_default_link_type" id="image_default_link_type_<?php echo $type; ?>" value="<?php echo $type; ?>"<?php echo ($default_link_type == $type ? ' checked="checked"' : ''); ?> />
<label for="image_default_link_type_<?php echo $type; ?>"><?php _e($name); ?></label>
<label for="image_default_link_type_<?php echo $type; ?>"><?php echo $name; ?></label>
<?php
}
?>