CommentLuv - Version 2.90.9.6

Version Description

  • added : code to prevent wp_head and wp_footer actions on a commentluv request from other sites
  • fixed : minor translation string bug in __construct
Download this release

Release Info

Developer commentluv
Plugin Icon 128x128 CommentLuv
Version 2.90.9.6
Comparing to
See all releases

Code changes from version 2.90.9.3 to 2.90.9.6

Files changed (4) hide show
  1. commentluv.php +26 -21
  2. lang/commentluv-he_IL.mo +0 -0
  3. lang/commentluv-he_IL.po +583 -0
  4. readme.txt +18 -3
commentluv.php CHANGED
@@ -2,7 +2,7 @@
2
  Plugin Name: CommentLuv
3
  Plugin URI: http://comluv.com/
4
  Description: Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
5
- Version: 2.90.9.3
6
  Author: Andy Bailey
7
  Author URI: http://www.commentluv.com
8
  Copyright (C) <2011> <Andy Bailey>
@@ -28,7 +28,7 @@
28
  var $plugin_url;
29
  var $plugin_dir;
30
  var $db_option = 'commentluv_options';
31
- var $version = "2.90.9.3";
32
  var $slug = 'commentluv-options';
33
  var $localize;
34
  var $is_commentluv_request = false;
@@ -45,10 +45,11 @@
45
  if (in_array ( $pagenow, $local_pages ) || (isset($_GET['page']) && in_array ( $_GET ['page'], $local_pages ))) {
46
  $this->handle_load_domain ();
47
  }
48
- $exit_msg = __ ( 'CommentLuv requires Wordpress 3.0 or newer.', $this->plugin_domain ) . '<a href="http://codex.wordpress.org/Upgrading_Wordpress">' . __ ( 'Please Update!', $this->plugin_domain ) . '</a>';
49
  // can you dig it?
50
  if (version_compare ( $wp_version, "3.0", "<" )) {
51
- echo ( $exit_msg ); // no diggedy
 
52
  }
53
  // activation/deactivation
54
  register_activation_hook(__FILE__, array(&$this,'activation'));
@@ -169,15 +170,17 @@
169
  $data = "var cl_settings = {";
170
  $arr = array();
171
  $vars = $this->localize;
172
- foreach ($vars as $key => $value) {
173
- $arr[count($arr)] = $key . " : '" . esc_js($value) . "'";
174
- }
175
- $data .= implode(",",$arr); $data .= "};";
176
- echo "<script type='text/javascript'>\n";
177
- echo "/* <![CDATA[ */\n";
178
- echo $data;
179
- echo "\n/* ]]> */\n";
180
- echo "</script>\n";
 
 
181
  }
