CommentLuv - Version 2.90.9.9

Version Description

  • fixed : trying updated detection routines to be compatible with new WP 3.4 query code
Download this release

Release Info

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

Code changes from version 2.90.9.7 to 2.90.9.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.9.7
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.7";
32
  var $slug = 'commentluv-options';
33
  var $localize;
34
  var $is_commentluv_request = false;
@@ -63,7 +63,7 @@
63
  // plugin dir and url
64
  $this->plugin_url = trailingslashit ( WP_PLUGIN_URL . '/' . dirname ( plugin_basename ( __FILE__ ) ) );
65
  $this->plugin_dir = dirname(__FILE__);
66
- // hooks
67
  add_action ( 'clversion', array (&$this,'check_version') ); // check commentluv version
68
  add_action ( 'init', array (&$this,'init') ); // to register styles and scripts
69
  add_action ( 'admin_init', array (&$this, 'admin_init' ) ); // to register settings group
@@ -75,7 +75,7 @@
75
  // filters
76
  add_filter ( 'cron_schedules', array (&$this, 'cron_schedules') ); // for my own recurrence
77
  add_filter ( 'plugin_action_links', array (&$this, 'plugin_action_link' ), - 10, 2 ); // add a settings page link to the plugin description. use 2 for allowed vars
78
- add_filter ( 'found_posts', array(&$this,'send_feed'),-1,2); // sends post titles and urls only
79
  add_filter ( 'kindergarten_html', array(&$this,'kindergarten_html')); // for cleaning html
80
  $options = $this->get_options();
81
  //$this->check_version();
@@ -354,13 +354,25 @@
354
  * @param int $id - id of the comment
355
  * @param string $commentdata - status of comment
356
  */
357
- function comment_posted($id,$approved){
358
  if(isset($_POST['cl_post_url']) && $_POST['cl_post_url'] != '' && isset($_POST['cl_post_title']) && $_POST['cl_post_title'] != ''){
359
- //$title = apply_filters('kses',$_POST['cl_post_title']);
360
- $title = strip_tags($_POST['cl_post_title']);
361
- //$link = apply_filters('kses',$_POST['cl_post_url']);
362
  $link = esc_url($_POST['cl_post_url']);
363
- //$prem = apply_filters('kses',$_POST['cl_prem']);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
364
  $prem = 'p' == $_POST['cl_prem'] ? 'p' : 'u';
365
  $data = array('cl_post_title'=>$title,'cl_post_url'=>$link,'cl_prem'=>$prem);
366
  add_comment_meta($id,'cl_data',$data,'true');
@@ -389,9 +401,10 @@
389
  /**
390
  * detect if request is from a commentluv useragent
391
  * called by add_action('init
392
- * used to start the output buffer so the send_feed function can clear it before sending the xml feed
393
- * this is for rare occasions where some themes cause output to be sent to the browser before send_feed can output its own
394
  * ignore if user has set disable_detect in settings
 
 
395
  */
396
  function detect_useragent(){
397
  $options = $this->get_options();
@@ -411,8 +424,9 @@
411
  // prevent wordpress.com stats from adding stats script
412
  global $wp_query;
413
  $wp_query->is_feed = true;
414
- }
415
- ob_start();
 
416
  }
417
  }
418
  /**
@@ -784,10 +798,28 @@
784
  die(' error! no simplepie');
785
  }
786
  $rss->set_useragent('Commentluv /'.$this->version.' (Feed Parser; http://www.commentluv.com; Allow like Gecko) Build/20110502' );
787
- $rss->set_feed_url ( $url );
788
  $rss->enable_cache ( FALSE );
789
  // fetch the feed
790
  $rss->init();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
791
  $rss->handle_content_type();
792
  $gen = $rss->get_channel_tags('','generator');
793
  $prem_msg = $rss->get_channel_tags('','prem_msg');
@@ -887,7 +919,8 @@
887
  'comment_text'=>'[name] '.__('recently posted',$this->plugin_domain).'..[lastpost]', 'whogets'=>'registered', 'dofollow' => 'registered',
888
  'unreg_user_text'=>__('If you register as a user on my site, you can get your 10 most recent blog posts to choose from in this box.',$this->plugin_domain).' '.$register_link,
889
  'unreg_user_text_panel'=>__('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',$this->plugin_domain),
890
- 'template_insert'=>'','minifying'=>'','api_url'=>admin_url('admin-ajax.php'),'author_name'=>'author','email_name'=>'email','url_name'=>'url','comment_name'=>'comment');
 
891
  $options = get_option ( $this->db_option, $default);
892
  // return the options
893
  if($reset == 'yes'){
@@ -1099,6 +1132,9 @@
1099
  * @param (int) $foundposts - the number of posts that were found
1100
  * @param (obj) $object - the query object
1101
  * @return $foundposts - need to return this if the request is not from a commentluv api or plugin
 
 
 
1102
  */
1103
  function send_feed($foundposts,$object){
1104
  if(headers_sent() == true){
@@ -1127,7 +1163,7 @@
1127
  wp_reset_query();
1128
  $query = new WP_Query();
1129
  remove_filter('found_posts',array(&$this,'send_feed'),-1,2);
1130
- $object->posts = $query->query('showposts=10');
1131
  }
1132
  $feed = '<?xml version="1.0" encoding="'.get_bloginfo('charset').'" ?>
1133
  <rss version="2.0">
@@ -1158,6 +1194,47 @@
1158
  }
1159
  return $foundposts;
1160
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1161
  /**
1162
  * called by __construct
1163
  * used to setup hooks and filters for enabled plugin
@@ -1231,7 +1308,7 @@
1231
  <tbody>
1232
  <tr>
1233
  <td width="250">
1234
- <h2 style="margin: 0 0 10px 0;"><?php _e('CommentLuv 3.0 Premium is here!',$pd);?></h2>
1235
  <img align="left" src="<?php echo $this->plugin_url;?>images/privacy-guarantee.png"/><?php _e('I promise not to sell your details or send you spam. You will ONLY receive emails about plugin updates.',$pd);?>
1236
  </td>
1237
  <td>
@@ -1502,9 +1579,17 @@
1502
  <td style="background-color: #dfdfdf; text-align: center; font-weight: bolder;" colspan="5"><?php _e('Extras',$pd);?></td>
1503
  </tr>
1504
  <tr>
1505
- <td><input type="checkbox" value="on" name="<?php echo $dbo;?>[hide_link_no_url]" <?php if(isset($o['hide_link_no_url'])) checked($o['hide_link_no_url'],'on');?>/>
1506
- <label for="<?php echo $dbo;?>[hide_link_no_url]"><?php _e('Do not show link if comment has no URL',$this->plugin_domain);?></label>
1507
- <br /><strong>(<?php _e('Prevents spammer abuse',$this->plugin_domain);?>)</strong></td>
 
 
 
 
 
 
 
 
1508
  </tr>
1509
  <tr>
1510
  <td style="background-color: #dfdfdf; text-align: center; font-weight: bolder;" colspan="5"><?php _e('Diagnostics Info',$pd);?></td>
@@ -1608,8 +1693,11 @@
1608
  <tr><td><img src="<?php echo $this->plugin_url;?>images/fr.png"/> <?php _e('French',$this->plugin_domain);?></td><td><a target="_blank" href="http://etreheureux.fr/">Jean-Luc Matthys</a></td></tr>
1609
  <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>
1610
  <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>
1611
- <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>
1612
  <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>
 
 
 
1613
 
1614
 
1615
  <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.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.9";
32
  var $slug = 'commentluv-options';
33
  var $localize;
34
  var $is_commentluv_request = false;
63
  // plugin dir and url
64
  $this->plugin_url = trailingslashit ( WP_PLUGIN_URL . '/' . dirname ( plugin_basename ( __FILE__ ) ) );
65
  $this->plugin_dir = dirname(__FILE__);
66
+
67
  add_action ( 'clversion', array (&$this,'check_version') ); // check commentluv version
68
  add_action ( 'init', array (&$this,'init') ); // to register styles and scripts
69
  add_action ( 'admin_init', array (&$this, 'admin_init' ) ); // to register settings group
75
  // filters
76
  add_filter ( 'cron_schedules', array (&$this, 'cron_schedules') ); // for my own recurrence
77
  add_filter ( 'plugin_action_links', array (&$this, 'plugin_action_link' ), - 10, 2 ); // add a settings page link to the plugin description. use 2 for allowed vars
78
+ // add_filter ( 'found_posts', array(&$this,'send_feed'),-1,2); // sends post titles and urls only - deprecated in 2.90.9.9
79
  add_filter ( 'kindergarten_html', array(&$this,'kindergarten_html')); // for cleaning html
80
  $options = $this->get_options();
81
  //$this->check_version();
354
  * @param int $id - id of the comment
355
  * @param string $commentdata - status of comment
356
  */
