Make WordPress Core


Ignore:
Timestamp:
05/19/2010 06:18:26 PM (14 years ago)
Author:
ryan
Message:

Don't subsitute a translated string into a translated string. Props dimadin. fixes #13357

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/meta-boxes.php

    r14642 r14748  
    248248    $help_hint  = isset( $taxonomy->help_hint  ) ? $taxonomy->help_hint         : __('Add new tag');
    249249    $help_nojs  = isset( $taxonomy->help_nojs  ) ? $taxonomy->help_nojs         : __('Add or remove tags');
    250     $help_cloud = isset( $taxonomy->help_cloud ) ? $taxonomy->help_cloud        : __('Choose from the most used tags in %s');
     250    $help_cloud = isset( $taxonomy->help_cloud ) ? $taxonomy->help_cloud        : __('Choose from the most used tags');
    251251
    252252    $disabled = !current_user_can($taxonomy->cap->assign_terms) ? 'disabled="disabled"' : '';
     
    270270</div>
    271271<?php if ( current_user_can($taxonomy->cap->assign_terms) ) : ?>
    272 <p class="hide-if-no-js"><a href="#titlediv" class="tagcloud-link" id="link-<?php echo $tax_name; ?>"><?php printf( $help_cloud, $box['title'] ); ?></a></p>
     272<p class="hide-if-no-js"><a href="#titlediv" class="tagcloud-link" id="link-<?php echo $tax_name; ?>"><?php echo $help_cloud; ?></a></p>
    273273<?php else : ?>
    274274<p><em><?php _e('You cannot modify this Taxonomy.'); ?></em></p>
Note: See TracChangeset for help on using the changeset viewer.