CommentLuv - Version 2.1.5

Version Description

Download this release

Release Info

Developer teamplaylotto
Plugin Icon 128x128 CommentLuv
Version 2.1.5
Comparing to
See all releases

Code changes from version 2.1.4 to 2.1.5

Files changed (4) hide show
  1. commentluv.mo +0 -0
  2. commentluv.php +31 -14
  3. commentluv.po +43 -39
  4. readme.txt +1 -1
commentluv.mo CHANGED
Binary file
commentluv.php CHANGED
@@ -2,7 +2,7 @@
2
  Plugin Name: commentluv
3
  Plugin URI: http://www.commentluv.com/download/ajax-commentluv-installation/
4
  Description: Plugin to show a link to the last post from the commenters blog in their comment. Just activate and it's ready. Will parse a feed from most sites that have a feed location specified in its head html. See the <a href="options-general.php?page=commentluv">Settings Page</a> for styling and text output options.
5
- Version: 2.1.4
6
  Author: Andy Bailey
7
  Author URI: http://www.fiddyp.co.uk/
8
 
@@ -10,6 +10,8 @@ Author URI: http://www.fiddyp.co.uk/
10
  You can now edit the options from the dashboard
11
  *********************************************************************
12
  updates:
 
 
13
  2.1.4 25/9/8 enqueue script and give choice to place button where someone wants it thanks Marco! http://www.saphod.net/