357
+ function comment_posted($id,$commentdata){
358
  if(isset($_POST['cl_post_url']) && $_POST['cl_post_url'] != '' && isset($_POST['cl_post_title']) && $_POST['cl_post_title'] != ''){
359
+ $title = strip_tags($_POST['cl_post_title']);
 
 
360
  $link = esc_url($_POST['cl_post_url']);
361
+ $options = $this->get_options();
362
+ //debugbreak();
363
+ // check for spam or delete comment if no author url
364
+ // spam or delete comment if no author url depending on user settings
365
+ //(for logged out users only because logged in users have no commentdata->comment_author_url)
366
+ if(!is_user_logged_in()){
367
+ if($options['hide_link_no_url'] == 'spam' && $commentdata->comment_author_url ==''){
368
+ $commentdata->comment_approved = 'spam';
369
+ $update = wp_update_comment((array)$commentdata);
370
+ }
371
+ if($options['hide_link_no_url'] == 'delete' && $commentdata->comment_author_url == ''){
372
+ wp_delete_comment($id);
373
+ return;
374
+ }
375
+ }
376
  $prem = 'p' == $_POST['cl_prem'] ? 'p' : 'u';
377
  $data = array('cl_post_title'=>$title,'cl_post_url'=>$link,'cl_prem'=>$prem);
378
  add_comment_meta($id,'cl_data',$data,'true');
401
  /**
402
  * detect if request is from a commentluv useragent
403
  * called by add_action('init
404
+ *
 
405
  * ignore if user has set disable_detect in settings
406
+ *
407
+ * since 2.90.9.9 - add action for template redirect, we do the sending of the special feed there now
408
  */
409
  function detect_useragent(){
410
  $options = $this->get_options();
424
  // prevent wordpress.com stats from adding stats script
425
  global $wp_query;
426
  $wp_query->is_feed = true;
427
+ // use own file to output feed
428
+ add_action('template_redirect',array(&$this,'send_feed_file'),1);
429
+ }
430
  }
431
  }
432
  /**
798
  die(' error! no simplepie');
799
  }
800
  $rss->set_useragent('Commentluv /'.$this->version.' (Feed Parser; http://www.commentluv.com; Allow like Gecko) Build/20110502' );
801
+ $rss->set_feed_url ( add_query_arg(array('commentluv'=>'true'),$url) );
802
  $rss->enable_cache ( FALSE );
803
  // fetch the feed
804
  $rss->init();
805
+ $su = $rss->subscribe_url();
806
+ $ferror = $rss->error();
807
+ // try a fall back and add /?feed=rss2 to the end of url if the found subscribe url hasn't already got it
808
+ // also try known blogspot feed location if this is a blogspot url
809
+ if(strstr($ferror,'could not be found') && !strstr($su,'feed')){
810
+ unset($rss);
811
+ $rss = new SimplePie();
812
+ $rss->set_useragent('Commentluv /'.$this->version.' (Feed Parser; http://www.commentluv.com; Allow like Gecko) Build/20110502' );
813
+ $rss->enable_cache ( FALSE );
814
+ // construct alternate feed url
815
+ if(strstr($url,'blogspot')){
816
+ $url = trailingslashit($url).'feeds/posts/default/';
817
+ } else {
818
+ $url = add_query_arg(array('feed'=>'rss2'),$url);
819
+ }
820
+ $rss->set_feed_url($url);
821
+ $rss->init();
822
+ }
823
  $rss->handle_content_type();
824
  $gen = $rss->get_channel_tags('','generator');
825
  $prem_msg = $rss->get_channel_tags('','prem_msg');
919
  'comment_text'=>'[name] '.__('recently posted',$this->plugin_domain).'..[lastpost]', 'whogets'=>'registered', 'dofollow' => 'registered',
920
  'unreg_user_text'=>__('If you register as a user on my site, you can get your 10 most recent blog posts to choose from in this box.',$this->plugin_domain).' '.$register_link,
921
  'unreg_user_text_panel'=>__('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',$this->plugin_domain),
922
+ 'template_insert'=>'','minifying'=>'','api_url'=>admin_url('admin-ajax.php'),'author_name'=>'author','email_name'=>'email','url_name'=>'url','comment_name'=>'comment',
923
+ 'hide_link_no_url'=>'nothing');
924
  $options = get_option ( $this->db_option, $default);
925
  // return the options
926
  if($reset == 'yes'){
1132
  * @param (int) $foundposts - the number of posts that were found
1133
  * @param (obj) $object - the query object
1134
  * @return $foundposts - need to return this if the request is not from a commentluv api or plugin
1135
+ *
1136
+ * deprecated in 2.90.9.9 due to new 3.4 wp query code messing up with static homepages.
1137
+ * have to use just 10 recent posts, does not detect author or category urls now. (no one uses them!)
1138
  */
1139
  function send_feed($foundposts,$object){
1140
  if(headers_sent() == true){
1163
  wp_reset_query();
1164
  $query = new WP_Query();
1165
  remove_filter('found_posts',array(&$this,'send_feed'),-1,2);
1166
+ $object->posts = $query->query('showposts=10&post_type=post');
1167
  }
1168
  $feed = '<?xml version="1.0" encoding="'.get_bloginfo('charset').'" ?>
1169
  <rss version="2.0">
1194
  }
1195
  return $foundposts;
1196
  }
