Plugin Directory

Changeset 618221


Ignore:
Timestamp:
10/28/2012 11:30:15 AM (13 years ago)
Author:
randomaniac
Message:

Added language translation file.

Bumped version and updated changelog.

Location:
page-tagger/trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • page-tagger/trunk/README.txt

    r618218 r618221  
    55Requires at least: 2.8.4
    66Tested up to: 3.4.1
    7 Stable tag: 0.4.1
     7Stable tag: 0.4.2
    88
    99
     
    2424
    2525== Changelog ==
     26
     27= 0.4.2 (Oct 28, 2012) =
     28* Added POT translation file.
    2629
    2730= 0.4.1 (Oct 28, 2012) =
  • page-tagger/trunk/page-tagger.js

    r618218 r618221  
    2121Plugin URI: http://www.hiddentao.com/code/wordpress-page-tagger-plugin/
    2222Description: Enables tagging for pages. PHP 5 required.
    23 Version: 0.4.1
     23Version: 0.4.2
    2424Author: Ramesh Nair
    2525Author URI: http://www.hiddentao.com/
  • page-tagger/trunk/page-tagger.php

    r618218 r618221  
    2222Plugin URI: http://www.hiddentao.com/code/wordpress-page-tagger-plugin/
    2323Description: Enables tagging for pages. PHP 5 required.
    24 Version: 0.4.1
     24Version: 0.4.2
    2525Author: Ramesh Nair
    2626Author URI: http://www.hiddentao.com/
     
    3232
    3333
     34load_plugin_textdomain( 'page-tagger', false, 'page-tagger/languages' );
     35
     36
     37
    3438/**
    3539 * Inform user of the minimum PHP version requird for Page Tagger.
     
    3741function _page_tagger_min_version_notice()
    3842{
    39     echo "<div class='updated' style='background-color:#f99;'><p><strong>WARNING:</strong> Page Tagger plugin requires PHP 5 or above to work.</p></div>";
     43    echo "<div class='updated' style='background-color:#f99;'><p><strong>WARNING:</strong> " +
     44        __('Page Tagger plugin requires PHP 5 or above to work', 'page-tagger') +
     45        "</p></div>";
    4046}
    4147
Note: See TracChangeset for help on using the changeset viewer.