Changeset 21333
- Timestamp:
- 07/25/2012 06:06:13 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-tags.php
r21322 r21333 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>'; -
trunk/wp-admin/includes/upgrade.php
r21234 r21333 249 249 ...or something like this: 250 250 251 <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>251 <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> 252 252 253 253 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() ); -
trunk/wp-includes/js/tinymce/langs/wp-langs-en.js
r21266 r21333 107 107 }, 108 108 advhr:{ 109 advhr_desc:"Horizontal erule"109 advhr_desc:"Horizontal rule" 110 110 }, 111 111 emotions:{ … … 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", -
trunk/wp-includes/js/tinymce/langs/wp-langs.php
r21266 r21333 130 130 131 131 'advhr' => array( 132 'advhr_desc' => __('Horizontal erule')132 'advhr_desc' => __('Horizontal rule') 133 133 ), 134 134 … … 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'), -
trunk/wp-includes/js/tinymce/wp-mce-help.php
r21311 r21333 231 231 232 232 <p><?php _e('Version:'); ?> <span id="version"></span> (<span id="date"></span>)</p> 233 <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>233 <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> 234 234 <p><?php _e('Copyright © 2003-2011, <a href="http://www.moxiecode.com" target="_blank">Moxiecode Systems AB</a>, All rights reserved.') ?></p> 235 235 <p><?php _e('For more information about this software visit the <a href="http://tinymce.com" target="_blank">TinyMCE website</a>.') ?></p> -
trunk/wp-includes/post-template.php
r21253 r21333 1417 1417 <thead> 1418 1418 <tr> 1419 <th scope="col"><?php /* translators: column name in revis ons */ _ex( 'Old', 'revisions column name' ); ?></th>1420 <th scope="col"><?php /* translators: column name in revis ons */ _ex( 'New', 'revisions column name' ); ?></th>1421 <th scope="col"><?php /* translators: column name in revis ons */ _ex( 'Date Created', 'revisions column name' ); ?></th>1419 <th scope="col"><?php /* translators: column name in revisions */ _ex( 'Old', 'revisions column name' ); ?></th> 1420 <th scope="col"><?php /* translators: column name in revisions */ _ex( 'New', 'revisions column name' ); ?></th> 1421 <th scope="col"><?php /* translators: column name in revisions */ _ex( 'Date Created', 'revisions column name' ); ?></th> 1422 1422 <th scope="col"><?php _e( 'Author' ); ?></th> 1423 1423 <th scope="col" class="action-links"><?php _e( 'Actions' ); ?></th>
Note: See TracChangeset
for help on using the changeset viewer.