Changeset 41

Show
Ignore:
Timestamp:
02/17/07 23:08:13 (5 years ago)
Author:
yann
Message:

start french translation

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tools/wp-gettext

    r40 r41  
    33# Later code and patches from 
    44# Kimmo Suominen (more) and Nikolay Bachiyski (less) 
     5# Adaptation for iMinR for WordPress plugin by Yann Lugrin 
    56 
    67TEMPLATE=wp_iminr.pot 
  • trunk/wp_iminr.php

    r40 r41  
    129129<div class=wrap> 
    130130        <form method="post"> 
    131                 <h2>iMinR for WordPress</h2> 
     131                <h2><?php _e('iMinR for WordPress'); ?></h2> 
    132132                <fieldset class="options" name="general"> 
    133133                <legend><?php _e('General settings', 'wp_iminr') ?></legend> 
     
    135135                <table width="100%" cellspacing="2" cellpadding="5" class="editform"> 
    136136                        <tr> 
    137                                 <th nowrap valign="top"><?php _e('Account ID', 'wp_iminr') ?></th> 
     137                                <th nowrap valign="top"><label for="account_id"><?php _e('Account ID', 'wp_iminr') ?></label></th> 
    138138                                <td valign="top"> 
    139139                                        <input type="text" name="account_id" id="account_id" value="<?php echo wp_iminr_get_option('account_id'); ?>" size="50" /> 
     
    150150                        <table width="100%" cellspacing="2" cellpadding="5" class="editform"> 
    151151                                <tr> 
    152                                         <th nowrap valign="top"><?php _e('Enable tracker', 'wp_iminr') ?></th> 
     152                                        <th nowrap valign="top"><label for="enable_js"><?php _e('Enable tracker', 'wp_iminr') ?></label></th> 
    153153                                        <td valign="top"> 
    154154                                                <input type="checkbox" name="enable_js" id="enable_js" value="true" <?php if (wp_iminr_get_option('enable_js')) echo 'checked="checked"'; ?> /> 
     
    157157                                </tr> 
    158158                                <tr> 
    159                                         <th nowrap valign="top"><?php _e('Add in sidebar', 'wp_iminr') ?></th> 
     159                                        <th nowrap valign="top"><label for="js_in_meta"><?php _e('Add in sidebar', 'wp_iminr') ?></label></th> 
    160160                                        <td valign="top"> 
    161161                                                <input type="radio" name="js_in" id="js_in_meta" value="meta" <?php if (wp_iminr_get_option('js_in_meta')) echo 'checked="checked"'; ?> /> 
    162162                                                <small><?php _e('By checking this radio button JavaScript will be included in meta (if template implemente this option).', 'wp_iminr') ?></small> 
    163                                                 <br /><input type="text" name="js_in_meta_before" id="js_in_meta_before" value="<?php echo wp_iminr_get_option('js_in_meta_before'); ?>" size="25" /> 
     163                                                <br /><input type="text" name="js_in_meta_before" id="js_in_meta_before" value="<?php echo wp_iminr_get_option('js_in_meta_before'); ?>" size="25" style="text-align: right;" /> 
    164164                                                <img src="" alt="iMinR" /> 
    165165                                                <input type="text" name="js_in_meta_after" id="js_in_meta_after" value="<?php echo wp_iminr_get_option('js_in_meta_after'); ?>" size="25" /> 
     
    168168                                </tr> 
    169169                                <tr> 
    170                                         <th nowrap valign="top"><?php _e('Add in footer', 'wp_iminr') ?></th> 
     170                                        <th nowrap valign="top"><label for="js_in_footer"><?php _e('Add in footer', 'wp_iminr') ?></label></th> 
    171171                                        <td valign="top"> 
    172172                                                <input type="radio" name="js_in" id="js_in_footer" value="footer" <?php if (wp_iminr_get_option('js_in_footer')) echo 'checked="checked"'; ?> /> 
    173173                                                <small><?php _e('By checking this radio button JavaScript will be included in footer.', 'wp_iminr') ?></small> 
    174                                                 <br /><input type="text" name="js_in_footer_before" id="js_in_footer_before" value="<?php echo wp_iminr_get_option('js_in_footer_before'); ?>" size="25" /> 
     174                                                <br /> 
     175                                                <input type="text" name="js_in_footer_before" id="js_in_footer_before" value="<?php echo wp_iminr_get_option('js_in_footer_before'); ?>" size="25" style="text-align: right;" /> 
    175176                                                <img src="" alt="iMinR" /> 
    176177                                                <input type="text" name="js_in_footer_after" id="js_in_footer_after" value="<?php echo wp_iminr_get_option('js_in_footer_after'); ?>" size="25" />