Plugin Directory

Changeset 546205


Ignore:
Timestamp:
05/19/2012 01:42:27 PM (14 years ago)
Author:
randomaniac
Message:

Version 0.3.8

  • Added translation hooks - thanks Kazunori Yamazaki
Location:
page-tagger/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • page-tagger/trunk

    • Property svn:ignore set to
      .git
  • page-tagger/trunk/README.txt

    r466411 r546205  
    22
    33Contributors: randomaniac
    4 Donate link: http://www.hiddentao.com/code/wordpress-page-tagger-plugin/
    54Tags: tags, tagging, posts, pages
    65Requires at least: 2.8.4
    7 Tested up to: 3.2.1
    8 Stable tag: 0.3.7
     6Tested up to: 3.3.2
     7Stable tag: 0.3.8
    98
    109
     
    2423
    2524== Changelog ==
     25
     26= 0.3.8 (May 19, 2012) =
     27* Added translation hooks - thanks Kazunori Yamazaki.
    2628
    2729= 0.3.7 (Nov 32, 2011) =
  • page-tagger/trunk/page-tagger-class.php

    r466411 r546205  
    7272                array(
    7373                    'tagsUsed' =>  __('Tags used on this page:'),
    74                     'addTag' => esc_attr(__('Add new tag')),
     74                    'addTag' => esc_attr(__('Add New Tag')),
    7575                )
    7676        );
    7777        wp_print_scripts('page-tagger');
    7878       
    79         add_meta_box('tagsdiv-post_tag', 'Tags', array(&$this, 'add_tags_meta_box'), 'page', 'side', 'default');
     79        add_meta_box('tagsdiv-post_tag', __('Tags'), array(&$this, 'add_tags_meta_box'), 'page', 'side', 'default');
    8080    }
    8181
     
    146146            <div class="tagchecklist"></div>
    147147        </div>
    148         <p class="tagcloud-link hide-if-no-js"><a href="#titlediv" class="tagcloud-link <?php echo $css; ?>" id="link-<?php echo $tax_name; ?>"><?php printf( __('Choose from the most used tags in %s'), $box['title'] ); ?></a></p>
     148        <p class="tagcloud-link hide-if-no-js"><a href="#titlediv" class="tagcloud-link <?php echo $css; ?>" id="link-<?php echo $tax_name; ?>"><?php _e('Choose from the most used tags'); ?></a></p>
    149149    <?php
    150150    }
Note: See TracChangeset for help on using the changeset viewer.