Comments – wpDiscuz - Version 4.0.9

Version Description

  • Fixed Bug: Subscription doesn't work when replying from dashboard
  • Fixed Bug: Wrong subscription confirmation link on second comment subscription
  • Fixed Bug: Comments sorting problem if comment sorting type is set "older".
  • Fixed Bug: Design issue with phrase tabs.

IMPORTANT:

  • If you have JetPack installed please deactivate Jetpack comments, it affects wpDiscuz
  • If you have a Cache Plugin, please delete all caches after wpDiscuz update.
  • If you use CDN and found some issue please purge it.
  • If your server PHP version is lower than 5.4, please change it to hogher
Download this release

Release Info

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

Code changes from version 4.0.8 to 4.0.9

assets/css/wpdiscuz.css CHANGED
@@ -157,7 +157,8 @@
157
  #wpcomm .wc-field-textarea .commentTextMaxLength{display:none;font-size:11px;color:#aaa;position:absolute;top:3px;right:5px}
158
  #wpcomm .wc-field-textarea .wpdiscuz-quicktags-enabled .commentTextMaxLength{top:39px}
159
  #wpcomm .wc-field-textarea .commentTextMaxLength.left10{color:#f00}
160
- #wpcomm .wc-field-textarea .wpdiscuz-textarea-wrap{padding:0;margin:0;background:transparent;}
 
161
  #wpcomm #wpdiscuz-edit-form .wpdiscuz-textarea-wrap{padding:0;margin:0;background:transparent;position: relative;border: none;}
162
  #wpcomm .wc-field-textarea .wpdiscuz-textarea-foot{border:0;padding:3px 0;width:97%;text-align:right;line-height:14px;margin:0 auto;border-top:1px dotted #ddd}
163
  #wpcomm .wc-field-textarea .wpdiscuz-textarea-foot .wpdiscuz-button{line-height:14px;display:inline-block;min-width:20px;width:auto;height:20px;padding:0;margin:2px 3px;cursor:pointer;border:0;float:none}
@@ -346,7 +347,38 @@
346
  font-style: italic;
347
  padding: 5px;
348
  }
349
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
350
  @media screen and (max-width: 1024px){
351
  .wpdiscuz-post-rating-wrap.wpd-custom-field > [class ^= wpdiscuz-post-rating-wrap-custom_field]{
352
  flex-basis: 33%;
157
  #wpcomm .wc-field-textarea .commentTextMaxLength{display:none;font-size:11px;color:#aaa;position:absolute;top:3px;right:5px}
158
  #wpcomm .wc-field-textarea .wpdiscuz-quicktags-enabled .commentTextMaxLength{top:39px}
159
  #wpcomm .wc-field-textarea .commentTextMaxLength.left10{color:#f00}
160
+ #wpcomm .wc-field-textarea .wpdiscuz-textarea-wrap {padding:0;margin:0;background:transparent;}
161
+ #wpcomm .wc-field-textarea .wpdiscuz-textarea-wrap textarea {margin-bottom : 0 !important;}
162
  #wpcomm #wpdiscuz-edit-form .wpdiscuz-textarea-wrap{padding:0;margin:0;background:transparent;position: relative;border: none;}
163
  #wpcomm .wc-field-textarea .wpdiscuz-textarea-foot{border:0;padding:3px 0;width:97%;text-align:right;line-height:14px;margin:0 auto;border-top:1px dotted #ddd}
164
  #wpcomm .wc-field-textarea .wpdiscuz-textarea-foot .wpdiscuz-button{line-height:14px;display:inline-block;min-width:20px;width:auto;height:20px;padding:0;margin:2px 3px;cursor:pointer;border:0;float:none}
347
  font-style: italic;
348
  padding: 5px;
349
  }
350
+ #wpcomm .wpdiscuz-textarea-wrap textarea:focus{
351
+ border: none!important;
352
+ box-shadow: none;
353
+ }
354
+ #wpcomm .wc-comment-title{
355
+ display: -webkit-flex;
356
+ display: -moz-flex;
357
+ display: -ms-flex;
358
+ display: -o-flex;
359
+ display: flex;
360
+ justify-content: flex-end;
361
+ -ms-align-items: center;
362
+ align-items: center;
363
+ }
364
+ #wpcomm .wc-comment-title .wc_header_text_count{
365
+ padding-top: 1px;
366
+ padding-right: 8px;
367
+ font-weight: 700;
368
+ }
369
+ #wpcomm .wpdiscuz-front-actions .wpdiscuz-sort-buttons{
370
+ display: -webkit-flex;
371
+ display: -moz-flex;
372
+ display: -ms-flex;
373
+ display: -o-flex;
374
+ display: flex;
375
+ justify-content: flex-end;
376
+ -ms-align-items: center;
377
+ align-items: center;
378
+ }
379
+ #wpcomm .wpdiscuz-front-actions .wpdiscuz-sort-buttons .wpdiscuz-sort-button{
380
+ padding-top: 0;
381
+ }
382
  @media screen and (max-width: 1024px){
383
  .wpdiscuz-post-rating-wrap.wpd-custom-field > [class ^= wpdiscuz-post-rating-wrap-custom_field]{
384
  flex-basis: 33%;
assets/js/wpdiscuz.js CHANGED
@@ -286,13 +286,13 @@ jQuery(document).ready(function ($) {
286
  }
287
  }
288
  if (obj.held_moderate == 1) {
289
- var moderateCommentTime = 7 * 24 * 60 * 60;
290
  var moderateComments = '';
291
- if (Cookies.get('wc_moderate_comments')) {
292
- moderateComments = Cookies.get('wc_moderate_comments');
293
  }
294
  moderateComments += obj.new_comment_id + ',';
295
- Cookies.set('wc_moderate_comments', moderateComments, {expires: moderateCommentTime, path: location.href});
296
  }
297
  notifySubscribers(obj);
298
  wpdiscuzRedirect(obj);
286
  }
287
  }
288
  if (obj.held_moderate == 1) {
289
+ var moderateCommentTime = 30 * 24 * 60 * 60;
290
  var moderateComments = '';
291
+ if (Cookies.get('wc_moderate_comments_' + wpdiscuzPostId)) {
292
+ moderateComments = Cookies.get('wc_moderate_comments_' + wpdiscuzPostId);
293
  }
294
  moderateComments += obj.new_comment_id + ',';
295
+ Cookies.set('wc_moderate_comments_' + wpdiscuzPostId, moderateComments, {expires: moderateCommentTime, path: '/'});
296
  }
297
  notifySubscribers(obj);
298
  wpdiscuzRedirect(obj);
