Changeset 50

Show
Ignore:
Timestamp:
02/18/07 15:24:34 (5 years ago)
Author:
yann
Message:

Prepare for release 0.1

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lang/wp_iminr-fr_FR.po

    r47 r50  
    99"Report-Msgid-Bugs-To: yann.lugrin@sans-savoir.net\n" 
    1010"POT-Creation-Date: 2007-02-17 22:31+0100\n" 
    11 "PO-Revision-Date: 2007-02-17 23:56+0100\n" 
     11"PO-Revision-Date: 2007-02-18 11:07+0100\n" 
    1212"Last-Translator: Yann Lugrih <yann.lugrin@sans-savoir.net>\n" 
    1313"Language-Team: iMinR for WordPress <yann.lugrin@sans-savoir.net>\n" 
  • trunk/readme.txt

    r34 r50  
    33Contributors: garko 
    44 
    5 Enable <a href="http://www.iminr.com">iMinR</a> in your Blog. 
     5Enable <a href="http://www.iminr.com">iMinR</a> (statistics tool) in  
     6your Blog. 
    67 
    78== Installation == 
     
    9101. Upload to your plugins folder, usually `wp-content/plugins/` 
    10112. Activate the plugin on the plugin screen 
    11 3. Go to options panel and configure the plugin 
     123. Go to options panel and configure 
     13 
     14== More == 
     15 
     16More 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  
    2121Plugin Name: iMinR for Wordpress 
    2222Plugin URI: http://dev.sans-savoir.net/trac/wp_iminr 
    23 Description: Enable iMinR in your Blog 
     23Description: Enable <a href="http://www.iminr.com">iMinR</a> in your Blog. 
    2424Author: Yann Lugrin 
    25 Version: 0.1b1 
     25Version: 0.1 
    2626Author URI: http://www.sans-savoir.net 
    2727*/ 
     
    2929// print current tracker without other tags 
    3030function 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        } 
    3236} 
    3337 
     
    242246        add_action('wp_footer', 'wp_iminr_footer'); 
    243247} 
     248 
    244249?>