Ticket #21176: 21176.diff
File 21176.diff, 1.4 KB (added by , 13 years ago) |
---|
-
wp-includes/js/tinymce/langs/wp-langs.php
542 542 's130' => __('130%'), 543 543 'img_title' => __('Title'), 544 544 'caption' => __('Caption'), 545 'alt' => __('Alternat e Text')545 'alt' => __('Alternative Text') 546 546 ); 547 547 548 548 $locale = _WP_Editors::$mce_locale; -
wp-admin/includes/media.php
812 812 813 813 $form_fields['image_alt'] = array( 814 814 'value' => $alt, 815 'label' => __('Alternat e Text'),815 'label' => __('Alternative Text'), 816 816 'helps' => __('Alt text for the image, e.g. “The Mona Lisa”') 817 817 ); 818 818 … … 1979 1979 1980 1980 <tr class="image-only"> 1981 1981 <th valign="top" scope="row" class="label"> 1982 <span class="alignleft"><label for="alt">' . __('Alternat e Text') . '</label></span>1982 <span class="alignleft"><label for="alt">' . __('Alternative Text') . '</label></span> 1983 1983 </th> 1984 1984 <td class="field"><input id="alt" name="alt" value="" type="text" aria-required="true" /> 1985 1985 <p class="help">' . __('Alt text for the image, e.g. “The Mona Lisa”') . '</p></td>