182
  /**
183
  * called by add_filter('comment_row_actions
@@ -410,6 +413,10 @@
410
  // is this commentluv calling?
411
  if (preg_match("/Commentluv/i", $_SERVER['HTTP_USER_AGENT'])){
412
  $this->is_commentluv_request = true;
 
 
 
 
413
  ob_start();
414
  }
415
  }
@@ -627,7 +634,7 @@
627
  $bio= get_comment_author_url($cid);
628
  $name = get_comment_author($cid);
629
  $gravatar = '<img src="http://www.gravatar.com/avatar/' . md5 ( strtolower($email) ) . '.jpg" alt="' . $name . '" align="left" />';
630
- if(get_option('users_can_register')){
631
  $msg = __('has not registered on this site',$this->plugin_domain);
632
  $bio = $options['unreg_user_text_panel'];
633
  }
@@ -694,12 +701,10 @@
694
  $inserted = str_replace ( $search, $replace, $prepend_text );
695
  // check if author has a url. do not add the link if user has set to hide links for comments with no url
696
  $authurl = $comment->comment_author_url;
697
- $showlink = true;
698
- if(!$isadminpage){
699
- if($authurl == '' && isset($options['hide_link_no_url']) && $options['hide_link_no_url'] == 'on'){
700
- $showlink = false;
701
- }
702
- }
703
  if($showlink){
704
  // construct string to be added to comment
705
  $commentcontent .= "\n<span class=\"cluv\">$inserted";
@@ -1603,7 +1608,7 @@
1603
  <tr><td><img src="<?php echo $this->plugin_url;?>images/dk.png"/> <?php _e('Danish',$this->plugin_domain);?></td><td><a target="_blank" href="http://w3blog.dk/">Jimmy Sigenstroem</a></td></tr>
1604
  <tr><td><img src="<?php echo $this->plugin_url;?>images/ru.png"/> <?php _e('Russian',$this->plugin_domain);?></td><td><a target="_blank" href="http://lavo4nik.ru/">Max</a></td></tr>
1605
  <tr><td><img src="<?php echo $this->plugin_url;?>images/bd.png"/> <?php _e('Bengali',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.explorefeed.com/">Amrik Virdi</a></td></tr>
1606
- <tr><td><img src="<?php echo $this->plugin_url;?>images/il.png"/> <?php _e('Hebrew',$this->plugin_domain);?></td><td><!--<a target="_blank" href="http://www.maorb.info/">Maor Barazany</a>--></td></tr>
1607
 
1608
 
1609
  <tr><td><img src="<?php echo $this->plugin_url;?>images/sa.png"/> <?php _e('Arabic',$this->plugin_domain);?></td><td><!--<a target="_blank" href="http://www.melzarei.be/">Muhammad Elzarei</a>--></td></tr>
2
  Plugin Name: CommentLuv
3
  Plugin URI: http://comluv.com/
4
  Description: Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
5
+ Version: 2.90.9.6
6
  Author: Andy Bailey
7
  Author URI: http://www.commentluv.com
8
  Copyright (C) <2011> <Andy Bailey>
28
  var $plugin_url;
29
  var $plugin_dir;
30
  var $db_option = 'commentluv_options';
31
+ var $version = "2.90.9.6";
32
  var $slug = 'commentluv-options';
33
  var $localize;
34
  var $is_commentluv_request = false;
45
  if (in_array ( $pagenow, $local_pages ) || (isset($_GET['page']) && in_array ( $_GET ['page'], $local_pages ))) {
46
  $this->handle_load_domain ();
47
  }
48
+ $exit_msg = __( 'CommentLuv requires Wordpress 3.0 or newer.', $this->plugin_domain ) . '<a href="http://codex.wordpress.org/Upgrading_Wordpress">' . __ ( 'Please Update!', $this->plugin_domain ) . '</a>';
49
  // can you dig it?
50
  if (version_compare ( $wp_version, "3.0", "<" )) {
51
+ deactivate_plugins(basename(__FILE__)); //deactivate me
52
+ wp_die ( $exit_msg ); // no diggedy
53
  }
54
  // activation/deactivation
55
  register_activation_hook(__FILE__, array(&$this,'activation'));
170
  $data = "var cl_settings = {";
171
  $arr = array();
172
  $vars = $this->localize;
173
+ if(is_array($vars)){
174
+ foreach ($vars as $key => $value) {
175
+ $arr[count($arr)] = $key . " : '" . esc_js($value) . "'";
176
+ }
177
+ $data .= implode(",",$arr); $data .= "};";
178
+ echo "<script type='text/javascript'>\n";
179
+ echo "/* <![CDATA[ */\n";
180
+ echo $data;
181
+ echo "\n/* ]]> */\n";
182
+ echo "</script>\n";
183
+ }
184
  }