14
  2.1.3 24/9/8 fix for older than 2.6 to use wp_plugin_dir and remove quick fix for imwithjoe (it was the ID's joe!)
15
  and make inline javascript valid xhtml. Validates!
@@ -109,7 +111,7 @@ add_action('comment_form','cl_add_fields');
109
  add_filter('preprocess_comment','cl_post',0);
110
  add_filter('whitelist_options','commentluv_alter_whitelist_options');
111
  register_activation_hook(__FILE__, 'commentluv_activation');
112
-
113
  // for lesser Wp than 2.6
114
  if ( ! defined( 'WP_PLUGIN_URL' ) )
115
  define( 'WP_PLUGIN_URL', WP_CONTENT_URL. '/plugins' );
@@ -117,7 +119,7 @@ define( 'WP_PLUGIN_URL', WP_CONTENT_URL. '/plugins' );
117
  // make compatible with Mu
118
  function commentluv_alter_whitelist_options($whitelist) {
119
  if(is_array($whitelist)) {
120
- $option_array = array('commentluv' => array('cl_comment_text','cl_default_on','cl_style','cl_author_id','cl_site_id','cl_comment_id','cl_commentform_id','cl_badge','cl_member_id','cl_click_track','cl_author_type','cl_url_type','cl_textarea_type','cl_reset','cl_showtext','cl_badge_pos'));
121
  $whitelist = array_merge($whitelist,$option_array);
122
  }
123
  return $whitelist;
@@ -214,8 +216,10 @@ function show_cl_options() {
214
  add_option('cl_click_track','on');
215
  add_option('cl_showtext','CommentLuv Enabled');
216
  add_option('cl_badge_pos','');
 
217
  commentluv_activation();
218
  add_option('cl_version','213');
 
219
  }
220
 
221
  // add style to head
@@ -253,9 +257,14 @@ function cl_style_script(){
253
  if($append_id){
254
  $cl_commentform_id="#".$append_id;
255
  }
 
 
 
 
 
256
 
257
  $script="\njQuery(document).ready(function() {\n".
258
- "jQuery('$cl_commentform_id').after('<span id=\"mylastpost\" style=\"clear: both\"><a href=\"http://www.commentluv.com\">".
259
  "$cl_badge_val</a></span>' + '<br/><select name=\"lastposts\" id=\"lastposts\"><option value=0 ></option></select>');\n".
260
  "jQuery('$cl_commentform_id').append('<input type=\"hidden\" id=\"cl_post\" name=\"cl_post\"></input>');\n".
261
  "jQuery('#lastposts').hide();\n";
@@ -264,13 +273,13 @@ function cl_style_script(){
264
  }
265
  $script.="jQuery($comment_selector).focus(cl_dostuff); \n".
266
  "jQuery('#lastposts').change(function(){ \n".
267
- "jQuery('option').remove(\":contains('choose a different post to show')\");\n".
268
  "var url = jQuery(this).val();\n".
269
  "var title = jQuery('#lastposts option:selected').text(); \n".
270
  "jQuery('#mylastpost a').replaceWith('<a href=\"' + url + '\">' + title + '</a>');\n".
271
  "jQuery('#cl_post').val('<a href=\"' + url + '\">' + title + '</a>');\n".
272
  "});\n".
273
- "jQuery($url_selector).change(function(){ jQuery($comment_selector).bind('focus',cl_dostuff);}); \n".
274
  "});\n";
275
 
276
  if(get_option('cl_click_track')=="on"){
@@ -314,7 +323,7 @@ function cl_style_script(){
314
  $script.="selected=selected";
315
  }
316
 
317
- $script.=">".__('Click to choose a different post to show','commentluv')."</option>').fadeIn(1000);\n";
318
 
319
  // change output text to that set in the options page
320
  $search=array('[name]','[lastpost]');
@@ -327,10 +336,10 @@ function cl_style_script(){
327
  "});\n".
328
  "}\n";
329
 
330
- if(is_single()) {
331
- echo '<!-- Styling and script added by commentluv 2.13 http://www.commentluv.com -->';
332
  echo '<style type="text/css">abbr em{'.get_option('cl_style').'} #lastposts { width: 300px; }</style>';
333
- wp_enqueue_script('jquery');
334
  echo "<script type=\"text/javascript\"><!--//--><![CDATA[//><!--";
335
  // add click tracking if enabled to head for admin
336
  if(current_user_can('edit_users')){
@@ -385,6 +394,8 @@ function cl_options_page(){
385
  update_option('cl_showtext','CommentLuv Enabled');
386
  update_option('cl_reset','off');
387
  update_option('cl_badge_pos','');
 
 
388
  }
389
  ?>
390
  <div class="wrap">
@@ -407,6 +418,12 @@ function cl_options_page(){
407
  <input class="form-table" name="cl_comment_text" value="<?php echo get_option('cl_comment_text');?>">
408
  </td>
409
  </tr>
 
 
 
 
 
 
410
  <tr>
411
  <td width="29%"><?php _e('Choose to have CommentLuv on by default?','commentluv')?></td>
412
  <td width="71%"><select name="cl_default_on">
@@ -468,9 +485,9 @@ function cl_options_page(){
468
  <td><label><input type="radio" <?php if($badge=="ACL88x31-white.gif"){echo "checked ";}?> name="cl_badge" value="ACL88x31-white.gif"><img src="<?php echo WP_PLUGIN_URL;?>/commentluv/ACL88x31-white.gif"/></label></td>
469
  <td><label><input type="radio" <?php if($badge=="ACL88x31-black.gif"){echo "checked ";}?> name="cl_badge" value="ACL88x31-black.gif"><img src="<?php echo WP_PLUGIN_URL;?>/commentluv/ACL88x31-black.gif"/></label></td>
470
  <td><label><input type="radio" <?php if($badge=="nothing.gif"){echo "checked ";}?> name="cl_badge" value="nothing.gif"><?php _e('Show nothing','commentluv')?></label></td>
471
- </tr>
472
- <tr><td><label><input type="radio" <?php if($badge=="text"){echo "checked ";}?> name="cl_badge" value="text"><?php _e('Show text','commentluv')?></label> <input class="form-table" type="text" name="cl_showtext" value="<?php echo get_option('cl_showtext');?>"></input></td></tr>
473
- <tr><td><label><?php _e('Append badge to (DIV or object ID) optional','commentluv')?><input class="form-table" type="text" name="cl_badge_pos" value="<?php echo get_option('cl_badge_pos');?>"></input></td></tr>
474
  </table>
475
  <h3><?php _e('CommentLuv Member ID','commentluv')?></h3>
476
  <p><?php _e('If you register your site for free at','commentluv')?> <a href="http://www.commentluv.com">CommentLuv.com</a> <?php _e('you will be able to open up lots of features that are for members only like link tracking so you can see which of the comments you make on CommentLuv blogs are getting the last blog post clicked. Do NOT enter a number if you do not have one','commentluv')?></p>
@@ -482,7 +499,7 @@ function cl_options_page(){
482
  <td><input type="checkbox" name="cl_click_track" <?php if(get_option('cl_click_track')=="on"){echo "checked";};?> /></td>
483
  </tr>
484
  </table>
485
- <input type="hidden" name="page_options" value="cl_comment_text,cl_default_on,cl_style,cl_author_id,cl_site_id,cl_comment_id,cl_commentform_id,cl_badge,cl_member_id,cl_click_track,cl_form_type,cl_author_type,cl_url_type,cl_textarea_type,cl_reset,cl_showtext,cl_badge_pos" />
486
  <input type="hidden" name="action" value="update" />
487
  <input type="hidden" name="option_page" value="commentluv" />
488
  <p><input type="checkbox" name="cl_reset"/><?php _e('Reset to Default Settings','commentluv')?>
2
  Plugin Name: commentluv
3
  Plugin URI: http://www.commentluv.com/download/ajax-commentluv-installation/
4
  Description: Plugin to show a link to the last post from the commenters blog in their comment. Just activate and it's ready. Will parse a feed from most sites that have a feed location specified in its head html. See the <a href="options-general.php?page=commentluv">Settings Page</a> for styling and text output options.
5
+ Version: 2.1.5
6
  Author: Andy Bailey
7
  Author URI: http://www.fiddyp.co.uk/
8
 
10
  You can now edit the options from the dashboard
11
  *********************************************************************
12
  updates:
13
+ 2.1.5 25/9/8 do the features ever stop?? Marco says we should had some option for html to be added before button and delete old selects if change url. done!
14
+ also I am a dumbo for using wp_enqueue_script in the function called by wp_head, it should be before that. so sorry everyone! (retiredat47.com)
15
  2.1.4 25/9/8 enqueue script and give choice to place button where someone wants it thanks Marco! http://www.saphod.net/
16
  2.1.3 24/9/8 fix for older than 2.6 to use wp_plugin_dir and remove quick fix for imwithjoe (it was the ID's joe!)
17
  and make inline javascript valid xhtml. Validates!
111
  add_filter('preprocess_comment','cl_post',0);
112
  add_filter('whitelist_options','commentluv_alter_whitelist_options');
113
  register_activation_hook(__FILE__, 'commentluv_activation');
114
+ wp_enqueue_script('jquery');
115
  // for lesser Wp than 2.6
116
  if ( ! defined( 'WP_PLUGIN_URL' ) )
117
  define( 'WP_PLUGIN_URL', WP_CONTENT_URL. '/plugins' );
119
  // make compatible with Mu
120
  function commentluv_alter_whitelist_options($whitelist) {
121
  if(is_array($whitelist)) {
122
+ $option_array = array('commentluv' => array('cl_comment_text','cl_default_on','cl_style','cl_author_id','cl_site_id','cl_comment_id','cl_commentform_id','cl_badge','cl_member_id','cl_click_track','cl_author_type','cl_url_type','cl_textarea_type','cl_reset','cl_showtext','cl_badge_pos','cl_prepend'));
123
  $whitelist = array_merge($whitelist,$option_array);
124
  }
125
  return $whitelist;
216
  add_option('cl_click_track','on');
217
  add_option('cl_showtext','CommentLuv Enabled');
218
  add_option('cl_badge_pos','');
219
+ add_option('cl_prepend','');
220
  commentluv_activation();
221
  add_option('cl_version','213');
222
+ add_option('cl_select_text','choose a different post to show');
223
  }
224
 
225
  // add style to head
257
  if($append_id){
258
  $cl_commentform_id="#".$append_id;
259
  }
260
+ // optional prepend
261
+ $cl_prepend=get_option('cl_prepend');
262
+
263
+ // select text
264
+ $cl_select_text=get_option('cl_select_text');
265
 
266
  $script="\njQuery(document).ready(function() {\n".
267
+ "jQuery('$cl_commentform_id').after('$cl_prepend<span id=\"mylastpost\" style=\"clear: both\"><a href=\"http://www.commentluv.com\">".
268
  "$cl_badge_val</a></span>' + '<br/><select name=\"lastposts\" id=\"lastposts\"><option value=0 ></option></select>');\n".
269
  "jQuery('$cl_commentform_id').append('<input type=\"hidden\" id=\"cl_post\" name=\"cl_post\"></input>');\n".
270
  "jQuery('#lastposts').hide();\n";
273
  }
274
  $script.="jQuery($comment_selector).focus(cl_dostuff); \n".
275
  "jQuery('#lastposts').change(function(){ \n".
276
+ "jQuery('option').remove(\":contains('".$cl_select_text."')\");\n".
277
  "var url = jQuery(this).val();\n".
278
  "var title = jQuery('#lastposts option:selected').text(); \n".
279
  "jQuery('#mylastpost a').replaceWith('<a href=\"' + url + '\">' + title + '</a>');\n".
280
  "jQuery('#cl_post').val('<a href=\"' + url + '\">' + title + '</a>');\n".
281
  "});\n".
282
+ "jQuery($url_selector).change(function(){ jQuery('#lastposts').empty(); jQuery($comment_selector).bind('focus',cl_dostuff);}); \n".
283
  "});\n";
284
 
285
  if(get_option('cl_click_track')=="on"){
323
  $script.="selected=selected";
324
  }
325
 
326
+ $script.=">$cl_select_text</option>').fadeIn(1000);\n";
327
 
328
  // change output text to that set in the options page
329
  $search=array('[name]','[lastpost]');
336
  "});\n".
337
  "}\n";
338
 
339
+ if(is_single()) {
340
+ echo '<!-- Styling and script added by commentluv 2.15 http://www.commentluv.com -->';
341
  echo '<style type="text/css">abbr em{'.get_option('cl_style').'} #lastposts { width: 300px; }</style>';
342
+
343
  echo "<script type=\"text/javascript\"><!--//--><![CDATA[//><!--";
344
  // add click tracking if enabled to head for admin
345
  if(current_user_can('edit_users')){
394
  update_option('cl_showtext','CommentLuv Enabled');
395
  update_option('cl_reset','off');
396
  update_option('cl_badge_pos','');
397
+ update_option('cl_prepend','');
398
+ update_option('cl_select_text','Choose a different post to show');
399
  }
400
  ?>
401
  <div class="wrap">
418
  <input class="form-table" name="cl_comment_text" value="<?php echo get_option('cl_comment_text');?>">
419
  </td>
420
  </tr>
421
+ <tr>
422
+ <td colspan="2">
423
+ <?php _e('Text displayed in the select box','commentluv');?>
424
+ <input class="form-table" name="cl_select_text" value="<?php echo get_option('cl_select_text');?>">
425
+ </td>
426
+ </tr>
427
  <tr>
428
  <td width="29%"><?php _e('Choose to have CommentLuv on by default?','commentluv')?></td>
429
  <td width="71%"><select name="cl_default_on">
485
  <td><label><input type="radio" <?php if($badge=="ACL88x31-white.gif"){echo "checked ";}?> name="cl_badge" value="ACL88x31-white.gif"><img src="<?php echo WP_PLUGIN_URL;?>/commentluv/ACL88x31-white.gif"/></label></td>
486
  <td><label><input type="radio" <?php if($badge=="ACL88x31-black.gif"){echo "checked ";}?> name="cl_badge" value="ACL88x31-black.gif"><img src="<?php echo WP_PLUGIN_URL;?>/commentluv/ACL88x31-black.gif"/></label></td>
487
  <td><label><input type="radio" <?php if($badge=="nothing.gif"){echo "checked ";}?> name="cl_badge" value="nothing.gif"><?php _e('Show nothing','commentluv')?></label></td>
488
+ </tr></table>
489
+ <table class="form-table">
490
+ <tr><td><label><input type="radio" <?php if($badge=="text"){echo "checked ";}?> name="cl_badge" value="text"><?php _e('Show text','commentluv')?></label> <input class="form-table" type="text" name="cl_showtext" value="<?php echo get_option('cl_showtext');?>"></input></td><td></td><td><label><?php _e('Append badge to (DIV or object ID) optional','commentluv')?><input class="form-table" type="text" name="cl_badge_pos" value="<?php echo get_option('cl_badge_pos');?>"></input></td><td></td><td><label><?php _e('Prepend html before badge or text (optional)','commentluv')?></label><input class="form-table" type="text" name="cl_prepend" value="<?php echo htmlspecialchars(get_option('cl_prepend'));?>"></input></tr>
491
  </table>
492
  <h3><?php _e('CommentLuv Member ID','commentluv')?></h3>
493
  <p><?php _e('If you register your site for free at','commentluv')?> <a href="http://www.commentluv.com">CommentLuv.com</a> <?php _e('you will be able to open up lots of features that are for members only like link tracking so you can see which of the comments you make on CommentLuv blogs are getting the last blog post clicked. Do NOT enter a number if you do not have one','commentluv')?></p>
499
  <td><input type="checkbox" name="cl_click_track" <?php if(get_option('cl_click_track')=="on"){echo "checked";};?> /></td>
500
  </tr>
501
  </table>
502
+ <input type="hidden" name="page_options" value="cl_comment_text,cl_default_on,cl_style,cl_author_id,cl_site_id,cl_comment_id,cl_commentform_id,cl_badge,cl_member_id,cl_click_track,cl_form_type,cl_author_type,cl_url_type,cl_textarea_type,cl_reset,cl_showtext,cl_badge_pos,cl_prepend,cl_select_text" />
503
  <input type="hidden" name="action" value="update" />
504
  <input type="hidden" name="option_page" value="commentluv" />
505
  <p><input type="checkbox" name="cl_reset"/><?php _e('Reset to Default Settings','commentluv')?>
commentluv.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: CommentLuv 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-09-25 15:44-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Andy Bailey <andy@teamplaylotto.com>\n"
8
  "Language-Team: <andy@teamplaylotto.com>\n"
@@ -15,143 +15,147 @@ msgstr ""
15
  "X-Poedit-Basepath: .\n"
16
  "X-Poedit-SearchPath-0: C:\\xampp\\htdocs\\wordpress\\wp-content\\plugins\\commentluv\n"
17
 
18
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:310
19
  msgid "Do Not Show"
20
  msgstr ""
21
 
22
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:317
23
- msgid "Click to choose a different post to show"
24
- msgstr ""
25
-
26
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:399
27
  msgid "CommentLuv Wordpress Plugin"
28
  msgstr ""
29
 
30
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:400
31
  msgid "This plugin takes the url from the comment form and tries to parse the feed of the site and display the last entry made"
32
  msgstr ""
33
 
34
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:401
35
  msgid "If you have any questions, comments or if you have a good idea that you would like to see in the next version of CommentLuv, please visit"
36
  msgstr ""
37
 
38
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:401
39
  msgid "or"
40
  msgstr ""
41
 
42
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:401
43
  msgid "support forum"
44
  msgstr ""
45
 
46
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:401
47
  msgid "and let me know"
48
  msgstr ""
49
 
50
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:402
51
  msgid "Options"
52
  msgstr ""
53
 
54
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:403
55
  msgid "Enter the text you want displayed in the comment."
56
  msgstr ""
57
 
58
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:411
 
 
 
 
59
  msgid "Choose to have CommentLuv on by default?"
60
  msgstr ""
61
 
62
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:418
63
  msgid "Styling"
64
  msgstr ""
65
 
66
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:419
67
  msgid "Wordpress doesn't allow a class to be applied to a paragraph in the comment area so we have to wrap the last blog post text in nested tags and apply styling to that instead."
68
  msgstr ""
69
 
70
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:420
71
  msgid "Enter css styling to apply to comment"
72
  msgstr ""
73
 
74
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:420
75
  msgid "inserted as"
76
  msgstr ""
77
 
78
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:426
79
  msgid "Comment Form Identification"
80
  msgstr ""
81
 
82
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:427
83
  msgid "Enter the ID or NAME value for the input fields on your comment form."
84
  msgstr ""
85
 
86
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:428
87
  msgid "Check your comment form fields to see if they use ID= or NAME= and select the appropriate type below"
88
  msgstr ""
89
 
90
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:429
91
  msgid "Visit CommentLuv.com if you need instructions"
92
  msgstr ""
93
 
94
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:431
95
  msgid "Comment Form ID"
96
  msgstr ""
97
 
98
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:436
99
  msgid "Authors Name field ID"
100
  msgstr ""
101
 
102
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:444
103
  msgid "Authors URL field ID"
104
  msgstr ""
105
 
106
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:452
107
  msgid "Comment Text Area ID"
108
  msgstr ""
109
 
110
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:460
111
  msgid "Display Badge"
112
  msgstr ""
113
 
114
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:464
115
  msgid "Choose badge to display"
116
  msgstr ""
117
 
118
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:470
119
  msgid "Show nothing"
120
  msgstr ""
121
 
122
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:472
123
  msgid "Show text"
124
  msgstr ""
125
 
126
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:473
127
  msgid "Append badge to (DIV or object ID) optional"
128
  msgstr ""
129
 
130
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:475
 
 
 
 
131
  msgid "CommentLuv Member ID"
132
  msgstr ""
133
 
134
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:476
135
  msgid "If you register your site for free at"
136
  msgstr ""
137
 
138
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:476
139
  msgid "you will be able to open up lots of features that are for members only like link tracking so you can see which of the comments you make on CommentLuv blogs are getting the last blog post clicked. Do NOT enter a number if you do not have one"
140
  msgstr ""
141
 
142
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:478
143
  msgid "Your CommentLuv.com member ID"
144
  msgstr ""
145
 
146
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:481
147
  msgid "Enable click tracking?"
148
  msgstr ""
149
 
150
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:488
151
  msgid "Reset to Default Settings"
152
  msgstr ""
153
 
154
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:489
155
  msgid "Update Options"
156
  msgstr ""
157
 
2
  msgstr ""
3
  "Project-Id-Version: CommentLuv 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-09-25 20:13-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Andy Bailey <andy@teamplaylotto.com>\n"
8
  "Language-Team: <andy@teamplaylotto.com>\n"
15
  "X-Poedit-Basepath: .\n"
16
  "X-Poedit-SearchPath-0: C:\\xampp\\htdocs\\wordpress\\wp-content\\plugins\\commentluv\n"
17
 
18
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:319
19
  msgid "Do Not Show"
20
  msgstr ""
21
 
22
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:410
 
 
 
 
23
  msgid "CommentLuv Wordpress Plugin"
24
  msgstr ""
25
 
26
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:411
27
  msgid "This plugin takes the url from the comment form and tries to parse the feed of the site and display the last entry made"
28
  msgstr ""
29
 
30
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:412
31
  msgid "If you have any questions, comments or if you have a good idea that you would like to see in the next version of CommentLuv, please visit"
32
  msgstr ""
33
 
34
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:412
35
  msgid "or"
36
  msgstr ""
37
 
38
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:412
39
  msgid "support forum"
40
  msgstr ""
41
 
42
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:412
43
  msgid "and let me know"
44
  msgstr ""
45
 
46
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:413
47
  msgid "Options"
48
  msgstr ""
49
 
50
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:414
51
  msgid "Enter the text you want displayed in the comment."
52
  msgstr ""
53
 
54
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:423
55
+ msgid "Text displayed in the select box"
56
+ msgstr ""
57
+
58
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:428
59
  msgid "Choose to have CommentLuv on by default?"
60
  msgstr ""
61
 
62
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:435
63
  msgid "Styling"
64
  msgstr ""
65
 
66
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:436
67
  msgid "Wordpress doesn't allow a class to be applied to a paragraph in the comment area so we have to wrap the last blog post text in nested tags and apply styling to that instead."
68
  msgstr ""
69
 
70
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:437
71
  msgid "Enter css styling to apply to comment"
72
  msgstr ""
73
 
74
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:437
75
  msgid "inserted as"
76
  msgstr ""
77
 
78
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:443
79
  msgid "Comment Form Identification"
80
  msgstr ""
81
 
82
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:444
83
  msgid "Enter the ID or NAME value for the input fields on your comment form."
84
  msgstr ""
85
 
86
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:445
87
  msgid "Check your comment form fields to see if they use ID= or NAME= and select the appropriate type below"
88
  msgstr ""
89
 
90
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:446
91
  msgid "Visit CommentLuv.com if you need instructions"
92
  msgstr ""
93
 
94
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:448
95
  msgid "Comment Form ID"
96
  msgstr ""
97
 
98
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:453
99
  msgid "Authors Name field ID"
100
  msgstr ""
101
 
102
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:461
103
  msgid "Authors URL field ID"
104
  msgstr ""
105
 
106
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:469
107
  msgid "Comment Text Area ID"
108
  msgstr ""
109
 
110
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:477
111
  msgid "Display Badge"
112
  msgstr ""
113
 
114
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:481
115
  msgid "Choose badge to display"
116
  msgstr ""
117
 
118
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:487
119
  msgid "Show nothing"
120
  msgstr ""
121
 
122
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:490
123
  msgid "Show text"
124
  msgstr ""
125
 
126
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:490
127
  msgid "Append badge to (DIV or object ID) optional"
128
  msgstr ""
129
 
130
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:490
131
+ msgid "Prepend html before badge or text (optional)"
132
+ msgstr ""
133
+
134
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:492
135
  msgid "CommentLuv Member ID"
136
  msgstr ""
137
 
138
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:493
139
  msgid "If you register your site for free at"
140
  msgstr ""
141
 
142
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:493
143
  msgid "you will be able to open up lots of features that are for members only like link tracking so you can see which of the comments you make on CommentLuv blogs are getting the last blog post clicked. Do NOT enter a number if you do not have one"
144
  msgstr ""
145
 
146
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:495
147
  msgid "Your CommentLuv.com member ID"
148
  msgstr ""
149
 
150
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:498
151
  msgid "Enable click tracking?"
152
  msgstr ""
153
 
154
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:505
155
  msgid "Reset to Default Settings"
156
  msgstr ""
157
 
158
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:506
159
  msgid "Update Options"
160
  msgstr ""
161
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: Andy Bailey
3
  Tags: comments, linkluv
4
  Requires at least: 2.5
5
  Tested up to: 2.6.2
6
- Stable tag: 2.1.4
7
 
8
  Appends a titled link using AJAX to the authors last blog post on their comment giving back some luv to the people that join your discussion. Compatible with logged on users and Wordpress MU. Visit CommentLuv.com for detailed instructions on features.
9
 
3
  Tags: comments, linkluv
4
  Requires at least: 2.5
5
  Tested up to: 2.6.2
6
+ Stable tag: 2.1.5
7
 
8
  Appends a titled link using AJAX to the authors last blog post on their comment giving back some luv to the people that join your discussion. Compatible with logged on users and Wordpress MU. Visit CommentLuv.com for detailed instructions on features.
9