Ticket #21191: fix_spelling.diff
| File fix_spelling.diff, 6.2 KB (added by thee17, 12 months ago) |
|---|
-
wp-includes/post-template.php
1430 1430 <col style="width: 33%" /> 1431 1431 <thead> 1432 1432 <tr> 1433 <th scope="col"><?php /* translators: column name in revis ons */ _ex( 'Old', 'revisions column name' ); ?></th>1434 <th scope="col"><?php /* translators: column name in revis ons */ _ex( 'New', 'revisions column name' ); ?></th>1435 <th scope="col"><?php /* translators: column name in revis ons */ _ex( 'Date Created', 'revisions column name' ); ?></th>1433 <th scope="col"><?php /* translators: column name in revisions */ _ex( 'Old', 'revisions column name' ); ?></th> 1434 <th scope="col"><?php /* translators: column name in revisions */ _ex( 'New', 'revisions column name' ); ?></th> 1435 <th scope="col"><?php /* translators: column name in revisions */ _ex( 'Date Created', 'revisions column name' ); ?></th> 1436 1436 <th scope="col"><?php _e( 'Author' ); ?></th> 1437 1437 <th scope="col" class="action-links"><?php _e( 'Actions' ); ?></th> 1438 1438 </tr> -
wp-includes/js/tinymce/langs/wp-langs-en.js
106 106 download:"ieSpell not detected. Do you want to install it now?" 107 107 }, 108 108 advhr:{ 109 advhr_desc:"Horizontal erule"109 advhr_desc:"Horizontal rule" 110 110 }, 111 111 emotions:{ 112 112 emotions_desc:"Emotions" … … 400 400 rate:"Rate", 401 401 uimode:"UI Mode", 402 402 flash_options:"Flash options", 403 qt_options:"Quick time options",403 qt_options:"QuickTime options", 404 404 wmp_options:"Windows media player options", 405 405 rmp_options:"Real media player options", 406 406 shockwave_options:"Shockwave options", -
wp-includes/js/tinymce/langs/wp-langs.php
129 129 ), 130 130 131 131 'advhr' => array( 132 'advhr_desc' => __('Horizontal erule')132 'advhr_desc' => __('Horizontal rule') 133 133 ), 134 134 135 135 'emotions' => array( … … 443 443 'rate' => __('Rate'), 444 444 'uimode' => __('UI Mode'), 445 445 'flash_options' => __('Flash options'), 446 'qt_options' => __('Quick time options'),446 'qt_options' => __('QuickTime options'), 447 447 'wmp_options' => __('Windows media player options'), 448 448 'rmp_options' => __('Real media player options'), 449 449 'shockwave_options' => __('Shockwave options'), -
wp-includes/js/tinymce/wp-mce-help.php
271 271 <h2><?php _e('About TinyMCE'); ?></h2> 272 272 273 273 <p><?php _e('Version:'); ?> <span id="version"></span> (<span id="date"></span>)</p> 274 <p><?php printf(__('TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor released as Open Source under %sLGPL</a> by Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances.'), '<a href="'.home_url('/wp-includes/js/tinymce/license.txt').'" target="_blank" title="'.esc_attr__('GNU Library General Public Licen ce').'">') ?></p>274 <p><?php printf(__('TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor released as Open Source under %sLGPL</a> by Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances.'), '<a href="'.home_url('/wp-includes/js/tinymce/license.txt').'" target="_blank" title="'.esc_attr__('GNU Library General Public License').'">') ?></p> 275 275 <p><?php _e('Copyright © 2003-2011, <a href="http://www.moxiecode.com" target="_blank">Moxiecode Systems AB</a>, All rights reserved.') ?></p> 276 276 <p><?php _e('For more information about this software visit the <a href="http://tinymce.moxiecode.com" target="_blank">TinyMCE website</a>.') ?></p> 277 277 -
wp-admin/includes/upgrade.php
247 247 248 248 ...or something like this: 249 249 250 <blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohick ies to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>250 <blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote> 251 251 252 252 As a new WordPress user, you should go to <a href=\"%s\">your dashboard</a> to delete this page and create new pages for your content. Have fun!" ), admin_url() ); 253 253 if ( is_multisite() ) -
wp-admin/edit-tags.php
195 195 $help = '<p>' . __( 'You can assign keywords to your posts using <strong>tags</strong>. Unlike categories, tags have no hierarchy, meaning there’s no relationship from one tag to another.' ) . '</p>'; 196 196 197 197 if ( 'link_category' == $taxonomy ) 198 $help .= '<p>' . __( 'You can delete Link Categories in the Bulk Action pull down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category.' ) . '</p>';198 $help .= '<p>' . __( 'You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category.' ) . '</p>'; 199 199 else 200 200 $help .='<p>' . __( 'What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index.' ) . '</p>'; 201 201