185
  /**
186
  * called by add_filter('comment_row_actions
413
  // is this commentluv calling?
414
  if (preg_match("/Commentluv/i", $_SERVER['HTTP_USER_AGENT'])){
415
  $this->is_commentluv_request = true;
416
+ if($options['disable_detect'] != 'on'){
417
+ remove_all_actions('wp_head');
418
+ remove_all_actions('wp_footer');
419
+ }
420
  ob_start();
421
  }
422
  }
634
  $bio= get_comment_author_url($cid);
635
  $name = get_comment_author($cid);
636
  $gravatar = '<img src="http://www.gravatar.com/avatar/' . md5 ( strtolower($email) ) . '.jpg" alt="' . $name . '" align="left" />';
637
+ if(get_option('users_can_register') && $options['whogets'] == 'registered'){
638
  $msg = __('has not registered on this site',$this->plugin_domain);
639
  $bio = $options['unreg_user_text_panel'];
640
  }
701
  $inserted = str_replace ( $search, $replace, $prepend_text );
702
  // check if author has a url. do not add the link if user has set to hide links for comments with no url
703
  $authurl = $comment->comment_author_url;
704
+ $showlink = true;
705
+ if($authurl == '' && isset($options['hide_link_no_url']) && $options['hide_link_no_url'] == 'on'){
706
+ $showlink = false;
707
+ }
 
 
708
  if($showlink){
709
  // construct string to be added to comment
710
  $commentcontent .= "\n<span class=\"cluv\">$inserted";
1608
  <tr><td><img src="<?php echo $this->plugin_url;?>images/dk.png"/> <?php _e('Danish',$this->plugin_domain);?></td><td><a target="_blank" href="http://w3blog.dk/">Jimmy Sigenstroem</a></td></tr>
1609
  <tr><td><img src="<?php echo $this->plugin_url;?>images/ru.png"/> <?php _e('Russian',$this->plugin_domain);?></td><td><a target="_blank" href="http://lavo4nik.ru/">Max</a></td></tr>
1610
  <tr><td><img src="<?php echo $this->plugin_url;?>images/bd.png"/> <?php _e('Bengali',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.explorefeed.com/">Amrik Virdi</a></td></tr>
1611
+ <tr><td><img src="<?php echo $this->plugin_url;?>images/il.png"/> <?php _e('Hebrew',$this->plugin_domain);?></td><td><a target="_blank" href="http://makemoneyim.com/">Tobi</a></td></tr>
1612
 
1613
 
1614
  <tr><td><img src="<?php echo $this->plugin_url;?>images/sa.png"/> <?php _e('Arabic',$this->plugin_domain);?></td><td><!--<a target="_blank" href="http://www.melzarei.be/">Muhammad Elzarei</a>--></td></tr>
lang/commentluv-he_IL.mo ADDED
Binary file
lang/commentluv-he_IL.po ADDED
@@ -0,0 +1,583 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: CommentLuv 2.8.9.8\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-06-12 18:43-0000\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: TOBI <noamtobi@gmail.com>\n"
8
+ "Language-Team: Amrik Virdi <amrikvirdi@explorefeed.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-Language: Bengali\n"
15
+ "X-Poedit-Country: BANGLADESH\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../commentluv.php:48
19
+ msgid "CommentLuv requires Wordpress 3.0 or newer."
20
+ msgstr "CommentLuv דורש וורדפרס 3.0 ומעלה"
21
+
22
+ #: ../commentluv.php:48
23
+ msgid "Please Update!"
24
+ msgstr "עדכן בבקשה!"
25
+
26
+ #: ../commentluv.php:217
27
+ msgid "Please enter a URL and then click the CommentLuv checkbox if you want to add your last blog post"
28
+ msgstr "אם ברצונך להוסיף את הכתבה האחרונה בבלוג שלך,סמן את התיבה"
29
+
30
+ #: ../commentluv.php:218
31
+ msgid "Please use http:// in front of your url"
32
+ msgstr " בתחילת כתובת האתר http:// השתמש ב "
33
+
34
+ #: ../commentluv.php:219
35
+ msgid "You need to visit your profile in the dashboard and update your details with your site URL"
36
+ msgstr "גש לפרופיל בלוח הבקרה ועדכן את פרטיך ואת כתובתך"
37
+
38
+ #: ../commentluv.php:220
39
+ msgid "No info was available or an error occured"
40
+ msgstr "לא נמצאו נתונים או שארעה תקלה במערכת"
41
+
42
+ #: ../commentluv.php:243
43
+ msgid "Please wait"
44
+ msgstr "אנא המתן"
45
+
46
+ #: ../commentluv.php:243
47
+ msgid "Please check your inbox, an email will be sent to"
48
+ msgstr "אנא בדוק את תיבת הדוא\"ל שלך, מייל ישלח לך בקרוב"
49
+
50
+ #: ../commentluv.php:243
51
+ msgid "in the next few minutes with a confirmation link"
52
+ msgstr "בדקות הקרובות עם קישור לאישור"
53
+
54
+ #: ../commentluv.php:243
55
+ msgid "An error happened with the request. Try signing up at the site"
56
+ msgstr "קרתה תקלה אם בקשתך. נסה להרשם באתר"
57
+
58
+ #: ../commentluv.php:272
59
+ msgid "Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
60
+ msgstr " <strong>wp_commentmeta</strong> התקנת וורדפרס באתרך חסרה טבלת "
61
+
62
+ #: ../commentluv.php:272
63
+ msgid " CommentLuv cannot work without this table please see this wordpress forum post to learn how to add one ->"
64
+ msgstr " אינו יכול לעבוד ללא טבלה זו, אנה פנה לפורום וורדפרס לעוד מידע CommentLuv"
65
+
66
+ #: ../commentluv.php:272
67
+ msgid "Missing wp_commentmeta table"
68
+ msgstr "Wp_commentmeta חסר"
69
+
70
+ #: ../commentluv.php:365
71
+ msgid "Twice Monthly"
72
+ msgstr "פעמיים בשבוע"
73
+
74
+ #: ../commentluv.php:392
75
+ msgid "CommentLuv is enabled"
76
+ msgstr "מופעל CommentLuv "
77
+
78
+ #: ../commentluv.php:433
79
+ msgid "Show more posts"
80
+ msgstr "הצג עוד פוסטים"
81
+
82
+ #: ../commentluv.php:523
83
+ msgid "I have only commented on this post"
84
+ msgstr "הגבתי רק על כתבה זו"
85
+
86
+ #: ../commentluv.php:526
87
+ msgid "If I had made more comments on this site, you would see more of my other posts here"
88
+ msgstr "אם הגבתי יותר באתר, תראה את יתר תגובותי כאן"
89
+
90
+ #: ../commentluv.php:551
91
+ msgid "User has not saved a description in their profile page"
92
+ msgstr "המשתמש לא שמר תיאור בעמוד הפרופיל"
93
+
94
+ #: ../commentluv.php:563
95
+ msgid "is the administrator of this site"
96
+ msgstr "הוא מנהל האתר"
97
+
98
+ #: ../commentluv.php:565
99
+ msgid "is a registered member of my site"
100
+ msgstr "הוא משתמש רשום באתר"
101
+
102
+ #: ../commentluv.php:568
103
+ #: ../commentluv.php:587
104
+ msgid "Clicks on this link on this comment"
105
+ msgstr "לחיצות על הקישור בתגובה"
106
+
107
+ #: ../commentluv.php:568
108
+ #: ../commentluv.php:588
109
+ msgid "approved comments on this site"
110
+ msgstr "תגובות מאושרות באתר"
111
+
112
+ #: ../commentluv.php:568
113
+ #: ../commentluv.php:589
114
+ msgid "Some other posts I have commented on"
115
+ msgstr "פוסטים נוספים עליהם הגבתי"
116
+
117
+ #: ../commentluv.php:568
118
+ msgid "Some of my other posts"
119
+ msgstr "פוסטים נוספים שלי"
120
+
121
+ #: ../commentluv.php:581
122
+ msgid "has not registered on this site"
123
+ msgstr "לא נרשם באתר"
124
+
125
+ #: ../commentluv.php:703
126
+ msgid "Could not get posts for home blog"
127
+ msgstr "לא יכול להשיג פוסטים עבור בלוג הבית"
128
+
129
+ #: ../commentluv.php:759
130
+ msgid "If you are registered, you need to log in to get 10 posts to choose from"
131
+ msgstr "אם אתה רשום, עליך להכנס לאתר ע\"מ לבחור 10 פוסטים "
132
+
133
+ #: ../commentluv.php:783
134
+ #: ../commentluv.php:1235
135
+ msgid "Register"
136
+ msgstr "הרשם"
137
+
138
+ #: ../commentluv.php:788
139
+ msgid "recently posted"
140
+ msgstr "פורסם לאחרונה"
141
+
142
+ #: ../commentluv.php:789
143
+ msgid "If you register as a user on my site, you can get your 10 most recent blog posts to choose from in this box."
144
+ msgstr "אם אתה רשום לאתר , תוכל לבחור פוסט מתוך 10 הפוסטים האחרונים שלך בתיבה זו "
145
+
146
+ #: ../commentluv.php:790
147
+ msgid "If this user had registered to my site then they could get 10 last posts to choose from when they comment and you would be able to see a list of their recent posts in this panel"
148
+ msgstr "אם משתמש זה נרשם לאתר שלי, הוא יוכל לבחור פוסט מתוך 10 הפוסטים האחרונים שלו לכשיגיב ותוכל לרשות רשימה של הפוסטים האחרונים שלו בפאנל זה"
149
+
150
+ #: ../commentluv.php:971
151
+ msgid "Settings"
152
+ msgstr "הגדרות"
153
+
154
+ #: ../commentluv.php:1010
155
+ msgid "No Posts Were Found!"
156
+ msgstr "לא נמצאו פוסטים!"
157
+
158
+ #: ../commentluv.php:1050
159
+ msgid "There is a new version of Commentluv available, please upgrade by visiting this site"
160
+ msgstr "קיימת גרסה חדשה של התוסף, אנא בקר באתר ושדרג"
161
+
162
+ #: ../commentluv.php:1053
163
+ msgid "Dismiss notice"
164
+ msgstr "בטל הודעה"
165
+
166
+ #: ../commentluv.php:1080
167
+ msgid "CommentLuv Settings v"
168
+ msgstr "CommentLuv הגדרות"
169
+
170
+ #: ../commentluv.php:1090
171
+ msgid "Important!"
172
+ msgstr "חשוב!"
173
+
174
+ #: ../commentluv.php:1090
175
+ msgid "Subscription Information"
176
+ msgstr "פרטי הרשמה"
177
+
178
+ #: ../commentluv.php:1095
179
+ msgid "CommentLuv 3.0 Premium is coming soon!"
180
+ msgstr "בדרך CommentLuv 3.0 Premiun "
181
+
182
+ #: ../commentluv.php:1096
183
+ msgid "I promise not to sell your details or send you spam. You will ONLY receive emails about plugin updates."
184
+ msgstr "אני מבטיח לא לסחור בפרטיך או לשלוח ספאם. תקבל מייל הנוגע לעדכוני התוסף בלבד"
185
+
186
+ #: ../commentluv.php:1099
187
+ msgid "There is a premium version of CommentLuv coming that will have much more control of how the plugin works as well as exclusive features like keyword name, inline registration and much much more!. Signup to find out as soon as it is ready"
188
+ msgstr "בקרוב תצא גרסת פרמיום לתוסף שתכיל אפשרויות שליטה נרחבות יותר, כמו גם אפשרויות יחודיות כמו שם עם מילת מפתח, אפשרויות רישום ועוד. הרשם ע\"מ לקבל עדכון ברגע שהגרסה מוכנה"
189
+
190
+ #: ../commentluv.php:1102
191
+ msgid "You have already subscribed, if you have not received the verification within 12 hours, please click the button to resend or try the form at"
192
+ msgstr "אתה כבר רשום, אם לא קבלת אישור תוך 12 שעות לחץ על הכפתור על מנת לאתחל או נסה את הטופס"
193
+
194
+ #: ../commentluv.php:1102
195
+ msgid "Resend Verification"
196
+ msgstr "שלח אישור שנית"
197
+
198
+ #: ../commentluv.php:1104
199
+ msgid "Click to register now!"
200
+ msgstr "לחץ להרשמה כעת!"
201
+
202
+ #: ../commentluv.php:1119
203
+ msgid "Primary Setting"
204
+ msgstr "הגדרות ראשיות"
205
+
206
+ #: ../commentluv.php:1119
207
+ #: ../commentluv.php:1153
208
+ #: ../commentluv.php:1212
209
+ #: ../commentluv.php:1268
210
+ #: ../commentluv.php:1299
211
+ msgid "Help Video"
212
+ msgstr "וידאו עזרה"
213
+
214
+ #: ../commentluv.php:1123
215
+ msgid "Enable CommentLuv?"
216
+ msgstr "הפעל את התוסף?"
217
+
218
+ #: ../commentluv.php:1124
219
+ msgid "Yes"
220
+ msgstr "כן"
221
+
222
+ #: ../commentluv.php:1125
223
+ msgid "No"
224
+ msgstr "לא"
225
+
226
+ #: ../commentluv.php:1130
227
+ msgid "On Posts"
228
+ msgstr "בפוסטים"
229
+
230
+ #: ../commentluv.php:1131
231
+ msgid "On Pages"
232
+ msgstr "בעמודים"
233
+
234
+ #: ../commentluv.php:1132
235
+ msgid "On Both"
236
+ msgstr "בשניהם"
237
+
238
+ #: ../commentluv.php:1137
239
+ msgid "On by default?"
240
+ msgstr "פעיל כברירת מחדל"
241
+
242
+ #: ../commentluv.php:1141
243
+ msgid "On for admin?"
244
+ msgstr "פעיל עבור מנהל האתר"
245
+
246
+ #: ../commentluv.php:1153
247
+ msgid "Appearance"
248
+ msgstr "תצוגה"
249
+
250
+ #: ../commentluv.php:1157
251
+ msgid "Badge"
252
+ msgstr "תג"
253
+
254
+ #: ../commentluv.php:1158
255
+ msgid "Custom Image URL"
256
+ msgstr "כתובת תמונה חיצונית"
257
+
258
+ #: ../commentluv.php:1159
259
+ msgid "Use Text"
260
+ msgstr "השתמש בטקסט"
261
+
262
+ #: ../commentluv.php:1167
263
+ msgid "Default"
264
+ msgstr "ברירת מחדל"
265
+
266
+ #: ../commentluv.php:1168
267
+ msgid "White"
268
+ msgstr "לבן"
269
+
270
+ #: ../commentluv.php:1169
271
+ msgid "Black"
272
+ msgstr "שחור"
273
+
274
+ #: ../commentluv.php:1170
275
+ msgid "None"
276
+ msgstr "ללא"
277
+
278
+ #: ../commentluv.php:1187
279
+ msgid "Link to Commentluv?"
280
+ msgstr "קישור לתוסף?"
281
+
282
+ #: ../commentluv.php:1194
283
+ msgid "Enable info panel?"
284
+ msgstr "הפעל תפריט פרטים?"
285
+
286
+ #: ../commentluv.php:1195
287
+ msgid "Info panel background color"
288
+ msgstr "צבע רקע של תפריט פרטים"
289
+
290
+ #: ../commentluv.php:1196
291
+ msgid "Info panel text color"
292
+ msgstr "צבע טקסט של תפריט פרטים"
293
+
294
+ #: ../commentluv.php:1202
295
+ msgid "Example text and background color"
296
+ msgstr "דוגמה של צבע טקסט ורקע"
297
+
298
+ #: ../commentluv.php:1212
299
+ msgid "Messages"
300
+ msgstr "מסר"
301
+
302
+ #: ../commentluv.php:1219
303
+ msgid "Text to be displayed in the comment"
304
+ msgstr "טקסט שיוצג בתגובה"
305
+
306
+ #: ../commentluv.php:1222
307
+ msgid "[name] = The users name"
308
+ msgstr "[שם] = שם משתמש "
309
+
310
+ #: ../commentluv.php:1222
311
+ msgid "[lastpost] = The last blog post link"
312
+ msgstr "קישור לפוסט האחרון בבלוג=[פוסט אחרון]"
313
+
314
+ #: ../commentluv.php:1229
315
+ msgid "Message for unregistered user in the drop down box"
316
+ msgstr "הודעה עבור משתמשים לא רשומים"
317
+
318
+ #: ../commentluv.php:1230
319
+ #: ../commentluv.php:1254
320
+ msgid "Message will not be shown if you do not have registrations enabled"
321
+ msgstr "ההודעה לא תוצג אם לא תאפשר הרשמה באתר"
322
+
323
+ #: ../commentluv.php:1234
324
+ msgid "Your register link code"
325
+ msgstr "קישור לקוד הרשמה"
326
+
327
+ #: ../commentluv.php:1244
328
+ msgid "You have NOT set your blog to allow registrations, you can do that in Settings/General"
329
+ msgstr "הבלוג לא מאפשר רישום משתמשים, תוכל לשנות זאת בהגדרות--> כללי"
330
+
331
+ #: ../commentluv.php:1245
332
+ msgid "here"
333
+ msgstr "כאן"
334
+
335
+ #: ../commentluv.php:1253
336
+ msgid "Message for unregistered user in the info panel"
337
+ msgstr "הודעה למשתמש לא רשום בתיבת המידע"
338
+
339
+ #: ../commentluv.php:1268
340
+ msgid "Operational Settings"
341
+ msgstr "הגדרות הפעלה"
342
+
343
+ #: ../commentluv.php:1275
344
+ msgid "Who to give 10 last posts to choose from when they comment?"
345
+ msgstr "למי לאפשר בחירה להציג את 10 הפוסטים האחרונים?"
346
+
347
+ #: ../commentluv.php:1276
348
+ msgid "Only Registered Members"
349
+ msgstr "רק משתמשים רשומים"
350
+
351
+ #: ../commentluv.php:1277
352
+ msgid "Everybody"
353
+ msgstr "כולם"
354
+
355
+ #: ../commentluv.php:1278
356
+ msgid "Nobody"
357
+ msgstr "אף אחד"
358
+
359
+ #: ../commentluv.php:1285
360
+ msgid "Whose links should be dofollow?"
361
+ msgstr " ?dofollow מי מהמשתמשים יציג לינק "
362
+
363
+ #: ../commentluv.php:1286
364
+ msgid "Only Registered Members Links"
365
+ msgstr "רק קישורים של משתמשים רשומים"
366
+
367
+ #: ../commentluv.php:1287
368
+ msgid "Everybody gets dofollow links"
369
+ msgstr " dofollow כולם מקבלים קישור"
370
+
371
+ #: ../commentluv.php:1288
372
+ msgid "Nobody gets dofollow links"
373
+ msgstr "dofollow אף אחד לא מקבל קישור"
374
+
375
+ #: ../commentluv.php:1299
376
+ msgid "Technical Settings"
377
+ msgstr "הגדרות טכניות"
378
+
379
+ #: ../commentluv.php:1299
380
+ msgid "Click to open technical settings"
381
+ msgstr "לחץ עבור הגדרות טכניות"
382
+
383
+ #: ../commentluv.php:1306
384
+ msgid "Please check the help video for this section before changing settings"
385
+ msgstr "אנא העזר בסרטון העזרה לפני שתשנה הגדרות"
386
+
387
+ #: ../commentluv.php:1307
388
+ msgid "In most cases, you will NOT need to change the settings in this box unless you have a custom comment form, template or you are using minifying or caching plugins"
389
+ msgstr "ברוב המקרים לא תצטרך לשנות הגדרות אלמלא יש לך טופס תגובות בתאמה אישית אן אתה משתמש בתוסף קאטץ' או מיניפיי."
390
+
391
+ #: ../commentluv.php:1312
392
+ msgid "Compatibility"
393
+ msgstr "התאמה"
394
+
395
+ #: ../commentluv.php:1316
396
+ msgid "Use manual insert of badge code?"
397
+ msgstr "להכניס קוד תג ידנית?"
398
+
399
+ #: ../commentluv.php:1320
400
+ msgid "Enable minifying compatibility?"
401
+ msgstr "לאפשר מיניפיי?"
402
+
403
+ #: ../commentluv.php:1321
404
+ msgid "For caching plugins (places localized code in footer)"
405
+ msgstr "עבור תוספי קאטץ' ( הקוד ימצא בתחתית אתר)"
406
+
407
+ #: ../commentluv.php:1326
408
+ msgid "API URL"
409
+ msgstr "API URL"
410
+
411
+ #: ../commentluv.php:1330
412
+ msgid "URL to use for API"
413
+ msgstr " API לשמוש URL "
414
+
415
+ #: ../commentluv.php:1334
416
+ msgid "Comment Form Field Values"
417
+ msgstr "ערכים עבור טופס תגובות"
418
+
419
+ #: ../commentluv.php:1337
420
+ msgid "Authors Name field name"
421
+ msgstr "שם שדה של שם הכותב"
422
+
423
+ #: ../commentluv.php:1342
424
+ msgid "Email field name"
425
+ msgstr "שם תיבת האימייל"
426
+
427
+ #: ../commentluv.php:1347
428
+ msgid "Authors URL field name"
429
+ msgstr "שם אזור כתובת הכותב"
430
+
431
+ #: ../commentluv.php:1352
432
+ msgid "Comment Text Area name"
433
+ msgstr "שם אזור התגובות"
434
+
435
+ #: ../commentluv.php:1357
436
+ msgid "Diagnostics Info"
437
+ msgstr "פרטי האבחון"
438
+
439
+ #: ../commentluv.php:1375
440
+ msgid "You can copy this information and send it to me if I request it"
441
+ msgstr "אתה יכול להעתיק את המידע ולשלוח אותו אלי אם אבקש ממך"
442
+
443
+ #: ../commentluv.php:1382
444
+ msgid "Save Settings"
445
+ msgstr "שמור הגדרות"
446
+
447
+ #: ../commentluv.php:1384
448
+ msgid "Reset Settings"
449
+ msgstr "הגדרות אתחול"
450
+
451
+ #: ../commentluv.php:1387
452
+ msgid "Are you sure you want to reset your settings? Press OK to continue"
453
+ msgstr "אתה בטוח שברצונך אתחל את ההגדרות? לחץ כן על מנת להמשיך"
454
+
455
+ #: ../commentluv.php:1390
456
+ msgid "Reset"
457
+ msgstr "אתחל"
458
+
459
+ #: ../commentluv.php:1398
460
+ msgid "Plugin Info"
461
+ msgstr "פרטי התוסף"
462
+
463
+ #: ../commentluv.php:1401
464
+ msgid "Start Here"
465
+ msgstr "התחל כאן"
466
+
467
+ #: ../commentluv.php:1402
468
+ msgid "Author"
469
+ msgstr "מחבר"
470
+
471
+ #: ../commentluv.php:1403
472
+ msgid "Home Page"
473
+ msgstr "דף הבית"
474
+
475
+ #: ../commentluv.php:1403
476
+ msgid "Visit www.commentluv.com!"
477
+ msgstr "www.commentluv.com בקר ב "
478
+
479
+ #: ../commentluv.php:1404
480
+ msgid "Social"
481
+ msgstr "Social"
482
+
483
+ #: ../commentluv.php:1405
484
+ msgid "Help"
485
+ msgstr "Help"
486
+
487
+ #: ../commentluv.php:1405
488
+ msgid "Help Desk"
489
+ msgstr "Help Desk"
490
+
491
+ #: ../commentluv.php:1406
492
+ msgid "Do you like this plugin?"
493
+ msgstr "Do you like this plugin?"
494
+
495
+ #: ../commentluv.php:1408
496
+ msgid "News"
497
+ msgstr "News"
498
+
499
+ #: ../commentluv.php:1414
500
+ msgid "Thanks to the following for translations"
501
+ msgstr "Thanks to the following for translations"
502
+
503
+ #: ../commentluv.php:1415
504
+ msgid "Italian"
505
+ msgstr "Italian"
506
+
507
+ #: ../commentluv.php:1416
508
+ msgid "Dutch"
509
+ msgstr "Dutch"
510
+
511
+ #: ../commentluv.php:1417
512
+ msgid "Polish"
513
+ msgstr "Polish"
514
+
515
+ #: ../commentluv.php:1418
516
+ msgid "Georgian"
517
+ msgstr "Georgian"
518
+
519
+ #: ../commentluv.php:1419
520
+ msgid "Lithuanian"
521
+ msgstr "Lithuanian"
522
+
523
+ #: ../commentluv.php:1420
524
+ msgid "Portuguese"
525
+ msgstr "Portuguese"
526
+
527
+ #: ../commentluv.php:1421
528
+ msgid "Malaysian"
529
+ msgstr "Malaysian"
530
+
531
+ #: ../commentluv.php:1422
532
+ msgid "Hindi"
533
+ msgstr "Hindi"
534
+
535
+ #: ../commentluv.php:1423
536
+ msgid "Russian"
537
+ msgstr "Russian"
538
+
539
+ #: ../commentluv.php:1424
540
+ msgid "Chinese"
541
+ msgstr "Chinese"
542
+
543
+ #: ../commentluv.php:1425
544
+ msgid "Hebrew"
545
+ msgstr "עברית"
546
+
547
+ #: ../commentluv.php:1426
548
+ msgid "French"
549
+ msgstr "French"
550
+
551
+ #: ../commentluv.php:1428
552
+ msgid "Romanian"
553
+ msgstr "Romanian"
554
+
555
+ #: ../commentluv.php:1429
556
+ msgid "German"
557
+ msgstr "German"
558
+
559
+ # Bengali
560
+ #: ../commentluv.php:1430
561
+ msgid "Arabic"
562
+ msgstr "Arabic"
563
+
564
+ #: ../commentluv.php:1432
565
+ msgid "Want your link here?"
566
+ msgstr "רוצה קישור כאן?"
567
+
568
+ #: ../commentluv.php:1432
569
+ msgid "How To Submit A Translation"
570
+ msgstr "איך לשלוח תרגום"
571
+
572
+ #: ../commentluv.php:1433
573
+ msgid "Special thanks go to the following"
574
+ msgstr "תודות ל:"
575
+
576
+ #: ../commentluv.php:1434
577
+ msgid "CSS Help"
578
+ msgstr "CSS עזרה"
579
+
580
+ #: ../commentluv.php:1435
581
+ msgid "Badge GFX"
582
+ msgstr "Badge GFX"
583
+
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:http://comluv.com/about/donate
4
  Tags: commentluv, comments, last blog post, linkluv, comment luv , commentlove, comment love
5
  Requires at least: 3.0
6
  Tested up to: 3.3
7
- Stable tag: 2.90.9.3
8
 
9
  Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
10
 
@@ -44,6 +44,7 @@ French [Jean-Luc Matthys](http://etreheureux.fr/ "French Translation")
44
  Danish [Jimmy Sigenstroem](http://w3blog.dk/ "Danish Translation")
45
  Russian [Max](http://lavo4nik.ru/ "Russian Translation")
46
  Bengali [Amrik Virdi](http://www.explorefeed.com/ "Bengali Translation")
 
47
 
48
  == Installation ==
49
 
@@ -72,6 +73,20 @@ Please see the videos in the settings page for explanations of how they work.
72
  4. edit post comments
73
 
74
  == ChangeLog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  = 2.90.9.3 =
76
  * fix : another empty src badge bug
77
  * fix : link not showing in admin page if a setting was enabled
@@ -281,9 +296,9 @@ Please see the videos in the settings page for explanations of how they work.
281
 
282
  == Upgrade Notice ==
283
 
284
- = 2.90.9.3 =
285
 
286
- Bug fix release. Please update
287
 
288
  == Configuration ==
289
 
4
  Tags: commentluv, comments, last blog post, linkluv, comment luv , commentlove, comment love
5
  Requires at least: 3.0
6
  Tested up to: 3.3
7
+ Stable tag: 2.90.9.6
8
 
9
  Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
10
 
44
  Danish [Jimmy Sigenstroem](http://w3blog.dk/ "Danish Translation")
45
  Russian [Max](http://lavo4nik.ru/ "Russian Translation")
46
  Bengali [Amrik Virdi](http://www.explorefeed.com/ "Bengali Translation")
47
+ Hebrew [Tobi](http://makemoneyim.com/ "Hebrew Translation")
48
 
49
  == Installation ==
50
 
73
  4. edit post comments
74
 
75
  == ChangeLog ==
76
+
77
+ = 2.90.9.6 =
78
+ * added : code to prevent wp_head and wp_footer actions on a commentluv request from other sites
79
+ * fixed : minor translation string bug in __construct
80
+
81
+ = 2.90.9.5 =
82
+ * fixed : upgrading to 3.3 meant it would show the link even if admin set to not show link if no author URL in comment
83
+ * fixed : footer error about invalid argument if minifying set to on
84
+ * fixed : do not show unregistered in info panel if not set to 'registered' for who to show 10 posts
85
+
86
+ = 2.90.9.4 =
87
+ * added : Hebrew translation
88
+ * fixed : do not echo WP 3.0 requirement, use wp_die instead
89
+
90
  = 2.90.9.3 =
91
  * fix : another empty src badge bug
92
  * fix : link not showing in admin page if a setting was enabled
296
 
297
  == Upgrade Notice ==
298
 
299
+ = 2.90.9.6 =
300
 
301
+ Improved detection of commentluv requests
302
 
303
  == Configuration ==
304