assets/third-party/wpdcookiejs/js-cookie.js CHANGED
@@ -1,165 +1,165 @@
1
- /*!
2
- * JavaScript Cookie v2.1.3
3
- * https://github.com/js-cookie/js-cookie
4
- *
5
- * Copyright 2006, 2015 Klaus Hartl & Fagner Brack
6
- * Released under the MIT license
7
- */
8
- ;(function (factory) {
9
- var registeredInModuleLoader = false;
10
- if (typeof define === 'function' && define.amd) {
11
- define(factory);
12
- registeredInModuleLoader = true;
13
- }
14
- if (typeof exports === 'object') {
15
- module.exports = factory();
16
- registeredInModuleLoader = true;
17
- }
18
- if (!registeredInModuleLoader) {
19
- var OldCookies = window.Cookies;
20
- var api = window.Cookies = factory();
21
- api.noConflict = function () {
22
- window.Cookies = OldCookies;
23
- return api;
24
- };
25
- }
26
- }(function () {
27
- function extend () {
28
- var i = 0;
29
- var result = {};
30
- for (; i < arguments.length; i++) {
31
- var attributes = arguments[ i ];
32
- for (var key in attributes) {
33
- result[key] = attributes[key];
34
- }
35
- }
36
- return result;
37
- }
38
-
39
- function init (converter) {
40
- function api (key, value, attributes) {
41
- var result;
42
- if (typeof document === 'undefined') {
43
- return;
44
- }
45
-
46
- // Write
47
-
48
- if (arguments.length > 1) {
49
- attributes = extend({
50
- path: '/'
51
- }, api.defaults, attributes);
52
-
53
- if (typeof attributes.expires === 'number') {
54
- var expires = new Date();
55
- expires.setMilliseconds(expires.getMilliseconds() + attributes.expires * 864e+5);
56
- attributes.expires = expires;
57
- }
58
-
59
- // We're using "expires" because "max-age" is not supported by IE
60
- attributes.expires = attributes.expires ? attributes.expires.toUTCString() : '';
61
-
62
- try {
63
- result = JSON.stringify(value);
64
- if (/^[\{\[]/.test(result)) {
65
- value = result;
66
- }
67
- } catch (e) {}
68
-
69
- if (!converter.write) {
70
- value = encodeURIComponent(String(value))
71
- .replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g, decodeURIComponent);
72
- } else {
73
- value = converter.write(value, key);
74
- }
75
-
76
- key = encodeURIComponent(String(key));
77
- key = key.replace(/%(23|24|26|2B|5E|60|7C)/g, decodeURIComponent);
78
- key = key.replace(/[\(\)]/g, escape);
79
-
80
- var stringifiedAttributes = '';
81
-
82
- for (var attributeName in attributes) {
83
- if (!attributes[attributeName]) {
84
- continue;
85
- }
86
- stringifiedAttributes += '; ' + attributeName;
87
- if (attributes[attributeName] === true) {
88
- continue;
89
- }
90
- stringifiedAttributes += '=' + attributes[attributeName];
91
- }
92
- return (document.cookie = key + '=' + value + stringifiedAttributes);
93
- }
94
-
95
- // Read
96
-
97
- if (!key) {
98
- result = {};
99
- }
100
-
101
- // To prevent the for loop in the first place assign an empty array
102
- // in case there are no cookies at all. Also prevents odd result when
103
- // calling "get()"
104
- var cookies = document.cookie ? document.cookie.split('; ') : [];
105
- var rdecode = /(%[0-9A-Z]{2})+/g;
106
- var i = 0;
107
-
108
- for (; i < cookies.length; i++) {
109
- var parts = cookies[i].split('=');
110
- var cookie = parts.slice(1).join('=');
111
-
112
- if (cookie.charAt(0) === '"') {
113
- cookie = cookie.slice(1, -1);
114
- }
115
-
116
- try {
117
- var name = parts[0].replace(rdecode, decodeURIComponent);
118
- cookie = converter.read ?
119
- converter.read(cookie, name) : converter(cookie, name) ||
120
- cookie.replace(rdecode, decodeURIComponent);
121
-
122
- if (this.json) {
123
- try {
124
- cookie = JSON.parse(cookie);
125
- } catch (e) {}
126
- }
127
-
128
- if (key === name) {
129
- result = cookie;
130
- break;
131
- }
132
-
133
- if (!key) {
134
- result[name] = cookie;
135
- }
136
- } catch (e) {}
137
- }
138
-
139
- return result;
140
- }
141
-
142
- api.set = api;
143
- api.get = function (key) {
144
- return api.call(api, key);
145
- };
146
- api.getJSON = function () {
147
- return api.apply({
148
- json: true
149
- }, [].slice.call(arguments));
150
- };
151
- api.defaults = {};
152
-
153
- api.remove = function (key, attributes) {
154
- api(key, '', extend(attributes, {
155
- expires: -1
156
- }));
157
- };
158
-
159
- api.withConverter = init;
160
-
161
- return api;
162
- }
163
-
164
- return init(function () {});
165
- }));
1
+ /*!
2
+ * JavaScript Cookie v2.1.3
3
+ * https://github.com/js-cookie/js-cookie
4
+ *
5
+ * Copyright 2006, 2015 Klaus Hartl & Fagner Brack
6
+ * Released under the MIT license
7
+ */
8
+ ;(function (factory) {
9
+ var registeredInModuleLoader = false;
10
+ if (typeof define === 'function' && define.amd) {
11
+ define(factory);
12
+ registeredInModuleLoader = true;
13
+ }
14
+ if (typeof exports === 'object') {
15
+ module.exports = factory();
16
+ registeredInModuleLoader = true;
17
+ }
18
+ if (!registeredInModuleLoader) {
19
+ var OldCookies = window.Cookies;
20
+ var api = window.Cookies = factory();
21
+ api.noConflict = function () {
22
+ window.Cookies = OldCookies;
23
+ return api;
24
+ };
25
+ }
26
+ }(function () {
27
+ function extend () {
28
+ var i = 0;
29
+ var result = {};
30
+ for (; i < arguments.length; i++) {
31
+ var attributes = arguments[ i ];
32
+ for (var key in attributes) {
33
+ result[key] = attributes[key];
34
+ }
35
+ }
36
+ return result;
37
+ }
38
+
39
+ function init (converter) {
40
+ function api (key, value, attributes) {
41
+ var result;
42
+ if (typeof document === 'undefined') {
43
+ return;
44
+ }
45
+
46
+ // Write
47
+
48
+ if (arguments.length > 1) {
49
+ attributes = extend({
50
+ path: '/'
51
+ }, api.defaults, attributes);
52
+
53
+ if (typeof attributes.expires === 'number') {
54
+ var expires = new Date();
55
+ expires.setMilliseconds(expires.getMilliseconds() + attributes.expires * 864e+5);
56
+ attributes.expires = expires;
57
+ }
58
+
59
+ // We're using "expires" because "max-age" is not supported by IE
60
+ attributes.expires = attributes.expires ? attributes.expires.toUTCString() : '';
61
+
62
+ try {
63
+ result = JSON.stringify(value);
64
+ if (/^[\{\[]/.test(result)) {
65
+ value = result;
66
+ }
67
+ } catch (e) {}
68
+
69
+ if (!converter.write) {
70
+ value = encodeURIComponent(String(value))
71
+ .replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g, decodeURIComponent);
72
+ } else {
73
+ value = converter.write(value, key);
74
+ }
75
+
76
+ key = encodeURIComponent(String(key));
77
+ key = key.replace(/%(23|24|26|2B|5E|60|7C)/g, decodeURIComponent);
78
+ key = key.replace(/[\(\)]/g, escape);
79
+
80
+ var stringifiedAttributes = '';
81
+
82
+ for (var attributeName in attributes) {
83
+ if (!attributes[attributeName]) {
84
+ continue;
85
+ }
86
+ stringifiedAttributes += '; ' + attributeName;
87
+ if (attributes[attributeName] === true) {
88
+ continue;
89
+ }
90
+ stringifiedAttributes += '=' + attributes[attributeName];
91
+ }
92
+ return (document.cookie = key + '=' + value + stringifiedAttributes);
93
+ }
94
+
95
+ // Read
96
+
97
+ if (!key) {
98
+ result = {};
99
+ }
100
+
101
+ // To prevent the for loop in the first place assign an empty array
102
+ // in case there are no cookies at all. Also prevents odd result when
103
+ // calling "get()"
104
+ var cookies = document.cookie ? document.cookie.split('; ') : [];
105
+ var rdecode = /(%[0-9A-Z]{2})+/g;
106
+ var i = 0;
107
+
108
+ for (; i < cookies.length; i++) {
109
+ var parts = cookies[i].split('=');
110
+ var cookie = parts.slice(1).join('=');
111
+
112
+ if (cookie.charAt(0) === '"') {
113
+ cookie = cookie.slice(1, -1);
114
+ }
115
+
116
+ try {
117
+ var name = parts[0].replace(rdecode, decodeURIComponent);
118
+ cookie = converter.read ?
119
+ converter.read(cookie, name) : converter(cookie, name) ||
120
+ cookie.replace(rdecode, decodeURIComponent);
121
+
122
+ if (this.json) {
123
+ try {
124
+ cookie = JSON.parse(cookie);
125
+ } catch (e) {}
126
+ }
127
+
128
+ if (key === name) {
129
+ result = cookie;
130
+ break;
131
+ }
132
+
133
+ if (!key) {
134
+ result[name] = cookie;
135
+ }
136
+ } catch (e) {}
137
+ }
138
+
139
+ return result;
140
+ }
141
+
142
+ api.set = api;
143
+ api.get = function (key) {
144
+ return api.call(api, key);
145
+ };
146
+ api.getJSON = function () {
147
+ return api.apply({
148
+ json: true
149
+ }, [].slice.call(arguments));
150
+ };
151
+ api.defaults = {};
152
+
153
+ api.remove = function (key, attributes) {
154
+ api(key, '', extend(attributes, {
155
+ expires: -1
156
+ }));
157
+ };
158
+
159
+ api.withConverter = init;
160
+
161
+ return api;
162
+ }
163
+
164
+ return init(function () {});
165
+ }));
class.WpdiscuzCore.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php
2
 
3
  /*
4
- * Plugin Name: Comments - wpDiscuz
5
  * Description: Better comment system. Wordpress post comments and discussion plugin. Allows your visitors discuss, vote for comments and share.
6
- * Version: 4.0.8
7
  * Author: gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)
8
  * Author URI: https://gvectors.com/
9
  * Plugin URI: http://wpdiscuz.com/
@@ -95,6 +95,7 @@ class WpdiscuzCore implements WpDiscuzConstants {
95
  add_action('admin_post_clearChildrenData', array(&$this->optimizationHelper, 'clearChildrenData'));
96
  add_action('admin_post_removeVoteData', array(&$this->optimizationHelper, 'removeVoteData'));
97
  add_action('wp_insert_comment', array(&$this->optimizationHelper, 'addCommentToTree'), 2689, 2);
 
98
  add_action('transition_comment_status', array(&$this->optimizationHelper, 'statusEventHandler'), 265, 3);
99
  add_action('delete_comment', array(&$this->optimizationHelper, 'initSubComments'), 266);
100
  add_action('deleted_comment', array(&$this->optimizationHelper, 'deleteCommentFromTree'), 267);
@@ -348,8 +349,10 @@ class WpdiscuzCore implements WpDiscuzConstants {
348
  if ($noNeedMemberConfirm || $noNeedGuestsConfirm) {
349
  $this->dbManager->addEmailNotification($new_comment_id, $postId, $email, self::SUBSCRIPTION_COMMENT, 1);
350
  } else {
351
- $this->dbManager->addEmailNotification($new_comment_id, $postId, $email, self::SUBSCRIPTION_COMMENT);
352
- $this->emailHelper->confirmEmailSender($postId, $email);
 
 
353
  }
354
  }
355
  $messageArray['code'] = $uniqueId;
@@ -618,6 +621,11 @@ class WpdiscuzCore implements WpDiscuzConstants {
618
  $args = array('order' => $order, 'post_id' => $postId);
619
  if (in_array($orderBy, array('by_vote', 'comment_date_gmt'))) {
620
  $args['orderby'] = $orderBy;
 
 
 
 
 
621
  } else {
622
  $args['orderby'] = 'comment_date_gmt';
623
  }
@@ -687,11 +695,13 @@ class WpdiscuzCore implements WpDiscuzConstants {
687
  $commentListArgs['last_parent_id'] = $commentData['last_parent_id'];
688
  $commentData['is_show_load_more'] = $this->helper->isShowLoadMore($commentData['last_parent_id'], $this->commentsArgs);
689
  }
690
- if (isset($_COOKIE['wc_moderate_comments'])) {
691
- $moderateComments = explode(',', $_COOKIE['wc_moderate_comments']);
692
- $this->commentsArgs['status'] = 'all';
693
- $this->commentsArgs['wc_comments'] = array_merge($this->commentsArgs['wc_comments'], $moderateComments);
694
- $commentListArgs['comment_status'] = array_merge($commentListArgs['comment_status'], array(0));
 
 
695
  }
696
  $commentList = get_comments($this->commentsArgs);
697
  return $commentList;
@@ -756,35 +766,39 @@ class WpdiscuzCore implements WpDiscuzConstants {
756
  * Scripts and styles registration on administration pages
757
  */
758
  public function adminPageStylesScripts() {
759
- wp_register_style('wpdiscuz-font-awesome', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/font-awesome-4.6.3/css/font-awesome.min.css'), null, '4.6.3');
760
- wp_enqueue_style('wpdiscuz-font-awesome');
761
- wp_register_style('wpdiscuz-cp-index-css', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/colorpicker/css/index.css'));
762
- wp_enqueue_style('wpdiscuz-cp-index-css');
763
- wp_register_style('wpdiscuz-cp-compatibility-css', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/colorpicker/css/compatibility.css'));
764
- wp_enqueue_style('wpdiscuz-cp-compatibility-css');
765
- wp_register_script('wpdiscuz-cp-colors-js', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/colorpicker/js/colors.js'), array('jquery'), '1.0.0', false);
766
- wp_enqueue_script('wpdiscuz-cp-colors-js');
767
- wp_register_script('wpdiscuz-cp-colorpicker-js', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/colorpicker/js/jqColorPicker.min.js'), array('jquery'), '1.0.0', false);
768
- wp_enqueue_script('wpdiscuz-cp-colorpicker-js');
769
- wp_register_script('wpdiscuz-cp-index-js', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/colorpicker/js/index.js'), array('jquery'), '1.0.0', false);
770
- wp_enqueue_script('wpdiscuz-cp-index-js');
771
- wp_register_style('wpdiscuz-easy-responsive-tabs-css', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/easy-responsive-tabs/css/easy-responsive-tabs.min.css'), true);
772
- wp_enqueue_style('wpdiscuz-easy-responsive-tabs-css');
773
- wp_register_script('wpdiscuz-easy-responsive-tabs-js', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/easy-responsive-tabs/js/easy-responsive-tabs.js'), array('jquery'), '1.0.1', true);
774
- wp_enqueue_script('wpdiscuz-easy-responsive-tabs-js');
775
- wp_register_style('wpdiscuz-options-css', plugins_url(WPDISCUZ_DIR_NAME . '/assets/css/options-css.min.css'));
776
- wp_enqueue_style('wpdiscuz-options-css');
777
- wp_register_script('wpdiscuz-options-js', plugins_url(WPDISCUZ_DIR_NAME . '/assets/js/wpdiscuz-options.js'), array('jquery'));
778
- wp_enqueue_script('wpdiscuz-options-js');
779
- wp_enqueue_script('thickbox');
780
- wp_register_script('wpdiscuz-jquery-cookie', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/wpdcookiejs/customcookie.js'), array('jquery'), '2.1.3', true);
781
- wp_enqueue_script('wpdiscuz-jquery-cookie');
782
- wp_register_script('wpdiscuz-contenthover', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/contenthover/jquery.contenthover.min.js'), array('jquery'), '1.0.0', true);
783
- wp_enqueue_script('wpdiscuz-contenthover');
784
- $wp_version = get_bloginfo('version');
785
- if (version_compare($wp_version, '4.2.0', '>=')) {
786
- wp_register_script('wpdiscuz-addon-notes', plugins_url(WPDISCUZ_DIR_NAME . '/assets/js/wpdiscuz-notes.js'), array('jquery'), '1.0.0', true);
787
- wp_enqueue_script('wpdiscuz-addon-notes');
 
 
 
 
788
  }
789
  }
790
 
1
  <?php
2
 
3
  /*
4
+ * Plugin Name: WordPress Comments Plugin wpDiscuz
5
  * Description: Better comment system. Wordpress post comments and discussion plugin. Allows your visitors discuss, vote for comments and share.
6
+ * Version: 4.0.9
7
  * Author: gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)
8
  * Author URI: https://gvectors.com/
9
  * Plugin URI: http://wpdiscuz.com/
95
  add_action('admin_post_clearChildrenData', array(&$this->optimizationHelper, 'clearChildrenData'));
96
  add_action('admin_post_removeVoteData', array(&$this->optimizationHelper, 'removeVoteData'));
97
  add_action('wp_insert_comment', array(&$this->optimizationHelper, 'addCommentToTree'), 2689, 2);
98
+ add_action('comment_post', array(&$this->emailHelper, 'notificationFromDashboard'), 2712, 3);
99
  add_action('transition_comment_status', array(&$this->optimizationHelper, 'statusEventHandler'), 265, 3);
100
  add_action('delete_comment', array(&$this->optimizationHelper, 'initSubComments'), 266);
101
  add_action('deleted_comment', array(&$this->optimizationHelper, 'deleteCommentFromTree'), 267);
349
  if ($noNeedMemberConfirm || $noNeedGuestsConfirm) {
350
  $this->dbManager->addEmailNotification($new_comment_id, $postId, $email, self::SUBSCRIPTION_COMMENT, 1);
351
  } else {
352
+ $confirmData = $this->dbManager->addEmailNotification($new_comment_id, $postId, $email, self::SUBSCRIPTION_COMMENT);
353
+ if ($confirmData) {
354
+ $this->emailHelper->confirmEmailSender($confirmData['id'], $confirmData['activation_key'], $postId, $email);
355
+ }
356
  }
357
  }
358
  $messageArray['code'] = $uniqueId;
621
  $args = array('order' => $order, 'post_id' => $postId);
622
  if (in_array($orderBy, array('by_vote', 'comment_date_gmt'))) {
623
  $args['orderby'] = $orderBy;
624
+ if ($orderBy == 'by_vote') {
625
+ if ($this->optionsSerialized->wordpressCommentOrder == 'asc') {
626
+ $args['order'] = 'asc';
627
+ }
628
+ }
629
  } else {
630
  $args['orderby'] = 'comment_date_gmt';
631
  }
695
  $commentListArgs['last_parent_id'] = $commentData['last_parent_id'];
696
  $commentData['is_show_load_more'] = $this->helper->isShowLoadMore($commentData['last_parent_id'], $this->commentsArgs);
697
  }
698
+ if (isset($_COOKIE['wc_moderate_comments_' . $this->commentsArgs['post_id']])) {
699
+ $moderateComments = explode(',', $_COOKIE['wc_moderate_comments_' . $this->commentsArgs['post_id']]);
700
+ if ($moderateComments && is_array($moderateComments)) {
701
+ $this->commentsArgs['status'] = 'all';
702
+ $this->commentsArgs['wc_comments'] = array_merge($this->commentsArgs['wc_comments'], $moderateComments);
703
+ $commentListArgs['comment_status'] = array_merge($commentListArgs['comment_status'], array(0));
704
+ }
705
  }
706
  $commentList = get_comments($this->commentsArgs);
707
  return $commentList;
766
  * Scripts and styles registration on administration pages
767
  */
768
  public function adminPageStylesScripts() {
769
+ global $typenow;
770
+ $wpdiscuzPages = array(self::PAGE_SETTINGS, self::PAGE_PHRASES, self::PAGE_TOOLS, self::PAGE_ADDONS);
771
+ if ((isset($_GET['page']) && in_array($_GET['page'], $wpdiscuzPages)) || ($typenow == 'wpdiscuz_form')) {
772
+ wp_register_style('wpdiscuz-font-awesome', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/font-awesome-4.6.3/css/font-awesome.min.css'), null, '4.6.3');
773
+ wp_enqueue_style('wpdiscuz-font-awesome');
774
+ wp_register_style('wpdiscuz-cp-index-css', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/colorpicker/css/index.css'));
775
+ wp_enqueue_style('wpdiscuz-cp-index-css');
776
+ wp_register_style('wpdiscuz-cp-compatibility-css', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/colorpicker/css/compatibility.css'));
777
+ wp_enqueue_style('wpdiscuz-cp-compatibility-css');
778
+ wp_register_script('wpdiscuz-cp-colors-js', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/colorpicker/js/colors.js'), array('jquery'), '1.0.0', false);
779
+ wp_enqueue_script('wpdiscuz-cp-colors-js');
780
+ wp_register_script('wpdiscuz-cp-colorpicker-js', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/colorpicker/js/jqColorPicker.min.js'), array('jquery'), '1.0.0', false);
781
+ wp_enqueue_script('wpdiscuz-cp-colorpicker-js');
782
+ wp_register_script('wpdiscuz-cp-index-js', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/colorpicker/js/index.js'), array('jquery'), '1.0.0', false);
783
+ wp_enqueue_script('wpdiscuz-cp-index-js');
784
+ wp_register_style('wpdiscuz-easy-responsive-tabs-css', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/easy-responsive-tabs/css/easy-responsive-tabs.min.css'), true);
785
+ wp_enqueue_style('wpdiscuz-easy-responsive-tabs-css');
786
+ wp_register_script('wpdiscuz-easy-responsive-tabs-js', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/easy-responsive-tabs/js/easy-responsive-tabs.js'), array('jquery'), '1.0.1', true);
787
+ wp_enqueue_script('wpdiscuz-easy-responsive-tabs-js');
788
+ wp_register_style('wpdiscuz-options-css', plugins_url(WPDISCUZ_DIR_NAME . '/assets/css/options-css.min.css'));
789
+ wp_enqueue_style('wpdiscuz-options-css');
790
+ wp_register_script('wpdiscuz-options-js', plugins_url(WPDISCUZ_DIR_NAME . '/assets/js/wpdiscuz-options.js'), array('jquery'));
791
+ wp_enqueue_script('wpdiscuz-options-js');
792
+ wp_enqueue_script('thickbox');
793
+ wp_register_script('wpdiscuz-jquery-cookie', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/wpdcookiejs/customcookie.js'), array('jquery'), '2.1.3', true);
794
+ wp_enqueue_script('wpdiscuz-jquery-cookie');
795
+ wp_register_script('wpdiscuz-contenthover', plugins_url(WPDISCUZ_DIR_NAME . '/assets/third-party/contenthover/jquery.contenthover.min.js'), array('jquery'), '1.0.0', true);
796
+ wp_enqueue_script('wpdiscuz-contenthover');
797
+ $wp_version = get_bloginfo('version');
798
+ if (version_compare($wp_version, '4.2.0', '>=')) {
799
+ wp_register_script('wpdiscuz-addon-notes', plugins_url(WPDISCUZ_DIR_NAME . '/assets/js/wpdiscuz-notes.js'), array('jquery'), '1.0.0', true);
800
+ wp_enqueue_script('wpdiscuz-addon-notes');
801
+ }
802
  }
803
  }
804
 
forms/wpDiscuzForm.php CHANGED
@@ -284,7 +284,7 @@ class wpDiscuzForm implements wpdFormConst {
284
  $postType = get_post_type($postID);
285
  if (key_exists($postID, $this->formPostRel)) {
286
  $formID = $this->formPostRel[$postID];
287
- } elseif (key_exists($postType, $this->formContentTypeRel)) {
288
  $tempContentTypeRel = $this->formContentTypeRel[$postType];
289
  $defaultFormID = array_shift($tempContentTypeRel);
290
  $lang = get_locale();
284
  $postType = get_post_type($postID);
285
  if (key_exists($postID, $this->formPostRel)) {
286
  $formID = $this->formPostRel[$postID];
287
+ } elseif (is_string($postType) && key_exists($postType, $this->formContentTypeRel)) {
288
  $tempContentTypeRel = $this->formContentTypeRel[$postType];
289
  $defaultFormID = array_shift($tempContentTypeRel);
290
  $lang = get_locale();
languages/wpdiscuz.pot CHANGED
@@ -1,2319 +1,2319 @@
1
- #, fuzzy
2
- msgid ""
3
- msgstr ""
4
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
- "Project-Id-Version: Comments - wpDiscuz\n"
6
- "POT-Creation-Date: 2017-04-24 21:31+0400\n"
7
- "PO-Revision-Date: 2017-04-24 21:31+0400\n"
8
- "Last-Translator: \n"
9
- "Language-Team: \n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.4\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-WPHeader: class.WpdiscuzCore.php\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Poedit-SearchPathExcluded-0: *.js\n"
22
-
23
- #: class.WpdiscuzCore.php:741 class.WpdiscuzCore.php:911
24
- #: options/options-layouts/settings-social.php:40
25
- #: options/options-layouts/settings-social.php:42
26
- #: options/options-layouts/settings-social.php:44
27
- #: options/options-layouts/settings-social.php:46
28
- msgid "Settings"
29
- msgstr ""
30
-
31
- #: class.WpdiscuzCore.php:743 class.WpdiscuzCore.php:913
32
- msgid "Phrases"
33
- msgstr ""
34
-
35
- #: class.WpdiscuzCore.php:745
36
- msgid "Tools"
37
- msgstr ""
38
-
39
- #: class.WpdiscuzCore.php:746 options/html-options.php:21
40
- #: options/html-options.php:61 options/options-layouts/settings-addons.php:7
41
- msgid "Addons"
42
- msgstr ""
43
-
44
- #: class.WpdiscuzCore.php:954 options/phrases-layouts/phrases-comment.php:116
45
- msgid "Admin"
46
- msgstr ""
47
-
48
- #: class.WpdiscuzCore.php:956 class.WpdiscuzCore.php:965
49
- #: options/phrases-layouts/phrases-comment.php:118
50
- msgid "Author"
51
- msgstr ""
52
-
53
- #: class.WpdiscuzCore.php:960 options/phrases-layouts/phrases-comment.php:124
54
- msgid "Member"
55
- msgstr ""
56
-
57
- #: class.WpdiscuzCore.php:966 options/phrases-layouts/phrases-comment.php:122
58
- msgid "Guest"
59
- msgstr ""
60
-
61
- #: forms/wpDiscuzForm.php:93
62
- msgid "Invalid Data !!!"
63
- msgstr ""
64
-
65
- #: forms/wpDiscuzForm.php:101 forms/wpDiscuzForm.php:149
66
- msgid "Forms"
67
- msgstr ""
68
-
69
- #: forms/wpDiscuzForm.php:102 options/html-phrases.php:21
70
- msgid "Form"
71
- msgstr ""
72
-
73
- #: forms/wpDiscuzForm.php:103
74
- msgid "Add New"
75
- msgstr ""
76
-
77
- #: forms/wpDiscuzForm.php:104
78
- msgid "Add New Form"
79
- msgstr ""
80
-
81
- #: forms/wpDiscuzForm.php:105
82
- msgid "Edit Form"
83
- msgstr ""
84
-
85
- #: forms/wpDiscuzForm.php:106
86
- msgid "You did not create any forms yet"
87
- msgstr ""
88
-
89
- #: forms/wpDiscuzForm.php:107
90
- msgid "Nothing found in Trash"
91
- msgstr ""
92
-
93
- #: forms/wpDiscuzForm.php:108
94
- msgid "Search Forms"
95
- msgstr ""
96
-
97
- #: forms/wpDiscuzForm.php:163
98
- msgid "Title"
99
- msgstr ""
100
-
101
- #: forms/wpDiscuzForm.php:164
102
- msgid "Post Types"
103
- msgstr ""
104
-
105
- #: forms/wpDiscuzForm.php:165
106
- msgid "Post IDs"
107
- msgstr ""
108
-
109
- #: forms/wpDiscuzForm.php:166 forms/wpdFormAttr/Form.php:586
110
- msgid "Language"
111
- msgstr ""
112
-
113
- #: forms/wpDiscuzForm.php:167
114
- msgid "Date"
115
- msgstr ""
116
-
117
- #: forms/wpDiscuzForm.php:212
118
- msgid "Field Types"
119
- msgstr ""
120
-
121
- #: forms/wpDiscuzForm.php:213 forms/wpdFormAttr/Row.php:23
122
- msgid "Two column"
123
- msgstr ""
124
-
125
- #: forms/wpDiscuzForm.php:214 forms/wpdFormAttr/Field/Field.php:64
126
- #: forms/wpdFormAttr/Row.php:24
127
- msgid "Delete"
128
- msgstr ""
129
-
130
- #: forms/wpDiscuzForm.php:215 forms/wpdFormAttr/Row.php:25
131
- msgid "Move"
132
- msgstr ""
133
-
134
- #: forms/wpDiscuzForm.php:216 forms/wpdFormAttr/Row.php:69
135
- msgid "Add Field"
136
- msgstr ""
137
-
138
- #: forms/wpDiscuzForm.php:217 forms/wpdFormAttr/Field/Field.php:61
139
- #: options/class.WpdiscuzOptionsSerialized.php:613
140
- #: options/phrases-layouts/phrases-comment.php:32
141
- msgid "Edit"
142
- msgstr ""
143
-
144
- #: forms/wpDiscuzForm.php:218
145
- msgid "You can not delete default field."
146
- msgstr ""
147
-
148
- #: forms/wpDiscuzForm.php:219
149
- msgid "You really want to delete this item ?"
150
- msgstr ""
151
-
152
- #: forms/wpDiscuzForm.php:226
153
- msgid "Permission Denied !!!"
154
- msgstr ""
155
-
156
- #: forms/wpDiscuzForm.php:251 forms/wpdFormAttr/Form.php:556
157
- #: forms/wpdFormAttr/html/admin-form-fields-list.php:18
158
- #: options/options-layouts/settings-customfields.php:7
159
- msgid "Custom Fields"
160
- msgstr ""
161
-
162
- #: forms/wpDiscuzForm.php:299
163
- msgid "Custom CSS"
164
- msgstr ""
165
-
166
- #: forms/wpDiscuzForm.php:355
167
- msgid "Default Form"
168
- msgstr ""
169
-
170
- #: forms/wpDiscuzForm.php:386 forms/wpDiscuzForm.php:394
171
- #: forms/wpdFormAttr/Form.php:621
172
- msgid "Leave a Reply"
173
- msgstr ""
174
-
175
- #: forms/wpDiscuzForm.php:409 forms/wpdFormAttr/Field/CheckboxField.php:12
176
- #: forms/wpdFormAttr/Field/ColorField.php:12
177
- #: forms/wpdFormAttr/Field/DateField.php:12
178
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:25
179
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:19
180
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:18
181
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:64
182
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:18
183
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:18
184
- #: forms/wpdFormAttr/Field/NumberField.php:12
185
- #: forms/wpdFormAttr/Field/RadioField.php:12
186
- #: forms/wpdFormAttr/Field/RatingField.php:12
187
- #: forms/wpdFormAttr/Field/SelectField.php:12
188
- #: forms/wpdFormAttr/Field/TextAreaField.php:13
189
- #: forms/wpdFormAttr/Field/TextField.php:12
190
- #: forms/wpdFormAttr/Field/UrlField.php:12 forms/wpdFormAttr/Form.php:710
191
- msgid "Name"
192
- msgstr ""
193
-
194
- #: forms/wpDiscuzForm.php:411 forms/wpdFormAttr/Field/DefaultField/Email.php:64
195
- #: forms/wpdFormAttr/Form.php:717
196
- #: options/class.WpdiscuzOptionsSerialized.php:600 options/html-phrases.php:24
197
- msgid "Email"
198
- msgstr ""
199
-
200
- #: forms/wpDiscuzForm.php:413
201
- msgid "WebSite URL"
202
- msgstr ""
203
-
204
- #: forms/wpDiscuzForm.php:416
205
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:78
206
- #: forms/wpdFormAttr/Form.php:740
207
- msgid "Post Comment"
208
- msgstr ""
209
-
210
- #: forms/wpDiscuzForm.php:425
211
- msgid "Clone Form"
212
- msgstr ""
213
-
214
- #: forms/wpDiscuzForm.php:437
215
- msgid "Clone"
216
- msgstr ""
217
-
218
- #: forms/wpDiscuzForm.php:475
219
- msgid ""
220
- "Comment Form is not detected, please navigate to form manager page to create "
221
- "it. "
222
- msgstr ""
223
-
224
- #: forms/wpDiscuzForm.php:476
225
- msgid "Add Comment Form"
226
- msgstr ""
227
-
228
- #: forms/wpdFormAttr/Field/CheckboxField.php:14
229
- #: forms/wpdFormAttr/Field/ColorField.php:14
230
- #: forms/wpdFormAttr/Field/DateField.php:14
231
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:27
232
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:21
233
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:20
234
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:20
235
- #: forms/wpdFormAttr/Field/NumberField.php:14
236
- #: forms/wpdFormAttr/Field/RadioField.php:14
237
- #: forms/wpdFormAttr/Field/SelectField.php:14
238
- #: forms/wpdFormAttr/Field/TextAreaField.php:15
239
- #: forms/wpdFormAttr/Field/TextField.php:14
240
- #: forms/wpdFormAttr/Field/UrlField.php:14
241
- msgid "Also used for field placeholder"
242
- msgstr ""
243
-
244
- #: forms/wpdFormAttr/Field/CheckboxField.php:17
245
- #: forms/wpdFormAttr/Field/ColorField.php:17
246
- #: forms/wpdFormAttr/Field/DateField.php:17
247
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:30
248
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:24
249
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:23
250
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:23
251
- #: forms/wpdFormAttr/Field/NumberField.php:17
252
- #: forms/wpdFormAttr/Field/RadioField.php:17
253
- #: forms/wpdFormAttr/Field/RatingField.php:16
254
- #: forms/wpdFormAttr/Field/SelectField.php:17
255
- #: forms/wpdFormAttr/Field/TextAreaField.php:18
256
- #: forms/wpdFormAttr/Field/TextField.php:17
257
- #: forms/wpdFormAttr/Field/UrlField.php:17
258
- msgid "Description"
259
- msgstr ""
260
-
261
- #: forms/wpdFormAttr/Field/CheckboxField.php:19
262
- #: forms/wpdFormAttr/Field/ColorField.php:19
263
- #: forms/wpdFormAttr/Field/DateField.php:19
264
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:32
265
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:26
266
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:25
267
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:25
268
- #: forms/wpdFormAttr/Field/NumberField.php:19
269
- #: forms/wpdFormAttr/Field/NumberField.php:24
270
- #: forms/wpdFormAttr/Field/NumberField.php:29
271
- #: forms/wpdFormAttr/Field/RadioField.php:19
272
- #: forms/wpdFormAttr/Field/RatingField.php:18
273
- #: forms/wpdFormAttr/Field/SelectField.php:19
274
- #: forms/wpdFormAttr/Field/TextAreaField.php:20
275
- #: forms/wpdFormAttr/Field/TextField.php:19
276
- #: forms/wpdFormAttr/Field/UrlField.php:19
277
- msgid ""
278
- "Field specific short description or some rule related to inserted "
279
- "information."
280
- msgstr ""
281
-
282
- #: forms/wpdFormAttr/Field/CheckboxField.php:28
283
- #: forms/wpdFormAttr/Field/RadioField.php:28
284
- #: forms/wpdFormAttr/Field/SelectField.php:28
285
- msgid "Values"
286
- msgstr ""
287
-
288
- #: forms/wpdFormAttr/Field/CheckboxField.php:30
289
- msgid "Please insert one value per line"
290
- msgstr ""
291
-
292
- #: forms/wpdFormAttr/Field/CheckboxField.php:33
293
- #: forms/wpdFormAttr/Field/ColorField.php:29
294
- #: forms/wpdFormAttr/Field/DateField.php:29
295
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:36
296
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:35
297
- #: forms/wpdFormAttr/Field/NumberField.php:39
298
- #: forms/wpdFormAttr/Field/RadioField.php:33
299
- #: forms/wpdFormAttr/Field/RatingField.php:28
300
- #: forms/wpdFormAttr/Field/SelectField.php:33
301
- #: forms/wpdFormAttr/Field/TextAreaField.php:23
302
- #: forms/wpdFormAttr/Field/TextField.php:29
303
- #: forms/wpdFormAttr/Field/UrlField.php:29
304
- msgid "Field is required"
305
- msgstr ""
306
-
307
- #: forms/wpdFormAttr/Field/CheckboxField.php:37
308
- #: forms/wpdFormAttr/Field/ColorField.php:33
309
- #: forms/wpdFormAttr/Field/DateField.php:33
310
- #: forms/wpdFormAttr/Field/NumberField.php:43
311
- #: forms/wpdFormAttr/Field/RadioField.php:37
312
- #: forms/wpdFormAttr/Field/SelectField.php:37
313
- #: forms/wpdFormAttr/Field/TextAreaField.php:27
314
- #: forms/wpdFormAttr/Field/TextField.php:33
315
- #: forms/wpdFormAttr/Field/UrlField.php:33
316
- msgid "Display on reply form"
317
- msgstr ""
318
-
319
- #: forms/wpdFormAttr/Field/CheckboxField.php:41
320
- #: forms/wpdFormAttr/Field/ColorField.php:37
321
- #: forms/wpdFormAttr/Field/DateField.php:37
322
- #: forms/wpdFormAttr/Field/NumberField.php:47
323
- #: forms/wpdFormAttr/Field/RadioField.php:41
324
- #: forms/wpdFormAttr/Field/RatingField.php:32
325
- #: forms/wpdFormAttr/Field/SelectField.php:41
326
- #: forms/wpdFormAttr/Field/TextAreaField.php:31
327
- #: forms/wpdFormAttr/Field/TextField.php:37
328
- #: forms/wpdFormAttr/Field/UrlField.php:37
329
- msgid "Display on comment"
330
- msgstr ""
331
-
332
- #: forms/wpdFormAttr/Field/CheckboxField.php:45
333
- #: forms/wpdFormAttr/Field/ColorField.php:41
334
- #: forms/wpdFormAttr/Field/DateField.php:41
335
- #: forms/wpdFormAttr/Field/NumberField.php:51
336
- #: forms/wpdFormAttr/Field/RadioField.php:45
337
- #: forms/wpdFormAttr/Field/RatingField.php:36
338
- #: forms/wpdFormAttr/Field/SelectField.php:45
339
- #: forms/wpdFormAttr/Field/TextAreaField.php:35
340
- #: forms/wpdFormAttr/Field/TextField.php:41
341
- #: forms/wpdFormAttr/Field/UrlField.php:41
342
- msgid "Advanced Options"
343
- msgstr ""
344
-
345
- #: forms/wpdFormAttr/Field/CheckboxField.php:48
346
- #: forms/wpdFormAttr/Field/ColorField.php:44
347
- #: forms/wpdFormAttr/Field/DateField.php:44
348
- #: forms/wpdFormAttr/Field/NumberField.php:54
349
- #: forms/wpdFormAttr/Field/RadioField.php:48
350
- #: forms/wpdFormAttr/Field/RatingField.php:39
351
- #: forms/wpdFormAttr/Field/SelectField.php:48
352
- #: forms/wpdFormAttr/Field/TextAreaField.php:38
353
- #: forms/wpdFormAttr/Field/TextField.php:44
354
- #: forms/wpdFormAttr/Field/UrlField.php:44
355
- msgid "Meta Key"
356
- msgstr ""
357
-
358
- #: forms/wpdFormAttr/Field/CheckboxField.php:52
359
- #: forms/wpdFormAttr/Field/ColorField.php:48
360
- #: forms/wpdFormAttr/Field/DateField.php:48
361
- #: forms/wpdFormAttr/Field/NumberField.php:58
362
- #: forms/wpdFormAttr/Field/RadioField.php:52
363
- #: forms/wpdFormAttr/Field/RatingField.php:43
364
- #: forms/wpdFormAttr/Field/SelectField.php:52
365
- #: forms/wpdFormAttr/Field/TextAreaField.php:42
366
- #: forms/wpdFormAttr/Field/TextField.php:48
367
- #: forms/wpdFormAttr/Field/UrlField.php:48
368
- msgid "Replace old meta key"
369
- msgstr ""
370
-
371
- #: forms/wpdFormAttr/Field/CheckboxField.php:153
372
- #: forms/wpdFormAttr/Field/ColorField.php:115
373
- #: forms/wpdFormAttr/Field/DateField.php:115
374
- #: forms/wpdFormAttr/Field/NumberField.php:125
375
- #: forms/wpdFormAttr/Field/RadioField.php:130
376
- #: forms/wpdFormAttr/Field/RatingField.php:125
377
- #: forms/wpdFormAttr/Field/SelectField.php:125
378
- #: forms/wpdFormAttr/Field/TextAreaField.php:98
379
- #: forms/wpdFormAttr/Field/TextField.php:109
380
- #: forms/wpdFormAttr/Field/UrlField.php:110
381
- msgid "field is required!"
382
- msgstr ""
383
-
384
- #: forms/wpdFormAttr/Field/ColorField.php:23
385
- #: forms/wpdFormAttr/Field/DateField.php:23
386
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:30
387
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:29
388
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:29
389
- #: forms/wpdFormAttr/Field/NumberField.php:33
390
- #: forms/wpdFormAttr/Field/RatingField.php:22
391
- #: forms/wpdFormAttr/Field/TextField.php:23
392
- #: forms/wpdFormAttr/Field/UrlField.php:23
393
- msgid "Field icon"
394
- msgstr ""
395
-
396
- #: forms/wpdFormAttr/Field/ColorField.php:26
397
- #: forms/wpdFormAttr/Field/DateField.php:26
398
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:33
399
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:32
400
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:32
401
- #: forms/wpdFormAttr/Field/NumberField.php:36
402
- #: forms/wpdFormAttr/Field/RatingField.php:25
403
- #: forms/wpdFormAttr/Field/TextField.php:26
404
- #: forms/wpdFormAttr/Field/UrlField.php:26
405
- msgid "Font-awesome icon library."
406
- msgstr ""
407
-
408
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:35
409
- msgid "Show for guests"
410
- msgstr ""
411
-
412
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:39
413
- msgid "Show for logged in users"
414
- msgstr ""
415
-
416
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:107
417
- #: forms/wpdFormAttr/Form.php:733
418
- msgid "Code"
419
- msgstr ""
420
-
421
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:114
422
- msgid "Cannot create image file"
423
- msgstr ""
424
-
425
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:115
426
- msgid "Permission denied for file creation"
427
- msgstr ""
428
-
429
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:116
430
- msgid "PHP GD2 library is disabled"
431
- msgstr ""
432
-
433
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:117
434
- msgid "PNG image creation disabled"
435
- msgstr ""
436
-
437
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:20
438
- msgid "Button Text"
439
- msgstr ""
440
-
441
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:35
442
- msgid "Enable"
443
- msgstr ""
444
-
445
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:83
446
- #: forms/wpdFormAttr/Form.php:724
447
- msgid "Website"
448
- msgstr ""
449
-
450
- #: forms/wpdFormAttr/Field/Field.php:52
451
- msgid " (Submit Button)"
452
- msgstr ""
453
-
454
- #: forms/wpdFormAttr/Field/Field.php:54
455
- msgid " (CAPTCHA)"
456
- msgstr ""
457
-
458
- #: forms/wpdFormAttr/Field/Field.php:87
459
- msgid "Add To Form"
460
- msgstr ""
461
-
462
- #: forms/wpdFormAttr/Field/NumberField.php:22
463
- msgid "Min Value"
464
- msgstr ""
465
-
466
- #: forms/wpdFormAttr/Field/NumberField.php:27
467
- msgid "Max Value"
468
- msgstr ""
469
-
470
- #: forms/wpdFormAttr/Field/NumberField.php:129
471
- msgid "value can not be less than"
472
- msgstr ""
473
-
474
- #: forms/wpdFormAttr/Field/NumberField.php:132
475
- msgid "value can not be more than"
476
- msgstr ""
477
-
478
- #: forms/wpdFormAttr/Field/RadioField.php:30
479
- #: forms/wpdFormAttr/Field/SelectField.php:30
480
- msgid "New value new line"
481
- msgstr ""
482
-
483
- #: forms/wpdFormAttr/Form.php:595
484
- msgid "Allow guests to comment"
485
- msgstr ""
486
-
487
- #: forms/wpdFormAttr/Form.php:599 forms/wpdFormAttr/Form.php:610
488
- msgid "Yes"
489
- msgstr ""
490
-
491
- #: forms/wpdFormAttr/Form.php:601 forms/wpdFormAttr/Form.php:612
492
- msgid "No"
493
- msgstr ""
494
-
495
- #: forms/wpdFormAttr/Form.php:606
496
- msgid "Enable subscription bar"
497
- msgstr ""
498
-
499
- #: forms/wpdFormAttr/Form.php:617
500
- msgid "Comment form header text"
501
- msgstr ""
502
-
503
- #: forms/wpdFormAttr/Form.php:626
504
- msgid "Display comment form for post types"
505
- msgstr ""
506
-
507
- #: forms/wpdFormAttr/Form.php:633
508
- msgid ""
509
- "The red marked post types are already attached to other comment form. If you "
510
- "set this form too, the old forms will not be used for them."
511
- msgstr ""
512
-
513
- #: forms/wpdFormAttr/Form.php:652
514
- msgid "Display comment form for post IDs"
515
- msgstr ""
516
-
517
- #: forms/wpdFormAttr/Form.php:653
518
- msgid ""
519
- "You can use this form for certain posts/pages specified by comma separated "
520
- "IDs."
521
- msgstr ""
522
-
523
- #: forms/wpdFormAttr/Form.php:664
524
- msgid "Comment Text Field"
525
- msgstr ""
526
-
527
- #: forms/wpdFormAttr/Form.php:679
528
- msgid "ADD ROW"
529
- msgstr ""
530
-
531
- #: forms/wpdFormAttr/html/admin-form-fields-list.php:7
532
- msgid "Comment Form Fields"
533
- msgstr ""
534
-
535
- #: options/class.WpdiscuzOptions.php:24 options/class.WpdiscuzOptions.php:99
536
- #: options/class.WpdiscuzOptions.php:214
537
- msgid "Hacker?"
538
- msgstr ""
539
-
540
- #: options/class.WpdiscuzOptions.php:249
541
- msgid ""
542
- "Brings an ocean of emotions to your comments. It comes with an awesome smile "
543
- "package."
544
- msgstr ""
545
-
546
- #: options/class.WpdiscuzOptions.php:250
547
- msgid ""
548
- "Extended information about comment author with Profile, Activity, Votes and "
549
- "Subscriptions Tabs on pop-up window."
550
- msgstr ""
551
-
552
- #: options/class.WpdiscuzOptions.php:251
553
- msgid ""
554
- "Total control over comment subscriptions. Full list, monitor, manage, "
555
- "filter, unsubscribe, confirm..."
556
- msgstr ""
557
-
558
- #: options/class.WpdiscuzOptions.php:252
559
- msgid ""
560
- "A full-fledged tool-kit for advertising in comment section of your website. "
561
- "Separate banner and ad managment."
562
- msgstr ""
563
-
564
- #: options/class.WpdiscuzOptions.php:253
565
- msgid ""
566
- "Allows to mention comments and users in comment text using #comment-id and "
567
- "@username tags."
568
- msgstr ""
569
-
570
- #: options/class.WpdiscuzOptions.php:254
571
- msgid ""
572
- "See comment likers and voters of each comment. Adds user reputation and "
573
- "badges based on received likes."
574
- msgstr ""
575
-
576
- #: options/class.WpdiscuzOptions.php:255
577
- msgid ""
578
- "Comment reporting tools. Auto-moderates comments based on number of flags "
579
- "and dislikes."
580
- msgstr ""
581
-
582
- #: options/class.WpdiscuzOptions.php:256
583
- msgid ""
584
- "Adds a smart and intuitive AJAX \"Translate\" button with 60 language "
585
- "options. Uses free translation API."
586
- msgstr ""
587
-
588
- #: options/class.WpdiscuzOptions.php:257
589
- msgid ""
590
- "AJAX powered front-end comment search. It starts searching while you type "
591
- "search words. "
592
- msgstr ""
593
-
594
- #: options/class.WpdiscuzOptions.php:258
595
- msgid ""
596
- "Most voted comments, Active comment threads, Most commented posts, Active "
597
- "comment authors"
598
- msgstr ""
599
-
600
- #: options/class.WpdiscuzOptions.php:259
601
- msgid ""
602
- "All in one powerful yet simple admin toolkit to moderate comments on front-"
603
- "end."
604
- msgstr ""
605
-
606
- #: options/class.WpdiscuzOptions.php:260
607
- msgid ""
608
- "Extended comment attachment system. Allows to upload images, videos, audios "
609
- "and other file types."
610
- msgstr ""
611
-
612
- #: options/class.WpdiscuzOptions.php:261
613
- msgid ""
614
- "Adds No CAPTCHA on all comment forms. Stops spam and bot comments with "
615
- "Google reCAPTCHA"
616
- msgstr ""
617
-
618
- #: options/class.WpdiscuzOptions.php:262
619
- msgid ""
620
- "Integrates myCRED Badges and Ranks. Converts wpDiscuz comment votes/likes to "
621
- "myCRED points. "
622
- msgstr ""
623
-
624
- #: options/class.WpdiscuzOptions.php:263
625
- msgid ""
626
- "Allows censoring comment words. Filters comments and replaces those phrases "
627
- "with custom words."
628
- msgstr ""
629
-
630
- #: options/class.WpdiscuzOptions.php:269
631
- msgid "Custom Comment Forms"
632
- msgstr ""
633
-
634
- #: options/class.WpdiscuzOptions.php:270
635
- msgid ""
636
- "You can create custom comment forms with wpDiscuz. wpDiscuz 4 comes with "
637
- "custom comment forms and fields. You can create custom comment forms for "
638
- "each post type, each form can beceated with different form fields, for "
639
- "eaxample: text, dropdown, rating, checkboxes, etc..."
640
- msgstr ""
641
-
642
- #: options/class.WpdiscuzOptions.php:273
643
- msgid "Emoticons"
644
- msgstr ""
645
-
646
- #: options/class.WpdiscuzOptions.php:274
647
- msgid ""
648
- "You can add more emotions to your comments using wpDiscuz Emoticons addon."
649
- msgstr ""
650
-
651
- #: options/class.WpdiscuzOptions.php:277
652
- msgid "Ads Manager"
653
- msgstr ""
654
-
655
- #: options/class.WpdiscuzOptions.php:278
656
- msgid ""
657
- "Increase your income using ad banners. Comment area is the most active "
658
- "sections for advertising. wpDiscuz Ads Manager addon is designed to help you "
659
- "add banners and control ads in this section."
660
- msgstr ""
661
-
662
- #: options/class.WpdiscuzOptions.php:281
663
- msgid "User and Comment Mentioning"
664
- msgstr ""
665
-
666
- #: options/class.WpdiscuzOptions.php:282
667
- msgid ""
668
- "Using wpDiscuz User &amp; Comment Mentioning addon you can allow commenters "
669
- "mention comments and users in comment text using #comment-id and @username "
670
- "tags."
671
- msgstr ""
672
-
673
- #: options/class.WpdiscuzOptions.php:285
674
- msgid "Advanced Likers"
675
- msgstr ""
676
-
677
- #: options/class.WpdiscuzOptions.php:286
678
- msgid ""
679
- "wpDiscuz Advanced Likers addon displays likers and voters of each comment. "
680
- "Adds user reputation and badges based on received likes."
681
- msgstr ""
682
-
683
- #: options/class.WpdiscuzOptions.php:289
684
- msgid "Report and Flagging"
685
- msgstr ""
686
-
687
- #: options/class.WpdiscuzOptions.php:290
688
- msgid ""
689
- "Let your commenters help you to determine and remove spam comments. wpDiscuz "
690
- "Report and Flagging addon comes with comment reporting tools. Automaticaly "
691
- "auto-moderates comments based on number of flags and dislikes."
692
- msgstr ""
693
-
694
- #: options/class.WpdiscuzOptions.php:293
695
- msgid "Comment Translate"
696
- msgstr ""
697
-
698
- #: options/class.WpdiscuzOptions.php:294
699
- msgid ""
700
- "In most cases the big part of your visitors are not a native speakers of "
701
- "your language. Make your comments comprehensible for all visitors using "
702
- "wpDiscuz Comment Translation addon. It adds smart and intuitive AJAX "
703
- "\"Translate\" button with 60 language translation options. Uses free "
704
- "translation API."
705
- msgstr ""
706
-
707
- #: options/class.WpdiscuzOptions.php:297
708
- msgid "Comment Search"
709
- msgstr ""
710
-
711
- #: options/class.WpdiscuzOptions.php:298
712
- msgid ""
713
- "You can let website visitor search in comments. It's always more attractive "
714
- "to find a comment about something that interest you. Using wpDiscuz Comment "
715
- "Search addon you'll get a nice, AJAX powered front-end comment search form "
716
- "above comment list."
717
- msgstr ""
718
-
719
- #: options/class.WpdiscuzOptions.php:301
720
- msgid "wpDiscuz Widgets"
721
- msgstr ""
722
-
723
- #: options/class.WpdiscuzOptions.php:302
724
- msgid ""
725
- "More Comment Widgets! Most voted comments, Active comment threads, Most "
726
- "commented posts, Active comment authors widgets are available in wpDiscuz "
727
- "Widgets Addon"
728
- msgstr ""
729
-
730
- #: options/class.WpdiscuzOptions.php:305
731
- msgid "Front-end Moderation"
732
- msgstr ""
733
-
734
- #: options/class.WpdiscuzOptions.php:306
735
- msgid ""
736
- "You can moderate comments on front-end using all in one powerful yet simple "
737
- "wpDiscuz Frontend Moderation addon."
738
- msgstr ""
739
-
740
- #: options/class.WpdiscuzOptions.php:309
741
- msgid "Media Uploader"
742
- msgstr ""
743
-
744
- #: options/class.WpdiscuzOptions.php:310
745
- msgid ""
746
- "You can let website visitors attach images and files to comments and embed "
747
- "video/audio content using wpDiscuz Media Uploader addon."
748
- msgstr ""
749
-
750
- #: options/class.WpdiscuzOptions.php:313
751
- msgid "Google ReCaptcha"
752
- msgstr ""
753
-
754
- #: options/class.WpdiscuzOptions.php:314
755
- msgid ""
756
- "Advanced spam protection with wpDiscuz Google reCAPTCHA addon. This addon "
757
- "adds No-CAPTCHA reCAPTCHA on all comment forms. Stops spam and bot comments."
758
- msgstr ""
759
-
760
- #: options/class.WpdiscuzOptions.php:328
761
- msgid "New Addons are available for wpDiscuz Comments Plugin"
762
- msgstr ""
763
-
764
- #: options/class.WpdiscuzOptions.php:335 options/class.WpdiscuzOptions.php:341
765
- msgid "Go to wpDiscuz Addons subMenu"
766
- msgstr ""
767
-
768
- #: options/class.WpdiscuzOptions.php:372
769
- msgid "Do you know?"
770
- msgstr ""
771
-
772
- #: options/class.WpdiscuzOptions.php:384
773
- msgid "More info"
774
- msgstr ""
775
-
776
- #: options/class.WpdiscuzOptionsSerialized.php:594
777
- msgid "Be the First to Comment!"
778
- msgstr ""
779
-
780
- #: options/class.WpdiscuzOptionsSerialized.php:595 options/html-phrases.php:22
781
- #: options/phrases-layouts/phrases-general.php:22
782
- msgid "Comment"
783
- msgstr ""
784
-
785
- #: options/class.WpdiscuzOptionsSerialized.php:596
786
- msgid "Comments"
787
- msgstr ""
788
-
789
- #: options/class.WpdiscuzOptionsSerialized.php:597
790
- msgid "on"
791
- msgstr ""
792
-
793
- #: options/class.WpdiscuzOptionsSerialized.php:598
794
- msgid "Start the discussion"
795
- msgstr ""
796
-
797
- #: options/class.WpdiscuzOptionsSerialized.php:599
798
- msgid "Join the discussion"
799
- msgstr ""
800
-
801
- #: options/class.WpdiscuzOptionsSerialized.php:601
802
- #: options/phrases-layouts/phrases-form.php:42
803
- #: options/phrases-layouts/phrases-form.php:46
804
- msgid "Notify of"
805
- msgstr ""
806
-
807
- #: options/class.WpdiscuzOptionsSerialized.php:602
808
- #: options/phrases-layouts/phrases-form.php:56
809
- msgid "new follow-up comments"
810
- msgstr ""
811
-
812
- #: options/class.WpdiscuzOptionsSerialized.php:603
813
- msgid "new replies to my comments"
814
- msgstr ""
815
-
816
- #: options/class.WpdiscuzOptionsSerialized.php:604
817
- #: options/phrases-layouts/phrases-form.php:76
818
- msgid "Notify of new replies to this comment"
819
- msgstr ""
820
-
821
- #: options/class.WpdiscuzOptionsSerialized.php:605
822
- #: options/phrases-layouts/phrases-form.php:82
823
- #: options/phrases-layouts/phrases-form.php:86
824
- msgid "Sort by"
825
- msgstr ""
826
-
827
- #: options/class.WpdiscuzOptionsSerialized.php:606
828
- #: options/phrases-layouts/phrases-form.php:92
829
- #: options/phrases-layouts/phrases-form.php:96
830
- msgid "newest"
831
- msgstr ""
832
-
833
- #: options/class.WpdiscuzOptionsSerialized.php:607
834
- #: options/phrases-layouts/phrases-form.php:102
835
- #: options/phrases-layouts/phrases-form.php:106
836
- msgid "oldest"
837
- msgstr ""
838
-
839
- #: options/class.WpdiscuzOptionsSerialized.php:608
840
- #: options/phrases-layouts/phrases-form.php:112
841
- #: options/phrases-layouts/phrases-form.php:116
842
- msgid "most voted"
843
- msgstr ""
844
-
845
- #: options/class.WpdiscuzOptionsSerialized.php:609
846
- msgid "Load More Comments"
847
- msgstr ""
848
-
849
- #: options/class.WpdiscuzOptionsSerialized.php:610
850
- #: options/phrases-layouts/phrases-general.php:62
851
- msgid "Load Rest of Comments"
852
- msgstr ""
853
-
854
- #: options/class.WpdiscuzOptionsSerialized.php:611
855
- #: options/phrases-layouts/phrases-comment.php:12
856
- msgid "Reply"
857
- msgstr ""
858
-
859
- #: options/class.WpdiscuzOptionsSerialized.php:612
860
- #: options/phrases-layouts/phrases-comment.php:22
861
- msgid "Share"
862
- msgstr ""
863
-
864
- #: options/class.WpdiscuzOptionsSerialized.php:614
865
- #: options/phrases-layouts/phrases-comment.php:42
866
- msgid "Share On Facebook"
867
- msgstr ""
868
-
869
- #: options/class.WpdiscuzOptionsSerialized.php:615
870
- #: options/phrases-layouts/phrases-comment.php:52
871
- msgid "Share On Twitter"
872
- msgstr ""
873
-
874
- #: options/class.WpdiscuzOptionsSerialized.php:616
875
- #: options/phrases-layouts/phrases-comment.php:62
876
- msgid "Share On Google"
877
- msgstr ""
878
-
879
- #: options/class.WpdiscuzOptionsSerialized.php:617
880
- #: options/phrases-layouts/phrases-comment.php:72
881
- msgid "Share On VKontakte"
882
- msgstr ""
883
-
884
- #: options/class.WpdiscuzOptionsSerialized.php:618
885
- #: options/phrases-layouts/phrases-comment.php:82
886
- msgid "Share On Odnoklassniki"
887
- msgstr ""
888
-
889
- #: options/class.WpdiscuzOptionsSerialized.php:619
890
- #: options/phrases-layouts/phrases-comment.php:92
891
- msgid "Hide Replies"
892
- msgstr ""
893
-
894
- #: options/class.WpdiscuzOptionsSerialized.php:620
895
- #: options/phrases-layouts/phrases-comment.php:102
896
- msgid "Show Replies"
897
- msgstr ""
898
-
899
- #: options/class.WpdiscuzOptionsSerialized.php:621
900
- #: options/phrases-layouts/phrases-general.php:76
901
- msgid "New Comment"
902
- msgstr ""
903
-
904
- #: options/class.WpdiscuzOptionsSerialized.php:622
905
- msgid "New comment on the discussion section you've been interested in"
906
- msgstr ""
907
-
908
- #: options/class.WpdiscuzOptionsSerialized.php:623
909
- #: options/phrases-layouts/phrases-email.php:36
910
- #: options/phrases-layouts/phrases-general.php:96
911
- #: utils/class.WpdiscuzEmailHelper.php:158
912
- msgid "New Reply"
913
- msgstr ""
914
-
915
- #: options/class.WpdiscuzOptionsSerialized.php:624
916
- #: utils/class.WpdiscuzEmailHelper.php:159
917
- msgid "New reply on the discussion section you've been interested in"
918
- msgstr ""
919
-
920
- #: options/class.WpdiscuzOptionsSerialized.php:625
921
- msgid "You're subscribed for new replies on this comment"
922
- msgstr ""
923
-
924
- #: options/class.WpdiscuzOptionsSerialized.php:626
925
- msgid "You're subscribed for new replies on all your comments"
926
- msgstr ""
927
-
928
- #: options/class.WpdiscuzOptionsSerialized.php:627
929
- msgid "You're subscribed for new follow-up comments on this post"
930
- msgstr ""
931
-
932
- #: options/class.WpdiscuzOptionsSerialized.php:628
933
- #: options/phrases-layouts/phrases-email.php:52
934
- #: options/phrases-layouts/phrases-email.php:56
935
- msgid "Unsubscribe"
936
- msgstr ""
937
-
938
- #: options/class.WpdiscuzOptionsSerialized.php:629
939
- #: options/phrases-layouts/phrases-email.php:66
940
- msgid "Cancel subscription"
941
- msgstr ""
942
-
943
- #: options/class.WpdiscuzOptionsSerialized.php:630
944
- #: options/phrases-layouts/phrases-notification.php:32
945
- msgid "You've successfully unsubscribed."
946
- msgstr ""
947
-
948
- #: options/class.WpdiscuzOptionsSerialized.php:631
949
- #: options/phrases-layouts/phrases-notification.php:22
950
- msgid "You've successfully subscribed."
951
- msgstr ""
952
-
953
- #: options/class.WpdiscuzOptionsSerialized.php:632
954
- #: options/phrases-layouts/phrases-email.php:72
955
- #: options/phrases-layouts/phrases-email.php:76
956
- msgid "Confirm your subscription"
957
- msgstr ""
958
-
959
- #: options/class.WpdiscuzOptionsSerialized.php:633
960
- #: options/phrases-layouts/phrases-email.php:82
961
- #: options/phrases-layouts/phrases-email.php:86
962
- msgid "You've successfully confirmed your subscription."
963
- msgstr ""
964
-
965
- #: options/class.WpdiscuzOptionsSerialized.php:634
966
- #: options/phrases-layouts/phrases-email.php:96
967
- #: utils/class.WpdiscuzEmailHelper.php:51
968
- msgid "Subscribe Confirmation"
969
- msgstr ""
970
-
971
- #: options/class.WpdiscuzOptionsSerialized.php:635
972
- #: options/phrases-layouts/phrases-email.php:106
973
- #: utils/class.WpdiscuzEmailHelper.php:52
974
- msgid ""
975
- "Hi, <br/> You just subscribed for new comments on our website. This means "
976
- "you will receive an email when new comments are posted according to "
977
- "subscription option you've chosen. <br/> To activate, click confirm below. "
978
- "If you believe this is an error, ignore this message and we'll never bother "
979
- "you again."
980
- msgstr ""
981
-
982
- #: options/class.WpdiscuzOptionsSerialized.php:636
983
- msgid "please fill out this field to comment"
984
- msgstr ""
985
-
986
- #: options/class.WpdiscuzOptionsSerialized.php:637
987
- msgid "email address is invalid"
988
- msgstr ""
989
-
990
- #: options/class.WpdiscuzOptionsSerialized.php:638
991
- msgid "url is invalid"
992
- msgstr ""
993
-
994
- #: options/class.WpdiscuzOptionsSerialized.php:639
995
- msgid "year"
996
- msgstr ""
997
-
998
- #: options/class.WpdiscuzOptionsSerialized.php:640
999
- msgid "years"
1000
- msgstr ""
1001
-
1002
- #: options/class.WpdiscuzOptionsSerialized.php:641
1003
- msgid "month"
1004
- msgstr ""
1005
-
1006
- #: options/class.WpdiscuzOptionsSerialized.php:642
1007
- msgid "months"
1008
- msgstr ""
1009
-
1010
- #: options/class.WpdiscuzOptionsSerialized.php:643
1011
- msgid "day"
1012
- msgstr ""
1013
-
1014
- #: options/class.WpdiscuzOptionsSerialized.php:644
1015
- msgid "days"
1016
- msgstr ""
1017
-
1018
- #: options/class.WpdiscuzOptionsSerialized.php:645
1019
- msgid "hour"
1020
- msgstr ""
1021
-
1022
- #: options/class.WpdiscuzOptionsSerialized.php:646
1023
- msgid "hours"
1024
- msgstr ""
1025
-
1026
- #: options/class.WpdiscuzOptionsSerialized.php:647
1027
- msgid "minute"
1028
- msgstr ""
1029
-
1030
- #: options/class.WpdiscuzOptionsSerialized.php:648
1031
- msgid "minutes"
1032
- msgstr ""
1033
-
1034
- #: options/class.WpdiscuzOptionsSerialized.php:649
1035
- msgid "second"
1036
- msgstr ""
1037
-
1038
- #: options/class.WpdiscuzOptionsSerialized.php:650
1039
- msgid "seconds"
1040
- msgstr ""
1041
-
1042
- #: options/class.WpdiscuzOptionsSerialized.php:651
1043
- msgid "right now"
1044
- msgstr ""
1045
-
1046
- #: options/class.WpdiscuzOptionsSerialized.php:652
1047
- msgid "ago"
1048
- msgstr ""
1049
-
1050
- #: options/class.WpdiscuzOptionsSerialized.php:653
1051
- #: options/phrases-layouts/phrases-datetime.php:156
1052
- msgid "Today"
1053
- msgstr ""
1054
-
1055
- #: options/class.WpdiscuzOptionsSerialized.php:654
1056
- #: options/phrases-layouts/phrases-notification.php:84
1057
- msgid "You must be"
1058
- msgstr ""
1059
-
1060
- #: options/class.WpdiscuzOptionsSerialized.php:655
1061
- msgid "You are logged in as"
1062
- msgstr ""
1063
-
1064
- #: options/class.WpdiscuzOptionsSerialized.php:656
1065
- #: options/phrases-layouts/phrases-notification.php:104
1066
- msgid "Log out"
1067
- msgstr ""
1068
-
1069
- #: options/class.WpdiscuzOptionsSerialized.php:657
1070
- msgid "logged in"
1071
- msgstr ""
1072
-
1073
- #: options/class.WpdiscuzOptionsSerialized.php:658
1074
- msgid "to post a comment."
1075
- msgstr ""
1076
-
1077
- #: options/class.WpdiscuzOptionsSerialized.php:659
1078
- #: options/phrases-layouts/phrases-comment.php:138
1079
- msgid "Vote Up"
1080
- msgstr ""
1081
-
1082
- #: options/class.WpdiscuzOptionsSerialized.php:660
1083
- #: options/phrases-layouts/phrases-comment.php:148
1084
- msgid "Vote Down"
1085
- msgstr ""
1086
-
1087
- #: options/class.WpdiscuzOptionsSerialized.php:661
1088
- #: options/phrases-layouts/phrases-notification.php:134
1089
- msgid "Vote Counted"
1090
- msgstr ""
1091
-
1092
- #: options/class.WpdiscuzOptionsSerialized.php:662
1093
- msgid "You've already voted for this comment"
1094
- msgstr ""
1095
-
1096
- #: options/class.WpdiscuzOptionsSerialized.php:663
1097
- #: options/phrases-layouts/phrases-notification.php:154
1098
- msgid "Voting Error"
1099
- msgstr ""
1100
-
1101
- #: options/class.WpdiscuzOptionsSerialized.php:664
1102
- msgid "You Must Be Logged In To Vote"
1103
- msgstr ""
1104
-
1105
- #: options/class.WpdiscuzOptionsSerialized.php:665
1106
- msgid "You cannot vote for your comment"
1107
- msgstr ""
1108
-
1109
- #: options/class.WpdiscuzOptionsSerialized.php:666
1110
- msgid "You are not allowed to vote for this comment"
1111
- msgstr ""
1112
-
1113
- #: options/class.WpdiscuzOptionsSerialized.php:667
1114
- #: options/phrases-layouts/phrases-notification.php:194
1115
- msgid "Invalid Captcha Code"
1116
- msgstr ""
1117
-
1118
- #: options/class.WpdiscuzOptionsSerialized.php:668
1119
- #: options/phrases-layouts/phrases-notification.php:204
1120
- msgid "Some of field value is invalid"
1121
- msgstr ""
1122
-
1123
- #: options/class.WpdiscuzOptionsSerialized.php:669
1124
- msgid "new comment"
1125
- msgstr ""
1126
-
1127
- #: options/class.WpdiscuzOptionsSerialized.php:670
1128
- msgid "new comments"
1129
- msgstr ""
1130
-
1131
- #: options/class.WpdiscuzOptionsSerialized.php:671
1132
- msgid "Comment awaiting moderation"
1133
- msgstr ""
1134
-
1135
- #: options/class.WpdiscuzOptionsSerialized.php:672
1136
- msgid "new reply on your comment"
1137
- msgstr ""
1138
-
1139
- #: options/class.WpdiscuzOptionsSerialized.php:673
1140
- msgid "new replies on your comments"
1141
- msgstr ""
1142
-
1143
- #: options/class.WpdiscuzOptionsSerialized.php:674
1144
- #: options/phrases-layouts/phrases-general.php:116
1145
- msgid "New"
1146
- msgstr ""
1147
-
1148
- #: options/class.WpdiscuzOptionsSerialized.php:675
1149
- #: options/phrases-layouts/phrases-notification.php:249
1150
- msgid "Sorry, the comment was not updated"
1151
- msgstr ""
1152
-
1153
- #: options/class.WpdiscuzOptionsSerialized.php:676
1154
- #: options/phrases-layouts/phrases-notification.php:259
1155
- msgid "Sorry, this comment no longer possible to edit"
1156
- msgstr ""
1157
-
1158
- #: options/class.WpdiscuzOptionsSerialized.php:677
1159
- msgid "You've not made any changes"
1160
- msgstr ""
1161
-
1162
- #: options/class.WpdiscuzOptionsSerialized.php:678
1163
- #: options/phrases-layouts/phrases-comment.php:162
1164
- msgid "Save"
1165
- msgstr ""
1166
-
1167
- #: options/class.WpdiscuzOptionsSerialized.php:679
1168
- #: options/phrases-layouts/phrases-comment.php:172
1169
- msgid "Cancel"
1170
- msgstr ""
1171
-
1172
- #: options/class.WpdiscuzOptionsSerialized.php:680
1173
- msgid "Input is too short"
1174
- msgstr ""
1175
-
1176
- #: options/class.WpdiscuzOptionsSerialized.php:681
1177
- msgid "Input is too long"
1178
- msgstr ""
1179
-
1180
- #: options/class.WpdiscuzOptionsSerialized.php:682
1181
- #: options/phrases-layouts/phrases-comment.php:182
1182
- msgid "Read more &raquo;"
1183
- msgstr ""
1184
-
1185
- #: options/class.WpdiscuzOptionsSerialized.php:683
1186
- #: options/phrases-layouts/phrases-comment.php:192
1187
- msgid "Anonymous"
1188
- msgstr ""
1189
-
1190
- #: options/class.WpdiscuzOptionsSerialized.php:684
1191
- #: options/phrases-layouts/phrases-notification.php:275
1192
- #: options/phrases-layouts/phrases-notification.php:279
1193
- msgid "Please fill out required fields"
1194
- msgstr ""
1195
-
1196
- #: options/class.WpdiscuzOptionsSerialized.php:685
1197
- #: options/phrases-layouts/phrases-form.php:152
1198
- #: options/phrases-layouts/phrases-form.php:156
1199
- msgid "Connect with"
1200
- msgstr ""
1201
-
1202
- #: options/class.WpdiscuzOptionsSerialized.php:686
1203
- msgid "You're subscribed to"
1204
- msgstr ""
1205
-
1206
- #: options/class.WpdiscuzOptionsSerialized.php:687
1207
- msgid "Participate in this discussion via email"
1208
- msgstr ""
1209
-
1210
- #: options/html-addons.php:11
1211
- msgid "wpDiscuz Addons"
1212
- msgstr ""
1213
-
1214
- #: options/html-addons.php:19
1215
- msgid "wpDiscuz Add-ons"
1216
- msgstr ""
1217
-
1218
- #: options/html-addons.php:20
1219
- msgid "Addons Support Forum"
1220
- msgstr ""
1221
-
1222
- #: options/html-addons.php:25
1223
- msgid ""
1224
- "All wpDiscuz addons are being developed by wpDiscuz developers at gVectors "
1225
- "Team, those are very solid premium level extensions and come with premium "
1226
- "support.\n"
1227
- " These addons help us to keep top level "
1228
- "development of the free wpDiscuz plugin. All essential and even dozens of "
1229
- "extra-cool features are already available for free in core wpDiscuz. \n"
1230
- " There will never be any limits, any pro and paid "
1231
- "versions for wpDiscuz. We have another dozens of awesome features in our to-"
1232
- "do list which will also be added for free in future releases. \n"
1233
- " So the free wpDiscuz development always stays on "
1234
- "the first priority and wpDiscuz is being extended with new free functions "
1235
- "and features even faster than before."
1236
- msgstr ""
1237
-
1238
- #: options/html-addons.php:31
1239
- msgid " Thank you!<br/> Sincerely yours,<br/> gVectors Team&nbsp;"
1240
- msgstr ""
1241
-
1242
- #: options/html-addons.php:53
1243
- msgid "Installed"
1244
- msgstr ""
1245
-
1246
- #: options/html-addons.php:57
1247
- msgid "Version"
1248
- msgstr ""
1249
-
1250
- #: options/html-addons.php:58
1251
- msgid "at least"
1252
- msgstr ""
1253
-
1254
- #: options/html-addons.php:60
1255
- msgid "Live Preview | Buy"
1256
- msgstr ""
1257
-
1258
- #: options/html-addons.php:66
1259
- msgid "More information about"
1260
- msgstr ""
1261
-
1262
- #: options/html-options.php:10
1263
- msgid "wpDiscuz General Settings"
1264
- msgstr ""
1265
-
1266
- #: options/html-options.php:18
1267
- msgid "Like wpDiscuz?"
1268
- msgstr ""
1269
-
1270
- #: options/html-options.php:19
1271
- msgid "Documentation"
1272
- msgstr ""
1273
-
1274
- #: options/html-options.php:20
1275
- msgid "Support"
1276
- msgstr ""
1277
-
1278
- #: options/html-options.php:54 options/options-layouts/settings-general.php:7
1279
- msgid "General Settings"
1280
- msgstr ""
1281
-
1282
- #: options/html-options.php:55
1283
- #: options/options-layouts/settings-live-update.php:7
1284
- msgid "Live Update"
1285
- msgstr ""
1286
-
1287
- #: options/html-options.php:56
1288
- msgid "Show/Hide"
1289
- msgstr ""
1290
-
1291
- #: options/html-options.php:57
1292
- msgid "Subscription"
1293
- msgstr ""
1294
-
1295
- #: options/html-options.php:57
1296
- msgid "and Postmatic"
1297
- msgstr ""
1298
-
1299
- #: options/html-options.php:58
1300
- msgid "Styling"
1301
- msgstr ""
1302
-
1303
- #: options/html-options.php:59 options/options-layouts/settings-social.php:124
1304
- msgid "Social Login"
1305
- msgstr ""
1306
-
1307
- #: options/html-options.php:60
1308
- #: options/options-layouts/settings-integrations.php:7
1309
- msgid "Integrations"
1310
- msgstr ""
1311
-
1312
- #: options/html-options.php:148
1313
- msgid "Reset Options"
1314
- msgstr ""
1315
-
1316
- #: options/html-options.php:150
1317
- msgid "Refresh comment optimization"
1318
- msgstr ""
1319
-
1320
- #: options/html-options.php:152
1321
- msgid "Remove vote data"
1322
- msgstr ""
1323
-
1324
- #: options/html-options.php:153 options/html-phrases.php:71
1325
- #: options/html-tools.php:58
1326
- msgid "Save Changes"
1327
- msgstr ""
1328
-
1329
- #: options/html-phrases.php:10
1330
- msgid "wpDiscuz Front-end Phrases"
1331
- msgstr ""
1332
-
1333
- #: options/html-phrases.php:20
1334
- msgid "General"
1335
- msgstr ""
1336
-
1337
- #: options/html-phrases.php:23
1338
- msgid "Date/Time"
1339
- msgstr ""
1340
-
1341
- #: options/html-phrases.php:25
1342
- msgid "Notification"
1343
- msgstr ""
1344
-
1345
- #: options/html-tools.php:10
1346
- msgid "wpDiscuz Tools"
1347
- msgstr ""
1348
-
1349
- #: options/html-tools.php:22 options/tools-layouts/options-export.php:8
1350
- msgid "Export options"
1351
- msgstr ""
1352
-
1353
- #: options/html-tools.php:23 options/tools-layouts/options-import.php:7
1354
- msgid "Import options"
1355
- msgstr ""
1356
-
1357
- #: options/options-layouts/settings-addons.php:13
1358
- msgid ""
1359
- "Here you can find wpDiscuz Addons' setting options in vertical subTabs with "
1360
- "according addon titles. All wpDiscuz addons are listed on wpDiscuz"
1361
- msgstr ""
1362
-
1363
- #: options/options-layouts/settings-addons.php:13
1364
- msgid "Addons subMenu"
1365
- msgstr ""
1366
-
1367
- #: options/options-layouts/settings-addons.php:13
1368
- msgid ""
1369
- "We'll add new free and paid addons with almost every wpDiscuz release. There "
1370
- "will be dozens of very useful addons in near future. Currently wpDiscuz "
1371
- "consists of about 70 free features/addons like \"Live Update\", \"First "
1372
- "comment redirection\", \"Comment sorting\", \"Simple CAPTCHA\", \"AJAX "
1373
- "Pagination\", \"Lazy Load\", \"Comment Likes\", \"Comment Share\" and dozens "
1374
- "of other addons and there will be more. All new and free addons will be "
1375
- "built-in with wpDiscuz plugin and all paid addons will be listed separately "
1376
- "on"
1377
- msgstr ""
1378
-
1379
- #: options/options-layouts/settings-customfields.php:12
1380
- msgid "Google Map API Key"
1381
- msgstr ""
1382
-
1383
- #: options/options-layouts/settings-general.php:11
1384
- msgid "Enable wpdiscuz on home page"
1385
- msgstr ""
1386
-
1387
- #: options/options-layouts/settings-general.php:15
1388
- msgid "Enable Quicktags"
1389
- msgstr ""
1390
-
1391
- #: options/options-layouts/settings-general.php:20
1392
- msgid "Use guest email to detect registered account"
1393
- msgstr ""
1394
-
1395
- #: options/options-layouts/settings-general.php:22
1396
- msgid ""
1397
- "Sometimes registered users comment as guest using the same email address. "
1398
- "wpDiscuz can detect the account role using guest email and display commenter "
1399
- "label correctly."
1400
- msgstr ""
1401
-
1402
- #: options/options-layouts/settings-general.php:29
1403
- msgid "Comment author name min length (for guests only)"
1404
- msgstr ""
1405
-
1406
- #: options/options-layouts/settings-general.php:33
1407
- #: options/options-layouts/settings-general.php:56
1408
- msgid "Min"
1409
- msgstr ""
1410
-
1411
- #: options/options-layouts/settings-general.php:36
1412
- #: options/options-layouts/settings-general.php:59
1413
- msgid "Max"
1414
- msgstr ""
1415
-
1416
- #: options/options-layouts/settings-general.php:42
1417
- msgid "Keep guest commenter credentials in browser cookies for x days"
1418
- msgstr ""
1419
-
1420
- #: options/options-layouts/settings-general.php:44
1421
- msgid "Set this option value -1 to make it unlimited."
1422
- msgstr ""
1423
-
1424
- #: options/options-layouts/settings-general.php:45
1425
- msgid "Set this option value 0 to clear those data when user closes browser."
1426
- msgstr ""
1427
-
1428
- #: options/options-layouts/settings-general.php:52
1429
- msgid "Comment text length"
1430
- msgstr ""
1431
-
1432
- #: options/options-layouts/settings-general.php:65
1433
- msgid ""
1434
- "The number of words before breaking comment text and showing \"Read more\" "
1435
- "link"
1436
- msgstr ""
1437
-
1438
- #: options/options-layouts/settings-general.php:67
1439
- msgid "Set this option value 0, to turn off comment text breaking function."
1440
- msgstr ""
1441
-
1442
- #: options/options-layouts/settings-general.php:73
1443
- msgid "Comment text size in pixels"
1444
- msgstr ""
1445
-
1446
- #: options/options-layouts/settings-general.php:86
1447
- msgid "Allow comment editing for"
1448
- msgstr ""
1449
-
1450
- #: options/options-layouts/settings-general.php:90
1451
- msgid "Do not allow"
1452
- msgstr ""
1453
-
1454
- #: options/options-layouts/settings-general.php:91
1455
- #: options/options-layouts/settings-general.php:92
1456
- #: options/options-layouts/settings-live-update.php:52
1457
- #: options/options-layouts/settings-live-update.php:53
1458
- #: options/options-layouts/settings-live-update.php:54
1459
- msgid "Minutes"
1460
- msgstr ""
1461
-
1462
- #: options/options-layouts/settings-general.php:93
1463
- #: options/phrases-layouts/phrases-datetime.php:72
1464
- msgid "Hour"
1465
- msgstr ""
1466
-
1467
- #: options/options-layouts/settings-general.php:94
1468
- #: options/options-layouts/settings-general.php:95
1469
- msgid "Hours"
1470
- msgstr ""
1471
-
1472
- #: options/options-layouts/settings-general.php:96
1473
- msgid "Unlimit"
1474
- msgstr ""
1475
-
1476
- #: options/options-layouts/settings-general.php:102
1477
- msgid "Redirect first commenter to"
1478
- msgstr ""
1479
-
1480
- #: options/options-layouts/settings-general.php:109
1481
- msgid "Do not redirect"
1482
- msgstr ""
1483
-
1484
- #: options/options-layouts/settings-general.php:116
1485
- msgid "Allow guests to vote on comments"
1486
- msgstr ""
1487
-
1488
- #: options/options-layouts/settings-general.php:121
1489
- msgid "Comments loading/pagination type"
1490
- msgstr ""
1491
-
1492
- #: options/options-layouts/settings-general.php:123
1493
- msgid ""
1494
- "You can manage the number of comments for [Load more] option in Settings > "
1495
- "Discussion page, using \"Break comments into pages with [X] top level "
1496
- "comments per page\" option. To show the default Wordpress comment pagination "
1497
- "you should enable the checkbox on bigining of the same option."
1498
- msgstr ""
1499
-
1500
- #: options/options-layouts/settings-general.php:129
1501
- #: options/options-layouts/settings-general.php:131
1502
- msgid "[Load more] Button"
1503
- msgstr ""
1504
-
1505
- #: options/options-layouts/settings-general.php:133
1506
- #: options/options-layouts/settings-general.php:135
1507
- msgid "[Load rest of all comments] Button"
1508
- msgstr ""
1509
-
1510
- #: options/options-layouts/settings-general.php:137
1511
- #: options/options-layouts/settings-general.php:139
1512
- msgid "Lazy load comments on scrolling"
1513
- msgstr ""
1514
-
1515
- #: options/options-layouts/settings-general.php:146
1516
- msgid "Use WordPress Date/Time format"
1517
- msgstr ""
1518
-
1519
- #: options/options-layouts/settings-general.php:147
1520
- msgid ""
1521
- "wpDiscuz shows Human Readable date format. If you check this option it'll "
1522
- "show the date/time format set in WordPress General Settings."
1523
- msgstr ""
1524
-
1525
- #: options/options-layouts/settings-general.php:153
1526
- msgid "Current Wordpress date/time format"
1527
- msgstr ""
1528
-
1529
- #: options/options-layouts/settings-general.php:159
1530
- msgid "Use Plugin .PO/.MO files"
1531
- msgstr ""
1532
-
1533
- #: options/options-layouts/settings-general.php:160
1534
- msgid ""
1535
- "wpDiscuz phrase system allows you to translate all front-end phrases. "
1536
- "However if you have a multi-language website it'll not allow you to add more "
1537
- "than one language translation. The only way to get it is the plugin "
1538
- "translation files (.PO / .MO). If wpDiscuz has the languages you need you "
1539
- "should check this option to disable phrase system and it'll automatically "
1540
- "translate all phrases based on language files according to current language."
1541
- msgstr ""
1542
-
1543
- #: options/options-layouts/settings-general.php:167
1544
- msgid ""
1545
- "Help wpDiscuz to grow allowing people to recognize which comment plugin you "
1546
- "use"
1547
- msgstr ""
1548
-
1549
- #: options/options-layouts/settings-general.php:169
1550
- msgid ""
1551
- "Please check this option on to help wpDiscuz get more popularity as your "
1552
- "thank to the hard work we do for you totally free. This option adds a very "
1553
- "small (16x16px) icon under the comment section which will allow your site "
1554
- "visitors recognize the name of comment solution you use."
1555
- msgstr ""
1556
-
1557
- #: options/options-layouts/settings-general.php:174
1558
- msgid "Thank you!"
1559
- msgstr ""
1560
-
1561
- #: options/options-layouts/settings-integrations.php:14
1562
- msgid "BuddyPress"
1563
- msgstr ""
1564
-
1565
- #: options/options-layouts/settings-integrations.php:15
1566
- msgid "Users Ultra"
1567
- msgstr ""
1568
-
1569
- #: options/options-layouts/settings-integrations.php:16
1570
- msgid "User Pro"
1571
- msgstr ""
1572
-
1573
- #: options/options-layouts/settings-integrations.php:17
1574
- msgid "Ultimate Member"
1575
- msgstr ""
1576
-
1577
- #: options/options-layouts/settings-integrations.php:18
1578
- msgid "MyCred"
1579
- msgstr ""
1580
-
1581
- #: options/options-layouts/settings-integrations.php:23
1582
- #: options/options-layouts/settings-integrations.php:41
1583
- #: options/options-layouts/settings-integrations.php:59
1584
- #: options/options-layouts/settings-integrations.php:90
1585
- #: options/options-layouts/settings-integrations.php:124
1586
- msgid "Please add the code below in current active theme's functions.php file"
1587
- msgstr ""
1588
-
1589
- #: options/options-layouts/settings-integrations.php:24
1590
- msgid ""
1591
- "This code will integrate BuddyPress profile URL with wpDiscuz. BuddyPress "
1592
- "Display Names and Avatars will be integrated automatically."
1593
- msgstr ""
1594
-
1595
- #: options/options-layouts/settings-integrations.php:42
1596
- msgid ""
1597
- "This code will integrate Users Ultra profile URL with wpDiscuz. Users Ultra "
1598
- "Display Names and Avatars will be integrated automatically."
1599
- msgstr ""
1600
-
1601
- #: options/options-layouts/settings-integrations.php:60
1602
- msgid ""
1603
- "This code will integrate User Pro profile URL with wpDiscuz. User Pro "
1604
- "Display Names and Avatars will be integrated automatically."
1605
- msgstr ""
1606
-
1607
- #: options/options-layouts/settings-integrations.php:91
1608
- msgid ""
1609
- "This code consists of two parts, which will integrate Ultimate Member "
1610
- "profile Display Name and Profile URL with wpDiscuz. UM Avatars will be "
1611
- "integrated automatically."
1612
- msgstr ""
1613
-
1614
- #: options/options-layouts/settings-integrations.php:125
1615
- msgid ""
1616
- "This code will integrate MyCred User Ranks and Badges under comment author "
1617
- "avatar."
1618
- msgstr ""
1619
-
1620
- #: options/options-layouts/settings-live-update.php:12
1621
- msgid "Live update options"
1622
- msgstr ""
1623
-
1624
- #: options/options-layouts/settings-live-update.php:13
1625
- msgid ""
1626
- "wpDiscuz 3 live update is very smart and doesn't overload your server even "
1627
- "if you're on Shared hosting plan and even your website is very active. "
1628
- "However we recommend to monitor your server resources if you're on a Shared "
1629
- "hosting plan. There are some very weak hosting plans which may not be able "
1630
- "to perform very frequently live update requests. If you found some issue you "
1631
- "can set the option below 30 seconds or more."
1632
- msgstr ""
1633
-
1634
- #: options/options-layouts/settings-live-update.php:18
1635
- msgid "Never update"
1636
- msgstr ""
1637
-
1638
- #: options/options-layouts/settings-live-update.php:20
1639
- msgid "Turn off \"Live Update\" function"
1640
- msgstr ""
1641
-
1642
- #: options/options-layouts/settings-live-update.php:22
1643
- #: options/options-layouts/settings-subscription.php:27
1644
- msgid "Show new comment/reply buttons to update manualy"
1645
- msgstr ""
1646
-
1647
- #: options/options-layouts/settings-live-update.php:24
1648
- msgid "Always check for new comments and show update buttons"
1649
- msgstr ""
1650
-
1651
- #: options/options-layouts/settings-live-update.php:26
1652
- #: options/options-layouts/settings-subscription.php:31
1653
- msgid "Always update"
1654
- msgstr ""
1655
-
1656
- #: options/options-layouts/settings-live-update.php:28
1657
- msgid "Always check for new comments and update automatically"
1658
- msgstr ""
1659
-
1660
- #: options/options-layouts/settings-live-update.php:35
1661
- msgid "Disable live update for guests"
1662
- msgstr ""
1663
-
1664
- #: options/options-layouts/settings-live-update.php:43
1665
- msgid "Update comment list every"
1666
- msgstr ""
1667
-
1668
- #: options/options-layouts/settings-live-update.php:48
1669
- #: options/options-layouts/settings-live-update.php:49
1670
- #: options/options-layouts/settings-live-update.php:50
1671
- msgid "Seconds"
1672
- msgstr ""
1673
-
1674
- #: options/options-layouts/settings-live-update.php:51
1675
- #: options/phrases-layouts/phrases-datetime.php:92
1676
- msgid "Minute"
1677
- msgstr ""
1678
-
1679
- #: options/options-layouts/settings-show-hide.php:7
1680
- msgid "Show/Hide Components"
1681
- msgstr ""
1682
-
1683
- #: options/options-layouts/settings-show-hide.php:11
1684
- msgid "Show logged-in user name and logout link on top of main form"
1685
- msgstr ""
1686
-
1687
- #: options/options-layouts/settings-show-hide.php:15
1688
- msgid "Hide Reply button for Guests"
1689
- msgstr ""
1690
-
1691
- #: options/options-layouts/settings-show-hide.php:19
1692
- msgid "Hide Reply button for Members"
1693
- msgstr ""
1694
-
1695
- #: options/options-layouts/settings-show-hide.php:23
1696
- msgid "Hide Commenter Labels"
1697
- msgstr ""
1698
-
1699
- #: options/options-layouts/settings-show-hide.php:27
1700
- msgid "Hide Voting buttons"
1701
- msgstr ""
1702
-
1703
- #: options/options-layouts/settings-show-hide.php:31
1704
- msgid "Comment voting statistic mode"
1705
- msgstr ""
1706
-
1707
- #: options/options-layouts/settings-show-hide.php:36
1708
- msgid "total count"
1709
- msgstr ""
1710
-
1711
- #: options/options-layouts/settings-show-hide.php:40
1712
- msgid "separate count"
1713
- msgstr ""
1714
-
1715
- #: options/options-layouts/settings-show-hide.php:46
1716
- msgid "Show Share Buttons"
1717
- msgstr ""
1718
-
1719
- #: options/options-layouts/settings-show-hide.php:65
1720
- msgid "Facebook Application ID"
1721
- msgstr ""
1722
-
1723
- #: options/options-layouts/settings-show-hide.php:81
1724
- msgid ""
1725
- "The plugin captcha directory is not writable! Please set writable "
1726
- "permissions on \"wpdiscuz/utils/temp\" directory in order to use the first "
1727
- "type of captcha generation"
1728
- msgstr ""
1729
-
1730
- #: options/options-layouts/settings-show-hide.php:85
1731
- msgid "Captcha generation type"
1732
- msgstr ""
1733
-
1734
- #: options/options-layouts/settings-show-hide.php:91
1735
- msgid "use file system"
1736
- msgstr ""
1737
-
1738
- #: options/options-layouts/settings-show-hide.php:96
1739
- msgid "use wordpress session"
1740
- msgstr ""
1741
-
1742
- #: options/options-layouts/settings-show-hide.php:102
1743
- msgid "Hide header text"
1744
- msgstr ""
1745
-
1746
- #: options/options-layouts/settings-show-hide.php:106
1747
- msgid "Show sorting buttons"
1748
- msgstr ""
1749
-
1750
- #: options/options-layouts/settings-show-hide.php:110
1751
- msgid "Set comments ordering to \"Most voted\" by default "
1752
- msgstr ""
1753
-
1754
- #: options/options-layouts/settings-show-hide.php:114
1755
- msgid "Hide comment link"
1756
- msgstr ""
1757
-
1758
- #: options/options-layouts/settings-show-hide.php:118
1759
- msgid "Enable automatic image URL to image HTML conversion"
1760
- msgstr ""
1761
-
1762
- #: options/options-layouts/settings-show-hide.php:123
1763
- msgid "Secure comment content in HTTPS protocol."
1764
- msgstr ""
1765
-
1766
- #: options/options-layouts/settings-show-hide.php:125
1767
- msgid ""
1768
- "This option detects images and other contents with non-https source URLs and "
1769
- "fix according to your selected logic."
1770
- msgstr ""
1771
-
1772
- #: options/options-layouts/settings-show-hide.php:133
1773
- msgid "Replace non-https content to simple link URLs"
1774
- msgstr ""
1775
-
1776
- #: options/options-layouts/settings-show-hide.php:138
1777
- msgid ""
1778
- "Just replace http protocols to https (https may not be supported by content "
1779
- "provider)"
1780
- msgstr ""
1781
-
1782
- #: options/options-layouts/settings-show-hide.php:142
1783
- msgid "Ignore non-https content"
1784
- msgstr ""
1785
-
1786
- #: options/options-layouts/settings-show-hide.php:149
1787
- msgid "Disable Profiles URL"
1788
- msgstr ""
1789
-
1790
- #: options/options-layouts/settings-show-hide.php:153
1791
- msgid "Diplay Ratings"
1792
- msgstr ""
1793
-
1794
- #: options/options-layouts/settings-show-hide.php:156
1795
- msgid "Before Content"
1796
- msgstr ""
1797
-
1798
- #: options/options-layouts/settings-show-hide.php:158
1799
- msgid "After Content"
1800
- msgstr ""
1801
-
1802
- #: options/options-layouts/settings-social.php:50
1803
- #: options/options-layouts/settings-social.php:61
1804
- #: options/options-layouts/settings-social.php:72
1805
- #: options/options-layouts/settings-social.php:83
1806
- msgid "Activate"
1807
- msgstr ""
1808
-
1809
- #: options/options-layouts/settings-social.php:54
1810
- #: options/options-layouts/settings-social.php:65
1811
- #: options/options-layouts/settings-social.php:76
1812
- #: options/options-layouts/settings-social.php:87
1813
- msgid "View details/Install"
1814
- msgstr ""
1815
-
1816
- #: options/options-layouts/settings-social.php:125
1817
- msgid ""
1818
- "You can use one of these most popular Social Login Plugins to allow your "
1819
- "visitors login and comment with Facebook, Twitter, Google+, Wordpress, VK, "
1820
- "OK and lots of other social network service accounts. All social login "
1821
- "buttons will be fully integrated with wpDiscuz comment forms."
1822
- msgstr ""
1823
-
1824
- #: options/options-layouts/settings-style.php:7
1825
- msgid "Background and Colors"
1826
- msgstr ""
1827
-
1828
- #: options/options-layouts/settings-style.php:12
1829
- msgid "Comment Form Background Color"
1830
- msgstr ""
1831
-
1832
- #: options/options-layouts/settings-style.php:16
1833
- #: options/options-layouts/settings-style.php:25
1834
- #: options/options-layouts/settings-style.php:34
1835
- #: options/options-layouts/settings-style.php:43
1836
- #: options/options-layouts/settings-style.php:70
1837
- #: options/options-layouts/settings-style.php:79
1838
- #: options/options-layouts/settings-style.php:88
1839
- #: options/options-layouts/settings-style.php:98
1840
- #: options/options-layouts/settings-style.php:107
1841
- #: options/options-layouts/settings-style.php:116
1842
- #: options/options-layouts/settings-style.php:130
1843
- msgid "Example: #00FF00"
1844
- msgstr ""
1845
-
1846
- #: options/options-layouts/settings-style.php:21
1847
- msgid "Comment Background Color"
1848
- msgstr ""
1849
-
1850
- #: options/options-layouts/settings-style.php:30
1851
- msgid "Reply Background Color"
1852
- msgstr ""
1853
-
1854
- #: options/options-layouts/settings-style.php:39
1855
- msgid "Comment Text Color"
1856
- msgstr ""
1857
-
1858
- #: options/options-layouts/settings-style.php:48
1859
- msgid "Button Color"
1860
- msgstr ""
1861
-
1862
- #: options/options-layouts/settings-style.php:53
1863
- msgid "Share Buttons"
1864
- msgstr ""
1865
-
1866
- #: options/options-layouts/settings-style.php:54
1867
- #: options/options-layouts/settings-style.php:57
1868
- #: options/options-layouts/settings-style.php:60
1869
- msgid "Text Color"
1870
- msgstr ""
1871
-
1872
- #: options/options-layouts/settings-style.php:55
1873
- #: options/options-layouts/settings-style.php:58
1874
- #: options/options-layouts/settings-style.php:61
1875
- msgid "Border Color"
1876
- msgstr ""
1877
-
1878
- #: options/options-layouts/settings-style.php:56
1879
- msgid "Vote Buttons"
1880
- msgstr ""
1881
-
1882
- #: options/options-layouts/settings-style.php:59
1883
- msgid "Action Buttons"
1884
- msgstr ""
1885
-
1886
- #: options/options-layouts/settings-style.php:66
1887
- msgid "Comment form fields border color"
1888
- msgstr ""
1889
-
1890
- #: options/options-layouts/settings-style.php:75
1891
- msgid "New loaded comments' background color"
1892
- msgstr ""
1893
-
1894
- #: options/options-layouts/settings-style.php:84
1895
- msgid "Primary Color"
1896
- msgstr ""
1897
-
1898
- #: options/options-layouts/settings-style.php:94
1899
- msgid "Rating Stars Hover Color"
1900
- msgstr ""
1901
-
1902
- #: options/options-layouts/settings-style.php:103
1903
- msgid "Rating Stars Inactiv Color"
1904
- msgstr ""
1905
-
1906
- #: options/options-layouts/settings-style.php:112
1907
- msgid "Rating Stars Activ Color"
1908
- msgstr ""
1909
-
1910
- #: options/options-layouts/settings-style.php:127
1911
- msgid "label color"
1912
- msgstr ""
1913
-
1914
- #: options/options-layouts/settings-style.php:138
1915
- msgid "Disable font awesome css loading"
1916
- msgstr ""
1917
-
1918
- #: options/options-layouts/settings-style.php:146
1919
- msgid "Custom CSS Code"
1920
- msgstr ""
1921
-
1922
- #: options/options-layouts/settings-subscription.php:7
1923
- msgid "Email Subscription Settings"
1924
- msgstr ""
1925
-
1926
- #: options/options-layouts/settings-subscription.php:11
1927
- msgid "Disable subscription confirmation for registered users"
1928
- msgstr ""
1929
-
1930
- #: options/options-layouts/settings-subscription.php:15
1931
- msgid "Disable subscription confirmation for guests"
1932
- msgstr ""
1933
-
1934
- #: options/options-layouts/settings-subscription.php:19
1935
- msgid "Show subscription types in dropdown"
1936
- msgstr ""
1937
-
1938
- #: options/options-layouts/settings-subscription.php:23
1939
- msgid "Both"
1940
- msgstr ""
1941
-
1942
- #: options/options-layouts/settings-subscription.php:25
1943
- msgid "Both post and all comments subscription"
1944
- msgstr ""
1945
-
1946
- #: options/options-layouts/settings-subscription.php:29
1947
- msgid "Post subscription"
1948
- msgstr ""
1949
-
1950
- #: options/options-layouts/settings-subscription.php:33
1951
- msgid "All comments subscription"
1952
- msgstr ""
1953
-
1954
- #: options/options-layouts/settings-subscription.php:40
1955
- msgid "Show \"Notify of new replies to this comment\""
1956
- msgstr ""
1957
-
1958
- #: options/options-layouts/settings-subscription.php:42
1959
- msgid ""
1960
- "wpDiscuz is the only comment plugin which allows you to subscribe to certain "
1961
- "comment replies. This option is located above [Post Comment] button in "
1962
- "comment form. You can disable this subscription way by unchecking this "
1963
- "option."
1964
- msgstr ""
1965
-
1966
- #: options/options-layouts/settings-subscription.php:49
1967
- msgid "\"Notify of new replies to this comment\" checked by default"
1968
- msgstr ""
1969
-
1970
- #: options/options-layouts/settings-subscription.php:56
1971
- msgid "Use Postmatic for subscriptions and commenting by email"
1972
- msgstr ""
1973
-
1974
- #: options/options-layouts/settings-subscription.php:57
1975
- msgid ""
1976
- "Postmatic allows your users subscribe to comments. Instead of just being "
1977
- "notified, they add a reply right from their inbox."
1978
- msgstr ""
1979
-
1980
- #: options/phrases-layouts/phrases-comment.php:7
1981
- msgid "Comment Template Phrases"
1982
- msgstr ""
1983
-
1984
- #: options/phrases-layouts/phrases-comment.php:158
1985
- msgid "Save edited comment button text"
1986
- msgstr ""
1987
-
1988
- #: options/phrases-layouts/phrases-comment.php:168
1989
- msgid "Cancel comment editing button text"
1990
- msgstr ""
1991
-
1992
- #: options/phrases-layouts/phrases-comment.php:178
1993
- msgid "Comment read more link text"
1994
- msgstr ""
1995
-
1996
- #: options/phrases-layouts/phrases-comment.php:188
1997
- msgid "Anonymous commenter name"
1998
- msgstr ""
1999
-
2000
- #: options/phrases-layouts/phrases-datetime.php:7
2001
- msgid "Date/Time Phrases"
2002
- msgstr ""
2003
-
2004
- #: options/phrases-layouts/phrases-datetime.php:12
2005
- msgid "Year"
2006
- msgstr ""
2007
-
2008
- #: options/phrases-layouts/phrases-datetime.php:22
2009
- msgid "Years (Plural Form)"
2010
- msgstr ""
2011
-
2012
- #: options/phrases-layouts/phrases-datetime.php:26
2013
- msgid "Years"
2014
- msgstr ""
2015
-
2016
- #: options/phrases-layouts/phrases-datetime.php:32
2017
- msgid "Month"
2018
- msgstr ""
2019
-
2020
- #: options/phrases-layouts/phrases-datetime.php:42
2021
- msgid "Months (Plural Form)"
2022
- msgstr ""
2023
-
2024
- #: options/phrases-layouts/phrases-datetime.php:52
2025
- msgid "Day"
2026
- msgstr ""
2027
-
2028
- #: options/phrases-layouts/phrases-datetime.php:62
2029
- msgid "Days (Plural Form)"
2030
- msgstr ""
2031
-
2032
- #: options/phrases-layouts/phrases-datetime.php:82
2033
- msgid "Hours (Plural Form)"
2034
- msgstr ""
2035
-
2036
- #: options/phrases-layouts/phrases-datetime.php:102
2037
- msgid "Minutes (Plural Form)"
2038
- msgstr ""
2039
-
2040
- #: options/phrases-layouts/phrases-datetime.php:112
2041
- msgid "Second"
2042
- msgstr ""
2043
-
2044
- #: options/phrases-layouts/phrases-datetime.php:122
2045
- msgid "Seconds (Plural Form)"
2046
- msgstr ""
2047
-
2048
- #: options/phrases-layouts/phrases-datetime.php:132
2049
- msgid "Commented \"right now\" text"
2050
- msgstr ""
2051
-
2052
- #: options/phrases-layouts/phrases-datetime.php:142
2053
- msgid "Ago text"
2054
- msgstr ""
2055
-
2056
- #: options/phrases-layouts/phrases-datetime.php:152
2057
- msgid "\"Today\" text"
2058
- msgstr ""
2059
-
2060
- #: options/phrases-layouts/phrases-email.php:7
2061
- msgid "Email Template Phrases"
2062
- msgstr ""
2063
-
2064
- #: options/phrases-layouts/phrases-email.php:12
2065
- msgid "Email Subject"
2066
- msgstr ""
2067
-
2068
- #: options/phrases-layouts/phrases-email.php:22
2069
- msgid "Email Message"
2070
- msgstr ""
2071
-
2072
- #: options/phrases-layouts/phrases-email.php:32
2073
- msgid "New Reply Subject"
2074
- msgstr ""
2075
-
2076
- #: options/phrases-layouts/phrases-email.php:42
2077
- msgid "New Reply Message"
2078
- msgstr ""
2079
-
2080
- #: options/phrases-layouts/phrases-email.php:62
2081
- #: options/phrases-layouts/phrases-email.php:66
2082
- msgid "Ignore Subscription"
2083
- msgstr ""
2084
-
2085
- #: options/phrases-layouts/phrases-email.php:92
2086
- msgid "Subscribe Confirmation Email Subject"
2087
- msgstr ""
2088
-
2089
- #: options/phrases-layouts/phrases-email.php:102
2090
- msgid "Subscribe Confirmation Email Content"
2091
- msgstr ""
2092
-
2093
- #: options/phrases-layouts/phrases-form.php:7
2094
- msgid "Form Template Phrases"
2095
- msgstr ""
2096
-
2097
- #: options/phrases-layouts/phrases-form.php:12
2098
- msgid "Comment Field Start"
2099
- msgstr ""
2100
-
2101
- #: options/phrases-layouts/phrases-form.php:22
2102
- msgid "Comment Field Join"
2103
- msgstr ""
2104
-
2105
- #: options/phrases-layouts/phrases-form.php:32
2106
- msgid "Email Field"
2107
- msgstr ""
2108
-
2109
- #: options/phrases-layouts/phrases-form.php:52
2110
- msgid "Notify on new comments"
2111
- msgstr ""
2112
-
2113
- #: options/phrases-layouts/phrases-form.php:62
2114
- msgid "Notify on all new replies"
2115
- msgstr ""
2116
-
2117
- #: options/phrases-layouts/phrases-form.php:66
2118
- msgid "new replies to all my comments"
2119
- msgstr ""
2120
-
2121
- #: options/phrases-layouts/phrases-form.php:72
2122
- msgid "Notify on new replies (checkbox)"
2123
- msgstr ""
2124
-
2125
- #: options/phrases-layouts/phrases-form.php:122
2126
- msgid "Subscribed on this comment replies"
2127
- msgstr ""
2128
-
2129
- #: options/phrases-layouts/phrases-form.php:132
2130
- msgid "Subscribed on all your comments replies"
2131
- msgstr ""
2132
-
2133
- #: options/phrases-layouts/phrases-form.php:142
2134
- msgid "Subscribed on this post"
2135
- msgstr ""
2136
-
2137
- #: options/phrases-layouts/phrases-general.php:7
2138
- msgid "General Phrases"
2139
- msgstr ""
2140
-
2141
- #: options/phrases-layouts/phrases-general.php:12
2142
- msgid "Be the first to comment"
2143
- msgstr ""
2144
-
2145
- #: options/phrases-layouts/phrases-general.php:32
2146
- msgid "Comment (Plural Form)"
2147
- msgstr ""
2148
-
2149
- #: options/phrases-layouts/phrases-general.php:42
2150
- msgid "On"
2151
- msgstr ""
2152
-
2153
- #: options/phrases-layouts/phrases-general.php:52
2154
- msgid "Load More Button"
2155
- msgstr ""
2156
-
2157
- #: options/phrases-layouts/phrases-general.php:72
2158
- msgid "Button text if has new comment"
2159
- msgstr ""
2160
-
2161
- #: options/phrases-layouts/phrases-general.php:82
2162
- msgid "Button text if has new comments (Plural Form)"
2163
- msgstr ""
2164
-
2165
- #: options/phrases-layouts/phrases-general.php:86
2166
- msgid "New Comments"
2167
- msgstr ""
2168
-
2169
- #: options/phrases-layouts/phrases-general.php:92
2170
- msgid "Button text if has new reply"
2171
- msgstr ""
2172
-
2173
- #: options/phrases-layouts/phrases-general.php:102
2174
- msgid "Button text if has new replies (Plural Form)"
2175
- msgstr ""
2176
-
2177
- #: options/phrases-layouts/phrases-general.php:106
2178
- msgid "New Replies"
2179
- msgstr ""
2180
-
2181
- #: options/phrases-layouts/phrases-general.php:112
2182
- msgid "Text on load more button if has new comment(s)"
2183
- msgstr ""
2184
-
2185
- #: options/phrases-layouts/phrases-notification.php:7
2186
- msgid "Notification Phrases"
2187
- msgstr ""
2188
-
2189
- #: options/phrases-layouts/phrases-notification.php:12
2190
- msgid "You\\'re subscribed to"
2191
- msgstr ""
2192
-
2193
- #: options/phrases-layouts/phrases-notification.php:43
2194
- msgid "Postmatic subscription label"
2195
- msgstr ""
2196
-
2197
- #: options/phrases-layouts/phrases-notification.php:54
2198
- msgid "Error message for empty field"
2199
- msgstr ""
2200
-
2201
- #: options/phrases-layouts/phrases-notification.php:64
2202
- msgid "Error message for invalid email field"
2203
- msgstr ""
2204
-
2205
- #: options/phrases-layouts/phrases-notification.php:74
2206
- msgid "Error message for invalid website url field"
2207
- msgstr ""
2208
-
2209
- #: options/phrases-layouts/phrases-notification.php:94
2210
- msgid "Logged in as"
2211
- msgstr ""
2212
-
2213
- #: options/phrases-layouts/phrases-notification.php:114
2214
- msgid "Logged In"
2215
- msgstr ""
2216
-
2217
- #: options/phrases-layouts/phrases-notification.php:124
2218
- msgid "To post a comment"
2219
- msgstr ""
2220
-
2221
- #: options/phrases-layouts/phrases-notification.php:144
2222
- msgid "You can vote only 1 time"
2223
- msgstr ""
2224
-
2225
- #: options/phrases-layouts/phrases-notification.php:164
2226
- msgid "Login To Vote"
2227
- msgstr ""
2228
-
2229
- #: options/phrases-layouts/phrases-notification.php:174
2230
- msgid "You Cannot Vote On Your Comment"
2231
- msgstr ""
2232
-
2233
- #: options/phrases-layouts/phrases-notification.php:184
2234
- msgid "You are not allowed to vote for this comment (Voting from same IP)"
2235
- msgstr ""
2236
-
2237
- #: options/phrases-layouts/phrases-notification.php:214
2238
- msgid "Comment waiting moderation"
2239
- msgstr ""
2240
-
2241
- #: options/phrases-layouts/phrases-notification.php:224
2242
- msgid "Message if input text length is too short"
2243
- msgstr ""
2244
-
2245
- #: options/phrases-layouts/phrases-notification.php:234
2246
- msgid "Message if input text length is too long"
2247
- msgstr ""
2248
-
2249
- #: options/phrases-layouts/phrases-notification.php:245
2250
- msgid "Message if comment was not updated"
2251
- msgstr ""
2252
-
2253
- #: options/phrases-layouts/phrases-notification.php:255
2254
- msgid "Message if comment no longer possible to edit"
2255
- msgstr ""
2256
-
2257
- #: options/phrases-layouts/phrases-notification.php:265
2258
- msgid "Message if comment text not changed"
2259
- msgstr ""
2260
-
2261
- #: options/phrases-layouts/phrases-notification.php:269
2262
- msgid "TYou've not made any changes"
2263
- msgstr ""
2264
-
2265
- #: options/tools-layouts/options-export.php:10
2266
- msgid ""
2267
- "You can transfer the saved options data between different installs by "
2268
- "copying the text inside this textarea. To import data from another install, "
2269
- "navigate to \"Import Options\" Tab and put the data in textarea with the one "
2270
- "from another install and click \"Save Changes\". Make sure you use the same "
2271
- "wpDiscuz versions."
2272
- msgstr ""
2273
-
2274
- #: options/tools-layouts/options-import.php:9
2275
- msgid ""
2276
- "You can transfer the saved options data between different installs by "
2277
- "copying the text inside this textarea in \"Export Options\" Tab. To import "
2278
- "data from another install, just put the data in textarea with the one from "
2279
- "another install and click \"Save Changes\". Make sure you use the same "
2280
- "wpDiscuz versions."
2281
- msgstr ""
2282
-
2283
- #: templates/comment/comment-form.php:73
2284
- msgid "Unable to send an email"
2285
- msgstr ""
2286
-
2287
- #: templates/comment/comment-form.php:75
2288
- msgid "Subscription not successed"
2289
- msgstr ""
2290
-
2291
- #: templates/comment/comment-form.php:296
2292
- msgid "wpDiscuz"
2293
- msgstr ""
2294
-
2295
- #: utils/class.WpdiscuzHelper.php:356 utils/class.WpdiscuzHelper.php:359
2296
- msgid "Spoiler"
2297
- msgstr ""
2298
-
2299
- #. Plugin Name of the plugin/theme
2300
- msgid "Comments - wpDiscuz"
2301
- msgstr ""
2302
-
2303
- #. Plugin URI of the plugin/theme
2304
- msgid "http://wpdiscuz.com/"
2305
- msgstr ""
2306
-
2307
- #. Description of the plugin/theme
2308
- msgid ""
2309
- "Better comment system. Wordpress post comments and discussion plugin. Allows "
2310
- "your visitors discuss, vote for comments and share."
2311
- msgstr ""
2312
-
2313
- #. Author of the plugin/theme
2314
- msgid "gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
2315
- msgstr ""
2316
-
2317
- #. Author URI of the plugin/theme
2318
- msgid "http://gvectors.com/"
2319
- msgstr ""
1
+ #, fuzzy
2
+ msgid ""
3
+ msgstr ""
4
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
+ "Project-Id-Version: Comments - wpDiscuz\n"
6
+ "POT-Creation-Date: 2017-04-24 21:31+0400\n"
7
+ "PO-Revision-Date: 2017-04-24 21:31+0400\n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.4\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-WPHeader: class.WpdiscuzCore.php\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
22
+
23
+ #: class.WpdiscuzCore.php:741 class.WpdiscuzCore.php:911
24
+ #: options/options-layouts/settings-social.php:40
25
+ #: options/options-layouts/settings-social.php:42
26
+ #: options/options-layouts/settings-social.php:44
27
+ #: options/options-layouts/settings-social.php:46
28
+ msgid "Settings"
29
+ msgstr ""
30
+
31
+ #: class.WpdiscuzCore.php:743 class.WpdiscuzCore.php:913
32
+ msgid "Phrases"
33
+ msgstr ""
34
+
35
+ #: class.WpdiscuzCore.php:745
36
+ msgid "Tools"
37
+ msgstr ""
38
+
39
+ #: class.WpdiscuzCore.php:746 options/html-options.php:21
40
+ #: options/html-options.php:61 options/options-layouts/settings-addons.php:7
41
+ msgid "Addons"
42
+ msgstr ""
43
+
44
+ #: class.WpdiscuzCore.php:954 options/phrases-layouts/phrases-comment.php:116
45
+ msgid "Admin"
46
+ msgstr ""
47
+
48
+ #: class.WpdiscuzCore.php:956 class.WpdiscuzCore.php:965
49
+ #: options/phrases-layouts/phrases-comment.php:118
50
+ msgid "Author"
51
+ msgstr ""
52
+
53
+ #: class.WpdiscuzCore.php:960 options/phrases-layouts/phrases-comment.php:124
54
+ msgid "Member"
55
+ msgstr ""
56
+
57
+ #: class.WpdiscuzCore.php:966 options/phrases-layouts/phrases-comment.php:122
58
+ msgid "Guest"
59
+ msgstr ""
60
+
61
+ #: forms/wpDiscuzForm.php:93
62
+ msgid "Invalid Data !!!"
63
+ msgstr ""
64
+
65
+ #: forms/wpDiscuzForm.php:101 forms/wpDiscuzForm.php:149
66
+ msgid "Forms"
67
+ msgstr ""
68
+
69
+ #: forms/wpDiscuzForm.php:102 options/html-phrases.php:21
70
+ msgid "Form"
71
+ msgstr ""
72
+
73
+ #: forms/wpDiscuzForm.php:103
74
+ msgid "Add New"
75
+ msgstr ""
76
+
77
+ #: forms/wpDiscuzForm.php:104
78
+ msgid "Add New Form"
79
+ msgstr ""
80
+
81
+ #: forms/wpDiscuzForm.php:105
82
+ msgid "Edit Form"
83
+ msgstr ""
84
+
85
+ #: forms/wpDiscuzForm.php:106
86
+ msgid "You did not create any forms yet"
87
+ msgstr ""
88
+
89
+ #: forms/wpDiscuzForm.php:107
90
+ msgid "Nothing found in Trash"
91
+ msgstr ""
92
+
93
+ #: forms/wpDiscuzForm.php:108
94
+ msgid "Search Forms"
95
+ msgstr ""
96
+
97
+ #: forms/wpDiscuzForm.php:163
98
+ msgid "Title"
99
+ msgstr ""
100
+
101
+ #: forms/wpDiscuzForm.php:164
102
+ msgid "Post Types"
103
+ msgstr ""
104
+
105
+ #: forms/wpDiscuzForm.php:165
106
+ msgid "Post IDs"
107
+ msgstr ""
108
+
109
+ #: forms/wpDiscuzForm.php:166 forms/wpdFormAttr/Form.php:586
110
+ msgid "Language"
111
+ msgstr ""
112
+
113
+ #: forms/wpDiscuzForm.php:167
114
+ msgid "Date"
115
+ msgstr ""
116
+
117
+ #: forms/wpDiscuzForm.php:212
118
+ msgid "Field Types"
119
+ msgstr ""
120
+
121
+ #: forms/wpDiscuzForm.php:213 forms/wpdFormAttr/Row.php:23
122
+ msgid "Two column"
123
+ msgstr ""
124
+
125
+ #: forms/wpDiscuzForm.php:214 forms/wpdFormAttr/Field/Field.php:64
126
+ #: forms/wpdFormAttr/Row.php:24
127
+ msgid "Delete"
128
+ msgstr ""
129
+
130
+ #: forms/wpDiscuzForm.php:215 forms/wpdFormAttr/Row.php:25
131
+ msgid "Move"
132
+ msgstr ""
133
+
134
+ #: forms/wpDiscuzForm.php:216 forms/wpdFormAttr/Row.php:69
135
+ msgid "Add Field"
136
+ msgstr ""
137
+
138
+ #: forms/wpDiscuzForm.php:217 forms/wpdFormAttr/Field/Field.php:61
139
+ #: options/class.WpdiscuzOptionsSerialized.php:613
140
+ #: options/phrases-layouts/phrases-comment.php:32
141
+ msgid "Edit"
142
+ msgstr ""
143
+
144
+ #: forms/wpDiscuzForm.php:218
145
+ msgid "You can not delete default field."
146
+ msgstr ""
147
+
148
+ #: forms/wpDiscuzForm.php:219
149
+ msgid "You really want to delete this item ?"
150
+ msgstr ""
151
+
152
+ #: forms/wpDiscuzForm.php:226
153
+ msgid "Permission Denied !!!"
154
+ msgstr ""
155
+
156
+ #: forms/wpDiscuzForm.php:251 forms/wpdFormAttr/Form.php:556
157
+ #: forms/wpdFormAttr/html/admin-form-fields-list.php:18
158
+ #: options/options-layouts/settings-customfields.php:7
159
+ msgid "Custom Fields"
160
+ msgstr ""
161
+
162
+ #: forms/wpDiscuzForm.php:299
163
+ msgid "Custom CSS"
164
+ msgstr ""
165
+
166
+ #: forms/wpDiscuzForm.php:355
167
+ msgid "Default Form"
168
+ msgstr ""
169
+
170
+ #: forms/wpDiscuzForm.php:386 forms/wpDiscuzForm.php:394
171
+ #: forms/wpdFormAttr/Form.php:621
172
+ msgid "Leave a Reply"
173
+ msgstr ""
174
+
175
+ #: forms/wpDiscuzForm.php:409 forms/wpdFormAttr/Field/CheckboxField.php:12
176
+ #: forms/wpdFormAttr/Field/ColorField.php:12
177
+ #: forms/wpdFormAttr/Field/DateField.php:12
178
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:25
179
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:19
180
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:18
181
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:64
182
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:18
183
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:18
184
+ #: forms/wpdFormAttr/Field/NumberField.php:12
185
+ #: forms/wpdFormAttr/Field/RadioField.php:12
186
+ #: forms/wpdFormAttr/Field/RatingField.php:12
187
+ #: forms/wpdFormAttr/Field/SelectField.php:12
188
+ #: forms/wpdFormAttr/Field/TextAreaField.php:13
189
+ #: forms/wpdFormAttr/Field/TextField.php:12
190
+ #: forms/wpdFormAttr/Field/UrlField.php:12 forms/wpdFormAttr/Form.php:710
191
+ msgid "Name"
192
+ msgstr ""
193
+
194
+ #: forms/wpDiscuzForm.php:411 forms/wpdFormAttr/Field/DefaultField/Email.php:64
195
+ #: forms/wpdFormAttr/Form.php:717
196
+ #: options/class.WpdiscuzOptionsSerialized.php:600 options/html-phrases.php:24
197
+ msgid "Email"
198
+ msgstr ""
199
+
200
+ #: forms/wpDiscuzForm.php:413
201
+ msgid "WebSite URL"
202
+ msgstr ""
203
+
204
+ #: forms/wpDiscuzForm.php:416
205
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:78
206
+ #: forms/wpdFormAttr/Form.php:740
207
+ msgid "Post Comment"
208
+ msgstr ""
209
+
210
+ #: forms/wpDiscuzForm.php:425
211
+ msgid "Clone Form"
212
+ msgstr ""
213
+
214
+ #: forms/wpDiscuzForm.php:437
215
+ msgid "Clone"
216
+ msgstr ""
217
+
218
+ #: forms/wpDiscuzForm.php:475
219
+ msgid ""
220
+ "Comment Form is not detected, please navigate to form manager page to create "
221
+ "it. "
222
+ msgstr ""
223
+
224
+ #: forms/wpDiscuzForm.php:476
225
+ msgid "Add Comment Form"
226
+ msgstr ""
227
+
228
+ #: forms/wpdFormAttr/Field/CheckboxField.php:14
229
+ #: forms/wpdFormAttr/Field/ColorField.php:14
230
+ #: forms/wpdFormAttr/Field/DateField.php:14
231
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:27
232
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:21
233
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:20
234
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:20
235
+ #: forms/wpdFormAttr/Field/NumberField.php:14
236
+ #: forms/wpdFormAttr/Field/RadioField.php:14
237
+ #: forms/wpdFormAttr/Field/SelectField.php:14
238
+ #: forms/wpdFormAttr/Field/TextAreaField.php:15
239
+ #: forms/wpdFormAttr/Field/TextField.php:14
240
+ #: forms/wpdFormAttr/Field/UrlField.php:14
241
+ msgid "Also used for field placeholder"
242
+ msgstr ""
243
+
244
+ #: forms/wpdFormAttr/Field/CheckboxField.php:17
245
+ #: forms/wpdFormAttr/Field/ColorField.php:17
246
+ #: forms/wpdFormAttr/Field/DateField.php:17
247
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:30
248
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:24
249
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:23
250
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:23
251
+ #: forms/wpdFormAttr/Field/NumberField.php:17
252
+ #: forms/wpdFormAttr/Field/RadioField.php:17
253
+ #: forms/wpdFormAttr/Field/RatingField.php:16
254
+ #: forms/wpdFormAttr/Field/SelectField.php:17
255
+ #: forms/wpdFormAttr/Field/TextAreaField.php:18
256
+ #: forms/wpdFormAttr/Field/TextField.php:17
257
+ #: forms/wpdFormAttr/Field/UrlField.php:17
258
+ msgid "Description"
259
+ msgstr ""
260
+
261
+ #: forms/wpdFormAttr/Field/CheckboxField.php:19
262
+ #: forms/wpdFormAttr/Field/ColorField.php:19
263
+ #: forms/wpdFormAttr/Field/DateField.php:19
264
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:32
265
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:26
266
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:25
267
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:25
268
+ #: forms/wpdFormAttr/Field/NumberField.php:19
269
+ #: forms/wpdFormAttr/Field/NumberField.php:24
270
+ #: forms/wpdFormAttr/Field/NumberField.php:29
271
+ #: forms/wpdFormAttr/Field/RadioField.php:19
272
+ #: forms/wpdFormAttr/Field/RatingField.php:18
273
+ #: forms/wpdFormAttr/Field/SelectField.php:19
274
+ #: forms/wpdFormAttr/Field/TextAreaField.php:20
275
+ #: forms/wpdFormAttr/Field/TextField.php:19
276
+ #: forms/wpdFormAttr/Field/UrlField.php:19
277
+ msgid ""
278
+ "Field specific short description or some rule related to inserted "
279
+ "information."
280
+ msgstr ""
281
+
282
+ #: forms/wpdFormAttr/Field/CheckboxField.php:28
283
+ #: forms/wpdFormAttr/Field/RadioField.php:28
284
+ #: forms/wpdFormAttr/Field/SelectField.php:28
285
+ msgid "Values"
286
+ msgstr ""
287
+
288
+ #: forms/wpdFormAttr/Field/CheckboxField.php:30
289
+ msgid "Please insert one value per line"
290
+ msgstr ""
291
+
292
+ #: forms/wpdFormAttr/Field/CheckboxField.php:33
293
+ #: forms/wpdFormAttr/Field/ColorField.php:29
294
+ #: forms/wpdFormAttr/Field/DateField.php:29
295
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:36
296
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:35
297
+ #: forms/wpdFormAttr/Field/NumberField.php:39
298
+ #: forms/wpdFormAttr/Field/RadioField.php:33
299
+ #: forms/wpdFormAttr/Field/RatingField.php:28
300
+ #: forms/wpdFormAttr/Field/SelectField.php:33
301
+ #: forms/wpdFormAttr/Field/TextAreaField.php:23
302
+ #: forms/wpdFormAttr/Field/TextField.php:29
303
+ #: forms/wpdFormAttr/Field/UrlField.php:29
304
+ msgid "Field is required"
305
+ msgstr ""
306
+
307
+ #: forms/wpdFormAttr/Field/CheckboxField.php:37
308
+ #: forms/wpdFormAttr/Field/ColorField.php:33
309
+ #: forms/wpdFormAttr/Field/DateField.php:33
310
+ #: forms/wpdFormAttr/Field/NumberField.php:43
311
+ #: forms/wpdFormAttr/Field/RadioField.php:37
312
+ #: forms/wpdFormAttr/Field/SelectField.php:37
313
+ #: forms/wpdFormAttr/Field/TextAreaField.php:27
314
+ #: forms/wpdFormAttr/Field/TextField.php:33
315
+ #: forms/wpdFormAttr/Field/UrlField.php:33
316
+ msgid "Display on reply form"
317
+ msgstr ""
318
+
319
+ #: forms/wpdFormAttr/Field/CheckboxField.php:41
320
+ #: forms/wpdFormAttr/Field/ColorField.php:37
321
+ #: forms/wpdFormAttr/Field/DateField.php:37
322
+ #: forms/wpdFormAttr/Field/NumberField.php:47
323
+ #: forms/wpdFormAttr/Field/RadioField.php:41
324
+ #: forms/wpdFormAttr/Field/RatingField.php:32
325
+ #: forms/wpdFormAttr/Field/SelectField.php:41
326
+ #: forms/wpdFormAttr/Field/TextAreaField.php:31
327
+ #: forms/wpdFormAttr/Field/TextField.php:37
328
+ #: forms/wpdFormAttr/Field/UrlField.php:37
329
+ msgid "Display on comment"
330
+ msgstr ""
331
+
332
+ #: forms/wpdFormAttr/Field/CheckboxField.php:45
333
+ #: forms/wpdFormAttr/Field/ColorField.php:41
334
+ #: forms/wpdFormAttr/Field/DateField.php:41
335
+ #: forms/wpdFormAttr/Field/NumberField.php:51
336
+ #: forms/wpdFormAttr/Field/RadioField.php:45
337
+ #: forms/wpdFormAttr/Field/RatingField.php:36
338
+ #: forms/wpdFormAttr/Field/SelectField.php:45
339
+ #: forms/wpdFormAttr/Field/TextAreaField.php:35
340
+ #: forms/wpdFormAttr/Field/TextField.php:41
341
+ #: forms/wpdFormAttr/Field/UrlField.php:41
342
+ msgid "Advanced Options"
343
+ msgstr ""
344
+
345
+ #: forms/wpdFormAttr/Field/CheckboxField.php:48
346
+ #: forms/wpdFormAttr/Field/ColorField.php:44
347
+ #: forms/wpdFormAttr/Field/DateField.php:44
348
+ #: forms/wpdFormAttr/Field/NumberField.php:54
349
+ #: forms/wpdFormAttr/Field/RadioField.php:48
350
+ #: forms/wpdFormAttr/Field/RatingField.php:39
351
+ #: forms/wpdFormAttr/Field/SelectField.php:48
352
+ #: forms/wpdFormAttr/Field/TextAreaField.php:38
353
+ #: forms/wpdFormAttr/Field/TextField.php:44
354
+ #: forms/wpdFormAttr/Field/UrlField.php:44
355
+ msgid "Meta Key"
356
+ msgstr ""
357
+
358
+ #: forms/wpdFormAttr/Field/CheckboxField.php:52
359
+ #: forms/wpdFormAttr/Field/ColorField.php:48
360
+ #: forms/wpdFormAttr/Field/DateField.php:48
361
+ #: forms/wpdFormAttr/Field/NumberField.php:58
362
+ #: forms/wpdFormAttr/Field/RadioField.php:52
363
+ #: forms/wpdFormAttr/Field/RatingField.php:43
364
+ #: forms/wpdFormAttr/Field/SelectField.php:52
365
+ #: forms/wpdFormAttr/Field/TextAreaField.php:42
366
+ #: forms/wpdFormAttr/Field/TextField.php:48
367
+ #: forms/wpdFormAttr/Field/UrlField.php:48
368
+ msgid "Replace old meta key"
369
+ msgstr ""
370
+
371
+ #: forms/wpdFormAttr/Field/CheckboxField.php:153
372
+ #: forms/wpdFormAttr/Field/ColorField.php:115
373
+ #: forms/wpdFormAttr/Field/DateField.php:115
374
+ #: forms/wpdFormAttr/Field/NumberField.php:125
375
+ #: forms/wpdFormAttr/Field/RadioField.php:130
376
+ #: forms/wpdFormAttr/Field/RatingField.php:125
377
+ #: forms/wpdFormAttr/Field/SelectField.php:125
378
+ #: forms/wpdFormAttr/Field/TextAreaField.php:98
379
+ #: forms/wpdFormAttr/Field/TextField.php:109
380
+ #: forms/wpdFormAttr/Field/UrlField.php:110
381
+ msgid "field is required!"
382
+ msgstr ""
383
+
384
+ #: forms/wpdFormAttr/Field/ColorField.php:23
385
+ #: forms/wpdFormAttr/Field/DateField.php:23
386
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:30
387
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:29
388
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:29
389
+ #: forms/wpdFormAttr/Field/NumberField.php:33
390
+ #: forms/wpdFormAttr/Field/RatingField.php:22
391
+ #: forms/wpdFormAttr/Field/TextField.php:23
392
+ #: forms/wpdFormAttr/Field/UrlField.php:23
393
+ msgid "Field icon"
394
+ msgstr ""
395
+
396
+ #: forms/wpdFormAttr/Field/ColorField.php:26
397
+ #: forms/wpdFormAttr/Field/DateField.php:26
398
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:33
399
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:32
400
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:32
401
+ #: forms/wpdFormAttr/Field/NumberField.php:36
402
+ #: forms/wpdFormAttr/Field/RatingField.php:25
403
+ #: forms/wpdFormAttr/Field/TextField.php:26
404
+ #: forms/wpdFormAttr/Field/UrlField.php:26
405
+ msgid "Font-awesome icon library."
406
+ msgstr ""
407
+
408
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:35
409
+ msgid "Show for guests"
410
+ msgstr ""
411
+
412
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:39
413
+ msgid "Show for logged in users"
414
+ msgstr ""
415
+
416
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:107
417
+ #: forms/wpdFormAttr/Form.php:733
418
+ msgid "Code"
419
+ msgstr ""
420
+
421
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:114
422
+ msgid "Cannot create image file"
423
+ msgstr ""
424
+
425
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:115
426
+ msgid "Permission denied for file creation"
427
+ msgstr ""
428
+
429
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:116
430
+ msgid "PHP GD2 library is disabled"
431
+ msgstr ""
432
+
433
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:117
434
+ msgid "PNG image creation disabled"
435
+ msgstr ""
436
+
437
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:20
438
+ msgid "Button Text"
439
+ msgstr ""
440
+
441
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:35
442
+ msgid "Enable"
443
+ msgstr ""
444
+
445
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:83
446
+ #: forms/wpdFormAttr/Form.php:724
447
+ msgid "Website"
448
+ msgstr ""
449
+
450
+ #: forms/wpdFormAttr/Field/Field.php:52
451
+ msgid " (Submit Button)"
452
+ msgstr ""
453
+
454
+ #: forms/wpdFormAttr/Field/Field.php:54
455
+ msgid " (CAPTCHA)"
456
+ msgstr ""
457
+
458
+ #: forms/wpdFormAttr/Field/Field.php:87
459
+ msgid "Add To Form"
460
+ msgstr ""
461
+
462
+ #: forms/wpdFormAttr/Field/NumberField.php:22
463
+ msgid "Min Value"
464
+ msgstr ""
465
+
466
+ #: forms/wpdFormAttr/Field/NumberField.php:27
467
+ msgid "Max Value"
468
+ msgstr ""
469
+
470
+ #: forms/wpdFormAttr/Field/NumberField.php:129
471
+ msgid "value can not be less than"
472
+ msgstr ""
473
+
474
+ #: forms/wpdFormAttr/Field/NumberField.php:132
475
+ msgid "value can not be more than"
476
+ msgstr ""
477
+
478
+ #: forms/wpdFormAttr/Field/RadioField.php:30
479
+ #: forms/wpdFormAttr/Field/SelectField.php:30
480
+ msgid "New value new line"
481
+ msgstr ""
482
+
483
+ #: forms/wpdFormAttr/Form.php:595
484
+ msgid "Allow guests to comment"
485
+ msgstr ""
486
+
487
+ #: forms/wpdFormAttr/Form.php:599 forms/wpdFormAttr/Form.php:610
488
+ msgid "Yes"
489
+ msgstr ""
490
+
491
+ #: forms/wpdFormAttr/Form.php:601 forms/wpdFormAttr/Form.php:612
492
+ msgid "No"
493
+ msgstr ""
494
+
495
+ #: forms/wpdFormAttr/Form.php:606
496
+ msgid "Enable subscription bar"
497
+ msgstr ""
498
+
499
+ #: forms/wpdFormAttr/Form.php:617
500
+ msgid "Comment form header text"
501
+ msgstr ""
502
+
503
+ #: forms/wpdFormAttr/Form.php:626
504
+ msgid "Display comment form for post types"
505
+ msgstr ""
506
+
507
+ #: forms/wpdFormAttr/Form.php:633
508
+ msgid ""
509
+ "The red marked post types are already attached to other comment form. If you "
510
+ "set this form too, the old forms will not be used for them."
511
+ msgstr ""
512
+
513
+ #: forms/wpdFormAttr/Form.php:652
514
+ msgid "Display comment form for post IDs"
515
+ msgstr ""
516
+
517
+ #: forms/wpdFormAttr/Form.php:653
518
+ msgid ""
519
+ "You can use this form for certain posts/pages specified by comma separated "
520
+ "IDs."
521
+ msgstr ""
522
+
523
+ #: forms/wpdFormAttr/Form.php:664
524
+ msgid "Comment Text Field"
525
+ msgstr ""
526
+
527
+ #: forms/wpdFormAttr/Form.php:679
528
+ msgid "ADD ROW"
529
+ msgstr ""
530
+
531
+ #: forms/wpdFormAttr/html/admin-form-fields-list.php:7
532
+ msgid "Comment Form Fields"
533
+ msgstr ""
534
+
535
+ #: options/class.WpdiscuzOptions.php:24 options/class.WpdiscuzOptions.php:99
536
+ #: options/class.WpdiscuzOptions.php:214
537
+ msgid "Hacker?"
538
+ msgstr ""
539
+
540
+ #: options/class.WpdiscuzOptions.php:249
541
+ msgid ""
542
+ "Brings an ocean of emotions to your comments. It comes with an awesome smile "
543
+ "package."
544
+ msgstr ""
545
+
546
+ #: options/class.WpdiscuzOptions.php:250
547
+ msgid ""
548
+ "Extended information about comment author with Profile, Activity, Votes and "
549
+ "Subscriptions Tabs on pop-up window."
550
+ msgstr ""
551
+
552
+ #: options/class.WpdiscuzOptions.php:251
553
+ msgid ""
554
+ "Total control over comment subscriptions. Full list, monitor, manage, "
555
+ "filter, unsubscribe, confirm..."
556
+ msgstr ""
557
+
558
+ #: options/class.WpdiscuzOptions.php:252
559
+ msgid ""
560
+ "A full-fledged tool-kit for advertising in comment section of your website. "
561
+ "Separate banner and ad managment."
562
+ msgstr ""
563
+
564
+ #: options/class.WpdiscuzOptions.php:253
565
+ msgid ""
566
+ "Allows to mention comments and users in comment text using #comment-id and "
567
+ "@username tags."
568
+ msgstr ""
569
+
570
+ #: options/class.WpdiscuzOptions.php:254
571
+ msgid ""
572
+ "See comment likers and voters of each comment. Adds user reputation and "
573
+ "badges based on received likes."
574
+ msgstr ""
575
+
576
+ #: options/class.WpdiscuzOptions.php:255
577
+ msgid ""
578
+ "Comment reporting tools. Auto-moderates comments based on number of flags "
579
+ "and dislikes."
580
+ msgstr ""
581
+
582
+ #: options/class.WpdiscuzOptions.php:256
583
+ msgid ""
584
+ "Adds a smart and intuitive AJAX \"Translate\" button with 60 language "
585
+ "options. Uses free translation API."
586
+ msgstr ""
587
+
588
+ #: options/class.WpdiscuzOptions.php:257
589
+ msgid ""
590
+ "AJAX powered front-end comment search. It starts searching while you type "
591
+ "search words. "
592
+ msgstr ""
593
+
594
+ #: options/class.WpdiscuzOptions.php:258
595
+ msgid ""
596
+ "Most voted comments, Active comment threads, Most commented posts, Active "
597
+ "comment authors"
598
+ msgstr ""
599
+
600
+ #: options/class.WpdiscuzOptions.php:259
601
+ msgid ""
602
+ "All in one powerful yet simple admin toolkit to moderate comments on front-"
603
+ "end."
604
+ msgstr ""
605
+
606
+ #: options/class.WpdiscuzOptions.php:260
607
+ msgid ""
608
+ "Extended comment attachment system. Allows to upload images, videos, audios "
609
+ "and other file types."
610
+ msgstr ""
611
+
612
+ #: options/class.WpdiscuzOptions.php:261
613
+ msgid ""
614
+ "Adds No CAPTCHA on all comment forms. Stops spam and bot comments with "
615
+ "Google reCAPTCHA"
616
+ msgstr ""
617
+
618
+ #: options/class.WpdiscuzOptions.php:262
619
+ msgid ""
620
+ "Integrates myCRED Badges and Ranks. Converts wpDiscuz comment votes/likes to "
621
+ "myCRED points. "
622
+ msgstr ""
623
+
624
+ #: options/class.WpdiscuzOptions.php:263
625
+ msgid ""
626
+ "Allows censoring comment words. Filters comments and replaces those phrases "
627
+ "with custom words."
628
+ msgstr ""
629
+
630
+ #: options/class.WpdiscuzOptions.php:269
631
+ msgid "Custom Comment Forms"
632
+ msgstr ""
633
+
634
+ #: options/class.WpdiscuzOptions.php:270
635
+ msgid ""
636
+ "You can create custom comment forms with wpDiscuz. wpDiscuz 4 comes with "
637
+ "custom comment forms and fields. You can create custom comment forms for "
638
+ "each post type, each form can beceated with different form fields, for "
639
+ "eaxample: text, dropdown, rating, checkboxes, etc..."
640
+ msgstr ""
641
+
642
+ #: options/class.WpdiscuzOptions.php:273
643
+ msgid "Emoticons"
644
+ msgstr ""
645
+
646
+ #: options/class.WpdiscuzOptions.php:274
647
+ msgid ""
648
+ "You can add more emotions to your comments using wpDiscuz Emoticons addon."
649
+ msgstr ""
650
+
651
+ #: options/class.WpdiscuzOptions.php:277
652
+ msgid "Ads Manager"
653
+ msgstr ""
654
+
655
+ #: options/class.WpdiscuzOptions.php:278
656
+ msgid ""
657
+ "Increase your income using ad banners. Comment area is the most active "
658
+ "sections for advertising. wpDiscuz Ads Manager addon is designed to help you "
659
+ "add banners and control ads in this section."
660
+ msgstr ""
661
+
662
+ #: options/class.WpdiscuzOptions.php:281
663
+ msgid "User and Comment Mentioning"
664
+ msgstr ""
665
+
666
+ #: options/class.WpdiscuzOptions.php:282
667
+ msgid ""
668
+ "Using wpDiscuz User &amp; Comment Mentioning addon you can allow commenters "
669
+ "mention comments and users in comment text using #comment-id and @username "
670
+ "tags."
671
+ msgstr ""
672
+
673
+ #: options/class.WpdiscuzOptions.php:285
674
+ msgid "Advanced Likers"
675
+ msgstr ""
676
+
677
+ #: options/class.WpdiscuzOptions.php:286
678
+ msgid ""
679
+ "wpDiscuz Advanced Likers addon displays likers and voters of each comment. "
680
+ "Adds user reputation and badges based on received likes."
681
+ msgstr ""
682
+
683
+ #: options/class.WpdiscuzOptions.php:289
684
+ msgid "Report and Flagging"
685
+ msgstr ""
686
+
687
+ #: options/class.WpdiscuzOptions.php:290
688
+ msgid ""
689
+ "Let your commenters help you to determine and remove spam comments. wpDiscuz "
690
+ "Report and Flagging addon comes with comment reporting tools. Automaticaly "
691
+ "auto-moderates comments based on number of flags and dislikes."
692
+ msgstr ""
693
+
694
+ #: options/class.WpdiscuzOptions.php:293
695
+ msgid "Comment Translate"
696
+ msgstr ""
697
+
698
+ #: options/class.WpdiscuzOptions.php:294
699
+ msgid ""
700
+ "In most cases the big part of your visitors are not a native speakers of "
701
+ "your language. Make your comments comprehensible for all visitors using "
702
+ "wpDiscuz Comment Translation addon. It adds smart and intuitive AJAX "
703
+ "\"Translate\" button with 60 language translation options. Uses free "
704
+ "translation API."
705
+ msgstr ""
706
+
707
+ #: options/class.WpdiscuzOptions.php:297
708
+ msgid "Comment Search"
709
+ msgstr ""
710
+
711
+ #: options/class.WpdiscuzOptions.php:298
712
+ msgid ""
713
+ "You can let website visitor search in comments. It's always more attractive "
714
+ "to find a comment about something that interest you. Using wpDiscuz Comment "
715
+ "Search addon you'll get a nice, AJAX powered front-end comment search form "
716
+ "above comment list."
717
+ msgstr ""
718
+
719
+ #: options/class.WpdiscuzOptions.php:301
720
+ msgid "wpDiscuz Widgets"
721
+ msgstr ""
722
+
723
+ #: options/class.WpdiscuzOptions.php:302
724
+ msgid ""
725
+ "More Comment Widgets! Most voted comments, Active comment threads, Most "
726
+ "commented posts, Active comment authors widgets are available in wpDiscuz "
727
+ "Widgets Addon"
728
+ msgstr ""
729
+
730
+ #: options/class.WpdiscuzOptions.php:305
731
+ msgid "Front-end Moderation"
732
+ msgstr ""
733
+
734
+ #: options/class.WpdiscuzOptions.php:306
735
+ msgid ""
736
+ "You can moderate comments on front-end using all in one powerful yet simple "
737
+ "wpDiscuz Frontend Moderation addon."
738
+ msgstr ""
739
+
740
+ #: options/class.WpdiscuzOptions.php:309
741
+ msgid "Media Uploader"
742
+ msgstr ""
743
+
744
+ #: options/class.WpdiscuzOptions.php:310
745
+ msgid ""
746
+ "You can let website visitors attach images and files to comments and embed "
747
+ "video/audio content using wpDiscuz Media Uploader addon."
748
+ msgstr ""
749
+
750
+ #: options/class.WpdiscuzOptions.php:313
751
+ msgid "Google ReCaptcha"
752
+ msgstr ""
753
+
754
+ #: options/class.WpdiscuzOptions.php:314
755
+ msgid ""
756
+ "Advanced spam protection with wpDiscuz Google reCAPTCHA addon. This addon "
757
+ "adds No-CAPTCHA reCAPTCHA on all comment forms. Stops spam and bot comments."
758
+ msgstr ""
759
+
760
+ #: options/class.WpdiscuzOptions.php:328
761
+ msgid "New Addons are available for wpDiscuz Comments Plugin"
762
+ msgstr ""
763
+
764
+ #: options/class.WpdiscuzOptions.php:335 options/class.WpdiscuzOptions.php:341
765
+ msgid "Go to wpDiscuz Addons subMenu"
766
+ msgstr ""
767
+
768
+ #: options/class.WpdiscuzOptions.php:372
769
+ msgid "Do you know?"
770
+ msgstr ""
771
+
772
+ #: options/class.WpdiscuzOptions.php:384
773
+ msgid "More info"
774
+ msgstr ""
775
+
776
+ #: options/class.WpdiscuzOptionsSerialized.php:594
777
+ msgid "Be the First to Comment!"
778
+ msgstr ""
779
+
780
+ #: options/class.WpdiscuzOptionsSerialized.php:595 options/html-phrases.php:22
781
+ #: options/phrases-layouts/phrases-general.php:22
782
+ msgid "Comment"
783
+ msgstr ""
784
+
785
+ #: options/class.WpdiscuzOptionsSerialized.php:596
786
+ msgid "Comments"
787
+ msgstr ""
788
+
789
+ #: options/class.WpdiscuzOptionsSerialized.php:597
790
+ msgid "on"
791
+ msgstr ""
792
+
793
+ #: options/class.WpdiscuzOptionsSerialized.php:598
794
+ msgid "Start the discussion"
795
+ msgstr ""
796
+
797
+ #: options/class.WpdiscuzOptionsSerialized.php:599
798
+ msgid "Join the discussion"
799
+ msgstr ""
800
+
801
+ #: options/class.WpdiscuzOptionsSerialized.php:601
802
+ #: options/phrases-layouts/phrases-form.php:42
803
+ #: options/phrases-layouts/phrases-form.php:46
804
+ msgid "Notify of"
805
+ msgstr ""
806
+
807
+ #: options/class.WpdiscuzOptionsSerialized.php:602
808
+ #: options/phrases-layouts/phrases-form.php:56
809
+ msgid "new follow-up comments"
810
+ msgstr ""
811
+
812
+ #: options/class.WpdiscuzOptionsSerialized.php:603
813
+ msgid "new replies to my comments"
814
+ msgstr ""
815
+
816
+ #: options/class.WpdiscuzOptionsSerialized.php:604
817
+ #: options/phrases-layouts/phrases-form.php:76
818
+ msgid "Notify of new replies to this comment"
819
+ msgstr ""
820
+
821
+ #: options/class.WpdiscuzOptionsSerialized.php:605
822
+ #: options/phrases-layouts/phrases-form.php:82
823
+ #: options/phrases-layouts/phrases-form.php:86
824
+ msgid "Sort by"
825
+ msgstr ""
826
+
827
+ #: options/class.WpdiscuzOptionsSerialized.php:606
828
+ #: options/phrases-layouts/phrases-form.php:92
829
+ #: options/phrases-layouts/phrases-form.php:96
830
+ msgid "newest"
831
+ msgstr ""
832
+
833
+ #: options/class.WpdiscuzOptionsSerialized.php:607
834
+ #: options/phrases-layouts/phrases-form.php:102
835
+ #: options/phrases-layouts/phrases-form.php:106
836
+ msgid "oldest"
837
+ msgstr ""
838
+
839
+ #: options/class.WpdiscuzOptionsSerialized.php:608
840
+ #: options/phrases-layouts/phrases-form.php:112
841
+ #: options/phrases-layouts/phrases-form.php:116
842
+ msgid "most voted"
843
+ msgstr ""
844
+
845
+ #: options/class.WpdiscuzOptionsSerialized.php:609
846
+ msgid "Load More Comments"
847
+ msgstr ""
848
+
849
+ #: options/class.WpdiscuzOptionsSerialized.php:610
850
+ #: options/phrases-layouts/phrases-general.php:62
851
+ msgid "Load Rest of Comments"
852
+ msgstr ""
853
+
854
+ #: options/class.WpdiscuzOptionsSerialized.php:611
855
+ #: options/phrases-layouts/phrases-comment.php:12
856
+ msgid "Reply"
857
+ msgstr ""
858
+
859
+ #: options/class.WpdiscuzOptionsSerialized.php:612
860
+ #: options/phrases-layouts/phrases-comment.php:22
861
+ msgid "Share"
862
+ msgstr ""
863
+
864
+ #: options/class.WpdiscuzOptionsSerialized.php:614
865
+ #: options/phrases-layouts/phrases-comment.php:42
866
+ msgid "Share On Facebook"
867
+ msgstr ""
868
+
869
+ #: options/class.WpdiscuzOptionsSerialized.php:615
870
+ #: options/phrases-layouts/phrases-comment.php:52
871
+ msgid "Share On Twitter"
872
+ msgstr ""
873
+
874
+ #: options/class.WpdiscuzOptionsSerialized.php:616
875
+ #: options/phrases-layouts/phrases-comment.php:62
876
+ msgid "Share On Google"
877
+ msgstr ""
878
+
879
+ #: options/class.WpdiscuzOptionsSerialized.php:617
880
+ #: options/phrases-layouts/phrases-comment.php:72
881
+ msgid "Share On VKontakte"
882
+ msgstr ""
883
+
884
+ #: options/class.WpdiscuzOptionsSerialized.php:618
885
+ #: options/phrases-layouts/phrases-comment.php:82
886
+ msgid "Share On Odnoklassniki"
887
+ msgstr ""
888
+
889
+ #: options/class.WpdiscuzOptionsSerialized.php:619
890
+ #: options/phrases-layouts/phrases-comment.php:92
891
+ msgid "Hide Replies"
892
+ msgstr ""
893
+
894
+ #: options/class.WpdiscuzOptionsSerialized.php:620
895
+ #: options/phrases-layouts/phrases-comment.php:102
896
+ msgid "Show Replies"
897
+ msgstr ""
898
+
899
+ #: options/class.WpdiscuzOptionsSerialized.php:621
900
+ #: options/phrases-layouts/phrases-general.php:76
901
+ msgid "New Comment"
902
+ msgstr ""
903
+
904
+ #: options/class.WpdiscuzOptionsSerialized.php:622
905
+ msgid "New comment on the discussion section you've been interested in"
906
+ msgstr ""
907
+
908
+ #: options/class.WpdiscuzOptionsSerialized.php:623
909
+ #: options/phrases-layouts/phrases-email.php:36
910
+ #: options/phrases-layouts/phrases-general.php:96
911
+ #: utils/class.WpdiscuzEmailHelper.php:158
912
+ msgid "New Reply"
913
+ msgstr ""
914
+
915
+ #: options/class.WpdiscuzOptionsSerialized.php:624
916
+ #: utils/class.WpdiscuzEmailHelper.php:159
917
+ msgid "New reply on the discussion section you've been interested in"
918
+ msgstr ""
919
+
920
+ #: options/class.WpdiscuzOptionsSerialized.php:625
921
+ msgid "You're subscribed for new replies on this comment"
922
+ msgstr ""
923
+
924
+ #: options/class.WpdiscuzOptionsSerialized.php:626
925
+ msgid "You're subscribed for new replies on all your comments"
926
+ msgstr ""
927
+
928
+ #: options/class.WpdiscuzOptionsSerialized.php:627
929
+ msgid "You're subscribed for new follow-up comments on this post"
930
+ msgstr ""
931
+
932
+ #: options/class.WpdiscuzOptionsSerialized.php:628
933
+ #: options/phrases-layouts/phrases-email.php:52
934
+ #: options/phrases-layouts/phrases-email.php:56
935
+ msgid "Unsubscribe"
936
+ msgstr ""
937
+
938
+ #: options/class.WpdiscuzOptionsSerialized.php:629
939
+ #: options/phrases-layouts/phrases-email.php:66
940
+ msgid "Cancel subscription"
941
+ msgstr ""
942
+
943
+ #: options/class.WpdiscuzOptionsSerialized.php:630
944
+ #: options/phrases-layouts/phrases-notification.php:32
945
+ msgid "You've successfully unsubscribed."
946
+ msgstr ""
947
+
948
+ #: options/class.WpdiscuzOptionsSerialized.php:631
949
+ #: options/phrases-layouts/phrases-notification.php:22
950
+ msgid "You've successfully subscribed."
951
+ msgstr ""
952
+
953
+ #: options/class.WpdiscuzOptionsSerialized.php:632
954
+ #: options/phrases-layouts/phrases-email.php:72
955
+ #: options/phrases-layouts/phrases-email.php:76
956
+ msgid "Confirm your subscription"
957
+ msgstr ""
958
+
959
+ #: options/class.WpdiscuzOptionsSerialized.php:633
960
+ #: options/phrases-layouts/phrases-email.php:82
961
+ #: options/phrases-layouts/phrases-email.php:86
962
+ msgid "You've successfully confirmed your subscription."
963
+ msgstr ""
964
+
965
+ #: options/class.WpdiscuzOptionsSerialized.php:634
966
+ #: options/phrases-layouts/phrases-email.php:96
967
+ #: utils/class.WpdiscuzEmailHelper.php:51
968
+ msgid "Subscribe Confirmation"
969
+ msgstr ""
970
+
971
+ #: options/class.WpdiscuzOptionsSerialized.php:635
972
+ #: options/phrases-layouts/phrases-email.php:106
973
+ #: utils/class.WpdiscuzEmailHelper.php:52
974
+ msgid ""
975
+ "Hi, <br/> You just subscribed for new comments on our website. This means "
976
+ "you will receive an email when new comments are posted according to "
977
+ "subscription option you've chosen. <br/> To activate, click confirm below. "
978
+ "If you believe this is an error, ignore this message and we'll never bother "
979
+ "you again."
980
+ msgstr ""
981
+
982
+ #: options/class.WpdiscuzOptionsSerialized.php:636
983
+ msgid "please fill out this field to comment"
984
+ msgstr ""
985
+
986
+ #: options/class.WpdiscuzOptionsSerialized.php:637
987
+ msgid "email address is invalid"
988
+ msgstr ""
989
+
990
+ #: options/class.WpdiscuzOptionsSerialized.php:638
991
+ msgid "url is invalid"
992
+ msgstr ""
993
+
994
+ #: options/class.WpdiscuzOptionsSerialized.php:639
995
+ msgid "year"
996
+ msgstr ""
997
+
998
+ #: options/class.WpdiscuzOptionsSerialized.php:640
999
+ msgid "years"
1000
+ msgstr ""
1001
+
1002
+ #: options/class.WpdiscuzOptionsSerialized.php:641
1003
+ msgid "month"
1004
+ msgstr ""
1005
+
1006
+ #: options/class.WpdiscuzOptionsSerialized.php:642
1007
+ msgid "months"
1008
+ msgstr ""
1009
+
1010
+ #: options/class.WpdiscuzOptionsSerialized.php:643
1011
+ msgid "day"
1012
+ msgstr ""
1013
+
1014
+ #: options/class.WpdiscuzOptionsSerialized.php:644
1015
+ msgid "days"
1016
+ msgstr ""
1017
+
1018
+ #: options/class.WpdiscuzOptionsSerialized.php:645
1019
+ msgid "hour"
1020
+ msgstr ""
1021
+
1022
+ #: options/class.WpdiscuzOptionsSerialized.php:646
1023
+ msgid "hours"
1024
+ msgstr ""
1025
+
1026
+ #: options/class.WpdiscuzOptionsSerialized.php:647
1027
+ msgid "minute"
1028
+ msgstr ""
1029
+
1030
+ #: options/class.WpdiscuzOptionsSerialized.php:648
1031
+ msgid "minutes"
1032
+ msgstr ""
1033
+
1034
+ #: options/class.WpdiscuzOptionsSerialized.php:649
1035
+ msgid "second"
1036
+ msgstr ""
1037
+
1038
+ #: options/class.WpdiscuzOptionsSerialized.php:650
1039
+ msgid "seconds"
1040
+ msgstr ""
1041
+
1042
+ #: options/class.WpdiscuzOptionsSerialized.php:651
1043
+ msgid "right now"
1044
+ msgstr ""
1045
+
1046
+ #: options/class.WpdiscuzOptionsSerialized.php:652
1047
+ msgid "ago"
1048
+ msgstr ""
1049
+
1050
+ #: options/class.WpdiscuzOptionsSerialized.php:653
1051
+ #: options/phrases-layouts/phrases-datetime.php:156
1052
+ msgid "Today"
1053
+ msgstr ""
1054
+
1055
+ #: options/class.WpdiscuzOptionsSerialized.php:654
1056
+ #: options/phrases-layouts/phrases-notification.php:84
1057
+ msgid "You must be"
1058
+ msgstr ""
1059
+
1060
+ #: options/class.WpdiscuzOptionsSerialized.php:655
1061
+ msgid "You are logged in as"
1062
+ msgstr ""
1063
+
1064
+ #: options/class.WpdiscuzOptionsSerialized.php:656
1065
+ #: options/phrases-layouts/phrases-notification.php:104
1066
+ msgid "Log out"
1067
+ msgstr ""
1068
+
1069
+ #: options/class.WpdiscuzOptionsSerialized.php:657
1070
+ msgid "logged in"
1071
+ msgstr ""
1072
+
1073
+ #: options/class.WpdiscuzOptionsSerialized.php:658
1074
+ msgid "to post a comment."
1075
+ msgstr ""
1076
+
1077
+ #: options/class.WpdiscuzOptionsSerialized.php:659
1078
+ #: options/phrases-layouts/phrases-comment.php:138
1079
+ msgid "Vote Up"
1080
+ msgstr ""
1081
+
1082
+ #: options/class.WpdiscuzOptionsSerialized.php:660
1083
+ #: options/phrases-layouts/phrases-comment.php:148
1084
+ msgid "Vote Down"
1085
+ msgstr ""
1086
+
1087
+ #: options/class.WpdiscuzOptionsSerialized.php:661
1088
+ #: options/phrases-layouts/phrases-notification.php:134
1089
+ msgid "Vote Counted"
1090
+ msgstr ""
1091
+
1092
+ #: options/class.WpdiscuzOptionsSerialized.php:662
1093
+ msgid "You've already voted for this comment"
1094
+ msgstr ""
1095
+
1096
+ #: options/class.WpdiscuzOptionsSerialized.php:663
1097
+ #: options/phrases-layouts/phrases-notification.php:154
1098
+ msgid "Voting Error"
1099
+ msgstr ""
1100
+
1101
+ #: options/class.WpdiscuzOptionsSerialized.php:664
1102
+ msgid "You Must Be Logged In To Vote"
1103
+ msgstr ""
1104
+
1105
+ #: options/class.WpdiscuzOptionsSerialized.php:665
1106
+ msgid "You cannot vote for your comment"
1107
+ msgstr ""
1108
+
1109
+ #: options/class.WpdiscuzOptionsSerialized.php:666
1110
+ msgid "You are not allowed to vote for this comment"
1111
+ msgstr ""
1112
+
1113
+ #: options/class.WpdiscuzOptionsSerialized.php:667
1114
+ #: options/phrases-layouts/phrases-notification.php:194
1115
+ msgid "Invalid Captcha Code"
1116
+ msgstr ""
1117
+
1118
+ #: options/class.WpdiscuzOptionsSerialized.php:668
1119
+ #: options/phrases-layouts/phrases-notification.php:204
1120
+ msgid "Some of field value is invalid"
1121
+ msgstr ""
1122
+
1123
+ #: options/class.WpdiscuzOptionsSerialized.php:669
1124
+ msgid "new comment"
1125
+ msgstr ""
1126
+
1127
+ #: options/class.WpdiscuzOptionsSerialized.php:670
1128
+ msgid "new comments"
1129
+ msgstr ""
1130
+
1131
+ #: options/class.WpdiscuzOptionsSerialized.php:671
1132
+ msgid "Comment awaiting moderation"
1133
+ msgstr ""
1134
+
1135
+ #: options/class.WpdiscuzOptionsSerialized.php:672
1136
+ msgid "new reply on your comment"
1137
+ msgstr ""
1138
+
1139
+ #: options/class.WpdiscuzOptionsSerialized.php:673
1140
+ msgid "new replies on your comments"
1141
+ msgstr ""
1142
+
1143
+ #: options/class.WpdiscuzOptionsSerialized.php:674
1144
+ #: options/phrases-layouts/phrases-general.php:116
1145
+ msgid "New"
1146
+ msgstr ""
1147
+
1148
+ #: options/class.WpdiscuzOptionsSerialized.php:675
1149
+ #: options/phrases-layouts/phrases-notification.php:249
1150
+ msgid "Sorry, the comment was not updated"
1151
+ msgstr ""
1152
+
1153
+ #: options/class.WpdiscuzOptionsSerialized.php:676
1154
+ #: options/phrases-layouts/phrases-notification.php:259
1155
+ msgid "Sorry, this comment no longer possible to edit"
1156
+ msgstr ""
1157
+
1158
+ #: options/class.WpdiscuzOptionsSerialized.php:677
1159
+ msgid "You've not made any changes"
1160
+ msgstr ""
1161
+
1162
+ #: options/class.WpdiscuzOptionsSerialized.php:678
1163
+ #: options/phrases-layouts/phrases-comment.php:162
1164
+ msgid "Save"
1165
+ msgstr ""
1166
+
1167
+ #: options/class.WpdiscuzOptionsSerialized.php:679
1168
+ #: options/phrases-layouts/phrases-comment.php:172
1169
+ msgid "Cancel"
1170
+ msgstr ""
1171
+
1172
+ #: options/class.WpdiscuzOptionsSerialized.php:680
1173
+ msgid "Input is too short"
1174
+ msgstr ""
1175
+
1176
+ #: options/class.WpdiscuzOptionsSerialized.php:681
1177
+ msgid "Input is too long"
1178
+ msgstr ""
1179
+
1180
+ #: options/class.WpdiscuzOptionsSerialized.php:682
1181
+ #: options/phrases-layouts/phrases-comment.php:182
1182
+ msgid "Read more &raquo;"
1183
+ msgstr ""
1184
+
1185
+ #: options/class.WpdiscuzOptionsSerialized.php:683
1186
+ #: options/phrases-layouts/phrases-comment.php:192
1187
+ msgid "Anonymous"
1188
+ msgstr ""
1189
+
1190
+ #: options/class.WpdiscuzOptionsSerialized.php:684
1191
+ #: options/phrases-layouts/phrases-notification.php:275
1192
+ #: options/phrases-layouts/phrases-notification.php:279
1193
+ msgid "Please fill out required fields"
1194
+ msgstr ""
1195
+
1196
+ #: options/class.WpdiscuzOptionsSerialized.php:685
1197
+ #: options/phrases-layouts/phrases-form.php:152
1198
+ #: options/phrases-layouts/phrases-form.php:156
1199
+ msgid "Connect with"
1200
+ msgstr ""
1201
+
1202
+ #: options/class.WpdiscuzOptionsSerialized.php:686
1203
+ msgid "You're subscribed to"
1204
+ msgstr ""
1205
+
1206
+ #: options/class.WpdiscuzOptionsSerialized.php:687
1207
+ msgid "Participate in this discussion via email"
1208
+ msgstr ""
1209
+
1210
+ #: options/html-addons.php:11
1211
+ msgid "wpDiscuz Addons"
1212
+ msgstr ""
1213
+
1214
+ #: options/html-addons.php:19
1215
+ msgid "wpDiscuz Add-ons"
1216
+ msgstr ""
1217
+
1218
+ #: options/html-addons.php:20
1219
+ msgid "Addons Support Forum"
1220
+ msgstr ""
1221
+
1222
+ #: options/html-addons.php:25
1223
+ msgid ""
1224
+ "All wpDiscuz addons are being developed by wpDiscuz developers at gVectors "
1225
+ "Team, those are very solid premium level extensions and come with premium "
1226
+ "support.\n"
1227
+ " These addons help us to keep top level "
1228
+ "development of the free wpDiscuz plugin. All essential and even dozens of "
1229
+ "extra-cool features are already available for free in core wpDiscuz. \n"
1230
+ " There will never be any limits, any pro and paid "
1231
+ "versions for wpDiscuz. We have another dozens of awesome features in our to-"
1232
+ "do list which will also be added for free in future releases. \n"
1233
+ " So the free wpDiscuz development always stays on "
1234
+ "the first priority and wpDiscuz is being extended with new free functions "
1235
+ "and features even faster than before."
1236
+ msgstr ""
1237
+
1238
+ #: options/html-addons.php:31
1239
+ msgid " Thank you!<br/> Sincerely yours,<br/> gVectors Team&nbsp;"
1240
+ msgstr ""
1241
+
1242
+ #: options/html-addons.php:53
1243
+ msgid "Installed"
1244
+ msgstr ""
1245
+
1246
+ #: options/html-addons.php:57
1247
+ msgid "Version"
1248
+ msgstr ""
1249
+
1250
+ #: options/html-addons.php:58
1251
+ msgid "at least"
1252
+ msgstr ""
1253
+
1254
+ #: options/html-addons.php:60
1255
+ msgid "Live Preview | Buy"
1256
+ msgstr ""
1257
+
1258
+ #: options/html-addons.php:66
1259
+ msgid "More information about"
1260
+ msgstr ""
1261
+
1262
+ #: options/html-options.php:10
1263
+ msgid "wpDiscuz General Settings"
1264
+ msgstr ""
1265
+
1266
+ #: options/html-options.php:18
1267
+ msgid "Like wpDiscuz?"
1268
+ msgstr ""
1269
+
1270
+ #: options/html-options.php:19
1271
+ msgid "Documentation"
1272
+ msgstr ""
1273
+
1274
+ #: options/html-options.php:20
1275
+ msgid "Support"
1276
+ msgstr ""
1277
+
1278
+ #: options/html-options.php:54 options/options-layouts/settings-general.php:7
1279
+ msgid "General Settings"
1280
+ msgstr ""
1281
+
1282
+ #: options/html-options.php:55
1283
+ #: options/options-layouts/settings-live-update.php:7
1284
+ msgid "Live Update"
1285
+ msgstr ""
1286
+
1287
+ #: options/html-options.php:56
1288
+ msgid "Show/Hide"
1289
+ msgstr ""
1290
+
1291
+ #: options/html-options.php:57
1292
+ msgid "Subscription"
1293
+ msgstr ""
1294
+
1295
+ #: options/html-options.php:57
1296
+ msgid "and Postmatic"
1297
+ msgstr ""
1298
+
1299
+ #: options/html-options.php:58
1300
+ msgid "Styling"
1301
+ msgstr ""
1302
+
1303
+ #: options/html-options.php:59 options/options-layouts/settings-social.php:124
1304
+ msgid "Social Login"
1305
+ msgstr ""
1306
+
1307
+ #: options/html-options.php:60
1308
+ #: options/options-layouts/settings-integrations.php:7
1309
+ msgid "Integrations"
1310
+ msgstr ""
1311
+
1312
+ #: options/html-options.php:148
1313
+ msgid "Reset Options"
1314
+ msgstr ""
1315
+
1316
+ #: options/html-options.php:150
1317
+ msgid "Refresh comment optimization"
1318
+ msgstr ""
1319
+
1320
+ #: options/html-options.php:152
1321
+ msgid "Remove vote data"
1322
+ msgstr ""
1323
+
1324
+ #: options/html-options.php:153 options/html-phrases.php:71
1325
+ #: options/html-tools.php:58
1326
+ msgid "Save Changes"
1327
+ msgstr ""
1328
+
1329
+ #: options/html-phrases.php:10
1330
+ msgid "wpDiscuz Front-end Phrases"
1331
+ msgstr ""
1332
+
1333
+ #: options/html-phrases.php:20
1334
+ msgid "General"
1335
+ msgstr ""
1336
+
1337
+ #: options/html-phrases.php:23
1338
+ msgid "Date/Time"
1339
+ msgstr ""
1340
+
1341
+ #: options/html-phrases.php:25
1342
+ msgid "Notification"
1343
+ msgstr ""
1344
+
1345
+ #: options/html-tools.php:10
1346
+ msgid "wpDiscuz Tools"
1347
+ msgstr ""
1348
+
1349
+ #: options/html-tools.php:22 options/tools-layouts/options-export.php:8
1350
+ msgid "Export options"
1351
+ msgstr ""
1352
+
1353
+ #: options/html-tools.php:23 options/tools-layouts/options-import.php:7
1354
+ msgid "Import options"
1355
+ msgstr ""
1356
+
1357
+ #: options/options-layouts/settings-addons.php:13
1358
+ msgid ""
1359
+ "Here you can find wpDiscuz Addons' setting options in vertical subTabs with "
1360
+ "according addon titles. All wpDiscuz addons are listed on wpDiscuz"
1361
+ msgstr ""
1362
+
1363
+ #: options/options-layouts/settings-addons.php:13
1364
+ msgid "Addons subMenu"
1365
+ msgstr ""
1366
+
1367
+ #: options/options-layouts/settings-addons.php:13
1368
+ msgid ""
1369
+ "We'll add new free and paid addons with almost every wpDiscuz release. There "
1370
+ "will be dozens of very useful addons in near future. Currently wpDiscuz "
1371
+ "consists of about 70 free features/addons like \"Live Update\", \"First "
1372
+ "comment redirection\", \"Comment sorting\", \"Simple CAPTCHA\", \"AJAX "
1373
+ "Pagination\", \"Lazy Load\", \"Comment Likes\", \"Comment Share\" and dozens "
1374
+ "of other addons and there will be more. All new and free addons will be "
1375
+ "built-in with wpDiscuz plugin and all paid addons will be listed separately "
1376
+ "on"
1377
+ msgstr ""
1378
+
1379
+ #: options/options-layouts/settings-customfields.php:12
1380
+ msgid "Google Map API Key"
1381
+ msgstr ""
1382
+
1383
+ #: options/options-layouts/settings-general.php:11
1384
+ msgid "Enable wpdiscuz on home page"
1385
+ msgstr ""
1386
+
1387
+ #: options/options-layouts/settings-general.php:15
1388
+ msgid "Enable Quicktags"
1389
+ msgstr ""
1390
+
1391
+ #: options/options-layouts/settings-general.php:20
1392
+ msgid "Use guest email to detect registered account"
1393
+ msgstr ""
1394
+
1395
+ #: options/options-layouts/settings-general.php:22
1396
+ msgid ""
1397
+ "Sometimes registered users comment as guest using the same email address. "
1398
+ "wpDiscuz can detect the account role using guest email and display commenter "
1399
+ "label correctly."
1400
+ msgstr ""
1401
+
1402
+ #: options/options-layouts/settings-general.php:29
1403
+ msgid "Comment author name min length (for guests only)"
1404
+ msgstr ""
1405
+
1406
+ #: options/options-layouts/settings-general.php:33
1407
+ #: options/options-layouts/settings-general.php:56
1408
+ msgid "Min"
1409
+ msgstr ""
1410
+
1411
+ #: options/options-layouts/settings-general.php:36
1412
+ #: options/options-layouts/settings-general.php:59
1413
+ msgid "Max"
1414
+ msgstr ""
1415
+
1416
+ #: options/options-layouts/settings-general.php:42
1417
+ msgid "Keep guest commenter credentials in browser cookies for x days"
1418
+ msgstr ""
1419
+
1420
+ #: options/options-layouts/settings-general.php:44
1421
+ msgid "Set this option value -1 to make it unlimited."
1422
+ msgstr ""
1423
+
1424
+ #: options/options-layouts/settings-general.php:45
1425
+ msgid "Set this option value 0 to clear those data when user closes browser."
1426
+ msgstr ""
1427
+
1428
+ #: options/options-layouts/settings-general.php:52
1429
+ msgid "Comment text length"
1430
+ msgstr ""
1431
+
1432
+ #: options/options-layouts/settings-general.php:65
1433
+ msgid ""
1434
+ "The number of words before breaking comment text and showing \"Read more\" "
1435
+ "link"
1436
+ msgstr ""
1437
+
1438
+ #: options/options-layouts/settings-general.php:67
1439
+ msgid "Set this option value 0, to turn off comment text breaking function."
1440
+ msgstr ""
1441
+
1442
+ #: options/options-layouts/settings-general.php:73
1443
+ msgid "Comment text size in pixels"
1444
+ msgstr ""
1445
+
1446
+ #: options/options-layouts/settings-general.php:86
1447
+ msgid "Allow comment editing for"
1448
+ msgstr ""
1449
+
1450
+ #: options/options-layouts/settings-general.php:90
1451
+ msgid "Do not allow"
1452
+ msgstr ""
1453
+
1454
+ #: options/options-layouts/settings-general.php:91
1455
+ #: options/options-layouts/settings-general.php:92
1456
+ #: options/options-layouts/settings-live-update.php:52
1457
+ #: options/options-layouts/settings-live-update.php:53
1458
+ #: options/options-layouts/settings-live-update.php:54
1459
+ msgid "Minutes"
1460
+ msgstr ""
1461
+
1462
+ #: options/options-layouts/settings-general.php:93
1463
+ #: options/phrases-layouts/phrases-datetime.php:72
1464
+ msgid "Hour"
1465
+ msgstr ""
1466
+
1467
+ #: options/options-layouts/settings-general.php:94
1468
+ #: options/options-layouts/settings-general.php:95
1469
+ msgid "Hours"
1470
+ msgstr ""
1471
+
1472
+ #: options/options-layouts/settings-general.php:96
1473
+ msgid "Unlimit"
1474
+ msgstr ""
1475
+
1476
+ #: options/options-layouts/settings-general.php:102
1477
+ msgid "Redirect first commenter to"
1478
+ msgstr ""
1479
+
1480
+ #: options/options-layouts/settings-general.php:109
1481
+ msgid "Do not redirect"
1482
+ msgstr ""
1483
+
1484
+ #: options/options-layouts/settings-general.php:116
1485
+ msgid "Allow guests to vote on comments"
1486
+ msgstr ""
1487
+
1488
+ #: options/options-layouts/settings-general.php:121
1489
+ msgid "Comments loading/pagination type"
1490
+ msgstr ""
1491
+
1492
+ #: options/options-layouts/settings-general.php:123
1493
+ msgid ""
1494
+ "You can manage the number of comments for [Load more] option in Settings > "
1495
+ "Discussion page, using \"Break comments into pages with [X] top level "
1496
+ "comments per page\" option. To show the default Wordpress comment pagination "
1497
+ "you should enable the checkbox on bigining of the same option."
1498
+ msgstr ""
1499
+
1500
+ #: options/options-layouts/settings-general.php:129
1501
+ #: options/options-layouts/settings-general.php:131
1502
+ msgid "[Load more] Button"
1503
+ msgstr ""
1504
+
1505
+ #: options/options-layouts/settings-general.php:133
1506
+ #: options/options-layouts/settings-general.php:135
1507
+ msgid "[Load rest of all comments] Button"
1508
+ msgstr ""
1509
+
1510
+ #: options/options-layouts/settings-general.php:137
1511
+ #: options/options-layouts/settings-general.php:139
1512
+ msgid "Lazy load comments on scrolling"
1513
+ msgstr ""
1514
+
1515
+ #: options/options-layouts/settings-general.php:146
1516
+ msgid "Use WordPress Date/Time format"
1517
+ msgstr ""
1518
+
1519
+ #: options/options-layouts/settings-general.php:147
1520
+ msgid ""
1521
+ "wpDiscuz shows Human Readable date format. If you check this option it'll "
1522
+ "show the date/time format set in WordPress General Settings."
1523
+ msgstr ""
1524
+
1525
+ #: options/options-layouts/settings-general.php:153
1526
+ msgid "Current Wordpress date/time format"
1527
+ msgstr ""
1528
+
1529
+ #: options/options-layouts/settings-general.php:159
1530
+ msgid "Use Plugin .PO/.MO files"
1531
+ msgstr ""
1532
+
1533
+ #: options/options-layouts/settings-general.php:160
1534
+ msgid ""
1535
+ "wpDiscuz phrase system allows you to translate all front-end phrases. "
1536
+ "However if you have a multi-language website it'll not allow you to add more "
1537
+ "than one language translation. The only way to get it is the plugin "
1538
+ "translation files (.PO / .MO). If wpDiscuz has the languages you need you "
1539
+ "should check this option to disable phrase system and it'll automatically "
1540
+ "translate all phrases based on language files according to current language."
1541
+ msgstr ""
1542
+
1543
+ #: options/options-layouts/settings-general.php:167
1544
+ msgid ""
1545
+ "Help wpDiscuz to grow allowing people to recognize which comment plugin you "
1546
+ "use"
1547
+ msgstr ""
1548
+
1549
+ #: options/options-layouts/settings-general.php:169
1550
+ msgid ""
1551
+ "Please check this option on to help wpDiscuz get more popularity as your "
1552
+ "thank to the hard work we do for you totally free. This option adds a very "
1553
+ "small (16x16px) icon under the comment section which will allow your site "
1554
+ "visitors recognize the name of comment solution you use."
1555
+ msgstr ""
1556
+
1557
+ #: options/options-layouts/settings-general.php:174
1558
+ msgid "Thank you!"
1559
+ msgstr ""
1560
+
1561
+ #: options/options-layouts/settings-integrations.php:14
1562
+ msgid "BuddyPress"
1563
+ msgstr ""
1564
+
1565
+ #: options/options-layouts/settings-integrations.php:15
1566
+ msgid "Users Ultra"
1567
+ msgstr ""
1568
+
1569
+ #: options/options-layouts/settings-integrations.php:16
1570
+ msgid "User Pro"
1571
+ msgstr ""
1572
+
1573
+ #: options/options-layouts/settings-integrations.php:17
1574
+ msgid "Ultimate Member"
1575
+ msgstr ""
1576
+
1577
+ #: options/options-layouts/settings-integrations.php:18
1578
+ msgid "MyCred"
1579
+ msgstr ""
1580
+
1581
+ #: options/options-layouts/settings-integrations.php:23
1582
+ #: options/options-layouts/settings-integrations.php:41
1583
+ #: options/options-layouts/settings-integrations.php:59
1584
+ #: options/options-layouts/settings-integrations.php:90
1585
+ #: options/options-layouts/settings-integrations.php:124
1586
+ msgid "Please add the code below in current active theme's functions.php file"
1587
+ msgstr ""
1588
+
1589
+ #: options/options-layouts/settings-integrations.php:24
1590
+ msgid ""
1591
+ "This code will integrate BuddyPress profile URL with wpDiscuz. BuddyPress "
1592
+ "Display Names and Avatars will be integrated automatically."
1593
+ msgstr ""
1594
+
1595
+ #: options/options-layouts/settings-integrations.php:42
1596
+ msgid ""
1597
+ "This code will integrate Users Ultra profile URL with wpDiscuz. Users Ultra "
1598
+ "Display Names and Avatars will be integrated automatically."
1599
+ msgstr ""
1600
+
1601
+ #: options/options-layouts/settings-integrations.php:60
1602
+ msgid ""
1603
+ "This code will integrate User Pro profile URL with wpDiscuz. User Pro "
1604
+ "Display Names and Avatars will be integrated automatically."
1605
+ msgstr ""
1606
+
1607
+ #: options/options-layouts/settings-integrations.php:91
1608
+ msgid ""
1609
+ "This code consists of two parts, which will integrate Ultimate Member "
1610
+ "profile Display Name and Profile URL with wpDiscuz. UM Avatars will be "
1611
+ "integrated automatically."
1612
+ msgstr ""
1613
+
1614
+ #: options/options-layouts/settings-integrations.php:125
1615
+ msgid ""
1616
+ "This code will integrate MyCred User Ranks and Badges under comment author "
1617
+ "avatar."
1618
+ msgstr ""
1619
+
1620
+ #: options/options-layouts/settings-live-update.php:12
1621
+ msgid "Live update options"
1622
+ msgstr ""
1623
+
1624
+ #: options/options-layouts/settings-live-update.php:13
1625
+ msgid ""
1626
+ "wpDiscuz 3 live update is very smart and doesn't overload your server even "
1627
+ "if you're on Shared hosting plan and even your website is very active. "
1628
+ "However we recommend to monitor your server resources if you're on a Shared "
1629
+ "hosting plan. There are some very weak hosting plans which may not be able "
1630
+ "to perform very frequently live update requests. If you found some issue you "
1631
+ "can set the option below 30 seconds or more."
1632
+ msgstr ""
1633
+
1634
+ #: options/options-layouts/settings-live-update.php:18
1635
+ msgid "Never update"
1636
+ msgstr ""
1637
+
1638
+ #: options/options-layouts/settings-live-update.php:20
1639
+ msgid "Turn off \"Live Update\" function"
1640
+ msgstr ""
1641
+
1642
+ #: options/options-layouts/settings-live-update.php:22
1643
+ #: options/options-layouts/settings-subscription.php:27
1644
+ msgid "Show new comment/reply buttons to update manualy"
1645
+ msgstr ""
1646
+
1647
+ #: options/options-layouts/settings-live-update.php:24
1648
+ msgid "Always check for new comments and show update buttons"
1649
+ msgstr ""
1650
+
1651
+ #: options/options-layouts/settings-live-update.php:26
1652
+ #: options/options-layouts/settings-subscription.php:31
1653
+ msgid "Always update"
1654
+ msgstr ""
1655
+
1656
+ #: options/options-layouts/settings-live-update.php:28
1657
+ msgid "Always check for new comments and update automatically"
1658
+ msgstr ""
1659
+
1660
+ #: options/options-layouts/settings-live-update.php:35
1661
+ msgid "Disable live update for guests"
1662
+ msgstr ""
1663
+
1664
+ #: options/options-layouts/settings-live-update.php:43
1665
+ msgid "Update comment list every"
1666
+ msgstr ""
1667
+
1668
+ #: options/options-layouts/settings-live-update.php:48
1669
+ #: options/options-layouts/settings-live-update.php:49
1670
+ #: options/options-layouts/settings-live-update.php:50
1671
+ msgid "Seconds"
1672
+ msgstr ""
1673
+
1674
+ #: options/options-layouts/settings-live-update.php:51
1675
+ #: options/phrases-layouts/phrases-datetime.php:92
1676
+ msgid "Minute"
1677
+ msgstr ""
1678
+
1679
+ #: options/options-layouts/settings-show-hide.php:7
1680
+ msgid "Show/Hide Components"
1681
+ msgstr ""
1682
+
1683
+ #: options/options-layouts/settings-show-hide.php:11
1684
+ msgid "Show logged-in user name and logout link on top of main form"
1685
+ msgstr ""
1686
+
1687
+ #: options/options-layouts/settings-show-hide.php:15
1688
+ msgid "Hide Reply button for Guests"
1689
+ msgstr ""
1690
+
1691
+ #: options/options-layouts/settings-show-hide.php:19
1692
+ msgid "Hide Reply button for Members"
1693
+ msgstr ""
1694
+
1695
+ #: options/options-layouts/settings-show-hide.php:23
1696
+ msgid "Hide Commenter Labels"
1697
+ msgstr ""
1698
+
1699
+ #: options/options-layouts/settings-show-hide.php:27
1700
+ msgid "Hide Voting buttons"
1701
+ msgstr ""
1702
+
1703
+ #: options/options-layouts/settings-show-hide.php:31
1704
+ msgid "Comment voting statistic mode"
1705
+ msgstr ""
1706
+
1707
+ #: options/options-layouts/settings-show-hide.php:36
1708
+ msgid "total count"
1709
+ msgstr ""
1710
+
1711
+ #: options/options-layouts/settings-show-hide.php:40
1712
+ msgid "separate count"
1713
+ msgstr ""
1714
+
1715
+ #: options/options-layouts/settings-show-hide.php:46
1716
+ msgid "Show Share Buttons"
1717
+ msgstr ""
1718
+
1719
+ #: options/options-layouts/settings-show-hide.php:65
1720
+ msgid "Facebook Application ID"
1721
+ msgstr ""
1722
+
1723
+ #: options/options-layouts/settings-show-hide.php:81
1724
+ msgid ""
1725
+ "The plugin captcha directory is not writable! Please set writable "
1726
+ "permissions on \"wpdiscuz/utils/temp\" directory in order to use the first "
1727
+ "type of captcha generation"
1728
+ msgstr ""
1729
+
1730
+ #: options/options-layouts/settings-show-hide.php:85
1731
+ msgid "Captcha generation type"
1732
+ msgstr ""
1733
+
1734
+ #: options/options-layouts/settings-show-hide.php:91
1735
+ msgid "use file system"
1736
+ msgstr ""
1737
+
1738
+ #: options/options-layouts/settings-show-hide.php:96
1739
+ msgid "use wordpress session"
1740
+ msgstr ""
1741
+
1742
+ #: options/options-layouts/settings-show-hide.php:102
1743
+ msgid "Hide header text"
1744
+ msgstr ""
1745
+
1746
+ #: options/options-layouts/settings-show-hide.php:106
1747
+ msgid "Show sorting buttons"
1748
+ msgstr ""
1749
+
1750
+ #: options/options-layouts/settings-show-hide.php:110
1751
+ msgid "Set comments ordering to \"Most voted\" by default "
1752
+ msgstr ""
1753
+
1754
+ #: options/options-layouts/settings-show-hide.php:114
1755
+ msgid "Hide comment link"
1756
+ msgstr ""
1757
+
1758
+ #: options/options-layouts/settings-show-hide.php:118
1759
+ msgid "Enable automatic image URL to image HTML conversion"
1760
+ msgstr ""
1761
+
1762
+ #: options/options-layouts/settings-show-hide.php:123
1763
+ msgid "Secure comment content in HTTPS protocol."
1764
+ msgstr ""
1765
+
1766
+ #: options/options-layouts/settings-show-hide.php:125
1767
+ msgid ""
1768
+ "This option detects images and other contents with non-https source URLs and "
1769
+ "fix according to your selected logic."
1770
+ msgstr ""
1771
+
1772
+ #: options/options-layouts/settings-show-hide.php:133
1773
+ msgid "Replace non-https content to simple link URLs"
1774
+ msgstr ""
1775
+
1776
+ #: options/options-layouts/settings-show-hide.php:138
1777
+ msgid ""
1778
+ "Just replace http protocols to https (https may not be supported by content "
1779
+ "provider)"
1780
+ msgstr ""
1781
+
1782
+ #: options/options-layouts/settings-show-hide.php:142
1783
+ msgid "Ignore non-https content"
1784
+ msgstr ""
1785
+
1786
+ #: options/options-layouts/settings-show-hide.php:149
1787
+ msgid "Disable Profiles URL"
1788
+ msgstr ""
1789
+
1790
+ #: options/options-layouts/settings-show-hide.php:153
1791
+ msgid "Diplay Ratings"
1792
+ msgstr ""
1793
+
1794
+ #: options/options-layouts/settings-show-hide.php:156
1795
+ msgid "Before Content"
1796
+ msgstr ""
1797
+
1798
+ #: options/options-layouts/settings-show-hide.php:158
1799
+ msgid "After Content"
1800
+ msgstr ""
1801
+
1802
+ #: options/options-layouts/settings-social.php:50
1803
+ #: options/options-layouts/settings-social.php:61
1804
+ #: options/options-layouts/settings-social.php:72
1805
+ #: options/options-layouts/settings-social.php:83
1806
+ msgid "Activate"
1807
+ msgstr ""
1808
+
1809
+ #: options/options-layouts/settings-social.php:54
1810
+ #: options/options-layouts/settings-social.php:65
1811
+ #: options/options-layouts/settings-social.php:76
1812
+ #: options/options-layouts/settings-social.php:87
1813
+ msgid "View details/Install"
1814
+ msgstr ""
1815
+
1816
+ #: options/options-layouts/settings-social.php:125
1817
+ msgid ""
1818
+ "You can use one of these most popular Social Login Plugins to allow your "
1819
+ "visitors login and comment with Facebook, Twitter, Google+, Wordpress, VK, "
1820
+ "OK and lots of other social network service accounts. All social login "
1821
+ "buttons will be fully integrated with wpDiscuz comment forms."
1822
+ msgstr ""
1823
+
1824
+ #: options/options-layouts/settings-style.php:7
1825
+ msgid "Background and Colors"
1826
+ msgstr ""
1827
+
1828
+ #: options/options-layouts/settings-style.php:12
1829
+ msgid "Comment Form Background Color"
1830
+ msgstr ""
1831
+
1832
+ #: options/options-layouts/settings-style.php:16
1833
+ #: options/options-layouts/settings-style.php:25
1834
+ #: options/options-layouts/settings-style.php:34
1835
+ #: options/options-layouts/settings-style.php:43
1836
+ #: options/options-layouts/settings-style.php:70
1837
+ #: options/options-layouts/settings-style.php:79
1838
+ #: options/options-layouts/settings-style.php:88
1839
+ #: options/options-layouts/settings-style.php:98
1840
+ #: options/options-layouts/settings-style.php:107
1841
+ #: options/options-layouts/settings-style.php:116
1842
+ #: options/options-layouts/settings-style.php:130
1843
+ msgid "Example: #00FF00"
1844
+ msgstr ""
1845
+
1846
+ #: options/options-layouts/settings-style.php:21
1847
+ msgid "Comment Background Color"
1848
+ msgstr ""
1849
+
1850
+ #: options/options-layouts/settings-style.php:30
1851
+ msgid "Reply Background Color"
1852
+ msgstr ""
1853
+
1854
+ #: options/options-layouts/settings-style.php:39
1855
+ msgid "Comment Text Color"
1856
+ msgstr ""
1857
+
1858
+ #: options/options-layouts/settings-style.php:48
1859
+ msgid "Button Color"
1860
+ msgstr ""
1861
+
1862
+ #: options/options-layouts/settings-style.php:53
1863
+ msgid "Share Buttons"
1864
+ msgstr ""
1865
+
1866
+ #: options/options-layouts/settings-style.php:54
1867
+ #: options/options-layouts/settings-style.php:57
1868
+ #: options/options-layouts/settings-style.php:60
1869
+ msgid "Text Color"
1870
+ msgstr ""
1871
+
1872
+ #: options/options-layouts/settings-style.php:55
1873
+ #: options/options-layouts/settings-style.php:58
1874
+ #: options/options-layouts/settings-style.php:61
1875
+ msgid "Border Color"
1876
+ msgstr ""
1877
+
1878
+ #: options/options-layouts/settings-style.php:56
1879
+ msgid "Vote Buttons"
1880
+ msgstr ""
1881
+
1882
+ #: options/options-layouts/settings-style.php:59
1883
+ msgid "Action Buttons"
1884
+ msgstr ""
1885
+
1886
+ #: options/options-layouts/settings-style.php:66
1887
+ msgid "Comment form fields border color"
1888
+ msgstr ""
1889
+
1890
+ #: options/options-layouts/settings-style.php:75
1891
+ msgid "New loaded comments' background color"
1892
+ msgstr ""
1893
+
1894
+ #: options/options-layouts/settings-style.php:84
1895
+ msgid "Primary Color"
1896
+ msgstr ""
1897
+
1898
+ #: options/options-layouts/settings-style.php:94
1899
+ msgid "Rating Stars Hover Color"
1900
+ msgstr ""
1901
+
1902
+ #: options/options-layouts/settings-style.php:103
1903
+ msgid "Rating Stars Inactiv Color"
1904
+ msgstr ""
1905
+
1906
+ #: options/options-layouts/settings-style.php:112
1907
+ msgid "Rating Stars Activ Color"
1908
+ msgstr ""
1909
+
1910
+ #: options/options-layouts/settings-style.php:127
1911
+ msgid "label color"
1912
+ msgstr ""
1913
+
1914
+ #: options/options-layouts/settings-style.php:138
1915
+ msgid "Disable font awesome css loading"
1916
+ msgstr ""
1917
+
1918
+ #: options/options-layouts/settings-style.php:146
1919
+ msgid "Custom CSS Code"
1920
+ msgstr ""
1921
+
1922
+ #: options/options-layouts/settings-subscription.php:7
1923
+ msgid "Email Subscription Settings"
1924
+ msgstr ""
1925
+
1926
+ #: options/options-layouts/settings-subscription.php:11
1927
+ msgid "Disable subscription confirmation for registered users"
1928
+ msgstr ""
1929
+
1930
+ #: options/options-layouts/settings-subscription.php:15
1931
+ msgid "Disable subscription confirmation for guests"
1932
+ msgstr ""
1933
+
1934
+ #: options/options-layouts/settings-subscription.php:19
1935
+ msgid "Show subscription types in dropdown"
1936
+ msgstr ""
1937
+
1938
+ #: options/options-layouts/settings-subscription.php:23
1939
+ msgid "Both"
1940
+ msgstr ""
1941
+
1942
+ #: options/options-layouts/settings-subscription.php:25
1943
+ msgid "Both post and all comments subscription"
1944
+ msgstr ""
1945
+
1946
+ #: options/options-layouts/settings-subscription.php:29
1947
+ msgid "Post subscription"
1948
+ msgstr ""
1949
+
1950
+ #: options/options-layouts/settings-subscription.php:33
1951
+ msgid "All comments subscription"
1952
+ msgstr ""
1953
+
1954
+ #: options/options-layouts/settings-subscription.php:40
1955
+ msgid "Show \"Notify of new replies to this comment\""
1956
+ msgstr ""
1957
+
1958
+ #: options/options-layouts/settings-subscription.php:42
1959
+ msgid ""
1960
+ "wpDiscuz is the only comment plugin which allows you to subscribe to certain "
1961
+ "comment replies. This option is located above [Post Comment] button in "
1962
+ "comment form. You can disable this subscription way by unchecking this "
1963
+ "option."
1964
+ msgstr ""
1965
+
1966
+ #: options/options-layouts/settings-subscription.php:49
1967
+ msgid "\"Notify of new replies to this comment\" checked by default"
1968
+ msgstr ""
1969
+
1970
+ #: options/options-layouts/settings-subscription.php:56
1971
+ msgid "Use Postmatic for subscriptions and commenting by email"
1972
+ msgstr ""
1973
+
1974
+ #: options/options-layouts/settings-subscription.php:57
1975
+ msgid ""
1976
+ "Postmatic allows your users subscribe to comments. Instead of just being "
1977
+ "notified, they add a reply right from their inbox."
1978
+ msgstr ""
1979
+
1980
+ #: options/phrases-layouts/phrases-comment.php:7
1981
+ msgid "Comment Template Phrases"
1982
+ msgstr ""
1983
+
1984
+ #: options/phrases-layouts/phrases-comment.php:158
1985
+ msgid "Save edited comment button text"
1986
+ msgstr ""
1987
+
1988
+ #: options/phrases-layouts/phrases-comment.php:168
1989
+ msgid "Cancel comment editing button text"
1990
+ msgstr ""
1991
+
1992
+ #: options/phrases-layouts/phrases-comment.php:178
1993
+ msgid "Comment read more link text"
1994
+ msgstr ""
1995
+
1996
+ #: options/phrases-layouts/phrases-comment.php:188
1997
+ msgid "Anonymous commenter name"
1998
+ msgstr ""
1999
+
2000
+ #: options/phrases-layouts/phrases-datetime.php:7
2001
+ msgid "Date/Time Phrases"
2002
+ msgstr ""
2003
+
2004
+ #: options/phrases-layouts/phrases-datetime.php:12
2005
+ msgid "Year"
2006
+ msgstr ""
2007
+
2008
+ #: options/phrases-layouts/phrases-datetime.php:22
2009
+ msgid "Years (Plural Form)"
2010
+ msgstr ""
2011
+
2012
+ #: options/phrases-layouts/phrases-datetime.php:26
2013
+ msgid "Years"
2014
+ msgstr ""
2015
+
2016
+ #: options/phrases-layouts/phrases-datetime.php:32
2017
+ msgid "Month"
2018
+ msgstr ""
2019
+
2020
+ #: options/phrases-layouts/phrases-datetime.php:42
2021
+ msgid "Months (Plural Form)"
2022
+ msgstr ""
2023
+
2024
+ #: options/phrases-layouts/phrases-datetime.php:52
2025
+ msgid "Day"
2026
+ msgstr ""
2027
+
2028
+ #: options/phrases-layouts/phrases-datetime.php:62
2029
+ msgid "Days (Plural Form)"
2030
+ msgstr ""
2031
+
2032
+ #: options/phrases-layouts/phrases-datetime.php:82
2033
+ msgid "Hours (Plural Form)"
2034
+ msgstr ""
2035
+
2036
+ #: options/phrases-layouts/phrases-datetime.php:102
2037
+ msgid "Minutes (Plural Form)"
2038
+ msgstr ""
2039
+
2040
+ #: options/phrases-layouts/phrases-datetime.php:112
2041
+ msgid "Second"
2042
+ msgstr ""
2043
+
2044
+ #: options/phrases-layouts/phrases-datetime.php:122
2045
+ msgid "Seconds (Plural Form)"
2046
+ msgstr ""
2047
+
2048
+ #: options/phrases-layouts/phrases-datetime.php:132
2049
+ msgid "Commented \"right now\" text"
2050
+ msgstr ""
2051
+
2052
+ #: options/phrases-layouts/phrases-datetime.php:142
2053
+ msgid "Ago text"
2054
+ msgstr ""
2055
+
2056
+ #: options/phrases-layouts/phrases-datetime.php:152
2057
+ msgid "\"Today\" text"
2058
+ msgstr ""
2059
+
2060
+ #: options/phrases-layouts/phrases-email.php:7
2061
+ msgid "Email Template Phrases"
2062
+ msgstr ""
2063
+
2064
+ #: options/phrases-layouts/phrases-email.php:12
2065
+ msgid "Email Subject"
2066
+ msgstr ""
2067
+
2068
+ #: options/phrases-layouts/phrases-email.php:22
2069
+ msgid "Email Message"
2070
+ msgstr ""
2071
+
2072
+ #: options/phrases-layouts/phrases-email.php:32
2073
+ msgid "New Reply Subject"
2074
+ msgstr ""
2075
+
2076
+ #: options/phrases-layouts/phrases-email.php:42
2077
+ msgid "New Reply Message"
2078
+ msgstr ""
2079
+
2080
+ #: options/phrases-layouts/phrases-email.php:62
2081
+ #: options/phrases-layouts/phrases-email.php:66
2082
+ msgid "Ignore Subscription"
2083
+ msgstr ""
2084
+
2085
+ #: options/phrases-layouts/phrases-email.php:92
2086
+ msgid "Subscribe Confirmation Email Subject"
2087
+ msgstr ""
2088
+
2089
+ #: options/phrases-layouts/phrases-email.php:102
2090
+ msgid "Subscribe Confirmation Email Content"
2091
+ msgstr ""
2092
+
2093
+ #: options/phrases-layouts/phrases-form.php:7
2094
+ msgid "Form Template Phrases"
2095
+ msgstr ""
2096
+
2097
+ #: options/phrases-layouts/phrases-form.php:12
2098
+ msgid "Comment Field Start"
2099
+ msgstr ""
2100
+
2101
+ #: options/phrases-layouts/phrases-form.php:22
2102
+ msgid "Comment Field Join"
2103
+ msgstr ""
2104
+
2105
+ #: options/phrases-layouts/phrases-form.php:32
2106
+ msgid "Email Field"
2107
+ msgstr ""
2108
+
2109
+ #: options/phrases-layouts/phrases-form.php:52
2110
+ msgid "Notify on new comments"
2111
+ msgstr ""
2112
+
2113
+ #: options/phrases-layouts/phrases-form.php:62
2114
+ msgid "Notify on all new replies"
2115
+ msgstr ""
2116
+
2117
+ #: options/phrases-layouts/phrases-form.php:66
2118
+ msgid "new replies to all my comments"
2119
+ msgstr ""
2120
+
2121
+ #: options/phrases-layouts/phrases-form.php:72
2122
+ msgid "Notify on new replies (checkbox)"
2123
+ msgstr ""
2124
+
2125
+ #: options/phrases-layouts/phrases-form.php:122
2126
+ msgid "Subscribed on this comment replies"
2127
+ msgstr ""
2128
+
2129
+ #: options/phrases-layouts/phrases-form.php:132
2130
+ msgid "Subscribed on all your comments replies"
2131
+ msgstr ""
2132
+
2133
+ #: options/phrases-layouts/phrases-form.php:142
2134
+ msgid "Subscribed on this post"
2135
+ msgstr ""
2136
+
2137
+ #: options/phrases-layouts/phrases-general.php:7
2138
+ msgid "General Phrases"
2139
+ msgstr ""
2140
+
2141
+ #: options/phrases-layouts/phrases-general.php:12
2142
+ msgid "Be the first to comment"
2143
+ msgstr ""
2144
+
2145
+ #: options/phrases-layouts/phrases-general.php:32
2146
+ msgid "Comment (Plural Form)"
2147
+ msgstr ""
2148
+
2149
+ #: options/phrases-layouts/phrases-general.php:42
2150
+ msgid "On"
2151
+ msgstr ""
2152
+
2153
+ #: options/phrases-layouts/phrases-general.php:52
2154
+ msgid "Load More Button"
2155
+ msgstr ""
2156
+
2157
+ #: options/phrases-layouts/phrases-general.php:72
2158
+ msgid "Button text if has new comment"
2159
+ msgstr ""
2160
+
2161
+ #: options/phrases-layouts/phrases-general.php:82
2162
+ msgid "Button text if has new comments (Plural Form)"
2163
+ msgstr ""
2164
+
2165
+ #: options/phrases-layouts/phrases-general.php:86
2166
+ msgid "New Comments"
2167
+ msgstr ""
2168
+
2169
+ #: options/phrases-layouts/phrases-general.php:92
2170
+ msgid "Button text if has new reply"
2171
+ msgstr ""
2172
+
2173
+ #: options/phrases-layouts/phrases-general.php:102
2174
+ msgid "Button text if has new replies (Plural Form)"
2175
+ msgstr ""
2176
+
2177
+ #: options/phrases-layouts/phrases-general.php:106
2178
+ msgid "New Replies"
2179
+ msgstr ""
2180
+
2181
+ #: options/phrases-layouts/phrases-general.php:112
2182
+ msgid "Text on load more button if has new comment(s)"
2183
+ msgstr ""
2184
+
2185
+ #: options/phrases-layouts/phrases-notification.php:7
2186
+ msgid "Notification Phrases"
2187
+ msgstr ""
2188
+
2189
+ #: options/phrases-layouts/phrases-notification.php:12
2190
+ msgid "You\\'re subscribed to"
2191
+ msgstr ""
2192
+
2193
+ #: options/phrases-layouts/phrases-notification.php:43
2194
+ msgid "Postmatic subscription label"
2195
+ msgstr ""
2196
+
2197
+ #: options/phrases-layouts/phrases-notification.php:54
2198
+ msgid "Error message for empty field"
2199
+ msgstr ""
2200
+
2201
+ #: options/phrases-layouts/phrases-notification.php:64
2202
+ msgid "Error message for invalid email field"
2203
+ msgstr ""
2204
+
2205
+ #: options/phrases-layouts/phrases-notification.php:74
2206
+ msgid "Error message for invalid website url field"
2207
+ msgstr ""
2208
+
2209
+ #: options/phrases-layouts/phrases-notification.php:94
2210
+ msgid "Logged in as"
2211
+ msgstr ""
2212
+
2213
+ #: options/phrases-layouts/phrases-notification.php:114
2214
+ msgid "Logged In"
2215
+ msgstr ""
2216
+
2217
+ #: options/phrases-layouts/phrases-notification.php:124
2218
+ msgid "To post a comment"
2219
+ msgstr ""
2220
+
2221
+ #: options/phrases-layouts/phrases-notification.php:144
2222
+ msgid "You can vote only 1 time"
2223
+ msgstr ""
2224
+
2225
+ #: options/phrases-layouts/phrases-notification.php:164
2226
+ msgid "Login To Vote"
2227
+ msgstr ""
2228
+
2229
+ #: options/phrases-layouts/phrases-notification.php:174
2230
+ msgid "You Cannot Vote On Your Comment"
2231
+ msgstr ""
2232
+
2233
+ #: options/phrases-layouts/phrases-notification.php:184
2234
+ msgid "You are not allowed to vote for this comment (Voting from same IP)"
2235
+ msgstr ""
2236
+
2237
+ #: options/phrases-layouts/phrases-notification.php:214
2238
+ msgid "Comment waiting moderation"
2239
+ msgstr ""
2240
+
2241
+ #: options/phrases-layouts/phrases-notification.php:224
2242
+ msgid "Message if input text length is too short"
2243
+ msgstr ""
2244
+
2245
+ #: options/phrases-layouts/phrases-notification.php:234
2246
+ msgid "Message if input text length is too long"
2247
+ msgstr ""
2248
+
2249
+ #: options/phrases-layouts/phrases-notification.php:245
2250
+ msgid "Message if comment was not updated"
2251
+ msgstr ""
2252
+
2253
+ #: options/phrases-layouts/phrases-notification.php:255
2254
+ msgid "Message if comment no longer possible to edit"
2255
+ msgstr ""
2256
+
2257
+ #: options/phrases-layouts/phrases-notification.php:265
2258
+ msgid "Message if comment text not changed"
2259
+ msgstr ""
2260
+
2261
+ #: options/phrases-layouts/phrases-notification.php:269
2262
+ msgid "TYou've not made any changes"
2263
+ msgstr ""
2264
+
2265
+ #: options/tools-layouts/options-export.php:10
2266
+ msgid ""
2267
+ "You can transfer the saved options data between different installs by "
2268
+ "copying the text inside this textarea. To import data from another install, "
2269
+ "navigate to \"Import Options\" Tab and put the data in textarea with the one "
2270
+ "from another install and click \"Save Changes\". Make sure you use the same "
2271
+ "wpDiscuz versions."
2272
+ msgstr ""
2273
+
2274
+ #: options/tools-layouts/options-import.php:9
2275
+ msgid ""
2276
+ "You can transfer the saved options data between different installs by "
2277
+ "copying the text inside this textarea in \"Export Options\" Tab. To import "
2278
+ "data from another install, just put the data in textarea with the one from "
2279
+ "another install and click \"Save Changes\". Make sure you use the same "
2280
+ "wpDiscuz versions."
2281
+ msgstr ""
2282
+
2283
+ #: templates/comment/comment-form.php:73
2284
+ msgid "Unable to send an email"
2285
+ msgstr ""
2286
+
2287
+ #: templates/comment/comment-form.php:75
2288
+ msgid "Subscription not successed"
2289
+ msgstr ""
2290
+
2291
+ #: templates/comment/comment-form.php:296
2292
+ msgid "wpDiscuz"
2293
+ msgstr ""
2294
+
2295
+ #: utils/class.WpdiscuzHelper.php:356 utils/class.WpdiscuzHelper.php:359
2296
+ msgid "Spoiler"
2297
+ msgstr ""
2298
+
2299
+ #. Plugin Name of the plugin/theme
2300
+ msgid "Comments - wpDiscuz"
2301
+ msgstr ""
2302
+
2303
+ #. Plugin URI of the plugin/theme
2304
+ msgid "http://wpdiscuz.com/"
2305
+ msgstr ""
2306
+
2307
+ #. Description of the plugin/theme
2308
+ msgid ""
2309
+ "Better comment system. Wordpress post comments and discussion plugin. Allows "
2310
+ "your visitors discuss, vote for comments and share."
2311
+ msgstr ""
2312
+
2313
+ #. Author of the plugin/theme
2314
+ msgid "gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
2315
+ msgstr ""
2316
+
2317
+ #. Author URI of the plugin/theme
2318
+ msgid "http://gvectors.com/"
2319
+ msgstr ""
manager/class.WpdiscuzDBManager.php CHANGED
@@ -202,7 +202,7 @@ class WpdiscuzDBManager {
202
  if ($args['status'] != 'all') {
203
  $approved = " AND `comment_approved` = 1 ";
204
  }
205
- $sqlCommentIds = $this->db->prepare("SELECT `comment_ID` FROM `" . $this->dbprefix . "comments` WHERE `comment_post_ID` = %d AND `comment_ID` > %d AND `comment_author_email` != %s ".$approved." ORDER BY `comment_date_gmt` ASC;", $args['post_id'], $loadLastCommentId, $email);
206
  return $this->db->get_col($sqlCommentIds);
207
  }
208
 
@@ -409,7 +409,7 @@ class WpdiscuzDBManager {
409
  }
410
 
411
  /**
412
- * delete comment thread subscribtions if new subscribtion type is post
413
  */
414
  public function deleteCommentNotifications($post_id, $email) {
415
  $sql_delete_comment_notifications = $this->db->prepare("DELETE FROM `" . $this->emailNotification . "` WHERE `subscribtion_type` != %s AND `post_id` = %d AND `email` LIKE %s;", WpdiscuzCore::SUBSCRIPTION_POST, $post_id, $email);
@@ -432,17 +432,15 @@ class WpdiscuzDBManager {
432
  /**
433
  * generate confirm link
434
  */
435
- public function confirmLink($postID, $email) {
436
- global $wp_rewrite;
437
- $sql_subscriber_data = $this->db->prepare("SELECT `id`, `activation_key` FROM `" . $this->emailNotification . "` WHERE `post_id` = %d AND `email` LIKE %s ", $postID, $email);
438
- $wc_confirm = $this->db->get_row($sql_subscriber_data, ARRAY_A);
439
  $wc_confirm_link = !$wp_rewrite->using_permalinks() ? get_permalink($postID) . "&" : get_permalink($postID) . "?";
440
- $wc_confirm_link .= "subscribeAnchor&wpdiscuzConfirmID=" . $wc_confirm['id'] . "&wpdiscuzConfirmKey=" . $wc_confirm['activation_key'] . '&wpDiscuzComfirm=yes&#wc_unsubscribe_message';
441
  return $wc_confirm_link;
442
  }
443
 
444
  /**
445
- * Confirm post or comment subscribtion
446
  */
447
  public function notificationConfirm($subscribe_id, $key) {
448
  $sql_confirm = $this->db->prepare("UPDATE `" . $this->emailNotification . "` SET `confirm` = 1 WHERE `id` = %d AND `activation_key` LIKE %s;", $subscribe_id, $key);
@@ -450,7 +448,7 @@ class WpdiscuzDBManager {
450
  }
451
 
452
  /**
453
- * delete subscribtion
454
  */
455
  public function unsubscribe($id, $activation_key) {
456
  $sql_unsubscribe = $this->db->prepare("DELETE FROM `" . $this->emailNotification . "` WHERE `id` = %d AND `activation_key` LIKE %s", $id, $activation_key);
202
  if ($args['status'] != 'all') {
203
  $approved = " AND `comment_approved` = 1 ";
204
  }
205
+ $sqlCommentIds = $this->db->prepare("SELECT `comment_ID` FROM `" . $this->dbprefix . "comments` WHERE `comment_post_ID` = %d AND `comment_ID` > %d AND `comment_author_email` != %s " . $approved . " ORDER BY `comment_date_gmt` ASC;", $args['post_id'], $loadLastCommentId, $email);
206
  return $this->db->get_col($sqlCommentIds);
207
  }
208
 
409
  }
410
 
411
  /**
412
+ * delete comment thread subscriptions if new subscription type is post
413
  */
414
  public function deleteCommentNotifications($post_id, $email) {
415
  $sql_delete_comment_notifications = $this->db->prepare("DELETE FROM `" . $this->emailNotification . "` WHERE `subscribtion_type` != %s AND `post_id` = %d AND `email` LIKE %s;", WpdiscuzCore::SUBSCRIPTION_POST, $post_id, $email);
432
  /**
433
  * generate confirm link
434
  */
435
+ public function confirmLink($id, $activationKey, $postID) {
436
+ global $wp_rewrite;
 
 
437
  $wc_confirm_link = !$wp_rewrite->using_permalinks() ? get_permalink($postID) . "&" : get_permalink($postID) . "?";
438
+ $wc_confirm_link .= "subscribeAnchor&wpdiscuzConfirmID=$id&wpdiscuzConfirmKey=$activationKey&wpDiscuzComfirm=yes&#wc_unsubscribe_message";
439
  return $wc_confirm_link;
440
  }
441
 
442
  /**
443
+ * Confirm post or comment subscription
444
  */
445
  public function notificationConfirm($subscribe_id, $key) {
446
  $sql_confirm = $this->db->prepare("UPDATE `" . $this->emailNotification . "` SET `confirm` = 1 WHERE `id` = %d AND `activation_key` LIKE %s;", $subscribe_id, $key);
448
  }
449
 
450
  /**
451
+ * delete subscription
452
  */
453
  public function unsubscribe($id, $activation_key) {
454
  $sql_unsubscribe = $this->db->prepare("DELETE FROM `" . $this->emailNotification . "` WHERE `id` = %d AND `activation_key` LIKE %s", $id, $activation_key);
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
- === Wordpress Comments Plugin - wpDiscuz ===
2
  Contributors: gVectors Team
3
  Tags: wordpress comments, ajax comments, ajax, custom form, custom fields, live update, live comments, realtime chat, chat, realtime commenting, Lazy load, Lazy load comments, mobile commenting, post comments, advanced comment, comments box, community, discussion, discuss, disqus, discuz, Disqus alternative, Livefyre alternative, Jetpack comments alternative, Facebook comments alternative, comment form, commenting, reply, comments, better comments, discussions, comment notifications, comment template, activity, comment author, comment system, redirect, comment redirect, first commenter, email commenting, social login, boost comments, native comments
4
  Requires at least: 3.8.0
5
  Tested up to: 4.8
6
- Stable tag: 4.0.8
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -140,20 +140,29 @@ Support Forum: https://gvectors.com/forum/
140
 
141
  == Changelog ==
142
 
143
- = 4.0.8 =
144
 
145
- * Changed: Keep displaying comments under moderation for comment author (doesn't hide after refreshing page)
146
- * Fixed Bug: Comment editing issue when wpDiscuz Comment Search addon is activated
147
- * Fixed Bug: Undefined variable notice in comment form
148
- * Wordpress 4.8 compatibility
149
 
150
 
151
  IMPORTANT:
152
 
153
  - If you have JetPack installed please deactivate Jetpack comments, it affects wpDiscuz
154
  - If you have a Cache Plugin, please delete all caches after wpDiscuz update.
155
- - If you use CDN and found some issue please purge it.
156
- - If your server PHP version is lower than 5.4, [please change it to higher](https://wordpress.org/support/topic/wpdiscuz-4-requires-php-5-4-and-higher/)
 
 
 
 
 
 
 
 
 
157
 
158
  = 4.0.7 =
159
 
1
+ === WordPress Comments Plugin - wpDiscuz ===
2
  Contributors: gVectors Team
3
  Tags: wordpress comments, ajax comments, ajax, custom form, custom fields, live update, live comments, realtime chat, chat, realtime commenting, Lazy load, Lazy load comments, mobile commenting, post comments, advanced comment, comments box, community, discussion, discuss, disqus, discuz, Disqus alternative, Livefyre alternative, Jetpack comments alternative, Facebook comments alternative, comment form, commenting, reply, comments, better comments, discussions, comment notifications, comment template, activity, comment author, comment system, redirect, comment redirect, first commenter, email commenting, social login, boost comments, native comments
4
  Requires at least: 3.8.0
5
  Tested up to: 4.8
6
+ Stable tag: 4.0.9
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
140
 
141
  == Changelog ==
142
 
143
+ = 4.0.9 =
144
 
145
+ * Fixed Bug: Subscription doesn't work when replying from dashboard
146
+ * Fixed Bug: Wrong subscription confirmation link on second comment subscription
147
+ * Fixed Bug: Comments sorting problem if comment sorting type is set "older".
148
+ * Fixed Bug: Design issue with phrase tabs.
149
 
150
 
151
  IMPORTANT:
152
 
153
  - If you have JetPack installed please deactivate Jetpack comments, it affects wpDiscuz
154
  - If you have a Cache Plugin, please delete all caches after wpDiscuz update.
155
+ - If you use CDN and found some issue please purge it.
156
+ - 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/)
157
+
158
+
159
+ = 4.0.8 =
160
+
161
+ * Changed: Keep displaying comments under moderation for comment author (doesn't hide after refreshing page)
162
+ * Fixed Bug: Comment editing issue when wpDiscuz Comment Search addon is activated
163
+ * Fixed Bug: Undefined variable notice in comment form
164
+ * Wordpress 4.8 compatibility
165
+
166
 
167
  = 4.0.7 =
168
 
templates/comment/class.WpdiscuzWalker.php CHANGED
@@ -102,11 +102,7 @@ class WpdiscuzWalker extends Walker_Comment {
102
  if ($this->optionsSerialized->simpleCommentDate) {
103
  $dateFormat = $this->optionsSerialized->wordpressDateFormat;
104
  $timeFormat = $this->optionsSerialized->wordpressTimeFormat;
105
- if (wpdiscuzHelper::isPostedToday($comment)) {
106
- $posted_date = $this->optionsSerialized->phrases['wc_posted_today_text'] . ' ' . mysql2date($timeFormat, $comment->comment_date);
107
- } else {
108
- $posted_date = get_comment_date($dateFormat . ' ' . $timeFormat, $comment->comment_ID);
109
- }
110
  } else {
111
  $posted_date = $this->helper->dateDiff(time(), strtotime($comment->comment_date_gmt), 2);
112
  }
102
  if ($this->optionsSerialized->simpleCommentDate) {
103
  $dateFormat = $this->optionsSerialized->wordpressDateFormat;
104
  $timeFormat = $this->optionsSerialized->wordpressTimeFormat;
105
+ $posted_date = get_comment_date($dateFormat . ' ' . $timeFormat, $comment->comment_ID);
 
 
 
 
106
  } else {
107
  $posted_date = $this->helper->dateDiff(time(), strtotime($comment->comment_date_gmt), 2);
108
  }
templates/comment/comment-form.php CHANGED
@@ -19,6 +19,7 @@ if (!function_exists('wpdiscuz_close_divs')) {
19
  }
20
  return $html;
21
  }
 
22
  }
23
 
24
  $current_user = wp_get_current_user();
@@ -100,7 +101,7 @@ if (!post_password_required($post->ID)) {
100
  $form = $wpdiscuz->wpdiscuzForm->getForm($post->ID);
101
  $formCustomCss = $form->getCustomCSS();
102
  if ($formCustomCss) {
103
- echo '<style type="text/css">'. $formCustomCss . '</style>';
104
  }
105
  ?>
106
  <h3 id="wc-comment-header"><?php echo $form->getHeaderText(); ?></h3>
@@ -200,11 +201,7 @@ if (!post_password_required($post->ID)) {
200
  $wpdiscuz->wpdiscuzForm->renderFrontForm($commentsCount, $current_user);
201
  do_action('comment_form_after');
202
  do_action('wpdiscuz_comment_form_after', $post, $current_user, $commentsCount);
203
- ?>
204
-
205
-
206
- <?php } else { ?>
207
- <?php
208
  if ($commentsCount > 0) {
209
  $wpdiscuz->helper->superSocializerFix();
210
  } else {
@@ -283,8 +280,7 @@ if (!post_password_required($post->ID)) {
283
  <?php if ($commentsCount) { ?>
284
  <?php if ($wpdiscuz->optionsSerialized->showPluginPoweredByLink) { ?>
285
  <div class="by-wpdiscuz">
286
- <span id="awpdiscuz" onclick='javascript:document.getElementById("bywpdiscuz").style.display = "inline";
287
- document.getElementById("awpdiscuz").style.display = "none";'>
288
  <img alt="wpdiscuz" src="<?php echo plugins_url(WPDISCUZ_DIR_NAME . '/assets/img/plugin-icon/icon_info.png'); ?>" align="absmiddle" class="wpdimg"/>
289
  </span>&nbsp;
290
  <a href="http://wpdiscuz.com/" target="_blank" id="bywpdiscuz" title="wpDiscuz v<?php echo get_option(WpdiscuzCore::OPTION_SLUG_VERSION); ?> - Supercharged native comments">wpDiscuz</a>
@@ -295,5 +291,4 @@ if (!post_password_required($post->ID)) {
295
  </div>
296
  <div class="wpdiscuz-loading-bar <?php echo ($current_user->ID) ? 'wpdiscuz-loading-bar-auth' : 'wpdiscuz-loading-bar-unauth'; ?>"><img class="wpdiscuz-loading-bar-img" alt="<?php _e('wpDiscuz', 'wpdiscuz'); ?>" src="<?php echo plugins_url(WPDISCUZ_DIR_NAME . '/assets/img/loading.gif'); ?>" width="32" height="25" /></div>
297
  <?php
298
- }
299
- ?>
19
  }
20
  return $html;
21
  }
22
+
23
  }
24
 
25
  $current_user = wp_get_current_user();
101
  $form = $wpdiscuz->wpdiscuzForm->getForm($post->ID);
102
  $formCustomCss = $form->getCustomCSS();
103
  if ($formCustomCss) {
104
+ echo '<style type="text/css">' . $formCustomCss . '</style>';
105
  }
106
  ?>
107
  <h3 id="wc-comment-header"><?php echo $form->getHeaderText(); ?></h3>
201
  $wpdiscuz->wpdiscuzForm->renderFrontForm($commentsCount, $current_user);
202
  do_action('comment_form_after');
203
  do_action('wpdiscuz_comment_form_after', $post, $current_user, $commentsCount);
204
+ } else {
 
 
 
 
205
  if ($commentsCount > 0) {
206
  $wpdiscuz->helper->superSocializerFix();
207
  } else {
280
  <?php if ($commentsCount) { ?>
281
  <?php if ($wpdiscuz->optionsSerialized->showPluginPoweredByLink) { ?>
282
  <div class="by-wpdiscuz">
283
+ <span id="awpdiscuz" onclick='javascript:document.getElementById("bywpdiscuz").style.display = "inline";document.getElementById("awpdiscuz").style.display = "none";'>
 
284
  <img alt="wpdiscuz" src="<?php echo plugins_url(WPDISCUZ_DIR_NAME . '/assets/img/plugin-icon/icon_info.png'); ?>" align="absmiddle" class="wpdimg"/>
285
  </span>&nbsp;
286
  <a href="http://wpdiscuz.com/" target="_blank" id="bywpdiscuz" title="wpDiscuz v<?php echo get_option(WpdiscuzCore::OPTION_SLUG_VERSION); ?> - Supercharged native comments">wpDiscuz</a>
291
  </div>
292
  <div class="wpdiscuz-loading-bar <?php echo ($current_user->ID) ? 'wpdiscuz-loading-bar-auth' : 'wpdiscuz-loading-bar-unauth'; ?>"><img class="wpdiscuz-loading-bar-img" alt="<?php _e('wpDiscuz', 'wpdiscuz'); ?>" src="<?php echo plugins_url(WPDISCUZ_DIR_NAME . '/assets/img/loading.gif'); ?>" width="32" height="25" /></div>
293
  <?php
294
+ }
 
utils/class.WpdiscuzEmailHelper.php CHANGED
@@ -35,7 +35,7 @@ class WpdiscuzEmailHelper {
35
  } else {
36
  $confirmData = $this->dbManager->addEmailNotification($postId, $postId, $email, $subscriptionType, 0);
37
  if ($confirmData) {
38
- $success = $this->confirmEmailSender($postId, $email) ? 1 : -1;
39
  if ($success < 0) {
40
  $this->dbManager->unsubscribe($confirmData['id'], $confirmData['activation_key']);
41
  }
@@ -47,10 +47,10 @@ class WpdiscuzEmailHelper {
47
  exit();
48
  }
49
 
50
- public function confirmEmailSender($postId, $email) {
51
  $subject = isset($this->optionsSerialized->phrases['wc_confirm_email_subject']) ? $this->optionsSerialized->phrases['wc_confirm_email_subject'] : __('Subscribe Confirmation', 'wpdiscuz');
52
  $message = isset($this->optionsSerialized->phrases['wc_confirm_email_message']) ? $this->optionsSerialized->phrases['wc_confirm_email_message'] : __('Hi, <br/> You just subscribed for new comments on our website. This means you will receive an email when new comments are posted according to subscription option you\'ve chosen. <br/> To activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.', 'wpdiscuz');
53
- $confirm_url = $this->dbManager->confirmLink($postId, $email);
54
  $unsubscribe_url = $this->dbManager->unsubscribeLink($postId, $email);
55
  $post_permalink = get_permalink($postId);
56
  $message .= "<br/><br/><a href='$post_permalink'>$post_permalink</a>";
@@ -181,4 +181,21 @@ class WpdiscuzEmailHelper {
181
  }
182
  }
183
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184
  }
35
  } else {
36
  $confirmData = $this->dbManager->addEmailNotification($postId, $postId, $email, $subscriptionType, 0);
37
  if ($confirmData) {
38
+ $success = $this->confirmEmailSender($confirmData['id'], $confirmData['activation_key'], $postId, $email) ? 1 : -1;
39
  if ($success < 0) {
40
  $this->dbManager->unsubscribe($confirmData['id'], $confirmData['activation_key']);
41
  }
47
  exit();
48
  }
49
 
50
+ public function confirmEmailSender($id, $activationKey, $postId, $email) {
51
  $subject = isset($this->optionsSerialized->phrases['wc_confirm_email_subject']) ? $this->optionsSerialized->phrases['wc_confirm_email_subject'] : __('Subscribe Confirmation', 'wpdiscuz');
52
  $message = isset($this->optionsSerialized->phrases['wc_confirm_email_message']) ? $this->optionsSerialized->phrases['wc_confirm_email_message'] : __('Hi, <br/> You just subscribed for new comments on our website. This means you will receive an email when new comments are posted according to subscription option you\'ve chosen. <br/> To activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.', 'wpdiscuz');
53
+ $confirm_url = $this->dbManager->confirmLink($id, $activationKey, $postId);
54
  $unsubscribe_url = $this->dbManager->unsubscribeLink($postId, $email);
55
  $post_permalink = get_permalink($postId);
56
  $message .= "<br/><br/><a href='$post_permalink'>$post_permalink</a>";
181
  }
182
  }
183
 
184
+ public function notificationFromDashboard($comment_ID, $comment_approved, $commentdata) {
185
+ $referer = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '';
186
+ if ($comment_approved == 1 && $referer && (strpos($referer, 'edit-comments.php') !== false)) {
187
+ $postId = $commentdata['comment_post_ID'];
188
+ $email = $commentdata['comment_author_email'];
189
+ $parentComment = get_comment($commentdata['comment_parent']);
190
+ $this->notifyPostSubscribers($postId, $comment_ID, $email);
191
+ if ($parentComment) {
192
+ $parentCommentEmail = $parentComment->comment_author_email;
193
+ if ($parentCommentEmail != $email) {
194
+ $this->notifyAllCommentSubscribers($postId, $comment_ID, $email);
195
+ $this->notifyCommentSubscribers($parentComment->comment_ID, $comment_ID, $email);
196
+ }
197
+ }
198
+ }
199
+ }
200
+
201
  }
utils/class.WpdiscuzHelper.php CHANGED
@@ -24,15 +24,14 @@ class WpdiscuzHelper {
24
  $this->optionsSerialized = $optionsSerialized;
25
  $this->dbManager = $dbManager;
26
  $this->wpdiscuzForm = $wpdiscuzForm;
27
- add_filter('the_champ_login_interface_filter', array(&$this,'wpDiscuzSuperSocializerLogin'), 15, 2);
28
  }
29
-
30
-
31
- public function filterKses(){
32
  $allowedtags = array();
33
  $allowedtags['br'] = array();
34
  $allowedtags['a'] = array('href' => array(), 'title' => array(), 'target' => array(), 'rel' => array(), 'download' => array(), 'hreflang' => array(), 'media' => array(), 'type' => array());
35
- $allowedtags['i'] = array('class'=>array());
36
  $allowedtags['b'] = array();
37
  $allowedtags['u'] = array();
38
  $allowedtags['strong'] = array();
@@ -53,7 +52,7 @@ class WpdiscuzHelper {
53
  $allowedtags['del'] = array('datetime' => array());
54
  $allowedtags['span'] = array('id' => array(), 'class' => array(), 'title' => array());
55
  $allowedtags['pre'] = array();
56
- return apply_filters('wpdiscuz_allowedtags',$allowedtags);
57
  }
58
 
59
  // Set timezone
@@ -387,33 +386,43 @@ class WpdiscuzHelper {
387
 
388
  public function wpDiscuzSuperSocializerLogin($html, $theChampLoginOptions) {
389
  global $wp_current_filter;
390
- if (in_array('comment_form_top',$wp_current_filter) && isset($theChampLoginOptions['providers']) && is_array($theChampLoginOptions['providers']) && count($theChampLoginOptions['providers']) > 0) {
391
- $html = '<style type="text/css">#wpcomm .wc_social_plugin_wrapper .wp-social-login-connect-with_by_the_champ{float:left;font-size:13px;padding:5px 7px 0 0;text-transform:uppercase}#wpcomm .wc_social_plugin_wrapper ul.wc_social_login_by_the_champ{list-style:none outside none!important;margin:0!important;padding-left:0!important}#wpcomm .wc_social_plugin_wrapper ul.wc_social_login_by_the_champ .theChampLogin{width:24px!important;height:24px!important}#wpcomm .wc-secondary-forms-social-content ul.wc_social_login_by_the_champ{list-style:none outside none!important;margin:0!important;padding-left:0!important}#wpcomm .wc-secondary-forms-social-content ul.wc_social_login_by_the_champ .theChampLogin{width:24px!important;height:24px!important}#wpcomm .wc-secondary-forms-social-content ul.wc_social_login_by_the_champ li{float:right!important}#wpcomm .wc_social_plugin_wrapper .theChampFacebookButton{ display:block!important; }#wpcomm .theChampTwitterButton{background-position:-4px -68px!important}#wpcomm .theChampGoogleButton{background-position:-36px -2px!important}#wpcomm .theChampVkontakteButton{background-position:-35px -67px!important}#wpcomm .theChampLinkedinButton{background-position:-34px -34px!important;}.theChampCommentingTabs #wpcomm li{ margin:0px 1px 10px 0px!important; }</style>';
392
- $html .= '<div class="wp-social-login-widget">';
393
- $html .= '<div class="wp-social-login-connect-with_by_the_champ">' . $this->optionsSerialized->phrases['wc_connect_with'] . ':</div>';
394
- $html .= '<div class="wp-social-login-provider-list">';
395
- $html .= '<ul class="wc_social_login_by_the_champ">';
396
- foreach ($theChampLoginOptions['providers'] as $provider) {
397
- $html .= '<li><i ';
398
- if ($provider == 'google') {
399
- $html .= 'id="theChamp' . ucfirst($provider) . 'Button" ';
400
- }
401
- $html .= 'class="theChampLogin theChamp' . ucfirst($provider) . 'Background theChamp' . ucfirst($provider) . 'Login" ';
402
- $html .= 'alt="Login with ';
 
 
 
 
 
403
  $html .= ucfirst($provider);
404
- $html .= '" title="Login with ';
405
- if ($provider == 'live') {
406
- $html .= 'Windows Live';
407
- } else {
408
- $html .= ucfirst($provider);
409
- }
410
- $html .= '" onclick="theChampCommentFormLogin = true; theChampInitiateLogin(this)" >';
411
- $html .= '<ss style="display:block" class="theChampLoginSvg theChamp' . ucfirst($provider) . 'LoginSvg"></ss></i></li>';
412
  }
413
- $html .= '</ul><div class="wpdiscuz_clear"></div></div></div>';
 
 
 
414
  }
415
  return $html;
416
  }
417
 
 
 
 
 
 
 
 
 
 
 
418
  }
419
 
24
  $this->optionsSerialized = $optionsSerialized;
25
  $this->dbManager = $dbManager;
26
  $this->wpdiscuzForm = $wpdiscuzForm;
27
+ add_filter('the_champ_login_interface_filter', array(&$this, 'wpDiscuzSuperSocializerLogin'), 15, 2);
28
  }
29
+
30
+ public function filterKses() {
 
31
  $allowedtags = array();
32
  $allowedtags['br'] = array();
33
  $allowedtags['a'] = array('href' => array(), 'title' => array(), 'target' => array(), 'rel' => array(), 'download' => array(), 'hreflang' => array(), 'media' => array(), 'type' => array());
34
+ $allowedtags['i'] = array('class' => array());
35
  $allowedtags['b'] = array();
36
  $allowedtags['u'] = array();
37
  $allowedtags['strong'] = array();
52
  $allowedtags['del'] = array('datetime' => array());
53
  $allowedtags['span'] = array('id' => array(), 'class' => array(), 'title' => array());
54
  $allowedtags['pre'] = array();
55
+ return apply_filters('wpdiscuz_allowedtags', $allowedtags);
56
  }
57
 
58
  // Set timezone
386
 
387
  public function wpDiscuzSuperSocializerLogin($html, $theChampLoginOptions) {
388
  global $wp_current_filter;
389
+ if (in_array('comment_form_top', $wp_current_filter) && isset($theChampLoginOptions['providers']) && is_array($theChampLoginOptions['providers']) && count($theChampLoginOptions['providers']) > 0) {
390
+ $html = '<style type="text/css">#wpcomm .wc_social_plugin_wrapper .wp-social-login-connect-with_by_the_champ{float:left;font-size:13px;padding:5px 7px 0 0;text-transform:uppercase}#wpcomm .wc_social_plugin_wrapper ul.wc_social_login_by_the_champ{list-style:none outside none!important;margin:0!important;padding-left:0!important}#wpcomm .wc_social_plugin_wrapper ul.wc_social_login_by_the_champ .theChampLogin{width:24px!important;height:24px!important}#wpcomm .wc-secondary-forms-social-content ul.wc_social_login_by_the_champ{list-style:none outside none!important;margin:0!important;padding-left:0!important}#wpcomm .wc-secondary-forms-social-content ul.wc_social_login_by_the_champ .theChampLogin{width:24px!important;height:24px!important}#wpcomm .wc-secondary-forms-social-content ul.wc_social_login_by_the_champ li{float:right!important}#wpcomm .wc_social_plugin_wrapper .theChampFacebookButton{ display:block!important; }#wpcomm .theChampTwitterButton{background-position:-4px -68px!important}#wpcomm .theChampGoogleButton{background-position:-36px -2px!important}#wpcomm .theChampVkontakteButton{background-position:-35px -67px!important}#wpcomm .theChampLinkedinButton{background-position:-34px -34px!important;}.theChampCommentingTabs #wpcomm li{ margin:0px 1px 10px 0px!important; }</style>';
391
+ $html .= '<div class="wp-social-login-widget">';
392
+ $html .= '<div class="wp-social-login-connect-with_by_the_champ">' . $this->optionsSerialized->phrases['wc_connect_with'] . ':</div>';
393
+ $html .= '<div class="wp-social-login-provider-list">';
394
+ $html .= '<ul class="wc_social_login_by_the_champ">';
395
+ foreach ($theChampLoginOptions['providers'] as $provider) {
396
+ $html .= '<li><i ';
397
+ if ($provider == 'google') {
398
+ $html .= 'id="theChamp' . ucfirst($provider) . 'Button" ';
399
+ }
400
+ $html .= 'class="theChampLogin theChamp' . ucfirst($provider) . 'Background theChamp' . ucfirst($provider) . 'Login" ';
401
+ $html .= 'alt="Login with ';
402
+ $html .= ucfirst($provider);
403
+ $html .= '" title="Login with ';
404
+ if ($provider == 'live') {
405
+ $html .= 'Windows Live';
406
+ } else {
407
  $html .= ucfirst($provider);
 
 
 
 
 
 
 
 
408
  }
409
+ $html .= '" onclick="theChampCommentFormLogin = true; theChampInitiateLogin(this)" >';
410
+ $html .= '<ss style="display:block" class="theChampLoginSvg theChamp' . ucfirst($provider) . 'LoginSvg"></ss></i></li>';
411
+ }
412
+ $html .= '</ul><div class="wpdiscuz_clear"></div></div></div>';
413
  }
414
  return $html;
415
  }
416
 
417
+ public function getAuthorPostsUrl($author_id, $author_nicename = '') {
418
+ $authorURL = '';
419
+ $post_types = apply_filters('wpdiscuz_author_post_types', array('post'));
420
+ if (count_user_posts($author_id, $post_types)) {
421
+ return get_author_posts_url($author_id, $author_nicename);
422
+ }
423
+ $authorURL = apply_filters('author_link', $authorURL, $author_id, $author_nicename);
424
+ return $authorURL;
425
+ }
426
+
427
  }
428