CommentLuv - Version 2.90.9

Version Description

  • added : Danish language
  • fixed : minor problems with some checkbox vars
  • fixed : issue where an empty link might get added to a comment
  • fixed : small bug in settings page that prevented checkbox from being checked for default on if default admin on was unchecked
  • fixed : use home_url() instead of deprecated get_bloginfo('home') in send_feed() function
Download this release

Release Info

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

Code changes from version 2.90.8.3 to 2.90.9

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.8.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.8.3";
32
  var $slug = 'commentluv-options';
33
  var $localize;
34
  var $is_commentluv_request = false;
@@ -254,7 +254,7 @@
254
  if($minifying != 'on'){
255
  wp_localize_script('commentluv_script','cl_settings',$this->localize);
256
  }
257
-
258
 
259
  }
260
  /**
@@ -692,35 +692,37 @@
692
  $commentcontent = $comment->comment_content;
693
  // luvlink added?
694
  if($data && is_array($data)){
695
- // luvlink was saved to meta, dofollow the link?
696
- $nofollow = ' rel="nofollow"';
697
- $isreg = get_user_by_email($comment->comment_author_email);
698
- if($options['dofollow'] == 'everybody'){
699
- $nofollow = '';
700
- } elseif ($options['dofollow'] == 'registered' && $isreg){
701
- $nofollow = '';
702
- }
703
- // construct link
704
- $pclass = $data['cl_prem'] == 'p' ? ' p' : '';
705
- $ajaxnonce = wp_create_nonce($comment->comment_ID);
706
- $class = ' class="'.$ajaxnonce.' '.$comment->comment_ID.$pclass.'"';
707
- $luvlink = '<a'.$class.$nofollow.' href="'.$data['cl_post_url'].'">'.$data['cl_post_title'].'</a>';
708
- $search = array ('[name]', '[lastpost]' );
709
- $replace = array ($comment->comment_author, $luvlink );
710
- $prepend_text = $options ['comment_text'];
711
- $inserted = str_replace ( $search, $replace, $prepend_text );
712
- // construct string to be added to comment
713
- $commentcontent .= "\n<span class=\"cluv\">$inserted";
714
- // prepare heart icon if infopanel is on
715
- $hearticon = '';
716
- if($data['cl_prem'] == 'p' || $isreg) {
717
- // use PLUS heart for members
718
- $hearticon = 'plus';
 
 
 
 
 
 
719
  }
720
- if ($options ['infopanel'] == 'on') {
721
- $commentcontent .= '<span class="heart_tip_box"><img class="heart_tip '.$data['cl_prem'].' '.$comment->comment_ID.'" alt="My Profile" style="border:0" width="16" height="14" src="' . $this->plugin_url . 'images/littleheart'.$hearticon.'.gif"/></span>';
722
- }
723
- $commentcontent.= '</span>';
724
  }
725
  // store new content in this comments comment_content cell
726
  $comment->comment_content = $commentcontent;
@@ -1599,7 +1601,7 @@
1599
  <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>
1600
  <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://www.fatcow.com/">Fatcow</a>--></td></tr>
1601
  <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>
1602
-
1603
 
1604
  <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>
1605
  <tr><td><strong><?php _e('Want your link here?',$this->plugin_domain);?></strong></td><td><a target="_blank" href="http://support.commentluv.com/ticket/knowledgebase.php?article=1"><?php _e('How To Submit A Translation',$this->plugin_domain);?></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
  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";
32
  var $slug = 'commentluv-options';
33
  var $localize;
34
  var $is_commentluv_request = false;
254
  if($minifying != 'on'){
255
  wp_localize_script('commentluv_script','cl_settings',$this->localize);
256
  }
257
+
258
 
259
  }
260
  /**
692
  $commentcontent = $comment->comment_content;
693
  // luvlink added?
694
  if($data && is_array($data)){
695
+ if($data['cl_post_url'] != '' && $data['cl_post_title'] != ''){
696
+ // luvlink was saved to meta, dofollow the link?
697
+ $nofollow = ' rel="nofollow"';
698
+ $isreg = get_user_by_email($comment->comment_author_email);
699
+ if($options['dofollow'] == 'everybody'){
700
+ $nofollow = '';
701
+ } elseif ($options['dofollow'] == 'registered' && $isreg){
702
+ $nofollow = '';
703
+ }
704
+ // construct link
705
+ $pclass = $data['cl_prem'] == 'p' ? ' p' : '';
706
+ $ajaxnonce = wp_create_nonce($comment->comment_ID);
707
+ $class = ' class="'.$ajaxnonce.' '.$comment->comment_ID.$pclass.'"';
708
+ $luvlink = '<a'.$class.$nofollow.' href="'.$data['cl_post_url'].'">'.$data['cl_post_title'].'</a>';
709
+ $search = array ('[name]', '[lastpost]' );
710
+ $replace = array ($comment->comment_author, $luvlink );
711
+ $prepend_text = $options ['comment_text'];
712
+ $inserted = str_replace ( $search, $replace, $prepend_text );
713
+ // construct string to be added to comment
714
+ $commentcontent .= "\n<span class=\"cluv\">$inserted";
715
+ // prepare heart icon if infopanel is on
716
+ $hearticon = '';
717
+ if($data['cl_prem'] == 'p' || $isreg) {
718
+ // use PLUS heart for members
719
+ $hearticon = 'plus';
720
+ }
721
+ if ($options ['infopanel'] == 'on') {
722
+ $commentcontent .= '<span class="heart_tip_box"><img class="heart_tip '.$data['cl_prem'].' '.$comment->comment_ID.'" alt="My Profile" style="border:0" width="16" height="14" src="' . $this->plugin_url . 'images/littleheart'.$hearticon.'.gif"/></span>';
723
+ }
724
+ $commentcontent.= '</span>';
725
  }
 
 
 
 
726
  }
727
  // store new content in this comments comment_content cell
728
  $comment->comment_content = $commentcontent;
1601
  <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>
1602
  <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://www.fatcow.com/">Fatcow</a>--></td></tr>
1603
  <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>
1604
+
1605
 
1606
  <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>
1607
  <tr><td><strong><?php _e('Want your link here?',$this->plugin_domain);?></strong></td><td><a target="_blank" href="http://support.commentluv.com/ticket/knowledgebase.php?article=1"><?php _e('How To Submit A Translation',$this->plugin_domain);?></a></td></tr>
images/dk.png ADDED
Binary file
js/commentluv.js CHANGED
@@ -1,4 +1,4 @@
1
- // commentluv 2.90.8.3
2
  jQuery(document).ready(function(){
3
  // get the form object and fields
4
  var formObj = jQuery('#cl_post_title').parents('form');
@@ -95,13 +95,13 @@ function cl_docheck(){
95
  // check that there is a value in the url field
96
  if(url.val().length > 1){
97
  // is value just http:// ?
98
- if(url.val() == 'http://'){
99
  url.addClass('cl_error');
100
  cl_message(nourlmessage);
101
  return;
102
  }
103
  // is the http:// missing?
104
- if(url.val().substring(0,7) != 'http://'){
105
  url.addClass('cl_error');
106
  cl_message(cl_settings['no_http_message']);
107
  return;
1
+ // commentluv 2.90.9
2
  jQuery(document).ready(function(){
3
  // get the form object and fields
4
  var formObj = jQuery('#cl_post_title').parents('form');
95
  // check that there is a value in the url field
96
  if(url.val().length > 1){
97
  // is value just http:// ?
98
+ if(url.val().toLowerCase() == 'http://'){
99
  url.addClass('cl_error');
100
  cl_message(nourlmessage);
101
  return;
102
  }
103
  // is the http:// missing?
104
+ if(url.val().toLowerCase().substring(0,7) != 'http://'){
105
  url.addClass('cl_error');
106
  cl_message(cl_settings['no_http_message']);
107
  return;
lang/commentluv-dk_DK.mo ADDED
Binary file
lang/commentluv-dk_DK.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: Jimmy Sigenstroem <webmaster@w3blog.dk>\n"
8
+ "Language-Team: \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: Danish\n"
15
+ "X-Poedit-Country: DENMARK\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-SearchPath-0: ..\n"
18
+
19
+ #: ../commentluv.php:48
20
+ msgid "CommentLuv requires Wordpress 3.0 or newer."
21
+ msgstr "CommentLuv kræver mindst Wordpress 3.0 eller nyere version for at virke."
22
+
23
+ #: ../commentluv.php:48
24
+ msgid "Please Update!"
25
+ msgstr "Vær venlig at opdateret!"
26
+
27
+ #: ../commentluv.php:217
28
+ msgid "Please enter a URL and then click the CommentLuv checkbox if you want to add your last blog post"
29
+ msgstr "Vær venlig at indtaste en URL og afkryds CommentLuv checkbox, hvis du vil tilføje din nyeste blog post"
30
+
31
+ #: ../commentluv.php:218
32
+ msgid "Please use http:// in front of your url"
33
+ msgstr "Vær venlig at bruge http:// som en del af din url"
34
+
35
+ #: ../commentluv.php:219
36
+ msgid "You need to visit your profile in the dashboard and update your details with your site URL"
37
+ msgstr "Du er nødtil at besøge din profil i adminsektionen og opdateret dine informationer med din hjemmesides url "
38
+
39
+ #: ../commentluv.php:220
40
+ msgid "No info was available or an error occured"
41
+ msgstr "Ingen informationer er tilgængelige eller der er sket en fejl"
42
+
43
+ #: ../commentluv.php:243
44
+ msgid "Please wait"
45
+ msgstr "Vent venligst"
46
+
47
+ #: ../commentluv.php:243
48
+ msgid "Please check your inbox, an email will be sent to"
49
+ msgstr "Kontrollere venligst din indboks, en mail vil blive sendt til"
50
+
51
+ #: ../commentluv.php:243
52
+ msgid "in the next few minutes with a confirmation link"
53
+ msgstr "Inden for de næste par minutter, med et bekræftelses link"
54
+
55
+ #: ../commentluv.php:243
56
+ msgid "An error happened with the request. Try signing up at the site"
57
+ msgstr "Der skete en fejl med forsørgelsen, prøv at register dig på hjemmesiden"
58
+
59
+ #: ../commentluv.php:272
60
+ msgid "Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
61
+ msgstr "Din Wordpress installering mangler <strong>wp_commentmeta</strong> tabellen"
62
+
63
+ #: ../commentluv.php:272
64
+ msgid " CommentLuv cannot work without this table please see this wordpress forum post to learn how to add one ->"
65
+ msgstr " CommentLuv kan ikke fungere uden denne tabel, brug Wordpress forummet for at lære hvordan du opretter en ->"
66
+
67
+ #: ../commentluv.php:272
68
+ msgid "Missing wp_commentmeta table"
69
+ msgstr "Du manlger en wp_commentmeta tabel"
70
+
71
+ #: ../commentluv.php:365
72
+ msgid "Twice Monthly"
73
+ msgstr "2 gange månedligt"
74
+
75
+ #: ../commentluv.php:392
76
+ msgid "CommentLuv is enabled"
77
+ msgstr "CommentLuv er aktiv"
78
+
79
+ #: ../commentluv.php:433
80
+ msgid "Show more posts"
81
+ msgstr "Vis flere indlæg"
82
+
83
+ #: ../commentluv.php:523
84
+ msgid "I have only commented on this post"
85
+ msgstr "Jeg har kun kommenteret på dette indlæg"
86
+
87
+ #: ../commentluv.php:526
88
+ msgid "If I had made more comments on this site, you would see more of my other posts here"
89
+ msgstr "Hvis jeg har skrevet flere kommentarer på denne hjemmeside, ville du kunne se flere af dem her"
90
+
91
+ #: ../commentluv.php:551
92
+ msgid "User has not saved a description in their profile page"
93
+ msgstr "Brugeren har ikke gemt en beskrivelse på sin profil side"
94
+
95
+ #: ../commentluv.php:563
96
+ msgid "is the administrator of this site"
97
+ msgstr "Er administratoren for denne hjemmeside"
98
+
99
+ #: ../commentluv.php:565
100
+ msgid "is a registered member of my site"
101
+ msgstr "Er et registret medlem af min hjemmeside"
102
+
103
+ #: ../commentluv.php:568
104
+ #: ../commentluv.php:587
105
+ msgid "Clicks on this link on this comment"
106
+ msgstr "Klik på dette link på denne kommentar"
107
+
108
+ #: ../commentluv.php:568
109
+ #: ../commentluv.php:588
110
+ msgid "approved comments on this site"
111
+ msgstr "Godkendte kommentarer på denne hjemmeside"
112
+
113
+ #: ../commentluv.php:568
114
+ #: ../commentluv.php:589
115
+ msgid "Some other posts I have commented on"
116
+ msgstr "Andre indlæg jeg har kommenteret på"
117
+
118
+ #: ../commentluv.php:568
119
+ msgid "Some of my other posts"
120
+ msgstr "Andre indlæg skrevet af mig"
121
+
122
+ #: ../commentluv.php:581
123
+ msgid "has not registered on this site"
124
+ msgstr "Har ikke registret sig på denne hjemmeside"
125
+
126
+ #: ../commentluv.php:703
127
+ msgid "Could not get posts for home blog"
128
+ msgstr "Kunne ikek hente indlæg for bloggen"
129
+
130
+ #: ../commentluv.php:759
131
+ msgid "If you are registered, you need to log in to get 10 posts to choose from"
132
+ msgstr "Hvis du er registret, så kan du logge ind og for 10 indlæg at vælge imellem"
133
+
134
+ #: ../commentluv.php:783
135
+ #: ../commentluv.php:1235
136
+ msgid "Register"
137
+ msgstr "Registrerer"
138
+
139
+ #: ../commentluv.php:788
140
+ msgid "recently posted"
141
+ msgstr "Sidste nye indlæg"
142
+
143
+ #: ../commentluv.php:789
144
+ 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."
145
+ msgstr "Hvis du er registrer dig som bruger på min hjemmeside, så kan få 10 blog indlæg at vælge imellem"
146
+
147
+ #: ../commentluv.php:790
148
+ 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"
149
+ msgstr "Hvis brugeren var registret på min hjemmeside, så kunne brugeren få 10 blog indlæg at vælge imellem, og du ville kunne se en liste med dennes nyeste indlæg i dette panel"
150
+
151
+ #: ../commentluv.php:971
152
+ msgid "Settings"
153
+ msgstr "Instillinger"
154
+
155
+ #: ../commentluv.php:1010
156
+ msgid "No Posts Were Found!"
157
+ msgstr "Ingen nye indlæg er fundet"
158
+
159
+ #: ../commentluv.php:1050
160
+ msgid "There is a new version of Commentluv available, please upgrade by visiting this site"
161
+ msgstr "Der findes en nyere version af Commentluv, opdateret venligst denne hjemmeside"
162
+
163
+ #: ../commentluv.php:1053
164
+ msgid "Dismiss notice"
165
+ msgstr "Afvis meddelelsen"
166
+
167
+ #: ../commentluv.php:1080
168
+ msgid "CommentLuv Settings v"
169
+ msgstr "CommentLuv indstillinger"
170
+
171
+ #: ../commentluv.php:1090
172
+ msgid "Important!"
173
+ msgstr "Vigtigt!"
174
+
175
+ #: ../commentluv.php:1090
176
+ msgid "Subscription Information"
177
+ msgstr "Abonnement Informationer"
178
+
179
+ #: ../commentluv.php:1095
180
+ msgid "CommentLuv 3.0 Premium is coming soon!"
181
+ msgstr "CommentLuv 3.0 Premium kommer snart!"
182
+
183
+ #: ../commentluv.php:1096
184
+ msgid "I promise not to sell your details or send you spam. You will ONLY receive emails about plugin updates."
185
+ msgstr "Jeg lover ikke at sælge dine informationer eller sende dig spam. Du vil KUN modtage emails om opdateringer af dette plugin"
186
+
187
+ #: ../commentluv.php:1099
188
+ 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"
189
+ msgstr "Der kommer snart en CommentLuv 3.0 Premium version, som vil have meget mere kontrol og hvordan dette plugin virker såvel som premium funktioner så som søgeord, inline registrering og meget meget mere. Abonnere for at få besked så snart det er færdigt"
190
+
191
+ #: ../commentluv.php:1102
192
+ 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"
193
+ msgstr "Du Abonnere allerede, hvis du ikke har modtaget en bekræftelse inden for 12 timer, så prøv venligst at klikke på knappen for gensend eller prøv formularen på"
194
+
195
+ #: ../commentluv.php:1102
196
+ msgid "Resend Verification"
197
+ msgstr "Gensend verifikation"
198
+
199
+ #: ../commentluv.php:1104
200
+ msgid "Click to register now!"
201
+ msgstr "Klik for at registrer dig nu"
202
+
203
+ #: ../commentluv.php:1119
204
+ msgid "Primary Setting"
205
+ msgstr "Primære indstillinger"
206
+
207
+ #: ../commentluv.php:1119
208
+ #: ../commentluv.php:1153
209
+ #: ../commentluv.php:1212
210
+ #: ../commentluv.php:1268
211
+ #: ../commentluv.php:1299
212
+ msgid "Help Video"
213
+ msgstr "Hjælpe video"
214
+
215
+ #: ../commentluv.php:1123
216
+ msgid "Enable CommentLuv?"
217
+ msgstr "Aktivere CommentLuv?"
218
+
219
+ #: ../commentluv.php:1124
220
+ msgid "Yes"
221
+ msgstr "Ja"
222
+
223
+ #: ../commentluv.php:1125
224
+ msgid "No"
225
+ msgstr "Nej"
226
+
227
+ #: ../commentluv.php:1130
228
+ msgid "On Posts"
229
+ msgstr "På indlæg"
230
+
231
+ #: ../commentluv.php:1131
232
+ msgid "On Pages"
233
+ msgstr "På sider"
234
+
235
+ #: ../commentluv.php:1132
236
+ msgid "On Both"
237
+ msgstr "På begge"
238
+
239
+ #: ../commentluv.php:1137
240
+ msgid "On by default?"
241
+ msgstr "Aktiveret pr. standard?"
242
+
243
+ #: ../commentluv.php:1141
244
+ msgid "On for admin?"
245
+ msgstr "Aktiveret for admin?"
246
+
247
+ #: ../commentluv.php:1153
248
+ msgid "Appearance"
249
+ msgstr "Udeende"
250
+
251
+ #: ../commentluv.php:1157
252
+ msgid "Badge"
253
+ msgstr "Badge"
254
+
255
+ #: ../commentluv.php:1158
256
+ msgid "Custom Image URL"
257
+ msgstr "Brugerdefineret Billede URL"
258
+
259
+ #: ../commentluv.php:1159
260
+ msgid "Use Text"
261
+ msgstr "Brug tekst"
262
+
263
+ #: ../commentluv.php:1167
264
+ msgid "Default"
265
+ msgstr "Standard"
266
+
267
+ #: ../commentluv.php:1168
268
+ msgid "White"
269
+ msgstr "Hvid"
270
+
271
+ #: ../commentluv.php:1169
272
+ msgid "Black"
273
+ msgstr "Sort"
274
+
275
+ #: ../commentluv.php:1170
276
+ msgid "None"
277
+ msgstr "Ingen"
278
+
279
+ #: ../commentluv.php:1187
280
+ msgid "Link to Commentluv?"
281
+ msgstr "Link til Commentluv?"
282
+
283
+ #: ../commentluv.php:1194
284
+ msgid "Enable info panel?"
285
+ msgstr "Aktivere info panel?"
286
+
287
+ #: ../commentluv.php:1195
288
+ msgid "Info panel background color"
289
+ msgstr "Baggrundsfarve på info panelet"
290
+
291
+ #: ../commentluv.php:1196
292
+ msgid "Info panel text color"
293
+ msgstr "Tekst farven på info panelet"
294
+
295
+ #: ../commentluv.php:1202
296
+ msgid "Example text and background color"
297
+ msgstr "Eksempel på tekst og baggrundsfarve"
298
+
299
+ #: ../commentluv.php:1212
300
+ msgid "Messages"
301
+ msgstr "Beskeder"
302
+
303
+ #: ../commentluv.php:1219
304
+ msgid "Text to be displayed in the comment"
305
+ msgstr "Teksten som vil blive vist in kommentaren"
306
+
307
+ #: ../commentluv.php:1222
308
+ msgid "[name] = The users name"
309
+ msgstr "[name] = Brugerens navn"
310
+
311
+ #: ../commentluv.php:1222
312
+ msgid "[lastpost] = The last blog post link"
313
+ msgstr "[lastpost] = Det sidste blog indlæg"
314
+
315
+ #: ../commentluv.php:1229
316
+ msgid "Message for unregistered user in the drop down box"
317
+ msgstr "Besked til ikke registreret brugere i rullelisten"
318
+
319
+ #: ../commentluv.php:1230
320
+ #: ../commentluv.php:1254
321
+ msgid "Message will not be shown if you do not have registrations enabled"
322
+ msgstr "Beskeden vil ikek blive vist hvis du ikke har aktiveret for registreringer"
323
+
324
+ #: ../commentluv.php:1234
325
+ msgid "Your register link code"
326
+ msgstr "Registrerer din link kode"
327
+
328
+ #: ../commentluv.php:1244
329
+ msgid "You have NOT set your blog to allow registrations, you can do that in Settings/General"
330
+ msgstr "Du har IKKE sat din blog til at tillade registeringer, du kan gøre det under Indstillinger/Standard"
331
+
332
+ #: ../commentluv.php:1245
333
+ msgid "here"
334
+ msgstr "Her"
335
+
336
+ #: ../commentluv.php:1253
337
+ msgid "Message for unregistered user in the info panel"
338
+ msgstr "Besked til ikke registeret bruger in info panelet"
339
+
340
+ #: ../commentluv.php:1268
341
+ msgid "Operational Settings"
342
+ msgstr "Driftsmæssige Indstillinger"
343
+
344
+ #: ../commentluv.php:1275
345
+ msgid "Who to give 10 last posts to choose from when they comment?"
346
+ msgstr "Hvem skal have 10 indlæg at vælge imellem når de kommentere"
347
+
348
+ #: ../commentluv.php:1276
349
+ msgid "Only Registered Members"
350
+ msgstr "Kun registeret brugere"
351
+
352
+ #: ../commentluv.php:1277
353
+ msgid "Everybody"
354
+ msgstr "Alle"
355
+
356
+ #: ../commentluv.php:1278
357
+ msgid "Nobody"
358
+ msgstr "Ingen"
359
+
360
+ #: ../commentluv.php:1285
361
+ msgid "Whose links should be dofollow?"
362
+ msgstr "Hvilke links skal være dofollow?"
363
+
364
+ #: ../commentluv.php:1286
365
+ msgid "Only Registered Members Links"
366
+ msgstr "Kun registeret brugeres links"
367
+
368
+ #: ../commentluv.php:1287
369
+ msgid "Everybody gets dofollow links"
370
+ msgstr "Alle får dofollow links"
371
+
372
+ #: ../commentluv.php:1288
373
+ msgid "Nobody gets dofollow links"
374
+ msgstr "Ingen får dofollow links"
375
+
376
+ #: ../commentluv.php:1299
377
+ msgid "Technical Settings"
378
+ msgstr "Tekniske indstillinger"
379
+
380
+ #: ../commentluv.php:1299
381
+ msgid "Click to open technical settings"
382
+ msgstr "Klik for at åbne tekniske indstillinger"
383
+
384
+ #: ../commentluv.php:1306
385
+ msgid "Please check the help video for this section before changing settings"
386
+ msgstr "Se venligst denne hjælpe video for denne sektion før der ændres i indstillingerne"
387
+
388
+ #: ../commentluv.php:1307
389
+ 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"
390
+ msgstr "I det flest tilfælde har du IKKE brug for at ændre indstillingerne i denne boks med mindre du har en brugerdefinerede kommentar formular, skabelon eller du bruger minimerings eller caching plugins"
391
+
392
+ #: ../commentluv.php:1312
393
+ msgid "Compatibility"
394
+ msgstr "Kompatibilitet"
395
+
396
+ #: ../commentluv.php:1316
397
+ msgid "Use manual insert of badge code?"
398
+ msgstr "Brug manuel indsættelse af badge kode?"
399
+
400
+ #: ../commentluv.php:1320
401
+ msgid "Enable minifying compatibility?"
402
+ msgstr "Aktiver minimerings kompatibilitet?"
403
+
404
+ #: ../commentluv.php:1321
405
+ msgid "For caching plugins (places localized code in footer)"
406
+ msgstr "For caching plugins (placeres lokaliseret koden i foden)"
407
+
408
+ #: ../commentluv.php:1326
409
+ msgid "API URL"
410
+ msgstr "API URL"
411
+
412
+ #: ../commentluv.php:1330
413
+ msgid "URL to use for API"
414
+ msgstr "URL til brug af API"
415
+
416
+ #: ../commentluv.php:1334
417
+ msgid "Comment Form Field Values"
418
+ msgstr "Kommentar formularens bokses værdi"
419
+
420
+ #: ../commentluv.php:1337
421
+ msgid "Authors Name field name"
422
+ msgstr "Forfatterens navnfelt"
423
+
424
+ #: ../commentluv.php:1342
425
+ msgid "Email field name"
426
+ msgstr "Email navnefelt"
427
+
428
+ #: ../commentluv.php:1347
429
+ msgid "Authors URL field name"
430
+ msgstr "Forfatterens URL navnefelt"
431
+
432
+ #: ../commentluv.php:1352
433
+ msgid "Comment Text Area name"
434
+ msgstr "Kommentarfeltet navnefelt"
435
+
436
+ #: ../commentluv.php:1357
437
+ msgid "Diagnostics Info"
438
+ msgstr "Diagnosticering Info"
439
+
440
+ #: ../commentluv.php:1375
441
+ msgid "You can copy this information and send it to me if I request it"
442
+ msgstr "Du kan kopiere denne information og sende den til mig hvis jeg beder om det"
443
+
444
+ #: ../commentluv.php:1382
445
+ msgid "Save Settings"
446
+ msgstr "Gem indstillinger"
447
+
448
+ #: ../commentluv.php:1384
449
+ msgid "Reset Settings"
450
+ msgstr "Nulstil indstillinger"
451
+
452
+ #: ../commentluv.php:1387
453
+ msgid "Are you sure you want to reset your settings? Press OK to continue"
454
+ msgstr "Er du sikker på du vil nulstille indstillingerne? klik OK for at fortsætte"
455
+
456
+ #: ../commentluv.php:1390
457
+ msgid "Reset"
458
+ msgstr "Nulstil"
459
+
460
+ #: ../commentluv.php:1398
461
+ msgid "Plugin Info"
462
+ msgstr "Plugin Info"
463
+
464
+ #: ../commentluv.php:1401
465
+ msgid "Start Here"
466
+ msgstr "Start Her"
467
+
468
+ #: ../commentluv.php:1402
469
+ msgid "Author"
470
+ msgstr "Forfatter"
471
+
472
+ #: ../commentluv.php:1403
473
+ msgid "Home Page"
474
+ msgstr "Hjemmeside"
475
+
476
+ #: ../commentluv.php:1403
477
+ msgid "Visit www.commentluv.com!"
478
+ msgstr "Besøg www.commentluv.com!"
479
+
480
+ #: ../commentluv.php:1404
481
+ msgid "Social"
482
+ msgstr "Social:"
483
+
484
+ #: ../commentluv.php:1405
485
+ msgid "Help"
486
+ msgstr "Hjælp"
487
+
488
+ #: ../commentluv.php:1405
489
+ msgid "Help Desk"
490
+ msgstr "Help Desk"
491
+
492
+ #: ../commentluv.php:1406
493
+ msgid "Do you like this plugin?"
494
+ msgstr "Kan du li dette plugin?"
495
+
496
+ #: ../commentluv.php:1408
497
+ msgid "News"
498
+ msgstr "Nyheder"
499
+
500
+ #: ../commentluv.php:1414
501
+ msgid "Thanks to the following for translations"
502
+ msgstr "Tak til følgende for oversættelserne"
503
+
504
+ #: ../commentluv.php:1415
505
+ msgid "Italian"
506
+ msgstr "Italiensk"
507
+
508
+ #: ../commentluv.php:1416
509
+ msgid "Dutch"
510
+ msgstr "Hollandsk"
511
+
512
+ #: ../commentluv.php:1417
513
+ msgid "Polish"
514
+ msgstr "Polsk"
515
+
516
+ #: ../commentluv.php:1418
517
+ msgid "Georgian"
518
+ msgstr "Georgisk"
519
+
520
+ #: ../commentluv.php:1419
521
+ msgid "Lithuanian"
522
+ msgstr "Litauisk"
523
+
524
+ #: ../commentluv.php:1420
525
+ msgid "Portuguese"
526
+ msgstr "Portugisisk"
527
+
528
+ #: ../commentluv.php:1421
529
+ msgid "Malaysian"
530
+ msgstr "Malaysisk"
531
+
532
+ #: ../commentluv.php:1422
533
+ msgid "Hindi"
534
+ msgstr "Hindi"
535
+
536
+ #: ../commentluv.php:1423
537
+ msgid "Russian"
538
+ msgstr "Russisk"
539
+
540
+ #: ../commentluv.php:1424
541
+ msgid "Chinese"
542
+ msgstr "Kinesisk "
543
+
544
+ #: ../commentluv.php:1425
545
+ msgid "Hebrew"
546
+ msgstr "Hebraisk"
547
+
548
+ #: ../commentluv.php:1426
549
+ msgid "French"
550
+ msgstr "Fransk"
551
+
552
+ #: ../commentluv.php:1428
553
+ msgid "Romanian"
554
+ msgstr "Rumænsk"
555
+
556
+ #: ../commentluv.php:1429
557
+ msgid "German"
558
+ msgstr "Tysk"
559
+
560
+ #: ../commentluv.php:1430
561
+ msgid "Arabic"
562
+ msgstr "Arabisk"
563
+
564
+ #: ../commentluv.php:1432
565
+ msgid "Want your link here?"
566
+ msgstr "Vil du have dit link her?"
567
+
568
+ #: ../commentluv.php:1432
569
+ msgid "How To Submit A Translation"
570
+ msgstr "Hvordan indsender man en oversættelse"
571
+
572
+ #: ../commentluv.php:1433
573
+ msgid "Special thanks go to the following"
574
+ msgstr "Et specielt tak går til følgende"
575
+
576
+ #: ../commentluv.php:1434
577
+ msgid "CSS Help"
578
+ msgstr "CSS hjælp"
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.2.1
7
- Stable tag: 2.90.8.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
 
@@ -41,6 +41,7 @@ Latvian [Edgars Bergs](http://www.yourwebagency.co.uk/ "Latvian Translation")
41
  Romanian [Manuel Cheta](http://obisnuit.eu/ "Romanian Translation")
42
  Norwegian [Hanna](http://www.drommeland.com/ "Norwegian Translation")
43
  French [Jean-Luc Matthys](http://etreheureux.fr/ "French Translation")
 
44
 
45
  == Installation ==
46
 
@@ -69,6 +70,13 @@ Please see the videos in the settings page for explanations of how they work.
69
  4. edit post comments
70
 
71
  == ChangeLog ==
 
 
 
 
 
 
 
72
  = 2.90.8.3 =
73
  * fixed : fixed the error with cl_settings not defined (it was not localizing the script)
74
 
@@ -254,10 +262,9 @@ Please see the videos in the settings page for explanations of how they work.
254
 
255
  == Upgrade Notice ==
256
 
257
- = 2.90.8.2 =
258
 
259
- I made a boo boo with the settings on the last update so some blogs are not showing the badge.
260
- so sorry!
261
 
262
  == Configuration ==
263
 
4
  Tags: commentluv, comments, last blog post, linkluv, comment luv , commentlove, comment love
5
  Requires at least: 3.0
6
  Tested up to: 3.2.1
7
+ Stable tag: 2.90.9
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
 
41
  Romanian [Manuel Cheta](http://obisnuit.eu/ "Romanian Translation")
42
  Norwegian [Hanna](http://www.drommeland.com/ "Norwegian Translation")
43
  French [Jean-Luc Matthys](http://etreheureux.fr/ "French Translation")
44
+ Danish [Jimmy Sigenstroem](http://w3blog.dk/) "Danish Translation")
45
 
46
  == Installation ==
47
 
70
  4. edit post comments
71
 
72
  == ChangeLog ==
73
+ = 2.90.9 =
74
+ * added : Danish language
75
+ * fixed : minor problems with some checkbox vars
76
+ * fixed : issue where an empty link might get added to a comment
77
+ * fixed : small bug in settings page that prevented checkbox from being checked for default on if default admin on was unchecked
78
+ * fixed : use `home_url()` instead of deprecated `get_bloginfo('home')` in `send_feed()` function
79
+
80
  = 2.90.8.3 =
81
  * fixed : fixed the error with cl_settings not defined (it was not localizing the script)
82
 
262
 
263
  == Upgrade Notice ==
264
 
265
+ = 2.90.9 =
266
 
267
+ Fix for comments showing the commentluv message but no url and other minor fixes. please update!
 
268
 
269
  == Configuration ==
270