CommentLuv - Version 2.6.4

Version Description

Download this release

Release Info

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

Code changes from version 2.6.3 to 2.6.4

commentluv-manager.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  if ( ! defined( 'WP_PLUGIN_URL' ) )
3
  define( 'WP_PLUGIN_URL', WP_CONTENT_URL. '/plugins' );
4
  $commentluvdirectory = WP_PLUGIN_URL . '/' . dirname( plugin_basename(__FILE__) );
@@ -16,14 +17,11 @@ add_option('cl_comment_id','comment');
16
  add_option('cl_commentform_id','#commentform');
17
  add_option('cl_badge','ACL88x31-white.gif');
18
  add_option('cl_member_id','');
19
- add_option('cl_author_type','name');
20
- add_option('cl_url_type','name');
21
- add_option('cl_textarea_type','name');
22
  add_option('cl_click_track','on');
23
  add_option('cl_showtext','CommentLuv Enabled');
24
  add_option('cl_badge_pos','');
25
  add_option('cl_prepend','');
26
- add_option('cl_version','263');
27
  add_option('cl_select_text','choose a different post to show');
28
  add_option('cl_intense','off');
29
  // Pre-2.6 compatibility
@@ -41,8 +39,8 @@ commentluv_setup();
41
  function commentluv_activation(){
42
  // set version for future releases if they need to change a value
43
  $version=get_option('cl_version');
44
- if($version<263){
45
- update_option('cl_version','263');
46
 
47
  }
48
  }
