Changeset 50
- Timestamp:
- 02/18/07 15:24:34 (5 years ago)
- Files:
-
- trunk/lang/wp_iminr-fr_FR.mo (moved) (moved from trunk/lang/wp_iminr-fr.mo)
- trunk/lang/wp_iminr-fr_FR.po (moved) (moved from trunk/lang/wp_iminr-fr.po) (1 diff)
- trunk/readme.txt (modified) (2 diffs)
- trunk/tools/copy2test.bat.sample (added)
- trunk/tools/wp_iminr-gettext.sh (moved) (moved from trunk/tools/wp_iminr-gettext)
- trunk/wp_iminr.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lang/wp_iminr-fr_FR.po
r47 r50 9 9 "Report-Msgid-Bugs-To: yann.lugrin@sans-savoir.net\n" 10 10 "POT-Creation-Date: 2007-02-17 22:31+0100\n" 11 "PO-Revision-Date: 2007-02-1 7 23:56+0100\n"11 "PO-Revision-Date: 2007-02-18 11:07+0100\n" 12 12 "Last-Translator: Yann Lugrih <yann.lugrin@sans-savoir.net>\n" 13 13 "Language-Team: iMinR for WordPress <yann.lugrin@sans-savoir.net>\n" trunk/readme.txt
r34 r50 3 3 Contributors: garko 4 4 5 Enable <a href="http://www.iminr.com">iMinR</a> in your Blog. 5 Enable <a href="http://www.iminr.com">iMinR</a> (statistics tool) in 6 your Blog. 6 7 7 8 == Installation == … … 9 10 1. Upload to your plugins folder, usually `wp-content/plugins/` 10 11 2. Activate the plugin on the plugin screen 11 3. Go to options panel and configure the plugin 12 3. Go to options panel and configure 13 14 == More == 15 16 More information is available in plugin <a href="http://dev.sans-savoir.net/trac/wp_iminr" title="iMinR for WordPress plugin website (in french)">website</a> 17 (in french, english translation come later). trunk/wp_iminr.php
r45 r50 21 21 Plugin Name: iMinR for Wordpress 22 22 Plugin URI: http://dev.sans-savoir.net/trac/wp_iminr 23 Description: Enable iMinR in your Blog23 Description: Enable <a href="http://www.iminr.com">iMinR</a> in your Blog. 24 24 Author: Yann Lugrin 25 Version: 0.1 b125 Version: 0.1 26 26 Author URI: http://www.sans-savoir.net 27 27 */ … … 29 29 // print current tracker without other tags 30 30 function iMinR () { 31 echo wp_iminr_get_tracker(); 31 if (wp_iminr_enable_for_user()) { 32 echo wp_iminr_get_tracker(); 33 } else { 34 echo '<!-- iMinR for WordPress is desable for current user -->'; 35 } 32 36 } 33 37 … … 242 246 add_action('wp_footer', 'wp_iminr_footer'); 243 247 } 248 244 249 ?>
