Comments – wpDiscuz - Version 4.0.1

Version Description

  • Fixed Bug: Unable to disable comment author labels
  • Fixed Bug: Twitter share button wrong title
  • Fixed Bug: PHP Fatal error - conflict with WPBruiser no-Captcha anti-Spam plugin
  • Fixed Bug: Missing arguments for this function: "renderAdminCommentMetaHtml()"
Download this release

Release Info

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

Code changes from version 4.0.0 to 4.0.1

class.WpdiscuzCore.php CHANGED
@@ -3,7 +3,7 @@
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.0
7
  * Author: gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)
8
  * Author URI: http://gvectors.com/
9
  * Plugin URI: http://wpdiscuz.com/
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.1
7
  * Author: gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)
8
  * Author URI: http://gvectors.com/
9
  * Plugin URI: http://wpdiscuz.com/
forms/wpDiscuzForm.php CHANGED
@@ -41,7 +41,9 @@ class wpDiscuzForm implements wpdFormConst {
41
  add_filter('comment_save_pre', array(&$this, 'validateMetaCommentSavePre'), 10);
42
  add_action('edit_comment', array(&$this, 'updateCommentMeta'), 10);
43
  add_filter('wpdiscuz_comment_text', array(&$this, 'renderFrontCommentMetaHtml'), 10, 2);
44
- add_filter('get_comment_text', array(&$this, 'renderAdminCommentMetaHtml'), 10, 3);
 
 
45
  add_filter('post_row_actions', array(&$this, 'addCloneFormAction'), 10, 2);
46
  add_filter('admin_post_cloneWpdiscuzForm', array(&$this, 'cloneForm'));
47
  add_filter('the_content', array(&$this->form, 'displayRatingMeta'), 10);
@@ -231,10 +233,7 @@ class wpDiscuzForm implements wpdFormConst {
231
  <?php
232
  }
233
 
234
- public function renderAdminCommentMetaHtml($content, $comment, $args) {
235
- if (!is_admin()) {
236
- return $content;
237
- }
238
  $screen = get_current_screen();
239
  if ($screen->id != 'edit-comments') {
240
  return $content;
@@ -462,7 +461,7 @@ class wpDiscuzForm implements wpdFormConst {
462
  <div class="error" style="padding-top: 5px;padding-bottom: 5px;">
463
  <p>
464
  <?php _e('Comment Form is not detected, please navigate to form manager page to create it. ', 'wpdiscuz'); ?>
465
- <a href="<?php echo admin_url('post-new.php?post_type=' . self::WPDISCUZ_FORMS_CONTENT_TYPE);?>" class="button button-primary"><?php _e('Add Comment Form','wpdiscuz');?></a>
466
  </p>
467
  </div>
468
  <?php
41
  add_filter('comment_save_pre', array(&$this, 'validateMetaCommentSavePre'), 10);
42
  add_action('edit_comment', array(&$this, 'updateCommentMeta'), 10);
43
  add_filter('wpdiscuz_comment_text', array(&$this, 'renderFrontCommentMetaHtml'), 10, 2);
44
+ if (is_admin()) {
45
+ add_filter('get_comment_text', array(&$this, 'renderAdminCommentMetaHtml'), 10, 2);
46
+ }
47
  add_filter('post_row_actions', array(&$this, 'addCloneFormAction'), 10, 2);
48
  add_filter('admin_post_cloneWpdiscuzForm', array(&$this, 'cloneForm'));
49
  add_filter('the_content', array(&$this->form, 'displayRatingMeta'), 10);
233
  <?php
234
  }
235
 
236
+ public function renderAdminCommentMetaHtml($content, $comment) {
 
 
 
237
  $screen = get_current_screen();
238
  if ($screen->id != 'edit-comments') {
239
  return $content;
461
  <div class="error" style="padding-top: 5px;padding-bottom: 5px;">
462
  <p>
463
  <?php _e('Comment Form is not detected, please navigate to form manager page to create it. ', 'wpdiscuz'); ?>
464
+ <a href="<?php echo admin_url('post-new.php?post_type=' . self::WPDISCUZ_FORMS_CONTENT_TYPE); ?>" class="button button-primary"><?php _e('Add Comment Form', 'wpdiscuz'); ?></a>
465
  </p>
466
  </div>
467
  <?php
forms/wpdFormAttr/Field/DefaultField/Captcha.php CHANGED
@@ -46,7 +46,7 @@ class Captcha extends Field {
46
 
47
  public function frontFormHtml($name, $args, $options, $currentUser, $uniqueId,$isMainForm) {
48
  if ($options->isGoodbyeCaptchaActive) {
49
- echo GdbcWordPressPublicModule::getInstance()->getTokenFieldHtml();
50
  } else {
51
  if ($this->isShowCaptcha($currentUser->ID, $args)) {
52
  if (class_exists("wpDiscuzReCaptcha")) {
46
 
47
  public function frontFormHtml($name, $args, $options, $currentUser, $uniqueId,$isMainForm) {
48
  if ($options->isGoodbyeCaptchaActive) {
49
+ echo $options->goodbyeCaptchaTocken;
50
  } else {
51
  if ($this->isShowCaptcha($currentUser->ID, $args)) {
52
  if (class_exists("wpDiscuzReCaptcha")) {
forms/wpdFormAttr/Field/Field.php CHANGED
@@ -150,7 +150,7 @@ abstract class Field {
150
  $action = filter_input(INPUT_POST, 'action', FILTER_SANITIZE_STRING);
151
  if ($uniqueID) {
152
  $commentParent = strstr($uniqueID, '_');
153
- $isParent = ($action == 'saveEditedComment' && $commentParent == '_0') || ($action == 'addComment' && $uniqueID == '0_0')? true : false;
154
  }
155
  return $isParent;
156
  }
150
  $action = filter_input(INPUT_POST, 'action', FILTER_SANITIZE_STRING);
151
  if ($uniqueID) {
152
  $commentParent = strstr($uniqueID, '_');
153
+ $isParent = ($action == 'editedcomment' && $commentParent == '_0') || ($action == 'saveEditedComment' && $commentParent == '_0') || ($action == 'addComment' && $uniqueID == '0_0')? true : false;
154
  }
155
  return $isParent;
156
  }
forms/wpdFormAttr/Form.php CHANGED
@@ -656,21 +656,21 @@ class Form {
656
  wpdFormConst::WPDISCUZ_FORMS_NAME_FIELD => array(
657
  'type' => 'wpdFormAttr\Field\DefaultField\Name',
658
  'name' => __('Name', 'wpdiscuz'),
659
- 'desc' => __('', 'wpdiscuz'),
660
  'icon' => 'fa-user',
661
  'required' => '1'
662
  ),
663
  wpdFormConst::WPDISCUZ_FORMS_EMAIL_FIELD => array(
664
  'type' => 'wpdFormAttr\Field\DefaultField\Email',
665
  'name' => __('Email', 'wpdiscuz'),
666
- 'desc' => __('', 'wpdiscuz'),
667
  'icon' => 'fa-at',
668
  'required' => '1'
669
  ),
670
  wpdFormConst::WPDISCUZ_FORMS_WEBSITE_FIELD => array(
671
  'type' => 'wpdFormAttr\Field\DefaultField\Website',
672
  'name' => __('Website', 'wpdiscuz'),
673
- 'desc' => __('', 'wpdiscuz'),
674
  'icon' => 'fa-link',
675
  'enable' => '1'
676
  ),
@@ -679,7 +679,7 @@ class Form {
679
  wpdFormConst::WPDISCUZ_FORMS_CAPTCHA_FIELD => array(
680
  'type' => 'wpdFormAttr\Field\DefaultField\Captcha',
681
  'name' => __('Code', 'wpdiscuz'),
682
- 'desc' => __('', 'wpdiscuz'),
683
  'show_for_guests' => '1',
684
  'show_for_users' => '0'
685
  ),
656
  wpdFormConst::WPDISCUZ_FORMS_NAME_FIELD => array(
657
  'type' => 'wpdFormAttr\Field\DefaultField\Name',
658
  'name' => __('Name', 'wpdiscuz'),
659
+ 'desc' => '',
660
  'icon' => 'fa-user',
661
  'required' => '1'
662
  ),
663
  wpdFormConst::WPDISCUZ_FORMS_EMAIL_FIELD => array(
664
  'type' => 'wpdFormAttr\Field\DefaultField\Email',
665
  'name' => __('Email', 'wpdiscuz'),
666
+ 'desc' => '',
667
  'icon' => 'fa-at',
668
  'required' => '1'
669
  ),
670
  wpdFormConst::WPDISCUZ_FORMS_WEBSITE_FIELD => array(
671
  'type' => 'wpdFormAttr\Field\DefaultField\Website',
672
  'name' => __('Website', 'wpdiscuz'),
673
+ 'desc' => '',
674
  'icon' => 'fa-link',
675
  'enable' => '1'
676
  ),
679
  wpdFormConst::WPDISCUZ_FORMS_CAPTCHA_FIELD => array(
680
  'type' => 'wpdFormAttr\Field\DefaultField\Captcha',
681
  'name' => __('Code', 'wpdiscuz'),
682
+ 'desc' => '',
683
  'show_for_guests' => '1',
684
  'show_for_users' => '0'
685
  ),
languages/wpdiscuz.pot CHANGED
@@ -1,1963 +1,1963 @@
1
- #, fuzzy
2
- msgid ""
3
- msgstr ""
4
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
- "Project-Id-Version: wpDiscuz - supercharged native comments\n"
6
- "POT-Creation-Date: 2016-11-05 14:28+0400\n"
7
- "PO-Revision-Date: 2016-04-11 23:51+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.6\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:857 options/options-layouts/settings-social.php:40
24
- #: options/options-layouts/settings-social.php:42
25
- #: options/options-layouts/settings-social.php:44
26
- #: options/options-layouts/settings-social.php:46
27
- msgid "Settings"
28
- msgstr ""
29
-
30
- #: class.WpdiscuzCore.php:859
31
- msgid "Phrases"
32
- msgstr ""
33
-
34
- #: class.WpdiscuzCore.php:900 options/phrases-layouts/phrases-comment.php:116
35
- msgid "Admin"
36
- msgstr ""
37
-
38
- #: class.WpdiscuzCore.php:902 class.WpdiscuzCore.php:911
39
- #: options/phrases-layouts/phrases-comment.php:118
40
- msgid "Author"
41
- msgstr ""
42
-
43
- #: class.WpdiscuzCore.php:906 options/phrases-layouts/phrases-comment.php:124
44
- msgid "Member"
45
- msgstr ""
46
-
47
- #: class.WpdiscuzCore.php:912 options/phrases-layouts/phrases-comment.php:122
48
- msgid "Guest"
49
- msgstr ""
50
-
51
- #: forms/wpDiscuzForm.php:87
52
- msgid "Invalid Data !!!"
53
- msgstr ""
54
-
55
- #: forms/wpDiscuzForm.php:95 forms/wpDiscuzForm.php:141
56
- msgid "Forms"
57
- msgstr ""
58
-
59
- #: forms/wpDiscuzForm.php:96 options/html-phrases.php:21
60
- msgid "Form"
61
- msgstr ""
62
-
63
- #: forms/wpDiscuzForm.php:97
64
- msgid "Add New"
65
- msgstr ""
66
-
67
- #: forms/wpDiscuzForm.php:98
68
- msgid "Add New Form"
69
- msgstr ""
70
-
71
- #: forms/wpDiscuzForm.php:99
72
- msgid "Edit Form"
73
- msgstr ""
74
-
75
- #: forms/wpDiscuzForm.php:100
76
- msgid "You did not create any forms yet"
77
- msgstr ""
78
-
79
- #: forms/wpDiscuzForm.php:101
80
- msgid "Nothing found in Trash"
81
- msgstr ""
82
-
83
- #: forms/wpDiscuzForm.php:102
84
- msgid "Search Forms"
85
- msgstr ""
86
-
87
- #: forms/wpDiscuzForm.php:155
88
- msgid "Title"
89
- msgstr ""
90
-
91
- #: forms/wpDiscuzForm.php:156
92
- msgid "Post Types"
93
- msgstr ""
94
-
95
- #: forms/wpDiscuzForm.php:157
96
- msgid "Post IDs"
97
- msgstr ""
98
-
99
- #: forms/wpDiscuzForm.php:158 forms/wpdFormAttr/Form.php:534
100
- msgid "Language"
101
- msgstr ""
102
-
103
- #: forms/wpDiscuzForm.php:159
104
- msgid "Date"
105
- msgstr ""
106
-
107
- #: forms/wpDiscuzForm.php:204
108
- msgid "Field Types"
109
- msgstr ""
110
-
111
- #: forms/wpDiscuzForm.php:205 forms/wpdFormAttr/Row.php:23
112
- msgid "Two column"
113
- msgstr ""
114
-
115
- #: forms/wpDiscuzForm.php:206 forms/wpdFormAttr/Field/Field.php:61
116
- #: forms/wpdFormAttr/Row.php:24
117
- msgid "Delete"
118
- msgstr ""
119
-
120
- #: forms/wpDiscuzForm.php:207 forms/wpdFormAttr/Row.php:25
121
- msgid "Move"
122
- msgstr ""
123
-
124
- #: forms/wpDiscuzForm.php:208 forms/wpdFormAttr/Row.php:69
125
- msgid "Add Field"
126
- msgstr ""
127
-
128
- #: forms/wpDiscuzForm.php:209 forms/wpdFormAttr/Field/Field.php:58
129
- #: options/class.WpdiscuzOptionsSerialized.php:566
130
- #: options/phrases-layouts/phrases-comment.php:32
131
- msgid "Edit"
132
- msgstr ""
133
-
134
- #: forms/wpDiscuzForm.php:210
135
- msgid "You can not delete default field."
136
- msgstr ""
137
-
138
- #: forms/wpDiscuzForm.php:211
139
- msgid "You really want to delete this item ?"
140
- msgstr ""
141
-
142
- #: forms/wpDiscuzForm.php:218
143
- msgid "Permission Denied !!!"
144
- msgstr ""
145
-
146
- #: forms/wpDiscuzForm.php:246 forms/wpdFormAttr/Form.php:504
147
- #: forms/wpdFormAttr/html/admin-form-fields-list.php:18
148
- #: options/options-layouts/settings-customfields.php:7
149
- msgid "Custom Fields"
150
- msgstr ""
151
-
152
- #: forms/wpDiscuzForm.php:294
153
- msgid "Custom CSS"
154
- msgstr ""
155
-
156
- #: forms/wpDiscuzForm.php:345
157
- msgid "Default Form"
158
- msgstr ""
159
-
160
- #: forms/wpDiscuzForm.php:376 forms/wpDiscuzForm.php:384
161
- #: forms/wpdFormAttr/Form.php:569
162
- msgid "Leave a Reply"
163
- msgstr ""
164
-
165
- #: forms/wpDiscuzForm.php:399 forms/wpdFormAttr/Field/CheckboxField.php:12
166
- #: forms/wpdFormAttr/Field/ColorField.php:12
167
- #: forms/wpdFormAttr/Field/DateField.php:12
168
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:25
169
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:19
170
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:18
171
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:64
172
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:18
173
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:18
174
- #: forms/wpdFormAttr/Field/NumberField.php:12
175
- #: forms/wpdFormAttr/Field/RadioField.php:12
176
- #: forms/wpdFormAttr/Field/RatingField.php:12
177
- #: forms/wpdFormAttr/Field/SelectField.php:12
178
- #: forms/wpdFormAttr/Field/TextAreaField.php:13
179
- #: forms/wpdFormAttr/Field/TextField.php:12
180
- #: forms/wpdFormAttr/Field/UrlField.php:12 forms/wpdFormAttr/Form.php:658
181
- msgid "Name"
182
- msgstr ""
183
-
184
- #: forms/wpDiscuzForm.php:401 forms/wpdFormAttr/Field/DefaultField/Email.php:64
185
- #: forms/wpdFormAttr/Form.php:665
186
- #: options/class.WpdiscuzOptionsSerialized.php:553 options/html-phrases.php:24
187
- msgid "Email"
188
- msgstr ""
189
-
190
- #: forms/wpDiscuzForm.php:403
191
- msgid "WebSite URL"
192
- msgstr ""
193
-
194
- #: forms/wpDiscuzForm.php:406
195
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:78
196
- #: forms/wpdFormAttr/Form.php:688
197
- msgid "Post Comment"
198
- msgstr ""
199
-
200
- #: forms/wpDiscuzForm.php:415
201
- msgid "Clone Form"
202
- msgstr ""
203
-
204
- #: forms/wpDiscuzForm.php:427
205
- msgid "Clone"
206
- msgstr ""
207
-
208
- #: forms/wpDiscuzForm.php:464
209
- msgid ""
210
- "Comment Form is not detected, please navigate to form manager page to create "
211
- "it. "
212
- msgstr ""
213
-
214
- #: forms/wpDiscuzForm.php:465
215
- msgid "Add Comment Form"
216
- msgstr ""
217
-
218
- #: forms/wpdFormAttr/Field/CheckboxField.php:14
219
- #: forms/wpdFormAttr/Field/ColorField.php:14
220
- #: forms/wpdFormAttr/Field/DateField.php:14
221
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:27
222
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:21
223
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:20
224
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:20
225
- #: forms/wpdFormAttr/Field/NumberField.php:14
226
- #: forms/wpdFormAttr/Field/RadioField.php:14
227
- #: forms/wpdFormAttr/Field/SelectField.php:14
228
- #: forms/wpdFormAttr/Field/TextAreaField.php:15
229
- #: forms/wpdFormAttr/Field/TextField.php:14
230
- #: forms/wpdFormAttr/Field/UrlField.php:14
231
- msgid "Also used for field placeholder"
232
- msgstr ""
233
-
234
- #: forms/wpdFormAttr/Field/CheckboxField.php:17
235
- #: forms/wpdFormAttr/Field/ColorField.php:17
236
- #: forms/wpdFormAttr/Field/DateField.php:17
237
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:30
238
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:24
239
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:23
240
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:23
241
- #: forms/wpdFormAttr/Field/NumberField.php:17
242
- #: forms/wpdFormAttr/Field/RadioField.php:17
243
- #: forms/wpdFormAttr/Field/RatingField.php:16
244
- #: forms/wpdFormAttr/Field/SelectField.php:17
245
- #: forms/wpdFormAttr/Field/TextAreaField.php:18
246
- #: forms/wpdFormAttr/Field/TextField.php:17
247
- #: forms/wpdFormAttr/Field/UrlField.php:17
248
- msgid "Description"
249
- msgstr ""
250
-
251
- #: forms/wpdFormAttr/Field/CheckboxField.php:19
252
- #: forms/wpdFormAttr/Field/ColorField.php:19
253
- #: forms/wpdFormAttr/Field/DateField.php:19
254
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:32
255
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:26
256
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:25
257
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:25
258
- #: forms/wpdFormAttr/Field/NumberField.php:19
259
- #: forms/wpdFormAttr/Field/NumberField.php:24
260
- #: forms/wpdFormAttr/Field/NumberField.php:29
261
- #: forms/wpdFormAttr/Field/RadioField.php:19
262
- #: forms/wpdFormAttr/Field/RatingField.php:18
263
- #: forms/wpdFormAttr/Field/SelectField.php:19
264
- #: forms/wpdFormAttr/Field/TextAreaField.php:20
265
- #: forms/wpdFormAttr/Field/TextField.php:19
266
- #: forms/wpdFormAttr/Field/UrlField.php:19
267
- msgid ""
268
- "Field specific short description or some rule related to inserted "
269
- "information."
270
- msgstr ""
271
-
272
- #: forms/wpdFormAttr/Field/CheckboxField.php:28
273
- #: forms/wpdFormAttr/Field/RadioField.php:28
274
- #: forms/wpdFormAttr/Field/SelectField.php:28
275
- msgid "Values"
276
- msgstr ""
277
-
278
- #: forms/wpdFormAttr/Field/CheckboxField.php:30
279
- msgid "Please insert one value per line"
280
- msgstr ""
281
-
282
- #: forms/wpdFormAttr/Field/CheckboxField.php:33
283
- #: forms/wpdFormAttr/Field/ColorField.php:29
284
- #: forms/wpdFormAttr/Field/DateField.php:29
285
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:36
286
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:35
287
- #: forms/wpdFormAttr/Field/NumberField.php:39
288
- #: forms/wpdFormAttr/Field/RadioField.php:33
289
- #: forms/wpdFormAttr/Field/RatingField.php:28
290
- #: forms/wpdFormAttr/Field/SelectField.php:33
291
- #: forms/wpdFormAttr/Field/TextAreaField.php:23
292
- #: forms/wpdFormAttr/Field/TextField.php:29
293
- #: forms/wpdFormAttr/Field/UrlField.php:29
294
- msgid "Field is required"
295
- msgstr ""
296
-
297
- #: forms/wpdFormAttr/Field/CheckboxField.php:37
298
- #: forms/wpdFormAttr/Field/ColorField.php:33
299
- #: forms/wpdFormAttr/Field/DateField.php:33
300
- #: forms/wpdFormAttr/Field/NumberField.php:43
301
- #: forms/wpdFormAttr/Field/RadioField.php:37
302
- #: forms/wpdFormAttr/Field/SelectField.php:37
303
- #: forms/wpdFormAttr/Field/TextAreaField.php:27
304
- #: forms/wpdFormAttr/Field/TextField.php:33
305
- #: forms/wpdFormAttr/Field/UrlField.php:33
306
- msgid "Display on reply form"
307
- msgstr ""
308
-
309
- #: forms/wpdFormAttr/Field/CheckboxField.php:41
310
- #: forms/wpdFormAttr/Field/ColorField.php:37
311
- #: forms/wpdFormAttr/Field/DateField.php:37
312
- #: forms/wpdFormAttr/Field/NumberField.php:47
313
- #: forms/wpdFormAttr/Field/RadioField.php:41
314
- #: forms/wpdFormAttr/Field/RatingField.php:32
315
- #: forms/wpdFormAttr/Field/SelectField.php:41
316
- #: forms/wpdFormAttr/Field/TextAreaField.php:31
317
- #: forms/wpdFormAttr/Field/TextField.php:37
318
- #: forms/wpdFormAttr/Field/UrlField.php:37
319
- msgid "Display on comment"
320
- msgstr ""
321
-
322
- #: forms/wpdFormAttr/Field/CheckboxField.php:139
323
- #: forms/wpdFormAttr/Field/ColorField.php:102
324
- #: forms/wpdFormAttr/Field/DateField.php:102
325
- #: forms/wpdFormAttr/Field/NumberField.php:112
326
- #: forms/wpdFormAttr/Field/RadioField.php:117
327
- #: forms/wpdFormAttr/Field/RatingField.php:112
328
- #: forms/wpdFormAttr/Field/SelectField.php:112
329
- #: forms/wpdFormAttr/Field/TextAreaField.php:85
330
- #: forms/wpdFormAttr/Field/TextField.php:96
331
- #: forms/wpdFormAttr/Field/UrlField.php:96
332
- msgid "field is required!"
333
- msgstr ""
334
-
335
- #: forms/wpdFormAttr/Field/ColorField.php:23
336
- #: forms/wpdFormAttr/Field/DateField.php:23
337
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:30
338
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:29
339
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:29
340
- #: forms/wpdFormAttr/Field/NumberField.php:33
341
- #: forms/wpdFormAttr/Field/RatingField.php:22
342
- #: forms/wpdFormAttr/Field/TextField.php:23
343
- #: forms/wpdFormAttr/Field/UrlField.php:23
344
- msgid "Field icon"
345
- msgstr ""
346
-
347
- #: forms/wpdFormAttr/Field/ColorField.php:26
348
- #: forms/wpdFormAttr/Field/DateField.php:26
349
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:33
350
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:32
351
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:32
352
- #: forms/wpdFormAttr/Field/NumberField.php:36
353
- #: forms/wpdFormAttr/Field/RatingField.php:25
354
- #: forms/wpdFormAttr/Field/TextField.php:26
355
- #: forms/wpdFormAttr/Field/UrlField.php:26
356
- msgid "Font-awesome icon library."
357
- msgstr ""
358
-
359
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:35
360
- msgid "Show for guests"
361
- msgstr ""
362
-
363
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:39
364
- msgid "Show for logged in users"
365
- msgstr ""
366
-
367
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:107
368
- #: forms/wpdFormAttr/Form.php:681
369
- msgid "Code"
370
- msgstr ""
371
-
372
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:114
373
- msgid "Cannot create image file"
374
- msgstr ""
375
-
376
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:115
377
- msgid "Permission denied for file creation"
378
- msgstr ""
379
-
380
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:116
381
- msgid "PHP GD2 library is disabled"
382
- msgstr ""
383
-
384
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:117
385
- msgid "PNG image creation disabled"
386
- msgstr ""
387
-
388
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:20
389
- msgid "Button Text"
390
- msgstr ""
391
-
392
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:35
393
- msgid "Enable"
394
- msgstr ""
395
-
396
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:83
397
- #: forms/wpdFormAttr/Form.php:672
398
- msgid "Website"
399
- msgstr ""
400
-
401
- #: forms/wpdFormAttr/Field/Field.php:52
402
- msgid " (Submit Button)"
403
- msgstr ""
404
-
405
- #: forms/wpdFormAttr/Field/Field.php:54
406
- msgid " (CAPTCHA)"
407
- msgstr ""
408
-
409
- #: forms/wpdFormAttr/Field/Field.php:84
410
- msgid "Add To Form"
411
- msgstr ""
412
-
413
- #: forms/wpdFormAttr/Field/NumberField.php:22
414
- msgid "Min Value"
415
- msgstr ""
416
-
417
- #: forms/wpdFormAttr/Field/NumberField.php:27
418
- msgid "Max Value"
419
- msgstr ""
420
-
421
- #: forms/wpdFormAttr/Field/NumberField.php:116
422
- msgid "value can not be less than"
423
- msgstr ""
424
-
425
- #: forms/wpdFormAttr/Field/NumberField.php:119
426
- msgid "value can not be more than"
427
- msgstr ""
428
-
429
- #: forms/wpdFormAttr/Field/RadioField.php:30
430
- #: forms/wpdFormAttr/Field/SelectField.php:30
431
- msgid "New value new line"
432
- msgstr ""
433
-
434
- #: forms/wpdFormAttr/Form.php:543
435
- msgid "Allow guests to comment"
436
- msgstr ""
437
-
438
- #: forms/wpdFormAttr/Form.php:547 forms/wpdFormAttr/Form.php:558
439
- msgid "Yes"
440
- msgstr ""
441
-
442
- #: forms/wpdFormAttr/Form.php:549 forms/wpdFormAttr/Form.php:560
443
- msgid "No"
444
- msgstr ""
445
-
446
- #: forms/wpdFormAttr/Form.php:554
447
- msgid "Enable subscription bar"
448
- msgstr ""
449
-
450
- #: forms/wpdFormAttr/Form.php:565
451
- msgid "Comment form header text"
452
- msgstr ""
453
-
454
- #: forms/wpdFormAttr/Form.php:574
455
- msgid "Display comment form for post types"
456
- msgstr ""
457
-
458
- #: forms/wpdFormAttr/Form.php:581
459
- msgid ""
460
- "The red marked post types are already attached to other comment form. If you "
461
- "set this form too, the old forms will not be used for them."
462
- msgstr ""
463
-
464
- #: forms/wpdFormAttr/Form.php:600
465
- msgid "Display comment form for post IDs"
466
- msgstr ""
467
-
468
- #: forms/wpdFormAttr/Form.php:601
469
- msgid ""
470
- "You can use this form for certain posts/pages specified by comma separated "
471
- "IDs."
472
- msgstr ""
473
-
474
- #: forms/wpdFormAttr/Form.php:612
475
- msgid "Comment Text Field"
476
- msgstr ""
477
-
478
- #: forms/wpdFormAttr/Form.php:627
479
- msgid "ADD ROW"
480
- msgstr ""
481
-
482
- #: forms/wpdFormAttr/html/admin-form-fields-list.php:7
483
- msgid "Comment Form Fields"
484
- msgstr ""
485
-
486
- #: options/class.WpdiscuzOptions.php:22 options/class.WpdiscuzOptions.php:92
487
- #: options/class.WpdiscuzOptions.php:207
488
- msgid "Hacker?"
489
- msgstr ""
490
-
491
- #: options/class.WpdiscuzOptions.php:242
492
- msgid ""
493
- "Brings an ocean of emotions to your comments. It comes with an awesome smile "
494
- "package."
495
- msgstr ""
496
-
497
- #: options/class.WpdiscuzOptions.php:243
498
- msgid ""
499
- "A full-fledged tool-kit for advertising in comment section of your website. "
500
- "Separate banner and ad managment."
501
- msgstr ""
502
-
503
- #: options/class.WpdiscuzOptions.php:244
504
- msgid ""
505
- "Allows to mention comments and users in comment text using #comment-id and "
506
- "@username tags."
507
- msgstr ""
508
-
509
- #: options/class.WpdiscuzOptions.php:245
510
- msgid ""
511
- "See comment likers and voters of each comment. Adds user reputation and "
512
- "badges based on received likes."
513
- msgstr ""
514
-
515
- #: options/class.WpdiscuzOptions.php:246
516
- msgid ""
517
- "Comment reporting tools. Auto-moderates comments based on number of flags "
518
- "and dislikes."
519
- msgstr ""
520
-
521
- #: options/class.WpdiscuzOptions.php:247
522
- msgid ""
523
- "Adds a smart and intuitive AJAX \"Translate\" button with 60 language "
524
- "options. Uses free translation API."
525
- msgstr ""
526
-
527
- #: options/class.WpdiscuzOptions.php:248
528
- msgid ""
529
- "AJAX powered front-end comment search. It starts searching while you type "
530
- "search words. "
531
- msgstr ""
532
-
533
- #: options/class.WpdiscuzOptions.php:249
534
- msgid ""
535
- "Most voted comments, Active comment threads, Most commented posts, Active "
536
- "comment authors"
537
- msgstr ""
538
-
539
- #: options/class.WpdiscuzOptions.php:250
540
- msgid ""
541
- "All in one powerful yet simple admin toolkit to moderate comments on front-"
542
- "end."
543
- msgstr ""
544
-
545
- #: options/class.WpdiscuzOptions.php:251
546
- msgid ""
547
- "Extended comment attachment system. Allows to upload images, videos, audios "
548
- "and other file types."
549
- msgstr ""
550
-
551
- #: options/class.WpdiscuzOptions.php:252
552
- msgid ""
553
- "Adds No CAPTCHA on all comment forms. Stops spam and bot comments with "
554
- "Google reCAPTCHA"
555
- msgstr ""
556
-
557
- #: options/class.WpdiscuzOptions.php:253
558
- msgid ""
559
- "Integrates myCRED Badges and Ranks. Converts wpDiscuz comment votes/likes to "
560
- "myCRED points. "
561
- msgstr ""
562
-
563
- #: options/class.WpdiscuzOptions.php:254
564
- msgid ""
565
- "Allows censoring comment words. Filters comments and replaces those phrases "
566
- "with custom words."
567
- msgstr ""
568
-
569
- #: options/class.WpdiscuzOptions.php:266
570
- msgid "New Addons are available for wpDiscuz Comments Plugin"
571
- msgstr ""
572
-
573
- #: options/class.WpdiscuzOptions.php:273 options/class.WpdiscuzOptions.php:279
574
- msgid "Go to wpDiscuz Addons subMenu"
575
- msgstr ""
576
-
577
- #: options/class.WpdiscuzOptionsSerialized.php:547
578
- msgid "Be the First to Comment!"
579
- msgstr ""
580
-
581
- #: options/class.WpdiscuzOptionsSerialized.php:548 options/html-phrases.php:22
582
- #: options/phrases-layouts/phrases-general.php:22
583
- msgid "Comment"
584
- msgstr ""
585
-
586
- #: options/class.WpdiscuzOptionsSerialized.php:549
587
- msgid "Comments"
588
- msgstr ""
589
-
590
- #: options/class.WpdiscuzOptionsSerialized.php:550
591
- msgid "on"
592
- msgstr ""
593
-
594
- #: options/class.WpdiscuzOptionsSerialized.php:551
595
- msgid "Start the discussion"
596
- msgstr ""
597
-
598
- #: options/class.WpdiscuzOptionsSerialized.php:552
599
- msgid "Join the discussion"
600
- msgstr ""
601
-
602
- #: options/class.WpdiscuzOptionsSerialized.php:554
603
- #: options/phrases-layouts/phrases-form.php:42
604
- #: options/phrases-layouts/phrases-form.php:46
605
- msgid "Notify of"
606
- msgstr ""
607
-
608
- #: options/class.WpdiscuzOptionsSerialized.php:555
609
- #: options/phrases-layouts/phrases-form.php:56
610
- msgid "new follow-up comments"
611
- msgstr ""
612
-
613
- #: options/class.WpdiscuzOptionsSerialized.php:556
614
- msgid "new replies to my comments"
615
- msgstr ""
616
-
617
- #: options/class.WpdiscuzOptionsSerialized.php:557
618
- #: options/phrases-layouts/phrases-form.php:76
619
- msgid "Notify of new replies to this comment"
620
- msgstr ""
621
-
622
- #: options/class.WpdiscuzOptionsSerialized.php:558
623
- #: options/phrases-layouts/phrases-form.php:82
624
- #: options/phrases-layouts/phrases-form.php:86
625
- msgid "Sort by"
626
- msgstr ""
627
-
628
- #: options/class.WpdiscuzOptionsSerialized.php:559
629
- #: options/phrases-layouts/phrases-form.php:92
630
- #: options/phrases-layouts/phrases-form.php:96
631
- msgid "newest"
632
- msgstr ""
633
-
634
- #: options/class.WpdiscuzOptionsSerialized.php:560
635
- #: options/phrases-layouts/phrases-form.php:102
636
- #: options/phrases-layouts/phrases-form.php:106
637
- msgid "oldest"
638
- msgstr ""
639
-
640
- #: options/class.WpdiscuzOptionsSerialized.php:561
641
- #: options/phrases-layouts/phrases-form.php:112
642
- #: options/phrases-layouts/phrases-form.php:116
643
- msgid "most voted"
644
- msgstr ""
645
-
646
- #: options/class.WpdiscuzOptionsSerialized.php:562
647
- msgid "Load More Comments"
648
- msgstr ""
649
-
650
- #: options/class.WpdiscuzOptionsSerialized.php:563
651
- #: options/phrases-layouts/phrases-general.php:62
652
- msgid "Load Rest of Comments"
653
- msgstr ""
654
-
655
- #: options/class.WpdiscuzOptionsSerialized.php:564
656
- #: options/phrases-layouts/phrases-comment.php:12
657
- msgid "Reply"
658
- msgstr ""
659
-
660
- #: options/class.WpdiscuzOptionsSerialized.php:565
661
- #: options/phrases-layouts/phrases-comment.php:22
662
- msgid "Share"
663
- msgstr ""
664
-
665
- #: options/class.WpdiscuzOptionsSerialized.php:567
666
- #: options/phrases-layouts/phrases-comment.php:42
667
- msgid "Share On Facebook"
668
- msgstr ""
669
-
670
- #: options/class.WpdiscuzOptionsSerialized.php:568
671
- #: options/phrases-layouts/phrases-comment.php:52
672
- msgid "Share On Twitter"
673
- msgstr ""
674
-
675
- #: options/class.WpdiscuzOptionsSerialized.php:569
676
- #: options/phrases-layouts/phrases-comment.php:62
677
- msgid "Share On Google"
678
- msgstr ""
679
-
680
- #: options/class.WpdiscuzOptionsSerialized.php:570
681
- #: options/phrases-layouts/phrases-comment.php:72
682
- msgid "Share On VKontakte"
683
- msgstr ""
684
-
685
- #: options/class.WpdiscuzOptionsSerialized.php:571
686
- #: options/phrases-layouts/phrases-comment.php:82
687
- msgid "Share On Odnoklassniki"
688
- msgstr ""
689
-
690
- #: options/class.WpdiscuzOptionsSerialized.php:572
691
- #: options/phrases-layouts/phrases-comment.php:92
692
- msgid "Hide Replies"
693
- msgstr ""
694
-
695
- #: options/class.WpdiscuzOptionsSerialized.php:573
696
- #: options/phrases-layouts/phrases-comment.php:102
697
- msgid "Show Replies"
698
- msgstr ""
699
-
700
- #: options/class.WpdiscuzOptionsSerialized.php:574
701
- #: options/phrases-layouts/phrases-general.php:76
702
- msgid "New Comment"
703
- msgstr ""
704
-
705
- #: options/class.WpdiscuzOptionsSerialized.php:575
706
- msgid "New comment on the discussion section you've been interested in"
707
- msgstr ""
708
-
709
- #: options/class.WpdiscuzOptionsSerialized.php:576
710
- #: options/phrases-layouts/phrases-email.php:36
711
- #: options/phrases-layouts/phrases-general.php:96
712
- #: utils/class.WpdiscuzEmailHelper.php:154
713
- msgid "New Reply"
714
- msgstr ""
715
-
716
- #: options/class.WpdiscuzOptionsSerialized.php:577
717
- #: utils/class.WpdiscuzEmailHelper.php:155
718
- msgid "New reply on the discussion section you've been interested in"
719
- msgstr ""
720
-
721
- #: options/class.WpdiscuzOptionsSerialized.php:578
722
- msgid "You're subscribed for new replies on this comment"
723
- msgstr ""
724
-
725
- #: options/class.WpdiscuzOptionsSerialized.php:579
726
- msgid "You're subscribed for new replies on all your comments"
727
- msgstr ""
728
-
729
- #: options/class.WpdiscuzOptionsSerialized.php:580
730
- msgid "You're subscribed for new follow-up comments on this post"
731
- msgstr ""
732
-
733
- #: options/class.WpdiscuzOptionsSerialized.php:581
734
- #: options/phrases-layouts/phrases-email.php:52
735
- #: options/phrases-layouts/phrases-email.php:56
736
- msgid "Unsubscribe"
737
- msgstr ""
738
-
739
- #: options/class.WpdiscuzOptionsSerialized.php:582
740
- #: options/phrases-layouts/phrases-email.php:66
741
- msgid "Cancel subscription"
742
- msgstr ""
743
-
744
- #: options/class.WpdiscuzOptionsSerialized.php:583
745
- #: options/phrases-layouts/phrases-notification.php:32
746
- msgid "You've successfully unsubscribed."
747
- msgstr ""
748
-
749
- #: options/class.WpdiscuzOptionsSerialized.php:584
750
- #: options/phrases-layouts/phrases-notification.php:22
751
- msgid "You've successfully subscribed."
752
- msgstr ""
753
-
754
- #: options/class.WpdiscuzOptionsSerialized.php:585
755
- #: options/phrases-layouts/phrases-email.php:72
756
- #: options/phrases-layouts/phrases-email.php:76
757
- msgid "Confirm your subscription"
758
- msgstr ""
759
-
760
- #: options/class.WpdiscuzOptionsSerialized.php:586
761
- #: options/phrases-layouts/phrases-email.php:82
762
- #: options/phrases-layouts/phrases-email.php:86
763
- msgid "You've successfully confirmed your subscription."
764
- msgstr ""
765
-
766
- #: options/class.WpdiscuzOptionsSerialized.php:587
767
- #: options/phrases-layouts/phrases-email.php:96
768
- #: utils/class.WpdiscuzEmailHelper.php:47
769
- msgid "Subscribe Confirmation"
770
- msgstr ""
771
-
772
- #: options/class.WpdiscuzOptionsSerialized.php:588
773
- #: options/phrases-layouts/phrases-email.php:106
774
- #: utils/class.WpdiscuzEmailHelper.php:48
775
- msgid ""
776
- "Hi, <br/> You just subscribed for new comments on our website. This means "
777
- "you will receive an email when new comments are posted according to "
778
- "subscription option you've chosen. <br/> To activate, click confirm below. "
779
- "If you believe this is an error, ignore this message and we'll never bother "
780
- "you again."
781
- msgstr ""
782
-
783
- #: options/class.WpdiscuzOptionsSerialized.php:589
784
- msgid "please fill out this field to comment"
785
- msgstr ""
786
-
787
- #: options/class.WpdiscuzOptionsSerialized.php:590
788
- msgid "email address is invalid"
789
- msgstr ""
790
-
791
- #: options/class.WpdiscuzOptionsSerialized.php:591
792
- msgid "url is invalid"
793
- msgstr ""
794
-
795
- #: options/class.WpdiscuzOptionsSerialized.php:592
796
- msgid "year"
797
- msgstr ""
798
-
799
- #: options/class.WpdiscuzOptionsSerialized.php:593
800
- msgid "years"
801
- msgstr ""
802
-
803
- #: options/class.WpdiscuzOptionsSerialized.php:594
804
- msgid "month"
805
- msgstr ""
806
-
807
- #: options/class.WpdiscuzOptionsSerialized.php:595
808
- msgid "months"
809
- msgstr ""
810
-
811
- #: options/class.WpdiscuzOptionsSerialized.php:596
812
- msgid "day"
813
- msgstr ""
814
-
815
- #: options/class.WpdiscuzOptionsSerialized.php:597
816
- msgid "days"
817
- msgstr ""
818
-
819
- #: options/class.WpdiscuzOptionsSerialized.php:598
820
- msgid "hour"
821
- msgstr ""
822
-
823
- #: options/class.WpdiscuzOptionsSerialized.php:599
824
- msgid "hours"
825
- msgstr ""
826
-
827
- #: options/class.WpdiscuzOptionsSerialized.php:600
828
- msgid "minute"
829
- msgstr ""
830
-
831
- #: options/class.WpdiscuzOptionsSerialized.php:601
832
- msgid "minutes"
833
- msgstr ""
834
-
835
- #: options/class.WpdiscuzOptionsSerialized.php:602
836
- msgid "second"
837
- msgstr ""
838
-
839
- #: options/class.WpdiscuzOptionsSerialized.php:603
840
- msgid "seconds"
841
- msgstr ""
842
-
843
- #: options/class.WpdiscuzOptionsSerialized.php:604
844
- msgid "right now"
845
- msgstr ""
846
-
847
- #: options/class.WpdiscuzOptionsSerialized.php:605
848
- msgid "ago"
849
- msgstr ""
850
-
851
- #: options/class.WpdiscuzOptionsSerialized.php:606
852
- #: options/phrases-layouts/phrases-datetime.php:156
853
- msgid "Today"
854
- msgstr ""
855
-
856
- #: options/class.WpdiscuzOptionsSerialized.php:607
857
- #: options/phrases-layouts/phrases-notification.php:84
858
- msgid "You must be"
859
- msgstr ""
860
-
861
- #: options/class.WpdiscuzOptionsSerialized.php:608
862
- msgid "You are logged in as"
863
- msgstr ""
864
-
865
- #: options/class.WpdiscuzOptionsSerialized.php:609
866
- #: options/phrases-layouts/phrases-notification.php:104
867
- msgid "Log out"
868
- msgstr ""
869
-
870
- #: options/class.WpdiscuzOptionsSerialized.php:610
871
- msgid "logged in"
872
- msgstr ""
873
-
874
- #: options/class.WpdiscuzOptionsSerialized.php:611
875
- msgid "to post a comment."
876
- msgstr ""
877
-
878
- #: options/class.WpdiscuzOptionsSerialized.php:612
879
- #: options/phrases-layouts/phrases-comment.php:138
880
- msgid "Vote Up"
881
- msgstr ""
882
-
883
- #: options/class.WpdiscuzOptionsSerialized.php:613
884
- #: options/phrases-layouts/phrases-comment.php:148
885
- msgid "Vote Down"
886
- msgstr ""
887
-
888
- #: options/class.WpdiscuzOptionsSerialized.php:614
889
- #: options/phrases-layouts/phrases-notification.php:134
890
- msgid "Vote Counted"
891
- msgstr ""
892
-
893
- #: options/class.WpdiscuzOptionsSerialized.php:615
894
- msgid "You've already voted for this comment"
895
- msgstr ""
896
-
897
- #: options/class.WpdiscuzOptionsSerialized.php:616
898
- #: options/phrases-layouts/phrases-notification.php:154
899
- msgid "Voting Error"
900
- msgstr ""
901
-
902
- #: options/class.WpdiscuzOptionsSerialized.php:617
903
- msgid "You Must Be Logged In To Vote"
904
- msgstr ""
905
-
906
- #: options/class.WpdiscuzOptionsSerialized.php:618
907
- msgid "You cannot vote for your comment"
908
- msgstr ""
909
-
910
- #: options/class.WpdiscuzOptionsSerialized.php:619
911
- msgid "You are not allowed to vote for this comment"
912
- msgstr ""
913
-
914
- #: options/class.WpdiscuzOptionsSerialized.php:620
915
- #: options/phrases-layouts/phrases-notification.php:194
916
- msgid "Invalid Captcha Code"
917
- msgstr ""
918
-
919
- #: options/class.WpdiscuzOptionsSerialized.php:621
920
- #: options/phrases-layouts/phrases-notification.php:204
921
- msgid "Some of field value is invalid"
922
- msgstr ""
923
-
924
- #: options/class.WpdiscuzOptionsSerialized.php:622
925
- msgid "new comment"
926
- msgstr ""
927
-
928
- #: options/class.WpdiscuzOptionsSerialized.php:623
929
- msgid "new comments"
930
- msgstr ""
931
-
932
- #: options/class.WpdiscuzOptionsSerialized.php:624
933
- msgid "Comment awaiting moderation"
934
- msgstr ""
935
-
936
- #: options/class.WpdiscuzOptionsSerialized.php:625
937
- msgid "new reply on your comment"
938
- msgstr ""
939
-
940
- #: options/class.WpdiscuzOptionsSerialized.php:626
941
- msgid "new replies on your comments"
942
- msgstr ""
943
-
944
- #: options/class.WpdiscuzOptionsSerialized.php:627
945
- #: options/phrases-layouts/phrases-general.php:116
946
- msgid "New"
947
- msgstr ""
948
-
949
- #: options/class.WpdiscuzOptionsSerialized.php:628
950
- #: options/phrases-layouts/phrases-notification.php:249
951
- msgid "Sorry, the comment was not updated"
952
- msgstr ""
953
-
954
- #: options/class.WpdiscuzOptionsSerialized.php:629
955
- #: options/phrases-layouts/phrases-notification.php:259
956
- msgid "Sorry, this comment no longer possible to edit"
957
- msgstr ""
958
-
959
- #: options/class.WpdiscuzOptionsSerialized.php:630
960
- msgid "You've not made any changes"
961
- msgstr ""
962
-
963
- #: options/class.WpdiscuzOptionsSerialized.php:631
964
- #: options/phrases-layouts/phrases-comment.php:162
965
- msgid "Save"
966
- msgstr ""
967
-
968
- #: options/class.WpdiscuzOptionsSerialized.php:632
969
- #: options/phrases-layouts/phrases-comment.php:172
970
- msgid "Cancel"
971
- msgstr ""
972
-
973
- #: options/class.WpdiscuzOptionsSerialized.php:633
974
- msgid "Input is too short"
975
- msgstr ""
976
-
977
- #: options/class.WpdiscuzOptionsSerialized.php:634
978
- msgid "Input is too long"
979
- msgstr ""
980
-
981
- #: options/class.WpdiscuzOptionsSerialized.php:635
982
- #: options/phrases-layouts/phrases-comment.php:182
983
- msgid "Read more &raquo;"
984
- msgstr ""
985
-
986
- #: options/class.WpdiscuzOptionsSerialized.php:636
987
- #: options/phrases-layouts/phrases-comment.php:192
988
- msgid "Anonymous"
989
- msgstr ""
990
-
991
- #: options/class.WpdiscuzOptionsSerialized.php:637
992
- #: options/phrases-layouts/phrases-notification.php:275
993
- #: options/phrases-layouts/phrases-notification.php:279
994
- msgid "Please fill out required fields"
995
- msgstr ""
996
-
997
- #: options/class.WpdiscuzOptionsSerialized.php:638
998
- #: options/phrases-layouts/phrases-form.php:152
999
- #: options/phrases-layouts/phrases-form.php:156
1000
- msgid "Connect with"
1001
- msgstr ""
1002
-
1003
- #: options/class.WpdiscuzOptionsSerialized.php:639
1004
- msgid "You're subscribed to"
1005
- msgstr ""
1006
-
1007
- #: options/class.WpdiscuzOptionsSerialized.php:640
1008
- msgid "Participate in this discussion via email"
1009
- msgstr ""
1010
-
1011
- #: options/html-addons.php:11
1012
- msgid "wpDiscuz Addons"
1013
- msgstr ""
1014
-
1015
- #: options/html-addons.php:54
1016
- msgid "Installed"
1017
- msgstr ""
1018
-
1019
- #: options/html-addons.php:61
1020
- msgid "Live Preview | Buy"
1021
- msgstr ""
1022
-
1023
- #: options/html-options.php:10
1024
- msgid "wpDiscuz General Settings"
1025
- msgstr ""
1026
-
1027
- #: options/html-options.php:54 options/options-layouts/settings-general.php:7
1028
- msgid "General Settings"
1029
- msgstr ""
1030
-
1031
- #: options/html-options.php:55
1032
- #: options/options-layouts/settings-live-update.php:7
1033
- msgid "Live Update"
1034
- msgstr ""
1035
-
1036
- #: options/html-options.php:56
1037
- msgid "Show/Hide"
1038
- msgstr ""
1039
-
1040
- #: options/html-options.php:57
1041
- msgid "Subscription"
1042
- msgstr ""
1043
-
1044
- #: options/html-options.php:57
1045
- msgid "and Postmatic"
1046
- msgstr ""
1047
-
1048
- #: options/html-options.php:58
1049
- msgid "Styling"
1050
- msgstr ""
1051
-
1052
- #: options/html-options.php:59 options/options-layouts/settings-social.php:124
1053
- msgid "Social Login"
1054
- msgstr ""
1055
-
1056
- #: options/html-options.php:60
1057
- #: options/options-layouts/settings-integrations.php:7
1058
- msgid "Integrations"
1059
- msgstr ""
1060
-
1061
- #: options/html-options.php:61 options/options-layouts/settings-addons.php:7
1062
- msgid "Addons"
1063
- msgstr ""
1064
-
1065
- #: options/html-options.php:148
1066
- msgid "Reset Options"
1067
- msgstr ""
1068
-
1069
- #: options/html-options.php:150
1070
- msgid "Refresh comment optimization"
1071
- msgstr ""
1072
-
1073
- #: options/html-options.php:152
1074
- msgid "Remove vote data"
1075
- msgstr ""
1076
-
1077
- #: options/html-options.php:153 options/html-phrases.php:71
1078
- #: options/html-tools.php:58
1079
- msgid "Save Changes"
1080
- msgstr ""
1081
-
1082
- #: options/html-phrases.php:10
1083
- msgid "wpDiscuz Front-end Phrases"
1084
- msgstr ""
1085
-
1086
- #: options/html-phrases.php:20
1087
- msgid "General"
1088
- msgstr ""
1089
-
1090
- #: options/html-phrases.php:23
1091
- msgid "Date/Time"
1092
- msgstr ""
1093
-
1094
- #: options/html-phrases.php:25
1095
- msgid "Notification"
1096
- msgstr ""
1097
-
1098
- #: options/html-tools.php:10
1099
- msgid "wpDiscuz Tools"
1100
- msgstr ""
1101
-
1102
- #: options/html-tools.php:22 options/tools-layouts/options-export.php:8
1103
- msgid "Export options"
1104
- msgstr ""
1105
-
1106
- #: options/html-tools.php:23 options/tools-layouts/options-import.php:7
1107
- msgid "Import options"
1108
- msgstr ""
1109
-
1110
- #: options/options-layouts/settings-customfields.php:12
1111
- msgid "Google Map API Key"
1112
- msgstr ""
1113
-
1114
- #: options/options-layouts/settings-general.php:11
1115
- msgid "Enable Quicktags"
1116
- msgstr ""
1117
-
1118
- #: options/options-layouts/settings-general.php:16
1119
- msgid "Use guest email to detect registered account"
1120
- msgstr ""
1121
-
1122
- #: options/options-layouts/settings-general.php:18
1123
- msgid ""
1124
- "Sometimes registered users comment as guest using the same email address. "
1125
- "wpDiscuz can detect the account role using guest email and display commenter "
1126
- "label correctly."
1127
- msgstr ""
1128
-
1129
- #: options/options-layouts/settings-general.php:25
1130
- msgid "Comment author name min length (for guests only)"
1131
- msgstr ""
1132
-
1133
- #: options/options-layouts/settings-general.php:29
1134
- #: options/options-layouts/settings-general.php:52
1135
- msgid "Min"
1136
- msgstr ""
1137
-
1138
- #: options/options-layouts/settings-general.php:32
1139
- #: options/options-layouts/settings-general.php:55
1140
- msgid "Max"
1141
- msgstr ""
1142
-
1143
- #: options/options-layouts/settings-general.php:38
1144
- msgid "Keep guest commenter credentials in browser cookies for x days"
1145
- msgstr ""
1146
-
1147
- #: options/options-layouts/settings-general.php:40
1148
- msgid "Set this option value -1 to make it unlimited."
1149
- msgstr ""
1150
-
1151
- #: options/options-layouts/settings-general.php:41
1152
- msgid "Set this option value 0 to clear those data when user closes browser."
1153
- msgstr ""
1154
-
1155
- #: options/options-layouts/settings-general.php:48
1156
- msgid "Comment text length"
1157
- msgstr ""
1158
-
1159
- #: options/options-layouts/settings-general.php:61
1160
- msgid ""
1161
- "The number of words before breaking comment text and showing \"Read more\" "
1162
- "link"
1163
- msgstr ""
1164
-
1165
- #: options/options-layouts/settings-general.php:63
1166
- msgid "Set this option value 0, to turn off comment text breaking function."
1167
- msgstr ""
1168
-
1169
- #: options/options-layouts/settings-general.php:69
1170
- msgid "Comment text size in pixels"
1171
- msgstr ""
1172
-
1173
- #: options/options-layouts/settings-general.php:82
1174
- msgid "Allow comment editing for"
1175
- msgstr ""
1176
-
1177
- #: options/options-layouts/settings-general.php:86
1178
- msgid "Do not allow"
1179
- msgstr ""
1180
-
1181
- #: options/options-layouts/settings-general.php:87
1182
- #: options/options-layouts/settings-general.php:88
1183
- #: options/options-layouts/settings-live-update.php:52
1184
- #: options/options-layouts/settings-live-update.php:53
1185
- #: options/options-layouts/settings-live-update.php:54
1186
- msgid "Minutes"
1187
- msgstr ""
1188
-
1189
- #: options/options-layouts/settings-general.php:89
1190
- #: options/phrases-layouts/phrases-datetime.php:72
1191
- msgid "Hour"
1192
- msgstr ""
1193
-
1194
- #: options/options-layouts/settings-general.php:90
1195
- #: options/options-layouts/settings-general.php:91
1196
- msgid "Hours"
1197
- msgstr ""
1198
-
1199
- #: options/options-layouts/settings-general.php:92
1200
- msgid "Unlimit"
1201
- msgstr ""
1202
-
1203
- #: options/options-layouts/settings-general.php:98
1204
- msgid "Redirect first commenter to"
1205
- msgstr ""
1206
-
1207
- #: options/options-layouts/settings-general.php:105
1208
- msgid "Do not redirect"
1209
- msgstr ""
1210
-
1211
- #: options/options-layouts/settings-general.php:112
1212
- msgid "Allow guests to vote on comments"
1213
- msgstr ""
1214
-
1215
- #: options/options-layouts/settings-general.php:117
1216
- msgid "Comments loading/pagination type"
1217
- msgstr ""
1218
-
1219
- #: options/options-layouts/settings-general.php:119
1220
- msgid ""
1221
- "You can manage the number of comments for [Load more] option in Settings > "
1222
- "Discussion page, using \"Break comments into pages with [X] top level "
1223
- "comments per page\" option. To show the default Wordpress comment pagination "
1224
- "you should enable the checkbox on bigining of the same option."
1225
- msgstr ""
1226
-
1227
- #: options/options-layouts/settings-general.php:125
1228
- #: options/options-layouts/settings-general.php:127
1229
- msgid "[Load more] Button"
1230
- msgstr ""
1231
-
1232
- #: options/options-layouts/settings-general.php:129
1233
- #: options/options-layouts/settings-general.php:131
1234
- msgid "[Load rest of all comments] Button"
1235
- msgstr ""
1236
-
1237
- #: options/options-layouts/settings-general.php:133
1238
- #: options/options-layouts/settings-general.php:135
1239
- msgid "Lazy load comments on scrolling"
1240
- msgstr ""
1241
-
1242
- #: options/options-layouts/settings-general.php:142
1243
- msgid "Use WordPress Date/Time format"
1244
- msgstr ""
1245
-
1246
- #: options/options-layouts/settings-general.php:143
1247
- msgid ""
1248
- "wpDiscuz shows Human Readable date format. If you check this option it'll "
1249
- "show the date/time format set in WordPress General Settings."
1250
- msgstr ""
1251
-
1252
- #: options/options-layouts/settings-general.php:149
1253
- msgid "Current Wordpress date/time format"
1254
- msgstr ""
1255
-
1256
- #: options/options-layouts/settings-general.php:155
1257
- msgid "Use Plugin .PO/.MO files"
1258
- msgstr ""
1259
-
1260
- #: options/options-layouts/settings-general.php:156
1261
- msgid ""
1262
- "wpDiscuz phrase system allows you to translate all front-end phrases. "
1263
- "However if you have a multi-language website it'll not allow you to add more "
1264
- "than one language translation. The only way to get it is the plugin "
1265
- "translation files (.PO / .MO). If wpDiscuz has the languages you need you "
1266
- "should check this option to disable phrase system and it'll automatically "
1267
- "translate all phrases based on language files according to current language."
1268
- msgstr ""
1269
-
1270
- #: options/options-layouts/settings-general.php:163
1271
- msgid ""
1272
- "Help wpDiscuz to grow allowing people to recognize which comment plugin you "
1273
- "use"
1274
- msgstr ""
1275
-
1276
- #: options/options-layouts/settings-general.php:165
1277
- msgid ""
1278
- "Please check this option on to help wpDiscuz get more popularity as your "
1279
- "thank to the hard work we do for you totally free. This option adds a very "
1280
- "small (16x16px) icon under the comment section which will allow your site "
1281
- "visitors recognize the name of comment solution you use."
1282
- msgstr ""
1283
-
1284
- #: options/options-layouts/settings-general.php:170
1285
- msgid "Thank you!"
1286
- msgstr ""
1287
-
1288
- #: options/options-layouts/settings-integrations.php:14
1289
- msgid "BuddyPress"
1290
- msgstr ""
1291
-
1292
- #: options/options-layouts/settings-integrations.php:15
1293
- msgid "Users Ultra"
1294
- msgstr ""
1295
-
1296
- #: options/options-layouts/settings-integrations.php:16
1297
- msgid "User Pro"
1298
- msgstr ""
1299
-
1300
- #: options/options-layouts/settings-integrations.php:17
1301
- msgid "Ultimate Member"
1302
- msgstr ""
1303
-
1304
- #: options/options-layouts/settings-integrations.php:18
1305
- msgid "MyCred"
1306
- msgstr ""
1307
-
1308
- #: options/options-layouts/settings-live-update.php:12
1309
- msgid "Live update options"
1310
- msgstr ""
1311
-
1312
- #: options/options-layouts/settings-live-update.php:13
1313
- msgid ""
1314
- "wpDiscuz 3 live update is very smart and doesn't overload your server even "
1315
- "if you're on Shared hosting plan and even your website is very active. "
1316
- "However we recommend to monitor your server resources if you're on a Shared "
1317
- "hosting plan. There are some very weak hosting plans which may not be able "
1318
- "to perform very frequently live update requests. If you found some issue you "
1319
- "can set the option below 30 seconds or more."
1320
- msgstr ""
1321
-
1322
- #: options/options-layouts/settings-live-update.php:18
1323
- msgid "Never update"
1324
- msgstr ""
1325
-
1326
- #: options/options-layouts/settings-live-update.php:20
1327
- msgid "Turn off \"Live Update\" function"
1328
- msgstr ""
1329
-
1330
- #: options/options-layouts/settings-live-update.php:22
1331
- #: options/options-layouts/settings-subscription.php:27
1332
- msgid "Show new comment/reply buttons to update manualy"
1333
- msgstr ""
1334
-
1335
- #: options/options-layouts/settings-live-update.php:24
1336
- msgid "Always check for new comments and show update buttons"
1337
- msgstr ""
1338
-
1339
- #: options/options-layouts/settings-live-update.php:26
1340
- #: options/options-layouts/settings-subscription.php:31
1341
- msgid "Always update"
1342
- msgstr ""
1343
-
1344
- #: options/options-layouts/settings-live-update.php:28
1345
- msgid "Always check for new comments and update automatically"
1346
- msgstr ""
1347
-
1348
- #: options/options-layouts/settings-live-update.php:35
1349
- msgid "Disable live update for guests"
1350
- msgstr ""
1351
-
1352
- #: options/options-layouts/settings-live-update.php:43
1353
- msgid "Update comment list every"
1354
- msgstr ""
1355
-
1356
- #: options/options-layouts/settings-live-update.php:48
1357
- #: options/options-layouts/settings-live-update.php:49
1358
- #: options/options-layouts/settings-live-update.php:50
1359
- msgid "Seconds"
1360
- msgstr ""
1361
-
1362
- #: options/options-layouts/settings-live-update.php:51
1363
- #: options/phrases-layouts/phrases-datetime.php:92
1364
- msgid "Minute"
1365
- msgstr ""
1366
-
1367
- #: options/options-layouts/settings-show-hide.php:7
1368
- msgid "Show/Hide Components"
1369
- msgstr ""
1370
-
1371
- #: options/options-layouts/settings-show-hide.php:11
1372
- msgid "Show logged-in user name and logout link on top of main form"
1373
- msgstr ""
1374
-
1375
- #: options/options-layouts/settings-show-hide.php:15
1376
- msgid "Hide Reply button for Guests"
1377
- msgstr ""
1378
-
1379
- #: options/options-layouts/settings-show-hide.php:19
1380
- msgid "Hide Reply button for Members"
1381
- msgstr ""
1382
-
1383
- #: options/options-layouts/settings-show-hide.php:23
1384
- msgid "Hide Commenter Labels"
1385
- msgstr ""
1386
-
1387
- #: options/options-layouts/settings-show-hide.php:27
1388
- msgid "Hide Voting buttons"
1389
- msgstr ""
1390
-
1391
- #: options/options-layouts/settings-show-hide.php:31
1392
- msgid "Comment voting statistic mode"
1393
- msgstr ""
1394
-
1395
- #: options/options-layouts/settings-show-hide.php:36
1396
- msgid "total count"
1397
- msgstr ""
1398
-
1399
- #: options/options-layouts/settings-show-hide.php:40
1400
- msgid "separate count"
1401
- msgstr ""
1402
-
1403
- #: options/options-layouts/settings-show-hide.php:46
1404
- msgid "Show Share Buttons"
1405
- msgstr ""
1406
-
1407
- #: options/options-layouts/settings-show-hide.php:65
1408
- msgid "Facebook Application ID"
1409
- msgstr ""
1410
-
1411
- #: options/options-layouts/settings-show-hide.php:81
1412
- msgid ""
1413
- "The plugin captcha directory is not writable! Please set writable "
1414
- "permissions on \"wpdiscuz/utils/temp\" directory in order to use the first "
1415
- "type of captcha generation"
1416
- msgstr ""
1417
-
1418
- #: options/options-layouts/settings-show-hide.php:85
1419
- msgid "Captcha generation type"
1420
- msgstr ""
1421
-
1422
- #: options/options-layouts/settings-show-hide.php:91
1423
- msgid "use file system"
1424
- msgstr ""
1425
-
1426
- #: options/options-layouts/settings-show-hide.php:96
1427
- msgid "use wordpress session"
1428
- msgstr ""
1429
-
1430
- #: options/options-layouts/settings-show-hide.php:102
1431
- msgid "Hide header text"
1432
- msgstr ""
1433
-
1434
- #: options/options-layouts/settings-show-hide.php:106
1435
- msgid "Show sorting buttons"
1436
- msgstr ""
1437
-
1438
- #: options/options-layouts/settings-show-hide.php:110
1439
- msgid "Set comments ordering to \"Most voted\" by default "
1440
- msgstr ""
1441
-
1442
- #: options/options-layouts/settings-show-hide.php:114
1443
- msgid "Hide comment link"
1444
- msgstr ""
1445
-
1446
- #: options/options-layouts/settings-show-hide.php:118
1447
- msgid "Enable automatic image URL to image HTML conversion"
1448
- msgstr ""
1449
-
1450
- #: options/options-layouts/settings-social.php:50
1451
- #: options/options-layouts/settings-social.php:61
1452
- #: options/options-layouts/settings-social.php:72
1453
- #: options/options-layouts/settings-social.php:83
1454
- msgid "Activate"
1455
- msgstr ""
1456
-
1457
- #: options/options-layouts/settings-social.php:54
1458
- #: options/options-layouts/settings-social.php:65
1459
- #: options/options-layouts/settings-social.php:76
1460
- #: options/options-layouts/settings-social.php:87
1461
- msgid "View details/Install"
1462
- msgstr ""
1463
-
1464
- #: options/options-layouts/settings-social.php:125
1465
- msgid ""
1466
- "You can use one of these most popular Social Login Plugins to allow your "
1467
- "visitors login and comment with Facebook, Twitter, Google+, Wordpress, VK, "
1468
- "OK and lots of other social network service accounts. All social login "
1469
- "buttons will be fully integrated with wpDiscuz comment forms."
1470
- msgstr ""
1471
-
1472
- #: options/options-layouts/settings-style.php:7
1473
- msgid "Background and Colors"
1474
- msgstr ""
1475
-
1476
- #: options/options-layouts/settings-style.php:12
1477
- msgid "Comment Form Background Color"
1478
- msgstr ""
1479
-
1480
- #: options/options-layouts/settings-style.php:16
1481
- #: options/options-layouts/settings-style.php:25
1482
- #: options/options-layouts/settings-style.php:34
1483
- #: options/options-layouts/settings-style.php:43
1484
- #: options/options-layouts/settings-style.php:70
1485
- #: options/options-layouts/settings-style.php:79
1486
- #: options/options-layouts/settings-style.php:88
1487
- #: options/options-layouts/settings-style.php:98
1488
- #: options/options-layouts/settings-style.php:107
1489
- #: options/options-layouts/settings-style.php:116
1490
- #: options/options-layouts/settings-style.php:130
1491
- msgid "Example: #00FF00"
1492
- msgstr ""
1493
-
1494
- #: options/options-layouts/settings-style.php:21
1495
- msgid "Comment Background Color"
1496
- msgstr ""
1497
-
1498
- #: options/options-layouts/settings-style.php:30
1499
- msgid "Reply Background Color"
1500
- msgstr ""
1501
-
1502
- #: options/options-layouts/settings-style.php:39
1503
- msgid "Comment Text Color"
1504
- msgstr ""
1505
-
1506
- #: options/options-layouts/settings-style.php:48
1507
- msgid "Button Color"
1508
- msgstr ""
1509
-
1510
- #: options/options-layouts/settings-style.php:53
1511
- msgid "Share Buttons"
1512
- msgstr ""
1513
-
1514
- #: options/options-layouts/settings-style.php:54
1515
- #: options/options-layouts/settings-style.php:57
1516
- #: options/options-layouts/settings-style.php:60
1517
- msgid "Text Color"
1518
- msgstr ""
1519
-
1520
- #: options/options-layouts/settings-style.php:55
1521
- #: options/options-layouts/settings-style.php:58
1522
- #: options/options-layouts/settings-style.php:61
1523
- msgid "Border Color"
1524
- msgstr ""
1525
-
1526
- #: options/options-layouts/settings-style.php:56
1527
- msgid "Vote Buttons"
1528
- msgstr ""
1529
-
1530
- #: options/options-layouts/settings-style.php:59
1531
- msgid "Action Buttons"
1532
- msgstr ""
1533
-
1534
- #: options/options-layouts/settings-style.php:66
1535
- msgid "Comment form fields border color"
1536
- msgstr ""
1537
-
1538
- #: options/options-layouts/settings-style.php:75
1539
- msgid "New loaded comments' background color"
1540
- msgstr ""
1541
-
1542
- #: options/options-layouts/settings-style.php:84
1543
- msgid "Primary Color"
1544
- msgstr ""
1545
-
1546
- #: options/options-layouts/settings-style.php:94
1547
- msgid "Rating Stars Hover Color"
1548
- msgstr ""
1549
-
1550
- #: options/options-layouts/settings-style.php:103
1551
- msgid "Rating Stars Inactiv Color"
1552
- msgstr ""
1553
-
1554
- #: options/options-layouts/settings-style.php:112
1555
- msgid "Rating Stars Activ Color"
1556
- msgstr ""
1557
-
1558
- #: options/options-layouts/settings-style.php:127
1559
- msgid "label color"
1560
- msgstr ""
1561
-
1562
- #: options/options-layouts/settings-style.php:138
1563
- msgid "Disable font awesome css loading"
1564
- msgstr ""
1565
-
1566
- #: options/options-layouts/settings-style.php:146
1567
- msgid "Custom CSS Code"
1568
- msgstr ""
1569
-
1570
- #: options/options-layouts/settings-subscription.php:7
1571
- msgid "Email Subscription Settings"
1572
- msgstr ""
1573
-
1574
- #: options/options-layouts/settings-subscription.php:11
1575
- msgid "Disable subscription confirmation for registered users"
1576
- msgstr ""
1577
-
1578
- #: options/options-layouts/settings-subscription.php:15
1579
- msgid "Disable subscription confirmation for guests"
1580
- msgstr ""
1581
-
1582
- #: options/options-layouts/settings-subscription.php:19
1583
- msgid "Show subscription types in dropdown"
1584
- msgstr ""
1585
-
1586
- #: options/options-layouts/settings-subscription.php:23
1587
- msgid "Both"
1588
- msgstr ""
1589
-
1590
- #: options/options-layouts/settings-subscription.php:25
1591
- msgid "Both post and all comments subscription"
1592
- msgstr ""
1593
-
1594
- #: options/options-layouts/settings-subscription.php:29
1595
- msgid "Post subscription"
1596
- msgstr ""
1597
-
1598
- #: options/options-layouts/settings-subscription.php:33
1599
- msgid "All comments subscription"
1600
- msgstr ""
1601
-
1602
- #: options/options-layouts/settings-subscription.php:40
1603
- msgid "Show \"Notify of new replies to this comment\""
1604
- msgstr ""
1605
-
1606
- #: options/options-layouts/settings-subscription.php:42
1607
- msgid ""
1608
- "wpDiscuz is the only comment plugin which allows you to subscribe to certain "
1609
- "comment replies. This option is located above [Post Comment] button in "
1610
- "comment form. You can disable this subscription way by unchecking this "
1611
- "option."
1612
- msgstr ""
1613
-
1614
- #: options/options-layouts/settings-subscription.php:49
1615
- msgid "\"Notify of new replies to this comment\" checked by default"
1616
- msgstr ""
1617
-
1618
- #: options/options-layouts/settings-subscription.php:56
1619
- msgid "Use Postmatic for subscriptions and commenting by email"
1620
- msgstr ""
1621
-
1622
- #: options/options-layouts/settings-subscription.php:57
1623
- msgid ""
1624
- "Postmatic allows your users subscribe to comments. Instead of just being "
1625
- "notified, they add a reply right from their inbox."
1626
- msgstr ""
1627
-
1628
- #: options/phrases-layouts/phrases-comment.php:7
1629
- msgid "Comment Template Phrases"
1630
- msgstr ""
1631
-
1632
- #: options/phrases-layouts/phrases-comment.php:158
1633
- msgid "Save edited comment button text"
1634
- msgstr ""
1635
-
1636
- #: options/phrases-layouts/phrases-comment.php:168
1637
- msgid "Cancel comment editing button text"
1638
- msgstr ""
1639
-
1640
- #: options/phrases-layouts/phrases-comment.php:178
1641
- msgid "Comment read more link text"
1642
- msgstr ""
1643
-
1644
- #: options/phrases-layouts/phrases-comment.php:188
1645
- msgid "Anonymous commenter name"
1646
- msgstr ""
1647
-
1648
- #: options/phrases-layouts/phrases-datetime.php:7
1649
- msgid "Date/Time Phrases"
1650
- msgstr ""
1651
-
1652
- #: options/phrases-layouts/phrases-datetime.php:12
1653
- msgid "Year"
1654
- msgstr ""
1655
-
1656
- #: options/phrases-layouts/phrases-datetime.php:22
1657
- msgid "Years (Plural Form)"
1658
- msgstr ""
1659
-
1660
- #: options/phrases-layouts/phrases-datetime.php:26
1661
- msgid "Years"
1662
- msgstr ""
1663
-
1664
- #: options/phrases-layouts/phrases-datetime.php:32
1665
- msgid "Month"
1666
- msgstr ""
1667
-
1668
- #: options/phrases-layouts/phrases-datetime.php:42
1669
- msgid "Months (Plural Form)"
1670
- msgstr ""
1671
-
1672
- #: options/phrases-layouts/phrases-datetime.php:52
1673
- msgid "Day"
1674
- msgstr ""
1675
-
1676
- #: options/phrases-layouts/phrases-datetime.php:62
1677
- msgid "Days (Plural Form)"
1678
- msgstr ""
1679
-
1680
- #: options/phrases-layouts/phrases-datetime.php:82
1681
- msgid "Hours (Plural Form)"
1682
- msgstr ""
1683
-
1684
- #: options/phrases-layouts/phrases-datetime.php:102
1685
- msgid "Minutes (Plural Form)"
1686
- msgstr ""
1687
-
1688
- #: options/phrases-layouts/phrases-datetime.php:112
1689
- msgid "Second"
1690
- msgstr ""
1691
-
1692
- #: options/phrases-layouts/phrases-datetime.php:122
1693
- msgid "Seconds (Plural Form)"
1694
- msgstr ""
1695
-
1696
- #: options/phrases-layouts/phrases-datetime.php:132
1697
- msgid "Commented \"right now\" text"
1698
- msgstr ""
1699
-
1700
- #: options/phrases-layouts/phrases-datetime.php:142
1701
- msgid "Ago text"
1702
- msgstr ""
1703
-
1704
- #: options/phrases-layouts/phrases-datetime.php:152
1705
- msgid "\"Today\" text"
1706
- msgstr ""
1707
-
1708
- #: options/phrases-layouts/phrases-email.php:7
1709
- msgid "Email Template Phrases"
1710
- msgstr ""
1711
-
1712
- #: options/phrases-layouts/phrases-email.php:12
1713
- msgid "Email Subject"
1714
- msgstr ""
1715
-
1716
- #: options/phrases-layouts/phrases-email.php:22
1717
- msgid "Email Message"
1718
- msgstr ""
1719
-
1720
- #: options/phrases-layouts/phrases-email.php:32
1721
- msgid "New Reply Subject"
1722
- msgstr ""
1723
-
1724
- #: options/phrases-layouts/phrases-email.php:42
1725
- msgid "New Reply Message"
1726
- msgstr ""
1727
-
1728
- #: options/phrases-layouts/phrases-email.php:62
1729
- #: options/phrases-layouts/phrases-email.php:66
1730
- msgid "Ignore Subscription"
1731
- msgstr ""
1732
-
1733
- #: options/phrases-layouts/phrases-email.php:92
1734
- msgid "Subscribe Confirmation Email Subject"
1735
- msgstr ""
1736
-
1737
- #: options/phrases-layouts/phrases-email.php:102
1738
- msgid "Subscribe Confirmation Email Content"
1739
- msgstr ""
1740
-
1741
- #: options/phrases-layouts/phrases-form.php:7
1742
- msgid "Form Template Phrases"
1743
- msgstr ""
1744
-
1745
- #: options/phrases-layouts/phrases-form.php:12
1746
- msgid "Comment Field Start"
1747
- msgstr ""
1748
-
1749
- #: options/phrases-layouts/phrases-form.php:22
1750
- msgid "Comment Field Join"
1751
- msgstr ""
1752
-
1753
- #: options/phrases-layouts/phrases-form.php:32
1754
- msgid "Email Field"
1755
- msgstr ""
1756
-
1757
- #: options/phrases-layouts/phrases-form.php:52
1758
- msgid "Notify on new comments"
1759
- msgstr ""
1760
-
1761
- #: options/phrases-layouts/phrases-form.php:62
1762
- msgid "Notify on all new replies"
1763
- msgstr ""
1764
-
1765
- #: options/phrases-layouts/phrases-form.php:66
1766
- msgid "new replies to all my comments"
1767
- msgstr ""
1768
-
1769
- #: options/phrases-layouts/phrases-form.php:72
1770
- msgid "Notify on new replies (checkbox)"
1771
- msgstr ""
1772
-
1773
- #: options/phrases-layouts/phrases-form.php:122
1774
- msgid "Subscribed on this comment replies"
1775
- msgstr ""
1776
-
1777
- #: options/phrases-layouts/phrases-form.php:132
1778
- msgid "Subscribed on all your comments replies"
1779
- msgstr ""
1780
-
1781
- #: options/phrases-layouts/phrases-form.php:142
1782
- msgid "Subscribed on this post"
1783
- msgstr ""
1784
-
1785
- #: options/phrases-layouts/phrases-general.php:7
1786
- msgid "General Phrases"
1787
- msgstr ""
1788
-
1789
- #: options/phrases-layouts/phrases-general.php:12
1790
- msgid "Be the first to comment"
1791
- msgstr ""
1792
-
1793
- #: options/phrases-layouts/phrases-general.php:32
1794
- msgid "Comment (Plural Form)"
1795
- msgstr ""
1796
-
1797
- #: options/phrases-layouts/phrases-general.php:42
1798
- msgid "On"
1799
- msgstr ""
1800
-
1801
- #: options/phrases-layouts/phrases-general.php:52
1802
- msgid "Load More Button"
1803
- msgstr ""
1804
-
1805
- #: options/phrases-layouts/phrases-general.php:72
1806
- msgid "Button text if has new comment"
1807
- msgstr ""
1808
-
1809
- #: options/phrases-layouts/phrases-general.php:82
1810
- msgid "Button text if has new comments (Plural Form)"
1811
- msgstr ""
1812
-
1813
- #: options/phrases-layouts/phrases-general.php:86
1814
- msgid "New Comments"
1815
- msgstr ""
1816
-
1817
- #: options/phrases-layouts/phrases-general.php:92
1818
- msgid "Button text if has new reply"
1819
- msgstr ""
1820
-
1821
- #: options/phrases-layouts/phrases-general.php:102
1822
- msgid "Button text if has new replies (Plural Form)"
1823
- msgstr ""
1824
-
1825
- #: options/phrases-layouts/phrases-general.php:106
1826
- msgid "New Replies"
1827
- msgstr ""
1828
-
1829
- #: options/phrases-layouts/phrases-general.php:112
1830
- msgid "Text on load more button if has new comment(s)"
1831
- msgstr ""
1832
-
1833
- #: options/phrases-layouts/phrases-notification.php:7
1834
- msgid "Notification Phrases"
1835
- msgstr ""
1836
-
1837
- #: options/phrases-layouts/phrases-notification.php:12
1838
- msgid "You\\'re subscribed to"
1839
- msgstr ""
1840
-
1841
- #: options/phrases-layouts/phrases-notification.php:43
1842
- msgid "Postmatic subscription label"
1843
- msgstr ""
1844
-
1845
- #: options/phrases-layouts/phrases-notification.php:54
1846
- msgid "Error message for empty field"
1847
- msgstr ""
1848
-
1849
- #: options/phrases-layouts/phrases-notification.php:64
1850
- msgid "Error message for invalid email field"
1851
- msgstr ""
1852
-
1853
- #: options/phrases-layouts/phrases-notification.php:74
1854
- msgid "Error message for invalid website url field"
1855
- msgstr ""
1856
-
1857
- #: options/phrases-layouts/phrases-notification.php:94
1858
- msgid "Logged in as"
1859
- msgstr ""
1860
-
1861
- #: options/phrases-layouts/phrases-notification.php:114
1862
- msgid "Logged In"
1863
- msgstr ""
1864
-
1865
- #: options/phrases-layouts/phrases-notification.php:124
1866
- msgid "To post a comment"
1867
- msgstr ""
1868
-
1869
- #: options/phrases-layouts/phrases-notification.php:144
1870
- msgid "You can vote only 1 time"
1871
- msgstr ""
1872
-
1873
- #: options/phrases-layouts/phrases-notification.php:164
1874
- msgid "Login To Vote"
1875
- msgstr ""
1876
-
1877
- #: options/phrases-layouts/phrases-notification.php:174
1878
- msgid "You Cannot Vote On Your Comment"
1879
- msgstr ""
1880
-
1881
- #: options/phrases-layouts/phrases-notification.php:184
1882
- msgid "You are not allowed to vote for this comment (Voting from same IP)"
1883
- msgstr ""
1884
-
1885
- #: options/phrases-layouts/phrases-notification.php:214
1886
- msgid "Comment waiting moderation"
1887
- msgstr ""
1888
-
1889
- #: options/phrases-layouts/phrases-notification.php:224
1890
- msgid "Message if input text length is too short"
1891
- msgstr ""
1892
-
1893
- #: options/phrases-layouts/phrases-notification.php:234
1894
- msgid "Message if input text length is too long"
1895
- msgstr ""
1896
-
1897
- #: options/phrases-layouts/phrases-notification.php:245
1898
- msgid "Message if comment was not updated"
1899
- msgstr ""
1900
-
1901
- #: options/phrases-layouts/phrases-notification.php:255
1902
- msgid "Message if comment no longer possible to edit"
1903
- msgstr ""
1904
-
1905
- #: options/phrases-layouts/phrases-notification.php:265
1906
- msgid "Message if comment text not changed"
1907
- msgstr ""
1908
-
1909
- #: options/phrases-layouts/phrases-notification.php:269
1910
- msgid "TYou've not made any changes"
1911
- msgstr ""
1912
-
1913
- #: options/tools-layouts/options-export.php:10
1914
- msgid ""
1915
- "You can transfer the saved options data between different installs by "
1916
- "copying the text inside this textarea. To import data from another install, "
1917
- "navigate to \"Import Options\" Tab and put the data in textarea with the one "
1918
- "from another install and click \"Save Changes\". Make sure you use the same "
1919
- "wpDiscuz versions."
1920
- msgstr ""
1921
-
1922
- #: options/tools-layouts/options-import.php:9
1923
- msgid ""
1924
- "You can transfer the saved options data between different installs by "
1925
- "copying the text inside this textarea in \"Export Options\" Tab. To import "
1926
- "data from another install, just put the data in textarea with the one from "
1927
- "another install and click \"Save Changes\". Make sure you use the same "
1928
- "wpDiscuz versions."
1929
- msgstr ""
1930
-
1931
- #: templates/comment/comment-form.php:83
1932
- msgid "Unable to send an email"
1933
- msgstr ""
1934
-
1935
- #: templates/comment/comment-form.php:85
1936
- msgid "Subscription not successed"
1937
- msgstr ""
1938
-
1939
- #: templates/comment/comment-form.php:307
1940
- msgid "wpDiscuz"
1941
- msgstr ""
1942
-
1943
- #. Plugin Name of the plugin/theme
1944
- msgid "Comments - wpDiscuz"
1945
- msgstr ""
1946
-
1947
- #. Plugin URI of the plugin/theme
1948
- msgid "http://wpdiscuz.com/"
1949
- msgstr ""
1950
-
1951
- #. Description of the plugin/theme
1952
- msgid ""
1953
- "Better comment system. Wordpress post comments and discussion plugin. Allows "
1954
- "your visitors discuss, vote for comments and share."
1955
- msgstr ""
1956
-
1957
- #. Author of the plugin/theme
1958
- msgid "gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
1959
- msgstr ""
1960
-
1961
- #. Author URI of the plugin/theme
1962
- msgid "http://gvectors.com/"
1963
- 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: 2016-11-07 15:01+0400\n"
7
+ "PO-Revision-Date: 2016-11-07 15:01+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:857 options/options-layouts/settings-social.php:40
24
+ #: options/options-layouts/settings-social.php:42
25
+ #: options/options-layouts/settings-social.php:44
26
+ #: options/options-layouts/settings-social.php:46
27
+ msgid "Settings"
28
+ msgstr ""
29
+
30
+ #: class.WpdiscuzCore.php:859
31
+ msgid "Phrases"
32
+ msgstr ""
33
+
34
+ #: class.WpdiscuzCore.php:900 options/phrases-layouts/phrases-comment.php:116
35
+ msgid "Admin"
36
+ msgstr ""
37
+
38
+ #: class.WpdiscuzCore.php:902 class.WpdiscuzCore.php:911
39
+ #: options/phrases-layouts/phrases-comment.php:118
40
+ msgid "Author"
41
+ msgstr ""
42
+
43
+ #: class.WpdiscuzCore.php:906 options/phrases-layouts/phrases-comment.php:124
44
+ msgid "Member"
45
+ msgstr ""
46
+
47
+ #: class.WpdiscuzCore.php:912 options/phrases-layouts/phrases-comment.php:122
48
+ msgid "Guest"
49
+ msgstr ""
50
+
51
+ #: forms/wpDiscuzForm.php:89
52
+ msgid "Invalid Data !!!"
53
+ msgstr ""
54
+
55
+ #: forms/wpDiscuzForm.php:97 forms/wpDiscuzForm.php:143
56
+ msgid "Forms"
57
+ msgstr ""
58
+
59
+ #: forms/wpDiscuzForm.php:98 options/html-phrases.php:21
60
+ msgid "Form"
61
+ msgstr ""
62
+
63
+ #: forms/wpDiscuzForm.php:99
64
+ msgid "Add New"
65
+ msgstr ""
66
+
67
+ #: forms/wpDiscuzForm.php:100
68
+ msgid "Add New Form"
69
+ msgstr ""
70
+
71
+ #: forms/wpDiscuzForm.php:101
72
+ msgid "Edit Form"
73
+ msgstr ""
74
+
75
+ #: forms/wpDiscuzForm.php:102
76
+ msgid "You did not create any forms yet"
77
+ msgstr ""
78
+
79
+ #: forms/wpDiscuzForm.php:103
80
+ msgid "Nothing found in Trash"
81
+ msgstr ""
82
+
83
+ #: forms/wpDiscuzForm.php:104
84
+ msgid "Search Forms"
85
+ msgstr ""
86
+
87
+ #: forms/wpDiscuzForm.php:157
88
+ msgid "Title"
89
+ msgstr ""
90
+
91
+ #: forms/wpDiscuzForm.php:158
92
+ msgid "Post Types"
93
+ msgstr ""
94
+
95
+ #: forms/wpDiscuzForm.php:159
96
+ msgid "Post IDs"
97
+ msgstr ""
98
+
99
+ #: forms/wpDiscuzForm.php:160 forms/wpdFormAttr/Form.php:534
100
+ msgid "Language"
101
+ msgstr ""
102
+
103
+ #: forms/wpDiscuzForm.php:161
104
+ msgid "Date"
105
+ msgstr ""
106
+
107
+ #: forms/wpDiscuzForm.php:206
108
+ msgid "Field Types"
109
+ msgstr ""
110
+
111
+ #: forms/wpDiscuzForm.php:207 forms/wpdFormAttr/Row.php:23
112
+ msgid "Two column"
113
+ msgstr ""
114
+
115
+ #: forms/wpDiscuzForm.php:208 forms/wpdFormAttr/Field/Field.php:61
116
+ #: forms/wpdFormAttr/Row.php:24
117
+ msgid "Delete"
118
+ msgstr ""
119
+
120
+ #: forms/wpDiscuzForm.php:209 forms/wpdFormAttr/Row.php:25
121
+ msgid "Move"
122
+ msgstr ""
123
+
124
+ #: forms/wpDiscuzForm.php:210 forms/wpdFormAttr/Row.php:69
125
+ msgid "Add Field"
126
+ msgstr ""
127
+
128
+ #: forms/wpDiscuzForm.php:211 forms/wpdFormAttr/Field/Field.php:58
129
+ #: options/class.WpdiscuzOptionsSerialized.php:567
130
+ #: options/phrases-layouts/phrases-comment.php:32
131
+ msgid "Edit"
132
+ msgstr ""
133
+
134
+ #: forms/wpDiscuzForm.php:212
135
+ msgid "You can not delete default field."
136
+ msgstr ""
137
+
138
+ #: forms/wpDiscuzForm.php:213
139
+ msgid "You really want to delete this item ?"
140
+ msgstr ""
141
+
142
+ #: forms/wpDiscuzForm.php:220
143
+ msgid "Permission Denied !!!"
144
+ msgstr ""
145
+
146
+ #: forms/wpDiscuzForm.php:245 forms/wpdFormAttr/Form.php:504
147
+ #: forms/wpdFormAttr/html/admin-form-fields-list.php:18
148
+ #: options/options-layouts/settings-customfields.php:7
149
+ msgid "Custom Fields"
150
+ msgstr ""
151
+
152
+ #: forms/wpDiscuzForm.php:293
153
+ msgid "Custom CSS"
154
+ msgstr ""
155
+
156
+ #: forms/wpDiscuzForm.php:344
157
+ msgid "Default Form"
158
+ msgstr ""
159
+
160
+ #: forms/wpDiscuzForm.php:375 forms/wpDiscuzForm.php:383
161
+ #: forms/wpdFormAttr/Form.php:569
162
+ msgid "Leave a Reply"
163
+ msgstr ""
164
+
165
+ #: forms/wpDiscuzForm.php:398 forms/wpdFormAttr/Field/CheckboxField.php:12
166
+ #: forms/wpdFormAttr/Field/ColorField.php:12
167
+ #: forms/wpdFormAttr/Field/DateField.php:12
168
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:25
169
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:19
170
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:18
171
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:64
172
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:18
173
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:18
174
+ #: forms/wpdFormAttr/Field/NumberField.php:12
175
+ #: forms/wpdFormAttr/Field/RadioField.php:12
176
+ #: forms/wpdFormAttr/Field/RatingField.php:12
177
+ #: forms/wpdFormAttr/Field/SelectField.php:12
178
+ #: forms/wpdFormAttr/Field/TextAreaField.php:13
179
+ #: forms/wpdFormAttr/Field/TextField.php:12
180
+ #: forms/wpdFormAttr/Field/UrlField.php:12 forms/wpdFormAttr/Form.php:658
181
+ msgid "Name"
182
+ msgstr ""
183
+
184
+ #: forms/wpDiscuzForm.php:400 forms/wpdFormAttr/Field/DefaultField/Email.php:64
185
+ #: forms/wpdFormAttr/Form.php:665
186
+ #: options/class.WpdiscuzOptionsSerialized.php:554 options/html-phrases.php:24
187
+ msgid "Email"
188
+ msgstr ""
189
+
190
+ #: forms/wpDiscuzForm.php:402
191
+ msgid "WebSite URL"
192
+ msgstr ""
193
+
194
+ #: forms/wpDiscuzForm.php:405
195
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:78
196
+ #: forms/wpdFormAttr/Form.php:688
197
+ msgid "Post Comment"
198
+ msgstr ""
199
+
200
+ #: forms/wpDiscuzForm.php:414
201
+ msgid "Clone Form"
202
+ msgstr ""
203
+
204
+ #: forms/wpDiscuzForm.php:426
205
+ msgid "Clone"
206
+ msgstr ""
207
+
208
+ #: forms/wpDiscuzForm.php:463
209
+ msgid ""
210
+ "Comment Form is not detected, please navigate to form manager page to create "
211
+ "it. "
212
+ msgstr ""
213
+
214
+ #: forms/wpDiscuzForm.php:464
215
+ msgid "Add Comment Form"
216
+ msgstr ""
217
+
218
+ #: forms/wpdFormAttr/Field/CheckboxField.php:14
219
+ #: forms/wpdFormAttr/Field/ColorField.php:14
220
+ #: forms/wpdFormAttr/Field/DateField.php:14
221
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:27
222
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:21
223
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:20
224
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:20
225
+ #: forms/wpdFormAttr/Field/NumberField.php:14
226
+ #: forms/wpdFormAttr/Field/RadioField.php:14
227
+ #: forms/wpdFormAttr/Field/SelectField.php:14
228
+ #: forms/wpdFormAttr/Field/TextAreaField.php:15
229
+ #: forms/wpdFormAttr/Field/TextField.php:14
230
+ #: forms/wpdFormAttr/Field/UrlField.php:14
231
+ msgid "Also used for field placeholder"
232
+ msgstr ""
233
+
234
+ #: forms/wpdFormAttr/Field/CheckboxField.php:17
235
+ #: forms/wpdFormAttr/Field/ColorField.php:17
236
+ #: forms/wpdFormAttr/Field/DateField.php:17
237
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:30
238
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:24
239
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:23
240
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:23
241
+ #: forms/wpdFormAttr/Field/NumberField.php:17
242
+ #: forms/wpdFormAttr/Field/RadioField.php:17
243
+ #: forms/wpdFormAttr/Field/RatingField.php:16
244
+ #: forms/wpdFormAttr/Field/SelectField.php:17
245
+ #: forms/wpdFormAttr/Field/TextAreaField.php:18
246
+ #: forms/wpdFormAttr/Field/TextField.php:17
247
+ #: forms/wpdFormAttr/Field/UrlField.php:17
248
+ msgid "Description"
249
+ msgstr ""
250
+
251
+ #: forms/wpdFormAttr/Field/CheckboxField.php:19
252
+ #: forms/wpdFormAttr/Field/ColorField.php:19
253
+ #: forms/wpdFormAttr/Field/DateField.php:19
254
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:32
255
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:26
256
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:25
257
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:25
258
+ #: forms/wpdFormAttr/Field/NumberField.php:19
259
+ #: forms/wpdFormAttr/Field/NumberField.php:24
260
+ #: forms/wpdFormAttr/Field/NumberField.php:29
261
+ #: forms/wpdFormAttr/Field/RadioField.php:19
262
+ #: forms/wpdFormAttr/Field/RatingField.php:18
263
+ #: forms/wpdFormAttr/Field/SelectField.php:19
264
+ #: forms/wpdFormAttr/Field/TextAreaField.php:20
265
+ #: forms/wpdFormAttr/Field/TextField.php:19
266
+ #: forms/wpdFormAttr/Field/UrlField.php:19
267
+ msgid ""
268
+ "Field specific short description or some rule related to inserted "
269
+ "information."
270
+ msgstr ""
271
+
272
+ #: forms/wpdFormAttr/Field/CheckboxField.php:28
273
+ #: forms/wpdFormAttr/Field/RadioField.php:28
274
+ #: forms/wpdFormAttr/Field/SelectField.php:28
275
+ msgid "Values"
276
+ msgstr ""
277
+
278
+ #: forms/wpdFormAttr/Field/CheckboxField.php:30
279
+ msgid "Please insert one value per line"
280
+ msgstr ""
281
+
282
+ #: forms/wpdFormAttr/Field/CheckboxField.php:33
283
+ #: forms/wpdFormAttr/Field/ColorField.php:29
284
+ #: forms/wpdFormAttr/Field/DateField.php:29
285
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:36
286
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:35
287
+ #: forms/wpdFormAttr/Field/NumberField.php:39
288
+ #: forms/wpdFormAttr/Field/RadioField.php:33
289
+ #: forms/wpdFormAttr/Field/RatingField.php:28
290
+ #: forms/wpdFormAttr/Field/SelectField.php:33
291
+ #: forms/wpdFormAttr/Field/TextAreaField.php:23
292
+ #: forms/wpdFormAttr/Field/TextField.php:29
293
+ #: forms/wpdFormAttr/Field/UrlField.php:29
294
+ msgid "Field is required"
295
+ msgstr ""
296
+
297
+ #: forms/wpdFormAttr/Field/CheckboxField.php:37
298
+ #: forms/wpdFormAttr/Field/ColorField.php:33
299
+ #: forms/wpdFormAttr/Field/DateField.php:33
300
+ #: forms/wpdFormAttr/Field/NumberField.php:43
301
+ #: forms/wpdFormAttr/Field/RadioField.php:37
302
+ #: forms/wpdFormAttr/Field/SelectField.php:37
303
+ #: forms/wpdFormAttr/Field/TextAreaField.php:27
304
+ #: forms/wpdFormAttr/Field/TextField.php:33
305
+ #: forms/wpdFormAttr/Field/UrlField.php:33
306
+ msgid "Display on reply form"
307
+ msgstr ""
308
+
309
+ #: forms/wpdFormAttr/Field/CheckboxField.php:41
310
+ #: forms/wpdFormAttr/Field/ColorField.php:37
311
+ #: forms/wpdFormAttr/Field/DateField.php:37
312
+ #: forms/wpdFormAttr/Field/NumberField.php:47
313
+ #: forms/wpdFormAttr/Field/RadioField.php:41
314
+ #: forms/wpdFormAttr/Field/RatingField.php:32
315
+ #: forms/wpdFormAttr/Field/SelectField.php:41
316
+ #: forms/wpdFormAttr/Field/TextAreaField.php:31
317
+ #: forms/wpdFormAttr/Field/TextField.php:37
318
+ #: forms/wpdFormAttr/Field/UrlField.php:37
319
+ msgid "Display on comment"
320
+ msgstr ""
321
+
322
+ #: forms/wpdFormAttr/Field/CheckboxField.php:139
323
+ #: forms/wpdFormAttr/Field/ColorField.php:102
324
+ #: forms/wpdFormAttr/Field/DateField.php:102
325
+ #: forms/wpdFormAttr/Field/NumberField.php:112
326
+ #: forms/wpdFormAttr/Field/RadioField.php:117
327
+ #: forms/wpdFormAttr/Field/RatingField.php:112
328
+ #: forms/wpdFormAttr/Field/SelectField.php:112
329
+ #: forms/wpdFormAttr/Field/TextAreaField.php:85
330
+ #: forms/wpdFormAttr/Field/TextField.php:96
331
+ #: forms/wpdFormAttr/Field/UrlField.php:96
332
+ msgid "field is required!"
333
+ msgstr ""
334
+
335
+ #: forms/wpdFormAttr/Field/ColorField.php:23
336
+ #: forms/wpdFormAttr/Field/DateField.php:23
337
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:30
338
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:29
339
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:29
340
+ #: forms/wpdFormAttr/Field/NumberField.php:33
341
+ #: forms/wpdFormAttr/Field/RatingField.php:22
342
+ #: forms/wpdFormAttr/Field/TextField.php:23
343
+ #: forms/wpdFormAttr/Field/UrlField.php:23
344
+ msgid "Field icon"
345
+ msgstr ""
346
+
347
+ #: forms/wpdFormAttr/Field/ColorField.php:26
348
+ #: forms/wpdFormAttr/Field/DateField.php:26
349
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:33
350
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:32
351
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:32
352
+ #: forms/wpdFormAttr/Field/NumberField.php:36
353
+ #: forms/wpdFormAttr/Field/RatingField.php:25
354
+ #: forms/wpdFormAttr/Field/TextField.php:26
355
+ #: forms/wpdFormAttr/Field/UrlField.php:26
356
+ msgid "Font-awesome icon library."
357
+ msgstr ""
358
+
359
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:35
360
+ msgid "Show for guests"
361
+ msgstr ""
362
+
363
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:39
364
+ msgid "Show for logged in users"
365
+ msgstr ""
366
+
367
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:107
368
+ #: forms/wpdFormAttr/Form.php:681
369
+ msgid "Code"
370
+ msgstr ""
371
+
372
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:114
373
+ msgid "Cannot create image file"
374
+ msgstr ""
375
+
376
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:115
377
+ msgid "Permission denied for file creation"
378
+ msgstr ""
379
+
380
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:116
381
+ msgid "PHP GD2 library is disabled"
382
+ msgstr ""
383
+
384
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:117
385
+ msgid "PNG image creation disabled"
386
+ msgstr ""
387
+
388
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:20
389
+ msgid "Button Text"
390
+ msgstr ""
391
+
392
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:35
393
+ msgid "Enable"
394
+ msgstr ""
395
+
396
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:83
397
+ #: forms/wpdFormAttr/Form.php:672
398
+ msgid "Website"
399
+ msgstr ""
400
+
401
+ #: forms/wpdFormAttr/Field/Field.php:52
402
+ msgid " (Submit Button)"
403
+ msgstr ""
404
+
405
+ #: forms/wpdFormAttr/Field/Field.php:54
406
+ msgid " (CAPTCHA)"
407
+ msgstr ""
408
+
409
+ #: forms/wpdFormAttr/Field/Field.php:84
410
+ msgid "Add To Form"
411
+ msgstr ""
412
+
413
+ #: forms/wpdFormAttr/Field/NumberField.php:22
414
+ msgid "Min Value"
415
+ msgstr ""
416
+
417
+ #: forms/wpdFormAttr/Field/NumberField.php:27
418
+ msgid "Max Value"
419
+ msgstr ""
420
+
421
+ #: forms/wpdFormAttr/Field/NumberField.php:116
422
+ msgid "value can not be less than"
423
+ msgstr ""
424
+
425
+ #: forms/wpdFormAttr/Field/NumberField.php:119
426
+ msgid "value can not be more than"
427
+ msgstr ""
428
+
429
+ #: forms/wpdFormAttr/Field/RadioField.php:30
430
+ #: forms/wpdFormAttr/Field/SelectField.php:30
431
+ msgid "New value new line"
432
+ msgstr ""
433
+
434
+ #: forms/wpdFormAttr/Form.php:543
435
+ msgid "Allow guests to comment"
436
+ msgstr ""
437
+
438
+ #: forms/wpdFormAttr/Form.php:547 forms/wpdFormAttr/Form.php:558
439
+ msgid "Yes"
440
+ msgstr ""
441
+
442
+ #: forms/wpdFormAttr/Form.php:549 forms/wpdFormAttr/Form.php:560
443
+ msgid "No"
444
+ msgstr ""
445
+
446
+ #: forms/wpdFormAttr/Form.php:554
447
+ msgid "Enable subscription bar"
448
+ msgstr ""
449
+
450
+ #: forms/wpdFormAttr/Form.php:565
451
+ msgid "Comment form header text"
452
+ msgstr ""
453
+
454
+ #: forms/wpdFormAttr/Form.php:574
455
+ msgid "Display comment form for post types"
456
+ msgstr ""
457
+
458
+ #: forms/wpdFormAttr/Form.php:581
459
+ msgid ""
460
+ "The red marked post types are already attached to other comment form. If you "
461
+ "set this form too, the old forms will not be used for them."
462
+ msgstr ""
463
+
464
+ #: forms/wpdFormAttr/Form.php:600
465
+ msgid "Display comment form for post IDs"
466
+ msgstr ""
467
+
468
+ #: forms/wpdFormAttr/Form.php:601
469
+ msgid ""
470
+ "You can use this form for certain posts/pages specified by comma separated "
471
+ "IDs."
472
+ msgstr ""
473
+
474
+ #: forms/wpdFormAttr/Form.php:612
475
+ msgid "Comment Text Field"
476
+ msgstr ""
477
+
478
+ #: forms/wpdFormAttr/Form.php:627
479
+ msgid "ADD ROW"
480
+ msgstr ""
481
+
482
+ #: forms/wpdFormAttr/html/admin-form-fields-list.php:7
483
+ msgid "Comment Form Fields"
484
+ msgstr ""
485
+
486
+ #: options/class.WpdiscuzOptions.php:22 options/class.WpdiscuzOptions.php:92
487
+ #: options/class.WpdiscuzOptions.php:207
488
+ msgid "Hacker?"
489
+ msgstr ""
490
+
491
+ #: options/class.WpdiscuzOptions.php:242
492
+ msgid ""
493
+ "Brings an ocean of emotions to your comments. It comes with an awesome smile "
494
+ "package."
495
+ msgstr ""
496
+
497
+ #: options/class.WpdiscuzOptions.php:243
498
+ msgid ""
499
+ "A full-fledged tool-kit for advertising in comment section of your website. "
500
+ "Separate banner and ad managment."
501
+ msgstr ""
502
+
503
+ #: options/class.WpdiscuzOptions.php:244
504
+ msgid ""
505
+ "Allows to mention comments and users in comment text using #comment-id and "
506
+ "@username tags."
507
+ msgstr ""
508
+
509
+ #: options/class.WpdiscuzOptions.php:245
510
+ msgid ""
511
+ "See comment likers and voters of each comment. Adds user reputation and "
512
+ "badges based on received likes."
513
+ msgstr ""
514
+
515
+ #: options/class.WpdiscuzOptions.php:246
516
+ msgid ""
517
+ "Comment reporting tools. Auto-moderates comments based on number of flags "
518
+ "and dislikes."
519
+ msgstr ""
520
+
521
+ #: options/class.WpdiscuzOptions.php:247
522
+ msgid ""
523
+ "Adds a smart and intuitive AJAX \"Translate\" button with 60 language "
524
+ "options. Uses free translation API."
525
+ msgstr ""
526
+
527
+ #: options/class.WpdiscuzOptions.php:248
528
+ msgid ""
529
+ "AJAX powered front-end comment search. It starts searching while you type "
530
+ "search words. "
531
+ msgstr ""
532
+
533
+ #: options/class.WpdiscuzOptions.php:249
534
+ msgid ""
535
+ "Most voted comments, Active comment threads, Most commented posts, Active "
536
+ "comment authors"
537
+ msgstr ""
538
+
539
+ #: options/class.WpdiscuzOptions.php:250
540
+ msgid ""
541
+ "All in one powerful yet simple admin toolkit to moderate comments on front-"
542
+ "end."
543
+ msgstr ""
544
+
545
+ #: options/class.WpdiscuzOptions.php:251
546
+ msgid ""
547
+ "Extended comment attachment system. Allows to upload images, videos, audios "
548
+ "and other file types."
549
+ msgstr ""
550
+
551
+ #: options/class.WpdiscuzOptions.php:252
552
+ msgid ""
553
+ "Adds No CAPTCHA on all comment forms. Stops spam and bot comments with "
554
+ "Google reCAPTCHA"
555
+ msgstr ""
556
+
557
+ #: options/class.WpdiscuzOptions.php:253
558
+ msgid ""
559
+ "Integrates myCRED Badges and Ranks. Converts wpDiscuz comment votes/likes to "
560
+ "myCRED points. "
561
+ msgstr ""
562
+
563
+ #: options/class.WpdiscuzOptions.php:254
564
+ msgid ""
565
+ "Allows censoring comment words. Filters comments and replaces those phrases "
566
+ "with custom words."
567
+ msgstr ""
568
+
569
+ #: options/class.WpdiscuzOptions.php:266
570
+ msgid "New Addons are available for wpDiscuz Comments Plugin"
571
+ msgstr ""
572
+
573
+ #: options/class.WpdiscuzOptions.php:273 options/class.WpdiscuzOptions.php:279
574
+ msgid "Go to wpDiscuz Addons subMenu"
575
+ msgstr ""
576
+
577
+ #: options/class.WpdiscuzOptionsSerialized.php:548
578
+ msgid "Be the First to Comment!"
579
+ msgstr ""
580
+
581
+ #: options/class.WpdiscuzOptionsSerialized.php:549 options/html-phrases.php:22
582
+ #: options/phrases-layouts/phrases-general.php:22
583
+ msgid "Comment"
584
+ msgstr ""
585
+
586
+ #: options/class.WpdiscuzOptionsSerialized.php:550
587
+ msgid "Comments"
588
+ msgstr ""
589
+
590
+ #: options/class.WpdiscuzOptionsSerialized.php:551
591
+ msgid "on"
592
+ msgstr ""
593
+
594
+ #: options/class.WpdiscuzOptionsSerialized.php:552
595
+ msgid "Start the discussion"
596
+ msgstr ""
597
+
598
+ #: options/class.WpdiscuzOptionsSerialized.php:553
599
+ msgid "Join the discussion"
600
+ msgstr ""
601
+
602
+ #: options/class.WpdiscuzOptionsSerialized.php:555
603
+ #: options/phrases-layouts/phrases-form.php:42
604
+ #: options/phrases-layouts/phrases-form.php:46
605
+ msgid "Notify of"
606
+ msgstr ""
607
+
608
+ #: options/class.WpdiscuzOptionsSerialized.php:556
609
+ #: options/phrases-layouts/phrases-form.php:56
610
+ msgid "new follow-up comments"
611
+ msgstr ""
612
+
613
+ #: options/class.WpdiscuzOptionsSerialized.php:557
614
+ msgid "new replies to my comments"
615
+ msgstr ""
616
+
617
+ #: options/class.WpdiscuzOptionsSerialized.php:558
618
+ #: options/phrases-layouts/phrases-form.php:76
619
+ msgid "Notify of new replies to this comment"
620
+ msgstr ""
621
+
622
+ #: options/class.WpdiscuzOptionsSerialized.php:559
623
+ #: options/phrases-layouts/phrases-form.php:82
624
+ #: options/phrases-layouts/phrases-form.php:86
625
+ msgid "Sort by"
626
+ msgstr ""
627
+
628
+ #: options/class.WpdiscuzOptionsSerialized.php:560
629
+ #: options/phrases-layouts/phrases-form.php:92
630
+ #: options/phrases-layouts/phrases-form.php:96
631
+ msgid "newest"
632
+ msgstr ""
633
+
634
+ #: options/class.WpdiscuzOptionsSerialized.php:561
635
+ #: options/phrases-layouts/phrases-form.php:102
636
+ #: options/phrases-layouts/phrases-form.php:106
637
+ msgid "oldest"
638
+ msgstr ""
639
+
640
+ #: options/class.WpdiscuzOptionsSerialized.php:562
641
+ #: options/phrases-layouts/phrases-form.php:112
642
+ #: options/phrases-layouts/phrases-form.php:116
643
+ msgid "most voted"
644
+ msgstr ""
645
+
646
+ #: options/class.WpdiscuzOptionsSerialized.php:563
647
+ msgid "Load More Comments"
648
+ msgstr ""
649
+
650
+ #: options/class.WpdiscuzOptionsSerialized.php:564
651
+ #: options/phrases-layouts/phrases-general.php:62
652
+ msgid "Load Rest of Comments"
653
+ msgstr ""
654
+
655
+ #: options/class.WpdiscuzOptionsSerialized.php:565
656
+ #: options/phrases-layouts/phrases-comment.php:12
657
+ msgid "Reply"
658
+ msgstr ""
659
+
660
+ #: options/class.WpdiscuzOptionsSerialized.php:566
661
+ #: options/phrases-layouts/phrases-comment.php:22
662
+ msgid "Share"
663
+ msgstr ""
664
+
665
+ #: options/class.WpdiscuzOptionsSerialized.php:568
666
+ #: options/phrases-layouts/phrases-comment.php:42
667
+ msgid "Share On Facebook"
668
+ msgstr ""
669
+
670
+ #: options/class.WpdiscuzOptionsSerialized.php:569
671
+ #: options/phrases-layouts/phrases-comment.php:52
672
+ msgid "Share On Twitter"
673
+ msgstr ""
674
+
675
+ #: options/class.WpdiscuzOptionsSerialized.php:570
676
+ #: options/phrases-layouts/phrases-comment.php:62
677
+ msgid "Share On Google"
678
+ msgstr ""
679
+
680
+ #: options/class.WpdiscuzOptionsSerialized.php:571
681
+ #: options/phrases-layouts/phrases-comment.php:72
682
+ msgid "Share On VKontakte"
683
+ msgstr ""
684
+
685
+ #: options/class.WpdiscuzOptionsSerialized.php:572
686
+ #: options/phrases-layouts/phrases-comment.php:82
687
+ msgid "Share On Odnoklassniki"
688
+ msgstr ""
689
+
690
+ #: options/class.WpdiscuzOptionsSerialized.php:573
691
+ #: options/phrases-layouts/phrases-comment.php:92
692
+ msgid "Hide Replies"
693
+ msgstr ""
694
+
695
+ #: options/class.WpdiscuzOptionsSerialized.php:574
696
+ #: options/phrases-layouts/phrases-comment.php:102
697
+ msgid "Show Replies"
698
+ msgstr ""
699
+
700
+ #: options/class.WpdiscuzOptionsSerialized.php:575
701
+ #: options/phrases-layouts/phrases-general.php:76
702
+ msgid "New Comment"
703
+ msgstr ""
704
+
705
+ #: options/class.WpdiscuzOptionsSerialized.php:576
706
+ msgid "New comment on the discussion section you've been interested in"
707
+ msgstr ""
708
+
709
+ #: options/class.WpdiscuzOptionsSerialized.php:577
710
+ #: options/phrases-layouts/phrases-email.php:36
711
+ #: options/phrases-layouts/phrases-general.php:96
712
+ #: utils/class.WpdiscuzEmailHelper.php:154
713
+ msgid "New Reply"
714
+ msgstr ""
715
+
716
+ #: options/class.WpdiscuzOptionsSerialized.php:578
717
+ #: utils/class.WpdiscuzEmailHelper.php:155
718
+ msgid "New reply on the discussion section you've been interested in"
719
+ msgstr ""
720
+
721
+ #: options/class.WpdiscuzOptionsSerialized.php:579
722
+ msgid "You're subscribed for new replies on this comment"
723
+ msgstr ""
724
+
725
+ #: options/class.WpdiscuzOptionsSerialized.php:580
726
+ msgid "You're subscribed for new replies on all your comments"
727
+ msgstr ""
728
+
729
+ #: options/class.WpdiscuzOptionsSerialized.php:581
730
+ msgid "You're subscribed for new follow-up comments on this post"
731
+ msgstr ""
732
+
733
+ #: options/class.WpdiscuzOptionsSerialized.php:582
734
+ #: options/phrases-layouts/phrases-email.php:52
735
+ #: options/phrases-layouts/phrases-email.php:56
736
+ msgid "Unsubscribe"
737
+ msgstr ""
738
+
739
+ #: options/class.WpdiscuzOptionsSerialized.php:583
740
+ #: options/phrases-layouts/phrases-email.php:66
741
+ msgid "Cancel subscription"
742
+ msgstr ""
743
+
744
+ #: options/class.WpdiscuzOptionsSerialized.php:584
745
+ #: options/phrases-layouts/phrases-notification.php:32
746
+ msgid "You've successfully unsubscribed."
747
+ msgstr ""
748
+
749
+ #: options/class.WpdiscuzOptionsSerialized.php:585
750
+ #: options/phrases-layouts/phrases-notification.php:22
751
+ msgid "You've successfully subscribed."
752
+ msgstr ""
753
+
754
+ #: options/class.WpdiscuzOptionsSerialized.php:586
755
+ #: options/phrases-layouts/phrases-email.php:72
756
+ #: options/phrases-layouts/phrases-email.php:76
757
+ msgid "Confirm your subscription"
758
+ msgstr ""
759
+
760
+ #: options/class.WpdiscuzOptionsSerialized.php:587
761
+ #: options/phrases-layouts/phrases-email.php:82
762
+ #: options/phrases-layouts/phrases-email.php:86
763
+ msgid "You've successfully confirmed your subscription."
764
+ msgstr ""
765
+
766
+ #: options/class.WpdiscuzOptionsSerialized.php:588
767
+ #: options/phrases-layouts/phrases-email.php:96
768
+ #: utils/class.WpdiscuzEmailHelper.php:47
769
+ msgid "Subscribe Confirmation"
770
+ msgstr ""
771
+
772
+ #: options/class.WpdiscuzOptionsSerialized.php:589
773
+ #: options/phrases-layouts/phrases-email.php:106
774
+ #: utils/class.WpdiscuzEmailHelper.php:48
775
+ msgid ""
776
+ "Hi, <br/> You just subscribed for new comments on our website. This means "
777
+ "you will receive an email when new comments are posted according to "
778
+ "subscription option you've chosen. <br/> To activate, click confirm below. "
779
+ "If you believe this is an error, ignore this message and we'll never bother "
780
+ "you again."
781
+ msgstr ""
782
+
783
+ #: options/class.WpdiscuzOptionsSerialized.php:590
784
+ msgid "please fill out this field to comment"
785
+ msgstr ""
786
+
787
+ #: options/class.WpdiscuzOptionsSerialized.php:591
788
+ msgid "email address is invalid"
789
+ msgstr ""
790
+
791
+ #: options/class.WpdiscuzOptionsSerialized.php:592
792
+ msgid "url is invalid"
793
+ msgstr ""
794
+
795
+ #: options/class.WpdiscuzOptionsSerialized.php:593
796
+ msgid "year"
797
+ msgstr ""
798
+
799
+ #: options/class.WpdiscuzOptionsSerialized.php:594
800
+ msgid "years"
801
+ msgstr ""
802
+
803
+ #: options/class.WpdiscuzOptionsSerialized.php:595
804
+ msgid "month"
805
+ msgstr ""
806
+
807
+ #: options/class.WpdiscuzOptionsSerialized.php:596
808
+ msgid "months"
809
+ msgstr ""
810
+
811
+ #: options/class.WpdiscuzOptionsSerialized.php:597
812
+ msgid "day"
813
+ msgstr ""
814
+
815
+ #: options/class.WpdiscuzOptionsSerialized.php:598
816
+ msgid "days"
817
+ msgstr ""
818
+
819
+ #: options/class.WpdiscuzOptionsSerialized.php:599
820
+ msgid "hour"
821
+ msgstr ""
822
+
823
+ #: options/class.WpdiscuzOptionsSerialized.php:600
824
+ msgid "hours"
825
+ msgstr ""
826
+
827
+ #: options/class.WpdiscuzOptionsSerialized.php:601
828
+ msgid "minute"
829
+ msgstr ""
830
+
831
+ #: options/class.WpdiscuzOptionsSerialized.php:602
832
+ msgid "minutes"
833
+ msgstr ""
834
+
835
+ #: options/class.WpdiscuzOptionsSerialized.php:603
836
+ msgid "second"
837
+ msgstr ""
838
+
839
+ #: options/class.WpdiscuzOptionsSerialized.php:604
840
+ msgid "seconds"
841
+ msgstr ""
842
+
843
+ #: options/class.WpdiscuzOptionsSerialized.php:605
844
+ msgid "right now"
845
+ msgstr ""
846
+
847
+ #: options/class.WpdiscuzOptionsSerialized.php:606
848
+ msgid "ago"
849
+ msgstr ""
850
+
851
+ #: options/class.WpdiscuzOptionsSerialized.php:607
852
+ #: options/phrases-layouts/phrases-datetime.php:156
853
+ msgid "Today"
854
+ msgstr ""
855
+
856
+ #: options/class.WpdiscuzOptionsSerialized.php:608
857
+ #: options/phrases-layouts/phrases-notification.php:84
858
+ msgid "You must be"
859
+ msgstr ""
860
+
861
+ #: options/class.WpdiscuzOptionsSerialized.php:609
862
+ msgid "You are logged in as"
863
+ msgstr ""
864
+
865
+ #: options/class.WpdiscuzOptionsSerialized.php:610
866
+ #: options/phrases-layouts/phrases-notification.php:104
867
+ msgid "Log out"
868
+ msgstr ""
869
+
870
+ #: options/class.WpdiscuzOptionsSerialized.php:611
871
+ msgid "logged in"
872
+ msgstr ""
873
+
874
+ #: options/class.WpdiscuzOptionsSerialized.php:612
875
+ msgid "to post a comment."
876
+ msgstr ""
877
+
878
+ #: options/class.WpdiscuzOptionsSerialized.php:613
879
+ #: options/phrases-layouts/phrases-comment.php:138
880
+ msgid "Vote Up"
881
+ msgstr ""
882
+
883
+ #: options/class.WpdiscuzOptionsSerialized.php:614
884
+ #: options/phrases-layouts/phrases-comment.php:148
885
+ msgid "Vote Down"
886
+ msgstr ""
887
+
888
+ #: options/class.WpdiscuzOptionsSerialized.php:615
889
+ #: options/phrases-layouts/phrases-notification.php:134
890
+ msgid "Vote Counted"
891
+ msgstr ""
892
+
893
+ #: options/class.WpdiscuzOptionsSerialized.php:616
894
+ msgid "You've already voted for this comment"
895
+ msgstr ""
896
+
897
+ #: options/class.WpdiscuzOptionsSerialized.php:617
898
+ #: options/phrases-layouts/phrases-notification.php:154
899
+ msgid "Voting Error"
900
+ msgstr ""
901
+
902
+ #: options/class.WpdiscuzOptionsSerialized.php:618
903
+ msgid "You Must Be Logged In To Vote"
904
+ msgstr ""
905
+
906
+ #: options/class.WpdiscuzOptionsSerialized.php:619
907
+ msgid "You cannot vote for your comment"
908
+ msgstr ""
909
+
910
+ #: options/class.WpdiscuzOptionsSerialized.php:620
911
+ msgid "You are not allowed to vote for this comment"
912
+ msgstr ""
913
+
914
+ #: options/class.WpdiscuzOptionsSerialized.php:621
915
+ #: options/phrases-layouts/phrases-notification.php:194
916
+ msgid "Invalid Captcha Code"
917
+ msgstr ""
918
+
919
+ #: options/class.WpdiscuzOptionsSerialized.php:622
920
+ #: options/phrases-layouts/phrases-notification.php:204
921
+ msgid "Some of field value is invalid"
922
+ msgstr ""
923
+
924
+ #: options/class.WpdiscuzOptionsSerialized.php:623
925
+ msgid "new comment"
926
+ msgstr ""
927
+
928
+ #: options/class.WpdiscuzOptionsSerialized.php:624
929
+ msgid "new comments"
930
+ msgstr ""
931
+
932
+ #: options/class.WpdiscuzOptionsSerialized.php:625
933
+ msgid "Comment awaiting moderation"
934
+ msgstr ""
935
+
936
+ #: options/class.WpdiscuzOptionsSerialized.php:626
937
+ msgid "new reply on your comment"
938
+ msgstr ""
939
+
940
+ #: options/class.WpdiscuzOptionsSerialized.php:627
941
+ msgid "new replies on your comments"
942
+ msgstr ""
943
+
944
+ #: options/class.WpdiscuzOptionsSerialized.php:628
945
+ #: options/phrases-layouts/phrases-general.php:116
946
+ msgid "New"
947
+ msgstr ""
948
+
949
+ #: options/class.WpdiscuzOptionsSerialized.php:629
950
+ #: options/phrases-layouts/phrases-notification.php:249
951
+ msgid "Sorry, the comment was not updated"
952
+ msgstr ""
953
+
954
+ #: options/class.WpdiscuzOptionsSerialized.php:630
955
+ #: options/phrases-layouts/phrases-notification.php:259
956
+ msgid "Sorry, this comment no longer possible to edit"
957
+ msgstr ""
958
+
959
+ #: options/class.WpdiscuzOptionsSerialized.php:631
960
+ msgid "You've not made any changes"
961
+ msgstr ""
962
+
963
+ #: options/class.WpdiscuzOptionsSerialized.php:632
964
+ #: options/phrases-layouts/phrases-comment.php:162
965
+ msgid "Save"
966
+ msgstr ""
967
+
968
+ #: options/class.WpdiscuzOptionsSerialized.php:633
969
+ #: options/phrases-layouts/phrases-comment.php:172
970
+ msgid "Cancel"
971
+ msgstr ""
972
+
973
+ #: options/class.WpdiscuzOptionsSerialized.php:634
974
+ msgid "Input is too short"
975
+ msgstr ""
976
+
977
+ #: options/class.WpdiscuzOptionsSerialized.php:635
978
+ msgid "Input is too long"
979
+ msgstr ""
980
+
981
+ #: options/class.WpdiscuzOptionsSerialized.php:636
982
+ #: options/phrases-layouts/phrases-comment.php:182
983
+ msgid "Read more &raquo;"
984
+ msgstr ""
985
+
986
+ #: options/class.WpdiscuzOptionsSerialized.php:637
987
+ #: options/phrases-layouts/phrases-comment.php:192
988
+ msgid "Anonymous"
989
+ msgstr ""
990
+
991
+ #: options/class.WpdiscuzOptionsSerialized.php:638
992
+ #: options/phrases-layouts/phrases-notification.php:275
993
+ #: options/phrases-layouts/phrases-notification.php:279
994
+ msgid "Please fill out required fields"
995
+ msgstr ""
996
+
997
+ #: options/class.WpdiscuzOptionsSerialized.php:639
998
+ #: options/phrases-layouts/phrases-form.php:152
999
+ #: options/phrases-layouts/phrases-form.php:156
1000
+ msgid "Connect with"
1001
+ msgstr ""
1002
+
1003
+ #: options/class.WpdiscuzOptionsSerialized.php:640
1004
+ msgid "You're subscribed to"
1005
+ msgstr ""
1006
+
1007
+ #: options/class.WpdiscuzOptionsSerialized.php:641
1008
+ msgid "Participate in this discussion via email"
1009
+ msgstr ""
1010
+
1011
+ #: options/html-addons.php:11
1012
+ msgid "wpDiscuz Addons"
1013
+ msgstr ""
1014
+
1015
+ #: options/html-addons.php:54
1016
+ msgid "Installed"
1017
+ msgstr ""
1018
+
1019
+ #: options/html-addons.php:61
1020
+ msgid "Live Preview | Buy"
1021
+ msgstr ""
1022
+
1023
+ #: options/html-options.php:10
1024
+ msgid "wpDiscuz General Settings"
1025
+ msgstr ""
1026
+
1027
+ #: options/html-options.php:54 options/options-layouts/settings-general.php:7
1028
+ msgid "General Settings"
1029
+ msgstr ""
1030
+
1031
+ #: options/html-options.php:55
1032
+ #: options/options-layouts/settings-live-update.php:7
1033
+ msgid "Live Update"
1034
+ msgstr ""
1035
+
1036
+ #: options/html-options.php:56
1037
+ msgid "Show/Hide"
1038
+ msgstr ""
1039
+
1040
+ #: options/html-options.php:57
1041
+ msgid "Subscription"
1042
+ msgstr ""
1043
+
1044
+ #: options/html-options.php:57
1045
+ msgid "and Postmatic"
1046
+ msgstr ""
1047
+
1048
+ #: options/html-options.php:58
1049
+ msgid "Styling"
1050
+ msgstr ""
1051
+
1052
+ #: options/html-options.php:59 options/options-layouts/settings-social.php:124
1053
+ msgid "Social Login"
1054
+ msgstr ""
1055
+
1056
+ #: options/html-options.php:60
1057
+ #: options/options-layouts/settings-integrations.php:7
1058
+ msgid "Integrations"
1059
+ msgstr ""
1060
+
1061
+ #: options/html-options.php:61 options/options-layouts/settings-addons.php:7
1062
+ msgid "Addons"
1063
+ msgstr ""
1064
+
1065
+ #: options/html-options.php:148
1066
+ msgid "Reset Options"
1067
+ msgstr ""
1068
+
1069
+ #: options/html-options.php:150
1070
+ msgid "Refresh comment optimization"
1071
+ msgstr ""
1072
+
1073
+ #: options/html-options.php:152
1074
+ msgid "Remove vote data"
1075
+ msgstr ""
1076
+
1077
+ #: options/html-options.php:153 options/html-phrases.php:71
1078
+ #: options/html-tools.php:58
1079
+ msgid "Save Changes"
1080
+ msgstr ""
1081
+
1082
+ #: options/html-phrases.php:10
1083
+ msgid "wpDiscuz Front-end Phrases"
1084
+ msgstr ""
1085
+
1086
+ #: options/html-phrases.php:20
1087
+ msgid "General"
1088
+ msgstr ""
1089
+
1090
+ #: options/html-phrases.php:23
1091
+ msgid "Date/Time"
1092
+ msgstr ""
1093
+
1094
+ #: options/html-phrases.php:25
1095
+ msgid "Notification"
1096
+ msgstr ""
1097
+
1098
+ #: options/html-tools.php:10
1099
+ msgid "wpDiscuz Tools"
1100
+ msgstr ""
1101
+
1102
+ #: options/html-tools.php:22 options/tools-layouts/options-export.php:8
1103
+ msgid "Export options"
1104
+ msgstr ""
1105
+
1106
+ #: options/html-tools.php:23 options/tools-layouts/options-import.php:7
1107
+ msgid "Import options"
1108
+ msgstr ""
1109
+
1110
+ #: options/options-layouts/settings-customfields.php:12
1111
+ msgid "Google Map API Key"
1112
+ msgstr ""
1113
+
1114
+ #: options/options-layouts/settings-general.php:11
1115
+ msgid "Enable Quicktags"
1116
+ msgstr ""
1117
+
1118
+ #: options/options-layouts/settings-general.php:16
1119
+ msgid "Use guest email to detect registered account"
1120
+ msgstr ""
1121
+
1122
+ #: options/options-layouts/settings-general.php:18
1123
+ msgid ""
1124
+ "Sometimes registered users comment as guest using the same email address. "
1125
+ "wpDiscuz can detect the account role using guest email and display commenter "
1126
+ "label correctly."
1127
+ msgstr ""
1128
+
1129
+ #: options/options-layouts/settings-general.php:25
1130
+ msgid "Comment author name min length (for guests only)"
1131
+ msgstr ""
1132
+
1133
+ #: options/options-layouts/settings-general.php:29
1134
+ #: options/options-layouts/settings-general.php:52
1135
+ msgid "Min"
1136
+ msgstr ""
1137
+
1138
+ #: options/options-layouts/settings-general.php:32
1139
+ #: options/options-layouts/settings-general.php:55
1140
+ msgid "Max"
1141
+ msgstr ""
1142
+
1143
+ #: options/options-layouts/settings-general.php:38
1144
+ msgid "Keep guest commenter credentials in browser cookies for x days"
1145
+ msgstr ""
1146
+
1147
+ #: options/options-layouts/settings-general.php:40
1148
+ msgid "Set this option value -1 to make it unlimited."
1149
+ msgstr ""
1150
+
1151
+ #: options/options-layouts/settings-general.php:41
1152
+ msgid "Set this option value 0 to clear those data when user closes browser."
1153
+ msgstr ""
1154
+
1155
+ #: options/options-layouts/settings-general.php:48
1156
+ msgid "Comment text length"
1157
+ msgstr ""
1158
+
1159
+ #: options/options-layouts/settings-general.php:61
1160
+ msgid ""
1161
+ "The number of words before breaking comment text and showing \"Read more\" "
1162
+ "link"
1163
+ msgstr ""
1164
+
1165
+ #: options/options-layouts/settings-general.php:63
1166
+ msgid "Set this option value 0, to turn off comment text breaking function."
1167
+ msgstr ""
1168
+
1169
+ #: options/options-layouts/settings-general.php:69
1170
+ msgid "Comment text size in pixels"
1171
+ msgstr ""
1172
+
1173
+ #: options/options-layouts/settings-general.php:82
1174
+ msgid "Allow comment editing for"
1175
+ msgstr ""
1176
+
1177
+ #: options/options-layouts/settings-general.php:86
1178
+ msgid "Do not allow"
1179
+ msgstr ""
1180
+
1181
+ #: options/options-layouts/settings-general.php:87
1182
+ #: options/options-layouts/settings-general.php:88
1183
+ #: options/options-layouts/settings-live-update.php:52
1184
+ #: options/options-layouts/settings-live-update.php:53
1185
+ #: options/options-layouts/settings-live-update.php:54
1186
+ msgid "Minutes"
1187
+ msgstr ""
1188
+
1189
+ #: options/options-layouts/settings-general.php:89
1190
+ #: options/phrases-layouts/phrases-datetime.php:72
1191
+ msgid "Hour"
1192
+ msgstr ""
1193
+
1194
+ #: options/options-layouts/settings-general.php:90
1195
+ #: options/options-layouts/settings-general.php:91
1196
+ msgid "Hours"
1197
+ msgstr ""
1198
+
1199
+ #: options/options-layouts/settings-general.php:92
1200
+ msgid "Unlimit"
1201
+ msgstr ""
1202
+
1203
+ #: options/options-layouts/settings-general.php:98
1204
+ msgid "Redirect first commenter to"
1205
+ msgstr ""
1206
+
1207
+ #: options/options-layouts/settings-general.php:105
1208
+ msgid "Do not redirect"
1209
+ msgstr ""
1210
+
1211
+ #: options/options-layouts/settings-general.php:112
1212
+ msgid "Allow guests to vote on comments"
1213
+ msgstr ""
1214
+
1215
+ #: options/options-layouts/settings-general.php:117
1216
+ msgid "Comments loading/pagination type"
1217
+ msgstr ""
1218
+
1219
+ #: options/options-layouts/settings-general.php:119
1220
+ msgid ""
1221
+ "You can manage the number of comments for [Load more] option in Settings > "
1222
+ "Discussion page, using \"Break comments into pages with [X] top level "
1223
+ "comments per page\" option. To show the default Wordpress comment pagination "
1224
+ "you should enable the checkbox on bigining of the same option."
1225
+ msgstr ""
1226
+
1227
+ #: options/options-layouts/settings-general.php:125
1228
+ #: options/options-layouts/settings-general.php:127
1229
+ msgid "[Load more] Button"
1230
+ msgstr ""
1231
+
1232
+ #: options/options-layouts/settings-general.php:129
1233
+ #: options/options-layouts/settings-general.php:131
1234
+ msgid "[Load rest of all comments] Button"
1235
+ msgstr ""
1236
+
1237
+ #: options/options-layouts/settings-general.php:133
1238
+ #: options/options-layouts/settings-general.php:135
1239
+ msgid "Lazy load comments on scrolling"
1240
+ msgstr ""
1241
+
1242
+ #: options/options-layouts/settings-general.php:142
1243
+ msgid "Use WordPress Date/Time format"
1244
+ msgstr ""
1245
+
1246
+ #: options/options-layouts/settings-general.php:143
1247
+ msgid ""
1248
+ "wpDiscuz shows Human Readable date format. If you check this option it'll "
1249
+ "show the date/time format set in WordPress General Settings."
1250
+ msgstr ""
1251
+
1252
+ #: options/options-layouts/settings-general.php:149
1253
+ msgid "Current Wordpress date/time format"
1254
+ msgstr ""
1255
+
1256
+ #: options/options-layouts/settings-general.php:155
1257
+ msgid "Use Plugin .PO/.MO files"
1258
+ msgstr ""
1259
+
1260
+ #: options/options-layouts/settings-general.php:156
1261
+ msgid ""
1262
+ "wpDiscuz phrase system allows you to translate all front-end phrases. "
1263
+ "However if you have a multi-language website it'll not allow you to add more "
1264
+ "than one language translation. The only way to get it is the plugin "
1265
+ "translation files (.PO / .MO). If wpDiscuz has the languages you need you "
1266
+ "should check this option to disable phrase system and it'll automatically "
1267
+ "translate all phrases based on language files according to current language."
1268
+ msgstr ""
1269
+
1270
+ #: options/options-layouts/settings-general.php:163
1271
+ msgid ""
1272
+ "Help wpDiscuz to grow allowing people to recognize which comment plugin you "
1273
+ "use"
1274
+ msgstr ""
1275
+
1276
+ #: options/options-layouts/settings-general.php:165
1277
+ msgid ""
1278
+ "Please check this option on to help wpDiscuz get more popularity as your "
1279
+ "thank to the hard work we do for you totally free. This option adds a very "
1280
+ "small (16x16px) icon under the comment section which will allow your site "
1281
+ "visitors recognize the name of comment solution you use."
1282
+ msgstr ""
1283
+
1284
+ #: options/options-layouts/settings-general.php:170
1285
+ msgid "Thank you!"
1286
+ msgstr ""
1287
+
1288
+ #: options/options-layouts/settings-integrations.php:14
1289
+ msgid "BuddyPress"
1290
+ msgstr ""
1291
+
1292
+ #: options/options-layouts/settings-integrations.php:15
1293
+ msgid "Users Ultra"
1294
+ msgstr ""
1295
+
1296
+ #: options/options-layouts/settings-integrations.php:16
1297
+ msgid "User Pro"
1298
+ msgstr ""
1299
+
1300
+ #: options/options-layouts/settings-integrations.php:17
1301
+ msgid "Ultimate Member"
1302
+ msgstr ""
1303
+
1304
+ #: options/options-layouts/settings-integrations.php:18
1305
+ msgid "MyCred"
1306
+ msgstr ""
1307
+
1308
+ #: options/options-layouts/settings-live-update.php:12
1309
+ msgid "Live update options"
1310
+ msgstr ""
1311
+
1312
+ #: options/options-layouts/settings-live-update.php:13
1313
+ msgid ""
1314
+ "wpDiscuz 3 live update is very smart and doesn't overload your server even "
1315
+ "if you're on Shared hosting plan and even your website is very active. "
1316
+ "However we recommend to monitor your server resources if you're on a Shared "
1317
+ "hosting plan. There are some very weak hosting plans which may not be able "
1318
+ "to perform very frequently live update requests. If you found some issue you "
1319
+ "can set the option below 30 seconds or more."
1320
+ msgstr ""
1321
+
1322
+ #: options/options-layouts/settings-live-update.php:18
1323
+ msgid "Never update"
1324
+ msgstr ""
1325
+
1326
+ #: options/options-layouts/settings-live-update.php:20
1327
+ msgid "Turn off \"Live Update\" function"
1328
+ msgstr ""
1329
+
1330
+ #: options/options-layouts/settings-live-update.php:22
1331
+ #: options/options-layouts/settings-subscription.php:27
1332
+ msgid "Show new comment/reply buttons to update manualy"
1333
+ msgstr ""
1334
+
1335
+ #: options/options-layouts/settings-live-update.php:24
1336
+ msgid "Always check for new comments and show update buttons"
1337
+ msgstr ""
1338
+
1339
+ #: options/options-layouts/settings-live-update.php:26
1340
+ #: options/options-layouts/settings-subscription.php:31
1341
+ msgid "Always update"
1342
+ msgstr ""
1343
+
1344
+ #: options/options-layouts/settings-live-update.php:28
1345
+ msgid "Always check for new comments and update automatically"
1346
+ msgstr ""
1347
+
1348
+ #: options/options-layouts/settings-live-update.php:35
1349
+ msgid "Disable live update for guests"
1350
+ msgstr ""
1351
+
1352
+ #: options/options-layouts/settings-live-update.php:43
1353
+ msgid "Update comment list every"
1354
+ msgstr ""
1355
+
1356
+ #: options/options-layouts/settings-live-update.php:48
1357
+ #: options/options-layouts/settings-live-update.php:49
1358
+ #: options/options-layouts/settings-live-update.php:50
1359
+ msgid "Seconds"
1360
+ msgstr ""
1361
+
1362
+ #: options/options-layouts/settings-live-update.php:51
1363
+ #: options/phrases-layouts/phrases-datetime.php:92
1364
+ msgid "Minute"
1365
+ msgstr ""
1366
+
1367
+ #: options/options-layouts/settings-show-hide.php:7
1368
+ msgid "Show/Hide Components"
1369
+ msgstr ""
1370
+
1371
+ #: options/options-layouts/settings-show-hide.php:11
1372
+ msgid "Show logged-in user name and logout link on top of main form"
1373
+ msgstr ""
1374
+
1375
+ #: options/options-layouts/settings-show-hide.php:15
1376
+ msgid "Hide Reply button for Guests"
1377
+ msgstr ""
1378
+
1379
+ #: options/options-layouts/settings-show-hide.php:19
1380
+ msgid "Hide Reply button for Members"
1381
+ msgstr ""
1382
+
1383
+ #: options/options-layouts/settings-show-hide.php:23
1384
+ msgid "Hide Commenter Labels"
1385
+ msgstr ""
1386
+
1387
+ #: options/options-layouts/settings-show-hide.php:27
1388
+ msgid "Hide Voting buttons"
1389
+ msgstr ""
1390
+
1391
+ #: options/options-layouts/settings-show-hide.php:31
1392
+ msgid "Comment voting statistic mode"
1393
+ msgstr ""
1394
+
1395
+ #: options/options-layouts/settings-show-hide.php:36
1396
+ msgid "total count"
1397
+ msgstr ""
1398
+
1399
+ #: options/options-layouts/settings-show-hide.php:40
1400
+ msgid "separate count"
1401
+ msgstr ""
1402
+
1403
+ #: options/options-layouts/settings-show-hide.php:46
1404
+ msgid "Show Share Buttons"
1405
+ msgstr ""
1406
+
1407
+ #: options/options-layouts/settings-show-hide.php:65
1408
+ msgid "Facebook Application ID"
1409
+ msgstr ""
1410
+
1411
+ #: options/options-layouts/settings-show-hide.php:81
1412
+ msgid ""
1413
+ "The plugin captcha directory is not writable! Please set writable "
1414
+ "permissions on \"wpdiscuz/utils/temp\" directory in order to use the first "
1415
+ "type of captcha generation"
1416
+ msgstr ""
1417
+
1418
+ #: options/options-layouts/settings-show-hide.php:85
1419
+ msgid "Captcha generation type"
1420
+ msgstr ""
1421
+
1422
+ #: options/options-layouts/settings-show-hide.php:91
1423
+ msgid "use file system"
1424
+ msgstr ""
1425
+
1426
+ #: options/options-layouts/settings-show-hide.php:96
1427
+ msgid "use wordpress session"
1428
+ msgstr ""
1429
+
1430
+ #: options/options-layouts/settings-show-hide.php:102
1431
+ msgid "Hide header text"
1432
+ msgstr ""
1433
+
1434
+ #: options/options-layouts/settings-show-hide.php:106
1435
+ msgid "Show sorting buttons"
1436
+ msgstr ""
1437
+
1438
+ #: options/options-layouts/settings-show-hide.php:110
1439
+ msgid "Set comments ordering to \"Most voted\" by default "
1440
+ msgstr ""
1441
+
1442
+ #: options/options-layouts/settings-show-hide.php:114
1443
+ msgid "Hide comment link"
1444
+ msgstr ""
1445
+
1446
+ #: options/options-layouts/settings-show-hide.php:118
1447
+ msgid "Enable automatic image URL to image HTML conversion"
1448
+ msgstr ""
1449
+
1450
+ #: options/options-layouts/settings-social.php:50
1451
+ #: options/options-layouts/settings-social.php:61
1452
+ #: options/options-layouts/settings-social.php:72
1453
+ #: options/options-layouts/settings-social.php:83
1454
+ msgid "Activate"
1455
+ msgstr ""
1456
+
1457
+ #: options/options-layouts/settings-social.php:54
1458
+ #: options/options-layouts/settings-social.php:65
1459
+ #: options/options-layouts/settings-social.php:76
1460
+ #: options/options-layouts/settings-social.php:87
1461
+ msgid "View details/Install"
1462
+ msgstr ""
1463
+
1464
+ #: options/options-layouts/settings-social.php:125
1465
+ msgid ""
1466
+ "You can use one of these most popular Social Login Plugins to allow your "
1467
+ "visitors login and comment with Facebook, Twitter, Google+, Wordpress, VK, "
1468
+ "OK and lots of other social network service accounts. All social login "
1469
+ "buttons will be fully integrated with wpDiscuz comment forms."
1470
+ msgstr ""
1471
+
1472
+ #: options/options-layouts/settings-style.php:7
1473
+ msgid "Background and Colors"
1474
+ msgstr ""
1475
+
1476
+ #: options/options-layouts/settings-style.php:12
1477
+ msgid "Comment Form Background Color"
1478
+ msgstr ""
1479
+
1480
+ #: options/options-layouts/settings-style.php:16
1481
+ #: options/options-layouts/settings-style.php:25
1482
+ #: options/options-layouts/settings-style.php:34
1483
+ #: options/options-layouts/settings-style.php:43
1484
+ #: options/options-layouts/settings-style.php:70
1485
+ #: options/options-layouts/settings-style.php:79
1486
+ #: options/options-layouts/settings-style.php:88
1487
+ #: options/options-layouts/settings-style.php:98
1488
+ #: options/options-layouts/settings-style.php:107
1489
+ #: options/options-layouts/settings-style.php:116
1490
+ #: options/options-layouts/settings-style.php:130
1491
+ msgid "Example: #00FF00"
1492
+ msgstr ""
1493
+
1494
+ #: options/options-layouts/settings-style.php:21
1495
+ msgid "Comment Background Color"
1496
+ msgstr ""
1497
+
1498
+ #: options/options-layouts/settings-style.php:30
1499
+ msgid "Reply Background Color"
1500
+ msgstr ""
1501
+
1502
+ #: options/options-layouts/settings-style.php:39
1503
+ msgid "Comment Text Color"
1504
+ msgstr ""
1505
+
1506
+ #: options/options-layouts/settings-style.php:48
1507
+ msgid "Button Color"
1508
+ msgstr ""
1509
+
1510
+ #: options/options-layouts/settings-style.php:53
1511
+ msgid "Share Buttons"
1512
+ msgstr ""
1513
+
1514
+ #: options/options-layouts/settings-style.php:54
1515
+ #: options/options-layouts/settings-style.php:57
1516
+ #: options/options-layouts/settings-style.php:60
1517
+ msgid "Text Color"
1518
+ msgstr ""
1519
+
1520
+ #: options/options-layouts/settings-style.php:55
1521
+ #: options/options-layouts/settings-style.php:58
1522
+ #: options/options-layouts/settings-style.php:61
1523
+ msgid "Border Color"
1524
+ msgstr ""
1525
+
1526
+ #: options/options-layouts/settings-style.php:56
1527
+ msgid "Vote Buttons"
1528
+ msgstr ""
1529
+
1530
+ #: options/options-layouts/settings-style.php:59
1531
+ msgid "Action Buttons"
1532
+ msgstr ""
1533
+
1534
+ #: options/options-layouts/settings-style.php:66
1535
+ msgid "Comment form fields border color"
1536
+ msgstr ""
1537
+
1538
+ #: options/options-layouts/settings-style.php:75
1539
+ msgid "New loaded comments' background color"
1540
+ msgstr ""
1541
+
1542
+ #: options/options-layouts/settings-style.php:84
1543
+ msgid "Primary Color"
1544
+ msgstr ""
1545
+
1546
+ #: options/options-layouts/settings-style.php:94
1547
+ msgid "Rating Stars Hover Color"
1548
+ msgstr ""
1549
+
1550
+ #: options/options-layouts/settings-style.php:103
1551
+ msgid "Rating Stars Inactiv Color"
1552
+ msgstr ""
1553
+
1554
+ #: options/options-layouts/settings-style.php:112
1555
+ msgid "Rating Stars Activ Color"
1556
+ msgstr ""
1557
+
1558
+ #: options/options-layouts/settings-style.php:127
1559
+ msgid "label color"
1560
+ msgstr ""
1561
+
1562
+ #: options/options-layouts/settings-style.php:138
1563
+ msgid "Disable font awesome css loading"
1564
+ msgstr ""
1565
+
1566
+ #: options/options-layouts/settings-style.php:146
1567
+ msgid "Custom CSS Code"
1568
+ msgstr ""
1569
+
1570
+ #: options/options-layouts/settings-subscription.php:7
1571
+ msgid "Email Subscription Settings"
1572
+ msgstr ""
1573
+
1574
+ #: options/options-layouts/settings-subscription.php:11
1575
+ msgid "Disable subscription confirmation for registered users"
1576
+ msgstr ""
1577
+
1578
+ #: options/options-layouts/settings-subscription.php:15
1579
+ msgid "Disable subscription confirmation for guests"
1580
+ msgstr ""
1581
+
1582
+ #: options/options-layouts/settings-subscription.php:19
1583
+ msgid "Show subscription types in dropdown"
1584
+ msgstr ""
1585
+
1586
+ #: options/options-layouts/settings-subscription.php:23
1587
+ msgid "Both"
1588
+ msgstr ""
1589
+
1590
+ #: options/options-layouts/settings-subscription.php:25
1591
+ msgid "Both post and all comments subscription"
1592
+ msgstr ""
1593
+
1594
+ #: options/options-layouts/settings-subscription.php:29
1595
+ msgid "Post subscription"
1596
+ msgstr ""
1597
+
1598
+ #: options/options-layouts/settings-subscription.php:33
1599
+ msgid "All comments subscription"
1600
+ msgstr ""
1601
+
1602
+ #: options/options-layouts/settings-subscription.php:40
1603
+ msgid "Show \"Notify of new replies to this comment\""
1604
+ msgstr ""
1605
+
1606
+ #: options/options-layouts/settings-subscription.php:42
1607
+ msgid ""
1608
+ "wpDiscuz is the only comment plugin which allows you to subscribe to certain "
1609
+ "comment replies. This option is located above [Post Comment] button in "
1610
+ "comment form. You can disable this subscription way by unchecking this "
1611
+ "option."
1612
+ msgstr ""
1613
+
1614
+ #: options/options-layouts/settings-subscription.php:49
1615
+ msgid "\"Notify of new replies to this comment\" checked by default"
1616
+ msgstr ""
1617
+
1618
+ #: options/options-layouts/settings-subscription.php:56
1619
+ msgid "Use Postmatic for subscriptions and commenting by email"
1620
+ msgstr ""
1621
+
1622
+ #: options/options-layouts/settings-subscription.php:57
1623
+ msgid ""
1624
+ "Postmatic allows your users subscribe to comments. Instead of just being "
1625
+ "notified, they add a reply right from their inbox."
1626
+ msgstr ""
1627
+
1628
+ #: options/phrases-layouts/phrases-comment.php:7
1629
+ msgid "Comment Template Phrases"
1630
+ msgstr ""
1631
+
1632
+ #: options/phrases-layouts/phrases-comment.php:158
1633
+ msgid "Save edited comment button text"
1634
+ msgstr ""
1635
+
1636
+ #: options/phrases-layouts/phrases-comment.php:168
1637
+ msgid "Cancel comment editing button text"
1638
+ msgstr ""
1639
+
1640
+ #: options/phrases-layouts/phrases-comment.php:178
1641
+ msgid "Comment read more link text"
1642
+ msgstr ""
1643
+
1644
+ #: options/phrases-layouts/phrases-comment.php:188
1645
+ msgid "Anonymous commenter name"
1646
+ msgstr ""
1647
+
1648
+ #: options/phrases-layouts/phrases-datetime.php:7
1649
+ msgid "Date/Time Phrases"
1650
+ msgstr ""
1651
+
1652
+ #: options/phrases-layouts/phrases-datetime.php:12
1653
+ msgid "Year"
1654
+ msgstr ""
1655
+
1656
+ #: options/phrases-layouts/phrases-datetime.php:22
1657
+ msgid "Years (Plural Form)"
1658
+ msgstr ""
1659
+
1660
+ #: options/phrases-layouts/phrases-datetime.php:26
1661
+ msgid "Years"
1662
+ msgstr ""
1663
+
1664
+ #: options/phrases-layouts/phrases-datetime.php:32
1665
+ msgid "Month"
1666
+ msgstr ""
1667
+
1668
+ #: options/phrases-layouts/phrases-datetime.php:42
1669
+ msgid "Months (Plural Form)"
1670
+ msgstr ""
1671
+
1672
+ #: options/phrases-layouts/phrases-datetime.php:52
1673
+ msgid "Day"
1674
+ msgstr ""
1675
+
1676
+ #: options/phrases-layouts/phrases-datetime.php:62
1677
+ msgid "Days (Plural Form)"
1678
+ msgstr ""
1679
+
1680
+ #: options/phrases-layouts/phrases-datetime.php:82
1681
+ msgid "Hours (Plural Form)"
1682
+ msgstr ""
1683
+
1684
+ #: options/phrases-layouts/phrases-datetime.php:102
1685
+ msgid "Minutes (Plural Form)"
1686
+ msgstr ""
1687
+
1688
+ #: options/phrases-layouts/phrases-datetime.php:112
1689
+ msgid "Second"
1690
+ msgstr ""
1691
+
1692
+ #: options/phrases-layouts/phrases-datetime.php:122
1693
+ msgid "Seconds (Plural Form)"
1694
+ msgstr ""
1695
+
1696
+ #: options/phrases-layouts/phrases-datetime.php:132
1697
+ msgid "Commented \"right now\" text"
1698
+ msgstr ""
1699
+
1700
+ #: options/phrases-layouts/phrases-datetime.php:142
1701
+ msgid "Ago text"
1702
+ msgstr ""
1703
+
1704
+ #: options/phrases-layouts/phrases-datetime.php:152
1705
+ msgid "\"Today\" text"
1706
+ msgstr ""
1707
+
1708
+ #: options/phrases-layouts/phrases-email.php:7
1709
+ msgid "Email Template Phrases"
1710
+ msgstr ""
1711
+
1712
+ #: options/phrases-layouts/phrases-email.php:12
1713
+ msgid "Email Subject"
1714
+ msgstr ""
1715
+
1716
+ #: options/phrases-layouts/phrases-email.php:22
1717
+ msgid "Email Message"
1718
+ msgstr ""
1719
+
1720
+ #: options/phrases-layouts/phrases-email.php:32
1721
+ msgid "New Reply Subject"
1722
+ msgstr ""
1723
+
1724
+ #: options/phrases-layouts/phrases-email.php:42
1725
+ msgid "New Reply Message"
1726
+ msgstr ""
1727
+
1728
+ #: options/phrases-layouts/phrases-email.php:62
1729
+ #: options/phrases-layouts/phrases-email.php:66
1730
+ msgid "Ignore Subscription"
1731
+ msgstr ""
1732
+
1733
+ #: options/phrases-layouts/phrases-email.php:92
1734
+ msgid "Subscribe Confirmation Email Subject"
1735
+ msgstr ""
1736
+
1737
+ #: options/phrases-layouts/phrases-email.php:102
1738
+ msgid "Subscribe Confirmation Email Content"
1739
+ msgstr ""
1740
+
1741
+ #: options/phrases-layouts/phrases-form.php:7
1742
+ msgid "Form Template Phrases"
1743
+ msgstr ""
1744
+
1745
+ #: options/phrases-layouts/phrases-form.php:12
1746
+ msgid "Comment Field Start"
1747
+ msgstr ""
1748
+
1749
+ #: options/phrases-layouts/phrases-form.php:22
1750
+ msgid "Comment Field Join"
1751
+ msgstr ""
1752
+
1753
+ #: options/phrases-layouts/phrases-form.php:32
1754
+ msgid "Email Field"
1755
+ msgstr ""
1756
+
1757
+ #: options/phrases-layouts/phrases-form.php:52
1758
+ msgid "Notify on new comments"
1759
+ msgstr ""
1760
+
1761
+ #: options/phrases-layouts/phrases-form.php:62
1762
+ msgid "Notify on all new replies"
1763
+ msgstr ""
1764
+
1765
+ #: options/phrases-layouts/phrases-form.php:66
1766
+ msgid "new replies to all my comments"
1767
+ msgstr ""
1768
+
1769
+ #: options/phrases-layouts/phrases-form.php:72
1770
+ msgid "Notify on new replies (checkbox)"
1771
+ msgstr ""
1772
+
1773
+ #: options/phrases-layouts/phrases-form.php:122
1774
+ msgid "Subscribed on this comment replies"
1775
+ msgstr ""
1776
+
1777
+ #: options/phrases-layouts/phrases-form.php:132
1778
+ msgid "Subscribed on all your comments replies"
1779
+ msgstr ""
1780
+
1781
+ #: options/phrases-layouts/phrases-form.php:142
1782
+ msgid "Subscribed on this post"
1783
+ msgstr ""
1784
+
1785
+ #: options/phrases-layouts/phrases-general.php:7
1786
+ msgid "General Phrases"
1787
+ msgstr ""
1788
+
1789
+ #: options/phrases-layouts/phrases-general.php:12
1790
+ msgid "Be the first to comment"
1791
+ msgstr ""
1792
+
1793
+ #: options/phrases-layouts/phrases-general.php:32
1794
+ msgid "Comment (Plural Form)"
1795
+ msgstr ""
1796
+
1797
+ #: options/phrases-layouts/phrases-general.php:42
1798
+ msgid "On"
1799
+ msgstr ""
1800
+
1801
+ #: options/phrases-layouts/phrases-general.php:52
1802
+ msgid "Load More Button"
1803
+ msgstr ""
1804
+
1805
+ #: options/phrases-layouts/phrases-general.php:72
1806
+ msgid "Button text if has new comment"
1807
+ msgstr ""
1808
+
1809
+ #: options/phrases-layouts/phrases-general.php:82
1810
+ msgid "Button text if has new comments (Plural Form)"
1811
+ msgstr ""
1812
+
1813
+ #: options/phrases-layouts/phrases-general.php:86
1814
+ msgid "New Comments"
1815
+ msgstr ""
1816
+
1817
+ #: options/phrases-layouts/phrases-general.php:92
1818
+ msgid "Button text if has new reply"
1819
+ msgstr ""
1820
+
1821
+ #: options/phrases-layouts/phrases-general.php:102
1822
+ msgid "Button text if has new replies (Plural Form)"
1823
+ msgstr ""
1824
+
1825
+ #: options/phrases-layouts/phrases-general.php:106
1826
+ msgid "New Replies"
1827
+ msgstr ""
1828
+
1829
+ #: options/phrases-layouts/phrases-general.php:112
1830
+ msgid "Text on load more button if has new comment(s)"
1831
+ msgstr ""
1832
+
1833
+ #: options/phrases-layouts/phrases-notification.php:7
1834
+ msgid "Notification Phrases"
1835
+ msgstr ""
1836
+
1837
+ #: options/phrases-layouts/phrases-notification.php:12
1838
+ msgid "You\\'re subscribed to"
1839
+ msgstr ""
1840
+
1841
+ #: options/phrases-layouts/phrases-notification.php:43
1842
+ msgid "Postmatic subscription label"
1843
+ msgstr ""
1844
+
1845
+ #: options/phrases-layouts/phrases-notification.php:54
1846
+ msgid "Error message for empty field"
1847
+ msgstr ""
1848
+
1849
+ #: options/phrases-layouts/phrases-notification.php:64
1850
+ msgid "Error message for invalid email field"
1851
+ msgstr ""
1852
+
1853
+ #: options/phrases-layouts/phrases-notification.php:74
1854
+ msgid "Error message for invalid website url field"
1855
+ msgstr ""
1856
+
1857
+ #: options/phrases-layouts/phrases-notification.php:94
1858
+ msgid "Logged in as"
1859
+ msgstr ""
1860
+
1861
+ #: options/phrases-layouts/phrases-notification.php:114
1862
+ msgid "Logged In"
1863
+ msgstr ""
1864
+
1865
+ #: options/phrases-layouts/phrases-notification.php:124
1866
+ msgid "To post a comment"
1867
+ msgstr ""
1868
+
1869
+ #: options/phrases-layouts/phrases-notification.php:144
1870
+ msgid "You can vote only 1 time"
1871
+ msgstr ""
1872
+
1873
+ #: options/phrases-layouts/phrases-notification.php:164
1874
+ msgid "Login To Vote"
1875
+ msgstr ""
1876
+
1877
+ #: options/phrases-layouts/phrases-notification.php:174
1878
+ msgid "You Cannot Vote On Your Comment"
1879
+ msgstr ""
1880
+
1881
+ #: options/phrases-layouts/phrases-notification.php:184
1882
+ msgid "You are not allowed to vote for this comment (Voting from same IP)"
1883
+ msgstr ""
1884
+
1885
+ #: options/phrases-layouts/phrases-notification.php:214
1886
+ msgid "Comment waiting moderation"
1887
+ msgstr ""
1888
+
1889
+ #: options/phrases-layouts/phrases-notification.php:224
1890
+ msgid "Message if input text length is too short"
1891
+ msgstr ""
1892
+
1893
+ #: options/phrases-layouts/phrases-notification.php:234
1894
+ msgid "Message if input text length is too long"
1895
+ msgstr ""
1896
+
1897
+ #: options/phrases-layouts/phrases-notification.php:245
1898
+ msgid "Message if comment was not updated"
1899
+ msgstr ""
1900
+
1901
+ #: options/phrases-layouts/phrases-notification.php:255
1902
+ msgid "Message if comment no longer possible to edit"
1903
+ msgstr ""
1904
+
1905
+ #: options/phrases-layouts/phrases-notification.php:265
1906
+ msgid "Message if comment text not changed"
1907
+ msgstr ""
1908
+
1909
+ #: options/phrases-layouts/phrases-notification.php:269
1910
+ msgid "TYou've not made any changes"
1911
+ msgstr ""
1912
+
1913
+ #: options/tools-layouts/options-export.php:10
1914
+ msgid ""
1915
+ "You can transfer the saved options data between different installs by "
1916
+ "copying the text inside this textarea. To import data from another install, "
1917
+ "navigate to \"Import Options\" Tab and put the data in textarea with the one "
1918
+ "from another install and click \"Save Changes\". Make sure you use the same "
1919
+ "wpDiscuz versions."
1920
+ msgstr ""
1921
+
1922
+ #: options/tools-layouts/options-import.php:9
1923
+ msgid ""
1924
+ "You can transfer the saved options data between different installs by "
1925
+ "copying the text inside this textarea in \"Export Options\" Tab. To import "
1926
+ "data from another install, just put the data in textarea with the one from "
1927
+ "another install and click \"Save Changes\". Make sure you use the same "
1928
+ "wpDiscuz versions."
1929
+ msgstr ""
1930
+
1931
+ #: templates/comment/comment-form.php:83
1932
+ msgid "Unable to send an email"
1933
+ msgstr ""
1934
+
1935
+ #: templates/comment/comment-form.php:85
1936
+ msgid "Subscription not successed"
1937
+ msgstr ""
1938
+
1939
+ #: templates/comment/comment-form.php:307
1940
+ msgid "wpDiscuz"
1941
+ msgstr ""
1942
+
1943
+ #. Plugin Name of the plugin/theme
1944
+ msgid "Comments - wpDiscuz"
1945
+ msgstr ""
1946
+
1947
+ #. Plugin URI of the plugin/theme
1948
+ msgid "http://wpdiscuz.com/"
1949
+ msgstr ""
1950
+
1951
+ #. Description of the plugin/theme
1952
+ msgid ""
1953
+ "Better comment system. Wordpress post comments and discussion plugin. Allows "
1954
+ "your visitors discuss, vote for comments and share."
1955
+ msgstr ""
1956
+
1957
+ #. Author of the plugin/theme
1958
+ msgid "gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
1959
+ msgstr ""
1960
+
1961
+ #. Author URI of the plugin/theme
1962
+ msgid "http://gvectors.com/"
1963
+ msgstr ""
options/class.WpdiscuzOptionsSerialized.php CHANGED
@@ -437,6 +437,7 @@ class WpdiscuzOptionsSerialized {
437
  */
438
  public $commenterNameMaxLength;
439
  public $isGoodbyeCaptchaActive;
 
440
  public $formContentTypeRel;
441
  public $formPostRel;
442
  public $guestCanComment;
@@ -477,7 +478,7 @@ class WpdiscuzOptionsSerialized {
477
  $this->wordpressShowAvatars = get_option('show_avatars');
478
  $this->wordpressDefaultCommentsPage = get_option('default_comments_page');
479
  $this->initFormRelations();
480
- $this->isGoodbyeCaptchaActive = is_callable(array('GdbcWordPressPublicModule', 'isCommentsProtectionActivated')) && GdbcWordPressPublicModule::isCommentsProtectionActivated();
481
  add_action('init', array(&$this, 'initPhrasesOnLoad'), 2126);
482
  }
483
 
@@ -834,5 +835,12 @@ class WpdiscuzOptionsSerialized {
834
  $js_options['facebookAppID'] = $this->facebookAppID;
835
  return $js_options;
836
  }
 
 
 
 
 
 
 
837
 
838
  }
437
  */
438
  public $commenterNameMaxLength;
439
  public $isGoodbyeCaptchaActive;
440
+ public $goodbyeCaptchaTocken;
441
  public $formContentTypeRel;
442
  public $formPostRel;
443
  public $guestCanComment;
478
  $this->wordpressShowAvatars = get_option('show_avatars');
479
  $this->wordpressDefaultCommentsPage = get_option('default_comments_page');
480
  $this->initFormRelations();
481
+ $this->initGoodbyeCaptchaField();
482
  add_action('init', array(&$this, 'initPhrasesOnLoad'), 2126);
483
  }
484
 
835
  $js_options['facebookAppID'] = $this->facebookAppID;
836
  return $js_options;
837
  }
838
+
839
+ private function initGoodbyeCaptchaField(){
840
+ $this->isGoodbyeCaptchaActive = is_callable(array('GdbcWordPressPublicModule', 'isCommentsProtectionActivated')) && GdbcWordPressPublicModule::isCommentsProtectionActivated();
841
+ if($this->isGoodbyeCaptchaActive){
842
+ $this->goodbyeCaptchaTocken = GdbcWordPressPublicModule::getInstance()->getTokenFieldHtml();
843
+ }
844
+ }
845
 
846
  }
readme.txt CHANGED
@@ -3,7 +3,7 @@ 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.6.1
6
- Stable tag: 4.0.0
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -138,6 +138,13 @@ Support Forum: http://gvectors.com/forum/
138
 
139
  == Changelog ==
140
 
 
 
 
 
 
 
 
141
  = 4.0.0 =
142
 
143
  * Comment Template: New, modern and clean comment list layout and design
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.6.1
6
+ Stable tag: 4.0.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
138
 
139
  == Changelog ==
140
 
141
+ = 4.0.1 =
142
+
143
+ * Fixed Bug: Unable to disable comment author labels
144
+ * Fixed Bug: Twitter share button wrong title
145
+ * Fixed Bug: PHP Fatal error - conflict with WPBruiser no-Captcha anti-Spam plugin
146
+ * Fixed Bug: Missing arguments for this function: "renderAdminCommentMetaHtml()"
147
+
148
  = 4.0.0 =
149
 
150
  * Comment Template: New, modern and clean comment list layout and design
templates/comment/class.WpdiscuzWalker.php CHANGED
@@ -153,8 +153,8 @@ class WpdiscuzWalker extends Walker_Comment {
153
  $output .= '<div class="wc-comment-left">' . $commentAuthorAvatar;
154
  if (!$this->optionsSerialized->authorTitlesShowHide && !$trackOrPingback) {
155
  $author_title = apply_filters('wpdiscuz_author_title', $author_title, $comment);
 
156
  }
157
- $output .= '<div class="' . $authorClass . ' wc-comment-label">' . '<span>' . $author_title . '</span>' . '</div>';
158
  $afterLabelHtml = apply_filters('wpdiscuz_after_label', $afterLabelHtml = '', $comment);
159
  $output .= $afterLabelHtml;
160
  $output .= '</div>';
@@ -164,43 +164,43 @@ class WpdiscuzWalker extends Walker_Comment {
164
  $output .= '<div id="comment-' . $comment->comment_ID . '" class="wc-comment-right ' . $commentContentClass . '" ' . $hideAvatarStyle . '>';
165
  $output .= '<div class="wc-comment-header">';
166
  $output .= '<div class="wc-comment-author">' . $authorName . '</div>';
167
-
168
- $output .= '<div class="wc-comment-link">';
169
- if ($this->optionsSerialized->shareButtons) {
170
- $output .= '<i class="fa fa-share-alt wc-share-link wpf-cta" aria-hidden="true" title="' . $shareText . '" ></i>';
171
- $commentLinkLength = strlen($commentLink);
172
- if($commentLinkLength < 110){
173
- $twitt_content = mb_substr(esc_attr(strip_tags($commentContent)), 0, 140 - $commentLinkLength). '... ' . $commentLink;
174
- }else{
175
- $twitt_content = $commentLink;
176
- }
177
- $output .= '<span class="share_buttons_box">';
178
- $output .= (in_array('fb', $this->optionsSerialized->shareButtons) && $this->optionsSerialized->facebookAppID)? '<span class="wc_fb"><i class="fa fa-facebook wpf-cta wc_tooltipster" aria-hidden="true" title=""></i><span>' . $this->optionsSerialized->phrases['wc_share_facebook'] . '</span></span>' : '';
179
- $output .= in_array('twitter', $this->optionsSerialized->shareButtons) ? '<a class="wc_tw" target="_blank" href="https://twitter.com/home?status=' . $twitt_content . '" title=""><i class="fa fa-twitter wpf-cta" aria-hidden="true"></i><span>' . $this->optionsSerialized->phrases['wc_share_facebook'] . '</span></a>' : '';
180
- $output .= in_array('google', $this->optionsSerialized->shareButtons) ? '<a class="wc_go" target="_blank" href="https://plus.google.com/share?url=' . get_permalink($comment->comment_post_ID) . '" title=""><i class="fa fa-google wpf-cta" aria-hidden="true"></i><span>' . $this->optionsSerialized->phrases['wc_share_google'] . '</span></a>' : '';
181
- $output .= in_array('vk', $this->optionsSerialized->shareButtons) ? '<a class="wc_vk" target="_blank" href="http://vk.com/share.php?url=' . get_permalink($comment->comment_post_ID) . '" title=""><i class="fa fa-vk wpf-cta" aria-hidden="true"></i><span>' . $this->optionsSerialized->phrases['wc_share_vk'] . '</span></a>' : '';
182
- $output .= in_array('ok', $this->optionsSerialized->shareButtons) ? '<a class="wc_ok" target="_blank" href="http://www.odnoklassniki.ru/dk?st.cmd=addShare&st.s=1&st._surl=' . get_permalink($comment->comment_post_ID) . '" title=""><i class="fa fa-odnoklassniki wpf-cta" aria-hidden="true"></i><span>' . $this->optionsSerialized->phrases['wc_share_ok'] . '</span></a>' : '';
183
- $output .= '</span>';
184
- }
185
-
186
- $output = apply_filters('wpdiscuz_after_comment_link', $output, $comment);
187
-
188
- if (!$this->optionsSerialized->showHideCommentLink) {
189
  $commentLinkImg = '<span class="wc-comment-img-link-wrap"><i class="fa fa-link wc-comment-img-link wpf-cta" aria-hidden="true"/></i><span><input type="text" class="wc-comment-link-input" value="' . $commentLink . '" /></span>';
190
  $output .= apply_filters('wpdiscuz_comment_link_img', $commentLinkImg, $comment);
191
  }
192
-
193
- $output .= '</div>';
194
- $output .= '<div class="wpdiscuz_clear"></div>';
195
  $output .= '</div>';
196
  $output .= apply_filters('wpdiscuz_comment_text', '<div class="wc-comment-text">' . $commentContent . '</div>', $comment, $args);
197
  $output = apply_filters('wpdiscuz_after_comment_text', $output, $comment);
198
  if (isset($args['comment_status']) && is_array($args['comment_status']) && in_array($comment->comment_approved, $args['comment_status'])) {
199
  $output .= '<div class="wc-comment-footer">';
200
  $output .= '<div class="wc-footer-left">';
201
-
202
-
203
- if (!$this->optionsSerialized->votingButtonsShowHide) {
204
  if ($this->optionsSerialized->votingButtonsStyle) {
205
  $votesArr = $this->dbManager->getVotes($comment->comment_ID);
206
  if ($votesArr && count($votesArr) == 1) {
@@ -214,20 +214,20 @@ class WpdiscuzWalker extends Walker_Comment {
214
  $voteFaUpImg = '<i class="fa fa-thumbs-up fa-flip-horizontal wc-vote-img-up"></i><span>' . $voteUp . '</span>';
215
  $output .= apply_filters('wpdiscuz_vote_up_icon', $voteFaUpImg, $comment, $current_user);
216
  $output .= '</span>';
217
- $output .= '<div class="wc-vote-result wc-vote-result-like' . (($like) ? ' wc-positive' : '') . '">' . $like . '</div>';
218
  $output .= '<div class="wc-vote-result wc-vote-result-dislike' . (($dislike) ? ' wc-negative' : '') . '">' . $dislike . '</div>';
219
  $output .= '<span class="wc-vote-link wc-down wc-separate' . $voteClass . '">';
220
  $voteFaDownImg = '<i class="fa fa-thumbs-down wc-vote-img-down"></i><span>' . $voteDown . '</span>';
221
  $output .= apply_filters('wpdiscuz_vote_down_icon', $voteFaDownImg, $comment, $current_user);
222
  $output .= '</span>';
223
- $output = apply_filters('wpdiscuz_voters', $output, $uniqueId, $comment, $user, $current_user);
224
  } else {
225
  $voteCount = isset($comment->meta_value) ? $comment->meta_value : get_comment_meta($comment->comment_ID, WpdiscuzCore::META_KEY_VOTES, true);
226
  $output = apply_filters('wpdiscuz_voters', $output, $uniqueId, $comment, $user, $current_user);
227
  $output .= '<span class="wc-vote-link wc-up ' . $voteClass . '">';
228
  $voteFaUpImg = '<i class="fa fa-thumbs-up fa-flip-horizontal wc-vote-img-up"></i><span>' . $voteUp . '</span>';
229
  $output .= apply_filters('wpdiscuz_vote_up_icon', $voteFaUpImg, $comment, $current_user);
230
- $output .= '</span>';
231
  $output .= '<div class="wc-vote-result">' . intval($voteCount) . '</div>';
232
  $output .= '<span class="wc-vote-link wc-down ' . $voteClass . '">';
233
  $voteFaDownImg = '<i class="fa fa-thumbs-down wc-vote-img-down"></i><span>' . $voteDown . '</span>';
@@ -235,7 +235,7 @@ class WpdiscuzWalker extends Walker_Comment {
235
  $output .= '</span>&nbsp;';
236
  }
237
  }
238
-
239
  if (comments_open($comment->comment_post_ID) && $this->optionsSerialized->wordpressThreadComments) {
240
  if (!$this->optionsSerialized->guestCanComment) {
241
  if (!$this->optionsSerialized->replyButtonMembersShowHide && $current_user->ID) {
@@ -256,32 +256,32 @@ class WpdiscuzWalker extends Walker_Comment {
256
  }
257
  }
258
 
259
-
260
 
261
  if (current_user_can('edit_comment', $comment->comment_ID)) {
262
  $output .= '<span class="wc_editable_comment wc-cta-button"><i class="fa fa-pencil" aria-hidden="true"></i> ' . $this->optionsSerialized->phrases['wc_edit_text'] . '</span>';
263
- $output .= '<span class="wc_cancel_edit wc-cta-button-x"><i class="fa fa-ban" aria-hidden="true"></i> ' . $this->optionsSerialized->phrases['wc_comment_edit_cancel_button'] . '</span>';
264
  } else {
265
  $isInRange = $this->helper->isContentInRange($commentContent);
266
  $isEditable = $this->optionsSerialized->commentEditableTime == 'unlimit' ? true && $isInRange : $this->helper->isCommentEditable($comment) && $isInRange;
267
  if ($current_user && $current_user->ID && $current_user->ID == $comment->user_id && $isEditable) {
268
  $output .= '<span class="wc_editable_comment wc-cta-button"><i class="fa fa-pencil" aria-hidden="true"></i> ' . $this->optionsSerialized->phrases['wc_edit_text'] . '</span>';
269
- $output .= '<span class="wc_cancel_edit"><i class="fa fa-ban" aria-hidden="true"></i> ' . $this->optionsSerialized->phrases['wc_comment_edit_cancel_button'] . '</span>';
270
  }
271
  }
272
 
273
  $output = apply_filters('wpdiscuz_comment_buttons', $output, $comment, $user, $current_user);
274
 
275
- $output .= '</div>';
276
- $output .= '<div class="wc-footer-right">';
277
-
278
- $output .= '<div class="wc-comment-date"><i class="fa fa-clock-o" aria-hidden="true"></i>' . $posted_date . '</div>';
279
  if ($depth < $this->optionsSerialized->wordpressThreadCommentsDepth && $this->optionsSerialized->wordpressThreadComments) {
280
- $output .= '<div class="wc-toggle wpdiscuz-hidden"><i class="fa fa-chevron-up" aria-hidden="true" title="' . $this->optionsSerialized->phrases['wc_hide_replies_text'] .'"></i></div>';
281
  }
282
  $output .= '</div>';
283
- $output .= '<div class="wpdiscuz_clear"></div>';
284
- $output .= '</div>';
285
  }
286
  $output .= '</div>';
287
  $output .= '<div class="wpdiscuz-comment-message"></div>';
153
  $output .= '<div class="wc-comment-left">' . $commentAuthorAvatar;
154
  if (!$this->optionsSerialized->authorTitlesShowHide && !$trackOrPingback) {
155
  $author_title = apply_filters('wpdiscuz_author_title', $author_title, $comment);
156
+ $output .= '<div class="' . $authorClass . ' wc-comment-label">' . '<span>' . $author_title . '</span>' . '</div>';
157
  }
 
158
  $afterLabelHtml = apply_filters('wpdiscuz_after_label', $afterLabelHtml = '', $comment);
159
  $output .= $afterLabelHtml;
160
  $output .= '</div>';
164
  $output .= '<div id="comment-' . $comment->comment_ID . '" class="wc-comment-right ' . $commentContentClass . '" ' . $hideAvatarStyle . '>';
165
  $output .= '<div class="wc-comment-header">';
166
  $output .= '<div class="wc-comment-author">' . $authorName . '</div>';
167
+
168
+ $output .= '<div class="wc-comment-link">';
169
+ if ($this->optionsSerialized->shareButtons) {
170
+ $output .= '<i class="fa fa-share-alt wc-share-link wpf-cta" aria-hidden="true" title="' . $shareText . '" ></i>';
171
+ $commentLinkLength = strlen($commentLink);
172
+ if ($commentLinkLength < 110) {
173
+ $twitt_content = mb_substr(esc_attr(strip_tags($commentContent)), 0, 140 - $commentLinkLength) . '... ' . $commentLink;
174
+ } else {
175
+ $twitt_content = $commentLink;
176
+ }
177
+ $output .= '<span class="share_buttons_box">';
178
+ $output .= (in_array('fb', $this->optionsSerialized->shareButtons) && $this->optionsSerialized->facebookAppID) ? '<span class="wc_fb"><i class="fa fa-facebook wpf-cta wc_tooltipster" aria-hidden="true" title=""></i><span>' . $this->optionsSerialized->phrases['wc_share_facebook'] . '</span></span>' : '';
179
+ $output .= in_array('twitter', $this->optionsSerialized->shareButtons) ? '<a class="wc_tw" target="_blank" href="https://twitter.com/home?status=' . $twitt_content . '" title=""><i class="fa fa-twitter wpf-cta" aria-hidden="true"></i><span>' . $this->optionsSerialized->phrases['wc_share_twitter'] . '</span></a>' : '';
180
+ $output .= in_array('google', $this->optionsSerialized->shareButtons) ? '<a class="wc_go" target="_blank" href="https://plus.google.com/share?url=' . get_permalink($comment->comment_post_ID) . '" title=""><i class="fa fa-google wpf-cta" aria-hidden="true"></i><span>' . $this->optionsSerialized->phrases['wc_share_google'] . '</span></a>' : '';
181
+ $output .= in_array('vk', $this->optionsSerialized->shareButtons) ? '<a class="wc_vk" target="_blank" href="http://vk.com/share.php?url=' . get_permalink($comment->comment_post_ID) . '" title=""><i class="fa fa-vk wpf-cta" aria-hidden="true"></i><span>' . $this->optionsSerialized->phrases['wc_share_vk'] . '</span></a>' : '';
182
+ $output .= in_array('ok', $this->optionsSerialized->shareButtons) ? '<a class="wc_ok" target="_blank" href="http://www.odnoklassniki.ru/dk?st.cmd=addShare&st.s=1&st._surl=' . get_permalink($comment->comment_post_ID) . '" title=""><i class="fa fa-odnoklassniki wpf-cta" aria-hidden="true"></i><span>' . $this->optionsSerialized->phrases['wc_share_ok'] . '</span></a>' : '';
183
+ $output .= '</span>';
184
+ }
185
+
186
+ $output = apply_filters('wpdiscuz_after_comment_link', $output, $comment);
187
+
188
+ if (!$this->optionsSerialized->showHideCommentLink) {
189
  $commentLinkImg = '<span class="wc-comment-img-link-wrap"><i class="fa fa-link wc-comment-img-link wpf-cta" aria-hidden="true"/></i><span><input type="text" class="wc-comment-link-input" value="' . $commentLink . '" /></span>';
190
  $output .= apply_filters('wpdiscuz_comment_link_img', $commentLinkImg, $comment);
191
  }
192
+
193
+ $output .= '</div>';
194
+ $output .= '<div class="wpdiscuz_clear"></div>';
195
  $output .= '</div>';
196
  $output .= apply_filters('wpdiscuz_comment_text', '<div class="wc-comment-text">' . $commentContent . '</div>', $comment, $args);
197
  $output = apply_filters('wpdiscuz_after_comment_text', $output, $comment);
198
  if (isset($args['comment_status']) && is_array($args['comment_status']) && in_array($comment->comment_approved, $args['comment_status'])) {
199
  $output .= '<div class="wc-comment-footer">';
200
  $output .= '<div class="wc-footer-left">';
201
+
202
+
203
+ if (!$this->optionsSerialized->votingButtonsShowHide) {
204
  if ($this->optionsSerialized->votingButtonsStyle) {
205
  $votesArr = $this->dbManager->getVotes($comment->comment_ID);
206
  if ($votesArr && count($votesArr) == 1) {
214
  $voteFaUpImg = '<i class="fa fa-thumbs-up fa-flip-horizontal wc-vote-img-up"></i><span>' . $voteUp . '</span>';
215
  $output .= apply_filters('wpdiscuz_vote_up_icon', $voteFaUpImg, $comment, $current_user);
216
  $output .= '</span>';
217
+ $output .= '<div class="wc-vote-result wc-vote-result-like' . (($like) ? ' wc-positive' : '') . '">' . $like . '</div>';
218
  $output .= '<div class="wc-vote-result wc-vote-result-dislike' . (($dislike) ? ' wc-negative' : '') . '">' . $dislike . '</div>';
219
  $output .= '<span class="wc-vote-link wc-down wc-separate' . $voteClass . '">';
220
  $voteFaDownImg = '<i class="fa fa-thumbs-down wc-vote-img-down"></i><span>' . $voteDown . '</span>';
221
  $output .= apply_filters('wpdiscuz_vote_down_icon', $voteFaDownImg, $comment, $current_user);
222
  $output .= '</span>';
223
+ $output = apply_filters('wpdiscuz_voters', $output, $uniqueId, $comment, $user, $current_user);
224
  } else {
225
  $voteCount = isset($comment->meta_value) ? $comment->meta_value : get_comment_meta($comment->comment_ID, WpdiscuzCore::META_KEY_VOTES, true);
226
  $output = apply_filters('wpdiscuz_voters', $output, $uniqueId, $comment, $user, $current_user);
227
  $output .= '<span class="wc-vote-link wc-up ' . $voteClass . '">';
228
  $voteFaUpImg = '<i class="fa fa-thumbs-up fa-flip-horizontal wc-vote-img-up"></i><span>' . $voteUp . '</span>';
229
  $output .= apply_filters('wpdiscuz_vote_up_icon', $voteFaUpImg, $comment, $current_user);
230
+ $output .= '</span>';
231
  $output .= '<div class="wc-vote-result">' . intval($voteCount) . '</div>';
232
  $output .= '<span class="wc-vote-link wc-down ' . $voteClass . '">';
233
  $voteFaDownImg = '<i class="fa fa-thumbs-down wc-vote-img-down"></i><span>' . $voteDown . '</span>';
235
  $output .= '</span>&nbsp;';
236
  }
237
  }
238
+
239
  if (comments_open($comment->comment_post_ID) && $this->optionsSerialized->wordpressThreadComments) {
240
  if (!$this->optionsSerialized->guestCanComment) {
241
  if (!$this->optionsSerialized->replyButtonMembersShowHide && $current_user->ID) {
256
  }
257
  }
258
 
259
+
260
 
261
  if (current_user_can('edit_comment', $comment->comment_ID)) {
262
  $output .= '<span class="wc_editable_comment wc-cta-button"><i class="fa fa-pencil" aria-hidden="true"></i> ' . $this->optionsSerialized->phrases['wc_edit_text'] . '</span>';
263
+ $output .= '<span class="wc_cancel_edit wc-cta-button-x"><i class="fa fa-ban" aria-hidden="true"></i> ' . $this->optionsSerialized->phrases['wc_comment_edit_cancel_button'] . '</span>';
264
  } else {
265
  $isInRange = $this->helper->isContentInRange($commentContent);
266
  $isEditable = $this->optionsSerialized->commentEditableTime == 'unlimit' ? true && $isInRange : $this->helper->isCommentEditable($comment) && $isInRange;
267
  if ($current_user && $current_user->ID && $current_user->ID == $comment->user_id && $isEditable) {
268
  $output .= '<span class="wc_editable_comment wc-cta-button"><i class="fa fa-pencil" aria-hidden="true"></i> ' . $this->optionsSerialized->phrases['wc_edit_text'] . '</span>';
269
+ $output .= '<span class="wc_cancel_edit"><i class="fa fa-ban" aria-hidden="true"></i> ' . $this->optionsSerialized->phrases['wc_comment_edit_cancel_button'] . '</span>';
270
  }
271
  }
272
 
273
  $output = apply_filters('wpdiscuz_comment_buttons', $output, $comment, $user, $current_user);
274
 
275
+ $output .= '</div>';
276
+ $output .= '<div class="wc-footer-right">';
277
+
278
+ $output .= '<div class="wc-comment-date"><i class="fa fa-clock-o" aria-hidden="true"></i>' . $posted_date . '</div>';
279
  if ($depth < $this->optionsSerialized->wordpressThreadCommentsDepth && $this->optionsSerialized->wordpressThreadComments) {
280
+ $output .= '<div class="wc-toggle wpdiscuz-hidden"><i class="fa fa-chevron-up" aria-hidden="true" title="' . $this->optionsSerialized->phrases['wc_hide_replies_text'] . '"></i></div>';
281
  }
282
  $output .= '</div>';
283
+ $output .= '<div class="wpdiscuz_clear"></div>';
284
+ $output .= '</div>';
285
  }
286
  $output .= '</div>';
287
  $output .= '<div class="wpdiscuz-comment-message"></div>';