@@ -63,9 +61,6 @@ if ($_POST['submit']=='reset'){
63
  update_option('cl_comment_id','comment');
64
  update_option('cl_commentform_id','');
65
  update_option('cl_badge','ACL88x31-white.gif');
66
- update_option('cl_author_type','name');
67
- update_option('cl_url_type','name');
68
- update_option('cl_textarea_type','name');
69
  update_option('cl_click_track','on');
70
  update_option('cl_showtext','CommentLuv Enabled');
71
  update_option('cl_reset','off');
@@ -80,10 +75,8 @@ if ($_POST['Submit']==__('Update Options')){
80
  update_option('cl_default_on',$_POST['cl_default_on']);
81
  update_option('cl_heart_tip',$_POST['cl_heart_tip']);
82
  update_option('cl_style',$_POST['cl_style']);
83
- update_option('cl_author_type',$_POST['cl_author_type']);
84
  update_option('cl_author_id',$_POST['cl_author_id']);
85
- update_option('cl_url_type',$_POST['cl_site_id']);
86
- update_option('cl_textarea_type',$_POST['cl_textarea_type']);
87
  update_option('cl_comment_id',$_POST['cl_comment_id']);
88
  update_option('cl_badge',$_POST['cl_badge']);
89
  update_option('cl_showtext',$_POST['cl_showtext']);
@@ -152,27 +145,15 @@ if ($_POST['Submit']==__('Update Options')){
152
  <table class="form-table">
153
  <tr ><td colspan="3">These settings shouldn't need changing unless you use a non standard form.</td></tr>
154
  <tr>
155
- <td><?php _e('Authors Name field ID','commentluv')?></td>
156
- <td><select name="cl_author_type">
157
- <option <?php if(get_option('cl_author_type')=="ID" ){echo "selected=selected";}?> >ID</option>
158
- <option <?php if(get_option('cl_author_type')=="name") {echo "selected=selected";}?> >name</option>
159
- </td>
160
  <td><input name="cl_author_id" value="<?php echo get_option('cl_author_id');?>"></td>
161
  </tr>
162
  <tr>
163
- <td><?php _e('Authors URL field ID','commentluv')?></td>
164
- <td><select name="cl_url_type">
165
- <option <?php if(get_option('cl_url_type')=="ID") {echo "selected=selected";}?> >ID</option>
166
- <option <?php if(get_option('cl_url_type')=="name") {echo "selected=selected";}?> >name</option>
167
- </td>
168
  <td><input name="cl_site_id" value="<?php echo get_option('cl_site_id');?>"></td>
169
  </tr>
170
  <tr>
171
- <td><?php _e('Comment Text Area ID','commentluv')?></td>
172
- <td><select name="cl_textarea_type">
173
- <option <?php if(get_option('cl_textarea_type')=="ID") {echo "selected=selected";}?> >ID</option>
174
- <option <?php if(get_option('cl_textarea_type')=="name" ){echo "selected=selected";}?> >name</option>
175
- </td>
176
  <td><input name="cl_comment_id" value="<?php echo get_option('cl_comment_id');?>"></td>
177
  </tr>
178
  </table>
@@ -201,7 +182,7 @@ if ($_POST['Submit']==__('Update Options')){
201
  <td><input type="checkbox" name="cl_click_track" <?php if(get_option('cl_click_track')=="on"){echo "checked";};?> /></td>
202
  </tr>
203
  </table>
204
- <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,cl_heart_tip" />
205
  <!-- //<input type="hidden" name="action" value="update" />
206
  //<input type="hidden" name="option_page" value="commentluv" />-->
207
  <p class="submit"><input type="submit" name="Submit" value="<?php _e('Update Options') ?>" /></p>
1
  <?php
2
+ // fixed up to 2.6.4
3
  if ( ! defined( 'WP_PLUGIN_URL' ) )
4
  define( 'WP_PLUGIN_URL', WP_CONTENT_URL. '/plugins' );
5
  $commentluvdirectory = WP_PLUGIN_URL . '/' . dirname( plugin_basename(__FILE__) );
17
  add_option('cl_commentform_id','#commentform');
18
  add_option('cl_badge','ACL88x31-white.gif');
19
  add_option('cl_member_id','');
 
 
 
20
  add_option('cl_click_track','on');
21
  add_option('cl_showtext','CommentLuv Enabled');
22
  add_option('cl_badge_pos','');
23
  add_option('cl_prepend','');
24
+ add_option('cl_version','264');
25
  add_option('cl_select_text','choose a different post to show');
26
  add_option('cl_intense','off');
27
  // Pre-2.6 compatibility
39
  function commentluv_activation(){
40
  // set version for future releases if they need to change a value
41
  $version=get_option('cl_version');
42
+ if($version<264){
43
+ update_option('cl_version','264');
44
 
45
  }
46
  }
61
  update_option('cl_comment_id','comment');
62
  update_option('cl_commentform_id','');
63
  update_option('cl_badge','ACL88x31-white.gif');
 
 
 
64
  update_option('cl_click_track','on');
65
  update_option('cl_showtext','CommentLuv Enabled');
66
  update_option('cl_reset','off');
75
  update_option('cl_default_on',$_POST['cl_default_on']);
76
  update_option('cl_heart_tip',$_POST['cl_heart_tip']);
77
  update_option('cl_style',$_POST['cl_style']);
 
78
  update_option('cl_author_id',$_POST['cl_author_id']);
79
+ update_option('cl_site_id',$_POST['cl_site_id']);
 
80
  update_option('cl_comment_id',$_POST['cl_comment_id']);
81
  update_option('cl_badge',$_POST['cl_badge']);
82
  update_option('cl_showtext',$_POST['cl_showtext']);
145
  <table class="form-table">
146
  <tr ><td colspan="3">These settings shouldn't need changing unless you use a non standard form.</td></tr>
147
  <tr>
148
+ <td><?php _e('Authors Name field name','commentluv')?></td>
 
 
 
 
149
  <td><input name="cl_author_id" value="<?php echo get_option('cl_author_id');?>"></td>
150
  </tr>
151
  <tr>
152
+ <td><?php _e('Authors URL field name','commentluv')?></td>
 
 
 
 
153
  <td><input name="cl_site_id" value="<?php echo get_option('cl_site_id');?>"></td>
154
  </tr>
155
  <tr>
156
+ <td><?php _e('Comment Text Area name','commentluv')?></td>
 
 
 
 
157
  <td><input name="cl_comment_id" value="<?php echo get_option('cl_comment_id');?>"></td>
158
  </tr>
159
  </table>
182
  <td><input type="checkbox" name="cl_click_track" <?php if(get_option('cl_click_track')=="on"){echo "checked";};?> /></td>
183
  </tr>
184
  </table>
185
+ <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_reset,cl_showtext,cl_badge_pos,cl_prepend,cl_select_text,cl_heart_tip" />
186
  <!-- //<input type="hidden" name="action" value="update" />
187
  //<input type="hidden" name="option_page" value="commentluv" />-->
188
  <p class="submit"><input type="submit" name="Submit" value="<?php _e('Update Options') ?>" /></p>
commentluv-pt_PT.mo CHANGED
Binary file
commentluv-pt_PT.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-12-24 14:52-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Andy Bailey <andy@teamplaylotto.com>\n"
8
  "Language-Team: <andy@teamplaylotto.com>\n"
@@ -16,188 +16,188 @@ msgstr ""
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-manager.php:77
19
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:207
20
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:531
21
  msgid "Update Options"
22
  msgstr "Actualizar Op&ccedil;&otilde;es"
23
 
24
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:107
25
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:430
26
  msgid "CommentLuv Wordpress Plugin"
27
  msgstr "CommentLuv Wordpress Plugin"
28
 
29
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:108
30
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:431
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 "Este plugin insere um link para o &uacute;ltimo artigo do url inserido no formul&aacute;rio dos coment&aacute;rios"
33
 
34
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:109
35
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:432
36
  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"
37
  msgstr "Se tens alguma d&uacute;vida, coment&aacute;rios ou sugest&atilde;o, por favor visita"
38
 
39
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:109
40
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:432
41
  msgid "or"
42
  msgstr "ou"
43
 
44
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:109
45
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:432
46
  msgid "support forum"
47
  msgstr "f&oacute;rum de suporte"
48
 
49
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:109
50
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:432
51
  msgid "and let me know"
52
  msgstr "avisa-me"
53
 
54
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:110
55
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:433
56
  msgid "Options"
57
  msgstr "Op&ccedil;&otilde;es"
58
 
59
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:111
60
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:434
61
  msgid "Enter the text you want displayed in the comment."
62
  msgstr "Introduz o texto que ir&aacute; aparecer no coment&aacute;rio."
63
 
64
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:120
65
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:443
66
  msgid "Text displayed in the select box"
67
  msgstr ""
68
 
69
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:125
70
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:448
71
  msgid "Choose to have CommentLuv on by default?"
72
  msgstr "Deseja ter o CommentLuv activo por defeito?"
73
 
74
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:132
75
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:455
76
  #, fuzzy
77
  msgid "Choose to have CommentLuv Info box?"
78
  msgstr "Deseja ter o CommentLuv activo por defeito?"
79
 
80
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:140
81
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:462
82
  msgid "Styling"
83
  msgstr "Estilo"
84
 
85
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:141
86
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:463
87
  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."
88
  msgstr "O Wordpress n&atilde;o permite que a uma class seja aplicado um par&aacute;grafo no &agrave;rea dos coment&aacute;rios, ent&atilde;o &eacute; necess&aacute;rio passar o &uacute;ltimo artigo para tags e aplicar os estilo."
89
 
90
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:142
91
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:464
92
  msgid "Enter css styling to apply to comment"
93
  msgstr "Introduza o estilo css para o coment&aacute;rio"
94
 
95
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:142
96
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:464
97
  msgid "inserted as"
98
  msgstr "inserido como"
99
 
100
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:148
101
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:470
102
  msgid "Comment Form Identification"
103
  msgstr "Formul&aacute;rio de Identifica&ccedil;&atilde;o do Coment&aacute;rio"
104
 
105
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:149
106
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:471
107
  msgid "Enter the ID or NAME value for the input fields on your comment form."
108
  msgstr "Introduza o ID ou o Nome para os campos de entrada do seu formul&aacute;rio de coment&aacute;rios."
109
 
110
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:150
111
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:472
112
  #, fuzzy
113
  msgid "Check your comment form fields to see if they use ID= or NAME= and select the appropriate type below"
114
  msgstr "Verifique os campos do formul&aacute;rio de coment&aacute;rios para ter a certeza que eles usam ID= ou NAME= e seleccione o tipo apropriado abaixo"
115
 
116
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:151
117
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:473
118
  msgid "Visit CommentLuv.com if you need instructions"
119
  msgstr "Visite CommentLuv.com se necessitar de instru&ccedil;&otilde;es"
120
 
121
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:155
122
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:478
123
  msgid "Authors Name field ID"
124
  msgstr "ID do campo do Nome"
125
 
126
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:163
127
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:486
128
  msgid "Authors URL field ID"
129
  msgstr "ID do campo do URL"
130
 
131
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:171
132
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:494
133
  msgid "Comment Text Area ID"
134
  msgstr "ID da &agrave;rea de texto do coment&aacute;rio"
135
 
136
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:179
137
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:502
138
  msgid "Display Badge"
139
  msgstr "Mostrar Logo"
140
 
141
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:183
142
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:506
143
  msgid "Choose badge to display"
144
  msgstr "Escolher logo"
145
 
146
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:189
147
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:512
148
  msgid "Show nothing"
149
  msgstr ""
150
 
151
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:192
152
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:515
153
  msgid "Show text"
154
  msgstr ""
155
 
156
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:192
157
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:515
158
  msgid "Append badge to (DIV or object ID) optional"
159
  msgstr ""
160
 
161
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:192
162
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:515
163
  msgid "Prepend html before badge or text (optional)"
164
  msgstr ""
165
 
166
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:194
167
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:517
168
  msgid "CommentLuv Member ID"
169
  msgstr "ID de membro do CommentLuv"
170
 
171
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:195
172
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:518
173
  msgid "If you register your site for free at"
174
  msgstr "Se registares o teu site gratuitamente em"
175
 
176
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:195
177
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:518
178
  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"
179
  msgstr "ter&aacute;s a possibilidade de ter mais funcionalidades que s&atilde;o exclusivas a membros como rastrear os links dos coment&aacute;rios que fez em blogs que utilizam o CommentLuv. N&Atilde;O introduzas um n&uacute;mero se n&atilde;o tiveres um"
180
 
181
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:197
182
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:520
183
  msgid "Your CommentLuv.com member ID"
184
  msgstr "O teu ID de membro do CommentLuv.com"
185
 
186
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:200
187
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:523
188
  msgid "Enable click tracking?"
189
  msgstr ""
190
 
191
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:208
192
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:530
193
  msgid "Reset to Default Settings"
194
  msgstr ""
195
 
196
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:208
197
  msgid "Are you sure you want to reset your settings? Press OK to continue"
198
  msgstr ""
199
 
200
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:158
201
  #, fuzzy
202
  msgid "Settings"
203
  msgstr "Estilo"
2
  msgstr ""
3
  "Project-Id-Version: CommentLuv 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-01-15 13:02-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Andy Bailey <andy@teamplaylotto.com>\n"
8
  "Language-Team: <andy@teamplaylotto.com>\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-manager.php:77
19
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:208
20
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:531
21
  msgid "Update Options"
22
  msgstr "Actualizar Op&ccedil;&otilde;es"
23
 
24
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:108
25
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:430
26
  msgid "CommentLuv Wordpress Plugin"
27
  msgstr "CommentLuv Wordpress Plugin"
28
 
29
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:109
30
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:431
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 "Este plugin insere um link para o &uacute;ltimo artigo do url inserido no formul&aacute;rio dos coment&aacute;rios"
33
 
34
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:110
35
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:432
36
  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"
37
  msgstr "Se tens alguma d&uacute;vida, coment&aacute;rios ou sugest&atilde;o, por favor visita"
38
 
39
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:110
40
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:432
41
  msgid "or"
42
  msgstr "ou"
43
 
44
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:110
45
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:432
46
  msgid "support forum"
47
  msgstr "f&oacute;rum de suporte"
48
 
49
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:110
50
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:432
51
  msgid "and let me know"
52
  msgstr "avisa-me"
53
 
54
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:111
55
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:433
56
  msgid "Options"
57
  msgstr "Op&ccedil;&otilde;es"
58
 
59
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:112
60
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:434
61
  msgid "Enter the text you want displayed in the comment."
62
  msgstr "Introduz o texto que ir&aacute; aparecer no coment&aacute;rio."
63
 
64
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:121
65
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:443
66
  msgid "Text displayed in the select box"
67
  msgstr ""
68
 
69
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:126
70
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:448
71
  msgid "Choose to have CommentLuv on by default?"
72
  msgstr "Deseja ter o CommentLuv activo por defeito?"
73
 
74
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:133
75
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:455
76
  #, fuzzy
77
  msgid "Choose to have CommentLuv Info box?"
78
  msgstr "Deseja ter o CommentLuv activo por defeito?"
79
 
80
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:141
81
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:462
82
  msgid "Styling"
83
  msgstr "Estilo"
84
 
85
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:142
86
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:463
87
  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."
88
  msgstr "O Wordpress n&atilde;o permite que a uma class seja aplicado um par&aacute;grafo no &agrave;rea dos coment&aacute;rios, ent&atilde;o &eacute; necess&aacute;rio passar o &uacute;ltimo artigo para tags e aplicar os estilo."
89
 
90
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:143
91
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:464
92
  msgid "Enter css styling to apply to comment"
93
  msgstr "Introduza o estilo css para o coment&aacute;rio"
94
 
95
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:143
96
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:464
97
  msgid "inserted as"
98
  msgstr "inserido como"
99
 
100
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:149
101
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:470
102
  msgid "Comment Form Identification"
103
  msgstr "Formul&aacute;rio de Identifica&ccedil;&atilde;o do Coment&aacute;rio"
104
 
105
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:150
106
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:471
107
  msgid "Enter the ID or NAME value for the input fields on your comment form."
108
  msgstr "Introduza o ID ou o Nome para os campos de entrada do seu formul&aacute;rio de coment&aacute;rios."
109
 
110
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:151
111
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:472
112
  #, fuzzy
113
  msgid "Check your comment form fields to see if they use ID= or NAME= and select the appropriate type below"
114
  msgstr "Verifique os campos do formul&aacute;rio de coment&aacute;rios para ter a certeza que eles usam ID= ou NAME= e seleccione o tipo apropriado abaixo"
115
 
116
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:152
117
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:473
118
  msgid "Visit CommentLuv.com if you need instructions"
119
  msgstr "Visite CommentLuv.com se necessitar de instru&ccedil;&otilde;es"
120
 
121
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:156
122
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:478
123
  msgid "Authors Name field ID"
124
  msgstr "ID do campo do Nome"
125
 
126
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:164
127
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:486
128
  msgid "Authors URL field ID"
129
  msgstr "ID do campo do URL"
130
 
131
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:172
132
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:494
133
  msgid "Comment Text Area ID"
134
  msgstr "ID da &agrave;rea de texto do coment&aacute;rio"
135
 
136
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:180
137
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:502
138
  msgid "Display Badge"
139
  msgstr "Mostrar Logo"
140
 
141
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:184
142
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:506
143
  msgid "Choose badge to display"
144
  msgstr "Escolher logo"
145
 
146
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:190
147
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:512
148
  msgid "Show nothing"
149
  msgstr ""
150
 
151
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:193
152
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:515
153
  msgid "Show text"
154
  msgstr ""
155
 
156
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:193
157
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:515
158
  msgid "Append badge to (DIV or object ID) optional"
159
  msgstr ""
160
 
161
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:193
162
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:515
163
  msgid "Prepend html before badge or text (optional)"
164
  msgstr ""
165
 
166
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:195
167
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:517
168
  msgid "CommentLuv Member ID"
169
  msgstr "ID de membro do CommentLuv"
170
 
171
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:196
172
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:518
173
  msgid "If you register your site for free at"
174
  msgstr "Se registares o teu site gratuitamente em"
175
 
176
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:196
177
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:518
178
  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"
179
  msgstr "ter&aacute;s a possibilidade de ter mais funcionalidades que s&atilde;o exclusivas a membros como rastrear os links dos coment&aacute;rios que fez em blogs que utilizam o CommentLuv. N&Atilde;O introduzas um n&uacute;mero se n&atilde;o tiveres um"
180
 
181
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:198
182
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:520
183
  msgid "Your CommentLuv.com member ID"
184
  msgstr "O teu ID de membro do CommentLuv.com"
185
 
186
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:201
187
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:523
188
  msgid "Enable click tracking?"
189
  msgstr ""
190
 
191
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:209
192
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:530
193
  msgid "Reset to Default Settings"
194
  msgstr ""
195
 
196
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:209
197
  msgid "Are you sure you want to reset your settings? Press OK to continue"
198
  msgstr ""
199
 
200
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:160
201
  #, fuzzy
202
  msgid "Settings"
203
  msgstr "Estilo"
commentluv.mo CHANGED
Binary file
commentluv.php CHANGED
@@ -10,6 +10,7 @@ Author URI: http://www.fiddyp.co.uk/
10
  You can now edit the options from the dashboard
11
  *********************************************************************
12
  updates:
 
13
  2.6.3 - 5 jan 09 - fix for intense debate. pointed to by http://dannybrown.me
14
  2.6.2 - 26 dec 08 minor bug with update to codex
15
  2.6.1 - 21 Dec 08 - add intense debate
@@ -308,7 +309,7 @@ function cl_style_script(){
308
 
309
  // start the javascript output
310
  if(is_single()) {
311
- echo '<!-- Styling and script added by commentluv 2.63 http://www.commentluv.com -->';
312
 
313
  echo '<style type="text/css">abbr em{'.get_option('cl_style').'} #lastposts { width: 300px; } </style>';
314
  echo "\n<script type=\"text/javascript\" src=\"".WP_PLUGIN_URL."/commentluv/js/commentluv";
10
  You can now edit the options from the dashboard
11
  *********************************************************************
12
  updates:
13
+ 2.6.4 - 15 jan 09 - removed name/id pull down boxes. now use only name value (all fields have a name value by default)
14
  2.6.3 - 5 jan 09 - fix for intense debate. pointed to by http://dannybrown.me
15
  2.6.2 - 26 dec 08 minor bug with update to codex
16
  2.6.1 - 21 Dec 08 - add intense debate
309
 
310
  // start the javascript output
311
  if(is_single()) {
312
+ echo '<!-- Styling and script added by commentluv 2.64 http://www.commentluv.com -->';
313
 
314
  echo '<style type="text/css">abbr em{'.get_option('cl_style').'} #lastposts { width: 300px; } </style>';
315
  echo "\n<script type=\"text/javascript\" src=\"".WP_PLUGIN_URL."/commentluv/js/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-12-24 14:51-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Andy Bailey <andy@teamplaylotto.com>\n"
8
  "Language-Team: <andy@teamplaylotto.com>\n"
@@ -16,186 +16,186 @@ msgstr ""
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-manager.php:77
19
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:207
20
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:531
21
  msgid "Update Options"
22
  msgstr ""
23
 
24
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:107
25
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:430
26
  msgid "CommentLuv Wordpress Plugin"
27
  msgstr ""
28
 
29
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:108
30
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:431
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-manager.php:109
35
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:432
36
  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"
37
  msgstr ""
38
 
39
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:109
40
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:432
41
  msgid "or"
42
  msgstr ""
43
 
44
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:109
45
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:432
46
  msgid "support forum"
47
  msgstr ""
48
 
49
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:109
50
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:432
51
  msgid "and let me know"
52
  msgstr ""
53
 
54
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:110
55
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:433
56
  msgid "Options"
57
  msgstr ""
58
 
59
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:111
60
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:434
61
  msgid "Enter the text you want displayed in the comment."
62
  msgstr ""
63
 
64
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:120
65
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:443
66
  msgid "Text displayed in the select box"
67
  msgstr ""
68
 
69
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:125
70
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:448
71
  msgid "Choose to have CommentLuv on by default?"
72
  msgstr ""
73
 
74
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:132
75
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:455
76
  msgid "Choose to have CommentLuv Info box?"
77
  msgstr ""
78
 
79
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:140
80
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:462
81
  msgid "Styling"
82
  msgstr ""
83
 
84
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:141
85
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:463
86
  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."
87
  msgstr ""
88
 
89
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:142
90
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:464
91
  msgid "Enter css styling to apply to comment"
92
  msgstr ""
93
 
94
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:142
95
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:464
96
  msgid "inserted as"
97
  msgstr ""
98
 
99
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:148
100
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:470
101
  msgid "Comment Form Identification"
102
  msgstr ""
103
 
104
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:149
105
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:471
106
  msgid "Enter the ID or NAME value for the input fields on your comment form."
107
  msgstr ""
108
 
109
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:150
110
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:472
111
  msgid "Check your comment form fields to see if they use ID= or NAME= and select the appropriate type below"
112
  msgstr ""
113
 
114
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:151
115
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:473
116
  msgid "Visit CommentLuv.com if you need instructions"
117
  msgstr ""
118
 
119
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:155
120
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:478
121
  msgid "Authors Name field ID"
122
  msgstr ""
123
 
124
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:163
125
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:486
126
  msgid "Authors URL field ID"
127
  msgstr ""
128
 
129
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:171
130
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:494
131
  msgid "Comment Text Area ID"
132
  msgstr ""
133
 
134
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:179
135
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:502
136
  msgid "Display Badge"
137
  msgstr ""
138
 
139
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:183
140
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:506
141
  msgid "Choose badge to display"
142
  msgstr ""
143
 
144
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:189
145
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:512
146
  msgid "Show nothing"
147
  msgstr ""
148
 
149
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:192
150
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:515
151
  msgid "Show text"
152
  msgstr ""
153
 
154
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:192
155
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:515
156
  msgid "Append badge to (DIV or object ID) optional"
157
  msgstr ""
158
 
159
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:192
160
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:515
161
  msgid "Prepend html before badge or text (optional)"
162
  msgstr ""
163
 
164
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:194
165
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:517
166
  msgid "CommentLuv Member ID"
167
  msgstr ""
168
 
169
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:195
170
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:518
171
  msgid "If you register your site for free at"
172
  msgstr ""
173
 
174
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:195
175
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:518
176
  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"
177
  msgstr ""
178
 
179
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:197
180
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:520
181
  msgid "Your CommentLuv.com member ID"
182
  msgstr ""
183
 
184
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:200
185
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:523
186
  msgid "Enable click tracking?"
187
  msgstr ""
188
 
189
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:208
190
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:530
191
  msgid "Reset to Default Settings"
192
  msgstr ""
193
 
194
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:208
195
  msgid "Are you sure you want to reset your settings? Press OK to continue"
196
  msgstr ""
197
 
198
- #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:158
199
  msgid "Settings"
200
  msgstr ""
201
 
2
  msgstr ""
3
  "Project-Id-Version: CommentLuv 2.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-01-15 13:02-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Andy Bailey <andy@teamplaylotto.com>\n"
8
  "Language-Team: <andy@teamplaylotto.com>\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-manager.php:77
19
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:208
20
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:531
21
  msgid "Update Options"
22
  msgstr ""
23
 
24
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:108
25
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:430
26
  msgid "CommentLuv Wordpress Plugin"
27
  msgstr ""
28
 
29
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:109
30
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:431
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-manager.php:110
35
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:432
36
  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"
37
  msgstr ""
38
 
39
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:110
40
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:432
41
  msgid "or"
42
  msgstr ""
43
 
44
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:110
45
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:432
46
  msgid "support forum"
47
  msgstr ""
48
 
49
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:110
50
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:432
51
  msgid "and let me know"
52
  msgstr ""
53
 
54
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:111
55
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:433
56
  msgid "Options"
57
  msgstr ""
58
 
59
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:112
60
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:434
61
  msgid "Enter the text you want displayed in the comment."
62
  msgstr ""
63
 
64
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:121
65
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:443
66
  msgid "Text displayed in the select box"
67
  msgstr ""
68
 
69
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:126
70
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:448
71
  msgid "Choose to have CommentLuv on by default?"
72
  msgstr ""
73
 
74
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:133
75
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:455
76
  msgid "Choose to have CommentLuv Info box?"
77
  msgstr ""
78
 
79
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:141
80
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:462
81
  msgid "Styling"
82
  msgstr ""
83
 
84
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:142
85
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:463
86
  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."
87
  msgstr ""
88
 
89
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:143
90
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:464
91
  msgid "Enter css styling to apply to comment"
92
  msgstr ""
93
 
94
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:143
95
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:464
96
  msgid "inserted as"
97
  msgstr ""
98
 
99
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:149
100
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:470
101
  msgid "Comment Form Identification"
102
  msgstr ""
103
 
104
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:150
105
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:471
106
  msgid "Enter the ID or NAME value for the input fields on your comment form."
107
  msgstr ""
108
 
109
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:151
110
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:472
111
  msgid "Check your comment form fields to see if they use ID= or NAME= and select the appropriate type below"
112
  msgstr ""
113
 
114
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:152
115
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:473
116
  msgid "Visit CommentLuv.com if you need instructions"
117
  msgstr ""
118
 
119
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:156
120
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:478
121
  msgid "Authors Name field ID"
122
  msgstr ""
123
 
124
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:164
125
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:486
126
  msgid "Authors URL field ID"
127
  msgstr ""
128
 
129
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:172
130
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:494
131
  msgid "Comment Text Area ID"
132
  msgstr ""
133
 
134
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:180
135
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:502
136
  msgid "Display Badge"
137
  msgstr ""
138
 
139
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:184
140
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:506
141
  msgid "Choose badge to display"
142
  msgstr ""
143
 
144
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:190
145
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:512
146
  msgid "Show nothing"
147
  msgstr ""
148
 
149
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:193
150
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:515
151
  msgid "Show text"
152
  msgstr ""
153
 
154
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:193
155
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:515
156
  msgid "Append badge to (DIV or object ID) optional"
157
  msgstr ""
158
 
159
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:193
160
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:515
161
  msgid "Prepend html before badge or text (optional)"
162
  msgstr ""
163
 
164
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:195
165
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:517
166
  msgid "CommentLuv Member ID"
167
  msgstr ""
168
 
169
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:196
170
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:518
171
  msgid "If you register your site for free at"
172
  msgstr ""
173
 
174
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:196
175
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:518
176
  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"
177
  msgstr ""
178
 
179
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:198
180
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:520
181
  msgid "Your CommentLuv.com member ID"
182
  msgstr ""
183
 
184
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:201
185
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:523
186
  msgid "Enable click tracking?"
187
  msgstr ""
188
 
189
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:209
190
  #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluvID.php:530
191
  msgid "Reset to Default Settings"
192
  msgstr ""
193
 
194
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv-manager.php:209
195
  msgid "Are you sure you want to reset your settings? Press OK to continue"
196
  msgstr ""
197
 
198
+ #: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:160
199
  msgid "Settings"
200
  msgstr ""
201
 
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.7
6
- Stable tag: 2.6.3
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.7
6
+ Stable tag: 2.6.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