Make WordPress Core

Ticket #4031: tags-i18n.diff

File tags-i18n.diff, 1.6 KB (added by nbachiyski, 18 years ago)
  • wp-content/themes/classic/index.php

     
    88
    99<div class="post" id="post-<?php the_ID(); ?>">
    1010         <h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
    11         <div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> &#8212; <?php the_tags('Tags: ', ', ', ' &#8212; '); ?> <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>
     11        <div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> &#8212; <?php the_tags(__('Tags: '), ', ', ' &#8212; '); ?> <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>
    1212
    1313        <div class="storycontent">
    1414                <?php the_content(__('(more...)')); ?>
  • wp-admin/edit-form-advanced.php

     
    152152<?php echo $form_pingback ?>
    153153<?php echo $form_prevstatus ?>
    154154
    155 <div class="tagdiv"><p>Enter tags (keywords) that you feel describe this post separated by commas: (ex: dogs, san francisco, cats.)<br />
     155<div class="tagdiv"><p><?php _e('Enter tags (keywords) that you feel describe this post separated by commas: (ex: dogs, san francisco, cats.)'); ?><br />
    156156<input type="text" name="tags_input" id="tags_input" size="30" tabindex="3" value="<?php echo get_tags_to_edit( $post_ID ); ?>" />
    157157</p></div>
    158158