Changeset 546205
- Timestamp:
- 05/19/2012 01:42:27 PM (14 years ago)
- Location:
- page-tagger/trunk
- Files:
-
- 3 edited
-
. (modified) (1 prop)
-
README.txt (modified) (2 diffs)
-
page-tagger-class.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
page-tagger/trunk
-
Property
svn:ignore
set to
.git
-
Property
svn:ignore
set to
-
page-tagger/trunk/README.txt
r466411 r546205 2 2 3 3 Contributors: randomaniac 4 Donate link: http://www.hiddentao.com/code/wordpress-page-tagger-plugin/5 4 Tags: tags, tagging, posts, pages 6 5 Requires at least: 2.8.4 7 Tested up to: 3. 2.18 Stable tag: 0.3. 76 Tested up to: 3.3.2 7 Stable tag: 0.3.8 9 8 10 9 … … 24 23 25 24 == Changelog == 25 26 = 0.3.8 (May 19, 2012) = 27 * Added translation hooks - thanks Kazunori Yamazaki. 26 28 27 29 = 0.3.7 (Nov 32, 2011) = -
page-tagger/trunk/page-tagger-class.php
r466411 r546205 72 72 array( 73 73 'tagsUsed' => __('Tags used on this page:'), 74 'addTag' => esc_attr(__('Add new tag')),74 'addTag' => esc_attr(__('Add New Tag')), 75 75 ) 76 76 ); 77 77 wp_print_scripts('page-tagger'); 78 78 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'); 80 80 } 81 81 … … 146 146 <div class="tagchecklist"></div> 147 147 </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> 149 149 <?php 150 150 }
Note: See TracChangeset
for help on using the changeset viewer.