Make WordPress Core

Ticket #8634: 8634.2.diff

File 8634.2.diff, 1.4 KB (added by ninjaWR, 16 years ago)

2nd attempt; this patch has translatable string (an attempt at it, anyways))

  • wp-admin/edit-tags.php

     
    272272
    273273<br class="clear" />
    274274</form>
     275
     276<div class="form-wrap">
     277<p><strong><?php _e('Note');?>:</strong><br /><?php printf(__('Deleting a Categories does not delete the objects in that Categories. Instead, objects that were only assigned to the deleted Categories are set to the Categories %sUncategorized%s.'), '<strong>', '</strong>');?></p>
     278<p><?php printf(__('Categories can be selectively converted to tags using the %scategory to tag converter%s'), '<a href="admin.php?import=wp-cat2tag">', '</a>') ;?>.</p>
    275279</div>
     280
     281</div>
    276282</div><!-- /col-right -->
    277283
    278284<div id="col-left">
  • wp-admin/tools.php

     
    8989<?php
    9090endif;
    9191
     92if ( current_user_can('manage_categories') ) : ?>
     93<div class="tool-box">
     94    <h3 class="title"><?php _e('Category&#47;Tag Conversion') ?></h3>
     95    <p><?php printf(__('Use this to convert %scategories to tags%s, or %stags to categories%s.'), '<a href="admin.php?import=wp-cat2tag">', '</a>', '<a href="admin.php?import=wp-cat2tag&step=3">', '</a>'); ?></p>
     96</div>
     97<?php endif;
     98
    9299do_action( 'tool_box' );
    93100?>
    94101</div>