Comments – wpDiscuz - Version 4.1.1

Version Description

Download this release

Release Info

Developer AdvancedCoding
Plugin Icon 128x128 Comments – wpDiscuz
Version 4.1.1
Comparing to
See all releases

Code changes from version 4.1.0 to 4.1.1

assets/js/wpdiscuz-options.js CHANGED
@@ -7,6 +7,21 @@ jQuery(document).ready(function ($) {
7
  }
8
  }
9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  if ($('#show_sorting_buttons').attr('checked')) {
11
  $('#row_mostVotedByDefault').removeClass('wc-hidden');
12
  } else {
7
  }
8
  }
9
 
10
+ if ($('#commentListLoadLazy').is(':checked')) {
11
+ $('#row_lazyLoadOnPageLoad').removeClass('wc-hidden');
12
+ } else {
13
+ $('#row_lazyLoadOnPageLoad').addClass('wc-hidden');
14
+ }
15
+
16
+ $('.commentListLoadType').change(function () {
17
+ console.log($(this).attr('id'));
18
+ if ($(this).is(':checked') && $(this).hasClass('commentListLoadLazy')) {
19
+ $('#row_lazyLoadOnPageLoad').removeClass('wc-hidden');
20
+ } else {
21
+ $('#row_lazyLoadOnPageLoad').addClass('wc-hidden');
22
+ }
23
+ });
24
+
25
  if ($('#show_sorting_buttons').attr('checked')) {
26
  $('#row_mostVotedByDefault').removeClass('wc-hidden');
27
  } else {
assets/js/wpdiscuz.js CHANGED
@@ -8,6 +8,7 @@ jQuery(document).ready(function ($) {
8
  var wpdiscuzRecaptcha = wpdiscuzAjaxObj.wpdiscuz_options.wpDiscuzReCaptcha;
9
  var isGoodbyeCaptchaActive = wpdiscuzAjaxObj.wpdiscuz_options.isGoodbyeCaptchaActive;
10
  var commentListLoadType = wpdiscuzAjaxObj.wpdiscuz_options.commentListLoadType;
 
11
  var wordpressIsPaginate = wpdiscuzAjaxObj.wpdiscuz_options.wordpressIsPaginate;
12
  var wpdiscuzPostId = wpdiscuzAjaxObj.wpdiscuz_options.wc_post_id;
13
  var commentListUpdateType = wpdiscuzAjaxObj.wpdiscuz_options.commentListUpdateType;
@@ -17,7 +18,7 @@ jQuery(document).ready(function ($) {
17
  var wpdiscuzCommentOrder = wpdiscuzAjaxObj.wpdiscuz_options.wordpress_comment_order;
18
  var commentsVoteOrder = wpdiscuzAjaxObj.wpdiscuz_options.commentsVoteOrder;
19
  var storeCommenterData = wpdiscuzAjaxObj.wpdiscuz_options.storeCommenterData;
20
- var wpdiscuzLoadCount = commentListLoadType == 2 ? 0 : 1;
21
  var wpdiscuzCommentOrderBy = 'comment_date_gmt';
22
  var wpdiscuzReplyArray = [];
23
  var wpdiscuzCommentArray = [];
8
  var wpdiscuzRecaptcha = wpdiscuzAjaxObj.wpdiscuz_options.wpDiscuzReCaptcha;
9
  var isGoodbyeCaptchaActive = wpdiscuzAjaxObj.wpdiscuz_options.isGoodbyeCaptchaActive;
10
  var commentListLoadType = wpdiscuzAjaxObj.wpdiscuz_options.commentListLoadType;
11
+ var lazyLoadOnPageLoad = wpdiscuzAjaxObj.wpdiscuz_options.lazyLoadOnPageLoad;
12
  var wordpressIsPaginate = wpdiscuzAjaxObj.wpdiscuz_options.wordpressIsPaginate;
13
  var wpdiscuzPostId = wpdiscuzAjaxObj.wpdiscuz_options.wc_post_id;
14
  var commentListUpdateType = wpdiscuzAjaxObj.wpdiscuz_options.commentListUpdateType;
18
  var wpdiscuzCommentOrder = wpdiscuzAjaxObj.wpdiscuz_options.wordpress_comment_order;
19
  var commentsVoteOrder = wpdiscuzAjaxObj.wpdiscuz_options.commentsVoteOrder;
20
  var storeCommenterData = wpdiscuzAjaxObj.wpdiscuz_options.storeCommenterData;
21
+ var wpdiscuzLoadCount = commentListLoadType == 2 && !lazyLoadOnPageLoad ? 0 : 1;
22
  var wpdiscuzCommentOrderBy = 'comment_date_gmt';
23
  var wpdiscuzReplyArray = [];
24
  var wpdiscuzCommentArray = [];
class.WpdiscuzCore.php CHANGED
@@ -3,7 +3,7 @@
3
  /*
4
  * Plugin Name: wpDiscuz
5
  * Description: Better comment system. Wordpress post comments and discussion plugin. Allows your visitors discuss, vote for comments and share.
6
- * Version: 4.1.0
7
  * Author: gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)
8
  * Author URI: https://gvectors.com/
9
  * Plugin URI: http://wpdiscuz.com/
@@ -678,14 +678,14 @@ class WpdiscuzCore implements WpDiscuzConstants {
678
  $postId = $post && $post->ID ? $post->ID : '';
679
  $defaults = $this->getDefaultCommentsArgs($postId);
680
  $this->commentsArgs = wp_parse_args($args, $defaults);
681
- $isLazyFirstLoad = $this->commentsArgs['first_load'] && $this->optionsSerialized->commentListLoadType == 2;
682
  do_action('wpdiscuz_before_getcomments', $this->commentsArgs, $currentUser, $args);
683
  $commentData = array();
684
  $commentListArgs = $this->getCommentListArgs($this->commentsArgs['post_id']);
685
  $commentList = $this->_getWPComments($commentListArgs, $commentData);
686
  $commentListArgs['current_user'] = $currentUser;
687
- $commentListArgs[self::COOKIE_LAST_VISIT] = isset($this->commentsArgs[self::COOKIE_LAST_VISIT]) ? $this->commentsArgs[self::COOKIE_LAST_VISIT] : '';
688
- $wcWpComments = $isLazyFirstLoad ? '' : wp_list_comments($commentListArgs, $commentList);
689
  $commentData['comment_list'] = $wcWpComments;
690
  $this->commentsArgs['caller'] = '';
691
  return $commentData;
@@ -694,10 +694,10 @@ class WpdiscuzCore implements WpDiscuzConstants {
694
  private function _getWPComments(&$commentListArgs, &$commentData) {
695
  $commentList = array();
696
  if (!$this->optionsSerialized->wordpressIsPaginate) {
697
- $isLazyFirstLoad = $this->commentsArgs['first_load'] && $this->optionsSerialized->commentListLoadType == 2;
698
  $this->commentsArgs['comment__in'] = $this->dbManager->getCommentList($this->commentsArgs);
699
  $commentData['last_parent_id'] = $this->commentsArgs['comment__in'] ? $this->commentsArgs['comment__in'][count($this->commentsArgs['comment__in']) - 1] : 0;
700
- if ($isLazyFirstLoad) {
701
  $commentData['last_parent_id'] = 0;
702
  $this->dbManager->isShowLoadMore = $this->commentsArgs['comment__in'] ? true : false;
703
  $this->commentsArgs['comment__in'] = '';
3
  /*
4
  * Plugin Name: wpDiscuz
5
  * Description: Better comment system. Wordpress post comments and discussion plugin. Allows your visitors discuss, vote for comments and share.
6
+ * Version: 4.1.1
7
  * Author: gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)
8
  * Author URI: https://gvectors.com/
9
  * Plugin URI: http://wpdiscuz.com/
678
  $postId = $post && $post->ID ? $post->ID : '';
679
  $defaults = $this->getDefaultCommentsArgs($postId);
680
  $this->commentsArgs = wp_parse_args($args, $defaults);
681
+ $islazyLoadOnPageLoad = isset($this->commentsArgs['first_load']) && $this->commentsArgs['first_load'] && $this->optionsSerialized->commentListLoadType == 2 && !$this->optionsSerialized->lazyLoadOnPageLoad;
682
  do_action('wpdiscuz_before_getcomments', $this->commentsArgs, $currentUser, $args);
683
  $commentData = array();
684
  $commentListArgs = $this->getCommentListArgs($this->commentsArgs['post_id']);
685
  $commentList = $this->_getWPComments($commentListArgs, $commentData);
686
  $commentListArgs['current_user'] = $currentUser;
687
+ $commentListArgs[self::COOKIE_LAST_VISIT] = isset($this->commentsArgs[self::COOKIE_LAST_VISIT]) ? $this->commentsArgs[self::COOKIE_LAST_VISIT] : '';
688
+ $wcWpComments = $islazyLoadOnPageLoad ? '' : wp_list_comments($commentListArgs, $commentList);
689
  $commentData['comment_list'] = $wcWpComments;
690
  $this->commentsArgs['caller'] = '';
691
  return $commentData;
694
  private function _getWPComments(&$commentListArgs, &$commentData) {
695
  $commentList = array();
696
  if (!$this->optionsSerialized->wordpressIsPaginate) {
697
+ $islazyLoadOnPageLoad = isset($this->commentsArgs['first_load']) && $this->commentsArgs['first_load'] && $this->optionsSerialized->commentListLoadType == 2 && !$this->optionsSerialized->lazyLoadOnPageLoad;
698
  $this->commentsArgs['comment__in'] = $this->dbManager->getCommentList($this->commentsArgs);
699
  $commentData['last_parent_id'] = $this->commentsArgs['comment__in'] ? $this->commentsArgs['comment__in'][count($this->commentsArgs['comment__in']) - 1] : 0;
700
+ if ($islazyLoadOnPageLoad) {
701
  $commentData['last_parent_id'] = 0;
702
  $this->dbManager->isShowLoadMore = $this->commentsArgs['comment__in'] ? true : false;
703
  $this->commentsArgs['comment__in'] = '';
languages/wpdiscuz-ru_RU.mo CHANGED
Binary file
languages/wpdiscuz-ru_RU.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpDiscuz - Wordpress Comments\n"
4
  "POT-Creation-Date: 2015-05-28 23:58+0400\n"
5
- "PO-Revision-Date: 2015-08-18 16:14+0300\n"
6
  "Last-Translator: advancedcoding <advancedcoding@mail.ru>\n"
7
  "Language-Team: advancedcoding <advancedcoding@mail.ru>\n"
8
  "Language: ru\n"
@@ -701,7 +701,6 @@ msgstr ""
701
  "комментарий в соответствии с выбранным вариантом подписки. <br/> Для "
702
  "активации нажмите подтверждение ниже. Если вы считаете, что это ошибка, "
703
  "проигнорируйте это сообщение, и мы никогда не будем беспокоить вас снова. "
704
- "<br/> С уважением, команда Bowandtie.ru"
705
 
706
  #: options/phrases-layout/phrases-form.php:2
707
  msgid "Form Template Phrases"
2
  msgstr ""
3
  "Project-Id-Version: wpDiscuz - Wordpress Comments\n"
4
  "POT-Creation-Date: 2015-05-28 23:58+0400\n"
5
+ "PO-Revision-Date: 2017-11-15 15:22+0400\n"
6
  "Last-Translator: advancedcoding <advancedcoding@mail.ru>\n"
7
  "Language-Team: advancedcoding <advancedcoding@mail.ru>\n"
8
  "Language: ru\n"
701
  "комментарий в соответствии с выбранным вариантом подписки. <br/> Для "
702
  "активации нажмите подтверждение ниже. Если вы считаете, что это ошибка, "
703
  "проигнорируйте это сообщение, и мы никогда не будем беспокоить вас снова. "
 
704
 
705
  #: options/phrases-layout/phrases-form.php:2
706
  msgid "Form Template Phrases"
languages/wpdiscuz.pot CHANGED
@@ -3,8 +3,8 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: wpDiscuz\n"
6
- "POT-Creation-Date: 2017-10-25 20:39+0400\n"
7
- "PO-Revision-Date: 2017-10-25 20:39+0400\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
@@ -20,7 +20,7 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
- #: class.WpdiscuzCore.php:787 class.WpdiscuzCore.php:970
24
  #: options/options-layouts/settings-social.php:40
25
  #: options/options-layouts/settings-social.php:42
26
  #: options/options-layouts/settings-social.php:44
@@ -28,41 +28,41 @@ msgstr ""
28
  msgid "Settings"
29
  msgstr ""
30
 
31
- #: class.WpdiscuzCore.php:789 class.WpdiscuzCore.php:972
32
  msgid "Phrases"
33
  msgstr ""
34
 
35
- #: class.WpdiscuzCore.php:791
36
  msgid "Tools"
37
  msgstr ""
38
 
39
- #: class.WpdiscuzCore.php:792 options/html-options.php:22
40
  #: options/html-options.php:62 options/options-layouts/settings-addons.php:7
41
  msgid "Addons"
42
  msgstr ""
43
 
44
- #: class.WpdiscuzCore.php:803
45
  msgid "Do you really want to reset all options?"
46
  msgstr ""
47
 
48
- #: class.WpdiscuzCore.php:804
49
  msgid "Do you really want to remove voting data?"
50
  msgstr ""
51
 
52
- #: class.WpdiscuzCore.php:1013 options/phrases-layouts/phrases-comment.php:56
53
  msgid "Admin"
54
  msgstr ""
55
 
56
- #: class.WpdiscuzCore.php:1015 class.WpdiscuzCore.php:1024
57
  #: options/phrases-layouts/phrases-comment.php:58
58
  msgid "Author"
59
  msgstr ""
60
 
61
- #: class.WpdiscuzCore.php:1019 options/phrases-layouts/phrases-comment.php:64
62
  msgid "Member"
63
  msgstr ""
64
 
65
- #: class.WpdiscuzCore.php:1025 options/phrases-layouts/phrases-comment.php:62
66
  msgid "Guest"
67
  msgstr ""
68
 
@@ -114,7 +114,7 @@ msgstr ""
114
  msgid "Post IDs"
115
  msgstr ""
116
 
117
- #: forms/wpDiscuzForm.php:166 forms/wpdFormAttr/Form.php:586
118
  msgid "Language"
119
  msgstr ""
120
 
@@ -144,7 +144,7 @@ msgid "Add Field"
144
  msgstr ""
145
 
146
  #: forms/wpDiscuzForm.php:217 forms/wpdFormAttr/Field/Field.php:61
147
- #: options/class.WpdiscuzOptionsSerialized.php:620
148
  #: options/phrases-layouts/phrases-comment.php:19
149
  msgid "Edit"
150
  msgstr ""
@@ -161,7 +161,7 @@ msgstr ""
161
  msgid "Permission Denied !!!"
162
  msgstr ""
163
 
164
- #: forms/wpDiscuzForm.php:251 forms/wpdFormAttr/Form.php:556
165
  #: forms/wpdFormAttr/html/admin-form-fields-list.php:18
166
  #: options/options-layouts/settings-customfields.php:7
167
  msgid "Custom Fields"
@@ -176,7 +176,7 @@ msgid "Default Form"
176
  msgstr ""
177
 
178
  #: forms/wpDiscuzForm.php:386 forms/wpDiscuzForm.php:394
179
- #: forms/wpdFormAttr/Form.php:621
180
  msgid "Leave a Reply"
181
  msgstr ""
182
 
@@ -195,13 +195,13 @@ msgstr ""
195
  #: forms/wpdFormAttr/Field/SelectField.php:12
196
  #: forms/wpdFormAttr/Field/TextAreaField.php:13
197
  #: forms/wpdFormAttr/Field/TextField.php:12
198
- #: forms/wpdFormAttr/Field/UrlField.php:12 forms/wpdFormAttr/Form.php:713
199
  msgid "Name"
200
  msgstr ""
201
 
202
  #: forms/wpDiscuzForm.php:411 forms/wpdFormAttr/Field/DefaultField/Email.php:64
203
- #: forms/wpdFormAttr/Form.php:720
204
- #: options/class.WpdiscuzOptionsSerialized.php:607 options/html-phrases.php:25
205
  msgid "Email"
206
  msgstr ""
207
 
@@ -210,8 +210,8 @@ msgid "WebSite URL"
210
  msgstr ""
211
 
212
  #: forms/wpDiscuzForm.php:416
213
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:78
214
- #: forms/wpdFormAttr/Form.php:743
215
  msgid "Post Comment"
216
  msgstr ""
217
 
@@ -422,7 +422,7 @@ msgid "Show for logged in users"
422
  msgstr ""
423
 
424
  #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:107
425
- #: forms/wpdFormAttr/Form.php:736
426
  msgid "Code"
427
  msgstr ""
428
 
@@ -442,6 +442,10 @@ msgstr ""
442
  msgid "PNG image creation disabled"
443
  msgstr ""
444
 
 
 
 
 
445
  #: forms/wpdFormAttr/Field/DefaultField/Submit.php:20
446
  msgid "Button Text"
447
  msgstr ""
@@ -451,7 +455,7 @@ msgid "Enable"
451
  msgstr ""
452
 
453
  #: forms/wpdFormAttr/Field/DefaultField/Website.php:83
454
- #: forms/wpdFormAttr/Form.php:727
455
  msgid "Website"
456
  msgstr ""
457
 
@@ -488,166 +492,171 @@ msgstr ""
488
  msgid "New value new line"
489
  msgstr ""
490
 
491
- #: forms/wpdFormAttr/Form.php:595
492
  msgid "Allow guests to comment"
493
  msgstr ""
494
 
495
- #: forms/wpdFormAttr/Form.php:599 forms/wpdFormAttr/Form.php:610
496
  msgid "Yes"
497
  msgstr ""
498
 
499
- #: forms/wpdFormAttr/Form.php:601 forms/wpdFormAttr/Form.php:612
500
  msgid "No"
501
  msgstr ""
502
 
503
- #: forms/wpdFormAttr/Form.php:606
504
  msgid "Enable subscription bar"
505
  msgstr ""
506
 
507
- #: forms/wpdFormAttr/Form.php:617
508
  msgid "Comment form header text"
509
  msgstr ""
510
 
511
- #: forms/wpdFormAttr/Form.php:626
512
  msgid "Display comment form for post types"
513
  msgstr ""
514
 
515
- #: forms/wpdFormAttr/Form.php:633
516
  msgid ""
517
  "The red marked post types are already attached to other comment form. If you "
518
  "set this form too, the old forms will not be used for them."
519
  msgstr ""
520
 
521
- #: forms/wpdFormAttr/Form.php:655
522
  msgid "Display comment form for post IDs"
523
  msgstr ""
524
 
525
- #: forms/wpdFormAttr/Form.php:656
526
  msgid ""
527
  "You can use this form for certain posts/pages specified by comma separated "
528
  "IDs."
529
  msgstr ""
530
 
531
- #: forms/wpdFormAttr/Form.php:667
532
  msgid "Comment Text Field"
533
  msgstr ""
534
 
535
- #: forms/wpdFormAttr/Form.php:682
536
  msgid "ADD ROW"
537
  msgstr ""
538
 
 
 
 
 
 
539
  #: forms/wpdFormAttr/html/admin-form-fields-list.php:7
540
  msgid "Comment Form Fields"
541
  msgstr ""
542
 
543
- #: options/class.WpdiscuzOptions.php:24 options/class.WpdiscuzOptions.php:101
544
- #: options/class.WpdiscuzOptions.php:219
545
  msgid "Hacker?"
546
  msgstr ""
547
 
548
- #: options/class.WpdiscuzOptions.php:92
549
  msgid "Settings updated"
550
  msgstr ""
551
 
552
- #: options/class.WpdiscuzOptions.php:208
553
  msgid "Phrases updated"
554
  msgstr ""
555
 
556
- #: options/class.WpdiscuzOptions.php:254
557
  msgid ""
558
  "Brings an ocean of emotions to your comments. It comes with an awesome smile "
559
  "package."
560
  msgstr ""
561
 
562
- #: options/class.WpdiscuzOptions.php:255
563
  msgid ""
564
  "Extended information about comment author with Profile, Activity, Votes and "
565
  "Subscriptions Tabs on pop-up window."
566
  msgstr ""
567
 
568
- #: options/class.WpdiscuzOptions.php:256
569
  msgid ""
570
  "Total control over comment subscriptions. Full list, monitor, manage, "
571
  "filter, unsubscribe, confirm..."
572
  msgstr ""
573
 
574
- #: options/class.WpdiscuzOptions.php:257
575
  msgid ""
576
  "A full-fledged tool-kit for advertising in comment section of your website. "
577
  "Separate banner and ad managment."
578
  msgstr ""
579
 
580
- #: options/class.WpdiscuzOptions.php:258
581
  msgid ""
582
  "Allows to mention comments and users in comment text using #comment-id and "
583
  "@username tags."
584
  msgstr ""
585
 
586
- #: options/class.WpdiscuzOptions.php:259
587
  msgid ""
588
  "See comment likers and voters of each comment. Adds user reputation and "
589
  "badges based on received likes."
590
  msgstr ""
591
 
592
- #: options/class.WpdiscuzOptions.php:260
593
  msgid ""
594
  "Comment reporting tools. Auto-moderates comments based on number of flags "
595
  "and dislikes."
596
  msgstr ""
597
 
598
- #: options/class.WpdiscuzOptions.php:261
599
  msgid ""
600
  "Adds a smart and intuitive AJAX \"Translate\" button with 60 language "
601
  "options. Uses free translation API."
602
  msgstr ""
603
 
604
- #: options/class.WpdiscuzOptions.php:262
605
  msgid ""
606
  "AJAX powered front-end comment search. It starts searching while you type "
607
  "search words. "
608
  msgstr ""
609
 
610
- #: options/class.WpdiscuzOptions.php:263
611
  msgid ""
612
  "Most voted comments, Active comment threads, Most commented posts, Active "
613
  "comment authors"
614
  msgstr ""
615
 
616
- #: options/class.WpdiscuzOptions.php:264
617
  msgid ""
618
  "All in one powerful yet simple admin toolkit to moderate comments on front-"
619
  "end."
620
  msgstr ""
621
 
622
- #: options/class.WpdiscuzOptions.php:265
623
  msgid ""
624
  "Extended comment attachment system. Allows to upload images, videos, audios "
625
  "and other file types."
626
  msgstr ""
627
 
628
- #: options/class.WpdiscuzOptions.php:266
629
  msgid ""
630
  "Adds No CAPTCHA on all comment forms. Stops spam and bot comments with "
631
  "Google reCAPTCHA"
632
  msgstr ""
633
 
634
- #: options/class.WpdiscuzOptions.php:267
635
  msgid ""
636
  "Integrates myCRED Badges and Ranks. Converts wpDiscuz comment votes/likes to "
637
  "myCRED points. "
638
  msgstr ""
639
 
640
- #: options/class.WpdiscuzOptions.php:268
641
  msgid ""
642
  "Allows censoring comment words. Filters comments and replaces those phrases "
643
  "with custom words."
644
  msgstr ""
645
 
646
- #: options/class.WpdiscuzOptions.php:274
647
  msgid "Custom Comment Forms"
648
  msgstr ""
649
 
650
- #: options/class.WpdiscuzOptions.php:275
651
  msgid ""
652
  "You can create custom comment forms with wpDiscuz. wpDiscuz 4 comes with "
653
  "custom comment forms and fields. You can create custom comment forms for "
@@ -655,63 +664,63 @@ msgid ""
655
  "eaxample: text, dropdown, rating, checkboxes, etc..."
656
  msgstr ""
657
 
658
- #: options/class.WpdiscuzOptions.php:278
659
  msgid "Emoticons"
660
  msgstr ""
661
 
662
- #: options/class.WpdiscuzOptions.php:279
663
  msgid ""
664
  "You can add more emotions to your comments using wpDiscuz Emoticons addon."
665
  msgstr ""
666
 
667
- #: options/class.WpdiscuzOptions.php:282
668
  msgid "Ads Manager"
669
  msgstr ""
670
 
671
- #: options/class.WpdiscuzOptions.php:283
672
  msgid ""
673
  "Increase your income using ad banners. Comment area is the most active "
674
  "sections for advertising. wpDiscuz Ads Manager addon is designed to help you "
675
  "add banners and control ads in this section."
676
  msgstr ""
677
 
678
- #: options/class.WpdiscuzOptions.php:286
679
  msgid "User and Comment Mentioning"
680
  msgstr ""
681
 
682
- #: options/class.WpdiscuzOptions.php:287
683
  msgid ""
684
  "Using wpDiscuz User &amp; Comment Mentioning addon you can allow commenters "
685
  "mention comments and users in comment text using #comment-id and @username "
686
  "tags."
687
  msgstr ""
688
 
689
- #: options/class.WpdiscuzOptions.php:290
690
  msgid "Advanced Likers"
691
  msgstr ""
692
 
693
- #: options/class.WpdiscuzOptions.php:291
694
  msgid ""
695
  "wpDiscuz Advanced Likers addon displays likers and voters of each comment. "
696
  "Adds user reputation and badges based on received likes."
697
  msgstr ""
698
 
699
- #: options/class.WpdiscuzOptions.php:294
700
  msgid "Report and Flagging"
701
  msgstr ""
702
 
703
- #: options/class.WpdiscuzOptions.php:295
704
  msgid ""
705
  "Let your commenters help you to determine and remove spam comments. wpDiscuz "
706
  "Report and Flagging addon comes with comment reporting tools. Automaticaly "
707
  "auto-moderates comments based on number of flags and dislikes."
708
  msgstr ""
709
 
710
- #: options/class.WpdiscuzOptions.php:298
711
  msgid "Comment Translate"
712
  msgstr ""
713
 
714
- #: options/class.WpdiscuzOptions.php:299
715
  msgid ""
716
  "In most cases the big part of your visitors are not a native speakers of "
717
  "your language. Make your comments comprehensible for all visitors using "
@@ -720,11 +729,11 @@ msgid ""
720
  "translation API."
721
  msgstr ""
722
 
723
- #: options/class.WpdiscuzOptions.php:302
724
  msgid "Comment Search"
725
  msgstr ""
726
 
727
- #: options/class.WpdiscuzOptions.php:303
728
  msgid ""
729
  "You can let website visitor search in comments. It's always more attractive "
730
  "to find a comment about something that interest you. Using wpDiscuz Comment "
@@ -732,260 +741,260 @@ msgid ""
732
  "above comment list."
733
  msgstr ""
734
 
735
- #: options/class.WpdiscuzOptions.php:306
736
  msgid "wpDiscuz Widgets"
737
  msgstr ""
738
 
739
- #: options/class.WpdiscuzOptions.php:307
740
  msgid ""
741
  "More Comment Widgets! Most voted comments, Active comment threads, Most "
742
  "commented posts, Active comment authors widgets are available in wpDiscuz "
743
  "Widgets Addon"
744
  msgstr ""
745
 
746
- #: options/class.WpdiscuzOptions.php:310
747
  msgid "Front-end Moderation"
748
  msgstr ""
749
 
750
- #: options/class.WpdiscuzOptions.php:311
751
  msgid ""
752
  "You can moderate comments on front-end using all in one powerful yet simple "
753
  "wpDiscuz Frontend Moderation addon."
754
  msgstr ""
755
 
756
- #: options/class.WpdiscuzOptions.php:314
757
  msgid "Media Uploader"
758
  msgstr ""
759
 
760
- #: options/class.WpdiscuzOptions.php:315
761
  msgid ""
762
  "You can let website visitors attach images and files to comments and embed "
763
  "video/audio content using wpDiscuz Media Uploader addon."
764
  msgstr ""
765
 
766
- #: options/class.WpdiscuzOptions.php:318
767
  msgid "Google ReCaptcha"
768
  msgstr ""
769
 
770
- #: options/class.WpdiscuzOptions.php:319
771
  msgid ""
772
  "Advanced spam protection with wpDiscuz Google reCAPTCHA addon. This addon "
773
  "adds No-CAPTCHA reCAPTCHA on all comment forms. Stops spam and bot comments."
774
  msgstr ""
775
 
776
- #: options/class.WpdiscuzOptions.php:333
777
  msgid "New Addons are available for wpDiscuz Comments Plugin"
778
  msgstr ""
779
 
780
- #: options/class.WpdiscuzOptions.php:340 options/class.WpdiscuzOptions.php:346
781
  msgid "Go to wpDiscuz Addons subMenu"
782
  msgstr ""
783
 
784
- #: options/class.WpdiscuzOptions.php:377
785
  msgid "Do you know?"
786
  msgstr ""
787
 
788
- #: options/class.WpdiscuzOptions.php:389
789
  msgid "More info"
790
  msgstr ""
791
 
792
- #: options/class.WpdiscuzOptionsSerialized.php:601
793
  msgid "Be the First to Comment!"
794
  msgstr ""
795
 
796
- #: options/class.WpdiscuzOptionsSerialized.php:602 options/html-phrases.php:23
797
  #: options/phrases-layouts/phrases-general.php:15
798
  msgid "Comment"
799
  msgstr ""
800
 
801
- #: options/class.WpdiscuzOptionsSerialized.php:603
802
  msgid "Comments"
803
  msgstr ""
804
 
805
- #: options/class.WpdiscuzOptionsSerialized.php:604
806
  msgid "on"
807
  msgstr ""
808
 
809
- #: options/class.WpdiscuzOptionsSerialized.php:605
810
  msgid "Start the discussion"
811
  msgstr ""
812
 
813
- #: options/class.WpdiscuzOptionsSerialized.php:606
814
  msgid "Join the discussion"
815
  msgstr ""
816
 
817
- #: options/class.WpdiscuzOptionsSerialized.php:608
818
  #: options/phrases-layouts/phrases-form.php:23
819
  #: options/phrases-layouts/phrases-form.php:24
820
  msgid "Notify of"
821
  msgstr ""
822
 
823
- #: options/class.WpdiscuzOptionsSerialized.php:609
824
  #: options/phrases-layouts/phrases-form.php:28
825
  msgid "new follow-up comments"
826
  msgstr ""
827
 
828
- #: options/class.WpdiscuzOptionsSerialized.php:610
829
  msgid "new replies to my comments"
830
  msgstr ""
831
 
832
- #: options/class.WpdiscuzOptionsSerialized.php:611
833
  #: options/phrases-layouts/phrases-form.php:36
834
  msgid "Notify of new replies to this comment"
835
  msgstr ""
836
 
837
- #: options/class.WpdiscuzOptionsSerialized.php:612
838
  #: options/phrases-layouts/phrases-form.php:39
839
  #: options/phrases-layouts/phrases-form.php:40
840
  msgid "Sort by"
841
  msgstr ""
842
 
843
- #: options/class.WpdiscuzOptionsSerialized.php:613
844
  #: options/phrases-layouts/phrases-form.php:43
845
  #: options/phrases-layouts/phrases-form.php:44
846
  msgid "newest"
847
  msgstr ""
848
 
849
- #: options/class.WpdiscuzOptionsSerialized.php:614
850
  #: options/phrases-layouts/phrases-form.php:47
851
  #: options/phrases-layouts/phrases-form.php:48
852
  msgid "oldest"
853
  msgstr ""
854
 
855
- #: options/class.WpdiscuzOptionsSerialized.php:615
856
  #: options/phrases-layouts/phrases-form.php:51
857
  #: options/phrases-layouts/phrases-form.php:52
858
  msgid "most voted"
859
  msgstr ""
860
 
861
- #: options/class.WpdiscuzOptionsSerialized.php:616
862
  msgid "Load More Comments"
863
  msgstr ""
864
 
865
- #: options/class.WpdiscuzOptionsSerialized.php:617
866
  #: options/phrases-layouts/phrases-general.php:31
867
  msgid "Load Rest of Comments"
868
  msgstr ""
869
 
870
- #: options/class.WpdiscuzOptionsSerialized.php:618
871
  #: options/phrases-layouts/phrases-comment.php:11
872
  msgid "Reply"
873
  msgstr ""
874
 
875
- #: options/class.WpdiscuzOptionsSerialized.php:619
876
  #: options/phrases-layouts/phrases-comment.php:15
877
  msgid "Share"
878
  msgstr ""
879
 
880
- #: options/class.WpdiscuzOptionsSerialized.php:621
881
  #: options/phrases-layouts/phrases-comment.php:23
882
  msgid "Share On Facebook"
883
  msgstr ""
884
 
885
- #: options/class.WpdiscuzOptionsSerialized.php:622
886
  #: options/phrases-layouts/phrases-comment.php:27
887
  msgid "Share On Twitter"
888
  msgstr ""
889
 
890
- #: options/class.WpdiscuzOptionsSerialized.php:623
891
  #: options/phrases-layouts/phrases-comment.php:31
892
  msgid "Share On Google"
893
  msgstr ""
894
 
895
- #: options/class.WpdiscuzOptionsSerialized.php:624
896
  #: options/phrases-layouts/phrases-comment.php:35
897
  msgid "Share On VKontakte"
898
  msgstr ""
899
 
900
- #: options/class.WpdiscuzOptionsSerialized.php:625
901
  #: options/phrases-layouts/phrases-comment.php:39
902
  msgid "Share On Odnoklassniki"
903
  msgstr ""
904
 
905
- #: options/class.WpdiscuzOptionsSerialized.php:626
906
  #: options/phrases-layouts/phrases-comment.php:43
907
  msgid "Hide Replies"
908
  msgstr ""
909
 
910
- #: options/class.WpdiscuzOptionsSerialized.php:627
911
  #: options/phrases-layouts/phrases-comment.php:47
912
  msgid "Show Replies"
913
  msgstr ""
914
 
915
- #: options/class.WpdiscuzOptionsSerialized.php:628
916
  #: options/phrases-layouts/phrases-general.php:36
917
  msgid "New Comment"
918
  msgstr ""
919
 
920
- #: options/class.WpdiscuzOptionsSerialized.php:629
921
  msgid "New comment on the discussion section you've been interested in"
922
  msgstr ""
923
 
924
- #: options/class.WpdiscuzOptionsSerialized.php:630
925
  #: options/phrases-layouts/phrases-email.php:20
926
  #: options/phrases-layouts/phrases-general.php:44
927
- #: utils/class.WpdiscuzEmailHelper.php:158
928
  msgid "New Reply"
929
  msgstr ""
930
 
931
- #: options/class.WpdiscuzOptionsSerialized.php:631
932
- #: utils/class.WpdiscuzEmailHelper.php:159
933
  msgid "New reply on the discussion section you've been interested in"
934
  msgstr ""
935
 
936
- #: options/class.WpdiscuzOptionsSerialized.php:632
937
  msgid "You're subscribed for new replies on this comment"
938
  msgstr ""
939
 
940
- #: options/class.WpdiscuzOptionsSerialized.php:633
941
  msgid "You're subscribed for new replies on all your comments"
942
  msgstr ""
943
 
944
- #: options/class.WpdiscuzOptionsSerialized.php:634
945
  msgid "You're subscribed for new follow-up comments on this post"
946
  msgstr ""
947
 
948
- #: options/class.WpdiscuzOptionsSerialized.php:635
949
  #: options/phrases-layouts/phrases-email.php:27
950
  msgid "Unsubscribe"
951
  msgstr ""
952
 
953
- #: options/class.WpdiscuzOptionsSerialized.php:636
954
  #: options/phrases-layouts/phrases-email.php:32
955
  msgid "Cancel subscription"
956
  msgstr ""
957
 
958
- #: options/class.WpdiscuzOptionsSerialized.php:637
959
  #: options/phrases-layouts/phrases-notification.php:19
960
  msgid "You've successfully unsubscribed."
961
  msgstr ""
962
 
963
- #: options/class.WpdiscuzOptionsSerialized.php:638
964
  #: options/phrases-layouts/phrases-notification.php:15
965
  msgid "You've successfully subscribed."
966
  msgstr ""
967
 
968
- #: options/class.WpdiscuzOptionsSerialized.php:639
969
  #: options/phrases-layouts/phrases-email.php:35
970
  #: options/phrases-layouts/phrases-email.php:36
971
  msgid "Confirm your subscription"
972
  msgstr ""
973
 
974
- #: options/class.WpdiscuzOptionsSerialized.php:640
975
  #: options/phrases-layouts/phrases-email.php:39
976
  #: options/phrases-layouts/phrases-email.php:40
977
  msgid "You've successfully confirmed your subscription."
978
  msgstr ""
979
 
980
- #: options/class.WpdiscuzOptionsSerialized.php:641
981
  #: options/phrases-layouts/phrases-email.php:44
982
- #: utils/class.WpdiscuzEmailHelper.php:51
983
  msgid "Subscribe Confirmation"
984
  msgstr ""
985
 
986
- #: options/class.WpdiscuzOptionsSerialized.php:642
987
  #: options/phrases-layouts/phrases-email.php:48
988
- #: utils/class.WpdiscuzEmailHelper.php:52
989
  msgid ""
990
  "Hi, <br/> You just subscribed for new comments on our website. This means "
991
  "you will receive an email when new comments are posted according to "
@@ -994,240 +1003,240 @@ msgid ""
994
  "you again."
995
  msgstr ""
996
 
997
- #: options/class.WpdiscuzOptionsSerialized.php:643
998
  msgid "please fill out this field to comment"
999
  msgstr ""
1000
 
1001
- #: options/class.WpdiscuzOptionsSerialized.php:644
1002
  msgid "email address is invalid"
1003
  msgstr ""
1004
 
1005
- #: options/class.WpdiscuzOptionsSerialized.php:645
1006
  msgid "url is invalid"
1007
  msgstr ""
1008
 
1009
- #: options/class.WpdiscuzOptionsSerialized.php:646
1010
  msgid "year"
1011
  msgstr ""
1012
 
1013
- #: options/class.WpdiscuzOptionsSerialized.php:647
1014
  msgid "years"
1015
  msgstr ""
1016
 
1017
- #: options/class.WpdiscuzOptionsSerialized.php:648
1018
  msgid "month"
1019
  msgstr ""
1020
 
1021
- #: options/class.WpdiscuzOptionsSerialized.php:649
1022
  msgid "months"
1023
  msgstr ""
1024
 
1025
- #: options/class.WpdiscuzOptionsSerialized.php:650
1026
  msgid "day"
1027
  msgstr ""
1028
 
1029
- #: options/class.WpdiscuzOptionsSerialized.php:651
1030
  msgid "days"
1031
  msgstr ""
1032
 
1033
- #: options/class.WpdiscuzOptionsSerialized.php:652
1034
  msgid "hour"
1035
  msgstr ""
1036
 
1037
- #: options/class.WpdiscuzOptionsSerialized.php:653
1038
  msgid "hours"
1039
  msgstr ""
1040
 
1041
- #: options/class.WpdiscuzOptionsSerialized.php:654
1042
  msgid "minute"
1043
  msgstr ""
1044
 
1045
- #: options/class.WpdiscuzOptionsSerialized.php:655
1046
  msgid "minutes"
1047
  msgstr ""
1048
 
1049
- #: options/class.WpdiscuzOptionsSerialized.php:656
1050
  msgid "second"
1051
  msgstr ""
1052
 
1053
- #: options/class.WpdiscuzOptionsSerialized.php:657
1054
  msgid "seconds"
1055
  msgstr ""
1056
 
1057
- #: options/class.WpdiscuzOptionsSerialized.php:658
1058
  msgid "right now"
1059
  msgstr ""
1060
 
1061
- #: options/class.WpdiscuzOptionsSerialized.php:659
1062
  msgid "ago"
1063
  msgstr ""
1064
 
1065
- #: options/class.WpdiscuzOptionsSerialized.php:660
1066
  #: options/phrases-layouts/phrases-notification.php:41
1067
  msgid "You must be"
1068
  msgstr ""
1069
 
1070
- #: options/class.WpdiscuzOptionsSerialized.php:661
1071
  msgid "You are logged in as"
1072
  msgstr ""
1073
 
1074
- #: options/class.WpdiscuzOptionsSerialized.php:662
1075
  #: options/phrases-layouts/phrases-notification.php:49
1076
  msgid "Log out"
1077
  msgstr ""
1078
 
1079
- #: options/class.WpdiscuzOptionsSerialized.php:663
1080
  msgid "logged in"
1081
  msgstr ""
1082
 
1083
- #: options/class.WpdiscuzOptionsSerialized.php:664
1084
  msgid "to post a comment."
1085
  msgstr ""
1086
 
1087
- #: options/class.WpdiscuzOptionsSerialized.php:665
1088
  #: options/phrases-layouts/phrases-comment.php:75
1089
  msgid "Vote Up"
1090
  msgstr ""
1091
 
1092
- #: options/class.WpdiscuzOptionsSerialized.php:666
1093
  #: options/phrases-layouts/phrases-comment.php:79
1094
  msgid "Vote Down"
1095
  msgstr ""
1096
 
1097
- #: options/class.WpdiscuzOptionsSerialized.php:667
1098
  #: options/phrases-layouts/phrases-notification.php:61
1099
  msgid "Vote Counted"
1100
  msgstr ""
1101
 
1102
- #: options/class.WpdiscuzOptionsSerialized.php:668
1103
  msgid "You've already voted for this comment"
1104
  msgstr ""
1105
 
1106
- #: options/class.WpdiscuzOptionsSerialized.php:669
1107
  #: options/phrases-layouts/phrases-notification.php:69
1108
  msgid "Voting Error"
1109
  msgstr ""
1110
 
1111
- #: options/class.WpdiscuzOptionsSerialized.php:670
1112
  msgid "You Must Be Logged In To Vote"
1113
  msgstr ""
1114
 
1115
- #: options/class.WpdiscuzOptionsSerialized.php:671
1116
  msgid "You cannot vote for your comment"
1117
  msgstr ""
1118
 
1119
- #: options/class.WpdiscuzOptionsSerialized.php:672
1120
  msgid "You are not allowed to vote for this comment"
1121
  msgstr ""
1122
 
1123
- #: options/class.WpdiscuzOptionsSerialized.php:673
1124
  #: options/phrases-layouts/phrases-notification.php:85
1125
  msgid "Invalid Captcha Code"
1126
  msgstr ""
1127
 
1128
- #: options/class.WpdiscuzOptionsSerialized.php:674
1129
  #: options/phrases-layouts/phrases-notification.php:89
1130
  msgid "Some of field value is invalid"
1131
  msgstr ""
1132
 
1133
- #: options/class.WpdiscuzOptionsSerialized.php:675
1134
  msgid "new comment"
1135
  msgstr ""
1136
 
1137
- #: options/class.WpdiscuzOptionsSerialized.php:676
1138
  msgid "new comments"
1139
  msgstr ""
1140
 
1141
- #: options/class.WpdiscuzOptionsSerialized.php:677
1142
  msgid "Comment awaiting moderation"
1143
  msgstr ""
1144
 
1145
- #: options/class.WpdiscuzOptionsSerialized.php:678
1146
  msgid "new reply on your comment"
1147
  msgstr ""
1148
 
1149
- #: options/class.WpdiscuzOptionsSerialized.php:679
1150
  msgid "new replies on your comments"
1151
  msgstr ""
1152
 
1153
- #: options/class.WpdiscuzOptionsSerialized.php:680
1154
  #: options/phrases-layouts/phrases-general.php:52
1155
  msgid "New"
1156
  msgstr ""
1157
 
1158
- #: options/class.WpdiscuzOptionsSerialized.php:681
1159
  #: options/phrases-layouts/phrases-notification.php:107
1160
  msgid "Sorry, the comment was not updated"
1161
  msgstr ""
1162
 
1163
- #: options/class.WpdiscuzOptionsSerialized.php:682
1164
  #: options/phrases-layouts/phrases-notification.php:111
1165
  msgid "Sorry, this comment no longer possible to edit"
1166
  msgstr ""
1167
 
1168
- #: options/class.WpdiscuzOptionsSerialized.php:683
1169
  msgid "You've not made any changes"
1170
  msgstr ""
1171
 
1172
- #: options/class.WpdiscuzOptionsSerialized.php:684
1173
  #: options/phrases-layouts/phrases-comment.php:84
1174
  msgid "Save"
1175
  msgstr ""
1176
 
1177
- #: options/class.WpdiscuzOptionsSerialized.php:685
1178
  #: options/phrases-layouts/phrases-comment.php:88
1179
  msgid "Cancel"
1180
  msgstr ""
1181
 
1182
- #: options/class.WpdiscuzOptionsSerialized.php:686
1183
  msgid "Input is too short"
1184
  msgstr ""
1185
 
1186
- #: options/class.WpdiscuzOptionsSerialized.php:687
1187
  msgid "Input is too long"
1188
  msgstr ""
1189
 
1190
- #: options/class.WpdiscuzOptionsSerialized.php:688
1191
  #: options/phrases-layouts/phrases-comment.php:92
1192
  msgid "Read more &raquo;"
1193
  msgstr ""
1194
 
1195
- #: options/class.WpdiscuzOptionsSerialized.php:689
1196
  #: options/phrases-layouts/phrases-comment.php:96
1197
  msgid "Anonymous"
1198
  msgstr ""
1199
 
1200
- #: options/class.WpdiscuzOptionsSerialized.php:690
1201
  #: options/phrases-layouts/phrases-notification.php:118
1202
  #: options/phrases-layouts/phrases-notification.php:119
1203
  msgid "Please fill out required fields"
1204
  msgstr ""
1205
 
1206
- #: options/class.WpdiscuzOptionsSerialized.php:691
1207
  #: options/phrases-layouts/phrases-form.php:67
1208
  #: options/phrases-layouts/phrases-form.php:68
1209
  msgid "Connect with"
1210
  msgstr ""
1211
 
1212
- #: options/class.WpdiscuzOptionsSerialized.php:692
1213
  msgid "You're subscribed to"
1214
  msgstr ""
1215
 
1216
- #: options/class.WpdiscuzOptionsSerialized.php:693
1217
  msgid "Participate in this discussion via email"
1218
  msgstr ""
1219
 
1220
- #: options/class.WpdiscuzOptionsSerialized.php:694
1221
  #: options/phrases-layouts/phrases-form.php:72
1222
  msgid "&rsaquo;"
1223
  msgstr ""
1224
 
1225
- #: options/class.WpdiscuzOptionsSerialized.php:695
1226
  #: options/phrases-layouts/phrases-email.php:52
1227
  msgid "Comment was approved"
1228
  msgstr ""
1229
 
1230
- #: options/class.WpdiscuzOptionsSerialized.php:696
1231
  msgid "Hi, <br/> Your comment was approved."
1232
  msgstr ""
1233
 
@@ -1536,25 +1545,29 @@ msgstr ""
1536
  msgid "Lazy load comments on scrolling"
1537
  msgstr ""
1538
 
1539
- #: options/options-layouts/settings-general.php:150
 
 
 
 
1540
  msgid "Use WordPress Date/Time format"
1541
  msgstr ""
1542
 
1543
- #: options/options-layouts/settings-general.php:151
1544
  msgid ""
1545
  "wpDiscuz shows Human Readable date format. If you check this option it'll "
1546
  "show the date/time format set in WordPress General Settings."
1547
  msgstr ""
1548
 
1549
- #: options/options-layouts/settings-general.php:157
1550
  msgid "Current Wordpress date/time format"
1551
  msgstr ""
1552
 
1553
- #: options/options-layouts/settings-general.php:163
1554
  msgid "Use Plugin .PO/.MO files"
1555
  msgstr ""
1556
 
1557
- #: options/options-layouts/settings-general.php:164
1558
  msgid ""
1559
  "wpDiscuz phrase system allows you to translate all front-end phrases. "
1560
  "However if you have a multi-language website it'll not allow you to add more "
@@ -1564,13 +1577,13 @@ msgid ""
1564
  "translate all phrases based on language files according to current language."
1565
  msgstr ""
1566
 
1567
- #: options/options-layouts/settings-general.php:171
1568
  msgid ""
1569
  "Help wpDiscuz to grow allowing people to recognize which comment plugin you "
1570
  "use"
1571
  msgstr ""
1572
 
1573
- #: options/options-layouts/settings-general.php:173
1574
  msgid ""
1575
  "Please check this option on to help wpDiscuz get more popularity as your "
1576
  "thank to the hard work we do for you totally free. This option adds a very "
@@ -1578,7 +1591,7 @@ msgid ""
1578
  "visitors recognize the name of comment solution you use."
1579
  msgstr ""
1580
 
1581
- #: options/options-layouts/settings-general.php:178
1582
  msgid "Thank you!"
1583
  msgstr ""
1584
 
@@ -1812,7 +1825,7 @@ msgid "Disable Profiles URL"
1812
  msgstr ""
1813
 
1814
  #: options/options-layouts/settings-show-hide.php:153
1815
- msgid "Diplay Ratings"
1816
  msgstr ""
1817
 
1818
  #: options/options-layouts/settings-show-hide.php:156
@@ -1823,6 +1836,10 @@ msgstr ""
1823
  msgid "After Content"
1824
  msgstr ""
1825
 
 
 
 
 
1826
  #: options/options-layouts/settings-social.php:50
1827
  #: options/options-layouts/settings-social.php:61
1828
  #: options/options-layouts/settings-social.php:72
@@ -2315,20 +2332,20 @@ msgid ""
2315
  "wpDiscuz versions."
2316
  msgstr ""
2317
 
2318
- #: templates/comment/comment-form.php:74
2319
  msgid "Unable to send an email"
2320
  msgstr ""
2321
 
2322
- #: templates/comment/comment-form.php:76
2323
  msgid "Subscription not successed"
2324
  msgstr ""
2325
 
2326
  #. Plugin Name of the plugin/theme
2327
- #: templates/comment/comment-form.php:289
2328
  msgid "wpDiscuz"
2329
  msgstr ""
2330
 
2331
- #: utils/class.WpdiscuzHelper.php:339 utils/class.WpdiscuzHelper.php:342
2332
  msgid "Spoiler"
2333
  msgstr ""
2334
 
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: wpDiscuz\n"
6
+ "POT-Creation-Date: 2017-11-15 17:13+0400\n"
7
+ "PO-Revision-Date: 2017-11-15 17:13+0400\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
+ #: class.WpdiscuzCore.php:807 class.WpdiscuzCore.php:1008
24
  #: options/options-layouts/settings-social.php:40
25
  #: options/options-layouts/settings-social.php:42
26
  #: options/options-layouts/settings-social.php:44
28
  msgid "Settings"
29
  msgstr ""
30
 
31
+ #: class.WpdiscuzCore.php:809 class.WpdiscuzCore.php:1010
32
  msgid "Phrases"
33
  msgstr ""
34
 
35
+ #: class.WpdiscuzCore.php:811
36
  msgid "Tools"
37
  msgstr ""
38
 
39
+ #: class.WpdiscuzCore.php:812 options/html-options.php:22
40
  #: options/html-options.php:62 options/options-layouts/settings-addons.php:7
41
  msgid "Addons"
42
  msgstr ""
43
 
44
+ #: class.WpdiscuzCore.php:823
45
  msgid "Do you really want to reset all options?"
46
  msgstr ""
47
 
48
+ #: class.WpdiscuzCore.php:824
49
  msgid "Do you really want to remove voting data?"
50
  msgstr ""
51
 
52
+ #: class.WpdiscuzCore.php:1064 options/phrases-layouts/phrases-comment.php:56
53
  msgid "Admin"
54
  msgstr ""
55
 
56
+ #: class.WpdiscuzCore.php:1066 class.WpdiscuzCore.php:1075
57
  #: options/phrases-layouts/phrases-comment.php:58
58
  msgid "Author"
59
  msgstr ""
60
 
61
+ #: class.WpdiscuzCore.php:1070 options/phrases-layouts/phrases-comment.php:64
62
  msgid "Member"
63
  msgstr ""
64
 
65
+ #: class.WpdiscuzCore.php:1076 options/phrases-layouts/phrases-comment.php:62
66
  msgid "Guest"
67
  msgstr ""
68
 
114
  msgid "Post IDs"
115
  msgstr ""
116
 
117
+ #: forms/wpDiscuzForm.php:166 forms/wpdFormAttr/Form.php:591
118
  msgid "Language"
119
  msgstr ""
120
 
144
  msgstr ""
145
 
146
  #: forms/wpDiscuzForm.php:217 forms/wpdFormAttr/Field/Field.php:61
147
+ #: options/class.WpdiscuzOptionsSerialized.php:638
148
  #: options/phrases-layouts/phrases-comment.php:19
149
  msgid "Edit"
150
  msgstr ""
161
  msgid "Permission Denied !!!"
162
  msgstr ""
163
 
164
+ #: forms/wpDiscuzForm.php:251 forms/wpdFormAttr/Form.php:561
165
  #: forms/wpdFormAttr/html/admin-form-fields-list.php:18
166
  #: options/options-layouts/settings-customfields.php:7
167
  msgid "Custom Fields"
176
  msgstr ""
177
 
178
  #: forms/wpDiscuzForm.php:386 forms/wpDiscuzForm.php:394
179
+ #: forms/wpdFormAttr/Form.php:626
180
  msgid "Leave a Reply"
181
  msgstr ""
182
 
195
  #: forms/wpdFormAttr/Field/SelectField.php:12
196
  #: forms/wpdFormAttr/Field/TextAreaField.php:13
197
  #: forms/wpdFormAttr/Field/TextField.php:12
198
+ #: forms/wpdFormAttr/Field/UrlField.php:12 forms/wpdFormAttr/Form.php:727
199
  msgid "Name"
200
  msgstr ""
201
 
202
  #: forms/wpDiscuzForm.php:411 forms/wpdFormAttr/Field/DefaultField/Email.php:64
203
+ #: forms/wpdFormAttr/Form.php:734
204
+ #: options/class.WpdiscuzOptionsSerialized.php:625 options/html-phrases.php:25
205
  msgid "Email"
206
  msgstr ""
207
 
210
  msgstr ""
211
 
212
  #: forms/wpDiscuzForm.php:416
213
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:77
214
+ #: forms/wpdFormAttr/Form.php:757
215
  msgid "Post Comment"
216
  msgstr ""
217
 
422
  msgstr ""
423
 
424
  #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:107
425
+ #: forms/wpdFormAttr/Form.php:750
426
  msgid "Code"
427
  msgstr ""
428
 
442
  msgid "PNG image creation disabled"
443
  msgstr ""
444
 
445
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:124
446
+ msgid "Insert the CAPTCHA code"
447
+ msgstr ""
448
+
449
  #: forms/wpdFormAttr/Field/DefaultField/Submit.php:20
450
  msgid "Button Text"
451
  msgstr ""
455
  msgstr ""
456
 
457
  #: forms/wpdFormAttr/Field/DefaultField/Website.php:83
458
+ #: forms/wpdFormAttr/Form.php:741
459
  msgid "Website"
460
  msgstr ""
461
 
492
  msgid "New value new line"
493
  msgstr ""
494
 
495
+ #: forms/wpdFormAttr/Form.php:600
496
  msgid "Allow guests to comment"
497
  msgstr ""
498
 
499
+ #: forms/wpdFormAttr/Form.php:604 forms/wpdFormAttr/Form.php:615
500
  msgid "Yes"
501
  msgstr ""
502
 
503
+ #: forms/wpdFormAttr/Form.php:606 forms/wpdFormAttr/Form.php:617
504
  msgid "No"
505
  msgstr ""
506
 
507
+ #: forms/wpdFormAttr/Form.php:611
508
  msgid "Enable subscription bar"
509
  msgstr ""
510
 
511
+ #: forms/wpdFormAttr/Form.php:622
512
  msgid "Comment form header text"
513
  msgstr ""
514
 
515
+ #: forms/wpdFormAttr/Form.php:631
516
  msgid "Display comment form for post types"
517
  msgstr ""
518
 
519
+ #: forms/wpdFormAttr/Form.php:638
520
  msgid ""
521
  "The red marked post types are already attached to other comment form. If you "
522
  "set this form too, the old forms will not be used for them."
523
  msgstr ""
524
 
525
+ #: forms/wpdFormAttr/Form.php:660
526
  msgid "Display comment form for post IDs"
527
  msgstr ""
528
 
529
+ #: forms/wpdFormAttr/Form.php:661
530
  msgid ""
531
  "You can use this form for certain posts/pages specified by comma separated "
532
  "IDs."
533
  msgstr ""
534
 
535
+ #: forms/wpdFormAttr/Form.php:672
536
  msgid "Comment Text Field"
537
  msgstr ""
538
 
539
+ #: forms/wpdFormAttr/Form.php:687
540
  msgid "ADD ROW"
541
  msgstr ""
542
 
543
+ #: forms/wpdFormAttr/Form.php:709
544
+ msgid ""
545
+ "Only logged in customers who have purchased this product may leave a review."
546
+ msgstr ""
547
+
548
  #: forms/wpdFormAttr/html/admin-form-fields-list.php:7
549
  msgid "Comment Form Fields"
550
  msgstr ""
551
 
552
+ #: options/class.WpdiscuzOptions.php:24 options/class.WpdiscuzOptions.php:103
553
+ #: options/class.WpdiscuzOptions.php:221
554
  msgid "Hacker?"
555
  msgstr ""
556
 
557
+ #: options/class.WpdiscuzOptions.php:94
558
  msgid "Settings updated"
559
  msgstr ""
560
 
561
+ #: options/class.WpdiscuzOptions.php:210
562
  msgid "Phrases updated"
563
  msgstr ""
564
 
565
+ #: options/class.WpdiscuzOptions.php:256
566
  msgid ""
567
  "Brings an ocean of emotions to your comments. It comes with an awesome smile "
568
  "package."
569
  msgstr ""
570
 
571
+ #: options/class.WpdiscuzOptions.php:257
572
  msgid ""
573
  "Extended information about comment author with Profile, Activity, Votes and "
574
  "Subscriptions Tabs on pop-up window."
575
  msgstr ""
576
 
577
+ #: options/class.WpdiscuzOptions.php:259
578
  msgid ""
579
  "Total control over comment subscriptions. Full list, monitor, manage, "
580
  "filter, unsubscribe, confirm..."
581
  msgstr ""
582
 
583
+ #: options/class.WpdiscuzOptions.php:260
584
  msgid ""
585
  "A full-fledged tool-kit for advertising in comment section of your website. "
586
  "Separate banner and ad managment."
587
  msgstr ""
588
 
589
+ #: options/class.WpdiscuzOptions.php:261
590
  msgid ""
591
  "Allows to mention comments and users in comment text using #comment-id and "
592
  "@username tags."
593
  msgstr ""
594
 
595
+ #: options/class.WpdiscuzOptions.php:262
596
  msgid ""
597
  "See comment likers and voters of each comment. Adds user reputation and "
598
  "badges based on received likes."
599
  msgstr ""
600
 
601
+ #: options/class.WpdiscuzOptions.php:263
602
  msgid ""
603
  "Comment reporting tools. Auto-moderates comments based on number of flags "
604
  "and dislikes."
605
  msgstr ""
606
 
607
+ #: options/class.WpdiscuzOptions.php:264
608
  msgid ""
609
  "Adds a smart and intuitive AJAX \"Translate\" button with 60 language "
610
  "options. Uses free translation API."
611
  msgstr ""
612
 
613
+ #: options/class.WpdiscuzOptions.php:265
614
  msgid ""
615
  "AJAX powered front-end comment search. It starts searching while you type "
616
  "search words. "
617
  msgstr ""
618
 
619
+ #: options/class.WpdiscuzOptions.php:266
620
  msgid ""
621
  "Most voted comments, Active comment threads, Most commented posts, Active "
622
  "comment authors"
623
  msgstr ""
624
 
625
+ #: options/class.WpdiscuzOptions.php:267
626
  msgid ""
627
  "All in one powerful yet simple admin toolkit to moderate comments on front-"
628
  "end."
629
  msgstr ""
630
 
631
+ #: options/class.WpdiscuzOptions.php:268
632
  msgid ""
633
  "Extended comment attachment system. Allows to upload images, videos, audios "
634
  "and other file types."
635
  msgstr ""
636
 
637
+ #: options/class.WpdiscuzOptions.php:269
638
  msgid ""
639
  "Adds No CAPTCHA on all comment forms. Stops spam and bot comments with "
640
  "Google reCAPTCHA"
641
  msgstr ""
642
 
643
+ #: options/class.WpdiscuzOptions.php:270
644
  msgid ""
645
  "Integrates myCRED Badges and Ranks. Converts wpDiscuz comment votes/likes to "
646
  "myCRED points. "
647
  msgstr ""
648
 
649
+ #: options/class.WpdiscuzOptions.php:271
650
  msgid ""
651
  "Allows censoring comment words. Filters comments and replaces those phrases "
652
  "with custom words."
653
  msgstr ""
654
 
655
+ #: options/class.WpdiscuzOptions.php:277
656
  msgid "Custom Comment Forms"
657
  msgstr ""
658
 
659
+ #: options/class.WpdiscuzOptions.php:278
660
  msgid ""
661
  "You can create custom comment forms with wpDiscuz. wpDiscuz 4 comes with "
662
  "custom comment forms and fields. You can create custom comment forms for "
664
  "eaxample: text, dropdown, rating, checkboxes, etc..."
665
  msgstr ""
666
 
667
+ #: options/class.WpdiscuzOptions.php:281
668
  msgid "Emoticons"
669
  msgstr ""
670
 
671
+ #: options/class.WpdiscuzOptions.php:282
672
  msgid ""
673
  "You can add more emotions to your comments using wpDiscuz Emoticons addon."
674
  msgstr ""
675
 
676
+ #: options/class.WpdiscuzOptions.php:285
677
  msgid "Ads Manager"
678
  msgstr ""
679
 
680
+ #: options/class.WpdiscuzOptions.php:286
681
  msgid ""
682
  "Increase your income using ad banners. Comment area is the most active "
683
  "sections for advertising. wpDiscuz Ads Manager addon is designed to help you "
684
  "add banners and control ads in this section."
685
  msgstr ""
686
 
687
+ #: options/class.WpdiscuzOptions.php:289
688
  msgid "User and Comment Mentioning"
689
  msgstr ""
690
 
691
+ #: options/class.WpdiscuzOptions.php:290
692
  msgid ""
693
  "Using wpDiscuz User &amp; Comment Mentioning addon you can allow commenters "
694
  "mention comments and users in comment text using #comment-id and @username "
695
  "tags."
696
  msgstr ""
697
 
698
+ #: options/class.WpdiscuzOptions.php:293
699
  msgid "Advanced Likers"
700
  msgstr ""
701
 
702
+ #: options/class.WpdiscuzOptions.php:294
703
  msgid ""
704
  "wpDiscuz Advanced Likers addon displays likers and voters of each comment. "
705
  "Adds user reputation and badges based on received likes."
706
  msgstr ""
707
 
708
+ #: options/class.WpdiscuzOptions.php:297
709
  msgid "Report and Flagging"
710
  msgstr ""
711
 
712
+ #: options/class.WpdiscuzOptions.php:298
713
  msgid ""
714
  "Let your commenters help you to determine and remove spam comments. wpDiscuz "
715
  "Report and Flagging addon comes with comment reporting tools. Automaticaly "
716
  "auto-moderates comments based on number of flags and dislikes."
717
  msgstr ""
718
 
719
+ #: options/class.WpdiscuzOptions.php:301
720
  msgid "Comment Translate"
721
  msgstr ""
722
 
723
+ #: options/class.WpdiscuzOptions.php:302
724
  msgid ""
725
  "In most cases the big part of your visitors are not a native speakers of "
726
  "your language. Make your comments comprehensible for all visitors using "
729
  "translation API."
730
  msgstr ""
731
 
732
+ #: options/class.WpdiscuzOptions.php:305
733
  msgid "Comment Search"
734
  msgstr ""
735
 
736
+ #: options/class.WpdiscuzOptions.php:306
737
  msgid ""
738
  "You can let website visitor search in comments. It's always more attractive "
739
  "to find a comment about something that interest you. Using wpDiscuz Comment "
741
  "above comment list."
742
  msgstr ""
743
 
744
+ #: options/class.WpdiscuzOptions.php:309
745
  msgid "wpDiscuz Widgets"
746
  msgstr ""
747
 
748
+ #: options/class.WpdiscuzOptions.php:310
749
  msgid ""
750
  "More Comment Widgets! Most voted comments, Active comment threads, Most "
751
  "commented posts, Active comment authors widgets are available in wpDiscuz "
752
  "Widgets Addon"
753
  msgstr ""
754
 
755
+ #: options/class.WpdiscuzOptions.php:313
756
  msgid "Front-end Moderation"
757
  msgstr ""
758
 
759
+ #: options/class.WpdiscuzOptions.php:314
760
  msgid ""
761
  "You can moderate comments on front-end using all in one powerful yet simple "
762
  "wpDiscuz Frontend Moderation addon."
763
  msgstr ""
764
 
765
+ #: options/class.WpdiscuzOptions.php:317
766
  msgid "Media Uploader"
767
  msgstr ""
768
 
769
+ #: options/class.WpdiscuzOptions.php:318
770
  msgid ""
771
  "You can let website visitors attach images and files to comments and embed "
772
  "video/audio content using wpDiscuz Media Uploader addon."
773
  msgstr ""
774
 
775
+ #: options/class.WpdiscuzOptions.php:321
776
  msgid "Google ReCaptcha"
777
  msgstr ""
778
 
779
+ #: options/class.WpdiscuzOptions.php:322
780
  msgid ""
781
  "Advanced spam protection with wpDiscuz Google reCAPTCHA addon. This addon "
782
  "adds No-CAPTCHA reCAPTCHA on all comment forms. Stops spam and bot comments."
783
  msgstr ""
784
 
785
+ #: options/class.WpdiscuzOptions.php:336
786
  msgid "New Addons are available for wpDiscuz Comments Plugin"
787
  msgstr ""
788
 
789
+ #: options/class.WpdiscuzOptions.php:343 options/class.WpdiscuzOptions.php:349
790
  msgid "Go to wpDiscuz Addons subMenu"
791
  msgstr ""
792
 
793
+ #: options/class.WpdiscuzOptions.php:380
794
  msgid "Do you know?"
795
  msgstr ""
796
 
797
+ #: options/class.WpdiscuzOptions.php:392
798
  msgid "More info"
799
  msgstr ""
800
 
801
+ #: options/class.WpdiscuzOptionsSerialized.php:619
802
  msgid "Be the First to Comment!"
803
  msgstr ""
804
 
805
+ #: options/class.WpdiscuzOptionsSerialized.php:620 options/html-phrases.php:23
806
  #: options/phrases-layouts/phrases-general.php:15
807
  msgid "Comment"
808
  msgstr ""
809
 
810
+ #: options/class.WpdiscuzOptionsSerialized.php:621
811
  msgid "Comments"
812
  msgstr ""
813
 
814
+ #: options/class.WpdiscuzOptionsSerialized.php:622
815
  msgid "on"
816
  msgstr ""
817
 
818
+ #: options/class.WpdiscuzOptionsSerialized.php:623
819
  msgid "Start the discussion"
820
  msgstr ""
821
 
822
+ #: options/class.WpdiscuzOptionsSerialized.php:624
823
  msgid "Join the discussion"
824
  msgstr ""
825
 
826
+ #: options/class.WpdiscuzOptionsSerialized.php:626
827
  #: options/phrases-layouts/phrases-form.php:23
828
  #: options/phrases-layouts/phrases-form.php:24
829
  msgid "Notify of"
830
  msgstr ""
831
 
832
+ #: options/class.WpdiscuzOptionsSerialized.php:627
833
  #: options/phrases-layouts/phrases-form.php:28
834
  msgid "new follow-up comments"
835
  msgstr ""
836
 
837
+ #: options/class.WpdiscuzOptionsSerialized.php:628
838
  msgid "new replies to my comments"
839
  msgstr ""
840
 
841
+ #: options/class.WpdiscuzOptionsSerialized.php:629
842
  #: options/phrases-layouts/phrases-form.php:36
843
  msgid "Notify of new replies to this comment"
844
  msgstr ""
845
 
846
+ #: options/class.WpdiscuzOptionsSerialized.php:630
847
  #: options/phrases-layouts/phrases-form.php:39
848
  #: options/phrases-layouts/phrases-form.php:40
849
  msgid "Sort by"
850
  msgstr ""
851
 
852
+ #: options/class.WpdiscuzOptionsSerialized.php:631
853
  #: options/phrases-layouts/phrases-form.php:43
854
  #: options/phrases-layouts/phrases-form.php:44
855
  msgid "newest"
856
  msgstr ""
857
 
858
+ #: options/class.WpdiscuzOptionsSerialized.php:632
859
  #: options/phrases-layouts/phrases-form.php:47
860
  #: options/phrases-layouts/phrases-form.php:48
861
  msgid "oldest"
862
  msgstr ""
863
 
864
+ #: options/class.WpdiscuzOptionsSerialized.php:633
865
  #: options/phrases-layouts/phrases-form.php:51
866
  #: options/phrases-layouts/phrases-form.php:52
867
  msgid "most voted"
868
  msgstr ""
869
 
870
+ #: options/class.WpdiscuzOptionsSerialized.php:634
871
  msgid "Load More Comments"
872
  msgstr ""
873
 
874
+ #: options/class.WpdiscuzOptionsSerialized.php:635
875
  #: options/phrases-layouts/phrases-general.php:31
876
  msgid "Load Rest of Comments"
877
  msgstr ""
878
 
879
+ #: options/class.WpdiscuzOptionsSerialized.php:636
880
  #: options/phrases-layouts/phrases-comment.php:11
881
  msgid "Reply"
882
  msgstr ""
883
 
884
+ #: options/class.WpdiscuzOptionsSerialized.php:637
885
  #: options/phrases-layouts/phrases-comment.php:15
886
  msgid "Share"
887
  msgstr ""
888
 
889
+ #: options/class.WpdiscuzOptionsSerialized.php:639
890
  #: options/phrases-layouts/phrases-comment.php:23
891
  msgid "Share On Facebook"
892
  msgstr ""
893
 
894
+ #: options/class.WpdiscuzOptionsSerialized.php:640
895
  #: options/phrases-layouts/phrases-comment.php:27
896
  msgid "Share On Twitter"
897
  msgstr ""
898
 
899
+ #: options/class.WpdiscuzOptionsSerialized.php:641
900
  #: options/phrases-layouts/phrases-comment.php:31
901
  msgid "Share On Google"
902
  msgstr ""
903
 
904
+ #: options/class.WpdiscuzOptionsSerialized.php:642
905
  #: options/phrases-layouts/phrases-comment.php:35
906
  msgid "Share On VKontakte"
907
  msgstr ""
908
 
909
+ #: options/class.WpdiscuzOptionsSerialized.php:643
910
  #: options/phrases-layouts/phrases-comment.php:39
911
  msgid "Share On Odnoklassniki"
912
  msgstr ""
913
 
914
+ #: options/class.WpdiscuzOptionsSerialized.php:644
915
  #: options/phrases-layouts/phrases-comment.php:43
916
  msgid "Hide Replies"
917
  msgstr ""
918
 
919
+ #: options/class.WpdiscuzOptionsSerialized.php:645
920
  #: options/phrases-layouts/phrases-comment.php:47
921
  msgid "Show Replies"
922
  msgstr ""
923
 
924
+ #: options/class.WpdiscuzOptionsSerialized.php:646
925
  #: options/phrases-layouts/phrases-general.php:36
926
  msgid "New Comment"
927
  msgstr ""
928
 
929
+ #: options/class.WpdiscuzOptionsSerialized.php:647
930
  msgid "New comment on the discussion section you've been interested in"
931
  msgstr ""
932
 
933
+ #: options/class.WpdiscuzOptionsSerialized.php:648
934
  #: options/phrases-layouts/phrases-email.php:20
935
  #: options/phrases-layouts/phrases-general.php:44
936
+ #: utils/class.WpdiscuzEmailHelper.php:162
937
  msgid "New Reply"
938
  msgstr ""
939
 
940
+ #: options/class.WpdiscuzOptionsSerialized.php:649
941
+ #: utils/class.WpdiscuzEmailHelper.php:163
942
  msgid "New reply on the discussion section you've been interested in"
943
  msgstr ""
944
 
945
+ #: options/class.WpdiscuzOptionsSerialized.php:650
946
  msgid "You're subscribed for new replies on this comment"
947
  msgstr ""
948
 
949
+ #: options/class.WpdiscuzOptionsSerialized.php:651
950
  msgid "You're subscribed for new replies on all your comments"
951
  msgstr ""
952
 
953
+ #: options/class.WpdiscuzOptionsSerialized.php:652
954
  msgid "You're subscribed for new follow-up comments on this post"
955
  msgstr ""
956
 
957
+ #: options/class.WpdiscuzOptionsSerialized.php:653
958
  #: options/phrases-layouts/phrases-email.php:27
959
  msgid "Unsubscribe"
960
  msgstr ""
961
 
962
+ #: options/class.WpdiscuzOptionsSerialized.php:654
963
  #: options/phrases-layouts/phrases-email.php:32
964
  msgid "Cancel subscription"
965
  msgstr ""
966
 
967
+ #: options/class.WpdiscuzOptionsSerialized.php:655
968
  #: options/phrases-layouts/phrases-notification.php:19
969
  msgid "You've successfully unsubscribed."
970
  msgstr ""
971
 
972
+ #: options/class.WpdiscuzOptionsSerialized.php:656
973
  #: options/phrases-layouts/phrases-notification.php:15
974
  msgid "You've successfully subscribed."
975
  msgstr ""
976
 
977
+ #: options/class.WpdiscuzOptionsSerialized.php:657
978
  #: options/phrases-layouts/phrases-email.php:35
979
  #: options/phrases-layouts/phrases-email.php:36
980
  msgid "Confirm your subscription"
981
  msgstr ""
982
 
983
+ #: options/class.WpdiscuzOptionsSerialized.php:658
984
  #: options/phrases-layouts/phrases-email.php:39
985
  #: options/phrases-layouts/phrases-email.php:40
986
  msgid "You've successfully confirmed your subscription."
987
  msgstr ""
988
 
989
+ #: options/class.WpdiscuzOptionsSerialized.php:659
990
  #: options/phrases-layouts/phrases-email.php:44
991
+ #: utils/class.WpdiscuzEmailHelper.php:55
992
  msgid "Subscribe Confirmation"
993
  msgstr ""
994
 
995
+ #: options/class.WpdiscuzOptionsSerialized.php:660
996
  #: options/phrases-layouts/phrases-email.php:48
997
+ #: utils/class.WpdiscuzEmailHelper.php:56
998
  msgid ""
999
  "Hi, <br/> You just subscribed for new comments on our website. This means "
1000
  "you will receive an email when new comments are posted according to "
1003
  "you again."
1004
  msgstr ""
1005
 
1006
+ #: options/class.WpdiscuzOptionsSerialized.php:661
1007
  msgid "please fill out this field to comment"
1008
  msgstr ""
1009
 
1010
+ #: options/class.WpdiscuzOptionsSerialized.php:662
1011
  msgid "email address is invalid"
1012
  msgstr ""
1013
 
1014
+ #: options/class.WpdiscuzOptionsSerialized.php:663
1015
  msgid "url is invalid"
1016
  msgstr ""
1017
 
1018
+ #: options/class.WpdiscuzOptionsSerialized.php:664
1019
  msgid "year"
1020
  msgstr ""
1021
 
1022
+ #: options/class.WpdiscuzOptionsSerialized.php:665
1023
  msgid "years"
1024
  msgstr ""
1025
 
1026
+ #: options/class.WpdiscuzOptionsSerialized.php:666
1027
  msgid "month"
1028
  msgstr ""
1029
 
1030
+ #: options/class.WpdiscuzOptionsSerialized.php:667
1031
  msgid "months"
1032
  msgstr ""
1033
 
1034
+ #: options/class.WpdiscuzOptionsSerialized.php:668
1035
  msgid "day"
1036
  msgstr ""
1037
 
1038
+ #: options/class.WpdiscuzOptionsSerialized.php:669
1039
  msgid "days"
1040
  msgstr ""
1041
 
1042
+ #: options/class.WpdiscuzOptionsSerialized.php:670
1043
  msgid "hour"
1044
  msgstr ""
1045
 
1046
+ #: options/class.WpdiscuzOptionsSerialized.php:671
1047
  msgid "hours"
1048
  msgstr ""
1049
 
1050
+ #: options/class.WpdiscuzOptionsSerialized.php:672
1051
  msgid "minute"
1052
  msgstr ""
1053
 
1054
+ #: options/class.WpdiscuzOptionsSerialized.php:673
1055
  msgid "minutes"
1056
  msgstr ""
1057
 
1058
+ #: options/class.WpdiscuzOptionsSerialized.php:674
1059
  msgid "second"
1060
  msgstr ""
1061
 
1062
+ #: options/class.WpdiscuzOptionsSerialized.php:675
1063
  msgid "seconds"
1064
  msgstr ""
1065
 
1066
+ #: options/class.WpdiscuzOptionsSerialized.php:676
1067
  msgid "right now"
1068
  msgstr ""
1069
 
1070
+ #: options/class.WpdiscuzOptionsSerialized.php:677
1071
  msgid "ago"
1072
  msgstr ""
1073
 
1074
+ #: options/class.WpdiscuzOptionsSerialized.php:678
1075
  #: options/phrases-layouts/phrases-notification.php:41
1076
  msgid "You must be"
1077
  msgstr ""
1078
 
1079
+ #: options/class.WpdiscuzOptionsSerialized.php:679
1080
  msgid "You are logged in as"
1081
  msgstr ""
1082
 
1083
+ #: options/class.WpdiscuzOptionsSerialized.php:680
1084
  #: options/phrases-layouts/phrases-notification.php:49
1085
  msgid "Log out"
1086
  msgstr ""
1087
 
1088
+ #: options/class.WpdiscuzOptionsSerialized.php:681
1089
  msgid "logged in"
1090
  msgstr ""
1091
 
1092
+ #: options/class.WpdiscuzOptionsSerialized.php:682
1093
  msgid "to post a comment."
1094
  msgstr ""
1095
 
1096
+ #: options/class.WpdiscuzOptionsSerialized.php:683
1097
  #: options/phrases-layouts/phrases-comment.php:75
1098
  msgid "Vote Up"
1099
  msgstr ""
1100
 
1101
+ #: options/class.WpdiscuzOptionsSerialized.php:684
1102
  #: options/phrases-layouts/phrases-comment.php:79
1103
  msgid "Vote Down"
1104
  msgstr ""
1105
 
1106
+ #: options/class.WpdiscuzOptionsSerialized.php:685
1107
  #: options/phrases-layouts/phrases-notification.php:61
1108
  msgid "Vote Counted"
1109
  msgstr ""
1110
 
1111
+ #: options/class.WpdiscuzOptionsSerialized.php:686
1112
  msgid "You've already voted for this comment"
1113
  msgstr ""
1114
 
1115
+ #: options/class.WpdiscuzOptionsSerialized.php:687
1116
  #: options/phrases-layouts/phrases-notification.php:69
1117
  msgid "Voting Error"
1118
  msgstr ""
1119
 
1120
+ #: options/class.WpdiscuzOptionsSerialized.php:688
1121
  msgid "You Must Be Logged In To Vote"
1122
  msgstr ""
1123
 
1124
+ #: options/class.WpdiscuzOptionsSerialized.php:689
1125
  msgid "You cannot vote for your comment"
1126
  msgstr ""
1127
 
1128
+ #: options/class.WpdiscuzOptionsSerialized.php:690
1129
  msgid "You are not allowed to vote for this comment"
1130
  msgstr ""
1131
 
1132
+ #: options/class.WpdiscuzOptionsSerialized.php:691
1133
  #: options/phrases-layouts/phrases-notification.php:85
1134
  msgid "Invalid Captcha Code"
1135
  msgstr ""
1136
 
1137
+ #: options/class.WpdiscuzOptionsSerialized.php:692
1138
  #: options/phrases-layouts/phrases-notification.php:89
1139
  msgid "Some of field value is invalid"
1140
  msgstr ""
1141
 
1142
+ #: options/class.WpdiscuzOptionsSerialized.php:693
1143
  msgid "new comment"
1144
  msgstr ""
1145
 
1146
+ #: options/class.WpdiscuzOptionsSerialized.php:694
1147
  msgid "new comments"
1148
  msgstr ""
1149
 
1150
+ #: options/class.WpdiscuzOptionsSerialized.php:695
1151
  msgid "Comment awaiting moderation"
1152
  msgstr ""
1153
 
1154
+ #: options/class.WpdiscuzOptionsSerialized.php:696
1155
  msgid "new reply on your comment"
1156
  msgstr ""
1157
 
1158
+ #: options/class.WpdiscuzOptionsSerialized.php:697
1159
  msgid "new replies on your comments"
1160
  msgstr ""
1161
 
1162
+ #: options/class.WpdiscuzOptionsSerialized.php:698
1163
  #: options/phrases-layouts/phrases-general.php:52
1164
  msgid "New"
1165
  msgstr ""
1166
 
1167
+ #: options/class.WpdiscuzOptionsSerialized.php:699
1168
  #: options/phrases-layouts/phrases-notification.php:107
1169
  msgid "Sorry, the comment was not updated"
1170
  msgstr ""
1171
 
1172
+ #: options/class.WpdiscuzOptionsSerialized.php:700
1173
  #: options/phrases-layouts/phrases-notification.php:111
1174
  msgid "Sorry, this comment no longer possible to edit"
1175
  msgstr ""
1176
 
1177
+ #: options/class.WpdiscuzOptionsSerialized.php:701
1178
  msgid "You've not made any changes"
1179
  msgstr ""
1180
 
1181
+ #: options/class.WpdiscuzOptionsSerialized.php:702
1182
  #: options/phrases-layouts/phrases-comment.php:84
1183
  msgid "Save"
1184
  msgstr ""
1185
 
1186
+ #: options/class.WpdiscuzOptionsSerialized.php:703
1187
  #: options/phrases-layouts/phrases-comment.php:88
1188
  msgid "Cancel"
1189
  msgstr ""
1190
 
1191
+ #: options/class.WpdiscuzOptionsSerialized.php:704
1192
  msgid "Input is too short"
1193
  msgstr ""
1194
 
1195
+ #: options/class.WpdiscuzOptionsSerialized.php:705
1196
  msgid "Input is too long"
1197
  msgstr ""
1198
 
1199
+ #: options/class.WpdiscuzOptionsSerialized.php:706
1200
  #: options/phrases-layouts/phrases-comment.php:92
1201
  msgid "Read more &raquo;"
1202
  msgstr ""
1203
 
1204
+ #: options/class.WpdiscuzOptionsSerialized.php:707
1205
  #: options/phrases-layouts/phrases-comment.php:96
1206
  msgid "Anonymous"
1207
  msgstr ""
1208
 
1209
+ #: options/class.WpdiscuzOptionsSerialized.php:708
1210
  #: options/phrases-layouts/phrases-notification.php:118
1211
  #: options/phrases-layouts/phrases-notification.php:119
1212
  msgid "Please fill out required fields"
1213
  msgstr ""
1214
 
1215
+ #: options/class.WpdiscuzOptionsSerialized.php:709
1216
  #: options/phrases-layouts/phrases-form.php:67
1217
  #: options/phrases-layouts/phrases-form.php:68
1218
  msgid "Connect with"
1219
  msgstr ""
1220
 
1221
+ #: options/class.WpdiscuzOptionsSerialized.php:710
1222
  msgid "You're subscribed to"
1223
  msgstr ""
1224
 
1225
+ #: options/class.WpdiscuzOptionsSerialized.php:711
1226
  msgid "Participate in this discussion via email"
1227
  msgstr ""
1228
 
1229
+ #: options/class.WpdiscuzOptionsSerialized.php:712
1230
  #: options/phrases-layouts/phrases-form.php:72
1231
  msgid "&rsaquo;"
1232
  msgstr ""
1233
 
1234
+ #: options/class.WpdiscuzOptionsSerialized.php:713
1235
  #: options/phrases-layouts/phrases-email.php:52
1236
  msgid "Comment was approved"
1237
  msgstr ""
1238
 
1239
+ #: options/class.WpdiscuzOptionsSerialized.php:714
1240
  msgid "Hi, <br/> Your comment was approved."
1241
  msgstr ""
1242
 
1545
  msgid "Lazy load comments on scrolling"
1546
  msgstr ""
1547
 
1548
+ #: options/options-layouts/settings-general.php:149
1549
+ msgid "Enable first comments loading before scroll position is on comment box"
1550
+ msgstr ""
1551
+
1552
+ #: options/options-layouts/settings-general.php:154
1553
  msgid "Use WordPress Date/Time format"
1554
  msgstr ""
1555
 
1556
+ #: options/options-layouts/settings-general.php:155
1557
  msgid ""
1558
  "wpDiscuz shows Human Readable date format. If you check this option it'll "
1559
  "show the date/time format set in WordPress General Settings."
1560
  msgstr ""
1561
 
1562
+ #: options/options-layouts/settings-general.php:161
1563
  msgid "Current Wordpress date/time format"
1564
  msgstr ""
1565
 
1566
+ #: options/options-layouts/settings-general.php:167
1567
  msgid "Use Plugin .PO/.MO files"
1568
  msgstr ""
1569
 
1570
+ #: options/options-layouts/settings-general.php:168
1571
  msgid ""
1572
  "wpDiscuz phrase system allows you to translate all front-end phrases. "
1573
  "However if you have a multi-language website it'll not allow you to add more "
1577
  "translate all phrases based on language files according to current language."
1578
  msgstr ""
1579
 
1580
+ #: options/options-layouts/settings-general.php:175
1581
  msgid ""
1582
  "Help wpDiscuz to grow allowing people to recognize which comment plugin you "
1583
  "use"
1584
  msgstr ""
1585
 
1586
+ #: options/options-layouts/settings-general.php:177
1587
  msgid ""
1588
  "Please check this option on to help wpDiscuz get more popularity as your "
1589
  "thank to the hard work we do for you totally free. This option adds a very "
1591
  "visitors recognize the name of comment solution you use."
1592
  msgstr ""
1593
 
1594
+ #: options/options-layouts/settings-general.php:182
1595
  msgid "Thank you!"
1596
  msgstr ""
1597
 
1825
  msgstr ""
1826
 
1827
  #: options/options-layouts/settings-show-hide.php:153
1828
+ msgid "Display Ratings"
1829
  msgstr ""
1830
 
1831
  #: options/options-layouts/settings-show-hide.php:156
1836
  msgid "After Content"
1837
  msgstr ""
1838
 
1839
+ #: options/options-layouts/settings-show-hide.php:162
1840
+ msgid "Display ratings on none singular pages"
1841
+ msgstr ""
1842
+
1843
  #: options/options-layouts/settings-social.php:50
1844
  #: options/options-layouts/settings-social.php:61
1845
  #: options/options-layouts/settings-social.php:72
2332
  "wpDiscuz versions."
2333
  msgstr ""
2334
 
2335
+ #: templates/comment/comment-form.php:71
2336
  msgid "Unable to send an email"
2337
  msgstr ""
2338
 
2339
+ #: templates/comment/comment-form.php:73
2340
  msgid "Subscription not successed"
2341
  msgstr ""
2342
 
2343
  #. Plugin Name of the plugin/theme
2344
+ #: templates/comment/comment-form.php:290
2345
  msgid "wpDiscuz"
2346
  msgstr ""
2347
 
2348
+ #: utils/class.WpdiscuzHelper.php:346 utils/class.WpdiscuzHelper.php:349
2349
  msgid "Spoiler"
2350
  msgstr ""
2351
 
options/class.WpdiscuzOptions.php CHANGED
@@ -37,6 +37,7 @@ class WpdiscuzOptions {
37
  $this->optionsSerialized->redirectPage = isset($_POST['wpdiscuz_redirect_page']) ? $_POST['wpdiscuz_redirect_page'] : 0;
38
  $this->optionsSerialized->isGuestCanVote = isset($_POST['wc_is_guest_can_vote']) ? $_POST['wc_is_guest_can_vote'] : 0;
39
  $this->optionsSerialized->commentListLoadType = isset($_POST['commentListLoadType']) ? $_POST['commentListLoadType'] : 0;
 
40
  $this->optionsSerialized->votingButtonsShowHide = isset($_POST['wc_voting_buttons_show_hide']) ? $_POST['wc_voting_buttons_show_hide'] : 0;
41
  $this->optionsSerialized->votingButtonsStyle = isset($_POST['votingButtonsStyle']) ? $_POST['votingButtonsStyle'] : 0;
42
  $this->optionsSerialized->shareButtons = isset($_POST['wpdiscuz_share_buttons']) ? $_POST['wpdiscuz_share_buttons'] : array();
37
  $this->optionsSerialized->redirectPage = isset($_POST['wpdiscuz_redirect_page']) ? $_POST['wpdiscuz_redirect_page'] : 0;
38
  $this->optionsSerialized->isGuestCanVote = isset($_POST['wc_is_guest_can_vote']) ? $_POST['wc_is_guest_can_vote'] : 0;
39
  $this->optionsSerialized->commentListLoadType = isset($_POST['commentListLoadType']) ? $_POST['commentListLoadType'] : 0;
40
+ $this->optionsSerialized->lazyLoadOnPageLoad = isset($_POST['lazyLoadOnPageLoad']) ? $_POST['lazyLoadOnPageLoad'] : 0;
41
  $this->optionsSerialized->votingButtonsShowHide = isset($_POST['wc_voting_buttons_show_hide']) ? $_POST['wc_voting_buttons_show_hide'] : 0;
42
  $this->optionsSerialized->votingButtonsStyle = isset($_POST['votingButtonsStyle']) ? $_POST['votingButtonsStyle'] : 0;
43
  $this->optionsSerialized->shareButtons = isset($_POST['wpdiscuz_share_buttons']) ? $_POST['wpdiscuz_share_buttons'] : array();
options/class.WpdiscuzOptionsSerialized.php CHANGED
@@ -73,6 +73,14 @@ class WpdiscuzOptionsSerialized implements WpDiscuzConstants {
73
  * Default Value - Disabled
74
  */
75
  public $commentListLoadType;
 
 
 
 
 
 
 
 
76
 
77
  /**
78
  * Type - Checkbox
@@ -548,6 +556,7 @@ class WpdiscuzOptionsSerialized implements WpDiscuzConstants {
548
  $this->redirectPage = isset($options['wpdiscuz_redirect_page']) ? $options['wpdiscuz_redirect_page'] : 0;
549
  $this->isGuestCanVote = isset($options['wc_is_guest_can_vote']) ? $options['wc_is_guest_can_vote'] : 0;
550
  $this->commentListLoadType = isset($options['commentListLoadType']) ? $options['commentListLoadType'] : 0;
 
551
  $this->votingButtonsShowHide = isset($options['wc_voting_buttons_show_hide']) ? $options['wc_voting_buttons_show_hide'] : 0;
552
  $this->votingButtonsStyle = isset($options['votingButtonsStyle']) ? $options['votingButtonsStyle'] : 0;
553
  $this->shareButtons = isset($options['wpdiscuz_share_buttons']) ? $options['wpdiscuz_share_buttons'] : array('fb', 'twitter', 'google');
@@ -717,6 +726,7 @@ class WpdiscuzOptionsSerialized implements WpDiscuzConstants {
717
  'wpdiscuz_redirect_page' => $this->redirectPage,
718
  'wc_is_guest_can_vote' => $this->isGuestCanVote,
719
  'commentListLoadType' => $this->commentListLoadType,
 
720
  'wc_voting_buttons_show_hide' => $this->votingButtonsShowHide,
721
  'votingButtonsStyle' => $this->votingButtonsStyle,
722
  'wpdiscuz_share_buttons' => $this->shareButtons,
@@ -788,6 +798,7 @@ class WpdiscuzOptionsSerialized implements WpDiscuzConstants {
788
  'wc_is_guest_can_vote' => '1',
789
  'commentsLoadType' => '0',
790
  'commentListLoadType' => '0',
 
791
  'wc_voting_buttons_show_hide' => '0',
792
  'votingButtonsStyle' => '0',
793
  'wpdiscuz_share_buttons' => $this->shareButtons,
@@ -888,6 +899,7 @@ class WpdiscuzOptionsSerialized implements WpDiscuzConstants {
888
  $js_options['wc_msg_input_max_length'] = $this->phrases['wc_msg_input_max_length'];
889
  $js_options['is_user_logged_in'] = is_user_logged_in();
890
  $js_options['commentListLoadType'] = $this->commentListLoadType;
 
891
  $js_options['commentListUpdateType'] = $this->commentListUpdateType;
892
  $js_options['commentListUpdateTimer'] = $this->commentListUpdateTimer;
893
  $js_options['liveUpdateGuests'] = $this->liveUpdateGuests;
73
  * Default Value - Disabled
74
  */
75
  public $commentListLoadType;
76
+
77
+ /**
78
+ * Type - Checkbox
79
+ * Available Values - Checked/Unchecked
80
+ * Description - Load comments only after scrolling down
81
+ * Default Value - Unchecked
82
+ */
83
+ public $lazyLoadOnPageLoad;
84
 
85
  /**
86
  * Type - Checkbox
556
  $this->redirectPage = isset($options['wpdiscuz_redirect_page']) ? $options['wpdiscuz_redirect_page'] : 0;
557
  $this->isGuestCanVote = isset($options['wc_is_guest_can_vote']) ? $options['wc_is_guest_can_vote'] : 0;
558
  $this->commentListLoadType = isset($options['commentListLoadType']) ? $options['commentListLoadType'] : 0;
559
+ $this->lazyLoadOnPageLoad = isset($options['lazyLoadOnPageLoad']) ? $options['lazyLoadOnPageLoad'] : 0;
560
  $this->votingButtonsShowHide = isset($options['wc_voting_buttons_show_hide']) ? $options['wc_voting_buttons_show_hide'] : 0;
561
  $this->votingButtonsStyle = isset($options['votingButtonsStyle']) ? $options['votingButtonsStyle'] : 0;
562
  $this->shareButtons = isset($options['wpdiscuz_share_buttons']) ? $options['wpdiscuz_share_buttons'] : array('fb', 'twitter', 'google');
726
  'wpdiscuz_redirect_page' => $this->redirectPage,
727
  'wc_is_guest_can_vote' => $this->isGuestCanVote,
728
  'commentListLoadType' => $this->commentListLoadType,
729
+ 'lazyLoadOnPageLoad' => $this->lazyLoadOnPageLoad,
730
  'wc_voting_buttons_show_hide' => $this->votingButtonsShowHide,
731
  'votingButtonsStyle' => $this->votingButtonsStyle,
732
  'wpdiscuz_share_buttons' => $this->shareButtons,
798
  'wc_is_guest_can_vote' => '1',
799
  'commentsLoadType' => '0',
800
  'commentListLoadType' => '0',
801
+ 'lazyLoadOnPageLoad' => '0',
802
  'wc_voting_buttons_show_hide' => '0',
803
  'votingButtonsStyle' => '0',
804
  'wpdiscuz_share_buttons' => $this->shareButtons,
899
  $js_options['wc_msg_input_max_length'] = $this->phrases['wc_msg_input_max_length'];
900
  $js_options['is_user_logged_in'] = is_user_logged_in();
901
  $js_options['commentListLoadType'] = $this->commentListLoadType;
902
+ $js_options['lazyLoadOnPageLoad'] = $this->lazyLoadOnPageLoad;
903
  $js_options['commentListUpdateType'] = $this->commentListUpdateType;
904
  $js_options['commentListUpdateTimer'] = $this->commentListUpdateTimer;
905
  $js_options['liveUpdateGuests'] = $this->liveUpdateGuests;
options/options-layouts/settings-general.php CHANGED
@@ -110,7 +110,7 @@ if (!defined('ABSPATH')) {
110
  wp_dropdown_pages(array(
111
  'name' => 'wpdiscuz_redirect_page',
112
  'selected' => isset($this->optionsSerialized->redirectPage) ? $this->optionsSerialized->redirectPage : 0,
113
- 'show_option_none' => __('Do not redirect','wpdiscuz'),
114
  'option_none_value' => 0
115
  ));
116
  ?>
@@ -128,22 +128,26 @@ if (!defined('ABSPATH')) {
128
  </p>
129
  </th>
130
  <td>
131
- <fieldset class="commentListLoadType">
132
  <?php $commentListLoadType = isset($this->optionsSerialized->commentListLoadType) ? $this->optionsSerialized->commentListLoadType : 0; ?>
133
  <label title="<?php _e('[Load more] Button', 'wpdiscuz') ?>">
134
- <input type="radio" value="0" <?php checked('0' == $commentListLoadType); ?> name="commentListLoadType" id="commentListLoadDefault" />
135
  <span><?php _e('[Load more] Button', 'wpdiscuz') ?></span>
136
  </label> &nbsp;<br/>
137
  <label title="<?php _e('[Load rest of all comments] Button', 'wpdiscuz') ?>">
138
- <input type="radio" value="1" <?php checked('1' == $commentListLoadType); ?> name="commentListLoadType" id="commentListLoadRest" />
139
  <span><?php _e('[Load rest of all comments] Button', 'wpdiscuz') ?></span>
140
  </label><br>
141
  <label title="<?php _e('Lazy load comments on scrolling', 'wpdiscuz') ?>">
142
- <input type="radio" value="2" <?php checked('2' == $commentListLoadType); ?> name="commentListLoadType" id="commentListLoadLazy" />
143
  <span><?php _e('Lazy load comments on scrolling', 'wpdiscuz') ?></span>
144
  </label> &nbsp;<br/>
145
  </fieldset>
146
  </td>
 
 
 
 
147
  </tr>
148
  <tr valign="top">
149
  <th scope="row">
110
  wp_dropdown_pages(array(
111
  'name' => 'wpdiscuz_redirect_page',
112
  'selected' => isset($this->optionsSerialized->redirectPage) ? $this->optionsSerialized->redirectPage : 0,
113
+ 'show_option_none' => __('Do not redirect', 'wpdiscuz'),
114
  'option_none_value' => 0
115
  ));
116
  ?>
128
  </p>
129
  </th>
130
  <td>
131
+ <fieldset>
132
  <?php $commentListLoadType = isset($this->optionsSerialized->commentListLoadType) ? $this->optionsSerialized->commentListLoadType : 0; ?>
133
  <label title="<?php _e('[Load more] Button', 'wpdiscuz') ?>">
134
+ <input type="radio" value="0" <?php checked('0' == $commentListLoadType); ?> name="commentListLoadType" id="commentListLoadDefault" class="commentListLoadType"/>
135
  <span><?php _e('[Load more] Button', 'wpdiscuz') ?></span>
136
  </label> &nbsp;<br/>
137
  <label title="<?php _e('[Load rest of all comments] Button', 'wpdiscuz') ?>">
138
+ <input type="radio" value="1" <?php checked('1' == $commentListLoadType); ?> name="commentListLoadType" id="commentListLoadRest" class="commentListLoadType" />
139
  <span><?php _e('[Load rest of all comments] Button', 'wpdiscuz') ?></span>
140
  </label><br>
141
  <label title="<?php _e('Lazy load comments on scrolling', 'wpdiscuz') ?>">
142
+ <input type="radio" value="2" <?php checked('2' == $commentListLoadType); ?> name="commentListLoadType" id="commentListLoadLazy" class="commentListLoadType commentListLoadLazy" />
143
  <span><?php _e('Lazy load comments on scrolling', 'wpdiscuz') ?></span>
144
  </label> &nbsp;<br/>
145
  </fieldset>
146
  </td>
147
+ </tr>
148
+ <tr valign="top" id="row_lazyLoadOnPageLoad">
149
+ <th scope="row"><label for="lazyLoadOnPageLoad"><?php _e('Enable first comments loading before scroll position is on comment box', 'wpdiscuz'); ?></label></th>
150
+ <td><input type="checkbox" <?php checked($this->optionsSerialized->lazyLoadOnPageLoad == 1) ?> value="1" name="lazyLoadOnPageLoad" id="lazyLoadOnPageLoad" /></td>
151
  </tr>
152
  <tr valign="top">
153
  <th scope="row">
readme.txt CHANGED
@@ -3,16 +3,17 @@ Contributors: gVectors Team
3
  Tags: comment, comments, ajax comments, custom comment form, custom comment field
4
  Requires at least: 4.4
5
  Tested up to: 4.9
6
- Stable tag: 4.1.0
 
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
- AJAX powered realtime comments. Designed to extend WordPress native comments. Custom comment forms and fields.
11
 
12
  == Description ==
13
 
14
- AJAX realtime comment system with custom comment form and fields. Designed to supercharge Wordpress native comments. Super fast and responsive with dozens features. This is the best Disqus alternative, if you want to keep your comments in your database. wpDiscuz also the best alternative to Livefyre, Jetpack and Facebook comments.
15
-
16
 
17
  * Support Forum: [https://gvectors.com/forum/](https://gvectors.com/forum/)
18
  * wpDiscuz Demo: [http://wpdiscuz.com/wpdiscuz-4/](http://wpdiscuz.com/wpdiscuz-4/)
@@ -32,10 +33,16 @@ Integration with AntiSpam plugins
32
  * WordPress Zero Spam
33
  * WPBruiser {no-Captcha anti-Spam}
34
 
 
 
 
 
 
35
 
36
- = wpDiscuz Features: =
37
 
38
  * | Adds interactive comment box on posts and other content types
 
39
  * | Responsive comments form and comment threads design
40
  * | Clean, simple and easy user interface and user experience
41
  * | Live update of new comments with notifier buttons
@@ -47,7 +54,7 @@ Integration with AntiSpam plugins
47
  * | Ajax button "Load More Comments" instead of simple comments pagination
48
  * | Lazy load wpDiscuz comments on scrolling
49
  * | Different comment date formats, reflects Wordpress date format settings
50
- * | Users can edit their comments (time-frame can be limited by admin)
51
  * | Automatic URLs to link conversion in comment texts
52
  * | Automatic image source URLs to image (HTML) conversion in comment texts
53
  * | Long comment text breaking function ("Read more" button)
@@ -65,7 +72,10 @@ Integration with AntiSpam plugins
65
  * | Post sharing options: Facebook, Twitter and Google+
66
  * | Quick Tags on comment form textarea
67
  * | Custom Comment Forms with custom fields
 
68
  * | Option to overwrite comment template and style
 
 
69
 
70
 
71
  = Add-ons =
@@ -159,16 +169,9 @@ Nothing will be lost! **Comments - wpDiscuz** will show all old comments.
159
 
160
  == Changelog ==
161
 
162
- = 4.1.0 =
163
-
164
- * Speed: v4.1 comes with new acelerated engine, it's twice faster than older versions
165
- * Added: Lazy load improvement, loads comments once scroll position is on comment box
166
- * Added: With wpDiscuz v4.1 guest are also allowed to edit own comments
167
- * Added: Highlights new comments since user last visit.
168
- * Fixed Bug: Issues with live update function
169
- * Fixed Bug: Style issue on RTL pages if avatars are disabled
170
- * Fixed Bug: Lazy load doesn't work if scrollbar at the bottom of page after page loading
171
 
 
172
 
173
  IMPORTANT:
174
 
@@ -177,7 +180,17 @@ IMPORTANT:
177
  - If you use CDN and found some issue please purge it.
178
  - If your server PHP version is lower than 5.4, [please change it to hogher](https://wordpress.org/support/topic/wpdiscuz-4-requires-php-5-4-and-higher/)
179
 
180
- = 4.0.15 =
 
 
 
 
 
 
 
 
 
 
181
 
182
  * Now wpDiscuz requires at least WordPress 4.4 version
183
  * Added Option : Send notification to comment author when comment was approved
@@ -187,37 +200,37 @@ IMPORTANT:
187
  * Fixed Bug : Comment showing only after page refresh
188
 
189
 
190
- = 4.0.14 =
191
 
192
  * Fixed Bug: Use backslash symbol in comment textarea: '\'
193
  * Fixed Bug: Loose custom field data on comment editing
194
 
195
- = 4.0.13 =
196
 
197
  Fixed Bug: CSS changes and Style issues
198
 
199
- = 4.0.12 =
200
 
201
  * Fixed Bug: Facebook share button conflict with Social Login buttons
202
  * Fixed Bug: Problem with Twitter share button
203
  * Fixed Bug: Unable to change some options in custom fields (phone number, etc...)
204
 
205
- = 4.0.11 =
206
 
207
  * Fixed Bug: Parse error: syntax error on some servers
208
 
209
- = 4.0.10 =
210
 
211
  * Fixed Bug: captcha setting reseted on update
212
 
213
- = 4.0.9 =
214
 
215
- * Fixed Bug: Subscription doesn't work when replying from dashboard
216
  * Fixed Bug: Wrong subscription confirmation link on second comment subscription
217
  * Fixed Bug: Comments sorting problem if comment sorting type is set "older".
218
  * Fixed Bug: Design issue with phrase tabs.
219
 
220
- = 4.0.8 =
221
 
222
  * Changed: Keep displaying comments under moderation for comment author (doesn't hide after refreshing page)
223
  * Fixed Bug: Comment editing issue when wpDiscuz Comment Search addon is activated
@@ -225,7 +238,7 @@ Fixed Bug: CSS changes and Style issues
225
  * Wordpress 4.8 compatibility
226
 
227
 
228
- = 4.0.7 =
229
 
230
  [Release Summary](https://gvectors.com/forum/important-information-and-announcements/wpdiscuz-4-0-7-is-released/)
231
 
@@ -238,19 +251,19 @@ Fixed Bug: CSS changes and Style issues
238
  * Fixed Bug: jQuery.cookie.js/jQuery.cookie.min.js scripts fail to load
239
  * Fixed Bug: Custom Field displaying order
240
 
241
- = 4.0.6 =
242
 
243
  * Fixed Bug: HTML filtering
244
  * Changed: Removing "img" quicktag
245
 
246
- = 4.0.5 =
247
 
248
  * Added: Spoiler quicktag and Spoiler in comment content
249
  * Fixed Bug: manage non-https source URLs in comment content
250
  * Fixed Bug: Image quicktag doesn't wok for guest commenting
251
  * Fixed Bug: Incorrect HTML filtering in comment form top hook
252
 
253
- = 4.0.4 =
254
 
255
  * Changed: wpDiscuz Tip messages only left in wpDiscuz admin page.
256
  * Changed: One click permanent dismiss of all Tips messages (no need for each one).
@@ -259,7 +272,7 @@ Fixed Bug: CSS changes and Style issues
259
  * New Addon: [wpDiscuz - Subscription Manager](https://gvectors.com/product/wpdiscuz-subscribe-manager/)
260
  * Fixed Bug: Pending comments now appearing for Frontend Moderation addon, during live update(admins and editors).
261
 
262
- = 4.0.3 =
263
 
264
  * Added: Option to enable wpDiscuz on home page.
265
  * Added: Supports network activation in WordPress MultiSites
@@ -268,21 +281,21 @@ Fixed Bug: CSS changes and Style issues
268
  * Fixed Bug: Error output in dynamic CSS file
269
  * Security: Proper data filtering
270
 
271
- = 4.0.2 =
272
 
273
  * Fixed Bug: Translation Issues
274
  * Fixed Bug: Error open_basedir restriction in admin menu
275
  * Fixed Bug: Comment field validation issue, no message on Mac and iPhone
276
  * Fixed Bug: Submit button stopped working after update
277
 
278
- = 4.0.1 =
279
 
280
  * Fixed Bug: Unable to disable comment author labels
281
  * Fixed Bug: Twitter share button wrong title
282
  * Fixed Bug: PHP Fatal error - conflict with WPBruiser no-Captcha anti-Spam plugin
283
  * Fixed Bug: Missing arguments for this function: "renderAdminCommentMetaHtml()"
284
 
285
- = 4.0.0 =
286
 
287
  * Comment Template: New, modern and clean comment list layout and design
288
  * Comment Template: [Comment template and style overwriting option](https://gvectors.com/forum/important-information-and-announcements/wpdiscuz-4-custom-template-and-style/). Allows to create custom comment layout and style using copy of wpDiscuz comment template and style.css in WordPress active theme folder.
@@ -597,16 +610,16 @@ More information here: http://wpdiscuz.com/wpdiscuz-3-0-0/
597
  * Added: Option to set maximum character limit for comment text
598
  * Added: Option to enable .po/.mo translation files for mult-language sites
599
  * Added: Allowed new HTML tags (blockquote, ul, ol, li, code, em, abbr...)
600
- * Fixed Bug: Avatar duplication on reply form
601
  * Fixed Bug: Author display name update when it changed on UM profile page
602
  * Fixed Bug: 404 error on clicking subscription confirmation link
603
- * Fixed Bug: Email validation issue with .info and other TLD with more than 3 chars
604
 
605
  = 2.2.2 =
606
  * Fixed Bug: Some phrases were not translate-able
607
- * Fixed Bug: Social Network Avatar display problem
608
  * Fixed Bug: Issues with site layout, website field and Facebook login button
609
- * Fixed Bug: Error message "URL is invalid" for Website URLs starting with http://
610
  * Fixed Bug: Unlimited voting issue for guests
611
 
612
  = 2.2.1 =
@@ -628,7 +641,7 @@ Integrated with WordPress Social Login, Super Socializer and Social Connect plug
628
  * Fixed Bug: First comment redirection without setting the destination page
629
 
630
  = 2.1.9 =
631
- * Added: Option to redirect first commenters to "Thank You" page
632
  * Fixed Bug: Issues with guest voting (more secure and stable)
633
 
634
  = 2.1.8 =
@@ -649,14 +662,14 @@ Integrated with WordPress Social Login, Super Socializer and Social Connect plug
649
  * Fixed Bug: CSS overrides some default styles on /wp-admin/
650
 
651
  = 2.1.5 =
652
- * Fixed Bug: Problems with email notifications
653
- * Fixed Bug: Empty name of anonymous comments
654
  * Added: RTL Support (for right to left languages)
655
  * Added: Option to set form fields border color
656
  * Added: Additional phrases for plural form
657
  * Added: Tabbed General Settings admin page
658
  * Added: Tabbed Phrase Manager admin page
659
- * Added: Better integration with Postmatic
660
  * Added: Portuguese (pt_PT) language, thanks to Celso Azevedo
661
 
662
  = 2.1.4 =
@@ -681,7 +694,7 @@ Integrated with WordPress Social Login, Super Socializer and Social Connect plug
681
  * Added : Scroll-down to comment are on clicking comments/replies link
682
  * Added : Filter hooks on email fields
683
  * Added : Filter hooks on comment form fields
684
- * Fixed Bug: Image source URL to image conversion in comment content
685
 
686
  = 2.0.9 =
687
  * Fixed Bug: Adapted with some themes ( Fatal error: Cannot redeclare add_user() )
@@ -701,13 +714,13 @@ https://gvectors.com/questions/wpdiscuz-comment-form-is-missing/
701
  = 2.0.5 =
702
  * Added : Manage Subscriptions section on comment forms
703
  * Added : New subscribe option: Notify of new replies to all my comments
704
- * Added : Show logged-in user name and logout link on top of the main form
705
  * Added : Ability to insert image in comment content using image source URL
706
  * Added : Language translation support with .mo and .po files
707
  * Added : Hebrew (he_IL) language, thanks to Ahrale Shrem
708
- * Added : Options to show/hide new subscription checkbox
709
  * Fixed Bug: Duplication of "New Comment" email notifications for post authors
710
- * Fixed Bug: Problem with large space between the paragraphs
711
 
712
  = 2.0.4 =
713
  * Added : Current subscribe status note on comment form (for logged-in users)
3
  Tags: comment, comments, ajax comments, custom comment form, custom comment field
4
  Requires at least: 4.4
5
  Tested up to: 4.9
6
+ Stable tag: 4.1.1
7
+ Requires PHP: 5.4 and higher
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
+ AJAX powered realtime comments. Designed to extend WordPress native comments. Custom comment forms and fields. Commenting never been such an easy.
12
 
13
  == Description ==
14
 
15
+ AJAX realtime comment system with custom comment form and fields. Designed to supercharge Wordpress native comments. Super fast and responsive with dozens features. This is the best Disqus alternative, if you want to keep your comments in your database. wpDiscuz also the best alternative to Livefyre, Jetpack and Facebook comments. Commenting never been such an easy.
16
+ Comments - wpDiscuz is Multisite and RTL ready!
17
 
18
  * Support Forum: [https://gvectors.com/forum/](https://gvectors.com/forum/)
19
  * wpDiscuz Demo: [http://wpdiscuz.com/wpdiscuz-4/](http://wpdiscuz.com/wpdiscuz-4/)
33
  * WordPress Zero Spam
34
  * WPBruiser {no-Captcha anti-Spam}
35
 
36
+ = Comments - wpDiscuz "Coming soon" Features: =
37
+
38
+ * | New Option : Commenting can be disabled depending user roles
39
+ * | New Option : "Load all comments" on page load
40
+ * | New Option : Load only parent(root) comments
41
 
42
+ = Comments - wpDiscuz Features: =
43
 
44
  * | Adds interactive comment box on posts and other content types
45
+ * | Commenting can be allowed/disallowed on posts and other content types
46
  * | Responsive comments form and comment threads design
47
  * | Clean, simple and easy user interface and user experience
48
  * | Live update of new comments with notifier buttons
54
  * | Ajax button "Load More Comments" instead of simple comments pagination
55
  * | Lazy load wpDiscuz comments on scrolling
56
  * | Different comment date formats, reflects Wordpress date format settings
57
+ * | Logged in users and guests can edit their comments (time-frame can be limited by admin)
58
  * | Automatic URLs to link conversion in comment texts
59
  * | Automatic image source URLs to image (HTML) conversion in comment texts
60
  * | Long comment text breaking function ("Read more" button)
72
  * | Post sharing options: Facebook, Twitter and Google+
73
  * | Quick Tags on comment form textarea
74
  * | Custom Comment Forms with custom fields
75
+ * | Rating shortcode for posts via comment custom field [wpdrating] with a lot of attributes
76
  * | Option to overwrite comment template and style
77
+ * | Highlighting new comments since last visit with different background
78
+ * | Notification to comment author when comment was approved
79
 
80
 
81
  = Add-ons =
169
 
170
  == Changelog ==
171
 
172
+ = Comments - wpDiscuz v4.1.1 =
 
 
 
 
 
 
 
 
173
 
174
+ * Added : Option to enable first comments loading before scroll position is on comment box
175
 
176
  IMPORTANT:
177
 
180
  - If you use CDN and found some issue please purge it.
181
  - If your server PHP version is lower than 5.4, [please change it to hogher](https://wordpress.org/support/topic/wpdiscuz-4-requires-php-5-4-and-higher/)
182
 
183
+ = Comments - wpDiscuz v4.1.0 =
184
+
185
+ * Speed: v4.1 comes with new acelerated engine, it's twice faster than older versions
186
+ * Added: Lazy load improvement, loads comments once scroll position is on comment box
187
+ * Added: With wpDiscuz v4.1 guest are also allowed to edit own comments
188
+ * Added: Highlights new comments since user last visit.
189
+ * Fixed Bug: Issues with live update function
190
+ * Fixed Bug: Style issue on RTL pages if avatars are disabled
191
+ * Fixed Bug: Lazy load doesn't work if scrollbar at the bottom of page after page loading
192
+
193
+ = Comments - wpDiscuz v4.0.15 =
194
 
195
  * Now wpDiscuz requires at least WordPress 4.4 version
196
  * Added Option : Send notification to comment author when comment was approved
200
  * Fixed Bug : Comment showing only after page refresh
201
 
202
 
203
+ = Comments - wpDiscuz v4.0.14 =
204
 
205
  * Fixed Bug: Use backslash symbol in comment textarea: '\'
206
  * Fixed Bug: Loose custom field data on comment editing
207
 
208
+ = Comments - wpDiscuz v4.0.13 =
209
 
210
  Fixed Bug: CSS changes and Style issues
211
 
212
+ = Comments - wpDiscuz v4.0.12 =
213
 
214
  * Fixed Bug: Facebook share button conflict with Social Login buttons
215
  * Fixed Bug: Problem with Twitter share button
216
  * Fixed Bug: Unable to change some options in custom fields (phone number, etc...)
217
 
218
+ = Comments - wpDiscuz v4.0.11 =
219
 
220
  * Fixed Bug: Parse error: syntax error on some servers
221
 
222
+ = Comments - wpDiscuz v4.0.10 =
223
 
224
  * Fixed Bug: captcha setting reseted on update
225
 
226
+ = Comments - wpDiscuz v4.0.9 =
227
 
228
+ * Fixed Bug: Subscription doesn't work when commenting from dashboard
229
  * Fixed Bug: Wrong subscription confirmation link on second comment subscription
230
  * Fixed Bug: Comments sorting problem if comment sorting type is set "older".
231
  * Fixed Bug: Design issue with phrase tabs.
232
 
233
+ = Comments - wpDiscuz v4.0.8 =
234
 
235
  * Changed: Keep displaying comments under moderation for comment author (doesn't hide after refreshing page)
236
  * Fixed Bug: Comment editing issue when wpDiscuz Comment Search addon is activated
238
  * Wordpress 4.8 compatibility
239
 
240
 
241
+ = Comments - wpDiscuz v4.0.7 =
242
 
243
  [Release Summary](https://gvectors.com/forum/important-information-and-announcements/wpdiscuz-4-0-7-is-released/)
244
 
251
  * Fixed Bug: jQuery.cookie.js/jQuery.cookie.min.js scripts fail to load
252
  * Fixed Bug: Custom Field displaying order
253
 
254
+ = Comments - wpDiscuz v4.0.6 =
255
 
256
  * Fixed Bug: HTML filtering
257
  * Changed: Removing "img" quicktag
258
 
259
+ = Comments - wpDiscuz v4.0.5 =
260
 
261
  * Added: Spoiler quicktag and Spoiler in comment content
262
  * Fixed Bug: manage non-https source URLs in comment content
263
  * Fixed Bug: Image quicktag doesn't wok for guest commenting
264
  * Fixed Bug: Incorrect HTML filtering in comment form top hook
265
 
266
+ = Comments - wpDiscuz v4.0.4 =
267
 
268
  * Changed: wpDiscuz Tip messages only left in wpDiscuz admin page.
269
  * Changed: One click permanent dismiss of all Tips messages (no need for each one).
272
  * New Addon: [wpDiscuz - Subscription Manager](https://gvectors.com/product/wpdiscuz-subscribe-manager/)
273
  * Fixed Bug: Pending comments now appearing for Frontend Moderation addon, during live update(admins and editors).
274
 
275
+ = Comments - wpDiscuz v4.0.3 =
276
 
277
  * Added: Option to enable wpDiscuz on home page.
278
  * Added: Supports network activation in WordPress MultiSites
281
  * Fixed Bug: Error output in dynamic CSS file
282
  * Security: Proper data filtering
283
 
284
+ = Comments - wpDiscuz v4.0.2 =
285
 
286
  * Fixed Bug: Translation Issues
287
  * Fixed Bug: Error open_basedir restriction in admin menu
288
  * Fixed Bug: Comment field validation issue, no message on Mac and iPhone
289
  * Fixed Bug: Submit button stopped working after update
290
 
291
+ = Comments - wpDiscuz v4.0.1 =
292
 
293
  * Fixed Bug: Unable to disable comment author labels
294
  * Fixed Bug: Twitter share button wrong title
295
  * Fixed Bug: PHP Fatal error - conflict with WPBruiser no-Captcha anti-Spam plugin
296
  * Fixed Bug: Missing arguments for this function: "renderAdminCommentMetaHtml()"
297
 
298
+ = Comments - wpDiscuz v4.0.0 =
299
 
300
  * Comment Template: New, modern and clean comment list layout and design
301
  * Comment Template: [Comment template and style overwriting option](https://gvectors.com/forum/important-information-and-announcements/wpdiscuz-4-custom-template-and-style/). Allows to create custom comment layout and style using copy of wpDiscuz comment template and style.css in WordPress active theme folder.
610
  * Added: Option to set maximum character limit for comment text
611
  * Added: Option to enable .po/.mo translation files for mult-language sites
612
  * Added: Allowed new HTML tags (blockquote, ul, ol, li, code, em, abbr...)
613
+ * Fixed Bug: Avatar duplication on reply comment form
614
  * Fixed Bug: Author display name update when it changed on UM profile page
615
  * Fixed Bug: 404 error on clicking subscription confirmation link
616
+ * Fixed Bug: Email validation issue with .info and other TLD with more than 3 chars on commenting
617
 
618
  = 2.2.2 =
619
  * Fixed Bug: Some phrases were not translate-able
620
+ * Fixed Bug: Social Network Avatar display problem after commneting
621
  * Fixed Bug: Issues with site layout, website field and Facebook login button
622
+ * Fixed Bug: Error message "URL is invalid" for Website URLs starting with http:// on commenting
623
  * Fixed Bug: Unlimited voting issue for guests
624
 
625
  = 2.2.1 =
641
  * Fixed Bug: First comment redirection without setting the destination page
642
 
643
  = 2.1.9 =
644
+ * Added: Option to redirect first commenters to "Thank You" page after commenting
645
  * Fixed Bug: Issues with guest voting (more secure and stable)
646
 
647
  = 2.1.8 =
662
  * Fixed Bug: CSS overrides some default styles on /wp-admin/
663
 
664
  = 2.1.5 =
665
+ * Fixed Bug: Problems with email notifications after subscription
666
+ * Fixed Bug: Empty name of anonymous comments after commenting
667
  * Added: RTL Support (for right to left languages)
668
  * Added: Option to set form fields border color
669
  * Added: Additional phrases for plural form
670
  * Added: Tabbed General Settings admin page
671
  * Added: Tabbed Phrase Manager admin page
672
+ * Added: Better integration with Postmatic for commenting via email
673
  * Added: Portuguese (pt_PT) language, thanks to Celso Azevedo
674
 
675
  = 2.1.4 =
694
  * Added : Scroll-down to comment are on clicking comments/replies link
695
  * Added : Filter hooks on email fields
696
  * Added : Filter hooks on comment form fields
697
+ * Fixed Bug: Image source URL to image conversion in comment content after commenting
698
 
699
  = 2.0.9 =
700
  * Fixed Bug: Adapted with some themes ( Fatal error: Cannot redeclare add_user() )
714
  = 2.0.5 =
715
  * Added : Manage Subscriptions section on comment forms
716
  * Added : New subscribe option: Notify of new replies to all my comments
717
+ * Added : Show logged-in user name and logout link on top of the main comment form
718
  * Added : Ability to insert image in comment content using image source URL
719
  * Added : Language translation support with .mo and .po files
720
  * Added : Hebrew (he_IL) language, thanks to Ahrale Shrem
721
+ * Added : Options to show/hide new subscription checkbox on comment form
722
  * Fixed Bug: Duplication of "New Comment" email notifications for post authors
723
+ * Fixed Bug: Problem with large space between the paragraphs after commenting
724
 
725
  = 2.0.4 =
726
  * Added : Current subscribe status note on comment form (for logged-in users)
templates/comment/comment-form.php CHANGED
@@ -208,12 +208,11 @@ if (!post_password_required($post->ID)) {
208
  <?php } ?>
209
  <?php
210
  do_action('comment_form_closed');
211
- do_action('wpdiscuz_comment_form_closed', $post, $currentUser, $commentsCount);
212
  ?>
213
  <div id="wpcomm" class="<?php echo $wpCommClasses; ?>" style="border:none;">
214
  <?php } ?>
215
- <?php do_action('wpdiscuz_before_comments', $post, $currentUser, $commentsCount); ?>
216
-
217
  <?php if ($commentsCount && $wpdiscuz->optionsSerialized->showSortingButtons && !$wpdiscuz->optionsSerialized->wordpressIsPaginate) { ?>
218
  <div class="wpdiscuz-front-actions">
219
  <div class="wpdiscuz-sort-buttons" style="font-size:14px;"><?php echo $wpdiscuz->optionsSerialized->phrases['wc_sort_by']; ?>: &nbsp;
208
  <?php } ?>
209
  <?php
210
  do_action('comment_form_closed');
211
+ do_action('wpdiscuz_comment_form_closed', $post, $currentUser, $commentsCount);
212
  ?>
213
  <div id="wpcomm" class="<?php echo $wpCommClasses; ?>" style="border:none;">
214
  <?php } ?>
215
+ <?php do_action('wpdiscuz_before_comments', $post, $currentUser, $commentsCount); ?>
 
216
  <?php if ($commentsCount && $wpdiscuz->optionsSerialized->showSortingButtons && !$wpdiscuz->optionsSerialized->wordpressIsPaginate) { ?>
217
  <div class="wpdiscuz-front-actions">
218
  <div class="wpdiscuz-sort-buttons" style="font-size:14px;"><?php echo $wpdiscuz->optionsSerialized->phrases['wc_sort_by']; ?>: &nbsp;