Changeset 41
- Timestamp:
- 02/17/07 23:08:13 (5 years ago)
- Files:
-
- trunk/lang/wp_iminr-fr.mo (added)
- trunk/lang/wp_iminr-fr.po (added)
- trunk/tools/wp-gettext (modified) (1 diff)
- trunk/wp_iminr.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tools/wp-gettext
r40 r41 3 3 # Later code and patches from 4 4 # Kimmo Suominen (more) and Nikolay Bachiyski (less) 5 # Adaptation for iMinR for WordPress plugin by Yann Lugrin 5 6 6 7 TEMPLATE=wp_iminr.pot trunk/wp_iminr.php
r40 r41 129 129 <div class=wrap> 130 130 <form method="post"> 131 <h2> iMinR for WordPress</h2>131 <h2><?php _e('iMinR for WordPress'); ?></h2> 132 132 <fieldset class="options" name="general"> 133 133 <legend><?php _e('General settings', 'wp_iminr') ?></legend> … … 135 135 <table width="100%" cellspacing="2" cellpadding="5" class="editform"> 136 136 <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> 138 138 <td valign="top"> 139 139 <input type="text" name="account_id" id="account_id" value="<?php echo wp_iminr_get_option('account_id'); ?>" size="50" /> … … 150 150 <table width="100%" cellspacing="2" cellpadding="5" class="editform"> 151 151 <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> 153 153 <td valign="top"> 154 154 <input type="checkbox" name="enable_js" id="enable_js" value="true" <?php if (wp_iminr_get_option('enable_js')) echo 'checked="checked"'; ?> /> … … 157 157 </tr> 158 158 <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> 160 160 <td valign="top"> 161 161 <input type="radio" name="js_in" id="js_in_meta" value="meta" <?php if (wp_iminr_get_option('js_in_meta')) echo 'checked="checked"'; ?> /> 162 162 <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;" /> 164 164 <img src="" alt="iMinR" /> 165 165 <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" /> … … 168 168 </tr> 169 169 <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> 171 171 <td valign="top"> 172 172 <input type="radio" name="js_in" id="js_in_footer" value="footer" <?php if (wp_iminr_get_option('js_in_footer')) echo 'checked="checked"'; ?> /> 173 173 <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;" /> 175 176 <img src="" alt="iMinR" /> 176 177 <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" />