1197
+ /** send back a feed when another commentluv is asking
1198
+ * called by add_action(template_redirect) in detect_useragent
1199
+ *
1200
+ */
1201
+
1202
+ function send_feed_file(){
1203
+ //debugbreak();
1204
+ $posts = get_posts(array('numberposts'=>10,'post_type'=>'post'));
1205
+ $enabled = $this->is_enabled();
1206
+ $error = 'false';
1207
+ if(sizeof($posts) < 1){
1208
+ $error = 'true';
1209
+ }
1210
+ $feed = '<?xml version="1.0" encoding="UTF-8" ?>
1211
+ <rss version="2.0">
1212
+ <channel>
1213
+ <title><![CDATA['. get_bloginfo('title') .']]></title>
1214
+ <link>'. get_bloginfo('home') .'</link>
1215
+ <description><![CDATA['. get_bloginfo('description') .']]></description>
1216
+ <language>'.get_bloginfo('language').'</language>
1217
+ <generator>commentluv?v='.$this->version.'</generator>
1218
+ <commentluv>'.$enabled.'</commentluv>
1219
+ <success>'.$error.'</success>';
1220
+ if(is_array($posts)){
1221
+ foreach($posts as $post){
1222
+ $feed .= '<item><title><![CDATA['.get_the_title($post->ID).']]></title>
1223
+ <link>'.get_permalink($post->ID).'</link>
1224
+ <type>blog</type>
1225
+ </item>';
1226
+ }
1227
+ } else {
1228
+ $feed .= '<item><title>'.__('No Posts Were Found!',$pd).'</title>
1229
+ <link>'.get_permalink($post->ID).'</link>
1230
+ </item>';
1231
+ }
1232
+ $feed .= '</channel></rss>';
1233
+ header("Content-Type: application/xml; charset=UTF-8");
1234
+ echo $feed;
1235
+ exit;
1236
+
1237
+ }
1238
  /**
1239
  * called by __construct
1240
  * used to setup hooks and filters for enabled plugin
1308
  <tbody>
1309
  <tr>
1310
  <td width="250">
1311
+ <h2 style="margin: 0 0 10px 0;"><?php _e('CommentLuv 3.0 Premium is here!',$pd);?> <a style="font-size:0.8em" title="Premium has some excellent features! try it out today. Full 30 day gaurantee" target="_blank" href="http://ql2.me/upgradetopremium">Upgrade to Premium</a></h2>
1312
  <img align="left" src="<?php echo $this->plugin_url;?>images/privacy-guarantee.png"/><?php _e('I promise not to sell your details or send you spam. You will ONLY receive emails about plugin updates.',$pd);?>
1313
  </td>
1314
  <td>
1579
  <td style="background-color: #dfdfdf; text-align: center; font-weight: bolder;" colspan="5"><?php _e('Extras',$pd);?></td>
1580
  </tr>
1581
  <tr>
1582
+ <td>
1583
+ <select name="<?php echo $dbo;?>[hide_link_no_url]">
1584
+ <option value="nothing" <?php selected($o['hide_link_no_url'],'nothing',true);?>><?php _e('Nothing',$this->plugin_domain);?></option>
1585
+ <option value="on" <?php selected($o['hide_link_no_url'],'on',true);?>><?php _e('Hide Link',$this->plugin_domain);?></option>
1586
+ <option value="spam" <?php selected($o['hide_link_no_url'],'spam',true);?>><?php _e('Spam Comment',$this->plugin_domain);?></option>
1587
+ <option value="delete" <?php selected($o['hide_link_no_url'],'delete',true);?>><?php _e('Delete Comment',$this->plugin_domain);?></option>
1588
+ </select>
1589
+ <br/><label for="<?php echo $dbo;?>[hide_link_no_url]"><?php _e('Action to take if comment has no Author URL',$this->plugin_domain);?></label>
1590
+ <br /><strong>(<?php _e('Prevents spammer abuse',$this->plugin_domain);?>)</strong>
1591
+
1592
+ </td>
1593
  </tr>
1594
  <tr>
1595
  <td style="background-color: #dfdfdf; text-align: center; font-weight: bolder;" colspan="5"><?php _e('Diagnostics Info',$pd);?></td>
1693
  <tr><td><img src="<?php echo $this->plugin_url;?>images/fr.png"/> <?php _e('French',$this->plugin_domain);?></td><td><a target="_blank" href="http://etreheureux.fr/">Jean-Luc Matthys</a></td></tr>
1694
  <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>
1695
  <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>
1696
+ <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.monetizeblogging.com/">Amrik Virdi</a></td></tr>
1697
  <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>
1698
+ <tr><td><img src="<?php echo $this->plugin_url;?>images/vn.png"/> <?php _e('Vietnamese',$this->plugin_domain);?></td><td><a target="_blank" href="http://thegioimanguon.com/">Xman</a></td></tr>
1699
+ <tr><td><img src="<?php echo $this->plugin_url;?>images/hu.png"/> <?php _e('Hungarian',$this->plugin_domain);?></td><td><a target="_blank" href="http://no1tutorials.net/">Bruno</a></td></tr>
1700
+ <tr><td><img src="<?php echo $this->plugin_url;?>images/sk.png"/> <?php _e('Slovak',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.brozman.sk/blog">Viliam Brozman</a></td></tr>
1701
 
1702
 
1703
  <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>
images/hu.png ADDED
Binary file
images/sk.png ADDED
Binary file
images/vn.png ADDED
Binary file
lang/commentluv-hr_HR.mo ADDED
Binary file
lang/commentluv-hr_HR.po ADDED
@@ -0,0 +1,582 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: Bruno <bruno31@net.hr>\n"
8
+ "Language-Team: @commentluv, Gianni Diurno <admin@comluv.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-Language: English\n"
13
+ "X-Poedit-Country: UNITED KINGDOM\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../commentluv.php:48
19
+ msgid "CommentLuv requires Wordpress 3.0 or newer."
20
+ msgstr "CommentLuv zahtijeva Wordpress 3.0 ili noviji."
21
+
22
+ #: ../commentluv.php:48
23
+ msgid "Please Update!"
24
+ msgstr "Molimo vas da obavite nadogradnju !"
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 "Molimo vas da unesete vaš URL i zatim kliknete na CommentLuv checkbox ako želite dodati vaš posljednji blog post."
29
+
30
+ #: ../commentluv.php:218
31
+ msgid "Please use http:// in front of your url"
32
+ msgstr "Molimo vas da unesete http:// ispred vaše web adrese"
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 "Morate otvoriti vaš profil u nadzornoj ploči i obnoviti vaše detalje tako što ćete unesti vašu web adresu"
37
+
38
+ #: ../commentluv.php:220
39
+ msgid "No info was available or an error occured"
40
+ msgstr "Informacija nije dostupna ili se pojavila greška"
41
+
42
+ #: ../commentluv.php:243
43
+ msgid "Please wait"
44
+ msgstr "Molimo sačekajte"
45
+
46
+ #: ../commentluv.php:243
47
+ msgid "Please check your inbox, an email will be sent to"
48
+ msgstr "Molimo vas da provjerite vašu dolaznu poštu, biti će vam poslan email"
49
+
50
+ #: ../commentluv.php:243
51
+ msgid "in the next few minutes with a confirmation link"
52
+ msgstr "za nekoliko trenutaka sa linkom za potvrdu"
53
+
54
+ #: ../commentluv.php:243
55
+ msgid "An error happened with the request. Try signing up at the site"
56
+ msgstr "Pojavila se greška sa zahtjevom. Pokušajte se registrirati na stranicu"
57
+
58
+ #: ../commentluv.php:272
59
+ msgid "Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
60
+ msgstr "Vašoj Wordpress instalaciji nedostaje <strong>wp_commentmeta</strong> tablica !"
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 ne može raditi bez ove tablice, molimo vas da pogledate ovaj wordpress forum da naučite kako da dodate tablicu ->"
65
+
66
+ #: ../commentluv.php:272
67
+ msgid "Missing wp_commentmeta table"
68
+ msgstr "Nedostaje wp_commentmeta tablica"
69
+
70
+ #: ../commentluv.php:365
71
+ msgid "Twice Monthly"
72
+ msgstr "Dva puta mjesečno"
73
+
74
+ #: ../commentluv.php:392
75
+ msgid "CommentLuv is enabled"
76
+ msgstr "CommentLuv je aktiviran"
77
+
78
+ #: ../commentluv.php:433
79
+ msgid "Show more posts"
80
+ msgstr "Pokaži još postova"
81
+
82
+ #: ../commentluv.php:523
83
+ msgid "I have only commented on this post"
84
+ msgstr "Komentirao sam samo na ovom postu"
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 "Da sam napisao više komentara na ovoj stranici, ovdje bi vidjeli još mojih postova"
89
+
90
+ #: ../commentluv.php:551
91
+ msgid "User has not saved a description in their profile page"
92
+ msgstr "Korisnik nije snimio opis u svojoj profilnoj stranici"
93
+
94
+ #: ../commentluv.php:563
95
+ msgid "is the administrator of this site"
96
+ msgstr "je administrator ove stranice"
97
+
98
+ #: ../commentluv.php:565
99
+ msgid "is a registered member of my site"
100
+ msgstr "je registrirani član moje stranice"
101
+
102
+ #: ../commentluv.php:568
103
+ #: ../commentluv.php:587
104
+ msgid "Clicks on this link on this comment"
105
+ msgstr "Kliknite na ovaj link u komentaru"
106
+
107
+ #: ../commentluv.php:568
108
+ #: ../commentluv.php:588
109
+ msgid "approved comments on this site"
110
+ msgstr "odobreni komentari na ovoj stranici"
111
+
112
+ #: ../commentluv.php:568
113
+ #: ../commentluv.php:589
114
+ msgid "Some other posts I have commented on"
115
+ msgstr "Neki drugi postovi na kojima sam komentirao"
116
+
117
+ #: ../commentluv.php:568
118
+ msgid "Some of my other posts"
119
+ msgstr "Neki od mojih postova"
120
+
121
+ #: ../commentluv.php:581
122
+ msgid "has not registered on this site"
123
+ msgstr "se nije registrirao na ovoj stranici"
124
+
125
+ #: ../commentluv.php:703
126
+ msgid "Could not get posts for home blog"
127
+ msgstr "Ne mogu dobiti postove za home blog"
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 "Ako ste registrirani, morate se logirati da dobijete izbor od 10 vaših postova"
132
+
133
+ #: ../commentluv.php:783
134
+ #: ../commentluv.php:1235
135
+ msgid "Register"
136
+ msgstr "Registracija"
137
+
138
+ #: ../commentluv.php:788
139
+ msgid "recently posted"
140
+ msgstr "nedavno objavljeno"
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 "Ako se registrirate kao korisnik na mojoj stranici, u ovome prozoru moći ćete odabrati između 10 vaših najnovijih postova."
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 "Da se ovaj korisnik registrirao na mojoj stranici imao bi opciju da odabere postove između 10 svojih najnovijih postova, a vi bi u ovom panelu mogli vidjeti listu njegovih najnovijih postova"
149
+
150
+ #: ../commentluv.php:971
151
+ msgid "Settings"
152
+ msgstr "Podešenja"
153
+
154
+ #: ../commentluv.php:1010
155
+ msgid "No Posts Were Found!"
156
+ msgstr "Postovi nisu nađeni !"
157
+
158
+ #: ../commentluv.php:1050
159
+ msgid "There is a new version of Commentluv available, please upgrade by visiting this site"
160
+ msgstr "Dostupna je nova verzija CommentLuv plugina, molimo vas da ju nadogradite posjetom na ovu stranicu"
161
+
162
+ #: ../commentluv.php:1053
163
+ msgid "Dismiss notice"
164
+ msgstr "Ukloni obavijest"
165
+
166
+ #: ../commentluv.php:1080
167
+ msgid "CommentLuv Settings v"
168
+ msgstr "CommentLuv podešenja v"
169
+
170
+ #: ../commentluv.php:1090
171
+ msgid "Important!"
172
+ msgstr "Važno!"
173
+
174
+ #: ../commentluv.php:1090
175
+ msgid "Subscription Information"
176
+ msgstr "Informacije o pretplati"
177
+
178
+ #: ../commentluv.php:1095
179
+ msgid "CommentLuv 3.0 Premium is coming soon!"
180
+ msgstr "CommentLuv 3.0 Premium dolazi uskoro!"
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 "Obećavam vam da neću prodavati vaše informacije ili vam slati spam. Primati ćete ISKLJUČIVO email poruke o nadogradnjama plugina."
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 "Uskoro dolazi premium verzija CommentLuv plugina koja će imati puno više podešenja i kontrolu kao na primjer unos ključne riječi, inline registraciju i još puno toga ! Pretplatite se da bi odmah znali kada će biti dostupna"
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 "Već ste se pretplatili, ako niste primili email verifikaciju u roku od 12 sati, molimo kliknite dugme za ponovno slanje ili ispunite email obrazac na"
193
+
194
+ #: ../commentluv.php:1102
195
+ msgid "Resend Verification"
196
+ msgstr "Ponovno pošalji verifikaciju"
197
+
198
+ #: ../commentluv.php:1104
199
+ msgid "Click to register now!"
200
+ msgstr "Klikni za registraciju!"
201
+
202
+ #: ../commentluv.php:1119
203
+ msgid "Primary Setting"
204
+ msgstr "Osnovna podešenja"
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 "Video za pomoć"
213
+
214
+ #: ../commentluv.php:1123
215
+ msgid "Enable CommentLuv?"
216
+ msgstr "Uključi CommentLuv?"
217
+
218
+ #: ../commentluv.php:1124
219
+ msgid "Yes"
220
+ msgstr "Da"
221
+
222
+ #: ../commentluv.php:1125
223
+ msgid "No"
224
+ msgstr "Ne"
225
+
226
+ #: ../commentluv.php:1130
227
+ msgid "On Posts"
228
+ msgstr "Na postovima"
229
+
230
+ #: ../commentluv.php:1131
231
+ msgid "On Pages"
232
+ msgstr "Na stranicama"
233
+
234
+ #: ../commentluv.php:1132
235
+ msgid "On Both"
236
+ msgstr "Na oboje"
237
+
238
+ #: ../commentluv.php:1137
239
+ msgid "On by default?"
240
+ msgstr "Uključen po defaultu?"
241
+
242
+ #: ../commentluv.php:1141
243
+ msgid "On for admin?"
244
+ msgstr "Uključen za administratora?"
245
+
246
+ #: ../commentluv.php:1153
247
+ msgid "Appearance"
248
+ msgstr "Izgled"
249
+
250
+ #: ../commentluv.php:1157
251
+ msgid "Badge"
252
+ msgstr "Značka"
253
+
254
+ #: ../commentluv.php:1158
255
+ msgid "Custom Image URL"
256
+ msgstr "Link na sliku po želji"
257
+
258
+ #: ../commentluv.php:1159
259
+ msgid "Use Text"
260
+ msgstr "Koristi tekst"
261
+
262
+ #: ../commentluv.php:1167
263
+ msgid "Default"
264
+ msgstr "Default"
265
+
266
+ #: ../commentluv.php:1168
267
+ msgid "White"
268
+ msgstr "Bijelo"
269
+
270
+ #: ../commentluv.php:1169
271
+ msgid "Black"
272
+ msgstr "Crno"
273
+
274
+ #: ../commentluv.php:1170
275
+ msgid "None"
276
+ msgstr "Nijedna"
277
+
278
+ #: ../commentluv.php:1187
279
+ msgid "Link to Commentluv?"
280
+ msgstr "Link na CommentLuv?"
281
+
282
+ #: ../commentluv.php:1194
283
+ msgid "Enable info panel?"
284
+ msgstr "Uključi info panel?"
285
+
286
+ #: ../commentluv.php:1195
287
+ msgid "Info panel background color"
288
+ msgstr "Boja pozadine info panela"
289
+
290
+ #: ../commentluv.php:1196
291
+ msgid "Info panel text color"
292
+ msgstr "Boja texta info panela"
293
+
294
+ #: ../commentluv.php:1202
295
+ msgid "Example text and background color"
296
+ msgstr "Primjer teksta i boje pozadine"
297
+
298
+ #: ../commentluv.php:1212
299
+ msgid "Messages"
300
+ msgstr "Poruke"
301
+
302
+ #: ../commentluv.php:1219
303
+ msgid "Text to be displayed in the comment"
304
+ msgstr "Text koji će biti prikazan u komentarima"
305
+
306
+ #: ../commentluv.php:1222
307
+ msgid "[name] = The users name"
308
+ msgstr "[Ime] = ime korisnika"
309
+
310
+ #: ../commentluv.php:1222
311
+ msgid "[lastpost] = The last blog post link"
312
+ msgstr "[zadnji post] = Link na posljednji blog post"
313
+
314
+ #: ../commentluv.php:1229
315
+ msgid "Message for unregistered user in the drop down box"
316
+ msgstr "Poruka za neregistrirane korisnike u dropdown panelu"
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 "Poruka neće biti prikazana ako niste uključili registraciju"
322
+
323
+ #: ../commentluv.php:1234
324
+ msgid "Your register link code"
325
+ msgstr "Kod vašeg linka za registraciju"
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 "Na vašem blogu NISTE dopustili komentiranje postova, to možete napraviti u Podešenja/Općenito"
330
+
331
+ #: ../commentluv.php:1245
332
+ msgid "here"
333
+ msgstr "ovdje"
334
+
335
+ #: ../commentluv.php:1253
336
+ msgid "Message for unregistered user in the info panel"
337
+ msgstr "Poruka za neregistrirane korisnike u info panelu"
338
+
339
+ #: ../commentluv.php:1268
340
+ msgid "Operational Settings"
341
+ msgstr "Operativne postavke"
342
+
343
+ #: ../commentluv.php:1275
344
+ msgid "Who to give 10 last posts to choose from when they comment?"
345
+ msgstr "Kome dodijeliti 10 najnovijih postova da mogu odabrati kada komentiraju?"
346
+
347
+ #: ../commentluv.php:1276
348
+ msgid "Only Registered Members"
349
+ msgstr "Samo registrirani članovi"
350
+
351
+ #: ../commentluv.php:1277
352
+ msgid "Everybody"
353
+ msgstr "Svi"
354
+
355
+ #: ../commentluv.php:1278
356
+ msgid "Nobody"
357
+ msgstr "Nitko"
358
+
359
+ #: ../commentluv.php:1285
360
+ msgid "Whose links should be dofollow?"
361
+ msgstr "Za čije linkove želite da budu dofollow?"
362
+
363
+ #: ../commentluv.php:1286
364
+ msgid "Only Registered Members Links"
365
+ msgstr "Samo linkovi registriranih članova"
366
+
367
+ #: ../commentluv.php:1287
368
+ msgid "Everybody gets dofollow links"
369
+ msgstr "Svi dobivaju dofollow linkove"
370
+
371
+ #: ../commentluv.php:1288
372
+ msgid "Nobody gets dofollow links"
373
+ msgstr "Nitko ne dobiva dofollow linkove"
374
+
375
+ #: ../commentluv.php:1299
376
+ msgid "Technical Settings"
377
+ msgstr "Tehnička podešenja"
378
+
379
+ #: ../commentluv.php:1299
380
+ msgid "Click to open technical settings"
381
+ msgstr "Klikni da otvoriš tehnička podešenja"
382
+
383
+ #: ../commentluv.php:1306
384
+ msgid "Please check the help video for this section before changing settings"
385
+ msgstr "Molimo vas da pogledate video za pomoć za ovaj dio prije nego što promijenite podešenja"
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 "U većini slučajeva NEĆETE morati promijeniti postavke u ovom prozoru, osim ako imate promijenjeni obrazac komentara, predložak ili koristite minifying ili caching plugins"
390
+
391
+ #: ../commentluv.php:1312
392
+ msgid "Compatibility"
393
+ msgstr "Kompatibilnost"
394
+
395
+ #: ../commentluv.php:1316
396
+ msgid "Use manual insert of badge code?"
397
+ msgstr "Koristi ručno učitavanje koda za značku?"
398
+
399
+ #: ../commentluv.php:1320
400
+ msgid "Enable minifying compatibility?"
401
+ msgstr "Uključi minifying kompatibilnost?"
402
+
403
+ #: ../commentluv.php:1321
404
+ msgid "For caching plugins (places localized code in footer)"
405
+ msgstr "Za caching pluginove (stavlja lokalizirani kod u footer)"
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 "URL za korištenje kod API"
414
+
415
+ #: ../commentluv.php:1334
416
+ msgid "Comment Form Field Values"
417
+ msgstr "Vrijednosti polja obrasca za komentiranje"
418
+
419
+ #: ../commentluv.php:1337
420
+ msgid "Authors Name field name"
421
+ msgstr "Autorovo ime ime polja"
422
+
423
+ #: ../commentluv.php:1342
424
+ msgid "Email field name"
425
+ msgstr "Ime Email polja"
426
+
427
+ #: ../commentluv.php:1347
428
+ msgid "Authors URL field name"
429
+ msgstr "Ime polja autorovog URL"
430
+
431
+ #: ../commentluv.php:1352
432
+ msgid "Comment Text Area name"
433
+ msgstr "Ime područja tekstualnog komentara"
434
+
435
+ #: ../commentluv.php:1357
436
+ msgid "Diagnostics Info"
437
+ msgstr "Dijagnostičke informacije"
438
+
439
+ #: ../commentluv.php:1375
440
+ msgid "You can copy this information and send it to me if I request it"
441
+ msgstr "Možete kopirati ove podatke i poslati ih meni ako ih zatražim"
442
+
443
+ #: ../commentluv.php:1382
444
+ msgid "Save Settings"
445
+ msgstr "Snimi podešenja"
446
+
447
+ #: ../commentluv.php:1384
448
+ msgid "Reset Settings"
449
+ msgstr "Resetiraj podešenja"
450
+
451
+ #: ../commentluv.php:1387
452
+ msgid "Are you sure you want to reset your settings? Press OK to continue"
453
+ msgstr "Jeste li sigurni da želite resetirati podešenja? Kliknite OK za nastavak"
454
+
455
+ #: ../commentluv.php:1390
456
+ msgid "Reset"
457
+ msgstr "Reset"
458
+
459
+ #: ../commentluv.php:1398
460
+ msgid "Plugin Info"
461
+ msgstr "Informacije o pluginu"
462
+
463
+ #: ../commentluv.php:1401
464
+ msgid "Start Here"
465
+ msgstr "Start ovdje"
466
+
467
+ #: ../commentluv.php:1402
468
+ msgid "Author"
469
+ msgstr "Autor"
470
+
471
+ #: ../commentluv.php:1403
472
+ msgid "Home Page"
473
+ msgstr "Home stranica"
474
+
475
+ #: ../commentluv.php:1403
476
+ msgid "Visit www.commentluv.com!"
477
+ msgstr "Posjetite www.commentluv.com!"
478
+
479
+ #: ../commentluv.php:1404
480
+ msgid "Social"
481
+ msgstr "Social"
482
+
483
+ #: ../commentluv.php:1405
484
+ msgid "Help"
485
+ msgstr "Pomoć"
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 "Da li vam se sviđa plugin?"
494
+
495
+ #: ../commentluv.php:1408
496
+ msgid "News"
497
+ msgstr "Vijesti"
498
+
499
+ #: ../commentluv.php:1414
500
+ msgid "Thanks to the following for translations"
501
+ msgstr "Zahvaljujemo se slijedećim osobama na prijevodu"
502
+
503
+ #: ../commentluv.php:1415
504
+ msgid "Italian"
505
+ msgstr "Talijanski"
506
+
507
+ #: ../commentluv.php:1416
508
+ msgid "Dutch"
509
+ msgstr "Nizozemski"
510
+
511
+ #: ../commentluv.php:1417
512
+ msgid "Polish"
513
+ msgstr "Poljski"
514
+
515
+ #: ../commentluv.php:1418
516
+ msgid "Georgian"
517
+ msgstr "Gruzijski"
518
+
519
+ #: ../commentluv.php:1419
520
+ msgid "Lithuanian"
521
+ msgstr "Litvanski"
522
+
523
+ #: ../commentluv.php:1420
524
+ msgid "Portuguese"
525
+ msgstr "Portugalski"
526
+
527
+ #: ../commentluv.php:1421
528
+ msgid "Malaysian"
529
+ msgstr "Malezijski"
530
+
531
+ #: ../commentluv.php:1422
532
+ msgid "Hindi"
533
+ msgstr "Hindu"
534
+
535
+ #: ../commentluv.php:1423
536
+ msgid "Russian"
537
+ msgstr "Ruski"
538
+
539
+ #: ../commentluv.php:1424
540
+ msgid "Chinese"
541
+ msgstr "Kineski"
542
+
543
+ #: ../commentluv.php:1425
544
+ msgid "Hebrew"
545
+ msgstr "Hebrejski"
546
+
547
+ #: ../commentluv.php:1426
548
+ msgid "French"
549
+ msgstr "Francuski"
550
+
551
+ #: ../commentluv.php:1428
552
+ msgid "Romanian"
553
+ msgstr "Rumunjski"
554
+
555
+ #: ../commentluv.php:1429
556
+ msgid "German"
557
+ msgstr "Njemački"
558
+
559
+ #: ../commentluv.php:1430
560
+ msgid "Arabic"
561
+ msgstr "Arapski"
562
+
563
+ #: ../commentluv.php:1432
564
+ msgid "Want your link here?"
565
+ msgstr "Želite vaš link ovdje?"
566
+
567
+ #: ../commentluv.php:1432
568
+ msgid "How To Submit A Translation"
569
+ msgstr "Kako možete poslati prijevod"
570
+
571
+ #: ../commentluv.php:1433
572
+ msgid "Special thanks go to the following"
573
+ msgstr "Njima ide jedno veliko hvala"
574
+
575
+ #: ../commentluv.php:1434
576
+ msgid "CSS Help"
577
+ msgstr "CSS pomoć"
578
+
579
+ #: ../commentluv.php:1435
580
+ msgid "Badge GFX"
581
+ msgstr "Značka GFX"
582
+
lang/commentluv-vi_VI.mo ADDED
Binary file
lang/commentluv-vi_VI.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: xman <admin@user.vn>\n"
8
+ "Language-Team: Xman <admin@user.vn>\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: Vietnamese\n"
15
+ "X-Poedit-Country: VIET NAM\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 yêu cầu phiên bản Wordpress 3.0 hoặc mới hơn."
22
+
23
+ #: ../commentluv.php:48
24
+ msgid "Please Update!"
25
+ msgstr "Hãy Nâng cấp!"
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 "Hãy nhập URL và nhấn vào nút CommentLuv nếu bạn muốn thêm bài viết mới nhất của bạn"
30
+
31
+ #: ../commentluv.php:218
32
+ msgid "Please use http:// in front of your url"
33
+ msgstr "Hãy dùng http:// đằng trước url của bạn"
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 "Bạn cần vào phần thông tin tài khoản trong bảng điều khiển và cập nhật thông tin chi tiết url website của bạn"
38
+
39
+ #: ../commentluv.php:220
40
+ msgid "No info was available or an error occured"
41
+ msgstr "Không có thông tin nào hiệu lực hoặc có lỗi phát sinh"
42
+
43
+ #: ../commentluv.php:243
44
+ msgid "Please wait"
45
+ msgstr "Xin chờ"
46
+
47
+ #: ../commentluv.php:243
48
+ msgid "Please check your inbox, an email will be sent to"
49
+ msgstr "Hãy kiểm tra hộp thư của bạn, sẽ có email sẽ gửi tới"
50
+
51
+ #: ../commentluv.php:243
52
+ msgid "in the next few minutes with a confirmation link"
53
+ msgstr "trong một vài phút tiếp theo với một liên kết xác nhận"
54
+
55
+ #: ../commentluv.php:243
56
+ msgid "An error happened with the request. Try signing up at the site"
57
+ msgstr "Lỗi phát sinh với yêu cầu. Hãy thử đăng ký ở website."
58
+
59
+ #: ../commentluv.php:272
60
+ msgid "Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
61
+ msgstr "Cài đặt Wordpress của bạn bị thiếu bảng <strong>wp_commentmeta</strong> !"
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 không thể thực hiện nếu không có bảng này, hãy xem bài viết trên diễn đàn wordpress để học cách thêm bảng vào ->"
66
+
67
+ #: ../commentluv.php:272
68
+ msgid "Missing wp_commentmeta table"
69
+ msgstr "Thiếu bảng wp_commentmeta"
70
+
71
+ #: ../commentluv.php:365
72
+ msgid "Twice Monthly"
73
+ msgstr "2 lần Hàng tháng"
74
+
75
+ #: ../commentluv.php:392
76
+ msgid "CommentLuv is enabled"
77
+ msgstr "CommentLuv đã được bật"
78
+
79
+ #: ../commentluv.php:433
80
+ msgid "Show more posts"
81
+ msgstr "Hiện thêm bài viết"
82
+
83
+ #: ../commentluv.php:523
84
+ msgid "I have only commented on this post"
85
+ msgstr "Tôi chỉ bình luận trên bài viết này"
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 "Nếu tôi có thêm bình luận trên website này, bạn có thể thấy các bài viết khác của tôi ở đây"
90
+
91
+ #: ../commentluv.php:551
92
+ msgid "User has not saved a description in their profile page"
93
+ msgstr "Thành viên đã không cung cấp thông tin mô tả ở trang cá nhân của họ"
94
+
95
+ #: ../commentluv.php:563
96
+ msgid "is the administrator of this site"
97
+ msgstr "là người quản trị của website này"
98
+
99
+ #: ../commentluv.php:565
100
+ msgid "is a registered member of my site"
101
+ msgstr "là thành viên đã đăng ký trên website của tôi"
102
+
103
+ #: ../commentluv.php:568
104
+ #: ../commentluv.php:587
105
+ msgid "Clicks on this link on this comment"
106
+ msgstr "Nhấn vào liên kết này trên bình luận này"
107
+
108
+ #: ../commentluv.php:568
109
+ #: ../commentluv.php:588
110
+ msgid "approved comments on this site"
111
+ msgstr "bình luận đã được chấp nhận trên website này"
112
+
113
+ #: ../commentluv.php:568
114
+ #: ../commentluv.php:589
115
+ msgid "Some other posts I have commented on"
116
+ msgstr "Một vài bài viết khác mà tôi đã bình luận "
117
+
118
+ #: ../commentluv.php:568
119
+ msgid "Some of my other posts"
120
+ msgstr "Một vài bài viết khác của tôi"
121
+
122
+ #: ../commentluv.php:581
123
+ msgid "has not registered on this site"
124
+ msgstr "chưa đăng ký trên website này"
125
+
126
+ #: ../commentluv.php:703
127
+ msgid "Could not get posts for home blog"
128
+ msgstr "Không thể lấy bài viết từ trang chủ blog"
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 "Nếu bạn đã đăng ký, bạn cần phải đăng nhập để lấy 10 bài viết và chọn"
133
+
134
+ #: ../commentluv.php:783
135
+ #: ../commentluv.php:1235
136
+ msgid "Register"
137
+ msgstr "Đăng ký"
138
+
139
+ #: ../commentluv.php:788
140
+ msgid "recently posted"
141
+ msgstr "đã viết gần đây"
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 "Nếu bạn đăng ký là thành viên trên website của tôi, bạn có thể lấy 10 bài viết gần đây nhất trên blog của bạn để chọn trong phần này."
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 "Nếu thành viên này đã đăng ký trên website của tôi thì họ có thể lấy 10 bài viết gần đây nhất để chọn khi họ bình luận và bạn có thể thấy danh sách những bài viết gần đây nhất của họ trong phần này"
150
+
151
+ #: ../commentluv.php:971
152
+ msgid "Settings"
153
+ msgstr "Thiết lập"
154
+
155
+ #: ../commentluv.php:1010
156
+ msgid "No Posts Were Found!"
157
+ msgstr "Không tìm thấy bài viết nào !"
158
+
159
+ #: ../commentluv.php:1050
160
+ msgid "There is a new version of Commentluv available, please upgrade by visiting this site"
161
+ msgstr "Đã có phiên bản mới hơn của Commentluv, hãy nâng cấp bằng cách truy cập vào website này"
162
+
163
+ #: ../commentluv.php:1053
164
+ msgid "Dismiss notice"
165
+ msgstr "Ẩn nhắc nhở"
166
+
167
+ #: ../commentluv.php:1080
168
+ msgid "CommentLuv Settings v"
169
+ msgstr "Thiết lập CommentLuv v"
170
+
171
+ #: ../commentluv.php:1090
172
+ msgid "Important!"
173
+ msgstr "Quan trọng!"
174
+
175
+ #: ../commentluv.php:1090
176
+ msgid "Subscription Information"
177
+ msgstr "Thông tin tham gia"
178
+
179
+ #: ../commentluv.php:1095
180
+ msgid "CommentLuv 3.0 Premium is coming soon!"
181
+ msgstr "CommentLuv 3.0 Premium sắp phát hành !"
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 "Tôi hứa không bán thông tin hay gửi email spam cho bạn. Bạn sẽ CHỈ nhận email thông tin cập nhật về 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 "Có một phiên bản premium của CommentLuv sắp phát hành cho phép bạn có thêm các điều khiển đáng giá cho plugin làm việc như tên từ khóa, đăng ký tại chỗ và rất nhiều thứ nữa!. Hãy đăng ký để có thể biết sớm nhất có thể khi nó phát hành."
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 "Bạn đã tham gia rồi, nếu bạn không nhận được xác nhận trong vòng 12 tiếng, hãy nhấn vào nút để gửi lại hoặc thử lại nhập lại tại"
194
+
195
+ #: ../commentluv.php:1102
196
+ msgid "Resend Verification"
197
+ msgstr "Gửi lại Xác nhận"
198
+
199
+ #: ../commentluv.php:1104
200
+ msgid "Click to register now!"
201
+ msgstr "Nhấn để đăng ký ngay bây giờ !"
202
+
203
+ #: ../commentluv.php:1119
204
+ msgid "Primary Setting"
205
+ msgstr "Thiết lập Chính"
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 "Video trợ giúp"
214
+
215
+ #: ../commentluv.php:1123
216
+ msgid "Enable CommentLuv?"
217
+ msgstr "Bật CommentLuv?"
218
+
219
+ #: ../commentluv.php:1124
220
+ msgid "Yes"
221
+ msgstr "Có"
222
+
223
+ #: ../commentluv.php:1125
224
+ msgid "No"
225
+ msgstr "Không"
226
+
227
+ #: ../commentluv.php:1130
228
+ msgid "On Posts"
229
+ msgstr "Tại Bài viết"
230
+
231
+ #: ../commentluv.php:1131
232
+ msgid "On Pages"
233
+ msgstr "Tại Trang"
234
+
235
+ #: ../commentluv.php:1132
236
+ msgid "On Both"
237
+ msgstr "Cả hai"
238
+
239
+ #: ../commentluv.php:1137
240
+ msgid "On by default?"
241
+ msgstr "Bật theo mặc định ?"
242
+
243
+ #: ../commentluv.php:1141
244
+ msgid "On for admin?"
245
+ msgstr "Bật dành cho quản trị?"
246
+
247
+ #: ../commentluv.php:1153
248
+ msgid "Appearance"
249
+ msgstr "Giao diện"
250
+
251
+ #: ../commentluv.php:1157
252
+ msgid "Badge"
253
+ msgstr "Khung mẫu"
254
+
255
+ #: ../commentluv.php:1158
256
+ msgid "Custom Image URL"
257
+ msgstr "Tùy chỉnh URL hình ảnh"
258
+
259
+ #: ../commentluv.php:1159
260
+ msgid "Use Text"
261
+ msgstr "Sử dụng chữ"
262
+
263
+ #: ../commentluv.php:1167
264
+ msgid "Default"
265
+ msgstr "Mặc định"
266
+
267
+ #: ../commentluv.php:1168
268
+ msgid "White"
269
+ msgstr "Trắng"
270
+
271
+ #: ../commentluv.php:1169
272
+ msgid "Black"
273
+ msgstr "Đen"
274
+
275
+ #: ../commentluv.php:1170
276
+ msgid "None"
277
+ msgstr "Không"
278
+
279
+ #: ../commentluv.php:1187
280
+ msgid "Link to Commentluv?"
281
+ msgstr "Liên kết đến Commentluv?"
282
+
283
+ #: ../commentluv.php:1194
284
+ msgid "Enable info panel?"
285
+ msgstr "Bật kênh thông tin ?"
286
+
287
+ #: ../commentluv.php:1195
288
+ msgid "Info panel background color"
289
+ msgstr "Màu nền kinh thông tin"
290
+
291
+ #: ../commentluv.php:1196
292
+ msgid "Info panel text color"
293
+ msgstr "Màu chữ kênh thông tin"
294
+
295
+ #: ../commentluv.php:1202
296
+ msgid "Example text and background color"
297
+ msgstr "Màu nền và màu chữ ví dụ"
298
+
299
+ #: ../commentluv.php:1212
300
+ msgid "Messages"
301
+ msgstr "Thông báo"
302
+
303
+ #: ../commentluv.php:1219
304
+ msgid "Text to be displayed in the comment"
305
+ msgstr "Chữ để hiển thị trong phần bình luận"
306
+
307
+ #: ../commentluv.php:1222
308
+ msgid "[name] = The users name"
309
+ msgstr "[name] = Tên username"
310
+
311
+ #: ../commentluv.php:1222
312
+ msgid "[lastpost] = The last blog post link"
313
+ msgstr "[lastpost] = Liên kết bài viết cuối cùng của blog"
314
+
315
+ #: ../commentluv.php:1229
316
+ msgid "Message for unregistered user in the drop down box"
317
+ msgstr "Thông báo cho thành viên chưa đăng ký trong hộp thoại thả xuống"
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 "Thông báo sẽ không được hiển thị nếu bạn không cho phép đăng ký"
323
+
324
+ #: ../commentluv.php:1234
325
+ msgid "Your register link code"
326
+ msgstr "Mã liên kết đăng ký của bạn"
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 "Bạn đã KHÔNG cho phép đăng ký trên blog, bạn có thể làm điều này trong phần Thiết lập/Thiết lập chung"
331
+
332
+ #: ../commentluv.php:1245
333
+ msgid "here"
334
+ msgstr "tại đây"
335
+
336
+ #: ../commentluv.php:1253
337
+ msgid "Message for unregistered user in the info panel"
338
+ msgstr "Thông báo cho thành viên chưa đăng ký bên trong kênh thông tin"
339
+
340
+ #: ../commentluv.php:1268
341
+ msgid "Operational Settings"
342
+ msgstr "Thiết lập điều khiển"
343
+
344
+ #: ../commentluv.php:1275
345
+ msgid "Who to give 10 last posts to choose from when they comment?"
346
+ msgstr "Ai là người có thể lấy 10 bài viết cuối cùng để chọn khi họ bình luận?"
347
+
348
+ #: ../commentluv.php:1276
349
+ msgid "Only Registered Members"
350
+ msgstr "Chỉ thành viên đã đăng ký"
351
+
352
+ #: ../commentluv.php:1277
353
+ msgid "Everybody"
354
+ msgstr "Mọi người"
355
+
356
+ #: ../commentluv.php:1278
357
+ msgid "Nobody"
358
+ msgstr "Không ai cả"
359
+
360
+ #: ../commentluv.php:1285
361
+ msgid "Whose links should be dofollow?"
362
+ msgstr "Liên kết nào sẽ được dofollow?"
363
+
364
+ #: ../commentluv.php:1286
365
+ msgid "Only Registered Members Links"
366
+ msgstr "Chỉ những liên kết thành viên đã đăng ký"
367
+
368
+ #: ../commentluv.php:1287
369
+ msgid "Everybody gets dofollow links"
370
+ msgstr "Mọi người đều liên kết dofollow"
371
+
372
+ #: ../commentluv.php:1288
373
+ msgid "Nobody gets dofollow links"
374
+ msgstr "Không ai dofollow liên kết"
375
+
376
+ #: ../commentluv.php:1299
377
+ msgid "Technical Settings"
378
+ msgstr "Thiết lập kỹ thuật"
379
+
380
+ #: ../commentluv.php:1299
381
+ msgid "Click to open technical settings"
382
+ msgstr "Nhấn để mở thiết lập kỹ thuật"
383
+
384
+ #: ../commentluv.php:1306
385
+ msgid "Please check the help video for this section before changing settings"
386
+ msgstr "Hãy kiểm tra video trợ giúp cho phần này trước khi thay đổi thiết lập"
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 "Trong hầu hết các trường hợp, bạn KHÔNG cần phải thay đổi thiết lập trong phần này trừ khi bạn có một mẫu bình luận riêng, giao diện hoặc bạn đang sử dụng plugin nén dữ liệu hoặc cache"
391
+
392
+ #: ../commentluv.php:1312
393
+ msgid "Compatibility"
394
+ msgstr "Tương thích"
395
+
396
+ #: ../commentluv.php:1316
397
+ msgid "Use manual insert of badge code?"
398
+ msgstr "Sử dụng tự chèn code khung mẫu"
399
+
400
+ #: ../commentluv.php:1320
401
+ msgid "Enable minifying compatibility?"
402
+ msgstr "Bật tính năng tương thích nén"
403
+
404
+ #: ../commentluv.php:1321
405
+ msgid "For caching plugins (places localized code in footer)"
406
+ msgstr "Chỉ dành cho plugin cache (đặt code cục bộ trong phần cuối trang)"
407
+
408
+ #: ../commentluv.php:1326
409
+ msgid "API URL"
410
+ msgstr "API"
411
+
412
+ #: ../commentluv.php:1330
413
+ msgid "URL to use for API"
414
+ msgstr "URL để dùng cho API"
415
+
416
+ #: ../commentluv.php:1334
417
+ msgid "Comment Form Field Values"
418
+ msgstr "Gía trị cho các mẫu nhập bình luận "
419
+
420
+ #: ../commentluv.php:1337
421
+ msgid "Authors Name field name"
422
+ msgstr "Phần Tên tác giả"
423
+
424
+ #: ../commentluv.php:1342
425
+ msgid "Email field name"
426
+ msgstr "Phần Email"
427
+
428
+ #: ../commentluv.php:1347
429
+ msgid "Authors URL field name"
430
+ msgstr "Phần Tác giả URL"
431
+
432
+ #: ../commentluv.php:1352
433
+ msgid "Comment Text Area name"
434
+ msgstr "Phần Chữ bình luận"
435
+
436
+ #: ../commentluv.php:1357
437
+ msgid "Diagnostics Info"
438
+ msgstr "Thông tin chuẩn đoán"
439
+
440
+ #: ../commentluv.php:1375
441
+ msgid "You can copy this information and send it to me if I request it"
442
+ msgstr "Bạn có thể copy thông tin này và gửi nó cho tôi nếu tôi yêu cầu"
443
+
444
+ #: ../commentluv.php:1382
445
+ msgid "Save Settings"
446
+ msgstr "Lưu thiết lập"
447
+
448
+ #: ../commentluv.php:1384
449
+ msgid "Reset Settings"
450
+ msgstr "Khởi tạo lại thiết lập"
451
+
452
+ #: ../commentluv.php:1387
453
+ msgid "Are you sure you want to reset your settings? Press OK to continue"
454
+ msgstr "Bạn có chắc bạn muốn khởi tạo lại thiết lập của bạn? Nhấn OK để tiếp tục"
455
+
456
+ #: ../commentluv.php:1390
457
+ msgid "Reset"
458
+ msgstr "Khởi tạo lại"
459
+
460
+ #: ../commentluv.php:1398
461
+ msgid "Plugin Info"
462
+ msgstr "Thông tin Plugin"
463
+
464
+ #: ../commentluv.php:1401
465
+ msgid "Start Here"
466
+ msgstr "Bắt đầu từ đây"
467
+
468
+ #: ../commentluv.php:1402
469
+ msgid "Author"
470
+ msgstr "Tác giả"
471
+
472
+ #: ../commentluv.php:1403
473
+ msgid "Home Page"
474
+ msgstr "Trang chủ"
475
+
476
+ #: ../commentluv.php:1403
477
+ msgid "Visit www.commentluv.com!"
478
+ msgstr "Ghé thăm www.commentluv.com!"
479
+
480
+ #: ../commentluv.php:1404
481
+ msgid "Social"
482
+ msgstr "Mạng xã hội"
483
+
484
+ #: ../commentluv.php:1405
485
+ msgid "Help"
486
+ msgstr "Trợ giúp"
487
+
488
+ #: ../commentluv.php:1405
489
+ msgid "Help Desk"
490
+ msgstr "Trợ giúp trực tuyến"
491
+
492
+ #: ../commentluv.php:1406
493
+ msgid "Do you like this plugin?"
494
+ msgstr "Bạn có thích plugin này không?"
495
+
496
+ #: ../commentluv.php:1408
497
+ msgid "News"
498
+ msgstr "Tin tức"
499
+
500
+ #: ../commentluv.php:1414
501
+ msgid "Thanks to the following for translations"
502
+ msgstr "Xin chân thành cảm ơn đến những người đã dịch sang ngôn ngữ sau"
503
+
504
+ #: ../commentluv.php:1415
505
+ msgid "Italian"
506
+ msgstr "Tiếng Ý"
507
+
508
+ #: ../commentluv.php:1416
509
+ msgid "Dutch"
510
+ msgstr "Hà Lan"
511
+
512
+ #: ../commentluv.php:1417
513
+ msgid "Polish"
514
+ msgstr "Ba Lan"
515
+
516
+ #: ../commentluv.php:1418
517
+ msgid "Georgian"
518
+ msgstr "Georgia"
519
+
520
+ #: ../commentluv.php:1419
521
+ msgid "Lithuanian"
522
+ msgstr "Lithuanian"
523
+
524
+ #: ../commentluv.php:1420
525
+ msgid "Portuguese"
526
+ msgstr "Bồ Đào Nha"
527
+
528
+ #: ../commentluv.php:1421
529
+ msgid "Malaysian"
530
+ msgstr "Malaysia"
531
+
532
+ #: ../commentluv.php:1422
533
+ msgid "Hindi"
534
+ msgstr "Hindi"
535
+
536
+ #: ../commentluv.php:1423
537
+ msgid "Russian"
538
+ msgstr "Tiếng Nga"
539
+
540
+ #: ../commentluv.php:1424
541
+ msgid "Chinese"
542
+ msgstr "Tiếng Trung quốc"
543
+
544
+ #: ../commentluv.php:1425
545
+ msgid "Hebrew"
546
+ msgstr "Tiếng Do thái"
547
+
548
+ #: ../commentluv.php:1426
549
+ msgid "French"
550
+ msgstr "Tiếng Pháp"
551
+
552
+ #: ../commentluv.php:1428
553
+ msgid "Romanian"
554
+ msgstr "Romani"
555
+
556
+ #: ../commentluv.php:1429
557
+ msgid "German"
558
+ msgstr "Tiếng Đức"
559
+
560
+ #: ../commentluv.php:1430
561
+ msgid "Arabic"
562
+ msgstr "Tiếng Ả Rập"
563
+
564
+ #: ../commentluv.php:1432
565
+ msgid "Want your link here?"
566
+ msgstr "Bạn có muốn liên kết của bạn tại đây?"
567
+
568
+ #: ../commentluv.php:1432
569
+ msgid "How To Submit A Translation"
570
+ msgstr "Cách gửi một bản Dịch thuật"
571
+
572
+ #: ../commentluv.php:1433
573
+ msgid "Special thanks go to the following"
574
+ msgstr "Đặc biệt cảm ơn đến "
575
+
576
+ #: ../commentluv.php:1434
577
+ msgid "CSS Help"
578
+ msgstr "Trợ giúp CSS"
579
+
580
+ #: ../commentluv.php:1435
581
+ msgid "Badge GFX"
582
+ msgstr "Badge GFX"
583
+
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: commentluv, @hishaman (css additions)
3
  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.1
7
- Stable tag: 2.90.9.7
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
 
@@ -26,6 +26,8 @@ You can get a free companion plugin at http://www.commentluv.com
26
 
27
  [youtube http://www.youtube.com/watch?v=7wod9ZtiHaU]
28
 
 
 
29
  Many thanks to the following who provided translations
30
 
31
  Italian [Gianni Diuno](http://gidibao.net/ "Italian translation")
@@ -49,8 +51,11 @@ Norwegian [Hanna](http://www.drommeland.com/ "Norwegian Translation")
49
  French [Jean-Luc Matthys](http://etreheureux.fr/ "French Translation")
50
  Danish [Jimmy Sigenstroem](http://w3blog.dk/ "Danish Translation")
51
  Russian [Max](http://lavo4nik.ru/ "Russian Translation")
52
- Bengali [Amrik Virdi](http://www.explorefeed.com/ "Bengali Translation")
53
  Hebrew [Tobi](http://makemoneyim.com/ "Hebrew Translation")
 
 
 
54
 
55
  == Installation ==
56
 
@@ -80,6 +85,19 @@ Please see the videos in the settings page for explanations of how they work.
80
 
81
  == ChangeLog ==
82
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  = 2.90.9.7 =
84
  * updated : Italian translation by Gianni
85
  * added : make wp_query->is_feed = true if commentluv request detected
@@ -306,9 +324,9 @@ Please see the videos in the settings page for explanations of how they work.
306
 
307
  == Upgrade Notice ==
308
 
309
- = 2.90.9.7 =
310
 
311
- Improved detection of commentluv requests and Italian language update
312
 
313
  == Configuration ==
314
 
3
  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.4
7
+ Stable tag: 2.90.9.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
 
26
 
27
  [youtube http://www.youtube.com/watch?v=7wod9ZtiHaU]
28
 
29
+ Now with updated function to allow you to delete or spam comments where the user has removed their url after getting a last blog post link (helps prevents spammer abuse)
30
+
31
  Many thanks to the following who provided translations
32
 
33
  Italian [Gianni Diuno](http://gidibao.net/ "Italian translation")
51
  French [Jean-Luc Matthys](http://etreheureux.fr/ "French Translation")
52
  Danish [Jimmy Sigenstroem](http://w3blog.dk/ "Danish Translation")
53
  Russian [Max](http://lavo4nik.ru/ "Russian Translation")
54
+ Bengali [Amrik Virdi](http://www.monetizeblogging.com/ "Bengali Translation")
55
  Hebrew [Tobi](http://makemoneyim.com/ "Hebrew Translation")
56
+ Vietnamese [Xman](http://thegioimanguon.com "Vietnamese Translation")
57
+ Hungarian [Bruno](http://no1tutorials.net/ "Hungarian Translation")
58
+ Slovak [Viliam Brozman](http://www.brozman.sk/blog/ "Slovak Translation")
59
 
60
  == Installation ==
61
 
85
 
86
  == ChangeLog ==
87
 
88
+ = 2.90.9.9 =
89
+ * fixed : trying updated detection routines to be compatible with new WP 3.4 query code
90
+
91
+ = 2.90.9.8 =
92
+ * added : Hungarian Translation
93
+ * added : Vietnamese Translation
94
+ * added : Slovak Translation
95
+ * fixed : send_feed only to send post_type of post
96
+ * updated : fall back to /feed/ in url for fetch feed if no feed found
97
+ * updated : add query arg to site url when fetching feed so w3 total cache knows not to cache the response
98
+ * updated : user can now choose to delete or spam a comment that has a link but no author url (prevent spammer abuse)
99
+ * updated : Slovak flag fixed
100
+
101
  = 2.90.9.7 =
102
  * updated : Italian translation by Gianni
103
  * added : make wp_query->is_feed = true if commentluv request detected
324
 
325
  == Upgrade Notice ==
326
 
327
+ = 2.90.9.8 =
328
 
329
+ More language packs added for Hungarian, Slovakian and Vietnamese and improved fetching routine
330
 
331
  == Configuration ==
332