Version Description
Download this release
Release Info
Developer | teamplaylotto |
Plugin | CommentLuv |
Version | 2.1.4 |
Comparing to | |
See all releases |
Code changes from version 2.1.3 to 2.1.4
- commentluv.mo +0 -0
- commentluv.php +20 -12
- commentluv.po +39 -35
- 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.
|
6 |
Author: Andy Bailey
|
7 |
Author URI: http://www.fiddyp.co.uk/
|
8 |
|
@@ -10,9 +10,9 @@ Author URI: http://www.fiddyp.co.uk/
|
|
10 |
You can now edit the options from the dashboard
|
11 |
*********************************************************************
|
12 |
updates:
|
13 |
-
|
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 |
-
|
16 |
2.1.2 24/9/8 Allow user to choose no image or use text instead. Try to run cl_dostuff if url field already filled (fix for imwithjoe.com)
|
17 |
2.11 23/9/8 Use better constant to specify image url in javascript (http://indigospot.com) and moved button to below comment text area
|
18 |
2.1 23/9/8 Change to final remote file location and updated readme and download pages
|
@@ -117,7 +117,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'));
|
121 |
$whitelist = array_merge($whitelist,$option_array);
|
122 |
}
|
123 |
return $whitelist;
|
@@ -213,6 +213,7 @@ function show_cl_options() {
|
|
213 |
add_option('cl_textarea_type','ID');
|
214 |
add_option('cl_click_track','on');
|
215 |
add_option('cl_showtext','CommentLuv Enabled');
|
|
|
216 |
commentluv_activation();
|
217 |
add_option('cl_version','213');
|
218 |
}
|
@@ -224,9 +225,6 @@ function cl_style_script(){
|
|
224 |
if ($cl_script_added) {
|
225 |
return;
|
226 |
}
|
227 |
-
echo '<!-- Styling and script added by commentluv 2.13 http://www.commentluv.com -->';
|
228 |
-
echo '<style type="text/css">abbr em{'.get_option('cl_style').'} #lastposts { width: 300px; }</style>';
|
229 |
-
|
230 |
$cl_commentform_id=get_option('cl_commentform_id');
|
231 |
|
232 |
$cl_comment_id=get_option('cl_comment_id');
|
@@ -249,6 +247,12 @@ function cl_style_script(){
|
|
249 |
} else {
|
250 |
$cl_badge_val="<img src=\"".WP_PLUGIN_URL."/commentluv/$cl_badge\"/>";
|
251 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
252 |
|
253 |
$script="\njQuery(document).ready(function() {\n".
|
254 |
"jQuery('$cl_commentform_id').after('<span id=\"mylastpost\" style=\"clear: both\"><a href=\"http://www.commentluv.com\">".
|
@@ -324,8 +328,9 @@ function cl_style_script(){
|
|
324 |
"}\n";
|
325 |
|
326 |
if(is_single()) {
|
327 |
-
|
328 |
-
echo'<
|
|
|
329 |
echo "<script type=\"text/javascript\"><!--//--><![CDATA[//><!--";
|
330 |
// add click tracking if enabled to head for admin
|
331 |
if(current_user_can('edit_users')){
|
@@ -349,11 +354,12 @@ function cl_style_script(){
|
|
349 |
// normal user script (so admin doesn't get the badge below form)
|
350 |
echo $script;
|
351 |
}
|
|
|
|
|
|
|
352 |
}
|
353 |
|
354 |
-
echo "//--><!]]></script>";
|
355 |
|
356 |
-
echo '<!-- end commentluv http://www.fiddyp.co.uk -->';
|
357 |
|
358 |
//wp_enqueue_script('jquery');
|
359 |
$cl_script_added=1;
|
@@ -378,6 +384,7 @@ function cl_options_page(){
|
|
378 |
update_option('cl_click_track','on');
|
379 |
update_option('cl_showtext','CommentLuv Enabled');
|
380 |
update_option('cl_reset','off');
|
|
|
381 |
}
|
382 |
?>
|
383 |
<div class="wrap">
|
@@ -463,6 +470,7 @@ function cl_options_page(){
|
|
463 |
<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>
|
464 |
</tr>
|
465 |
<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>
|
|
|
466 |
</table>
|
467 |
<h3><?php _e('CommentLuv Member ID','commentluv')?></h3>
|
468 |
<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>
|
@@ -474,7 +482,7 @@ function cl_options_page(){
|
|
474 |
<td><input type="checkbox" name="cl_click_track" <?php if(get_option('cl_click_track')=="on"){echo "checked";};?> /></td>
|
475 |
</tr>
|
476 |
</table>
|
477 |
-
<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" />
|
478 |
<input type="hidden" name="action" value="update" />
|
479 |
<input type="hidden" name="option_page" value="commentluv" />
|
480 |
<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.4
|
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.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!
|
16 |
2.1.2 24/9/8 Allow user to choose no image or use text instead. Try to run cl_dostuff if url field already filled (fix for imwithjoe.com)
|
17 |
2.11 23/9/8 Use better constant to specify image url in javascript (http://indigospot.com) and moved button to below comment text area
|
18 |
2.1 23/9/8 Change to final remote file location and updated readme and download pages
|
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;
|
213 |
add_option('cl_textarea_type','ID');
|
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 |
}
|
225 |
if ($cl_script_added) {
|
226 |
return;
|
227 |
}
|
|
|
|
|
|
|
228 |
$cl_commentform_id=get_option('cl_commentform_id');
|
229 |
|
230 |
$cl_comment_id=get_option('cl_comment_id');
|
247 |
} else {
|
248 |
$cl_badge_val="<img src=\"".WP_PLUGIN_URL."/commentluv/$cl_badge\"/>";
|
249 |
}
|
250 |
+
|
251 |
+
// check if user has set append ID differently
|
252 |
+
$append_id=get_option('cl_badge_pos');
|
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\">".
|
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')){
|
354 |
// normal user script (so admin doesn't get the badge below form)
|
355 |
echo $script;
|
356 |
}
|
357 |
+
echo "//--><!]]></script>";
|
358 |
+
|
359 |
+
echo '<!-- end commentluv http://www.fiddyp.co.uk -->';
|
360 |
}
|
361 |
|
|
|
362 |
|
|
|
363 |
|
364 |
//wp_enqueue_script('jquery');
|
365 |
$cl_script_added=1;
|
384 |
update_option('cl_click_track','on');
|
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">
|
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 |
<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')?>
|
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-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Andy Bailey <andy@teamplaylotto.com>\n"
|
8 |
"Language-Team: <andy@teamplaylotto.com>\n"
|
@@ -15,139 +15,143 @@ 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:
|
19 |
msgid "Do Not Show"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
23 |
msgid "Click to choose a different post to show"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
27 |
msgid "CommentLuv Wordpress Plugin"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
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:
|
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:
|
39 |
msgid "or"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
43 |
msgid "support forum"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
47 |
msgid "and let me know"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
51 |
msgid "Options"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
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:
|
59 |
msgid "Choose to have CommentLuv on by default?"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
63 |
msgid "Styling"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
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:
|
71 |
msgid "Enter css styling to apply to comment"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
75 |
msgid "inserted as"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
79 |
msgid "Comment Form Identification"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
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:
|
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:
|
91 |
msgid "Visit CommentLuv.com if you need instructions"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
95 |
msgid "Comment Form ID"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
99 |
msgid "Authors Name field ID"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
103 |
msgid "Authors URL field ID"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
107 |
msgid "Comment Text Area ID"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
111 |
msgid "Display Badge"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
115 |
msgid "Choose badge to display"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
119 |
msgid "Show nothing"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
123 |
msgid "Show text"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
|
|
|
|
|
|
|
|
127 |
msgid "CommentLuv Member ID"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
131 |
msgid "If you register your site for free at"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
135 |
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"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
139 |
msgid "Your CommentLuv.com member ID"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
143 |
msgid "Enable click tracking?"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
147 |
msgid "Reset to Default Settings"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: C:\xampp\htdocs\wordpress\wp-content\plugins\commentluv/commentluv.php:
|
151 |
msgid "Update Options"
|
152 |
msgstr ""
|
153 |
|
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 |
"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 |
|
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.
|
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.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 |
|