Comments – wpDiscuz - Version 5.1.2

Version Description

Download this release

Release Info

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

Code changes from version 5.1.1 to 5.1.2

assets/js/wpdiscuz-social.js CHANGED
@@ -147,20 +147,19 @@ jQuery(document).ready(function ($) {
147
  postID: wpdiscuzAjaxObj.wpdiscuz_options.wc_post_id
148
  }
149
  }).done(function (wpdiscuz_response) {
150
- wpdHandleRespons(wpdiscuz_response, container);
151
  });
152
  return response;
153
  }
154
 
155
- function wpdHandleRespons(respons, container) {
156
  try {
157
  var obj = $.parseJSON(respons);
158
  var code = obj.code;
159
  var message = obj.message;
160
  var url = obj.url;
161
  if (parseInt(code) === 200) {
162
- window.location.href = url;
163
- window.location.reload(true);
164
  } else {
165
  container.append('<div class="wpdiscuz-social-login-error">' + message + '</div>');
166
  }
147
  postID: wpdiscuzAjaxObj.wpdiscuz_options.wc_post_id
148
  }
149
  }).done(function (wpdiscuz_response) {
150
+ wpdHandleResponse(wpdiscuz_response, container);
151
  });
152
  return response;
153
  }
154
 
155
+ function wpdHandleResponse(respons, container) {
156
  try {
157
  var obj = $.parseJSON(respons);
158
  var code = obj.code;
159
  var message = obj.message;
160
  var url = obj.url;
161
  if (parseInt(code) === 200) {
162
+ location.assign(url);
 
163
  } else {
164
  container.append('<div class="wpdiscuz-social-login-error">' + message + '</div>');
165
  }
assets/js/wpdiscuz.js CHANGED
@@ -294,7 +294,7 @@ jQuery(document).ready(function ($) {
294
  data.append('wpdiscuz_zs', wpdiscuzAjaxObj.wpdiscuz_options.wpdiscuz_zs);
295
  }
296
 
297
- if ($('#wp-comment-cookies-consent').length && !$('#wp-comment-cookies-consent').prop("checked")) {
298
  wpdCookiesConsent = false;
299
  }
300
 
@@ -341,6 +341,8 @@ jQuery(document).ready(function ($) {
341
  wpdiscuzRedirect(obj);
342
  if (isCookiesEnabled && wpdCookiesConsent) {
343
  addCookie(wcForm, obj);
 
 
344
  }
345
  wcForm.get(0).reset();
346
  setCookieInForm(obj);
@@ -446,8 +448,8 @@ jQuery(document).ready(function ($) {
446
  Cookies.set('comment_author_url_' + wpdiscuzCookiehash, weburl, {expires: storeCommenterData, path: '/'});
447
  }
448
  }
449
- if($('#wp-comment-cookies-consent').length){
450
- $('#wp-comment-cookies-consent').attr('checked','checked');
451
  }
452
  }
453
  //============================== ADD COMMENT FUNCTION ============================== //
@@ -466,7 +468,7 @@ jQuery(document).ready(function ($) {
466
  wcCommentTextBeforeEditing = wcCommentTextBeforeEditingTop.length ? '<div class="wpd-top-custom-fields">' + wcCommentTextBeforeEditingTop.html() + '</div>' : '';
467
  wcCommentTextBeforeEditing += '<div class="wc-comment-text">' + $('#wc-comm-' + uniqueID + ' .wc-comment-text').html() + '</div>';
468
  wcCommentTextBeforeEditing += wcCommentTextBeforeEditingBottom.length ? '<div class="wpd-bottom-custom-fields">' + $('#wc-comm-' + uniqueID + ' .wpd-bottom-custom-fields').html() + '</div>' : '';
469
-
470
  getAjaxObj(true, data).done(function (response) {
471
  try {
472
  var obj = $.parseJSON(response);
@@ -559,7 +561,7 @@ jQuery(document).ready(function ($) {
559
  function wcCancelOrSave(uniqueID, content) {
560
  $('#wc-comm-' + uniqueID + ' > .wc-comment-right .wc-comment-footer .wc_editable_comment').show();
561
  $('#wc-comm-' + uniqueID + ' > .wc-comment-right .wc-comment-footer .wc_cancel_edit').hide();
562
- $('#wc-comm-' + uniqueID + ' #wpdiscuz-edit-form').replaceWith(content);
563
  }
564
 
565
  function nl2br(str, is_xhtml) {
294
  data.append('wpdiscuz_zs', wpdiscuzAjaxObj.wpdiscuz_options.wpdiscuz_zs);
295
  }
296
 
297
+ if ($('.wpd-cookies-chackbox', wcForm).length && !$('.wpd-cookies-chackbox', wcForm).prop("checked")) {
298
  wpdCookiesConsent = false;
299
  }
300
 
341
  wpdiscuzRedirect(obj);
342
  if (isCookiesEnabled && wpdCookiesConsent) {
343
  addCookie(wcForm, obj);
344
+ } else if (!wpdCookiesConsent) {
345
+ $('.wpd-cookies-chackbox').removeAttr('checked');
346
  }
347
  wcForm.get(0).reset();
348
  setCookieInForm(obj);
448
  Cookies.set('comment_author_url_' + wpdiscuzCookiehash, weburl, {expires: storeCommenterData, path: '/'});
449
  }
450
  }
451
+ if ($('.wpd-cookies-chackbox').length) {
452
+ $('.wpd-cookies-chackbox').attr('checked', 'checked');
453
  }
454
  }
455
  //============================== ADD COMMENT FUNCTION ============================== //
468
  wcCommentTextBeforeEditing = wcCommentTextBeforeEditingTop.length ? '<div class="wpd-top-custom-fields">' + wcCommentTextBeforeEditingTop.html() + '</div>' : '';
469
  wcCommentTextBeforeEditing += '<div class="wc-comment-text">' + $('#wc-comm-' + uniqueID + ' .wc-comment-text').html() + '</div>';
470
  wcCommentTextBeforeEditing += wcCommentTextBeforeEditingBottom.length ? '<div class="wpd-bottom-custom-fields">' + $('#wc-comm-' + uniqueID + ' .wpd-bottom-custom-fields').html() + '</div>' : '';
471
+ console.log(wcCommentTextBeforeEditing);
472
  getAjaxObj(true, data).done(function (response) {
473
  try {
474
  var obj = $.parseJSON(response);
561
  function wcCancelOrSave(uniqueID, content) {
562
  $('#wc-comm-' + uniqueID + ' > .wc-comment-right .wc-comment-footer .wc_editable_comment').show();
563
  $('#wc-comm-' + uniqueID + ' > .wc-comment-right .wc-comment-footer .wc_cancel_edit').hide();
564
+ $('#wc-comm-' + uniqueID + ' .wpdiscuz-edit-form-wrap').replaceWith(content);
565
  }
566
 
567
  function nl2br(str, is_xhtml) {
class.WpdiscuzCore.php CHANGED
@@ -3,7 +3,7 @@
3
  /*
4
  * Plugin Name: wpDiscuz
5
  * Description: Better comment system. Wordpress post comments and discussion plugin. Allows your visitors discuss, vote for comments and share.
6
- * Version: 5.1.1
7
  * Author: gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)
8
  * Author URI: https://gvectors.com/
9
  * Plugin URI: http://wpdiscuz.com/
3
  /*
4
  * Plugin Name: wpDiscuz
5
  * Description: Better comment system. Wordpress post comments and discussion plugin. Allows your visitors discuss, vote for comments and share.
6
+ * Version: 5.1.2
7
  * Author: gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)
8
  * Author URI: https://gvectors.com/
9
  * Plugin URI: http://wpdiscuz.com/
forms/wpdFormAttr/Field/CookiesConsent.php CHANGED
@@ -43,8 +43,8 @@ class CookiesConsent extends Field {
43
  <div class="wpdiscuz-item wpd-field-group wpd-field-checkbox wpd-field-cookies-consent wpd-field-single <?php echo $hasDesc ? 'wpd-has-desc' : '' ?>">
44
  <div class="wpd-field-group-title">
45
  <div class="wpd-item">
46
- <input id="wp-comment-cookies-consent" name="<?php echo $name; ?>" type="checkbox" value="1" <?php echo $consent; ?> class="<?php echo $name; ?> wpd-field wpd-cookies-chackbox" />
47
- <label class="wpd-field-label wpd-cursor-pointer" for="wp-comment-cookies-consent"><?php echo $args['label']; ?></label>
48
  </div>
49
  </div>
50
  <?php if ($args['desc']) { ?>
43
  <div class="wpdiscuz-item wpd-field-group wpd-field-checkbox wpd-field-cookies-consent wpd-field-single <?php echo $hasDesc ? 'wpd-has-desc' : '' ?>">
44
  <div class="wpd-field-group-title">
45
  <div class="wpd-item">
46
+ <input id="<?php echo $name . '-1_' . $uniqueId; ?>" name="<?php echo $name; ?>" type="checkbox" value="1" <?php echo $consent; ?> class="<?php echo $name; ?> wpd-field wpd-cookies-chackbox" />
47
+ <label class="wpd-field-label wpd-cursor-pointer" for="<?php echo $name . '-1_' . $uniqueId; ?>"><?php echo $args['label']; ?></label>
48
  </div>
49
  </div>
50
  <?php if ($args['desc']) { ?>
forms/wpdFormAttr/Login/SocialLogin.php CHANGED
@@ -72,7 +72,7 @@ class SocialLogin {
72
  private function getPostLink($postID) {
73
  $url = home_url();
74
  if ($postID) {
75
- $url = get_permalink($postID) . '#comments';
76
  }
77
  return $url;
78
  }
72
  private function getPostLink($postID) {
73
  $url = home_url();
74
  if ($postID) {
75
+ $url = get_permalink($postID);
76
  }
77
  return $url;
78
  }
includes/class.WpdiscuzDBManager.php CHANGED
@@ -765,11 +765,8 @@ class WpdiscuzDBManager implements WpDiscuzConstants {
765
  }
766
 
767
  public function getNotHashedVoteData($startId, $limit) {
768
- $data = array();
769
- if ($startId) {
770
- $sql = $this->db->prepare("SELECT `id` FROM `{$this->users_voted}` WHERE `id` > %d ORDER BY `id` ASC LIMIT %d;", $startId, $limit);
771
- $data = $this->db->get_col($sql);
772
- }
773
  return $data;
774
  }
775
 
765
  }
766
 
767
  public function getNotHashedVoteData($startId, $limit) {
768
+ $sql = $this->db->prepare("SELECT `id` FROM `{$this->users_voted}` WHERE `id` > %d ORDER BY `id` ASC LIMIT %d;", $startId, $limit);
769
+ $data = $this->db->get_col($sql);
 
 
 
770
  return $data;
771
  }
772
 
languages/wpdiscuz.pot CHANGED
@@ -1,3343 +1,3343 @@
1
- #, fuzzy
2
- msgid ""
3
- msgstr ""
4
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
- "Project-Id-Version: wpDiscuz\n"
6
- "POT-Creation-Date: 2018-05-30 22:54+0400\n"
7
- "PO-Revision-Date: 2018-05-30 22:54+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:258
24
- msgid "Every 3 hours"
25
- msgstr ""
26
-
27
- #: class.WpdiscuzCore.php:262
28
- msgid "Every 48 hours"
29
- msgstr ""
30
-
31
- #: class.WpdiscuzCore.php:375
32
- msgid "We are sorry, but this comment cannot be posted. Please try later."
33
- msgstr ""
34
-
35
- #: class.WpdiscuzCore.php:443
36
- msgid "This is closed comment thread"
37
- msgstr ""
38
-
39
- #: class.WpdiscuzCore.php:1096 class.WpdiscuzCore.php:1328
40
- msgid "Settings"
41
- msgstr ""
42
-
43
- #: class.WpdiscuzCore.php:1098 class.WpdiscuzCore.php:1330
44
- msgid "Phrases"
45
- msgstr ""
46
-
47
- #: class.WpdiscuzCore.php:1100
48
- msgid "Tools"
49
- msgstr ""
50
-
51
- #: class.WpdiscuzCore.php:1101 options/html-options.php:22
52
- #: options/html-options.php:64 options/options-layouts/settings-addons.php:14
53
- msgid "Addons"
54
- msgstr ""
55
-
56
- #: class.WpdiscuzCore.php:1113
57
- msgid "Do you really want to reset all options?"
58
- msgstr ""
59
-
60
- #: class.WpdiscuzCore.php:1114
61
- msgid "Do you really want to remove voting data?"
62
- msgstr ""
63
-
64
- #: class.WpdiscuzCore.php:1115
65
- msgid "Do you really want to reset phrases?"
66
- msgstr ""
67
-
68
- #: class.WpdiscuzCore.php:1116
69
- msgid "Do you really want to delete gravatars cache?"
70
- msgstr ""
71
-
72
- #: class.WpdiscuzCore.php:1117
73
- msgid "Do you really want to delete statistics cache?"
74
- msgstr ""
75
-
76
- #: class.WpdiscuzCore.php:1154
77
- msgid "Please check one of reasons before sending feedback!"
78
- msgstr ""
79
-
80
- #: class.WpdiscuzCore.php:1155 utils/deactivation-reason-modal.php:58
81
- msgid "Please provide more information"
82
- msgstr ""
83
-
84
- #: class.WpdiscuzCore.php:1402 options/phrases-layouts/phrases-comment.php:56
85
- msgid "Admin"
86
- msgstr ""
87
-
88
- #: class.WpdiscuzCore.php:1404 class.WpdiscuzCore.php:1413
89
- #: options/phrases-layouts/phrases-comment.php:58
90
- msgid "Author"
91
- msgstr ""
92
-
93
- #: class.WpdiscuzCore.php:1408 options/phrases-layouts/phrases-comment.php:64
94
- msgid "Member"
95
- msgstr ""
96
-
97
- #: class.WpdiscuzCore.php:1414 options/phrases-layouts/phrases-comment.php:62
98
- msgid "Guest"
99
- msgstr ""
100
-
101
- #: forms/wpDiscuzForm.php:96
102
- msgid "Invalid Data !!!"
103
- msgstr ""
104
-
105
- #: forms/wpDiscuzForm.php:104 forms/wpDiscuzForm.php:152
106
- msgid "Forms"
107
- msgstr ""
108
-
109
- #: forms/wpDiscuzForm.php:105 options/html-phrases.php:22
110
- msgid "Form"
111
- msgstr ""
112
-
113
- #: forms/wpDiscuzForm.php:106
114
- msgid "Add New"
115
- msgstr ""
116
-
117
- #: forms/wpDiscuzForm.php:107
118
- msgid "Add New Form"
119
- msgstr ""
120
-
121
- #: forms/wpDiscuzForm.php:108
122
- msgid "Edit Form"
123
- msgstr ""
124
-
125
- #: forms/wpDiscuzForm.php:109
126
- msgid "You did not create any forms yet"
127
- msgstr ""
128
-
129
- #: forms/wpDiscuzForm.php:110
130
- msgid "Nothing found in Trash"
131
- msgstr ""
132
-
133
- #: forms/wpDiscuzForm.php:111
134
- msgid "Search Forms"
135
- msgstr ""
136
-
137
- #: forms/wpDiscuzForm.php:166
138
- msgid "Title"
139
- msgstr ""
140
-
141
- #: forms/wpDiscuzForm.php:167
142
- msgid "Post Types"
143
- msgstr ""
144
-
145
- #: forms/wpDiscuzForm.php:168
146
- msgid "Post IDs"
147
- msgstr ""
148
-
149
- #: forms/wpDiscuzForm.php:169 forms/wpdFormAttr/Form.php:621
150
- msgid "Language"
151
- msgstr ""
152
-
153
- #: forms/wpDiscuzForm.php:170
154
- msgid "Date"
155
- msgstr ""
156
-
157
- #: forms/wpDiscuzForm.php:215
158
- msgid "Field Types"
159
- msgstr ""
160
-
161
- #: forms/wpDiscuzForm.php:216 forms/wpdFormAttr/Row.php:23
162
- msgid "Two column"
163
- msgstr ""
164
-
165
- #: forms/wpDiscuzForm.php:217 forms/wpdFormAttr/Field/Field.php:66
166
- #: forms/wpdFormAttr/Row.php:24
167
- msgid "Delete"
168
- msgstr ""
169
-
170
- #: forms/wpDiscuzForm.php:218 forms/wpdFormAttr/Row.php:25
171
- msgid "Move"
172
- msgstr ""
173
-
174
- #: forms/wpDiscuzForm.php:219 forms/wpdFormAttr/Row.php:69
175
- msgid "Add Field"
176
- msgstr ""
177
-
178
- #: forms/wpDiscuzForm.php:220 forms/wpdFormAttr/Field/Field.php:63
179
- #: options/class.WpdiscuzOptionsSerialized.php:779
180
- #: options/phrases-layouts/phrases-comment.php:19
181
- msgid "Edit"
182
- msgstr ""
183
-
184
- #: forms/wpDiscuzForm.php:221
185
- msgid "You can not delete default field."
186
- msgstr ""
187
-
188
- #: forms/wpDiscuzForm.php:222
189
- msgid "You really want to delete this item ?"
190
- msgstr ""
191
-
192
- #: forms/wpDiscuzForm.php:229
193
- msgid "Permission Denied !!!"
194
- msgstr ""
195
-
196
- #: forms/wpDiscuzForm.php:254 forms/wpdFormAttr/Form.php:591
197
- #: forms/wpdFormAttr/html/admin-form-fields-list.php:18
198
- #: options/options-layouts/settings-customfields.php:7
199
- msgid "Custom Fields"
200
- msgstr ""
201
-
202
- #: forms/wpDiscuzForm.php:302
203
- msgid "Custom CSS"
204
- msgstr ""
205
-
206
- #: forms/wpDiscuzForm.php:358
207
- msgid "Default Form"
208
- msgstr ""
209
-
210
- #: forms/wpDiscuzForm.php:391 forms/wpDiscuzForm.php:399
211
- #: forms/wpdFormAttr/Form.php:677
212
- msgid "Leave a Reply"
213
- msgstr ""
214
-
215
- #: forms/wpDiscuzForm.php:414 forms/wpdFormAttr/Field/AgreementCheckbox.php:12
216
- #: forms/wpdFormAttr/Field/CheckboxField.php:12
217
- #: forms/wpdFormAttr/Field/ColorField.php:12
218
- #: forms/wpdFormAttr/Field/CookiesConsent.php:14
219
- #: forms/wpdFormAttr/Field/DateField.php:12
220
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:27
221
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:19
222
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:18
223
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:65
224
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:18
225
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:18
226
- #: forms/wpdFormAttr/Field/NumberField.php:12
227
- #: forms/wpdFormAttr/Field/RadioField.php:12
228
- #: forms/wpdFormAttr/Field/RatingField.php:12
229
- #: forms/wpdFormAttr/Field/SelectField.php:12
230
- #: forms/wpdFormAttr/Field/TextAreaField.php:13
231
- #: forms/wpdFormAttr/Field/TextField.php:12
232
- #: forms/wpdFormAttr/Field/UrlField.php:12 forms/wpdFormAttr/Form.php:789
233
- msgid "Name"
234
- msgstr ""
235
-
236
- #: forms/wpDiscuzForm.php:416 forms/wpdFormAttr/Field/DefaultField/Email.php:65
237
- #: forms/wpdFormAttr/Form.php:796
238
- #: options/class.WpdiscuzOptionsSerialized.php:764 options/html-phrases.php:25
239
- msgid "Email"
240
- msgstr ""
241
-
242
- #: forms/wpDiscuzForm.php:418
243
- msgid "WebSite URL"
244
- msgstr ""
245
-
246
- #: forms/wpDiscuzForm.php:421
247
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:116
248
- #: forms/wpdFormAttr/Form.php:819
249
- msgid "Post Comment"
250
- msgstr ""
251
-
252
- #: forms/wpDiscuzForm.php:430
253
- msgid "Clone Form"
254
- msgstr ""
255
-
256
- #: forms/wpDiscuzForm.php:442
257
- msgid "Clone"
258
- msgstr ""
259
-
260
- #: forms/wpDiscuzForm.php:480
261
- msgid ""
262
- "Comment Form is not detected, please navigate to form manager page to create "
263
- "it. "
264
- msgstr ""
265
-
266
- #: forms/wpDiscuzForm.php:481
267
- msgid "Add Comment Form"
268
- msgstr ""
269
-
270
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:16
271
- #: forms/wpdFormAttr/Field/CheckboxField.php:17
272
- #: forms/wpdFormAttr/Field/ColorField.php:17
273
- #: forms/wpdFormAttr/Field/CookiesConsent.php:18
274
- #: forms/wpdFormAttr/Field/DateField.php:17
275
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:32
276
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:24
277
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:23
278
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:23
279
- #: forms/wpdFormAttr/Field/NumberField.php:17
280
- #: forms/wpdFormAttr/Field/RadioField.php:17
281
- #: forms/wpdFormAttr/Field/RatingField.php:16
282
- #: forms/wpdFormAttr/Field/SelectField.php:17
283
- #: forms/wpdFormAttr/Field/TextAreaField.php:18
284
- #: forms/wpdFormAttr/Field/TextField.php:17
285
- #: forms/wpdFormAttr/Field/UrlField.php:17
286
- msgid "Description"
287
- msgstr ""
288
-
289
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:18
290
- #: forms/wpdFormAttr/Field/CheckboxField.php:19
291
- #: forms/wpdFormAttr/Field/ColorField.php:19
292
- #: forms/wpdFormAttr/Field/CookiesConsent.php:20
293
- #: forms/wpdFormAttr/Field/DateField.php:19
294
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:34
295
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:26
296
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:25
297
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:25
298
- #: forms/wpdFormAttr/Field/NumberField.php:19
299
- #: forms/wpdFormAttr/Field/NumberField.php:24
300
- #: forms/wpdFormAttr/Field/NumberField.php:29
301
- #: forms/wpdFormAttr/Field/RadioField.php:19
302
- #: forms/wpdFormAttr/Field/RatingField.php:18
303
- #: forms/wpdFormAttr/Field/SelectField.php:19
304
- #: forms/wpdFormAttr/Field/TextAreaField.php:20
305
- #: forms/wpdFormAttr/Field/TextField.php:19
306
- #: forms/wpdFormAttr/Field/UrlField.php:19
307
- msgid ""
308
- "Field specific short description or some rule related to inserted "
309
- "information."
310
- msgstr ""
311
-
312
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:21
313
- #: forms/wpdFormAttr/Field/CookiesConsent.php:23
314
- msgid "Checkbox Label"
315
- msgstr ""
316
-
317
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:22
318
- msgid ""
319
- "You can use HTML tags to add links to website Terms and Privacy Policy "
320
- "pages. For example: "
321
- msgstr ""
322
-
323
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:28
324
- #: forms/wpdFormAttr/Field/CheckboxField.php:33
325
- #: forms/wpdFormAttr/Field/ColorField.php:29
326
- #: forms/wpdFormAttr/Field/DateField.php:29
327
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:36
328
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:35
329
- #: forms/wpdFormAttr/Field/NumberField.php:39
330
- #: forms/wpdFormAttr/Field/RadioField.php:33
331
- #: forms/wpdFormAttr/Field/RatingField.php:28
332
- #: forms/wpdFormAttr/Field/SelectField.php:33
333
- #: forms/wpdFormAttr/Field/TextAreaField.php:23
334
- #: forms/wpdFormAttr/Field/TextField.php:29
335
- #: forms/wpdFormAttr/Field/UrlField.php:29
336
- msgid "Field is required"
337
- msgstr ""
338
-
339
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:32
340
- #: forms/wpdFormAttr/Field/CheckboxField.php:37
341
- #: forms/wpdFormAttr/Field/ColorField.php:33
342
- #: forms/wpdFormAttr/Field/DateField.php:33
343
- #: forms/wpdFormAttr/Field/NumberField.php:43
344
- #: forms/wpdFormAttr/Field/RadioField.php:37
345
- #: forms/wpdFormAttr/Field/SelectField.php:37
346
- #: forms/wpdFormAttr/Field/TextAreaField.php:27
347
- #: forms/wpdFormAttr/Field/TextField.php:33
348
- #: forms/wpdFormAttr/Field/UrlField.php:33
349
- msgid "Display on reply form"
350
- msgstr ""
351
-
352
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:36
353
- msgid "Display for Guests"
354
- msgstr ""
355
-
356
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:40
357
- msgid "Display for Registered Users"
358
- msgstr ""
359
-
360
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:44
361
- msgid "Don't show again if the agreement is accepted once"
362
- msgstr ""
363
-
364
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:101
365
- #: forms/wpdFormAttr/Field/CheckboxField.php:153
366
- #: forms/wpdFormAttr/Field/ColorField.php:115
367
- #: forms/wpdFormAttr/Field/DateField.php:115
368
- #: forms/wpdFormAttr/Field/NumberField.php:125
369
- #: forms/wpdFormAttr/Field/RadioField.php:130
370
- #: forms/wpdFormAttr/Field/RatingField.php:126
371
- #: forms/wpdFormAttr/Field/SelectField.php:125
372
- #: forms/wpdFormAttr/Field/TextAreaField.php:98
373
- #: forms/wpdFormAttr/Field/TextField.php:109
374
- #: forms/wpdFormAttr/Field/UrlField.php:110
375
- msgid "field is required!"
376
- msgstr ""
377
-
378
- #: forms/wpdFormAttr/Field/CheckboxField.php:14
379
- #: forms/wpdFormAttr/Field/ColorField.php:14
380
- #: forms/wpdFormAttr/Field/DateField.php:14
381
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:29
382
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:21
383
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:20
384
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:20
385
- #: forms/wpdFormAttr/Field/NumberField.php:14
386
- #: forms/wpdFormAttr/Field/RadioField.php:14
387
- #: forms/wpdFormAttr/Field/SelectField.php:14
388
- #: forms/wpdFormAttr/Field/TextAreaField.php:15
389
- #: forms/wpdFormAttr/Field/TextField.php:14
390
- #: forms/wpdFormAttr/Field/UrlField.php:14
391
- msgid "Also used for field placeholder"
392
- msgstr ""
393
-
394
- #: forms/wpdFormAttr/Field/CheckboxField.php:28
395
- #: forms/wpdFormAttr/Field/RadioField.php:28
396
- #: forms/wpdFormAttr/Field/SelectField.php:28
397
- msgid "Values"
398
- msgstr ""
399
-
400
- #: forms/wpdFormAttr/Field/CheckboxField.php:30
401
- msgid "Please insert one value per line"
402
- msgstr ""
403
-
404
- #: forms/wpdFormAttr/Field/CheckboxField.php:41
405
- #: forms/wpdFormAttr/Field/ColorField.php:37
406
- #: forms/wpdFormAttr/Field/DateField.php:37
407
- #: forms/wpdFormAttr/Field/NumberField.php:47
408
- #: forms/wpdFormAttr/Field/RadioField.php:41
409
- #: forms/wpdFormAttr/Field/RatingField.php:32
410
- #: forms/wpdFormAttr/Field/SelectField.php:41
411
- #: forms/wpdFormAttr/Field/TextAreaField.php:31
412
- #: forms/wpdFormAttr/Field/TextField.php:37
413
- #: forms/wpdFormAttr/Field/UrlField.php:37
414
- msgid "Display on comment"
415
- msgstr ""
416
-
417
- #: forms/wpdFormAttr/Field/CheckboxField.php:45
418
- #: forms/wpdFormAttr/Field/ColorField.php:41
419
- #: forms/wpdFormAttr/Field/DateField.php:41
420
- #: forms/wpdFormAttr/Field/NumberField.php:51
421
- #: forms/wpdFormAttr/Field/RadioField.php:45
422
- #: forms/wpdFormAttr/Field/RatingField.php:36
423
- #: forms/wpdFormAttr/Field/SelectField.php:45
424
- #: forms/wpdFormAttr/Field/TextAreaField.php:35
425
- #: forms/wpdFormAttr/Field/TextField.php:41
426
- #: forms/wpdFormAttr/Field/UrlField.php:41
427
- msgid "Advanced Options"
428
- msgstr ""
429
-
430
- #: forms/wpdFormAttr/Field/CheckboxField.php:48
431
- #: forms/wpdFormAttr/Field/ColorField.php:44
432
- #: forms/wpdFormAttr/Field/DateField.php:44
433
- #: forms/wpdFormAttr/Field/NumberField.php:54
434
- #: forms/wpdFormAttr/Field/RadioField.php:48
435
- #: forms/wpdFormAttr/Field/RatingField.php:39
436
- #: forms/wpdFormAttr/Field/SelectField.php:48
437
- #: forms/wpdFormAttr/Field/TextAreaField.php:38
438
- #: forms/wpdFormAttr/Field/TextField.php:44
439
- #: forms/wpdFormAttr/Field/UrlField.php:44
440
- msgid "Meta Key"
441
- msgstr ""
442
-
443
- #: forms/wpdFormAttr/Field/CheckboxField.php:52
444
- #: forms/wpdFormAttr/Field/ColorField.php:48
445
- #: forms/wpdFormAttr/Field/DateField.php:48
446
- #: forms/wpdFormAttr/Field/NumberField.php:58
447
- #: forms/wpdFormAttr/Field/RadioField.php:52
448
- #: forms/wpdFormAttr/Field/RatingField.php:43
449
- #: forms/wpdFormAttr/Field/SelectField.php:52
450
- #: forms/wpdFormAttr/Field/TextAreaField.php:42
451
- #: forms/wpdFormAttr/Field/TextField.php:48
452
- #: forms/wpdFormAttr/Field/UrlField.php:48
453
- msgid "Replace old meta key"
454
- msgstr ""
455
-
456
- #: forms/wpdFormAttr/Field/ColorField.php:23
457
- #: forms/wpdFormAttr/Field/DateField.php:23
458
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:30
459
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:29
460
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:29
461
- #: forms/wpdFormAttr/Field/NumberField.php:33
462
- #: forms/wpdFormAttr/Field/RatingField.php:22
463
- #: forms/wpdFormAttr/Field/TextField.php:23
464
- #: forms/wpdFormAttr/Field/UrlField.php:23
465
- msgid "Field icon"
466
- msgstr ""
467
-
468
- #: forms/wpdFormAttr/Field/ColorField.php:26
469
- #: forms/wpdFormAttr/Field/DateField.php:26
470
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:33
471
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:32
472
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:32
473
- #: forms/wpdFormAttr/Field/NumberField.php:36
474
- #: forms/wpdFormAttr/Field/RatingField.php:25
475
- #: forms/wpdFormAttr/Field/TextField.php:26
476
- #: forms/wpdFormAttr/Field/UrlField.php:26
477
- msgid "Font-awesome icon library."
478
- msgstr ""
479
-
480
- #: forms/wpdFormAttr/Field/CookiesConsent.php:92
481
- msgid "Save my data for the next time I comment"
482
- msgstr ""
483
-
484
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:37
485
- msgid ""
486
- "For an advanced antispam protection please check <a target=\"blank\" href="
487
- "\"https://gvectors.com/product/wpdiscuz-recaptcha/\">wpDiscuz - Google "
488
- "reCAPTCHA</a> addon."
489
- msgstr ""
490
-
491
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:40
492
- msgid "Show for guests"
493
- msgstr ""
494
-
495
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:44
496
- msgid "Show for logged in users"
497
- msgstr ""
498
-
499
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:117
500
- #: forms/wpdFormAttr/Form.php:812
501
- msgid "Code"
502
- msgstr ""
503
-
504
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:135
505
- msgid "Cannot create image file"
506
- msgstr ""
507
-
508
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:136
509
- msgid "Permission denied for file creation"
510
- msgstr ""
511
-
512
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:137
513
- msgid "PHP GD2 library is disabled"
514
- msgstr ""
515
-
516
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:138
517
- msgid "PNG image creation disabled"
518
- msgstr ""
519
-
520
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:145
521
- msgid "Insert the CAPTCHA code"
522
- msgstr ""
523
-
524
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:20
525
- msgid "Button Text"
526
- msgstr ""
527
-
528
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:77
529
- msgid " - (on)"
530
- msgstr ""
531
-
532
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:78
533
- msgid " - (off)"
534
- msgstr ""
535
-
536
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:35
537
- msgid "Enable"
538
- msgstr ""
539
-
540
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:84
541
- #: forms/wpdFormAttr/Form.php:803
542
- msgid "Website"
543
- msgstr ""
544
-
545
- #: forms/wpdFormAttr/Field/Field.php:54
546
- msgid " (Submit Button)"
547
- msgstr ""
548
-
549
- #: forms/wpdFormAttr/Field/Field.php:56
550
- msgid " (CAPTCHA)"
551
- msgstr ""
552
-
553
- #: forms/wpdFormAttr/Field/Field.php:89
554
- msgid "Add To Form"
555
- msgstr ""
556
-
557
- #: forms/wpdFormAttr/Field/NumberField.php:22
558
- msgid "Min Value"
559
- msgstr ""
560
-
561
- #: forms/wpdFormAttr/Field/NumberField.php:27
562
- msgid "Max Value"
563
- msgstr ""
564
-
565
- #: forms/wpdFormAttr/Field/NumberField.php:129
566
- msgid "value can not be less than"
567
- msgstr ""
568
-
569
- #: forms/wpdFormAttr/Field/NumberField.php:132
570
- msgid "value can not be more than"
571
- msgstr ""
572
-
573
- #: forms/wpdFormAttr/Field/RadioField.php:30
574
- #: forms/wpdFormAttr/Field/SelectField.php:30
575
- msgid "New value new line"
576
- msgstr ""
577
-
578
- #: forms/wpdFormAttr/Form.php:630
579
- msgid "Disable commenting for roles"
580
- msgstr ""
581
-
582
- #: forms/wpdFormAttr/Form.php:651
583
- msgid "Allow guests to comment"
584
- msgstr ""
585
-
586
- #: forms/wpdFormAttr/Form.php:655 forms/wpdFormAttr/Form.php:666
587
- msgid "Yes"
588
- msgstr ""
589
-
590
- #: forms/wpdFormAttr/Form.php:657 forms/wpdFormAttr/Form.php:668
591
- msgid "No"
592
- msgstr ""
593
-
594
- #: forms/wpdFormAttr/Form.php:662
595
- msgid "Enable subscription bar"
596
- msgstr ""
597
-
598
- #: forms/wpdFormAttr/Form.php:673
599
- msgid "Comment form header text"
600
- msgstr ""
601
-
602
- #: forms/wpdFormAttr/Form.php:682
603
- msgid "Display comment form for post types"
604
- msgstr ""
605
-
606
- #: forms/wpdFormAttr/Form.php:689
607
- msgid ""
608
- "The red marked post types are already attached to other comment form. If you "
609
- "set this form too, the old forms will not be used for them."
610
- msgstr ""
611
-
612
- #: forms/wpdFormAttr/Form.php:711
613
- msgid "Display comment form for post IDs"
614
- msgstr ""
615
-
616
- #: forms/wpdFormAttr/Form.php:712
617
- msgid ""
618
- "You can use this form for certain posts/pages specified by comma separated "
619
- "IDs."
620
- msgstr ""
621
-
622
- #: forms/wpdFormAttr/Form.php:723
623
- msgid "Comment Text Field"
624
- msgstr ""
625
-
626
- #: forms/wpdFormAttr/Form.php:738
627
- msgid "ADD ROW"
628
- msgstr ""
629
-
630
- #: forms/wpdFormAttr/Form.php:770
631
- msgid ""
632
- "Only logged in customers who have purchased this product may leave a review."
633
- msgstr ""
634
-
635
- #: forms/wpdFormAttr/Login/SocialLogin.php:32
636
- msgid "Authentication failed."
637
- msgstr ""
638
-
639
- #: forms/wpdFormAttr/Login/SocialLogin.php:83
640
- msgid "Facebook access token or user ID invalid."
641
- msgstr ""
642
-
643
- #: forms/wpdFormAttr/Login/SocialLogin.php:87
644
- msgid "Facebook App Secret is required."
645
- msgstr ""
646
-
647
- #: forms/wpdFormAttr/Login/SocialLogin.php:117
648
- msgid "Google access token invalid."
649
- msgstr ""
650
-
651
- #: forms/wpdFormAttr/Login/SocialLogin.php:128
652
- msgid "Google authentication failed."
653
- msgstr ""
654
-
655
- #: forms/wpdFormAttr/Login/SocialLogin.php:156
656
- msgid "Twitter Consumer Key and Consumer Secret required."
657
- msgstr ""
658
-
659
- #: forms/wpdFormAttr/Login/SocialLogin.php:168
660
- msgid "Twitter authentication failed (OAuth secret does not exist)."
661
- msgstr ""
662
-
663
- #: forms/wpdFormAttr/Login/SocialLogin.php:180
664
- msgid "Twitter connection failed."
665
- msgstr ""
666
-
667
- #: forms/wpdFormAttr/Login/SocialLogin.php:190
668
- msgid "VK Client ID and Client Secret required."
669
- msgstr ""
670
-
671
- #: forms/wpdFormAttr/Login/SocialLogin.php:218
672
- msgid "VK authentication failed (OAuth <code>state</code> does not exist)."
673
- msgstr ""
674
-
675
- #: forms/wpdFormAttr/Login/SocialLogin.php:221
676
- msgid "VK authentication failed (OAuth <code>code</code> does not exist)."
677
- msgstr ""
678
-
679
- #: forms/wpdFormAttr/Login/SocialLogin.php:239
680
- msgid "VK authentication failed (<code>user_id</code> does not exist)."
681
- msgstr ""
682
-
683
- #: forms/wpdFormAttr/Login/SocialLogin.php:265
684
- msgid "OK Application ID, Application Key and Application Secret required."
685
- msgstr ""
686
-
687
- #: forms/wpdFormAttr/Login/SocialLogin.php:290
688
- msgid "OK authentication failed (OAuth <code>state</code> does not exist)."
689
- msgstr ""
690
-
691
- #: forms/wpdFormAttr/Login/SocialLogin.php:293
692
- msgid "OK authentication failed (<code>code</code> does not exist)."
693
- msgstr ""
694
-
695
- #: forms/wpdFormAttr/Login/SocialLogin.php:312
696
- msgid "OK authentication failed (<code>access_token</code> does not exist)."
697
- msgstr ""
698
-
699
- #: forms/wpdFormAttr/html/admin-form-fields-list.php:7
700
- msgid "Comment Form Fields"
701
- msgstr ""
702
-
703
- #: options/addons/al/title.php:7 options/class.WpdiscuzOptions.php:393
704
- msgid "Advanced Likers"
705
- msgstr ""
706
-
707
- #: options/addons/cai/title.php:7
708
- msgid "Comment Author"
709
- msgstr ""
710
-
711
- #: options/addons/fem/title.php:7
712
- msgid "Frontend Moderation"
713
- msgstr ""
714
-
715
- #: options/addons/more/title.php:6
716
- msgid "More Addons..."
717
- msgstr ""
718
-
719
- #: options/addons/mu/title.php:7 options/class.WpdiscuzOptions.php:417
720
- msgid "Media Uploader"
721
- msgstr ""
722
-
723
- #: options/addons/raf/title.php:7 options/class.WpdiscuzOptions.php:397
724
- msgid "Report and Flagging"
725
- msgstr ""
726
-
727
- #: options/addons/ucm/title.php:7
728
- msgid "Mentioning"
729
- msgstr ""
730
-
731
- #: options/class.WpdiscuzOptions.php:22 options/class.WpdiscuzOptions.php:135
732
- #: options/class.WpdiscuzOptions.php:344
733
- msgid "Hacker?"
734
- msgstr ""
735
-
736
- #: options/class.WpdiscuzOptions.php:126
737
- msgid "Settings updated"
738
- msgstr ""
739
-
740
- #: options/class.WpdiscuzOptions.php:291
741
- msgid "Phrases updated"
742
- msgstr ""
743
-
744
- #: options/class.WpdiscuzOptions.php:318
745
- msgid "Options were backed up!"
746
- msgstr ""
747
-
748
- #: options/class.WpdiscuzOptions.php:320
749
- msgid "Cannot back up the options!"
750
- msgstr ""
751
-
752
- #: options/class.WpdiscuzOptions.php:331
753
- msgid "Options Imported Successfully!"
754
- msgstr ""
755
-
756
- #: options/class.WpdiscuzOptions.php:333
757
- msgid "Error occured! File content is empty or data is not valid!"
758
- msgstr ""
759
-
760
- #: options/class.WpdiscuzOptions.php:336
761
- msgid "Error occured! Can not get file content!"
762
- msgstr ""
763
-
764
- #: options/class.WpdiscuzOptions.php:339
765
- msgid "Error occured! Please choose file!"
766
- msgstr ""
767
-
768
- #: options/class.WpdiscuzOptions.php:355
769
- msgid ""
770
- "Brings an ocean of emotions to your comments. It comes with an awesome smile "
771
- "package."
772
- msgstr ""
773
-
774
- #: options/class.WpdiscuzOptions.php:356
775
- msgid ""
776
- "Extended information about comment author with Profile, Activity, Votes and "
777
- "Subscriptions Tabs on pop-up window."
778
- msgstr ""
779
-
780
- #: options/class.WpdiscuzOptions.php:357
781
- msgid ""
782
- "Real-time online user checking, pop-up notification of new online users and "
783
- "online/offline badges."
784
- msgstr ""
785
-
786
- #: options/class.WpdiscuzOptions.php:358
787
- msgid ""
788
- "Allows to create private comment threads. Rich management options in "
789
- "dashboard by user roles."
790
- msgstr ""
791
-
792
- #: options/class.WpdiscuzOptions.php:359
793
- msgid ""
794
- "Total control over comment subscriptions. Full list, monitor, manage, "
795
- "filter, unsubscribe, confirm..."
796
- msgstr ""
797
-
798
- #: options/class.WpdiscuzOptions.php:360
799
- msgid ""
800
- "A full-fledged tool-kit for advertising in comment section of your website. "
801
- "Separate banner and ad managment."
802
- msgstr ""
803
-
804
- #: options/class.WpdiscuzOptions.php:361
805
- msgid ""
806
- "Allows to mention comments and users in comment text using #comment-id and "
807
- "@username tags."
808
- msgstr ""
809
-
810
- #: options/class.WpdiscuzOptions.php:362
811
- msgid ""
812
- "See comment likers and voters of each comment. Adds user reputation and "
813
- "badges based on received likes."
814
- msgstr ""
815
-
816
- #: options/class.WpdiscuzOptions.php:363
817
- msgid ""
818
- "Comment reporting tools. Auto-moderates comments based on number of flags "
819
- "and dislikes."
820
- msgstr ""
821
-
822
- #: options/class.WpdiscuzOptions.php:364
823
- msgid ""
824
- "Adds a smart and intuitive AJAX \"Translate\" button with 60 language "
825
- "options. Uses free translation API."
826
- msgstr ""
827
-
828
- #: options/class.WpdiscuzOptions.php:365
829
- msgid ""
830
- "AJAX powered front-end comment search. It starts searching while you type "
831
- "search words. "
832
- msgstr ""
833
-
834
- #: options/class.WpdiscuzOptions.php:366
835
- msgid ""
836
- "Most voted comments, Active comment threads, Most commented posts, Active "
837
- "comment authors"
838
- msgstr ""
839
-
840
- #: options/class.WpdiscuzOptions.php:367
841
- msgid ""
842
- "All in one powerful yet simple admin toolkit to moderate comments on front-"
843
- "end."
844
- msgstr ""
845
-
846
- #: options/class.WpdiscuzOptions.php:368
847
- msgid ""
848
- "Extended comment attachment system. Allows to upload images, videos, audios "
849
- "and other file types."
850
- msgstr ""
851
-
852
- #: options/class.WpdiscuzOptions.php:369
853
- msgid ""
854
- "Adds No CAPTCHA on all comment forms. Stops spam and bot comments with "
855
- "Google reCAPTCHA"
856
- msgstr ""
857
-
858
- #: options/class.WpdiscuzOptions.php:370
859
- msgid ""
860
- "Integrates myCRED Badges and Ranks. Converts wpDiscuz comment votes/likes to "
861
- "myCRED points. "
862
- msgstr ""
863
-
864
- #: options/class.WpdiscuzOptions.php:371
865
- msgid ""
866
- "Allows censoring comment words. Filters comments and replaces those phrases "
867
- "with custom words."
868
- msgstr ""
869
-
870
- #: options/class.WpdiscuzOptions.php:377
871
- msgid "Custom Comment Forms"
872
- msgstr ""
873
-
874
- #: options/class.WpdiscuzOptions.php:378
875
- msgid ""
876
- "You can create custom comment forms with wpDiscuz. wpDiscuz 4 comes with "
877
- "custom comment forms and fields. You can create custom comment forms for "
878
- "each post type, each form can beceated with different form fields, for "
879
- "eaxample: text, dropdown, rating, checkboxes, etc..."
880
- msgstr ""
881
-
882
- #: options/class.WpdiscuzOptions.php:381
883
- msgid "Emoticons"
884
- msgstr ""
885
-
886
- #: options/class.WpdiscuzOptions.php:382
887
- msgid ""
888
- "You can add more emotions to your comments using wpDiscuz Emoticons addon."
889
- msgstr ""
890
-
891
- #: options/class.WpdiscuzOptions.php:385
892
- msgid "Ads Manager"
893
- msgstr ""
894
-
895
- #: options/class.WpdiscuzOptions.php:386
896
- msgid ""
897
- "Increase your income using ad banners. Comment area is the most active "
898
- "sections for advertising. wpDiscuz Ads Manager addon is designed to help you "
899
- "add banners and control ads in this section."
900
- msgstr ""
901
-
902
- #: options/class.WpdiscuzOptions.php:389
903
- msgid "User and Comment Mentioning"
904
- msgstr ""
905
-
906
- #: options/class.WpdiscuzOptions.php:390
907
- msgid ""
908
- "Using wpDiscuz User &amp; Comment Mentioning addon you can allow commenters "
909
- "mention comments and users in comment text using #comment-id and @username "
910
- "tags."
911
- msgstr ""
912
-
913
- #: options/class.WpdiscuzOptions.php:394
914
- msgid ""
915
- "wpDiscuz Advanced Likers addon displays likers and voters of each comment. "
916
- "Adds user reputation and badges based on received likes."
917
- msgstr ""
918
-
919
- #: options/class.WpdiscuzOptions.php:398
920
- msgid ""
921
- "Let your commenters help you to determine and remove spam comments. wpDiscuz "
922
- "Report and Flagging addon comes with comment reporting tools. Automaticaly "
923
- "auto-moderates comments based on number of flags and dislikes."
924
- msgstr ""
925
-
926
- #: options/class.WpdiscuzOptions.php:401
927
- msgid "Comment Translate"
928
- msgstr ""
929
-
930
- #: options/class.WpdiscuzOptions.php:402
931
- msgid ""
932
- "In most cases the big part of your visitors are not a native speakers of "
933
- "your language. Make your comments comprehensible for all visitors using "
934
- "wpDiscuz Comment Translation addon. It adds smart and intuitive AJAX "
935
- "\"Translate\" button with 60 language translation options. Uses free "
936
- "translation API."
937
- msgstr ""
938
-
939
- #: options/class.WpdiscuzOptions.php:405
940
- msgid "Comment Search"
941
- msgstr ""
942
-
943
- #: options/class.WpdiscuzOptions.php:406
944
- msgid ""
945
- "You can let website visitor search in comments. It's always more attractive "
946
- "to find a comment about something that interest you. Using wpDiscuz Comment "
947
- "Search addon you'll get a nice, AJAX powered front-end comment search form "
948
- "above comment list."
949
- msgstr ""
950
-
951
- #: options/class.WpdiscuzOptions.php:409
952
- msgid "wpDiscuz Widgets"
953
- msgstr ""
954
-
955
- #: options/class.WpdiscuzOptions.php:410
956
- msgid ""
957
- "More Comment Widgets! Most voted comments, Active comment threads, Most "
958
- "commented posts, Active comment authors widgets are available in wpDiscuz "
959
- "Widgets Addon"
960
- msgstr ""
961
-
962
- #: options/class.WpdiscuzOptions.php:413
963
- msgid "Front-end Moderation"
964
- msgstr ""
965
-
966
- #: options/class.WpdiscuzOptions.php:414
967
- msgid ""
968
- "You can moderate comments on front-end using all in one powerful yet simple "
969
- "wpDiscuz Frontend Moderation addon."
970
- msgstr ""
971
-
972
- #: options/class.WpdiscuzOptions.php:418
973
- msgid ""
974
- "You can let website visitors attach images and files to comments and embed "
975
- "video/audio content using wpDiscuz Media Uploader addon."
976
- msgstr ""
977
-
978
- #: options/class.WpdiscuzOptions.php:421
979
- msgid "Google ReCaptcha"
980
- msgstr ""
981
-
982
- #: options/class.WpdiscuzOptions.php:422
983
- msgid ""
984
- "Advanced spam protection with wpDiscuz Google reCAPTCHA addon. This addon "
985
- "adds No-CAPTCHA reCAPTCHA on all comment forms. Stops spam and bot comments."
986
- msgstr ""
987
-
988
- #: options/class.WpdiscuzOptions.php:438
989
- msgid "New Addons are available for wpDiscuz Comments Plugin"
990
- msgstr ""
991
-
992
- #: options/class.WpdiscuzOptions.php:445 options/class.WpdiscuzOptions.php:451
993
- msgid "Go to wpDiscuz Addons subMenu"
994
- msgstr ""
995
-
996
- #: options/class.WpdiscuzOptions.php:483
997
- msgid "Do you know?"
998
- msgstr ""
999
-
1000
- #: options/class.WpdiscuzOptions.php:496
1001
- msgid "More info"
1002
- msgstr ""
1003
-
1004
- #: options/class.WpdiscuzOptionsSerialized.php:754
1005
- msgid "Be the First to Comment!"
1006
- msgstr ""
1007
-
1008
- #: options/class.WpdiscuzOptionsSerialized.php:755
1009
- msgid "Start the discussion"
1010
- msgstr ""
1011
-
1012
- #: options/class.WpdiscuzOptionsSerialized.php:756
1013
- msgid "Join the discussion"
1014
- msgstr ""
1015
-
1016
- #: options/class.WpdiscuzOptionsSerialized.php:757
1017
- #: options/phrases-layouts/phrases-form.php:19
1018
- msgid "Comment threads"
1019
- msgstr ""
1020
-
1021
- #: options/class.WpdiscuzOptionsSerialized.php:758
1022
- #: options/phrases-layouts/phrases-form.php:23
1023
- msgid "Thread replies"
1024
- msgstr ""
1025
-
1026
- #: options/class.WpdiscuzOptionsSerialized.php:759
1027
- #: options/phrases-layouts/phrases-form.php:27
1028
- msgid "Followers"
1029
- msgstr ""
1030
-
1031
- #: options/class.WpdiscuzOptionsSerialized.php:760
1032
- #: options/phrases-layouts/phrases-form.php:31
1033
- msgid "Most reacted comment"
1034
- msgstr ""
1035
-
1036
- #: options/class.WpdiscuzOptionsSerialized.php:761
1037
- #: options/phrases-layouts/phrases-form.php:35
1038
- msgid "Hottest comment thread"
1039
- msgstr ""
1040
-
1041
- #: options/class.WpdiscuzOptionsSerialized.php:762
1042
- #: options/phrases-layouts/phrases-form.php:39
1043
- msgid "Comment authors"
1044
- msgstr ""
1045
-
1046
- #: options/class.WpdiscuzOptionsSerialized.php:763
1047
- #: options/phrases-layouts/phrases-form.php:43
1048
- msgid "Recent comment authors"
1049
- msgstr ""
1050
-
1051
- #: options/class.WpdiscuzOptionsSerialized.php:765
1052
- #: options/phrases-layouts/phrases-form.php:51
1053
- msgid "Subscribe"
1054
- msgstr ""
1055
-
1056
- #: options/class.WpdiscuzOptionsSerialized.php:766
1057
- #: options/phrases-layouts/phrases-form.php:55
1058
- msgid "Notify of"
1059
- msgstr ""
1060
-
1061
- #: options/class.WpdiscuzOptionsSerialized.php:767
1062
- msgid "new follow-up comments"
1063
- msgstr ""
1064
-
1065
- #: options/class.WpdiscuzOptionsSerialized.php:768
1066
- msgid "new replies to my comments"
1067
- msgstr ""
1068
-
1069
- #: options/class.WpdiscuzOptionsSerialized.php:769
1070
- msgid "Notify of new replies to this comment - (on)"
1071
- msgstr ""
1072
-
1073
- #: options/class.WpdiscuzOptionsSerialized.php:770
1074
- msgid "Notify of new replies to this comment - (off)"
1075
- msgstr ""
1076
-
1077
- #: options/class.WpdiscuzOptionsSerialized.php:771
1078
- #: options/phrases-layouts/phrases-form.php:75
1079
- msgid "Sort by"
1080
- msgstr ""
1081
-
1082
- #: options/class.WpdiscuzOptionsSerialized.php:772
1083
- #: options/phrases-layouts/phrases-form.php:79
1084
- msgid "newest"
1085
- msgstr ""
1086
-
1087
- #: options/class.WpdiscuzOptionsSerialized.php:773
1088
- #: options/phrases-layouts/phrases-form.php:83
1089
- msgid "oldest"
1090
- msgstr ""
1091
-
1092
- #: options/class.WpdiscuzOptionsSerialized.php:774
1093
- #: options/phrases-layouts/phrases-form.php:87
1094
- msgid "most voted"
1095
- msgstr ""
1096
-
1097
- #: options/class.WpdiscuzOptionsSerialized.php:775
1098
- msgid "Load More Comments"
1099
- msgstr ""
1100
-
1101
- #: options/class.WpdiscuzOptionsSerialized.php:776
1102
- #: options/phrases-layouts/phrases-general.php:19
1103
- msgid "Load Rest of Comments"
1104
- msgstr ""
1105
-
1106
- #: options/class.WpdiscuzOptionsSerialized.php:777
1107
- #: options/phrases-layouts/phrases-comment.php:11
1108
- msgid "Reply"
1109
- msgstr ""
1110
-
1111
- #: options/class.WpdiscuzOptionsSerialized.php:778
1112
- #: options/phrases-layouts/phrases-comment.php:15
1113
- msgid "Share"
1114
- msgstr ""
1115
-
1116
- #: options/class.WpdiscuzOptionsSerialized.php:780
1117
- #: options/phrases-layouts/phrases-comment.php:23
1118
- msgid "Share On Facebook"
1119
- msgstr ""
1120
-
1121
- #: options/class.WpdiscuzOptionsSerialized.php:781
1122
- #: options/phrases-layouts/phrases-comment.php:27
1123
- msgid "Share On Twitter"
1124
- msgstr ""
1125
-
1126
- #: options/class.WpdiscuzOptionsSerialized.php:782
1127
- #: options/phrases-layouts/phrases-comment.php:31
1128
- msgid "Share On Google"
1129
- msgstr ""
1130
-
1131
- #: options/class.WpdiscuzOptionsSerialized.php:783
1132
- #: options/phrases-layouts/phrases-comment.php:35
1133
- msgid "Share On VKontakte"
1134
- msgstr ""
1135
-
1136
- #: options/class.WpdiscuzOptionsSerialized.php:784
1137
- #: options/phrases-layouts/phrases-comment.php:39
1138
- msgid "Share On Odnoklassniki"
1139
- msgstr ""
1140
-
1141
- #: options/class.WpdiscuzOptionsSerialized.php:785
1142
- #: options/phrases-layouts/phrases-comment.php:43
1143
- msgid "Hide Replies"
1144
- msgstr ""
1145
-
1146
- #: options/class.WpdiscuzOptionsSerialized.php:786
1147
- #: options/phrases-layouts/phrases-comment.php:47
1148
- msgid "View Replies"
1149
- msgstr ""
1150
-
1151
- #: options/class.WpdiscuzOptionsSerialized.php:787
1152
- msgid "New Comment"
1153
- msgstr ""
1154
-
1155
- #: options/class.WpdiscuzOptionsSerialized.php:788
1156
- #: options/class.WpdiscuzOptionsSerialized.php:790
1157
- #: options/class.WpdiscuzOptionsSerialized.php:792
1158
- #: options/class.WpdiscuzOptionsSerialized.php:796
1159
- #: options/phrases-layouts/phrases-email.php:120
1160
- msgid "Unsubscribe"
1161
- msgstr ""
1162
-
1163
- #: options/class.WpdiscuzOptionsSerialized.php:788
1164
- msgid ""
1165
- "Hi [SUBSCRIBER_NAME],<br/><br/>new comment on the discussion section you've "
1166
- "been interested in<br/><br/><a href=\"[COMMENT_URL]\">[COMMENT_URL]</a><br/"
1167
- "><br/>[COMMENT_CONTENT]<br/><br/><a href=\"[UNSUBSCRIBE_URL]\">"
1168
- msgstr ""
1169
-
1170
- #: options/class.WpdiscuzOptionsSerialized.php:789
1171
- #: options/class.WpdiscuzOptionsSerialized.php:791
1172
- msgid "New Reply"
1173
- msgstr ""
1174
-
1175
- #: options/class.WpdiscuzOptionsSerialized.php:790
1176
- msgid ""
1177
- "Hi [SUBSCRIBER_NAME],<br/><br/>new reply on the discussion section you've "
1178
- "been interested in<br/><br/><a href=\"[COMMENT_URL]\">[COMMENT_URL]</a><br/"
1179
- "><br/>[COMMENT_CONTENT]<br/><br/><a href=\"[UNSUBSCRIBE_URL]\">"
1180
- msgstr ""
1181
-
1182
- #: options/class.WpdiscuzOptionsSerialized.php:792
1183
- msgid ""
1184
- "Hi [COMMENT_AUTHOR],<br/><br/>new reply on the discussion section you've "
1185
- "been interested in<br/><br/><a href=\"[COMMENT_URL]\">[COMMENT_URL]</a><br/"
1186
- "><br/>[COMMENT_CONTENT]<br/><br/><a href=\"[UNSUBSCRIBE_URL]\">"
1187
- msgstr ""
1188
-
1189
- #: options/class.WpdiscuzOptionsSerialized.php:793
1190
- msgid "You're subscribed for new replies on this comment"
1191
- msgstr ""
1192
-
1193
- #: options/class.WpdiscuzOptionsSerialized.php:794
1194
- msgid "You're subscribed for new replies on all your comments"
1195
- msgstr ""
1196
-
1197
- #: options/class.WpdiscuzOptionsSerialized.php:795
1198
- msgid "You're subscribed for new follow-up comments on this post"
1199
- msgstr ""
1200
-
1201
- #: options/class.WpdiscuzOptionsSerialized.php:797
1202
- msgid "Cancel subscription"
1203
- msgstr ""
1204
-
1205
- #: options/class.WpdiscuzOptionsSerialized.php:798
1206
- #: options/phrases-layouts/phrases-notification.php:19
1207
- msgid "You've successfully unsubscribed."
1208
- msgstr ""
1209
-
1210
- #: options/class.WpdiscuzOptionsSerialized.php:799
1211
- #: options/phrases-layouts/phrases-notification.php:15
1212
- msgid "You've successfully subscribed."
1213
- msgstr ""
1214
-
1215
- #: options/class.WpdiscuzOptionsSerialized.php:800
1216
- #: options/phrases-layouts/phrases-email.php:128
1217
- msgid "Confirm your subscription"
1218
- msgstr ""
1219
-
1220
- #: options/class.WpdiscuzOptionsSerialized.php:801
1221
- #: options/phrases-layouts/phrases-email.php:132
1222
- msgid "You've successfully confirmed your subscription."
1223
- msgstr ""
1224
-
1225
- #: options/class.WpdiscuzOptionsSerialized.php:802
1226
- msgid "Subscription Confirmation"
1227
- msgstr ""
1228
-
1229
- #: options/class.WpdiscuzOptionsSerialized.php:803
1230
- msgid "Confirm Your Subscrption"
1231
- msgstr ""
1232
-
1233
- #: options/class.WpdiscuzOptionsSerialized.php:803
1234
- msgid "Cancel Subscription"
1235
- msgstr ""
1236
-
1237
- #: options/class.WpdiscuzOptionsSerialized.php:803
1238
- msgid ""
1239
- "Hi, <br/> You just subscribed for new comments on our website. This means "
1240
- "you will receive an email when new comments are posted according to "
1241
- "subscription option you've chosen. <br/> To activate, click confirm below. "
1242
- "If you believe this is an error, ignore this message and we'll never bother "
1243
- "you again. <br/><br/><a href=\"[POST_URL]\">[POST_TITLE]</a><br/><br/><a "
1244
- "href=\"[CONFIRM_URL]\">"
1245
- msgstr ""
1246
-
1247
- #: options/class.WpdiscuzOptionsSerialized.php:804
1248
- msgid "please fill out this field to comment"
1249
- msgstr ""
1250
-
1251
- #: options/class.WpdiscuzOptionsSerialized.php:805
1252
- msgid "email address is invalid"
1253
- msgstr ""
1254
-
1255
- #: options/class.WpdiscuzOptionsSerialized.php:806
1256
- msgid "url is invalid"
1257
- msgstr ""
1258
-
1259
- #: options/class.WpdiscuzOptionsSerialized.php:807
1260
- msgid "year"
1261
- msgstr ""
1262
-
1263
- #: options/class.WpdiscuzOptionsSerialized.php:808
1264
- msgid "years"
1265
- msgstr ""
1266
-
1267
- #: options/class.WpdiscuzOptionsSerialized.php:809
1268
- msgid "month"
1269
- msgstr ""
1270
-
1271
- #: options/class.WpdiscuzOptionsSerialized.php:810
1272
- msgid "months"
1273
- msgstr ""
1274
-
1275
- #: options/class.WpdiscuzOptionsSerialized.php:811
1276
- msgid "day"
1277
- msgstr ""
1278
-
1279
- #: options/class.WpdiscuzOptionsSerialized.php:812
1280
- msgid "days"
1281
- msgstr ""
1282
-
1283
- #: options/class.WpdiscuzOptionsSerialized.php:813
1284
- msgid "hour"
1285
- msgstr ""
1286
-
1287
- #: options/class.WpdiscuzOptionsSerialized.php:814
1288
- msgid "hours"
1289
- msgstr ""
1290
-
1291
- #: options/class.WpdiscuzOptionsSerialized.php:815
1292
- msgid "minute"
1293
- msgstr ""
1294
-
1295
- #: options/class.WpdiscuzOptionsSerialized.php:816
1296
- msgid "minutes"
1297
- msgstr ""
1298
-
1299
- #: options/class.WpdiscuzOptionsSerialized.php:817
1300
- msgid "second"
1301
- msgstr ""
1302
-
1303
- #: options/class.WpdiscuzOptionsSerialized.php:818
1304
- msgid "seconds"
1305
- msgstr ""
1306
-
1307
- #: options/class.WpdiscuzOptionsSerialized.php:819
1308
- msgid "right now"
1309
- msgstr ""
1310
-
1311
- #: options/class.WpdiscuzOptionsSerialized.php:820
1312
- msgid "ago"
1313
- msgstr ""
1314
-
1315
- #: options/class.WpdiscuzOptionsSerialized.php:821
1316
- #: options/phrases-layouts/phrases-notification.php:38
1317
- msgid "You must be"
1318
- msgstr ""
1319
-
1320
- #: options/class.WpdiscuzOptionsSerialized.php:822
1321
- msgid "You are logged in as"
1322
- msgstr ""
1323
-
1324
- #: options/class.WpdiscuzOptionsSerialized.php:823
1325
- #: options/phrases-layouts/phrases-notification.php:29
1326
- msgid "Login"
1327
- msgstr ""
1328
-
1329
- #: options/class.WpdiscuzOptionsSerialized.php:824
1330
- #: options/phrases-layouts/phrases-notification.php:33
1331
- #, php-format
1332
- msgid "Please %s to comment"
1333
- msgstr ""
1334
-
1335
- #: options/class.WpdiscuzOptionsSerialized.php:825
1336
- #: options/phrases-layouts/phrases-notification.php:54
1337
- msgid "Log out"
1338
- msgstr ""
1339
-
1340
- #: options/class.WpdiscuzOptionsSerialized.php:826
1341
- msgid "logged in"
1342
- msgstr ""
1343
-
1344
- #: options/class.WpdiscuzOptionsSerialized.php:827
1345
- msgid "to post a comment."
1346
- msgstr ""
1347
-
1348
- #: options/class.WpdiscuzOptionsSerialized.php:828
1349
- #: options/phrases-layouts/phrases-comment.php:75
1350
- msgid "Vote Up"
1351
- msgstr ""
1352
-
1353
- #: options/class.WpdiscuzOptionsSerialized.php:829
1354
- #: options/phrases-layouts/phrases-comment.php:79
1355
- msgid "Vote Down"
1356
- msgstr ""
1357
-
1358
- #: options/class.WpdiscuzOptionsSerialized.php:830
1359
- #: options/phrases-layouts/phrases-notification.php:58
1360
- msgid "Vote Counted"
1361
- msgstr ""
1362
-
1363
- #: options/class.WpdiscuzOptionsSerialized.php:831
1364
- msgid "You've already voted for this comment"
1365
- msgstr ""
1366
-
1367
- #: options/class.WpdiscuzOptionsSerialized.php:832
1368
- #: options/phrases-layouts/phrases-error.php:27
1369
- msgid "Voting Error"
1370
- msgstr ""
1371
-
1372
- #: options/class.WpdiscuzOptionsSerialized.php:833
1373
- msgid "You Must Be Logged In To Vote"
1374
- msgstr ""
1375
-
1376
- #: options/class.WpdiscuzOptionsSerialized.php:834
1377
- msgid "You cannot vote for your comment"
1378
- msgstr ""
1379
-
1380
- #: options/class.WpdiscuzOptionsSerialized.php:835
1381
- msgid "You are not allowed to vote for this comment"
1382
- msgstr ""
1383
-
1384
- #: options/class.WpdiscuzOptionsSerialized.php:836
1385
- #: options/phrases-layouts/phrases-error.php:39
1386
- msgid "Invalid Captcha Code"
1387
- msgstr ""
1388
-
1389
- #: options/class.WpdiscuzOptionsSerialized.php:837
1390
- #: options/phrases-layouts/phrases-error.php:43
1391
- msgid "Some of field value is invalid"
1392
- msgstr ""
1393
-
1394
- #: options/class.WpdiscuzOptionsSerialized.php:838
1395
- msgid "new comment"
1396
- msgstr ""
1397
-
1398
- #: options/class.WpdiscuzOptionsSerialized.php:839
1399
- msgid "new comments"
1400
- msgstr ""
1401
-
1402
- #: options/class.WpdiscuzOptionsSerialized.php:840
1403
- msgid "Comment awaiting moderation"
1404
- msgstr ""
1405
-
1406
- #: options/class.WpdiscuzOptionsSerialized.php:841
1407
- msgid "new reply on your comment"
1408
- msgstr ""
1409
-
1410
- #: options/class.WpdiscuzOptionsSerialized.php:842
1411
- msgid "new replies on your comments"
1412
- msgstr ""
1413
-
1414
- #: options/class.WpdiscuzOptionsSerialized.php:843
1415
- msgid "Sorry, the comment was not updated"
1416
- msgstr ""
1417
-
1418
- #: options/class.WpdiscuzOptionsSerialized.php:844
1419
- msgid "Sorry, this comment no longer possible to edit"
1420
- msgstr ""
1421
-
1422
- #: options/class.WpdiscuzOptionsSerialized.php:845
1423
- msgid "You've not made any changes"
1424
- msgstr ""
1425
-
1426
- #: options/class.WpdiscuzOptionsSerialized.php:846
1427
- msgid "Save"
1428
- msgstr ""
1429
-
1430
- #: options/class.WpdiscuzOptionsSerialized.php:847
1431
- msgid "Cancel"
1432
- msgstr ""
1433
-
1434
- #: options/class.WpdiscuzOptionsSerialized.php:848
1435
- msgid "Input is too short"
1436
- msgstr ""
1437
-
1438
- #: options/class.WpdiscuzOptionsSerialized.php:849
1439
- msgid "Input is too long"
1440
- msgstr ""
1441
-
1442
- #: options/class.WpdiscuzOptionsSerialized.php:850
1443
- msgid "Read more &raquo;"
1444
- msgstr ""
1445
-
1446
- #: options/class.WpdiscuzOptionsSerialized.php:851
1447
- msgid "Anonymous"
1448
- msgstr ""
1449
-
1450
- #: options/class.WpdiscuzOptionsSerialized.php:852
1451
- #: options/phrases-layouts/phrases-error.php:67
1452
- msgid "Please fill out required fields"
1453
- msgstr ""
1454
-
1455
- #: options/class.WpdiscuzOptionsSerialized.php:853
1456
- #: options/phrases-layouts/phrases-social-login.php:11
1457
- msgid "Connect with"
1458
- msgstr ""
1459
-
1460
- #: options/class.WpdiscuzOptionsSerialized.php:854
1461
- #: options/phrases-layouts/phrases-notification.php:11
1462
- msgid "You're subscribed to"
1463
- msgstr ""
1464
-
1465
- #: options/class.WpdiscuzOptionsSerialized.php:855
1466
- msgid "Participate in this discussion via email"
1467
- msgstr ""
1468
-
1469
- #: options/class.WpdiscuzOptionsSerialized.php:856
1470
- #: utils/layouts/pagination.php:46
1471
- msgid "&rsaquo;"
1472
- msgstr ""
1473
-
1474
- #: options/class.WpdiscuzOptionsSerialized.php:857
1475
- msgid "Your comment is approved!"
1476
- msgstr ""
1477
-
1478
- #: options/class.WpdiscuzOptionsSerialized.php:858
1479
- msgid ""
1480
- "Hi [COMMENT_AUTHOR],<br/><br/>your comment was approved.<br/><br/><a href="
1481
- "\"[COMMENT_URL]\">[COMMENT_URL]</a><br/><br/>[COMMENT_CONTENT]"
1482
- msgstr ""
1483
-
1484
- #: options/class.WpdiscuzOptionsSerialized.php:859
1485
- msgid "Comments are closed."
1486
- msgstr ""
1487
-
1488
- #: options/class.WpdiscuzOptionsSerialized.php:860
1489
- #: options/phrases-layouts/phrases-comment.php:99
1490
- msgid "Stick this comment - (on)"
1491
- msgstr ""
1492
-
1493
- #: options/class.WpdiscuzOptionsSerialized.php:861
1494
- #: options/phrases-layouts/phrases-comment.php:103
1495
- msgid "Stick this comment - (off)"
1496
- msgstr ""
1497
-
1498
- #: options/class.WpdiscuzOptionsSerialized.php:862
1499
- #: options/phrases-layouts/phrases-comment.php:107
1500
- msgid "Stick"
1501
- msgstr ""
1502
-
1503
- #: options/class.WpdiscuzOptionsSerialized.php:863
1504
- #: options/phrases-layouts/phrases-comment.php:111
1505
- msgid "Unstick"
1506
- msgstr ""
1507
-
1508
- #: options/class.WpdiscuzOptionsSerialized.php:864
1509
- msgid "Sticky comment thread"
1510
- msgstr ""
1511
-
1512
- #: options/class.WpdiscuzOptionsSerialized.php:865
1513
- #: options/phrases-layouts/phrases-comment.php:119
1514
- msgid "Close this comment - (on)"
1515
- msgstr ""
1516
-
1517
- #: options/class.WpdiscuzOptionsSerialized.php:866
1518
- #: options/phrases-layouts/phrases-comment.php:123
1519
- msgid "Close this comment - (off)"
1520
- msgstr ""
1521
-
1522
- #: options/class.WpdiscuzOptionsSerialized.php:867
1523
- #: options/phrases-layouts/phrases-comment.php:127
1524
- msgid "Close"
1525
- msgstr ""
1526
-
1527
- #: options/class.WpdiscuzOptionsSerialized.php:868
1528
- #: options/phrases-layouts/phrases-comment.php:131
1529
- msgid "Open"
1530
- msgstr ""
1531
-
1532
- #: options/class.WpdiscuzOptionsSerialized.php:869
1533
- msgid "Closed comment thread"
1534
- msgstr ""
1535
-
1536
- #: options/class.WpdiscuzOptionsSerialized.php:870
1537
- msgid "I allow to create an account"
1538
- msgstr ""
1539
-
1540
- #: options/class.WpdiscuzOptionsSerialized.php:871
1541
- msgid ""
1542
- "When you login first time using a Social Login button, we collect your "
1543
- "account public profile information shared by Social Login provider, based on "
1544
- "your privacy settings. We also get your email address to automatically "
1545
- "create an account for you in our website. Once your account is created, "
1546
- "you'll be logged-in to this account."
1547
- msgstr ""
1548
-
1549
- #: options/class.WpdiscuzOptionsSerialized.php:872
1550
- msgid "This comment form is under antispam protection"
1551
- msgstr ""
1552
-
1553
- #: options/class.WpdiscuzOptionsSerialized.php:873
1554
- #: options/phrases-layouts/phrases-social-login.php:23
1555
- msgid "Disagree"
1556
- msgstr ""
1557
-
1558
- #: options/class.WpdiscuzOptionsSerialized.php:874
1559
- #: options/phrases-layouts/phrases-social-login.php:27
1560
- msgid "Agree"
1561
- msgstr ""
1562
-
1563
- #: options/class.WpdiscuzOptionsSerialized.php:875
1564
- #: options/phrases-layouts/phrases-user-settings.php:11
1565
- msgid "My content and settings"
1566
- msgstr ""
1567
-
1568
- #: options/class.WpdiscuzOptionsSerialized.php:876
1569
- #: options/phrases-layouts/phrases-user-settings.php:15
1570
- msgid "Activity"
1571
- msgstr ""
1572
-
1573
- #: options/class.WpdiscuzOptionsSerialized.php:877
1574
- #: options/phrases-layouts/phrases-user-settings.php:19
1575
- msgid "Subscriptions"
1576
- msgstr ""
1577
-
1578
- #: options/class.WpdiscuzOptionsSerialized.php:878
1579
- #: options/phrases-layouts/phrases-user-settings.php:23
1580
- msgid "In response to:"
1581
- msgstr ""
1582
-
1583
- #: options/class.WpdiscuzOptionsSerialized.php:879
1584
- #: options/class.WpdiscuzOptionsSerialized.php:885
1585
- #: options/phrases-layouts/phrases-user-settings.php:27
1586
- #: options/phrases-layouts/phrases-user-settings.php:51
1587
- msgid "Bulk management via email"
1588
- msgstr ""
1589
-
1590
- #: options/class.WpdiscuzOptionsSerialized.php:880
1591
- msgid ""
1592
- "Click the button above to get an email with bulk delete and unsubscribe "
1593
- "links."
1594
- msgstr ""
1595
-
1596
- #: options/class.WpdiscuzOptionsSerialized.php:881
1597
- #: options/phrases-layouts/phrases-user-settings.php:35
1598
- msgid "No data found!"
1599
- msgstr ""
1600
-
1601
- #: options/class.WpdiscuzOptionsSerialized.php:882
1602
- #: options/class.WpdiscuzOptionsSerialized.php:886
1603
- #: options/phrases-layouts/phrases-user-settings.php:39
1604
- #: options/phrases-layouts/phrases-user-settings.php:55
1605
- msgid "Delete all my comments"
1606
- msgstr ""
1607
-
1608
- #: options/class.WpdiscuzOptionsSerialized.php:883
1609
- #: options/phrases-layouts/phrases-user-settings.php:43
1610
- msgid "Cancel all comment subscriptions"
1611
- msgstr ""
1612
-
1613
- #: options/class.WpdiscuzOptionsSerialized.php:884
1614
- #: options/phrases-layouts/phrases-user-settings.php:47
1615
- msgid "Clear cookies with my personal data"
1616
- msgstr ""
1617
-
1618
- #: options/class.WpdiscuzOptionsSerialized.php:887
1619
- msgid ""
1620
- "Please use this link to delete all your comments. Please note, that this "
1621
- "action cannot be undone."
1622
- msgstr ""
1623
-
1624
- #: options/class.WpdiscuzOptionsSerialized.php:888
1625
- #: options/phrases-layouts/phrases-user-settings.php:63
1626
- msgid "Delete all my subscriptions"
1627
- msgstr ""
1628
-
1629
- #: options/class.WpdiscuzOptionsSerialized.php:889
1630
- msgid ""
1631
- "Please use this link to cancel all subscriptions for new comments. Please "
1632
- "note, that this action cannot be undone."
1633
- msgstr ""
1634
-
1635
- #: options/class.WpdiscuzOptionsSerialized.php:890
1636
- #: options/phrases-layouts/phrases-user-settings.php:71
1637
- msgid "subscribed to this comment"
1638
- msgstr ""
1639
-
1640
- #: options/class.WpdiscuzOptionsSerialized.php:891
1641
- #: options/phrases-layouts/phrases-user-settings.php:75
1642
- msgid "subscribed to my comments"
1643
- msgstr ""
1644
-
1645
- #: options/class.WpdiscuzOptionsSerialized.php:892
1646
- #: options/phrases-layouts/phrases-user-settings.php:79
1647
- msgid "subscribed to all follow-up comments of this post"
1648
- msgstr ""
1649
-
1650
- #: options/class.WpdiscuzOptionsSerialized.php:893
1651
- #: options/phrases-layouts/phrases-user-settings.php:83
1652
- msgid "Please check your email."
1653
- msgstr ""
1654
-
1655
- #: options/class.WpdiscuzOptionsSerialized.php:894
1656
- #: options/phrases-layouts/phrases-user-settings.php:87
1657
- msgid "Error : Can't send email."
1658
- msgstr ""
1659
-
1660
- #: options/class.WpdiscuzOptionsSerialized.php:895
1661
- #: options/phrases-layouts/phrases-user-settings.php:91
1662
- msgid "Are you sure you want to delete this comment?"
1663
- msgstr ""
1664
-
1665
- #: options/class.WpdiscuzOptionsSerialized.php:896
1666
- #: options/phrases-layouts/phrases-user-settings.php:95
1667
- msgid "Are you sure you want to cancel this subscription?"
1668
- msgstr ""
1669
-
1670
- #: options/html-addons.php:11
1671
- msgid "wpDiscuz Addons"
1672
- msgstr ""
1673
-
1674
- #: options/html-addons.php:19
1675
- msgid "wpDiscuz Add-ons"
1676
- msgstr ""
1677
-
1678
- #: options/html-addons.php:20
1679
- msgid "Addons Support Forum"
1680
- msgstr ""
1681
-
1682
- #: options/html-addons.php:25
1683
- msgid ""
1684
- "All wpDiscuz addons are being developed by wpDiscuz developers at gVectors "
1685
- "Team, those are very solid premium level extensions and come with premium "
1686
- "support.\n"
1687
- " These addons help us to keep top level "
1688
- "development of the free wpDiscuz plugin. All essential and even dozens of "
1689
- "extra-cool features are already available for free in core wpDiscuz. \n"
1690
- " There will never be any limits, any pro and paid "
1691
- "versions for wpDiscuz. We have another dozens of awesome features in our to-"
1692
- "do list which will also be added for free in future releases. \n"
1693
- " So the free wpDiscuz development always stays on "
1694
- "the first priority and wpDiscuz is being extended with new free functions "
1695
- "and features even faster than before."
1696
- msgstr ""
1697
-
1698
- #: options/html-addons.php:31
1699
- msgid " Thank you!<br/> Sincerely yours,<br/> gVectors Team&nbsp;"
1700
- msgstr ""
1701
-
1702
- #: options/html-addons.php:53
1703
- msgid "Installed"
1704
- msgstr ""
1705
-
1706
- #: options/html-addons.php:57
1707
- msgid "Version"
1708
- msgstr ""
1709
-
1710
- #: options/html-addons.php:58
1711
- msgid "at least"
1712
- msgstr ""
1713
-
1714
- #: options/html-addons.php:60
1715
- msgid "Live Preview | Buy"
1716
- msgstr ""
1717
-
1718
- #: options/html-addons.php:66
1719
- msgid "More information about"
1720
- msgstr ""
1721
-
1722
- #: options/html-options.php:10
1723
- msgid "wpDiscuz General Settings"
1724
- msgstr ""
1725
-
1726
- #: options/html-options.php:19
1727
- msgid "Need More Features?"
1728
- msgstr ""
1729
-
1730
- #: options/html-options.php:20
1731
- msgid "Documentation"
1732
- msgstr ""
1733
-
1734
- #: options/html-options.php:21
1735
- msgid "Support"
1736
- msgstr ""
1737
-
1738
- #: options/html-options.php:54 options/html-phrases.php:21
1739
- msgid "General"
1740
- msgstr ""
1741
-
1742
- #: options/html-options.php:55
1743
- msgid "Comment Form"
1744
- msgstr ""
1745
-
1746
- #: options/html-options.php:56
1747
- msgid "Comment List"
1748
- msgstr ""
1749
-
1750
- #: options/html-options.php:57
1751
- #: options/options-layouts/settings-live-update.php:7
1752
- msgid "Live Update"
1753
- msgstr ""
1754
-
1755
- #: options/html-options.php:59
1756
- msgid "Subscription"
1757
- msgstr ""
1758
-
1759
- #: options/html-options.php:59
1760
- msgid "and Postmatic"
1761
- msgstr ""
1762
-
1763
- #: options/html-options.php:60
1764
- msgid "Styling"
1765
- msgstr ""
1766
-
1767
- #: options/html-options.php:61
1768
- msgid "Cache"
1769
- msgstr ""
1770
-
1771
- #: options/html-options.php:62 options/options-layouts/settings-social.php:7
1772
- msgid "Social Login &amp; Share"
1773
- msgstr ""
1774
-
1775
- #: options/html-options.php:63
1776
- #: options/options-layouts/settings-integrations.php:7
1777
- msgid "Integrations"
1778
- msgstr ""
1779
-
1780
- #: options/html-options.php:154
1781
- msgid "Reset Options"
1782
- msgstr ""
1783
-
1784
- #: options/html-options.php:156
1785
- msgid "Remove vote data"
1786
- msgstr ""
1787
-
1788
- #: options/html-options.php:157 options/html-phrases.php:80
1789
- msgid "Save Changes"
1790
- msgstr ""
1791
-
1792
- #: options/html-phrases.php:10
1793
- msgid "wpDiscuz Front-end Phrases"
1794
- msgstr ""
1795
-
1796
- #: options/html-phrases.php:23
1797
- msgid "Comment"
1798
- msgstr ""
1799
-
1800
- #: options/html-phrases.php:24
1801
- msgid "Date/Time"
1802
- msgstr ""
1803
-
1804
- #: options/html-phrases.php:26
1805
- msgid "Notification"
1806
- msgstr ""
1807
-
1808
- #: options/html-phrases.php:27
1809
- #: options/phrases-layouts/phrases-social-login.php:7
1810
- msgid "Social Login"
1811
- msgstr ""
1812
-
1813
- #: options/html-phrases.php:28
1814
- msgid "User Settings"
1815
- msgstr ""
1816
-
1817
- #: options/html-phrases.php:29
1818
- msgid "Errors"
1819
- msgstr ""
1820
-
1821
- #: options/html-phrases.php:79
1822
- msgid "Reset Phrases"
1823
- msgstr ""
1824
-
1825
- #: options/html-tools.php:10
1826
- msgid "wpDiscuz Tools"
1827
- msgstr ""
1828
-
1829
- #: options/html-tools.php:15 options/tools-layouts/options-export.php:7
1830
- msgid "Export options"
1831
- msgstr ""
1832
-
1833
- #: options/html-tools.php:16 options/tools-layouts/options-import.php:7
1834
- msgid "Import options"
1835
- msgstr ""
1836
-
1837
- #: options/html-tools.php:17 options/tools-layouts/subscriptions-import.php:9
1838
- msgid "Import subscriptions"
1839
- msgstr ""
1840
-
1841
- #: options/html-tools.php:18 utils/deactivation-reason-modal.php:57
1842
- msgid "Other"
1843
- msgstr ""
1844
-
1845
- #: options/options-layouts/settings-addons.php:20
1846
- msgid ""
1847
- "Here you can find wpDiscuz Addons' setting options in vertical subTabs with "
1848
- "according addon titles. All wpDiscuz addons are listed on wpDiscuz"
1849
- msgstr ""
1850
-
1851
- #: options/options-layouts/settings-addons.php:20
1852
- msgid "Addons subMenu"
1853
- msgstr ""
1854
-
1855
- #: options/options-layouts/settings-addons.php:20
1856
- msgid ""
1857
- "We'll add new free and paid addons with almost every wpDiscuz release. There "
1858
- "will be dozens of very useful addons in near future. Currently wpDiscuz "
1859
- "consists of about 70 free features/addons like \"Live Update\", \"First "
1860
- "comment redirection\", \"Comment sorting\", \"Simple CAPTCHA\", \"AJAX "
1861
- "Pagination\", \"Lazy Load\", \"Comment Likes\", \"Comment Share\" and dozens "
1862
- "of other addons and there will be more. All new and free addons will be "
1863
- "built-in with wpDiscuz plugin and all paid addons will be listed separately "
1864
- "on"
1865
- msgstr ""
1866
-
1867
- #: options/options-layouts/settings-cache.php:10
1868
- msgid "Gravatar Cache"
1869
- msgstr ""
1870
-
1871
- #: options/options-layouts/settings-cache.php:15
1872
- msgid "Enable Grvatar caching"
1873
- msgstr ""
1874
-
1875
- #: options/options-layouts/settings-cache.php:17
1876
- msgid ""
1877
- "It seems on of important functions (\"file_get_contents\", "
1878
- "\"file_put_contents\") of php is not exists.<br/> Please enable these "
1879
- "functions in your server settings to use gravatar caching feature."
1880
- msgstr ""
1881
-
1882
- #: options/options-layouts/settings-cache.php:26
1883
- msgid "Caching method"
1884
- msgstr ""
1885
-
1886
- #: options/options-layouts/settings-cache.php:29
1887
- msgid "Runtime"
1888
- msgstr ""
1889
-
1890
- #: options/options-layouts/settings-cache.php:30
1891
- msgid "Cron job"
1892
- msgstr ""
1893
-
1894
- #: options/options-layouts/settings-cache.php:35
1895
- msgid "Cache avatars for \"X\" days"
1896
- msgstr ""
1897
-
1898
- #: options/options-layouts/settings-cache.php:42
1899
- #: options/options-layouts/settings-cache.php:45
1900
- msgid "Purge expired caches"
1901
- msgstr ""
1902
-
1903
- #: options/options-layouts/settings-cache.php:49
1904
- #: options/options-layouts/settings-cache.php:52
1905
- msgid "Purge all caches"
1906
- msgstr ""
1907
-
1908
- #: options/options-layouts/settings-cache.php:56
1909
- msgid "Statistics Cache"
1910
- msgstr ""
1911
-
1912
- #: options/options-layouts/settings-cache.php:60
1913
- #: options/options-layouts/settings-cache.php:63
1914
- msgid "Purge statistics caches"
1915
- msgstr ""
1916
-
1917
- #: options/options-layouts/settings-customfields.php:12
1918
- msgid "Google Map API Key"
1919
- msgstr ""
1920
-
1921
- #: options/options-layouts/settings-form.php:7
1922
- msgid "Comment Form Settings"
1923
- msgstr ""
1924
-
1925
- #: options/options-layouts/settings-form.php:12
1926
- msgid "Hide Header Text"
1927
- msgstr ""
1928
-
1929
- #: options/options-layouts/settings-form.php:13
1930
- msgid ""
1931
- "This option hides \"Leave Reply\" header text on top of comment form. You "
1932
- "can madify this text in Comments > Forms admin page."
1933
- msgstr ""
1934
-
1935
- #: options/options-layouts/settings-form.php:22
1936
- msgid "Show logged-in user name and logout link on top of main form"
1937
- msgstr ""
1938
-
1939
- #: options/options-layouts/settings-form.php:31
1940
- msgid "Comment Form components"
1941
- msgstr ""
1942
-
1943
- #: options/options-layouts/settings-form.php:32
1944
- msgid ""
1945
- "These components can be found on the main comment form. The \"My Content and "
1946
- "Settings\" button is located on the top left side, under the \"Leave Reply\" "
1947
- "header text. The \"Discussion Statistic\" and \"Recent Comment Authors\" "
1948
- "sections are located under the main comment form fields ont the left and "
1949
- "right sides accordingly."
1950
- msgstr ""
1951
-
1952
- #: options/options-layouts/settings-form.php:42
1953
- msgid "Hide \"Please login to comment\" text"
1954
- msgstr ""
1955
-
1956
- #: options/options-layouts/settings-form.php:49
1957
- msgid "Hide \"My Content and Settings\" button"
1958
- msgstr ""
1959
-
1960
- #: options/options-layouts/settings-form.php:56
1961
- msgid "Hide \"Discussion Statistic\" section"
1962
- msgstr ""
1963
-
1964
- #: options/options-layouts/settings-form.php:63
1965
- msgid "Hide \"Recent Comment Authors\" section"
1966
- msgstr ""
1967
-
1968
- #: options/options-layouts/settings-form.php:71
1969
- msgid "Keep guest commenter credentials in browser cookies for x days"
1970
- msgstr ""
1971
-
1972
- #: options/options-layouts/settings-form.php:73
1973
- msgid ""
1974
- "wpDiscuz uses WordPress function to keep guest Name, Email and Website "
1975
- "information in cookies to fill according fields of comment form on next "
1976
- "commenting time."
1977
- msgstr ""
1978
-
1979
- #: options/options-layouts/settings-form.php:74
1980
- msgid "Set this option value -1 to make it unlimited."
1981
- msgstr ""
1982
-
1983
- #: options/options-layouts/settings-form.php:75
1984
- msgid "Set this option value 0 to clear those data when user closes browser."
1985
- msgstr ""
1986
-
1987
- #: options/options-layouts/settings-form.php:82
1988
- msgid "Comment author name length (for guests only)"
1989
- msgstr ""
1990
-
1991
- #: options/options-layouts/settings-form.php:86
1992
- #: options/options-layouts/settings-form.php:100
1993
- msgid "Min"
1994
- msgstr ""
1995
-
1996
- #: options/options-layouts/settings-form.php:89
1997
- #: options/options-layouts/settings-form.php:103
1998
- msgid "Max"
1999
- msgstr ""
2000
-
2001
- #: options/options-layouts/settings-form.php:95
2002
- msgid "Comment text length"
2003
- msgstr ""
2004
-
2005
- #: options/options-layouts/settings-form.php:96
2006
- msgid ""
2007
- "Allows to set minimum and maximum number of chars can be inserted in comment "
2008
- "textarea. Leave the max value empty to remove the limit."
2009
- msgstr ""
2010
-
2011
- #: options/options-layouts/settings-form.php:109
2012
- msgid "Captcha generation type"
2013
- msgstr ""
2014
-
2015
- #: options/options-layouts/settings-form.php:114
2016
- msgid "File system"
2017
- msgstr ""
2018
-
2019
- #: options/options-layouts/settings-form.php:115
2020
- msgid "WP Session"
2021
- msgstr ""
2022
-
2023
- #: options/options-layouts/settings-form.php:122
2024
- msgid "Invisible Spam Protection"
2025
- msgstr ""
2026
-
2027
- #: options/options-layouts/settings-form.php:124
2028
- msgid ""
2029
- "You should purge caches after each key generation otherwise the plugin may "
2030
- "work not correctly"
2031
- msgstr ""
2032
-
2033
- #: options/options-layouts/settings-form.php:127
2034
- msgid "Leave the field empty if you don't want to use this feature"
2035
- msgstr ""
2036
-
2037
- #: options/options-layouts/settings-form.php:132
2038
- msgid "Generate"
2039
- msgstr ""
2040
-
2041
- #: options/options-layouts/settings-form.php:137
2042
- msgid "Display note about Invisible Spam Protection"
2043
- msgstr ""
2044
-
2045
- #: options/options-layouts/settings-form.php:138
2046
- msgid ""
2047
- "wpDiscuz has built-in invisible antispam protection based on server side and "
2048
- "front-end unique key comparation. By default wpDiscuz display a small note "
2049
- "in simple CAPTCHA area, saying the comment form is under antispam "
2050
- "protection. The note text can be managed in Comments > Phrases > Form tab."
2051
- msgstr ""
2052
-
2053
- #: options/options-layouts/settings-form.php:147
2054
- msgid "Enable Quicktags"
2055
- msgstr ""
2056
-
2057
- #: options/options-layouts/settings-form.php:148
2058
- msgid ""
2059
- "Quicktag is a on-click button that inserts HTML in to comment textarea. For "
2060
- "example the \"b\" Quicktag will insert the HTML bold tags < b > < /b >."
2061
- msgstr ""
2062
-
2063
- #: options/options-layouts/settings-form.php:157
2064
- msgid "Enable automatic image URL to image HTML conversion"
2065
- msgstr ""
2066
-
2067
- #: options/options-layouts/settings-form.php:166
2068
- msgid "Allow comment editing for"
2069
- msgstr ""
2070
-
2071
- #: options/options-layouts/settings-form.php:171
2072
- msgid "Do not allow"
2073
- msgstr ""
2074
-
2075
- #: options/options-layouts/settings-form.php:172
2076
- #: options/options-layouts/settings-form.php:173
2077
- #: options/options-layouts/settings-live-update.php:53
2078
- #: options/options-layouts/settings-live-update.php:54
2079
- #: options/options-layouts/settings-live-update.php:55
2080
- msgid "Minutes"
2081
- msgstr ""
2082
-
2083
- #: options/options-layouts/settings-form.php:174
2084
- #: options/phrases-layouts/phrases-datetime.php:35
2085
- msgid "Hour"
2086
- msgstr ""
2087
-
2088
- #: options/options-layouts/settings-form.php:175
2089
- #: options/options-layouts/settings-form.php:176
2090
- msgid "Hours"
2091
- msgstr ""
2092
-
2093
- #: options/options-layouts/settings-form.php:177
2094
- msgid "Unlimit"
2095
- msgstr ""
2096
-
2097
- #: options/options-layouts/settings-general.php:7
2098
- msgid "General Settings"
2099
- msgstr ""
2100
-
2101
- #: options/options-layouts/settings-general.php:11
2102
- msgid "Enable wpdiscuz on home page"
2103
- msgstr ""
2104
-
2105
- #: options/options-layouts/settings-general.php:16
2106
- msgid "Use guest email to detect registered account"
2107
- msgstr ""
2108
-
2109
- #: options/options-layouts/settings-general.php:18
2110
- msgid ""
2111
- "Sometimes registered users comment as guest using the same email address. "
2112
- "wpDiscuz can detect the account role using guest email and display commenter "
2113
- "label correctly."
2114
- msgstr ""
2115
-
2116
- #: options/options-layouts/settings-general.php:25
2117
- msgid "Secure comment content in HTTPS protocol."
2118
- msgstr ""
2119
-
2120
- #: options/options-layouts/settings-general.php:27
2121
- msgid ""
2122
- "This option detects images and other contents with non-https source URLs and "
2123
- "fix according to your selected logic."
2124
- msgstr ""
2125
-
2126
- #: options/options-layouts/settings-general.php:35
2127
- msgid "Replace non-https content to simple link URLs"
2128
- msgstr ""
2129
-
2130
- #: options/options-layouts/settings-general.php:39
2131
- msgid ""
2132
- "Just replace http protocols to https (https may not be supported by content "
2133
- "provider)"
2134
- msgstr ""
2135
-
2136
- #: options/options-layouts/settings-general.php:43
2137
- msgid "Ignore non-https content"
2138
- msgstr ""
2139
-
2140
- #: options/options-layouts/settings-general.php:51
2141
- msgid "Redirect first commenter to"
2142
- msgstr ""
2143
-
2144
- #: options/options-layouts/settings-general.php:58
2145
- msgid "Do not redirect"
2146
- msgstr ""
2147
-
2148
- #: options/options-layouts/settings-general.php:66
2149
- msgid "Use WordPress Date/Time format"
2150
- msgstr ""
2151
-
2152
- #: options/options-layouts/settings-general.php:67
2153
- msgid ""
2154
- "wpDiscuz shows Human Readable date format. If you check this option it'll "
2155
- "show the date/time format set in WordPress General Settings."
2156
- msgstr ""
2157
-
2158
- #: options/options-layouts/settings-general.php:73
2159
- msgid "Current Wordpress date/time format"
2160
- msgstr ""
2161
-
2162
- #: options/options-layouts/settings-general.php:79
2163
- msgid "Use Plugin .PO/.MO files"
2164
- msgstr ""
2165
-
2166
- #: options/options-layouts/settings-general.php:80
2167
- msgid ""
2168
- "wpDiscuz phrase system allows you to translate all front-end phrases. "
2169
- "However if you have a multi-language website it'll not allow you to add more "
2170
- "than one language translation. The only way to get it is the plugin "
2171
- "translation files (.PO / .MO). If wpDiscuz has the languages you need you "
2172
- "should check this option to disable phrase system and it'll automatically "
2173
- "translate all phrases based on language files according to current language."
2174
- msgstr ""
2175
-
2176
- #: options/options-layouts/settings-general.php:87
2177
- msgid ""
2178
- "Help wpDiscuz to grow allowing people to recognize which comment plugin you "
2179
- "use"
2180
- msgstr ""
2181
-
2182
- #: options/options-layouts/settings-general.php:89
2183
- msgid ""
2184
- "Please check this option on to help wpDiscuz get more popularity as your "
2185
- "thank to the hard work we do for you totally free. This option adds a very "
2186
- "small (16x16px) icon under the comment section which will allow your site "
2187
- "visitors recognize the name of comment solution you use."
2188
- msgstr ""
2189
-
2190
- #: options/options-layouts/settings-general.php:94
2191
- msgid "Thank you!"
2192
- msgstr ""
2193
-
2194
- #: options/options-layouts/settings-integrations.php:14
2195
- msgid "BuddyPress"
2196
- msgstr ""
2197
-
2198
- #: options/options-layouts/settings-integrations.php:15
2199
- msgid "Users Ultra"
2200
- msgstr ""
2201
-
2202
- #: options/options-layouts/settings-integrations.php:16
2203
- msgid "User Pro"
2204
- msgstr ""
2205
-
2206
- #: options/options-layouts/settings-integrations.php:17
2207
- msgid "Ultimate Member"
2208
- msgstr ""
2209
-
2210
- #: options/options-layouts/settings-integrations.php:18
2211
- msgid "MyCred"
2212
- msgstr ""
2213
-
2214
- #: options/options-layouts/settings-integrations.php:23
2215
- #: options/options-layouts/settings-integrations.php:41
2216
- #: options/options-layouts/settings-integrations.php:59
2217
- #: options/options-layouts/settings-integrations.php:90
2218
- #: options/options-layouts/settings-integrations.php:124
2219
- msgid "Please add the code below in current active theme's functions.php file"
2220
- msgstr ""
2221
-
2222
- #: options/options-layouts/settings-integrations.php:24
2223
- msgid ""
2224
- "This code will integrate BuddyPress profile URL with wpDiscuz. BuddyPress "
2225
- "Display Names and Avatars will be integrated automatically."
2226
- msgstr ""
2227
-
2228
- #: options/options-layouts/settings-integrations.php:42
2229
- msgid ""
2230
- "This code will integrate Users Ultra profile URL with wpDiscuz. Users Ultra "
2231
- "Display Names and Avatars will be integrated automatically."
2232
- msgstr ""
2233
-
2234
- #: options/options-layouts/settings-integrations.php:60
2235
- msgid ""
2236
- "This code will integrate User Pro profile URL with wpDiscuz. User Pro "
2237
- "Display Names and Avatars will be integrated automatically."
2238
- msgstr ""
2239
-
2240
- #: options/options-layouts/settings-integrations.php:91
2241
- msgid ""
2242
- "This code consists of two parts, which will integrate Ultimate Member "
2243
- "profile Display Name and Profile URL with wpDiscuz. UM Avatars will be "
2244
- "integrated automatically."
2245
- msgstr ""
2246
-
2247
- #: options/options-layouts/settings-integrations.php:125
2248
- msgid ""
2249
- "This code will integrate MyCred User Ranks and Badges under comment author "
2250
- "avatar."
2251
- msgstr ""
2252
-
2253
- #: options/options-layouts/settings-list.php:7
2254
- msgid "Comment List Settings"
2255
- msgstr ""
2256
-
2257
- #: options/options-layouts/settings-list.php:12
2258
- msgid "Display only parent comments and <u>view replies &or;</u> button"
2259
- msgstr ""
2260
-
2261
- #: options/options-layouts/settings-list.php:14
2262
- msgid ""
2263
- "If this option is enabled only parent comment will be displayed. This "
2264
- "increases page load speed and keeps pages light. If visitor wants to read "
2265
- "replies he/she just need to click on [view replies (12)] button located on "
2266
- "all parent comments which have replies."
2267
- msgstr ""
2268
-
2269
- #: options/options-layouts/settings-list.php:24
2270
- msgid "Show sorting buttons"
2271
- msgstr ""
2272
-
2273
- #: options/options-layouts/settings-list.php:25
2274
- msgid ""
2275
- "This option enables comment sorting buttons (newest | oldest | most voted). "
2276
- "Sorting buttons are not available for the default comments pagination type "
2277
- "[1][2][3]... It's only active for [Load more] and other AYAX pagination "
2278
- "types."
2279
- msgstr ""
2280
-
2281
- #: options/options-layouts/settings-list.php:34
2282
- msgid "Set comments ordering to \"Most voted\" by default "
2283
- msgstr ""
2284
-
2285
- #: options/options-layouts/settings-list.php:43
2286
- msgid "Reverse child comments order"
2287
- msgstr ""
2288
-
2289
- #: options/options-layouts/settings-list.php:52
2290
- msgid "Comments loading/pagination type"
2291
- msgstr ""
2292
-
2293
- #: options/options-layouts/settings-list.php:54
2294
- msgid ""
2295
- "You can manage the number of comments for [Load more] option in Settings > "
2296
- "Discussion page, using \"Break comments into pages with [X] top level "
2297
- "comments per page\" option. To show the default Wordpress comment pagination "
2298
- "you should enable the checkbox on bigining of the same option."
2299
- msgstr ""
2300
-
2301
- #: options/options-layouts/settings-list.php:60
2302
- #: options/options-layouts/settings-list.php:62
2303
- msgid "[Load more] Button"
2304
- msgstr ""
2305
-
2306
- #: options/options-layouts/settings-list.php:64
2307
- #: options/options-layouts/settings-list.php:66
2308
- msgid "[Load rest of all comments] Button"
2309
- msgstr ""
2310
-
2311
- #: options/options-layouts/settings-list.php:68
2312
- #: options/options-layouts/settings-list.php:70
2313
- msgid "Load all comments"
2314
- msgstr ""
2315
-
2316
- #: options/options-layouts/settings-list.php:72
2317
- #: options/options-layouts/settings-list.php:74
2318
- msgid "Lazy load comments on scrolling"
2319
- msgstr ""
2320
-
2321
- #: options/options-layouts/settings-list.php:81
2322
- msgid ""
2323
- "The number of words before breaking comment text and showing \"Read more\" "
2324
- "link"
2325
- msgstr ""
2326
-
2327
- #: options/options-layouts/settings-list.php:83
2328
- msgid "Set this option value 0, to turn off comment text breaking function."
2329
- msgstr ""
2330
-
2331
- #: options/options-layouts/settings-list.php:90
2332
- msgid "Comment components"
2333
- msgstr ""
2334
-
2335
- #: options/options-layouts/settings-list.php:95
2336
- msgid "Hide comment link"
2337
- msgstr ""
2338
-
2339
- #: options/options-layouts/settings-list.php:98
2340
- msgid "Hide comment date"
2341
- msgstr ""
2342
-
2343
- #: options/options-layouts/settings-list.php:101
2344
- msgid "Hide Commenter Labels"
2345
- msgstr ""
2346
-
2347
- #: options/options-layouts/settings-list.php:109
2348
- msgid "Hide Voting buttons"
2349
- msgstr ""
2350
-
2351
- #: options/options-layouts/settings-list.php:117
2352
- msgid "Comment voting buttons icon"
2353
- msgstr ""
2354
-
2355
- #: options/options-layouts/settings-list.php:135
2356
- msgid "Comment voting statistic mode"
2357
- msgstr ""
2358
-
2359
- #: options/options-layouts/settings-list.php:139
2360
- msgid "total count"
2361
- msgstr ""
2362
-
2363
- #: options/options-layouts/settings-list.php:140
2364
- msgid "separate count"
2365
- msgstr ""
2366
-
2367
- #: options/options-layouts/settings-list.php:146
2368
- msgid "Allow guests to vote on comments"
2369
- msgstr ""
2370
-
2371
- #: options/options-layouts/settings-list.php:155
2372
- msgid "Display Ratings"
2373
- msgstr ""
2374
-
2375
- #: options/options-layouts/settings-list.php:160
2376
- msgid "Before Content"
2377
- msgstr ""
2378
-
2379
- #: options/options-layouts/settings-list.php:162
2380
- msgid "After Content"
2381
- msgstr ""
2382
-
2383
- #: options/options-layouts/settings-list.php:163
2384
- msgid "Display ratings on none singular pages"
2385
- msgstr ""
2386
-
2387
- #: options/options-layouts/settings-list.php:169
2388
- msgid "Disable Profiles URL"
2389
- msgstr ""
2390
-
2391
- #: options/options-layouts/settings-live-update.php:12
2392
- msgid "Live update options"
2393
- msgstr ""
2394
-
2395
- #: options/options-layouts/settings-live-update.php:13
2396
- msgid ""
2397
- "wpDiscuz live update is very light and doesn't overload your server. However "
2398
- "we recommend to monitor your server resources if you're on a Shared hosting "
2399
- "plan. There are some very weak hosting plans which may not be able to "
2400
- "perform very frequently live update requests. If you found some issue you "
2401
- "can set the option below 30 seconds or more."
2402
- msgstr ""
2403
-
2404
- #: options/options-layouts/settings-live-update.php:18
2405
- msgid "Never update"
2406
- msgstr ""
2407
-
2408
- #: options/options-layouts/settings-live-update.php:20
2409
- msgid "Turn off \"Live Update\" function"
2410
- msgstr ""
2411
-
2412
- #: options/options-layouts/settings-live-update.php:22
2413
- msgid "Show new comment/reply buttons to update manualy"
2414
- msgstr ""
2415
-
2416
- #: options/options-layouts/settings-live-update.php:24
2417
- msgid "Always check for new comments and show update buttons"
2418
- msgstr ""
2419
-
2420
- #: options/options-layouts/settings-live-update.php:26
2421
- msgid "Always update"
2422
- msgstr ""
2423
-
2424
- #: options/options-layouts/settings-live-update.php:28
2425
- msgid "Always check for new comments and update automatically"
2426
- msgstr ""
2427
-
2428
- #: options/options-layouts/settings-live-update.php:35
2429
- msgid "Disable live update for guests"
2430
- msgstr ""
2431
-
2432
- #: options/options-layouts/settings-live-update.php:44
2433
- msgid "Update comment list every"
2434
- msgstr ""
2435
-
2436
- #: options/options-layouts/settings-live-update.php:49
2437
- #: options/options-layouts/settings-live-update.php:50
2438
- #: options/options-layouts/settings-live-update.php:51
2439
- msgid "Seconds"
2440
- msgstr ""
2441
-
2442
- #: options/options-layouts/settings-live-update.php:52
2443
- #: options/phrases-layouts/phrases-datetime.php:43
2444
- msgid "Minute"
2445
- msgstr ""
2446
-
2447
- #: options/options-layouts/settings-social.php:12
2448
- msgid "User agreement prior to a social login action"
2449
- msgstr ""
2450
-
2451
- #: options/options-layouts/settings-social.php:13
2452
- msgid ""
2453
- "If this option is enabled, all Social Login buttons become not-clickable "
2454
- "until user accept automatic account creation process based on his/her Social "
2455
- "Network Account shared information (email, name). This checkbox and "
2456
- "appropriate information will be displayed when user click on a social login "
2457
- "button, prior to the login process. This extra step is added to comply with "
2458
- "the GDPR"
2459
- msgstr ""
2460
-
2461
- #: options/options-layouts/settings-social.php:13
2462
- msgid ""
2463
- "The note text and the label of this checkbox can be managed in Comments > "
2464
- "Phrases > Social Login tab."
2465
- msgstr ""
2466
-
2467
- #: options/options-layouts/settings-social.php:22
2468
- msgid "Display social login buttons on reply forms"
2469
- msgstr ""
2470
-
2471
- #: options/options-layouts/settings-social.php:35
2472
- msgid "Facebook"
2473
- msgstr ""
2474
-
2475
- #: options/options-layouts/settings-social.php:41
2476
- msgid ""
2477
- "To start using Facebook Login and Share Buttons you should get Facebook "
2478
- "Application Key and Secret for your website. Please follow to this"
2479
- msgstr ""
2480
-
2481
- #: options/options-layouts/settings-social.php:41
2482
- #: options/options-layouts/settings-social.php:87
2483
- #: options/options-layouts/settings-social.php:134
2484
- #: options/options-layouts/settings-social.php:173
2485
- #: options/options-layouts/settings-social.php:219
2486
- msgid "instruction &raquo;"
2487
- msgstr ""
2488
-
2489
- #: options/options-layouts/settings-social.php:47
2490
- #: options/options-layouts/settings-social.php:93
2491
- #: options/options-layouts/settings-social.php:140
2492
- #: options/options-layouts/settings-social.php:179
2493
- #: options/options-layouts/settings-social.php:225
2494
- msgid "Enable Login Button"
2495
- msgstr ""
2496
-
2497
- #: options/options-layouts/settings-social.php:56
2498
- #: options/options-layouts/settings-social.php:102
2499
- #: options/options-layouts/settings-social.php:149
2500
- #: options/options-layouts/settings-social.php:152
2501
- #: options/options-layouts/settings-social.php:188
2502
- #: options/options-layouts/settings-social.php:234
2503
- msgid "Enable Share Button"
2504
- msgstr ""
2505
-
2506
- #: options/options-layouts/settings-social.php:65
2507
- #: options/options-layouts/settings-social.php:68
2508
- #: options/options-layouts/settings-social.php:243
2509
- #: options/options-layouts/settings-social.php:245
2510
- msgid "Aplication ID"
2511
- msgstr ""
2512
-
2513
- #: options/options-layouts/settings-social.php:72
2514
- #: options/options-layouts/settings-social.php:75
2515
- #: options/options-layouts/settings-social.php:255
2516
- #: options/options-layouts/settings-social.php:257
2517
- msgid "Aplication Secret"
2518
- msgstr ""
2519
-
2520
- #: options/options-layouts/settings-social.php:81
2521
- msgid "Twitter"
2522
- msgstr ""
2523
-
2524
- #: options/options-layouts/settings-social.php:87
2525
- msgid ""
2526
- "To start using Twitter Login Button you should get Consumer Key and Secret "
2527
- "for your website. Please follow to this"
2528
- msgstr ""
2529
-
2530
- #: options/options-layouts/settings-social.php:111
2531
- #: options/options-layouts/settings-social.php:113
2532
- msgid "Consumer Key (API Key)"
2533
- msgstr ""
2534
-
2535
- #: options/options-layouts/settings-social.php:117
2536
- #: options/options-layouts/settings-social.php:120
2537
- msgid "Consumer Secret (API Secret)"
2538
- msgstr ""
2539
-
2540
- #: options/options-layouts/settings-social.php:128
2541
- msgid "Google +"
2542
- msgstr ""
2543
-
2544
- #: options/options-layouts/settings-social.php:134
2545
- msgid ""
2546
- "To start using Google+ Login Button you should get Client ID for your "
2547
- "website. Please follow to this"
2548
- msgstr ""
2549
-
2550
- #: options/options-layouts/settings-social.php:158
2551
- #: options/options-layouts/settings-social.php:160
2552
- msgid "Client ID"
2553
- msgstr ""
2554
-
2555
- #: options/options-layouts/settings-social.php:167
2556
- msgid "VK"
2557
- msgstr ""
2558
-
2559
- #: options/options-layouts/settings-social.php:173
2560
- msgid ""
2561
- "To start using VK Login Button you should get Application ID and Secure Key. "
2562
- "Please follow to this "
2563
- msgstr ""
2564
-
2565
- #: options/options-layouts/settings-social.php:197
2566
- #: options/options-layouts/settings-social.php:199
2567
- msgid "Application ID"
2568
- msgstr ""
2569
-
2570
- #: options/options-layouts/settings-social.php:203
2571
- #: options/options-layouts/settings-social.php:205
2572
- msgid "Secure Key"
2573
- msgstr ""
2574
-
2575
- #: options/options-layouts/settings-social.php:212
2576
- msgid "OK"
2577
- msgstr ""
2578
-
2579
- #: options/options-layouts/settings-social.php:218
2580
- msgid "Getting started with"
2581
- msgstr ""
2582
-
2583
- #: options/options-layouts/settings-social.php:219
2584
- msgid ""
2585
- "To get the Aplication ID, Key and Secret, you should create an app using one "
2586
- "of the supported types (external, Android, iOS), use this"
2587
- msgstr ""
2588
-
2589
- #: options/options-layouts/settings-social.php:249
2590
- #: options/options-layouts/settings-social.php:251
2591
- msgid "Aplication Key"
2592
- msgstr ""
2593
-
2594
- #: options/options-layouts/settings-style.php:7
2595
- msgid "Background and Colors"
2596
- msgstr ""
2597
-
2598
- #: options/options-layouts/settings-style.php:12
2599
- msgid "Comment Form and Comment List Style"
2600
- msgstr ""
2601
-
2602
- #: options/options-layouts/settings-style.php:16
2603
- msgid "Default"
2604
- msgstr ""
2605
-
2606
- #: options/options-layouts/settings-style.php:17
2607
- msgid "Dark"
2608
- msgstr ""
2609
-
2610
- #: options/options-layouts/settings-style.php:23
2611
- msgid "Colors"
2612
- msgstr ""
2613
-
2614
- #: options/options-layouts/settings-style.php:27
2615
- #: options/options-layouts/settings-style.php:32
2616
- #: options/options-layouts/settings-style.php:37
2617
- #: options/options-layouts/settings-style.php:44
2618
- #: options/options-layouts/settings-style.php:49
2619
- #: options/options-layouts/settings-style.php:54
2620
- #: options/options-layouts/settings-style.php:103
2621
- #: options/options-layouts/settings-style.php:108
2622
- #: options/options-layouts/settings-style.php:113
2623
- #: options/options-layouts/settings-style.php:128
2624
- msgid "Example: #00FF00"
2625
- msgstr ""
2626
-
2627
- #: options/options-layouts/settings-style.php:28
2628
- msgid "Primary Color"
2629
- msgstr ""
2630
-
2631
- #: options/options-layouts/settings-style.php:33
2632
- msgid "Subscription Bar Background"
2633
- msgstr ""
2634
-
2635
- #: options/options-layouts/settings-style.php:38
2636
- msgid "Comment form fields border"
2637
- msgstr ""
2638
-
2639
- #: options/options-layouts/settings-style.php:45
2640
- msgid "Comment Background"
2641
- msgstr ""
2642
-
2643
- #: options/options-layouts/settings-style.php:50
2644
- msgid "Reply Background"
2645
- msgstr ""
2646
-
2647
- #: options/options-layouts/settings-style.php:55
2648
- msgid "Unread comments background"
2649
- msgstr ""
2650
-
2651
- #: options/options-layouts/settings-style.php:62
2652
- msgid "Button Colors"
2653
- msgstr ""
2654
-
2655
- #: options/options-layouts/settings-style.php:66
2656
- #: options/options-layouts/settings-style.php:76
2657
- msgid "Text Color"
2658
- msgstr ""
2659
-
2660
- #: options/options-layouts/settings-style.php:67
2661
- msgid "Primary buttons text"
2662
- msgstr ""
2663
-
2664
- #: options/options-layouts/settings-style.php:70
2665
- msgid "Background Color"
2666
- msgstr ""
2667
-
2668
- #: options/options-layouts/settings-style.php:71
2669
- msgid "Primary buttons background"
2670
- msgstr ""
2671
-
2672
- #: options/options-layouts/settings-style.php:77
2673
- msgid "Secondary buttons text"
2674
- msgstr ""
2675
-
2676
- #: options/options-layouts/settings-style.php:80
2677
- msgid "Border Color"
2678
- msgstr ""
2679
-
2680
- #: options/options-layouts/settings-style.php:81
2681
- msgid "Secondary buttons border"
2682
- msgstr ""
2683
-
2684
- #: options/options-layouts/settings-style.php:87
2685
- msgid "Up Vote Color"
2686
- msgstr ""
2687
-
2688
- #: options/options-layouts/settings-style.php:88
2689
- msgid "Up vote button"
2690
- msgstr ""
2691
-
2692
- #: options/options-layouts/settings-style.php:91
2693
- msgid "Down Vote Color"
2694
- msgstr ""
2695
-
2696
- #: options/options-layouts/settings-style.php:92
2697
- msgid "Down vote button"
2698
- msgstr ""
2699
-
2700
- #: options/options-layouts/settings-style.php:99
2701
- msgid "Rating Star Colors"
2702
- msgstr ""
2703
-
2704
- #: options/options-layouts/settings-style.php:104
2705
- msgid "Rating Stars Hover Color"
2706
- msgstr ""
2707
-
2708
- #: options/options-layouts/settings-style.php:109
2709
- msgid "Rating Stars Inactive Color"
2710
- msgstr ""
2711
-
2712
- #: options/options-layouts/settings-style.php:114
2713
- msgid "Rating Stars Active Color"
2714
- msgstr ""
2715
-
2716
- #: options/options-layouts/settings-style.php:121
2717
- msgid "Commenter Label Colors by User Role"
2718
- msgstr ""
2719
-
2720
- #: options/options-layouts/settings-style.php:128
2721
- msgid "label color"
2722
- msgstr ""
2723
-
2724
- #: options/options-layouts/settings-style.php:139
2725
- msgid "Comment text size in pixels"
2726
- msgstr ""
2727
-
2728
- #: options/options-layouts/settings-style.php:154
2729
- msgid "Do not load Font Awesome css lib"
2730
- msgstr ""
2731
-
2732
- #: options/options-layouts/settings-style.php:155
2733
- msgid ""
2734
- "IMPORTANT: wpDiscuz uses FontAwesome version 5. in case your theme still "
2735
- "uses the old 4.x versions you should not disable this lib. The theme 4.x "
2736
- "version doesn't support FontAwesome 5 icons, thus all wpDiscuz icons will be "
2737
- "lost."
2738
- msgstr ""
2739
-
2740
- #: options/options-layouts/settings-style.php:164
2741
- msgid "Custom CSS Code"
2742
- msgstr ""
2743
-
2744
- #: options/options-layouts/settings-subscription.php:7
2745
- msgid "Email Subscription Settings"
2746
- msgstr ""
2747
-
2748
- #: options/options-layouts/settings-subscription.php:11
2749
- msgid "Notify comment author once comment is approved"
2750
- msgstr ""
2751
-
2752
- #: options/options-layouts/settings-subscription.php:16
2753
- msgid "Disable subscription confirmation for registered users"
2754
- msgstr ""
2755
-
2756
- #: options/options-layouts/settings-subscription.php:25
2757
- msgid "Disable subscription confirmation for guests"
2758
- msgstr ""
2759
-
2760
- #: options/options-layouts/settings-subscription.php:34
2761
- msgid "Show subscription types in dropdown"
2762
- msgstr ""
2763
-
2764
- #: options/options-layouts/settings-subscription.php:41
2765
- msgid "Subscribe to all comments of this post"
2766
- msgstr ""
2767
-
2768
- #: options/options-layouts/settings-subscription.php:45
2769
- msgid "Subscribe to all replies to my comments "
2770
- msgstr ""
2771
-
2772
- #: options/options-layouts/settings-subscription.php:47
2773
- #: options/options-layouts/settings-subscription.php:49
2774
- msgid "Both"
2775
- msgstr ""
2776
-
2777
- #: options/options-layouts/settings-subscription.php:57
2778
- msgid "Show \"Notify of new replies to this comment\""
2779
- msgstr ""
2780
-
2781
- #: options/options-layouts/settings-subscription.php:59
2782
- msgid ""
2783
- "wpDiscuz is the only comment plugin which allows you to subscribe to certain "
2784
- "comment replies. This option is located above [Post Comment] button in "
2785
- "comment form. You can disable this subscription way by unchecking this "
2786
- "option."
2787
- msgstr ""
2788
-
2789
- #: options/options-layouts/settings-subscription.php:69
2790
- msgid "\"Notify of new replies to this comment\" checked by default"
2791
- msgstr ""
2792
-
2793
- #: options/options-layouts/settings-subscription.php:79
2794
- msgid "Use Postmatic for subscriptions and commenting by email"
2795
- msgstr ""
2796
-
2797
- #: options/options-layouts/settings-subscription.php:80
2798
- msgid ""
2799
- "Postmatic allows your users subscribe to comments. Instead of just being "
2800
- "notified, they add a reply right from their inbox."
2801
- msgstr ""
2802
-
2803
- #: options/phrases-layouts/phrases-comment.php:7
2804
- msgid "Comment Template Phrases"
2805
- msgstr ""
2806
-
2807
- #: options/phrases-layouts/phrases-comment.php:83
2808
- msgid "Save edited comment button text"
2809
- msgstr ""
2810
-
2811
- #: options/phrases-layouts/phrases-comment.php:87
2812
- msgid "Cancel comment editing button text"
2813
- msgstr ""
2814
-
2815
- #: options/phrases-layouts/phrases-comment.php:91
2816
- msgid "Comment read more link text"
2817
- msgstr ""
2818
-
2819
- #: options/phrases-layouts/phrases-comment.php:95
2820
- msgid "Anonymous commenter name"
2821
- msgstr ""
2822
-
2823
- #: options/phrases-layouts/phrases-comment.php:115
2824
- msgid "Sticky comment icon title"
2825
- msgstr ""
2826
-
2827
- #: options/phrases-layouts/phrases-comment.php:135
2828
- msgid "Closed comment icon title"
2829
- msgstr ""
2830
-
2831
- #: options/phrases-layouts/phrases-datetime.php:7
2832
- msgid "Date/Time Phrases"
2833
- msgstr ""
2834
-
2835
- #: options/phrases-layouts/phrases-datetime.php:11
2836
- msgid "Year"
2837
- msgstr ""
2838
-
2839
- #: options/phrases-layouts/phrases-datetime.php:15
2840
- msgid "Years (Plural Form)"
2841
- msgstr ""
2842
-
2843
- #: options/phrases-layouts/phrases-datetime.php:19
2844
- msgid "Month"
2845
- msgstr ""
2846
-
2847
- #: options/phrases-layouts/phrases-datetime.php:23
2848
- msgid "Months (Plural Form)"
2849
- msgstr ""
2850
-
2851
- #: options/phrases-layouts/phrases-datetime.php:27
2852
- msgid "Day"
2853
- msgstr ""
2854
-
2855
- #: options/phrases-layouts/phrases-datetime.php:31
2856
- msgid "Days (Plural Form)"
2857
- msgstr ""
2858
-
2859
- #: options/phrases-layouts/phrases-datetime.php:39
2860
- msgid "Hours (Plural Form)"
2861
- msgstr ""
2862
-
2863
- #: options/phrases-layouts/phrases-datetime.php:47
2864
- msgid "Minutes (Plural Form)"
2865
- msgstr ""
2866
-
2867
- #: options/phrases-layouts/phrases-datetime.php:51
2868
- msgid "Second"
2869
- msgstr ""
2870
-
2871
- #: options/phrases-layouts/phrases-datetime.php:55
2872
- msgid "Seconds (Plural Form)"
2873
- msgstr ""
2874
-
2875
- #: options/phrases-layouts/phrases-datetime.php:59
2876
- msgid "Commented \"right now\" text"
2877
- msgstr ""
2878
-
2879
- #: options/phrases-layouts/phrases-datetime.php:63
2880
- msgid "Ago text"
2881
- msgstr ""
2882
-
2883
- #: options/phrases-layouts/phrases-email.php:17
2884
- msgid "Email Template Phrases"
2885
- msgstr ""
2886
-
2887
- #: options/phrases-layouts/phrases-email.php:22
2888
- msgid "Subscription type: Post comments"
2889
- msgstr ""
2890
-
2891
- #: options/phrases-layouts/phrases-email.php:23
2892
- msgid "Post comment notification subject"
2893
- msgstr ""
2894
-
2895
- #: options/phrases-layouts/phrases-email.php:24
2896
- #: options/phrases-layouts/phrases-email.php:35
2897
- #: options/phrases-layouts/phrases-email.php:55
2898
- #: options/phrases-layouts/phrases-email.php:66
2899
- #: options/phrases-layouts/phrases-email.php:86
2900
- #: options/phrases-layouts/phrases-email.php:97
2901
- #: options/phrases-layouts/phrases-email.php:138
2902
- #: options/phrases-layouts/phrases-email.php:149
2903
- #: options/phrases-layouts/phrases-email.php:165
2904
- #: options/phrases-layouts/phrases-email.php:177
2905
- msgid "Available shortcodes"
2906
- msgstr ""
2907
-
2908
- #: options/phrases-layouts/phrases-email.php:34
2909
- msgid "Post comment notification content"
2910
- msgstr ""
2911
-
2912
- #: options/phrases-layouts/phrases-email.php:43
2913
- #: options/phrases-layouts/phrases-email.php:74
2914
- msgid "Shortcode above will work for registered users only"
2915
- msgstr ""
2916
-
2917
- #: options/phrases-layouts/phrases-email.php:53
2918
- msgid "Subscription type: All my comments"
2919
- msgstr ""
2920
-
2921
- #: options/phrases-layouts/phrases-email.php:54
2922
- #: options/phrases-layouts/phrases-email.php:85
2923
- msgid "New reply notification subject"
2924
- msgstr ""
2925
-
2926
- #: options/phrases-layouts/phrases-email.php:65
2927
- #: options/phrases-layouts/phrases-email.php:96
2928
- msgid "New Reply notification content"
2929
- msgstr ""
2930
-
2931
- #: options/phrases-layouts/phrases-email.php:84
2932
- msgid "Subscription type: Single comment"
2933
- msgstr ""
2934
-
2935
- #: options/phrases-layouts/phrases-email.php:124
2936
- msgid "Ignore subscription"
2937
- msgstr ""
2938
-
2939
- #: options/phrases-layouts/phrases-email.php:137
2940
- msgid "Subscription confirmation email subject"
2941
- msgstr ""
2942
-
2943
- #: options/phrases-layouts/phrases-email.php:148
2944
- msgid "Subscription confirmation email content"
2945
- msgstr ""
2946
-
2947
- #: options/phrases-layouts/phrases-email.php:164
2948
- msgid "Comment approved subject"
2949
- msgstr ""
2950
-
2951
- #: options/phrases-layouts/phrases-email.php:175
2952
- msgid "Comment approved message"
2953
- msgstr ""
2954
-
2955
- #: options/phrases-layouts/phrases-error.php:7
2956
- #: options/phrases-layouts/phrases-notification.php:7
2957
- msgid "Notification Phrases"
2958
- msgstr ""
2959
-
2960
- #: options/phrases-layouts/phrases-error.php:11
2961
- msgid "Error message for empty field"
2962
- msgstr ""
2963
-
2964
- #: options/phrases-layouts/phrases-error.php:15
2965
- msgid "Error message for invalid email field"
2966
- msgstr ""
2967
-
2968
- #: options/phrases-layouts/phrases-error.php:19
2969
- msgid "Error message for invalid website url field"
2970
- msgstr ""
2971
-
2972
- #: options/phrases-layouts/phrases-error.php:23
2973
- msgid "You can vote only 1 time"
2974
- msgstr ""
2975
-
2976
- #: options/phrases-layouts/phrases-error.php:31
2977
- msgid "You Cannot Vote On Your Comment"
2978
- msgstr ""
2979
-
2980
- #: options/phrases-layouts/phrases-error.php:35
2981
- msgid "You are not allowed to vote for this comment (Voting from same IP)"
2982
- msgstr ""
2983
-
2984
- #: options/phrases-layouts/phrases-error.php:47
2985
- msgid "Message if input text length is too short"
2986
- msgstr ""
2987
-
2988
- #: options/phrases-layouts/phrases-error.php:51
2989
- msgid "Message if input text length is too long"
2990
- msgstr ""
2991
-
2992
- #: options/phrases-layouts/phrases-error.php:55
2993
- msgid "Message if comment was not updated"
2994
- msgstr ""
2995
-
2996
- #: options/phrases-layouts/phrases-error.php:59
2997
- msgid "Message if comment no longer possible to edit"
2998
- msgstr ""
2999
-
3000
- #: options/phrases-layouts/phrases-error.php:63
3001
- msgid "Message if comment text not changed"
3002
- msgstr ""
3003
-
3004
- #: options/phrases-layouts/phrases-form.php:7
3005
- msgid "Form Template Phrases"
3006
- msgstr ""
3007
-
3008
- #: options/phrases-layouts/phrases-form.php:11
3009
- msgid "Comment Field Start"
3010
- msgstr ""
3011
-
3012
- #: options/phrases-layouts/phrases-form.php:15
3013
- msgid "Comment Field Join"
3014
- msgstr ""
3015
-
3016
- #: options/phrases-layouts/phrases-form.php:47
3017
- msgid "Email Field"
3018
- msgstr ""
3019
-
3020
- #: options/phrases-layouts/phrases-form.php:59
3021
- msgid "Notify on new comments"
3022
- msgstr ""
3023
-
3024
- #: options/phrases-layouts/phrases-form.php:63
3025
- msgid "Notify on all new replies"
3026
- msgstr ""
3027
-
3028
- #: options/phrases-layouts/phrases-form.php:67
3029
- msgid "Notify on new replies (checkbox) - On"
3030
- msgstr ""
3031
-
3032
- #: options/phrases-layouts/phrases-form.php:71
3033
- msgid "Notify on new replies (checkbox) - Off"
3034
- msgstr ""
3035
-
3036
- #: options/phrases-layouts/phrases-form.php:91
3037
- msgid "Subscribed on this comment replies"
3038
- msgstr ""
3039
-
3040
- #: options/phrases-layouts/phrases-form.php:95
3041
- msgid "Subscribed on all your comments replies"
3042
- msgstr ""
3043
-
3044
- #: options/phrases-layouts/phrases-form.php:99
3045
- msgid "Subscribed on this post"
3046
- msgstr ""
3047
-
3048
- #: options/phrases-layouts/phrases-form.php:103
3049
- msgid "Form subscription button"
3050
- msgstr ""
3051
-
3052
- #: options/phrases-layouts/phrases-form.php:107
3053
- msgid "Invisible Antispam Protection note"
3054
- msgstr ""
3055
-
3056
- #: options/phrases-layouts/phrases-general.php:7
3057
- msgid "General Phrases"
3058
- msgstr ""
3059
-
3060
- #: options/phrases-layouts/phrases-general.php:11
3061
- msgid "Be the first to comment"
3062
- msgstr ""
3063
-
3064
- #: options/phrases-layouts/phrases-general.php:15
3065
- msgid "Load More Button"
3066
- msgstr ""
3067
-
3068
- #: options/phrases-layouts/phrases-general.php:23
3069
- msgid "Button text if has new comment"
3070
- msgstr ""
3071
-
3072
- #: options/phrases-layouts/phrases-general.php:27
3073
- msgid "Button text if has new comments (Plural Form)"
3074
- msgstr ""
3075
-
3076
- #: options/phrases-layouts/phrases-general.php:31
3077
- msgid "Button text if has new reply"
3078
- msgstr ""
3079
-
3080
- #: options/phrases-layouts/phrases-general.php:35
3081
- msgid "Button text if has new replies (Plural Form)"
3082
- msgstr ""
3083
-
3084
- #: options/phrases-layouts/phrases-notification.php:24
3085
- msgid "Postmatic subscription label"
3086
- msgstr ""
3087
-
3088
- #: options/phrases-layouts/phrases-notification.php:42
3089
- msgid "Logged In"
3090
- msgstr ""
3091
-
3092
- #: options/phrases-layouts/phrases-notification.php:46
3093
- msgid "To post a comment"
3094
- msgstr ""
3095
-
3096
- #: options/phrases-layouts/phrases-notification.php:50
3097
- msgid "Logged in as"
3098
- msgstr ""
3099
-
3100
- #: options/phrases-layouts/phrases-notification.php:62
3101
- msgid "Login To Vote"
3102
- msgstr ""
3103
-
3104
- #: options/phrases-layouts/phrases-notification.php:66
3105
- msgid "Comment waiting moderation"
3106
- msgstr ""
3107
-
3108
- #: options/phrases-layouts/phrases-notification.php:70
3109
- msgid "Message if commenting disabled by user role"
3110
- msgstr ""
3111
-
3112
- #: options/phrases-layouts/phrases-social-login.php:15
3113
- msgid "Social login agreement label"
3114
- msgstr ""
3115
-
3116
- #: options/phrases-layouts/phrases-social-login.php:19
3117
- msgid "Social login agreement description"
3118
- msgstr ""
3119
-
3120
- #: options/phrases-layouts/phrases-user-settings.php:7
3121
- msgid "User Settings Phrases"
3122
- msgstr ""
3123
-
3124
- #: options/phrases-layouts/phrases-user-settings.php:31
3125
- msgid "\"Bulk management via email\" description"
3126
- msgstr ""
3127
-
3128
- #: options/phrases-layouts/phrases-user-settings.php:59
3129
- msgid "Delete all comments email text"
3130
- msgstr ""
3131
-
3132
- #: options/phrases-layouts/phrases-user-settings.php:67
3133
- msgid "Delete all subscriptions email text"
3134
- msgstr ""
3135
-
3136
- #: options/tools-layouts/options-export.php:9
3137
- msgid ""
3138
- "Using this tool you can migrate or backup/restore wpDiscuz options from one "
3139
- "WordPress to another."
3140
- msgstr ""
3141
-
3142
- #: options/tools-layouts/options-export.php:20
3143
- msgid "Download Options"
3144
- msgstr ""
3145
-
3146
- #: options/tools-layouts/options-export.php:28
3147
- msgid "Backup Options"
3148
- msgstr ""
3149
-
3150
- #: options/tools-layouts/options-import.php:9
3151
- msgid ""
3152
- "Here you can import and restore wpDiscuz options. You just need to choose "
3153
- "backup file and click import options."
3154
- msgstr ""
3155
-
3156
- #: options/tools-layouts/options-import.php:22
3157
- msgid "Import Options"
3158
- msgstr ""
3159
-
3160
- #: options/tools-layouts/subscriptions-import.php:11
3161
- msgid ""
3162
- "Using this tool you can import subscriptions from other plugins to wpDiscuz."
3163
- msgstr ""
3164
-
3165
- #: options/tools-layouts/subscriptions-import.php:19
3166
- msgid "Import subscriptions from Subscribe To Comments Reloaded"
3167
- msgstr ""
3168
-
3169
- #: options/tools-layouts/subscriptions-import.php:20
3170
- msgid "Import subscriptions from \"Subscribe To Comments Reloaded\" plugin"
3171
- msgstr ""
3172
-
3173
- #: options/tools-layouts/tools-other.php:16
3174
- msgid "Update vote data"
3175
- msgstr ""
3176
-
3177
- #: options/tools-layouts/tools-other.php:18
3178
- msgid ""
3179
- "We recommend use this tool to do one way hashing of commenter IP addresses "
3180
- "to 32 bit strings, so you'll keep less personal information of your "
3181
- "commenters. This tool only hashes voter IP addresses. You also can stop "
3182
- "saving of commenter IP addresses in comments database table using this "
3183
- "instruction "
3184
- msgstr ""
3185
-
3186
- #: options/tools-layouts/tools-other.php:26
3187
- msgid "Start Hashing"
3188
- msgstr ""
3189
-
3190
- #: options/tools-layouts/tools-other.php:27
3191
- msgid "Hash users IP addresses"
3192
- msgstr ""
3193
-
3194
- #: templates/comment/comment-form.php:61
3195
- msgid "Your comments have been deleted from database"
3196
- msgstr ""
3197
-
3198
- #: templates/comment/comment-form.php:72
3199
- msgid "You cancel all your subscriptions successfully"
3200
- msgstr ""
3201
-
3202
- #: templates/comment/comment-form.php:99
3203
- msgid "Unable to send an email"
3204
- msgstr ""
3205
-
3206
- #: templates/comment/comment-form.php:101
3207
- msgid "Subscription Fault"
3208
- msgstr ""
3209
-
3210
- #: utils/class.WpdiscuzHelper.php:216 utils/class.WpdiscuzHelper.php:219
3211
- msgid "Spoiler"
3212
- msgstr ""
3213
-
3214
- #: utils/class.WpdiscuzHelper.php:312
3215
- msgid "Sticky"
3216
- msgstr ""
3217
-
3218
- #: utils/class.WpdiscuzHelper.php:524
3219
- msgid "Before using wpDiscuz you should update your data"
3220
- msgstr ""
3221
-
3222
- #: utils/class.WpdiscuzHelper.php:525
3223
- msgid "Go to update data"
3224
- msgstr ""
3225
-
3226
- #: utils/deactivation-reason-modal.php:10
3227
- msgid "Plugin Usage Feedback"
3228
- msgstr ""
3229
-
3230
- #: utils/deactivation-reason-modal.php:13
3231
- msgid ""
3232
- "Please let us know why you are deactivating. Choosing one of the options "
3233
- "below you will help us make it better for you and for other users."
3234
- msgstr ""
3235
-
3236
- #: utils/deactivation-reason-modal.php:19
3237
- msgid "I'll reactivate it later"
3238
- msgstr ""
3239
-
3240
- #: utils/deactivation-reason-modal.php:23
3241
- msgid "The plugin is not working"
3242
- msgstr ""
3243
-
3244
- #: utils/deactivation-reason-modal.php:24
3245
- msgid "What kind of problems do you have?"
3246
- msgstr ""
3247
-
3248
- #: utils/deactivation-reason-modal.php:28
3249
- msgid "It's not what I was looking for"
3250
- msgstr ""
3251
-
3252
- #: utils/deactivation-reason-modal.php:32
3253
- msgid "I couldn't understand how to make it work"
3254
- msgstr ""
3255
-
3256
- #: utils/deactivation-reason-modal.php:33
3257
- #: utils/deactivation-reason-modal.php:38
3258
- msgid "What type of features you want to be in the plugin?"
3259
- msgstr ""
3260
-
3261
- #: utils/deactivation-reason-modal.php:37
3262
- msgid "The plugin is great, but I need specific features"
3263
- msgstr ""
3264
-
3265
- #: utils/deactivation-reason-modal.php:42
3266
- msgid "I didn't like plugin design"
3267
- msgstr ""
3268
-
3269
- #: utils/deactivation-reason-modal.php:43
3270
- msgid "What part of design you don't like or want to change?"
3271
- msgstr ""
3272
-
3273
- #: utils/deactivation-reason-modal.php:47
3274
- msgid "The plugin works very slow"
3275
- msgstr ""
3276
-
3277
- #: utils/deactivation-reason-modal.php:48
3278
- msgid ""
3279
- "Could you please describe which features of the plugin slows down your "
3280
- "website?"
3281
- msgstr ""
3282
-
3283
- #: utils/deactivation-reason-modal.php:52
3284
- msgid "I found a better plugin"
3285
- msgstr ""
3286
-
3287
- #: utils/deactivation-reason-modal.php:53
3288
- msgid "Please provide a plugin name or URL"
3289
- msgstr ""
3290
-
3291
- #: utils/deactivation-reason-modal.php:62
3292
- msgid "Dismiss and never show again"
3293
- msgstr ""
3294
-
3295
- #: utils/deactivation-reason-modal.php:63
3296
- msgid "Submit &amp; Deactivate"
3297
- msgstr ""
3298
-
3299
- #: utils/deactivation-reason-modal.php:66
3300
- msgid "Thank you for your feedback!"
3301
- msgstr ""
3302
-
3303
- #: utils/layouts/activity/item.php:28
3304
- msgid "Delete this comment"
3305
- msgstr ""
3306
-
3307
- #: utils/layouts/pagination.php:22
3308
- msgid "&laquo;"
3309
- msgstr ""
3310
-
3311
- #: utils/layouts/pagination.php:28
3312
- msgid "&lsaquo;"
3313
- msgstr ""
3314
-
3315
- #: utils/layouts/pagination.php:52
3316
- msgid "&raquo;"
3317
- msgstr ""
3318
-
3319
- #: utils/layouts/subscriptions/item.php:23
3320
- msgid "Cancel this subscription"
3321
- msgstr ""
3322
-
3323
- #. Plugin Name of the plugin/theme
3324
- msgid "wpDiscuz"
3325
- msgstr ""
3326
-
3327
- #. Plugin URI of the plugin/theme
3328
- msgid "http://wpdiscuz.com/"
3329
- msgstr ""
3330
-
3331
- #. Description of the plugin/theme
3332
- msgid ""
3333
- "Better comment system. Wordpress post comments and discussion plugin. Allows "
3334
- "your visitors discuss, vote for comments and share."
3335
- msgstr ""
3336
-
3337
- #. Author of the plugin/theme
3338
- msgid "gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
3339
- msgstr ""
3340
-
3341
- #. Author URI of the plugin/theme
3342
- msgid "https://gvectors.com/"
3343
- msgstr ""
1
+ #, fuzzy
2
+ msgid ""
3
+ msgstr ""
4
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
+ "Project-Id-Version: wpDiscuz\n"
6
+ "POT-Creation-Date: 2018-05-30 22:54+0400\n"
7
+ "PO-Revision-Date: 2018-05-30 22:54+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:258
24
+ msgid "Every 3 hours"
25
+ msgstr ""
26
+
27
+ #: class.WpdiscuzCore.php:262
28
+ msgid "Every 48 hours"
29
+ msgstr ""
30
+
31
+ #: class.WpdiscuzCore.php:375
32
+ msgid "We are sorry, but this comment cannot be posted. Please try later."
33
+ msgstr ""
34
+
35
+ #: class.WpdiscuzCore.php:443
36
+ msgid "This is closed comment thread"
37
+ msgstr ""
38
+
39
+ #: class.WpdiscuzCore.php:1096 class.WpdiscuzCore.php:1328
40
+ msgid "Settings"
41
+ msgstr ""
42
+
43
+ #: class.WpdiscuzCore.php:1098 class.WpdiscuzCore.php:1330
44
+ msgid "Phrases"
45
+ msgstr ""
46
+
47
+ #: class.WpdiscuzCore.php:1100
48
+ msgid "Tools"
49
+ msgstr ""
50
+
51
+ #: class.WpdiscuzCore.php:1101 options/html-options.php:22
52
+ #: options/html-options.php:64 options/options-layouts/settings-addons.php:14
53
+ msgid "Addons"
54
+ msgstr ""
55
+
56
+ #: class.WpdiscuzCore.php:1113
57
+ msgid "Do you really want to reset all options?"
58
+ msgstr ""
59
+
60
+ #: class.WpdiscuzCore.php:1114
61
+ msgid "Do you really want to remove voting data?"
62
+ msgstr ""
63
+
64
+ #: class.WpdiscuzCore.php:1115
65
+ msgid "Do you really want to reset phrases?"
66
+ msgstr ""
67
+
68
+ #: class.WpdiscuzCore.php:1116
69
+ msgid "Do you really want to delete gravatars cache?"
70
+ msgstr ""
71
+
72
+ #: class.WpdiscuzCore.php:1117
73
+ msgid "Do you really want to delete statistics cache?"
74
+ msgstr ""
75
+
76
+ #: class.WpdiscuzCore.php:1154
77
+ msgid "Please check one of reasons before sending feedback!"
78
+ msgstr ""
79
+
80
+ #: class.WpdiscuzCore.php:1155 utils/deactivation-reason-modal.php:58
81
+ msgid "Please provide more information"
82
+ msgstr ""
83
+
84
+ #: class.WpdiscuzCore.php:1402 options/phrases-layouts/phrases-comment.php:56
85
+ msgid "Admin"
86
+ msgstr ""
87
+
88
+ #: class.WpdiscuzCore.php:1404 class.WpdiscuzCore.php:1413
89
+ #: options/phrases-layouts/phrases-comment.php:58
90
+ msgid "Author"
91
+ msgstr ""
92
+
93
+ #: class.WpdiscuzCore.php:1408 options/phrases-layouts/phrases-comment.php:64
94
+ msgid "Member"
95
+ msgstr ""
96
+
97
+ #: class.WpdiscuzCore.php:1414 options/phrases-layouts/phrases-comment.php:62
98
+ msgid "Guest"
99
+ msgstr ""
100
+
101
+ #: forms/wpDiscuzForm.php:96
102
+ msgid "Invalid Data !!!"
103
+ msgstr ""
104
+
105
+ #: forms/wpDiscuzForm.php:104 forms/wpDiscuzForm.php:152
106
+ msgid "Forms"
107
+ msgstr ""
108
+
109
+ #: forms/wpDiscuzForm.php:105 options/html-phrases.php:22
110
+ msgid "Form"
111
+ msgstr ""
112
+
113
+ #: forms/wpDiscuzForm.php:106
114
+ msgid "Add New"
115
+ msgstr ""
116
+
117
+ #: forms/wpDiscuzForm.php:107
118
+ msgid "Add New Form"
119
+ msgstr ""
120
+
121
+ #: forms/wpDiscuzForm.php:108
122
+ msgid "Edit Form"
123
+ msgstr ""
124
+
125
+ #: forms/wpDiscuzForm.php:109
126
+ msgid "You did not create any forms yet"
127
+ msgstr ""
128
+
129
+ #: forms/wpDiscuzForm.php:110
130
+ msgid "Nothing found in Trash"
131
+ msgstr ""
132
+
133
+ #: forms/wpDiscuzForm.php:111
134
+ msgid "Search Forms"
135
+ msgstr ""
136
+
137
+ #: forms/wpDiscuzForm.php:166
138
+ msgid "Title"
139
+ msgstr ""
140
+
141
+ #: forms/wpDiscuzForm.php:167
142
+ msgid "Post Types"
143
+ msgstr ""
144
+
145
+ #: forms/wpDiscuzForm.php:168
146
+ msgid "Post IDs"
147
+ msgstr ""
148
+
149
+ #: forms/wpDiscuzForm.php:169 forms/wpdFormAttr/Form.php:621
150
+ msgid "Language"
151
+ msgstr ""
152
+
153
+ #: forms/wpDiscuzForm.php:170
154
+ msgid "Date"
155
+ msgstr ""
156
+
157
+ #: forms/wpDiscuzForm.php:215
158
+ msgid "Field Types"
159
+ msgstr ""
160
+
161
+ #: forms/wpDiscuzForm.php:216 forms/wpdFormAttr/Row.php:23
162
+ msgid "Two column"
163
+ msgstr ""
164
+
165
+ #: forms/wpDiscuzForm.php:217 forms/wpdFormAttr/Field/Field.php:66
166
+ #: forms/wpdFormAttr/Row.php:24
167
+ msgid "Delete"
168
+ msgstr ""
169
+
170
+ #: forms/wpDiscuzForm.php:218 forms/wpdFormAttr/Row.php:25
171
+ msgid "Move"
172
+ msgstr ""
173
+
174
+ #: forms/wpDiscuzForm.php:219 forms/wpdFormAttr/Row.php:69
175
+ msgid "Add Field"
176
+ msgstr ""
177
+
178
+ #: forms/wpDiscuzForm.php:220 forms/wpdFormAttr/Field/Field.php:63
179
+ #: options/class.WpdiscuzOptionsSerialized.php:779
180
+ #: options/phrases-layouts/phrases-comment.php:19
181
+ msgid "Edit"
182
+ msgstr ""
183
+
184
+ #: forms/wpDiscuzForm.php:221
185
+ msgid "You can not delete default field."
186
+ msgstr ""
187
+
188
+ #: forms/wpDiscuzForm.php:222
189
+ msgid "You really want to delete this item ?"
190
+ msgstr ""
191
+
192
+ #: forms/wpDiscuzForm.php:229
193
+ msgid "Permission Denied !!!"
194
+ msgstr ""
195
+
196
+ #: forms/wpDiscuzForm.php:254 forms/wpdFormAttr/Form.php:591
197
+ #: forms/wpdFormAttr/html/admin-form-fields-list.php:18
198
+ #: options/options-layouts/settings-customfields.php:7
199
+ msgid "Custom Fields"
200
+ msgstr ""
201
+
202
+ #: forms/wpDiscuzForm.php:302
203
+ msgid "Custom CSS"
204
+ msgstr ""
205
+
206
+ #: forms/wpDiscuzForm.php:358
207
+ msgid "Default Form"
208
+ msgstr ""
209
+
210
+ #: forms/wpDiscuzForm.php:391 forms/wpDiscuzForm.php:399
211
+ #: forms/wpdFormAttr/Form.php:677
212
+ msgid "Leave a Reply"
213
+ msgstr ""
214
+
215
+ #: forms/wpDiscuzForm.php:414 forms/wpdFormAttr/Field/AgreementCheckbox.php:12
216
+ #: forms/wpdFormAttr/Field/CheckboxField.php:12
217
+ #: forms/wpdFormAttr/Field/ColorField.php:12
218
+ #: forms/wpdFormAttr/Field/CookiesConsent.php:14
219
+ #: forms/wpdFormAttr/Field/DateField.php:12
220
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:27
221
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:19
222
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:18
223
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:65
224
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:18
225
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:18
226
+ #: forms/wpdFormAttr/Field/NumberField.php:12
227
+ #: forms/wpdFormAttr/Field/RadioField.php:12
228
+ #: forms/wpdFormAttr/Field/RatingField.php:12
229
+ #: forms/wpdFormAttr/Field/SelectField.php:12
230
+ #: forms/wpdFormAttr/Field/TextAreaField.php:13
231
+ #: forms/wpdFormAttr/Field/TextField.php:12
232
+ #: forms/wpdFormAttr/Field/UrlField.php:12 forms/wpdFormAttr/Form.php:789
233
+ msgid "Name"
234
+ msgstr ""
235
+
236
+ #: forms/wpDiscuzForm.php:416 forms/wpdFormAttr/Field/DefaultField/Email.php:65
237
+ #: forms/wpdFormAttr/Form.php:796
238
+ #: options/class.WpdiscuzOptionsSerialized.php:764 options/html-phrases.php:25
239
+ msgid "Email"
240
+ msgstr ""
241
+
242
+ #: forms/wpDiscuzForm.php:418
243
+ msgid "WebSite URL"
244
+ msgstr ""
245
+
246
+ #: forms/wpDiscuzForm.php:421
247
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:116
248
+ #: forms/wpdFormAttr/Form.php:819
249
+ msgid "Post Comment"
250
+ msgstr ""
251
+
252
+ #: forms/wpDiscuzForm.php:430
253
+ msgid "Clone Form"
254
+ msgstr ""
255
+
256
+ #: forms/wpDiscuzForm.php:442
257
+ msgid "Clone"
258
+ msgstr ""
259
+
260
+ #: forms/wpDiscuzForm.php:480
261
+ msgid ""
262
+ "Comment Form is not detected, please navigate to form manager page to create "
263
+ "it. "
264
+ msgstr ""
265
+
266
+ #: forms/wpDiscuzForm.php:481
267
+ msgid "Add Comment Form"
268
+ msgstr ""
269
+
270
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:16
271
+ #: forms/wpdFormAttr/Field/CheckboxField.php:17
272
+ #: forms/wpdFormAttr/Field/ColorField.php:17
273
+ #: forms/wpdFormAttr/Field/CookiesConsent.php:18
274
+ #: forms/wpdFormAttr/Field/DateField.php:17
275
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:32
276
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:24
277
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:23
278
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:23
279
+ #: forms/wpdFormAttr/Field/NumberField.php:17
280
+ #: forms/wpdFormAttr/Field/RadioField.php:17
281
+ #: forms/wpdFormAttr/Field/RatingField.php:16
282
+ #: forms/wpdFormAttr/Field/SelectField.php:17
283
+ #: forms/wpdFormAttr/Field/TextAreaField.php:18
284
+ #: forms/wpdFormAttr/Field/TextField.php:17
285
+ #: forms/wpdFormAttr/Field/UrlField.php:17
286
+ msgid "Description"
287
+ msgstr ""
288
+
289
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:18
290
+ #: forms/wpdFormAttr/Field/CheckboxField.php:19
291
+ #: forms/wpdFormAttr/Field/ColorField.php:19
292
+ #: forms/wpdFormAttr/Field/CookiesConsent.php:20
293
+ #: forms/wpdFormAttr/Field/DateField.php:19
294
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:34
295
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:26
296
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:25
297
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:25
298
+ #: forms/wpdFormAttr/Field/NumberField.php:19
299
+ #: forms/wpdFormAttr/Field/NumberField.php:24
300
+ #: forms/wpdFormAttr/Field/NumberField.php:29
301
+ #: forms/wpdFormAttr/Field/RadioField.php:19
302
+ #: forms/wpdFormAttr/Field/RatingField.php:18
303
+ #: forms/wpdFormAttr/Field/SelectField.php:19
304
+ #: forms/wpdFormAttr/Field/TextAreaField.php:20
305
+ #: forms/wpdFormAttr/Field/TextField.php:19
306
+ #: forms/wpdFormAttr/Field/UrlField.php:19
307
+ msgid ""
308
+ "Field specific short description or some rule related to inserted "
309
+ "information."
310
+ msgstr ""
311
+
312
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:21
313
+ #: forms/wpdFormAttr/Field/CookiesConsent.php:23
314
+ msgid "Checkbox Label"
315
+ msgstr ""
316
+
317
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:22
318
+ msgid ""
319
+ "You can use HTML tags to add links to website Terms and Privacy Policy "
320
+ "pages. For example: "
321
+ msgstr ""
322
+
323
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:28
324
+ #: forms/wpdFormAttr/Field/CheckboxField.php:33
325
+ #: forms/wpdFormAttr/Field/ColorField.php:29
326
+ #: forms/wpdFormAttr/Field/DateField.php:29
327
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:36
328
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:35
329
+ #: forms/wpdFormAttr/Field/NumberField.php:39
330
+ #: forms/wpdFormAttr/Field/RadioField.php:33
331
+ #: forms/wpdFormAttr/Field/RatingField.php:28
332
+ #: forms/wpdFormAttr/Field/SelectField.php:33
333
+ #: forms/wpdFormAttr/Field/TextAreaField.php:23
334
+ #: forms/wpdFormAttr/Field/TextField.php:29
335
+ #: forms/wpdFormAttr/Field/UrlField.php:29
336
+ msgid "Field is required"
337
+ msgstr ""
338
+
339
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:32
340
+ #: forms/wpdFormAttr/Field/CheckboxField.php:37
341
+ #: forms/wpdFormAttr/Field/ColorField.php:33
342
+ #: forms/wpdFormAttr/Field/DateField.php:33
343
+ #: forms/wpdFormAttr/Field/NumberField.php:43
344
+ #: forms/wpdFormAttr/Field/RadioField.php:37
345
+ #: forms/wpdFormAttr/Field/SelectField.php:37
346
+ #: forms/wpdFormAttr/Field/TextAreaField.php:27
347
+ #: forms/wpdFormAttr/Field/TextField.php:33
348
+ #: forms/wpdFormAttr/Field/UrlField.php:33
349
+ msgid "Display on reply form"
350
+ msgstr ""
351
+
352
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:36
353
+ msgid "Display for Guests"
354
+ msgstr ""
355
+
356
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:40
357
+ msgid "Display for Registered Users"
358
+ msgstr ""
359
+
360
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:44
361
+ msgid "Don't show again if the agreement is accepted once"
362
+ msgstr ""
363
+
364
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:101
365
+ #: forms/wpdFormAttr/Field/CheckboxField.php:153
366
+ #: forms/wpdFormAttr/Field/ColorField.php:115
367
+ #: forms/wpdFormAttr/Field/DateField.php:115
368
+ #: forms/wpdFormAttr/Field/NumberField.php:125
369
+ #: forms/wpdFormAttr/Field/RadioField.php:130
370
+ #: forms/wpdFormAttr/Field/RatingField.php:126
371
+ #: forms/wpdFormAttr/Field/SelectField.php:125
372
+ #: forms/wpdFormAttr/Field/TextAreaField.php:98
373
+ #: forms/wpdFormAttr/Field/TextField.php:109
374
+ #: forms/wpdFormAttr/Field/UrlField.php:110
375
+ msgid "field is required!"
376
+ msgstr ""
377
+
378
+ #: forms/wpdFormAttr/Field/CheckboxField.php:14
379
+ #: forms/wpdFormAttr/Field/ColorField.php:14
380
+ #: forms/wpdFormAttr/Field/DateField.php:14
381
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:29
382
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:21
383
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:20
384
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:20
385
+ #: forms/wpdFormAttr/Field/NumberField.php:14
386
+ #: forms/wpdFormAttr/Field/RadioField.php:14
387
+ #: forms/wpdFormAttr/Field/SelectField.php:14
388
+ #: forms/wpdFormAttr/Field/TextAreaField.php:15
389
+ #: forms/wpdFormAttr/Field/TextField.php:14
390
+ #: forms/wpdFormAttr/Field/UrlField.php:14
391
+ msgid "Also used for field placeholder"
392
+ msgstr ""
393
+
394
+ #: forms/wpdFormAttr/Field/CheckboxField.php:28
395
+ #: forms/wpdFormAttr/Field/RadioField.php:28
396
+ #: forms/wpdFormAttr/Field/SelectField.php:28
397
+ msgid "Values"
398
+ msgstr ""
399
+
400
+ #: forms/wpdFormAttr/Field/CheckboxField.php:30
401
+ msgid "Please insert one value per line"
402
+ msgstr ""
403
+
404
+ #: forms/wpdFormAttr/Field/CheckboxField.php:41
405
+ #: forms/wpdFormAttr/Field/ColorField.php:37
406
+ #: forms/wpdFormAttr/Field/DateField.php:37
407
+ #: forms/wpdFormAttr/Field/NumberField.php:47
408
+ #: forms/wpdFormAttr/Field/RadioField.php:41
409
+ #: forms/wpdFormAttr/Field/RatingField.php:32
410
+ #: forms/wpdFormAttr/Field/SelectField.php:41
411
+ #: forms/wpdFormAttr/Field/TextAreaField.php:31
412
+ #: forms/wpdFormAttr/Field/TextField.php:37
413
+ #: forms/wpdFormAttr/Field/UrlField.php:37
414
+ msgid "Display on comment"
415
+ msgstr ""
416
+
417
+ #: forms/wpdFormAttr/Field/CheckboxField.php:45
418
+ #: forms/wpdFormAttr/Field/ColorField.php:41
419
+ #: forms/wpdFormAttr/Field/DateField.php:41
420
+ #: forms/wpdFormAttr/Field/NumberField.php:51
421
+ #: forms/wpdFormAttr/Field/RadioField.php:45
422
+ #: forms/wpdFormAttr/Field/RatingField.php:36
423
+ #: forms/wpdFormAttr/Field/SelectField.php:45
424
+ #: forms/wpdFormAttr/Field/TextAreaField.php:35
425
+ #: forms/wpdFormAttr/Field/TextField.php:41
426
+ #: forms/wpdFormAttr/Field/UrlField.php:41
427
+ msgid "Advanced Options"
428
+ msgstr ""
429
+
430
+ #: forms/wpdFormAttr/Field/CheckboxField.php:48
431
+ #: forms/wpdFormAttr/Field/ColorField.php:44
432
+ #: forms/wpdFormAttr/Field/DateField.php:44
433
+ #: forms/wpdFormAttr/Field/NumberField.php:54
434
+ #: forms/wpdFormAttr/Field/RadioField.php:48
435
+ #: forms/wpdFormAttr/Field/RatingField.php:39
436
+ #: forms/wpdFormAttr/Field/SelectField.php:48
437
+ #: forms/wpdFormAttr/Field/TextAreaField.php:38
438
+ #: forms/wpdFormAttr/Field/TextField.php:44
439
+ #: forms/wpdFormAttr/Field/UrlField.php:44
440
+ msgid "Meta Key"
441
+ msgstr ""
442
+
443
+ #: forms/wpdFormAttr/Field/CheckboxField.php:52
444
+ #: forms/wpdFormAttr/Field/ColorField.php:48
445
+ #: forms/wpdFormAttr/Field/DateField.php:48
446
+ #: forms/wpdFormAttr/Field/NumberField.php:58
447
+ #: forms/wpdFormAttr/Field/RadioField.php:52
448
+ #: forms/wpdFormAttr/Field/RatingField.php:43
449
+ #: forms/wpdFormAttr/Field/SelectField.php:52
450
+ #: forms/wpdFormAttr/Field/TextAreaField.php:42
451
+ #: forms/wpdFormAttr/Field/TextField.php:48
452
+ #: forms/wpdFormAttr/Field/UrlField.php:48
453
+ msgid "Replace old meta key"
454
+ msgstr ""
455
+
456
+ #: forms/wpdFormAttr/Field/ColorField.php:23
457
+ #: forms/wpdFormAttr/Field/DateField.php:23
458
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:30
459
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:29
460
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:29
461
+ #: forms/wpdFormAttr/Field/NumberField.php:33
462
+ #: forms/wpdFormAttr/Field/RatingField.php:22
463
+ #: forms/wpdFormAttr/Field/TextField.php:23
464
+ #: forms/wpdFormAttr/Field/UrlField.php:23
465
+ msgid "Field icon"
466
+ msgstr ""
467
+
468
+ #: forms/wpdFormAttr/Field/ColorField.php:26
469
+ #: forms/wpdFormAttr/Field/DateField.php:26
470
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:33
471
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:32
472
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:32
473
+ #: forms/wpdFormAttr/Field/NumberField.php:36
474
+ #: forms/wpdFormAttr/Field/RatingField.php:25
475
+ #: forms/wpdFormAttr/Field/TextField.php:26
476
+ #: forms/wpdFormAttr/Field/UrlField.php:26
477
+ msgid "Font-awesome icon library."
478
+ msgstr ""
479
+
480
+ #: forms/wpdFormAttr/Field/CookiesConsent.php:92
481
+ msgid "Save my data for the next time I comment"
482
+ msgstr ""
483
+
484
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:37
485
+ msgid ""
486
+ "For an advanced antispam protection please check <a target=\"blank\" href="
487
+ "\"https://gvectors.com/product/wpdiscuz-recaptcha/\">wpDiscuz - Google "
488
+ "reCAPTCHA</a> addon."
489
+ msgstr ""
490
+
491
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:40
492
+ msgid "Show for guests"
493
+ msgstr ""
494
+
495
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:44
496
+ msgid "Show for logged in users"
497
+ msgstr ""
498
+
499
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:117
500
+ #: forms/wpdFormAttr/Form.php:812
501
+ msgid "Code"
502
+ msgstr ""
503
+
504
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:135
505
+ msgid "Cannot create image file"
506
+ msgstr ""
507
+
508
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:136
509
+ msgid "Permission denied for file creation"
510
+ msgstr ""
511
+
512
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:137
513
+ msgid "PHP GD2 library is disabled"
514
+ msgstr ""
515
+
516
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:138
517
+ msgid "PNG image creation disabled"
518
+ msgstr ""
519
+
520
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:145
521
+ msgid "Insert the CAPTCHA code"
522
+ msgstr ""
523
+
524
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:20
525
+ msgid "Button Text"
526
+ msgstr ""
527
+
528
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:77
529
+ msgid " - (on)"
530
+ msgstr ""
531
+
532
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:78
533
+ msgid " - (off)"
534
+ msgstr ""
535
+
536
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:35
537
+ msgid "Enable"
538
+ msgstr ""
539
+
540
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:84
541
+ #: forms/wpdFormAttr/Form.php:803
542
+ msgid "Website"
543
+ msgstr ""
544
+
545
+ #: forms/wpdFormAttr/Field/Field.php:54
546
+ msgid " (Submit Button)"
547
+ msgstr ""
548
+
549
+ #: forms/wpdFormAttr/Field/Field.php:56
550
+ msgid " (CAPTCHA)"
551
+ msgstr ""
552
+
553
+ #: forms/wpdFormAttr/Field/Field.php:89
554
+ msgid "Add To Form"
555
+ msgstr ""
556
+
557
+ #: forms/wpdFormAttr/Field/NumberField.php:22
558
+ msgid "Min Value"
559
+ msgstr ""
560
+
561
+ #: forms/wpdFormAttr/Field/NumberField.php:27
562
+ msgid "Max Value"
563
+ msgstr ""
564
+
565
+ #: forms/wpdFormAttr/Field/NumberField.php:129
566
+ msgid "value can not be less than"
567
+ msgstr ""
568
+
569
+ #: forms/wpdFormAttr/Field/NumberField.php:132
570
+ msgid "value can not be more than"
571
+ msgstr ""
572
+
573
+ #: forms/wpdFormAttr/Field/RadioField.php:30
574
+ #: forms/wpdFormAttr/Field/SelectField.php:30
575
+ msgid "New value new line"
576
+ msgstr ""
577
+
578
+ #: forms/wpdFormAttr/Form.php:630
579
+ msgid "Disable commenting for roles"
580
+ msgstr ""
581
+
582
+ #: forms/wpdFormAttr/Form.php:651
583
+ msgid "Allow guests to comment"
584
+ msgstr ""
585
+
586
+ #: forms/wpdFormAttr/Form.php:655 forms/wpdFormAttr/Form.php:666
587
+ msgid "Yes"
588
+ msgstr ""
589
+
590
+ #: forms/wpdFormAttr/Form.php:657 forms/wpdFormAttr/Form.php:668
591
+ msgid "No"
592
+ msgstr ""
593
+
594
+ #: forms/wpdFormAttr/Form.php:662
595
+ msgid "Enable subscription bar"
596
+ msgstr ""
597
+
598
+ #: forms/wpdFormAttr/Form.php:673
599
+ msgid "Comment form header text"
600
+ msgstr ""
601
+
602
+ #: forms/wpdFormAttr/Form.php:682
603
+ msgid "Display comment form for post types"
604
+ msgstr ""
605
+
606
+ #: forms/wpdFormAttr/Form.php:689
607
+ msgid ""
608
+ "The red marked post types are already attached to other comment form. If you "
609
+ "set this form too, the old forms will not be used for them."
610
+ msgstr ""
611
+
612
+ #: forms/wpdFormAttr/Form.php:711
613
+ msgid "Display comment form for post IDs"
614
+ msgstr ""
615
+
616
+ #: forms/wpdFormAttr/Form.php:712
617
+ msgid ""
618
+ "You can use this form for certain posts/pages specified by comma separated "
619
+ "IDs."
620
+ msgstr ""
621
+
622
+ #: forms/wpdFormAttr/Form.php:723
623
+ msgid "Comment Text Field"
624
+ msgstr ""
625
+
626
+ #: forms/wpdFormAttr/Form.php:738
627
+ msgid "ADD ROW"
628
+ msgstr ""
629
+
630
+ #: forms/wpdFormAttr/Form.php:770
631
+ msgid ""
632
+ "Only logged in customers who have purchased this product may leave a review."
633
+ msgstr ""
634
+
635
+ #: forms/wpdFormAttr/Login/SocialLogin.php:32
636
+ msgid "Authentication failed."
637
+ msgstr ""
638
+
639
+ #: forms/wpdFormAttr/Login/SocialLogin.php:83
640
+ msgid "Facebook access token or user ID invalid."
641
+ msgstr ""
642
+
643
+ #: forms/wpdFormAttr/Login/SocialLogin.php:87
644
+ msgid "Facebook App Secret is required."
645
+ msgstr ""
646
+
647
+ #: forms/wpdFormAttr/Login/SocialLogin.php:117
648
+ msgid "Google access token invalid."
649
+ msgstr ""
650
+
651
+ #: forms/wpdFormAttr/Login/SocialLogin.php:128
652
+ msgid "Google authentication failed."
653
+ msgstr ""
654
+
655
+ #: forms/wpdFormAttr/Login/SocialLogin.php:156
656
+ msgid "Twitter Consumer Key and Consumer Secret required."
657
+ msgstr ""
658
+
659
+ #: forms/wpdFormAttr/Login/SocialLogin.php:168
660
+ msgid "Twitter authentication failed (OAuth secret does not exist)."
661
+ msgstr ""
662
+
663
+ #: forms/wpdFormAttr/Login/SocialLogin.php:180
664
+ msgid "Twitter connection failed."
665
+ msgstr ""
666
+
667
+ #: forms/wpdFormAttr/Login/SocialLogin.php:190
668
+ msgid "VK Client ID and Client Secret required."
669
+ msgstr ""
670
+
671
+ #: forms/wpdFormAttr/Login/SocialLogin.php:218
672
+ msgid "VK authentication failed (OAuth <code>state</code> does not exist)."
673
+ msgstr ""
674
+
675
+ #: forms/wpdFormAttr/Login/SocialLogin.php:221
676
+ msgid "VK authentication failed (OAuth <code>code</code> does not exist)."
677
+ msgstr ""
678
+
679
+ #: forms/wpdFormAttr/Login/SocialLogin.php:239
680
+ msgid "VK authentication failed (<code>user_id</code> does not exist)."
681
+ msgstr ""
682
+
683
+ #: forms/wpdFormAttr/Login/SocialLogin.php:265
684
+ msgid "OK Application ID, Application Key and Application Secret required."
685
+ msgstr ""
686
+
687
+ #: forms/wpdFormAttr/Login/SocialLogin.php:290
688
+ msgid "OK authentication failed (OAuth <code>state</code> does not exist)."
689
+ msgstr ""
690
+
691
+ #: forms/wpdFormAttr/Login/SocialLogin.php:293
692
+ msgid "OK authentication failed (<code>code</code> does not exist)."
693
+ msgstr ""
694
+
695
+ #: forms/wpdFormAttr/Login/SocialLogin.php:312
696
+ msgid "OK authentication failed (<code>access_token</code> does not exist)."
697
+ msgstr ""
698
+
699
+ #: forms/wpdFormAttr/html/admin-form-fields-list.php:7
700
+ msgid "Comment Form Fields"
701
+ msgstr ""
702
+
703
+ #: options/addons/al/title.php:7 options/class.WpdiscuzOptions.php:393
704
+ msgid "Advanced Likers"
705
+ msgstr ""
706
+
707
+ #: options/addons/cai/title.php:7
708
+ msgid "Comment Author"
709
+ msgstr ""
710
+
711
+ #: options/addons/fem/title.php:7
712
+ msgid "Frontend Moderation"
713
+ msgstr ""
714
+
715
+ #: options/addons/more/title.php:6
716
+ msgid "More Addons..."
717
+ msgstr ""
718
+
719
+ #: options/addons/mu/title.php:7 options/class.WpdiscuzOptions.php:417
720
+ msgid "Media Uploader"
721
+ msgstr ""
722
+
723
+ #: options/addons/raf/title.php:7 options/class.WpdiscuzOptions.php:397
724
+ msgid "Report and Flagging"
725
+ msgstr ""
726
+
727
+ #: options/addons/ucm/title.php:7
728
+ msgid "Mentioning"
729
+ msgstr ""
730
+
731
+ #: options/class.WpdiscuzOptions.php:22 options/class.WpdiscuzOptions.php:135
732
+ #: options/class.WpdiscuzOptions.php:344
733
+ msgid "Hacker?"
734
+ msgstr ""
735
+
736
+ #: options/class.WpdiscuzOptions.php:126
737
+ msgid "Settings updated"
738
+ msgstr ""
739
+
740
+ #: options/class.WpdiscuzOptions.php:291
741
+ msgid "Phrases updated"
742
+ msgstr ""
743
+
744
+ #: options/class.WpdiscuzOptions.php:318
745
+ msgid "Options were backed up!"
746
+ msgstr ""
747
+
748
+ #: options/class.WpdiscuzOptions.php:320
749
+ msgid "Cannot back up the options!"
750
+ msgstr ""
751
+
752
+ #: options/class.WpdiscuzOptions.php:331
753
+ msgid "Options Imported Successfully!"
754
+ msgstr ""
755
+
756
+ #: options/class.WpdiscuzOptions.php:333
757
+ msgid "Error occured! File content is empty or data is not valid!"
758
+ msgstr ""
759
+
760
+ #: options/class.WpdiscuzOptions.php:336
761
+ msgid "Error occured! Can not get file content!"
762
+ msgstr ""
763
+
764
+ #: options/class.WpdiscuzOptions.php:339
765
+ msgid "Error occured! Please choose file!"
766
+ msgstr ""
767
+
768
+ #: options/class.WpdiscuzOptions.php:355
769
+ msgid ""
770
+ "Brings an ocean of emotions to your comments. It comes with an awesome smile "
771
+ "package."
772
+ msgstr ""
773
+
774
+ #: options/class.WpdiscuzOptions.php:356
775
+ msgid ""
776
+ "Extended information about comment author with Profile, Activity, Votes and "
777
+ "Subscriptions Tabs on pop-up window."
778
+ msgstr ""
779
+
780
+ #: options/class.WpdiscuzOptions.php:357
781
+ msgid ""
782
+ "Real-time online user checking, pop-up notification of new online users and "
783
+ "online/offline badges."
784
+ msgstr ""
785
+
786
+ #: options/class.WpdiscuzOptions.php:358
787
+ msgid ""
788
+ "Allows to create private comment threads. Rich management options in "
789
+ "dashboard by user roles."
790
+ msgstr ""
791
+
792
+ #: options/class.WpdiscuzOptions.php:359
793
+ msgid ""
794
+ "Total control over comment subscriptions. Full list, monitor, manage, "
795
+ "filter, unsubscribe, confirm..."
796
+ msgstr ""
797
+
798
+ #: options/class.WpdiscuzOptions.php:360
799
+ msgid ""
800
+ "A full-fledged tool-kit for advertising in comment section of your website. "
801
+ "Separate banner and ad managment."
802
+ msgstr ""
803
+
804
+ #: options/class.WpdiscuzOptions.php:361
805
+ msgid ""
806
+ "Allows to mention comments and users in comment text using #comment-id and "
807
+ "@username tags."
808
+ msgstr ""
809
+
810
+ #: options/class.WpdiscuzOptions.php:362
811
+ msgid ""
812
+ "See comment likers and voters of each comment. Adds user reputation and "
813
+ "badges based on received likes."
814
+ msgstr ""
815
+
816
+ #: options/class.WpdiscuzOptions.php:363
817
+ msgid ""
818
+ "Comment reporting tools. Auto-moderates comments based on number of flags "
819
+ "and dislikes."
820
+ msgstr ""
821
+
822
+ #: options/class.WpdiscuzOptions.php:364
823
+ msgid ""
824
+ "Adds a smart and intuitive AJAX \"Translate\" button with 60 language "
825
+ "options. Uses free translation API."
826
+ msgstr ""
827
+
828
+ #: options/class.WpdiscuzOptions.php:365
829
+ msgid ""
830
+ "AJAX powered front-end comment search. It starts searching while you type "
831
+ "search words. "
832
+ msgstr ""
833
+
834
+ #: options/class.WpdiscuzOptions.php:366
835
+ msgid ""
836
+ "Most voted comments, Active comment threads, Most commented posts, Active "
837
+ "comment authors"
838
+ msgstr ""
839
+
840
+ #: options/class.WpdiscuzOptions.php:367
841
+ msgid ""
842
+ "All in one powerful yet simple admin toolkit to moderate comments on front-"
843
+ "end."
844
+ msgstr ""
845
+
846
+ #: options/class.WpdiscuzOptions.php:368
847
+ msgid ""
848
+ "Extended comment attachment system. Allows to upload images, videos, audios "
849
+ "and other file types."
850
+ msgstr ""
851
+
852
+ #: options/class.WpdiscuzOptions.php:369
853
+ msgid ""
854
+ "Adds No CAPTCHA on all comment forms. Stops spam and bot comments with "
855
+ "Google reCAPTCHA"
856
+ msgstr ""
857
+
858
+ #: options/class.WpdiscuzOptions.php:370
859
+ msgid ""
860
+ "Integrates myCRED Badges and Ranks. Converts wpDiscuz comment votes/likes to "
861
+ "myCRED points. "
862
+ msgstr ""
863
+
864
+ #: options/class.WpdiscuzOptions.php:371
865
+ msgid ""
866
+ "Allows censoring comment words. Filters comments and replaces those phrases "
867
+ "with custom words."
868
+ msgstr ""
869
+
870
+ #: options/class.WpdiscuzOptions.php:377
871
+ msgid "Custom Comment Forms"
872
+ msgstr ""
873
+
874
+ #: options/class.WpdiscuzOptions.php:378
875
+ msgid ""
876
+ "You can create custom comment forms with wpDiscuz. wpDiscuz 4 comes with "
877
+ "custom comment forms and fields. You can create custom comment forms for "
878
+ "each post type, each form can beceated with different form fields, for "
879
+ "eaxample: text, dropdown, rating, checkboxes, etc..."
880
+ msgstr ""
881
+
882
+ #: options/class.WpdiscuzOptions.php:381
883
+ msgid "Emoticons"
884
+ msgstr ""
885
+
886
+ #: options/class.WpdiscuzOptions.php:382
887
+ msgid ""
888
+ "You can add more emotions to your comments using wpDiscuz Emoticons addon."
889
+ msgstr ""
890
+
891
+ #: options/class.WpdiscuzOptions.php:385
892
+ msgid "Ads Manager"
893
+ msgstr ""
894
+
895
+ #: options/class.WpdiscuzOptions.php:386
896
+ msgid ""
897
+ "Increase your income using ad banners. Comment area is the most active "
898
+ "sections for advertising. wpDiscuz Ads Manager addon is designed to help you "
899
+ "add banners and control ads in this section."
900
+ msgstr ""
901
+
902
+ #: options/class.WpdiscuzOptions.php:389
903
+ msgid "User and Comment Mentioning"
904
+ msgstr ""
905
+
906
+ #: options/class.WpdiscuzOptions.php:390
907
+ msgid ""
908
+ "Using wpDiscuz User &amp; Comment Mentioning addon you can allow commenters "
909
+ "mention comments and users in comment text using #comment-id and @username "
910
+ "tags."
911
+ msgstr ""
912
+
913
+ #: options/class.WpdiscuzOptions.php:394
914
+ msgid ""
915
+ "wpDiscuz Advanced Likers addon displays likers and voters of each comment. "
916
+ "Adds user reputation and badges based on received likes."
917
+ msgstr ""
918
+
919
+ #: options/class.WpdiscuzOptions.php:398
920
+ msgid ""
921
+ "Let your commenters help you to determine and remove spam comments. wpDiscuz "
922
+ "Report and Flagging addon comes with comment reporting tools. Automaticaly "
923
+ "auto-moderates comments based on number of flags and dislikes."
924
+ msgstr ""
925
+
926
+ #: options/class.WpdiscuzOptions.php:401
927
+ msgid "Comment Translate"
928
+ msgstr ""
929
+
930
+ #: options/class.WpdiscuzOptions.php:402
931
+ msgid ""
932
+ "In most cases the big part of your visitors are not a native speakers of "
933
+ "your language. Make your comments comprehensible for all visitors using "
934
+ "wpDiscuz Comment Translation addon. It adds smart and intuitive AJAX "
935
+ "\"Translate\" button with 60 language translation options. Uses free "
936
+ "translation API."
937
+ msgstr ""
938
+
939
+ #: options/class.WpdiscuzOptions.php:405
940
+ msgid "Comment Search"
941
+ msgstr ""
942
+
943
+ #: options/class.WpdiscuzOptions.php:406
944
+ msgid ""
945
+ "You can let website visitor search in comments. It's always more attractive "
946
+ "to find a comment about something that interest you. Using wpDiscuz Comment "
947
+ "Search addon you'll get a nice, AJAX powered front-end comment search form "
948
+ "above comment list."
949
+ msgstr ""
950
+
951
+ #: options/class.WpdiscuzOptions.php:409
952
+ msgid "wpDiscuz Widgets"
953
+ msgstr ""
954
+
955
+ #: options/class.WpdiscuzOptions.php:410
956
+ msgid ""
957
+ "More Comment Widgets! Most voted comments, Active comment threads, Most "
958
+ "commented posts, Active comment authors widgets are available in wpDiscuz "
959
+ "Widgets Addon"
960
+ msgstr ""
961
+
962
+ #: options/class.WpdiscuzOptions.php:413
963
+ msgid "Front-end Moderation"
964
+ msgstr ""
965
+
966
+ #: options/class.WpdiscuzOptions.php:414
967
+ msgid ""
968
+ "You can moderate comments on front-end using all in one powerful yet simple "
969
+ "wpDiscuz Frontend Moderation addon."
970
+ msgstr ""
971
+
972
+ #: options/class.WpdiscuzOptions.php:418
973
+ msgid ""
974
+ "You can let website visitors attach images and files to comments and embed "
975
+ "video/audio content using wpDiscuz Media Uploader addon."
976
+ msgstr ""
977
+
978
+ #: options/class.WpdiscuzOptions.php:421
979
+ msgid "Google ReCaptcha"
980
+ msgstr ""
981
+
982
+ #: options/class.WpdiscuzOptions.php:422
983
+ msgid ""
984
+ "Advanced spam protection with wpDiscuz Google reCAPTCHA addon. This addon "
985
+ "adds No-CAPTCHA reCAPTCHA on all comment forms. Stops spam and bot comments."
986
+ msgstr ""
987
+
988
+ #: options/class.WpdiscuzOptions.php:438
989
+ msgid "New Addons are available for wpDiscuz Comments Plugin"
990
+ msgstr ""
991
+
992
+ #: options/class.WpdiscuzOptions.php:445 options/class.WpdiscuzOptions.php:451
993
+ msgid "Go to wpDiscuz Addons subMenu"
994
+ msgstr ""
995
+
996
+ #: options/class.WpdiscuzOptions.php:483
997
+ msgid "Do you know?"
998
+ msgstr ""
999
+
1000
+ #: options/class.WpdiscuzOptions.php:496
1001
+ msgid "More info"
1002
+ msgstr ""
1003
+
1004
+ #: options/class.WpdiscuzOptionsSerialized.php:754
1005
+ msgid "Be the First to Comment!"
1006
+ msgstr ""
1007
+
1008
+ #: options/class.WpdiscuzOptionsSerialized.php:755
1009
+ msgid "Start the discussion"
1010
+ msgstr ""
1011
+
1012
+ #: options/class.WpdiscuzOptionsSerialized.php:756
1013
+ msgid "Join the discussion"
1014
+ msgstr ""
1015
+
1016
+ #: options/class.WpdiscuzOptionsSerialized.php:757
1017
+ #: options/phrases-layouts/phrases-form.php:19
1018
+ msgid "Comment threads"
1019
+ msgstr ""
1020
+
1021
+ #: options/class.WpdiscuzOptionsSerialized.php:758
1022
+ #: options/phrases-layouts/phrases-form.php:23
1023
+ msgid "Thread replies"
1024
+ msgstr ""
1025
+
1026
+ #: options/class.WpdiscuzOptionsSerialized.php:759
1027
+ #: options/phrases-layouts/phrases-form.php:27
1028
+ msgid "Followers"
1029
+ msgstr ""
1030
+
1031
+ #: options/class.WpdiscuzOptionsSerialized.php:760
1032
+ #: options/phrases-layouts/phrases-form.php:31
1033
+ msgid "Most reacted comment"
1034
+ msgstr ""
1035
+
1036
+ #: options/class.WpdiscuzOptionsSerialized.php:761
1037
+ #: options/phrases-layouts/phrases-form.php:35
1038
+ msgid "Hottest comment thread"
1039
+ msgstr ""
1040
+
1041
+ #: options/class.WpdiscuzOptionsSerialized.php:762
1042
+ #: options/phrases-layouts/phrases-form.php:39
1043
+ msgid "Comment authors"
1044
+ msgstr ""
1045
+
1046
+ #: options/class.WpdiscuzOptionsSerialized.php:763
1047
+ #: options/phrases-layouts/phrases-form.php:43
1048
+ msgid "Recent comment authors"
1049
+ msgstr ""
1050
+
1051
+ #: options/class.WpdiscuzOptionsSerialized.php:765
1052
+ #: options/phrases-layouts/phrases-form.php:51
1053
+ msgid "Subscribe"
1054
+ msgstr ""
1055
+
1056
+ #: options/class.WpdiscuzOptionsSerialized.php:766
1057
+ #: options/phrases-layouts/phrases-form.php:55
1058
+ msgid "Notify of"
1059
+ msgstr ""
1060
+
1061
+ #: options/class.WpdiscuzOptionsSerialized.php:767
1062
+ msgid "new follow-up comments"
1063
+ msgstr ""
1064
+
1065
+ #: options/class.WpdiscuzOptionsSerialized.php:768
1066
+ msgid "new replies to my comments"
1067
+ msgstr ""
1068
+
1069
+ #: options/class.WpdiscuzOptionsSerialized.php:769
1070
+ msgid "Notify of new replies to this comment - (on)"
1071
+ msgstr ""
1072
+
1073
+ #: options/class.WpdiscuzOptionsSerialized.php:770
1074
+ msgid "Notify of new replies to this comment - (off)"
1075
+ msgstr ""
1076
+
1077
+ #: options/class.WpdiscuzOptionsSerialized.php:771
1078
+ #: options/phrases-layouts/phrases-form.php:75
1079
+ msgid "Sort by"
1080
+ msgstr ""
1081
+
1082
+ #: options/class.WpdiscuzOptionsSerialized.php:772
1083
+ #: options/phrases-layouts/phrases-form.php:79
1084
+ msgid "newest"
1085
+ msgstr ""
1086
+
1087
+ #: options/class.WpdiscuzOptionsSerialized.php:773
1088
+ #: options/phrases-layouts/phrases-form.php:83
1089
+ msgid "oldest"
1090
+ msgstr ""
1091
+
1092
+ #: options/class.WpdiscuzOptionsSerialized.php:774
1093
+ #: options/phrases-layouts/phrases-form.php:87
1094
+ msgid "most voted"
1095
+ msgstr ""
1096
+
1097
+ #: options/class.WpdiscuzOptionsSerialized.php:775
1098
+ msgid "Load More Comments"
1099
+ msgstr ""
1100
+
1101
+ #: options/class.WpdiscuzOptionsSerialized.php:776
1102
+ #: options/phrases-layouts/phrases-general.php:19
1103
+ msgid "Load Rest of Comments"
1104
+ msgstr ""
1105
+
1106
+ #: options/class.WpdiscuzOptionsSerialized.php:777
1107
+ #: options/phrases-layouts/phrases-comment.php:11
1108
+ msgid "Reply"
1109
+ msgstr ""
1110
+
1111
+ #: options/class.WpdiscuzOptionsSerialized.php:778
1112
+ #: options/phrases-layouts/phrases-comment.php:15
1113
+ msgid "Share"
1114
+ msgstr ""
1115
+
1116
+ #: options/class.WpdiscuzOptionsSerialized.php:780
1117
+ #: options/phrases-layouts/phrases-comment.php:23
1118
+ msgid "Share On Facebook"
1119
+ msgstr ""
1120
+
1121
+ #: options/class.WpdiscuzOptionsSerialized.php:781
1122
+ #: options/phrases-layouts/phrases-comment.php:27
1123
+ msgid "Share On Twitter"
1124
+ msgstr ""
1125
+
1126
+ #: options/class.WpdiscuzOptionsSerialized.php:782
1127
+ #: options/phrases-layouts/phrases-comment.php:31
1128
+ msgid "Share On Google"
1129
+ msgstr ""
1130
+
1131
+ #: options/class.WpdiscuzOptionsSerialized.php:783
1132
+ #: options/phrases-layouts/phrases-comment.php:35
1133
+ msgid "Share On VKontakte"
1134
+ msgstr ""
1135
+
1136
+ #: options/class.WpdiscuzOptionsSerialized.php:784
1137
+ #: options/phrases-layouts/phrases-comment.php:39
1138
+ msgid "Share On Odnoklassniki"
1139
+ msgstr ""
1140
+
1141
+ #: options/class.WpdiscuzOptionsSerialized.php:785
1142
+ #: options/phrases-layouts/phrases-comment.php:43
1143
+ msgid "Hide Replies"
1144
+ msgstr ""
1145
+
1146
+ #: options/class.WpdiscuzOptionsSerialized.php:786
1147
+ #: options/phrases-layouts/phrases-comment.php:47
1148
+ msgid "View Replies"
1149
+ msgstr ""
1150
+
1151
+ #: options/class.WpdiscuzOptionsSerialized.php:787
1152
+ msgid "New Comment"
1153
+ msgstr ""
1154
+
1155
+ #: options/class.WpdiscuzOptionsSerialized.php:788
1156
+ #: options/class.WpdiscuzOptionsSerialized.php:790
1157
+ #: options/class.WpdiscuzOptionsSerialized.php:792
1158
+ #: options/class.WpdiscuzOptionsSerialized.php:796
1159
+ #: options/phrases-layouts/phrases-email.php:120
1160
+ msgid "Unsubscribe"
1161
+ msgstr ""
1162
+
1163
+ #: options/class.WpdiscuzOptionsSerialized.php:788
1164
+ msgid ""
1165
+ "Hi [SUBSCRIBER_NAME],<br/><br/>new comment on the discussion section you've "
1166
+ "been interested in<br/><br/><a href=\"[COMMENT_URL]\">[COMMENT_URL]</a><br/"
1167
+ "><br/>[COMMENT_CONTENT]<br/><br/><a href=\"[UNSUBSCRIBE_URL]\">"
1168
+ msgstr ""
1169
+
1170
+ #: options/class.WpdiscuzOptionsSerialized.php:789
1171
+ #: options/class.WpdiscuzOptionsSerialized.php:791
1172
+ msgid "New Reply"
1173
+ msgstr ""
1174
+
1175
+ #: options/class.WpdiscuzOptionsSerialized.php:790
1176
+ msgid ""
1177
+ "Hi [SUBSCRIBER_NAME],<br/><br/>new reply on the discussion section you've "
1178
+ "been interested in<br/><br/><a href=\"[COMMENT_URL]\">[COMMENT_URL]</a><br/"
1179
+ "><br/>[COMMENT_CONTENT]<br/><br/><a href=\"[UNSUBSCRIBE_URL]\">"
1180
+ msgstr ""
1181
+
1182
+ #: options/class.WpdiscuzOptionsSerialized.php:792
1183
+ msgid ""
1184
+ "Hi [COMMENT_AUTHOR],<br/><br/>new reply on the discussion section you've "
1185
+ "been interested in<br/><br/><a href=\"[COMMENT_URL]\">[COMMENT_URL]</a><br/"
1186
+ "><br/>[COMMENT_CONTENT]<br/><br/><a href=\"[UNSUBSCRIBE_URL]\">"
1187
+ msgstr ""
1188
+
1189
+ #: options/class.WpdiscuzOptionsSerialized.php:793
1190
+ msgid "You're subscribed for new replies on this comment"
1191
+ msgstr ""
1192
+
1193
+ #: options/class.WpdiscuzOptionsSerialized.php:794
1194
+ msgid "You're subscribed for new replies on all your comments"
1195
+ msgstr ""
1196
+
1197
+ #: options/class.WpdiscuzOptionsSerialized.php:795
1198
+ msgid "You're subscribed for new follow-up comments on this post"
1199
+ msgstr ""
1200
+
1201
+ #: options/class.WpdiscuzOptionsSerialized.php:797
1202
+ msgid "Cancel subscription"
1203
+ msgstr ""
1204
+
1205
+ #: options/class.WpdiscuzOptionsSerialized.php:798
1206
+ #: options/phrases-layouts/phrases-notification.php:19
1207
+ msgid "You've successfully unsubscribed."
1208
+ msgstr ""
1209
+
1210
+ #: options/class.WpdiscuzOptionsSerialized.php:799
1211
+ #: options/phrases-layouts/phrases-notification.php:15
1212
+ msgid "You've successfully subscribed."
1213
+ msgstr ""
1214
+
1215
+ #: options/class.WpdiscuzOptionsSerialized.php:800
1216
+ #: options/phrases-layouts/phrases-email.php:128
1217
+ msgid "Confirm your subscription"
1218
+ msgstr ""
1219
+
1220
+ #: options/class.WpdiscuzOptionsSerialized.php:801
1221
+ #: options/phrases-layouts/phrases-email.php:132
1222
+ msgid "You've successfully confirmed your subscription."
1223
+ msgstr ""
1224
+
1225
+ #: options/class.WpdiscuzOptionsSerialized.php:802
1226
+ msgid "Subscription Confirmation"
1227
+ msgstr ""
1228
+
1229
+ #: options/class.WpdiscuzOptionsSerialized.php:803
1230
+ msgid "Confirm Your Subscrption"
1231
+ msgstr ""
1232
+
1233
+ #: options/class.WpdiscuzOptionsSerialized.php:803
1234
+ msgid "Cancel Subscription"
1235
+ msgstr ""
1236
+
1237
+ #: options/class.WpdiscuzOptionsSerialized.php:803
1238
+ msgid ""
1239
+ "Hi, <br/> You just subscribed for new comments on our website. This means "
1240
+ "you will receive an email when new comments are posted according to "
1241
+ "subscription option you've chosen. <br/> To activate, click confirm below. "
1242
+ "If you believe this is an error, ignore this message and we'll never bother "
1243
+ "you again. <br/><br/><a href=\"[POST_URL]\">[POST_TITLE]</a><br/><br/><a "
1244
+ "href=\"[CONFIRM_URL]\">"
1245
+ msgstr ""
1246
+
1247
+ #: options/class.WpdiscuzOptionsSerialized.php:804
1248
+ msgid "please fill out this field to comment"
1249
+ msgstr ""
1250
+
1251
+ #: options/class.WpdiscuzOptionsSerialized.php:805
1252
+ msgid "email address is invalid"
1253
+ msgstr ""
1254
+
1255
+ #: options/class.WpdiscuzOptionsSerialized.php:806
1256
+ msgid "url is invalid"
1257
+ msgstr ""
1258
+
1259
+ #: options/class.WpdiscuzOptionsSerialized.php:807
1260
+ msgid "year"
1261
+ msgstr ""
1262
+
1263
+ #: options/class.WpdiscuzOptionsSerialized.php:808
1264
+ msgid "years"
1265
+ msgstr ""
1266
+
1267
+ #: options/class.WpdiscuzOptionsSerialized.php:809
1268
+ msgid "month"
1269
+ msgstr ""
1270
+
1271
+ #: options/class.WpdiscuzOptionsSerialized.php:810
1272
+ msgid "months"
1273
+ msgstr ""
1274
+
1275
+ #: options/class.WpdiscuzOptionsSerialized.php:811
1276
+ msgid "day"
1277
+ msgstr ""
1278
+
1279
+ #: options/class.WpdiscuzOptionsSerialized.php:812
1280
+ msgid "days"
1281
+ msgstr ""
1282
+
1283
+ #: options/class.WpdiscuzOptionsSerialized.php:813
1284
+ msgid "hour"
1285
+ msgstr ""
1286
+
1287
+ #: options/class.WpdiscuzOptionsSerialized.php:814
1288
+ msgid "hours"
1289
+ msgstr ""
1290
+
1291
+ #: options/class.WpdiscuzOptionsSerialized.php:815
1292
+ msgid "minute"
1293
+ msgstr ""
1294
+
1295
+ #: options/class.WpdiscuzOptionsSerialized.php:816
1296
+ msgid "minutes"
1297
+ msgstr ""
1298
+
1299
+ #: options/class.WpdiscuzOptionsSerialized.php:817
1300
+ msgid "second"
1301
+ msgstr ""
1302
+
1303
+ #: options/class.WpdiscuzOptionsSerialized.php:818
1304
+ msgid "seconds"
1305
+ msgstr ""
1306
+
1307
+ #: options/class.WpdiscuzOptionsSerialized.php:819
1308
+ msgid "right now"
1309
+ msgstr ""
1310
+
1311
+ #: options/class.WpdiscuzOptionsSerialized.php:820
1312
+ msgid "ago"
1313
+ msgstr ""
1314
+
1315
+ #: options/class.WpdiscuzOptionsSerialized.php:821
1316
+ #: options/phrases-layouts/phrases-notification.php:38
1317
+ msgid "You must be"
1318
+ msgstr ""
1319
+
1320
+ #: options/class.WpdiscuzOptionsSerialized.php:822
1321
+ msgid "You are logged in as"
1322
+ msgstr ""
1323
+
1324
+ #: options/class.WpdiscuzOptionsSerialized.php:823
1325
+ #: options/phrases-layouts/phrases-notification.php:29
1326
+ msgid "Login"
1327
+ msgstr ""
1328
+
1329
+ #: options/class.WpdiscuzOptionsSerialized.php:824
1330
+ #: options/phrases-layouts/phrases-notification.php:33
1331
+ #, php-format
1332
+ msgid "Please %s to comment"
1333
+ msgstr ""
1334
+
1335
+ #: options/class.WpdiscuzOptionsSerialized.php:825
1336
+ #: options/phrases-layouts/phrases-notification.php:54
1337
+ msgid "Log out"
1338
+ msgstr ""
1339
+
1340
+ #: options/class.WpdiscuzOptionsSerialized.php:826
1341
+ msgid "logged in"
1342
+ msgstr ""
1343
+
1344
+ #: options/class.WpdiscuzOptionsSerialized.php:827
1345
+ msgid "to post a comment."
1346
+ msgstr ""
1347
+
1348
+ #: options/class.WpdiscuzOptionsSerialized.php:828
1349
+ #: options/phrases-layouts/phrases-comment.php:75
1350
+ msgid "Vote Up"
1351
+ msgstr ""
1352
+
1353
+ #: options/class.WpdiscuzOptionsSerialized.php:829
1354
+ #: options/phrases-layouts/phrases-comment.php:79
1355
+ msgid "Vote Down"
1356
+ msgstr ""
1357
+
1358
+ #: options/class.WpdiscuzOptionsSerialized.php:830
1359
+ #: options/phrases-layouts/phrases-notification.php:58
1360
+ msgid "Vote Counted"
1361
+ msgstr ""
1362
+
1363
+ #: options/class.WpdiscuzOptionsSerialized.php:831
1364
+ msgid "You've already voted for this comment"
1365
+ msgstr ""
1366
+
1367
+ #: options/class.WpdiscuzOptionsSerialized.php:832
1368
+ #: options/phrases-layouts/phrases-error.php:27
1369
+ msgid "Voting Error"
1370
+ msgstr ""
1371
+
1372
+ #: options/class.WpdiscuzOptionsSerialized.php:833
1373
+ msgid "You Must Be Logged In To Vote"
1374
+ msgstr ""
1375
+
1376
+ #: options/class.WpdiscuzOptionsSerialized.php:834
1377
+ msgid "You cannot vote for your comment"
1378
+ msgstr ""
1379
+
1380
+ #: options/class.WpdiscuzOptionsSerialized.php:835
1381
+ msgid "You are not allowed to vote for this comment"
1382
+ msgstr ""
1383
+
1384
+ #: options/class.WpdiscuzOptionsSerialized.php:836
1385
+ #: options/phrases-layouts/phrases-error.php:39
1386
+ msgid "Invalid Captcha Code"
1387
+ msgstr ""
1388
+
1389
+ #: options/class.WpdiscuzOptionsSerialized.php:837
1390
+ #: options/phrases-layouts/phrases-error.php:43
1391
+ msgid "Some of field value is invalid"
1392
+ msgstr ""
1393
+
1394
+ #: options/class.WpdiscuzOptionsSerialized.php:838
1395
+ msgid "new comment"
1396
+ msgstr ""
1397
+
1398
+ #: options/class.WpdiscuzOptionsSerialized.php:839
1399
+ msgid "new comments"
1400
+ msgstr ""
1401
+
1402
+ #: options/class.WpdiscuzOptionsSerialized.php:840
1403
+ msgid "Comment awaiting moderation"
1404
+ msgstr ""
1405
+
1406
+ #: options/class.WpdiscuzOptionsSerialized.php:841
1407
+ msgid "new reply on your comment"
1408
+ msgstr ""
1409
+
1410
+ #: options/class.WpdiscuzOptionsSerialized.php:842
1411
+ msgid "new replies on your comments"
1412
+ msgstr ""
1413
+
1414
+ #: options/class.WpdiscuzOptionsSerialized.php:843
1415
+ msgid "Sorry, the comment was not updated"
1416
+ msgstr ""
1417
+
1418
+ #: options/class.WpdiscuzOptionsSerialized.php:844
1419
+ msgid "Sorry, this comment no longer possible to edit"
1420
+ msgstr ""
1421
+
1422
+ #: options/class.WpdiscuzOptionsSerialized.php:845
1423
+ msgid "You've not made any changes"
1424
+ msgstr ""
1425
+
1426
+ #: options/class.WpdiscuzOptionsSerialized.php:846
1427
+ msgid "Save"
1428
+ msgstr ""
1429
+
1430
+ #: options/class.WpdiscuzOptionsSerialized.php:847
1431
+ msgid "Cancel"
1432
+ msgstr ""
1433
+
1434
+ #: options/class.WpdiscuzOptionsSerialized.php:848
1435
+ msgid "Input is too short"
1436
+ msgstr ""
1437
+
1438
+ #: options/class.WpdiscuzOptionsSerialized.php:849
1439
+ msgid "Input is too long"
1440
+ msgstr ""
1441
+
1442
+ #: options/class.WpdiscuzOptionsSerialized.php:850
1443
+ msgid "Read more &raquo;"
1444
+ msgstr ""
1445
+
1446
+ #: options/class.WpdiscuzOptionsSerialized.php:851
1447
+ msgid "Anonymous"
1448
+ msgstr ""
1449
+
1450
+ #: options/class.WpdiscuzOptionsSerialized.php:852
1451
+ #: options/phrases-layouts/phrases-error.php:67
1452
+ msgid "Please fill out required fields"
1453
+ msgstr ""
1454
+
1455
+ #: options/class.WpdiscuzOptionsSerialized.php:853
1456
+ #: options/phrases-layouts/phrases-social-login.php:11
1457
+ msgid "Connect with"
1458
+ msgstr ""
1459
+
1460
+ #: options/class.WpdiscuzOptionsSerialized.php:854
1461
+ #: options/phrases-layouts/phrases-notification.php:11
1462
+ msgid "You're subscribed to"
1463
+ msgstr ""
1464
+
1465
+ #: options/class.WpdiscuzOptionsSerialized.php:855
1466
+ msgid "Participate in this discussion via email"
1467
+ msgstr ""
1468
+
1469
+ #: options/class.WpdiscuzOptionsSerialized.php:856
1470
+ #: utils/layouts/pagination.php:46
1471
+ msgid "&rsaquo;"
1472
+ msgstr ""
1473
+
1474
+ #: options/class.WpdiscuzOptionsSerialized.php:857
1475
+ msgid "Your comment is approved!"
1476
+ msgstr ""
1477
+
1478
+ #: options/class.WpdiscuzOptionsSerialized.php:858
1479
+ msgid ""
1480
+ "Hi [COMMENT_AUTHOR],<br/><br/>your comment was approved.<br/><br/><a href="
1481
+ "\"[COMMENT_URL]\">[COMMENT_URL]</a><br/><br/>[COMMENT_CONTENT]"
1482
+ msgstr ""
1483
+
1484
+ #: options/class.WpdiscuzOptionsSerialized.php:859
1485
+ msgid "Comments are closed."
1486
+ msgstr ""
1487
+
1488
+ #: options/class.WpdiscuzOptionsSerialized.php:860
1489
+ #: options/phrases-layouts/phrases-comment.php:99
1490
+ msgid "Stick this comment - (on)"
1491
+ msgstr ""
1492
+
1493
+ #: options/class.WpdiscuzOptionsSerialized.php:861
1494
+ #: options/phrases-layouts/phrases-comment.php:103
1495
+ msgid "Stick this comment - (off)"
1496
+ msgstr ""
1497
+
1498
+ #: options/class.WpdiscuzOptionsSerialized.php:862
1499
+ #: options/phrases-layouts/phrases-comment.php:107
1500
+ msgid "Stick"
1501
+ msgstr ""
1502
+
1503
+ #: options/class.WpdiscuzOptionsSerialized.php:863
1504
+ #: options/phrases-layouts/phrases-comment.php:111
1505
+ msgid "Unstick"
1506
+ msgstr ""
1507
+
1508
+ #: options/class.WpdiscuzOptionsSerialized.php:864
1509
+ msgid "Sticky comment thread"
1510
+ msgstr ""
1511
+
1512
+ #: options/class.WpdiscuzOptionsSerialized.php:865
1513
+ #: options/phrases-layouts/phrases-comment.php:119
1514
+ msgid "Close this comment - (on)"
1515
+ msgstr ""
1516
+
1517
+ #: options/class.WpdiscuzOptionsSerialized.php:866
1518
+ #: options/phrases-layouts/phrases-comment.php:123
1519
+ msgid "Close this comment - (off)"
1520
+ msgstr ""
1521
+
1522
+ #: options/class.WpdiscuzOptionsSerialized.php:867
1523
+ #: options/phrases-layouts/phrases-comment.php:127
1524
+ msgid "Close"
1525
+ msgstr ""
1526
+
1527
+ #: options/class.WpdiscuzOptionsSerialized.php:868
1528
+ #: options/phrases-layouts/phrases-comment.php:131
1529
+ msgid "Open"
1530
+ msgstr ""
1531
+
1532
+ #: options/class.WpdiscuzOptionsSerialized.php:869
1533
+ msgid "Closed comment thread"
1534
+ msgstr ""
1535
+
1536
+ #: options/class.WpdiscuzOptionsSerialized.php:870
1537
+ msgid "I allow to create an account"
1538
+ msgstr ""
1539
+
1540
+ #: options/class.WpdiscuzOptionsSerialized.php:871
1541
+ msgid ""
1542
+ "When you login first time using a Social Login button, we collect your "
1543
+ "account public profile information shared by Social Login provider, based on "
1544
+ "your privacy settings. We also get your email address to automatically "
1545
+ "create an account for you in our website. Once your account is created, "
1546
+ "you'll be logged-in to this account."
1547
+ msgstr ""
1548
+
1549
+ #: options/class.WpdiscuzOptionsSerialized.php:872
1550
+ msgid "This comment form is under antispam protection"
1551
+ msgstr ""
1552
+
1553
+ #: options/class.WpdiscuzOptionsSerialized.php:873
1554
+ #: options/phrases-layouts/phrases-social-login.php:23
1555
+ msgid "Disagree"
1556
+ msgstr ""
1557
+
1558
+ #: options/class.WpdiscuzOptionsSerialized.php:874
1559
+ #: options/phrases-layouts/phrases-social-login.php:27
1560
+ msgid "Agree"
1561
+ msgstr ""
1562
+
1563
+ #: options/class.WpdiscuzOptionsSerialized.php:875
1564
+ #: options/phrases-layouts/phrases-user-settings.php:11
1565
+ msgid "My content and settings"
1566
+ msgstr ""
1567
+
1568
+ #: options/class.WpdiscuzOptionsSerialized.php:876
1569
+ #: options/phrases-layouts/phrases-user-settings.php:15
1570
+ msgid "Activity"
1571
+ msgstr ""
1572
+
1573
+ #: options/class.WpdiscuzOptionsSerialized.php:877
1574
+ #: options/phrases-layouts/phrases-user-settings.php:19
1575
+ msgid "Subscriptions"
1576
+ msgstr ""
1577
+
1578
+ #: options/class.WpdiscuzOptionsSerialized.php:878
1579
+ #: options/phrases-layouts/phrases-user-settings.php:23
1580
+ msgid "In response to:"
1581
+ msgstr ""
1582
+
1583
+ #: options/class.WpdiscuzOptionsSerialized.php:879
1584
+ #: options/class.WpdiscuzOptionsSerialized.php:885
1585
+ #: options/phrases-layouts/phrases-user-settings.php:27
1586
+ #: options/phrases-layouts/phrases-user-settings.php:51
1587
+ msgid "Bulk management via email"
1588
+ msgstr ""
1589
+
1590
+ #: options/class.WpdiscuzOptionsSerialized.php:880
1591
+ msgid ""
1592
+ "Click the button above to get an email with bulk delete and unsubscribe "
1593
+ "links."
1594
+ msgstr ""
1595
+
1596
+ #: options/class.WpdiscuzOptionsSerialized.php:881
1597
+ #: options/phrases-layouts/phrases-user-settings.php:35
1598
+ msgid "No data found!"
1599
+ msgstr ""
1600
+
1601
+ #: options/class.WpdiscuzOptionsSerialized.php:882
1602
+ #: options/class.WpdiscuzOptionsSerialized.php:886
1603
+ #: options/phrases-layouts/phrases-user-settings.php:39
1604
+ #: options/phrases-layouts/phrases-user-settings.php:55
1605
+ msgid "Delete all my comments"
1606
+ msgstr ""
1607
+
1608
+ #: options/class.WpdiscuzOptionsSerialized.php:883
1609
+ #: options/phrases-layouts/phrases-user-settings.php:43
1610
+ msgid "Cancel all comment subscriptions"
1611
+ msgstr ""
1612
+
1613
+ #: options/class.WpdiscuzOptionsSerialized.php:884
1614
+ #: options/phrases-layouts/phrases-user-settings.php:47
1615
+ msgid "Clear cookies with my personal data"
1616
+ msgstr ""
1617
+
1618
+ #: options/class.WpdiscuzOptionsSerialized.php:887
1619
+ msgid ""
1620
+ "Please use this link to delete all your comments. Please note, that this "
1621
+ "action cannot be undone."
1622
+ msgstr ""
1623
+
1624
+ #: options/class.WpdiscuzOptionsSerialized.php:888
1625
+ #: options/phrases-layouts/phrases-user-settings.php:63
1626
+ msgid "Delete all my subscriptions"
1627
+ msgstr ""
1628
+
1629
+ #: options/class.WpdiscuzOptionsSerialized.php:889
1630
+ msgid ""
1631
+ "Please use this link to cancel all subscriptions for new comments. Please "
1632
+ "note, that this action cannot be undone."
1633
+ msgstr ""
1634
+
1635
+ #: options/class.WpdiscuzOptionsSerialized.php:890
1636
+ #: options/phrases-layouts/phrases-user-settings.php:71
1637
+ msgid "subscribed to this comment"
1638
+ msgstr ""
1639
+
1640
+ #: options/class.WpdiscuzOptionsSerialized.php:891
1641
+ #: options/phrases-layouts/phrases-user-settings.php:75
1642
+ msgid "subscribed to my comments"
1643
+ msgstr ""
1644
+
1645
+ #: options/class.WpdiscuzOptionsSerialized.php:892
1646
+ #: options/phrases-layouts/phrases-user-settings.php:79
1647
+ msgid "subscribed to all follow-up comments of this post"
1648
+ msgstr ""
1649
+
1650
+ #: options/class.WpdiscuzOptionsSerialized.php:893
1651
+ #: options/phrases-layouts/phrases-user-settings.php:83
1652
+ msgid "Please check your email."
1653
+ msgstr ""
1654
+
1655
+ #: options/class.WpdiscuzOptionsSerialized.php:894
1656
+ #: options/phrases-layouts/phrases-user-settings.php:87
1657
+ msgid "Error : Can't send email."
1658
+ msgstr ""
1659
+
1660
+ #: options/class.WpdiscuzOptionsSerialized.php:895
1661
+ #: options/phrases-layouts/phrases-user-settings.php:91
1662
+ msgid "Are you sure you want to delete this comment?"
1663
+ msgstr ""
1664
+
1665
+ #: options/class.WpdiscuzOptionsSerialized.php:896
1666
+ #: options/phrases-layouts/phrases-user-settings.php:95
1667
+ msgid "Are you sure you want to cancel this subscription?"
1668
+ msgstr ""
1669
+
1670
+ #: options/html-addons.php:11
1671
+ msgid "wpDiscuz Addons"
1672
+ msgstr ""
1673
+
1674
+ #: options/html-addons.php:19
1675
+ msgid "wpDiscuz Add-ons"
1676
+ msgstr ""
1677
+
1678
+ #: options/html-addons.php:20
1679
+ msgid "Addons Support Forum"
1680
+ msgstr ""
1681
+
1682
+ #: options/html-addons.php:25
1683
+ msgid ""
1684
+ "All wpDiscuz addons are being developed by wpDiscuz developers at gVectors "
1685
+ "Team, those are very solid premium level extensions and come with premium "
1686
+ "support.\n"
1687
+ " These addons help us to keep top level "
1688
+ "development of the free wpDiscuz plugin. All essential and even dozens of "
1689
+ "extra-cool features are already available for free in core wpDiscuz. \n"
1690
+ " There will never be any limits, any pro and paid "
1691
+ "versions for wpDiscuz. We have another dozens of awesome features in our to-"
1692
+ "do list which will also be added for free in future releases. \n"
1693
+ " So the free wpDiscuz development always stays on "
1694
+ "the first priority and wpDiscuz is being extended with new free functions "
1695
+ "and features even faster than before."
1696
+ msgstr ""
1697
+
1698
+ #: options/html-addons.php:31
1699
+ msgid " Thank you!<br/> Sincerely yours,<br/> gVectors Team&nbsp;"
1700
+ msgstr ""
1701
+
1702
+ #: options/html-addons.php:53
1703
+ msgid "Installed"
1704
+ msgstr ""
1705
+
1706
+ #: options/html-addons.php:57
1707
+ msgid "Version"
1708
+ msgstr ""
1709
+
1710
+ #: options/html-addons.php:58
1711
+ msgid "at least"
1712
+ msgstr ""
1713
+
1714
+ #: options/html-addons.php:60
1715
+ msgid "Live Preview | Buy"
1716
+ msgstr ""
1717
+
1718
+ #: options/html-addons.php:66
1719
+ msgid "More information about"
1720
+ msgstr ""
1721
+
1722
+ #: options/html-options.php:10
1723
+ msgid "wpDiscuz General Settings"
1724
+ msgstr ""
1725
+
1726
+ #: options/html-options.php:19
1727
+ msgid "Need More Features?"
1728
+ msgstr ""
1729
+
1730
+ #: options/html-options.php:20
1731
+ msgid "Documentation"
1732
+ msgstr ""
1733
+
1734
+ #: options/html-options.php:21
1735
+ msgid "Support"
1736
+ msgstr ""
1737
+
1738
+ #: options/html-options.php:54 options/html-phrases.php:21
1739
+ msgid "General"
1740
+ msgstr ""
1741
+
1742
+ #: options/html-options.php:55
1743
+ msgid "Comment Form"
1744
+ msgstr ""
1745
+
1746
+ #: options/html-options.php:56
1747
+ msgid "Comment List"
1748
+ msgstr ""
1749
+
1750
+ #: options/html-options.php:57
1751
+ #: options/options-layouts/settings-live-update.php:7
1752
+ msgid "Live Update"
1753
+ msgstr ""
1754
+
1755
+ #: options/html-options.php:59
1756
+ msgid "Subscription"
1757
+ msgstr ""
1758
+
1759
+ #: options/html-options.php:59
1760
+ msgid "and Postmatic"
1761
+ msgstr ""
1762
+
1763
+ #: options/html-options.php:60
1764
+ msgid "Styling"
1765
+ msgstr ""
1766
+
1767
+ #: options/html-options.php:61
1768
+ msgid "Cache"
1769
+ msgstr ""
1770
+
1771
+ #: options/html-options.php:62 options/options-layouts/settings-social.php:7
1772
+ msgid "Social Login &amp; Share"
1773
+ msgstr ""
1774
+
1775
+ #: options/html-options.php:63
1776
+ #: options/options-layouts/settings-integrations.php:7
1777
+ msgid "Integrations"
1778
+ msgstr ""
1779
+
1780
+ #: options/html-options.php:154
1781
+ msgid "Reset Options"
1782
+ msgstr ""
1783
+
1784
+ #: options/html-options.php:156
1785
+ msgid "Remove vote data"
1786
+ msgstr ""
1787
+
1788
+ #: options/html-options.php:157 options/html-phrases.php:80
1789
+ msgid "Save Changes"
1790
+ msgstr ""
1791
+
1792
+ #: options/html-phrases.php:10
1793
+ msgid "wpDiscuz Front-end Phrases"
1794
+ msgstr ""
1795
+
1796
+ #: options/html-phrases.php:23
1797
+ msgid "Comment"
1798
+ msgstr ""
1799
+
1800
+ #: options/html-phrases.php:24
1801
+ msgid "Date/Time"
1802
+ msgstr ""
1803
+
1804
+ #: options/html-phrases.php:26
1805
+ msgid "Notification"
1806
+ msgstr ""
1807
+
1808
+ #: options/html-phrases.php:27
1809
+ #: options/phrases-layouts/phrases-social-login.php:7
1810
+ msgid "Social Login"
1811
+ msgstr ""
1812
+
1813
+ #: options/html-phrases.php:28
1814
+ msgid "User Settings"
1815
+ msgstr ""
1816
+
1817
+ #: options/html-phrases.php:29
1818
+ msgid "Errors"
1819
+ msgstr ""
1820
+
1821
+ #: options/html-phrases.php:79
1822
+ msgid "Reset Phrases"
1823
+ msgstr ""
1824
+
1825
+ #: options/html-tools.php:10
1826
+ msgid "wpDiscuz Tools"
1827
+ msgstr ""
1828
+
1829
+ #: options/html-tools.php:15 options/tools-layouts/options-export.php:7
1830
+ msgid "Export options"
1831
+ msgstr ""
1832
+
1833
+ #: options/html-tools.php:16 options/tools-layouts/options-import.php:7
1834
+ msgid "Import options"
1835
+ msgstr ""
1836
+
1837
+ #: options/html-tools.php:17 options/tools-layouts/subscriptions-import.php:9
1838
+ msgid "Import subscriptions"
1839
+ msgstr ""
1840
+
1841
+ #: options/html-tools.php:18 utils/deactivation-reason-modal.php:57
1842
+ msgid "Other"
1843
+ msgstr ""
1844
+
1845
+ #: options/options-layouts/settings-addons.php:20
1846
+ msgid ""
1847
+ "Here you can find wpDiscuz Addons' setting options in vertical subTabs with "
1848
+ "according addon titles. All wpDiscuz addons are listed on wpDiscuz"
1849
+ msgstr ""
1850
+
1851
+ #: options/options-layouts/settings-addons.php:20
1852
+ msgid "Addons subMenu"
1853
+ msgstr ""
1854
+
1855
+ #: options/options-layouts/settings-addons.php:20
1856
+ msgid ""
1857
+ "We'll add new free and paid addons with almost every wpDiscuz release. There "
1858
+ "will be dozens of very useful addons in near future. Currently wpDiscuz "
1859
+ "consists of about 70 free features/addons like \"Live Update\", \"First "
1860
+ "comment redirection\", \"Comment sorting\", \"Simple CAPTCHA\", \"AJAX "
1861
+ "Pagination\", \"Lazy Load\", \"Comment Likes\", \"Comment Share\" and dozens "
1862
+ "of other addons and there will be more. All new and free addons will be "
1863
+ "built-in with wpDiscuz plugin and all paid addons will be listed separately "
1864
+ "on"
1865
+ msgstr ""
1866
+
1867
+ #: options/options-layouts/settings-cache.php:10
1868
+ msgid "Gravatar Cache"
1869
+ msgstr ""
1870
+
1871
+ #: options/options-layouts/settings-cache.php:15
1872
+ msgid "Enable Grvatar caching"
1873
+ msgstr ""
1874
+
1875
+ #: options/options-layouts/settings-cache.php:17
1876
+ msgid ""
1877
+ "It seems on of important functions (\"file_get_contents\", "
1878
+ "\"file_put_contents\") of php is not exists.<br/> Please enable these "
1879
+ "functions in your server settings to use gravatar caching feature."
1880
+ msgstr ""
1881
+
1882
+ #: options/options-layouts/settings-cache.php:26
1883
+ msgid "Caching method"
1884
+ msgstr ""
1885
+
1886
+ #: options/options-layouts/settings-cache.php:29
1887
+ msgid "Runtime"
1888
+ msgstr ""
1889
+
1890
+ #: options/options-layouts/settings-cache.php:30
1891
+ msgid "Cron job"
1892
+ msgstr ""
1893
+
1894
+ #: options/options-layouts/settings-cache.php:35
1895
+ msgid "Cache avatars for \"X\" days"
1896
+ msgstr ""
1897
+
1898
+ #: options/options-layouts/settings-cache.php:42
1899
+ #: options/options-layouts/settings-cache.php:45
1900
+ msgid "Purge expired caches"
1901
+ msgstr ""
1902
+
1903
+ #: options/options-layouts/settings-cache.php:49
1904
+ #: options/options-layouts/settings-cache.php:52
1905
+ msgid "Purge all caches"
1906
+ msgstr ""
1907
+
1908
+ #: options/options-layouts/settings-cache.php:56
1909
+ msgid "Statistics Cache"
1910
+ msgstr ""
1911
+
1912
+ #: options/options-layouts/settings-cache.php:60
1913
+ #: options/options-layouts/settings-cache.php:63
1914
+ msgid "Purge statistics caches"
1915
+ msgstr ""
1916
+
1917
+ #: options/options-layouts/settings-customfields.php:12
1918
+ msgid "Google Map API Key"
1919
+ msgstr ""
1920
+
1921
+ #: options/options-layouts/settings-form.php:7
1922
+ msgid "Comment Form Settings"
1923
+ msgstr ""
1924
+
1925
+ #: options/options-layouts/settings-form.php:12
1926
+ msgid "Hide Header Text"
1927
+ msgstr ""
1928
+
1929
+ #: options/options-layouts/settings-form.php:13
1930
+ msgid ""
1931
+ "This option hides \"Leave Reply\" header text on top of comment form. You "
1932
+ "can madify this text in Comments > Forms admin page."
1933
+ msgstr ""
1934
+
1935
+ #: options/options-layouts/settings-form.php:22
1936
+ msgid "Show logged-in user name and logout link on top of main form"
1937
+ msgstr ""
1938
+
1939
+ #: options/options-layouts/settings-form.php:31
1940
+ msgid "Comment Form components"
1941
+ msgstr ""
1942
+
1943
+ #: options/options-layouts/settings-form.php:32
1944
+ msgid ""
1945
+ "These components can be found on the main comment form. The \"My Content and "
1946
+ "Settings\" button is located on the top left side, under the \"Leave Reply\" "
1947
+ "header text. The \"Discussion Statistic\" and \"Recent Comment Authors\" "
1948
+ "sections are located under the main comment form fields ont the left and "
1949
+ "right sides accordingly."
1950
+ msgstr ""
1951
+
1952
+ #: options/options-layouts/settings-form.php:42
1953
+ msgid "Hide \"Please login to comment\" text"
1954
+ msgstr ""
1955
+
1956
+ #: options/options-layouts/settings-form.php:49
1957
+ msgid "Hide \"My Content and Settings\" button"
1958
+ msgstr ""
1959
+
1960
+ #: options/options-layouts/settings-form.php:56
1961
+ msgid "Hide \"Discussion Statistic\" section"
1962
+ msgstr ""
1963
+
1964
+ #: options/options-layouts/settings-form.php:63
1965
+ msgid "Hide \"Recent Comment Authors\" section"
1966
+ msgstr ""
1967
+
1968
+ #: options/options-layouts/settings-form.php:71
1969
+ msgid "Keep guest commenter credentials in browser cookies for x days"
1970
+ msgstr ""
1971
+
1972
+ #: options/options-layouts/settings-form.php:73
1973
+ msgid ""
1974
+ "wpDiscuz uses WordPress function to keep guest Name, Email and Website "
1975
+ "information in cookies to fill according fields of comment form on next "
1976
+ "commenting time."
1977
+ msgstr ""
1978
+
1979
+ #: options/options-layouts/settings-form.php:74
1980
+ msgid "Set this option value -1 to make it unlimited."
1981
+ msgstr ""
1982
+
1983
+ #: options/options-layouts/settings-form.php:75
1984
+ msgid "Set this option value 0 to clear those data when user closes browser."
1985
+ msgstr ""
1986
+
1987
+ #: options/options-layouts/settings-form.php:82
1988
+ msgid "Comment author name length (for guests only)"
1989
+ msgstr ""
1990
+
1991
+ #: options/options-layouts/settings-form.php:86
1992
+ #: options/options-layouts/settings-form.php:100
1993
+ msgid "Min"
1994
+ msgstr ""
1995
+
1996
+ #: options/options-layouts/settings-form.php:89
1997
+ #: options/options-layouts/settings-form.php:103
1998
+ msgid "Max"
1999
+ msgstr ""
2000
+
2001
+ #: options/options-layouts/settings-form.php:95
2002
+ msgid "Comment text length"
2003
+ msgstr ""
2004
+
2005
+ #: options/options-layouts/settings-form.php:96
2006
+ msgid ""
2007
+ "Allows to set minimum and maximum number of chars can be inserted in comment "
2008
+ "textarea. Leave the max value empty to remove the limit."
2009
+ msgstr ""
2010
+
2011
+ #: options/options-layouts/settings-form.php:109
2012
+ msgid "Captcha generation type"
2013
+ msgstr ""
2014
+
2015
+ #: options/options-layouts/settings-form.php:114
2016
+ msgid "File system"
2017
+ msgstr ""
2018
+
2019
+ #: options/options-layouts/settings-form.php:115
2020
+ msgid "WP Session"
2021
+ msgstr ""
2022
+
2023
+ #: options/options-layouts/settings-form.php:122
2024
+ msgid "Invisible Spam Protection"
2025
+ msgstr ""
2026
+
2027
+ #: options/options-layouts/settings-form.php:124
2028
+ msgid ""
2029
+ "You should purge caches after each key generation otherwise the plugin may "
2030
+ "work not correctly"
2031
+ msgstr ""
2032
+
2033
+ #: options/options-layouts/settings-form.php:127
2034
+ msgid "Leave the field empty if you don't want to use this feature"
2035
+ msgstr ""
2036
+
2037
+ #: options/options-layouts/settings-form.php:132
2038
+ msgid "Generate"
2039
+ msgstr ""
2040
+
2041
+ #: options/options-layouts/settings-form.php:137
2042
+ msgid "Display note about Invisible Spam Protection"
2043
+ msgstr ""
2044
+
2045
+ #: options/options-layouts/settings-form.php:138
2046
+ msgid ""
2047
+ "wpDiscuz has built-in invisible antispam protection based on server side and "
2048
+ "front-end unique key comparation. By default wpDiscuz display a small note "
2049
+ "in simple CAPTCHA area, saying the comment form is under antispam "
2050
+ "protection. The note text can be managed in Comments > Phrases > Form tab."
2051
+ msgstr ""
2052
+
2053
+ #: options/options-layouts/settings-form.php:147
2054
+ msgid "Enable Quicktags"
2055
+ msgstr ""
2056
+
2057
+ #: options/options-layouts/settings-form.php:148
2058
+ msgid ""
2059
+ "Quicktag is a on-click button that inserts HTML in to comment textarea. For "
2060
+ "example the \"b\" Quicktag will insert the HTML bold tags < b > < /b >."
2061
+ msgstr ""
2062
+
2063
+ #: options/options-layouts/settings-form.php:157
2064
+ msgid "Enable automatic image URL to image HTML conversion"
2065
+ msgstr ""
2066
+
2067
+ #: options/options-layouts/settings-form.php:166
2068
+ msgid "Allow comment editing for"
2069
+ msgstr ""
2070
+
2071
+ #: options/options-layouts/settings-form.php:171
2072
+ msgid "Do not allow"
2073
+ msgstr ""
2074
+
2075
+ #: options/options-layouts/settings-form.php:172
2076
+ #: options/options-layouts/settings-form.php:173
2077
+ #: options/options-layouts/settings-live-update.php:53
2078
+ #: options/options-layouts/settings-live-update.php:54
2079
+ #: options/options-layouts/settings-live-update.php:55
2080
+ msgid "Minutes"
2081
+ msgstr ""
2082
+
2083
+ #: options/options-layouts/settings-form.php:174
2084
+ #: options/phrases-layouts/phrases-datetime.php:35
2085
+ msgid "Hour"
2086
+ msgstr ""
2087
+
2088
+ #: options/options-layouts/settings-form.php:175
2089
+ #: options/options-layouts/settings-form.php:176
2090
+ msgid "Hours"
2091
+ msgstr ""
2092
+
2093
+ #: options/options-layouts/settings-form.php:177
2094
+ msgid "Unlimit"
2095
+ msgstr ""
2096
+
2097
+ #: options/options-layouts/settings-general.php:7
2098
+ msgid "General Settings"
2099
+ msgstr ""
2100
+
2101
+ #: options/options-layouts/settings-general.php:11
2102
+ msgid "Enable wpdiscuz on home page"
2103
+ msgstr ""
2104
+
2105
+ #: options/options-layouts/settings-general.php:16
2106
+ msgid "Use guest email to detect registered account"
2107
+ msgstr ""
2108
+
2109
+ #: options/options-layouts/settings-general.php:18
2110
+ msgid ""
2111
+ "Sometimes registered users comment as guest using the same email address. "
2112
+ "wpDiscuz can detect the account role using guest email and display commenter "
2113
+ "label correctly."
2114
+ msgstr ""
2115
+
2116
+ #: options/options-layouts/settings-general.php:25
2117
+ msgid "Secure comment content in HTTPS protocol."
2118
+ msgstr ""
2119
+
2120
+ #: options/options-layouts/settings-general.php:27
2121
+ msgid ""
2122
+ "This option detects images and other contents with non-https source URLs and "
2123
+ "fix according to your selected logic."
2124
+ msgstr ""
2125
+
2126
+ #: options/options-layouts/settings-general.php:35
2127
+ msgid "Replace non-https content to simple link URLs"
2128
+ msgstr ""
2129
+
2130
+ #: options/options-layouts/settings-general.php:39
2131
+ msgid ""
2132
+ "Just replace http protocols to https (https may not be supported by content "
2133
+ "provider)"
2134
+ msgstr ""
2135
+
2136
+ #: options/options-layouts/settings-general.php:43
2137
+ msgid "Ignore non-https content"
2138
+ msgstr ""
2139
+
2140
+ #: options/options-layouts/settings-general.php:51
2141
+ msgid "Redirect first commenter to"
2142
+ msgstr ""
2143
+
2144
+ #: options/options-layouts/settings-general.php:58
2145
+ msgid "Do not redirect"
2146
+ msgstr ""
2147
+
2148
+ #: options/options-layouts/settings-general.php:66
2149
+ msgid "Use WordPress Date/Time format"
2150
+ msgstr ""
2151
+
2152
+ #: options/options-layouts/settings-general.php:67
2153
+ msgid ""
2154
+ "wpDiscuz shows Human Readable date format. If you check this option it'll "
2155
+ "show the date/time format set in WordPress General Settings."
2156
+ msgstr ""
2157
+
2158
+ #: options/options-layouts/settings-general.php:73
2159
+ msgid "Current Wordpress date/time format"
2160
+ msgstr ""
2161
+
2162
+ #: options/options-layouts/settings-general.php:79
2163
+ msgid "Use Plugin .PO/.MO files"
2164
+ msgstr ""
2165
+
2166
+ #: options/options-layouts/settings-general.php:80
2167
+ msgid ""
2168
+ "wpDiscuz phrase system allows you to translate all front-end phrases. "
2169
+ "However if you have a multi-language website it'll not allow you to add more "
2170
+ "than one language translation. The only way to get it is the plugin "
2171
+ "translation files (.PO / .MO). If wpDiscuz has the languages you need you "
2172
+ "should check this option to disable phrase system and it'll automatically "
2173
+ "translate all phrases based on language files according to current language."
2174
+ msgstr ""
2175
+
2176
+ #: options/options-layouts/settings-general.php:87
2177
+ msgid ""
2178
+ "Help wpDiscuz to grow allowing people to recognize which comment plugin you "
2179
+ "use"
2180
+ msgstr ""
2181
+
2182
+ #: options/options-layouts/settings-general.php:89
2183
+ msgid ""
2184
+ "Please check this option on to help wpDiscuz get more popularity as your "
2185
+ "thank to the hard work we do for you totally free. This option adds a very "
2186
+ "small (16x16px) icon under the comment section which will allow your site "
2187
+ "visitors recognize the name of comment solution you use."
2188
+ msgstr ""
2189
+
2190
+ #: options/options-layouts/settings-general.php:94
2191
+ msgid "Thank you!"
2192
+ msgstr ""
2193
+
2194
+ #: options/options-layouts/settings-integrations.php:14
2195
+ msgid "BuddyPress"
2196
+ msgstr ""
2197
+
2198
+ #: options/options-layouts/settings-integrations.php:15
2199
+ msgid "Users Ultra"
2200
+ msgstr ""
2201
+
2202
+ #: options/options-layouts/settings-integrations.php:16
2203
+ msgid "User Pro"
2204
+ msgstr ""
2205
+
2206
+ #: options/options-layouts/settings-integrations.php:17
2207
+ msgid "Ultimate Member"
2208
+ msgstr ""
2209
+
2210
+ #: options/options-layouts/settings-integrations.php:18
2211
+ msgid "MyCred"
2212
+ msgstr ""
2213
+
2214
+ #: options/options-layouts/settings-integrations.php:23
2215
+ #: options/options-layouts/settings-integrations.php:41
2216
+ #: options/options-layouts/settings-integrations.php:59
2217
+ #: options/options-layouts/settings-integrations.php:90
2218
+ #: options/options-layouts/settings-integrations.php:124
2219
+ msgid "Please add the code below in current active theme's functions.php file"
2220
+ msgstr ""
2221
+
2222
+ #: options/options-layouts/settings-integrations.php:24
2223
+ msgid ""
2224
+ "This code will integrate BuddyPress profile URL with wpDiscuz. BuddyPress "
2225
+ "Display Names and Avatars will be integrated automatically."
2226
+ msgstr ""
2227
+
2228
+ #: options/options-layouts/settings-integrations.php:42
2229
+ msgid ""
2230
+ "This code will integrate Users Ultra profile URL with wpDiscuz. Users Ultra "
2231
+ "Display Names and Avatars will be integrated automatically."
2232
+ msgstr ""
2233
+
2234
+ #: options/options-layouts/settings-integrations.php:60
2235
+ msgid ""
2236
+ "This code will integrate User Pro profile URL with wpDiscuz. User Pro "
2237
+ "Display Names and Avatars will be integrated automatically."
2238
+ msgstr ""
2239
+
2240
+ #: options/options-layouts/settings-integrations.php:91
2241
+ msgid ""
2242
+ "This code consists of two parts, which will integrate Ultimate Member "
2243
+ "profile Display Name and Profile URL with wpDiscuz. UM Avatars will be "
2244
+ "integrated automatically."
2245
+ msgstr ""
2246
+
2247
+ #: options/options-layouts/settings-integrations.php:125
2248
+ msgid ""
2249
+ "This code will integrate MyCred User Ranks and Badges under comment author "
2250
+ "avatar."
2251
+ msgstr ""
2252
+
2253
+ #: options/options-layouts/settings-list.php:7
2254
+ msgid "Comment List Settings"
2255
+ msgstr ""
2256
+
2257
+ #: options/options-layouts/settings-list.php:12
2258
+ msgid "Display only parent comments and <u>view replies &or;</u> button"
2259
+ msgstr ""
2260
+
2261
+ #: options/options-layouts/settings-list.php:14
2262
+ msgid ""
2263
+ "If this option is enabled only parent comment will be displayed. This "
2264
+ "increases page load speed and keeps pages light. If visitor wants to read "
2265
+ "replies he/she just need to click on [view replies (12)] button located on "
2266
+ "all parent comments which have replies."
2267
+ msgstr ""
2268
+
2269
+ #: options/options-layouts/settings-list.php:24
2270
+ msgid "Show sorting buttons"
2271
+ msgstr ""
2272
+
2273
+ #: options/options-layouts/settings-list.php:25
2274
+ msgid ""
2275
+ "This option enables comment sorting buttons (newest | oldest | most voted). "
2276
+ "Sorting buttons are not available for the default comments pagination type "
2277
+ "[1][2][3]... It's only active for [Load more] and other AYAX pagination "
2278
+ "types."
2279
+ msgstr ""
2280
+
2281
+ #: options/options-layouts/settings-list.php:34
2282
+ msgid "Set comments ordering to \"Most voted\" by default "
2283
+ msgstr ""
2284
+
2285
+ #: options/options-layouts/settings-list.php:43
2286
+ msgid "Reverse child comments order"
2287
+ msgstr ""
2288
+
2289
+ #: options/options-layouts/settings-list.php:52
2290
+ msgid "Comments loading/pagination type"
2291
+ msgstr ""
2292
+
2293
+ #: options/options-layouts/settings-list.php:54
2294
+ msgid ""
2295
+ "You can manage the number of comments for [Load more] option in Settings > "
2296
+ "Discussion page, using \"Break comments into pages with [X] top level "
2297
+ "comments per page\" option. To show the default Wordpress comment pagination "
2298
+ "you should enable the checkbox on bigining of the same option."
2299
+ msgstr ""
2300
+
2301
+ #: options/options-layouts/settings-list.php:60
2302
+ #: options/options-layouts/settings-list.php:62
2303
+ msgid "[Load more] Button"
2304
+ msgstr ""
2305
+
2306
+ #: options/options-layouts/settings-list.php:64
2307
+ #: options/options-layouts/settings-list.php:66
2308
+ msgid "[Load rest of all comments] Button"
2309
+ msgstr ""
2310
+
2311
+ #: options/options-layouts/settings-list.php:68
2312
+ #: options/options-layouts/settings-list.php:70
2313
+ msgid "Load all comments"
2314
+ msgstr ""
2315
+
2316
+ #: options/options-layouts/settings-list.php:72
2317
+ #: options/options-layouts/settings-list.php:74
2318
+ msgid "Lazy load comments on scrolling"
2319
+ msgstr ""
2320
+
2321
+ #: options/options-layouts/settings-list.php:81
2322
+ msgid ""
2323
+ "The number of words before breaking comment text and showing \"Read more\" "
2324
+ "link"
2325
+ msgstr ""
2326
+
2327
+ #: options/options-layouts/settings-list.php:83
2328
+ msgid "Set this option value 0, to turn off comment text breaking function."
2329
+ msgstr ""
2330
+
2331
+ #: options/options-layouts/settings-list.php:90
2332
+ msgid "Comment components"
2333
+ msgstr ""
2334
+
2335
+ #: options/options-layouts/settings-list.php:95
2336
+ msgid "Hide comment link"
2337
+ msgstr ""
2338
+
2339
+ #: options/options-layouts/settings-list.php:98
2340
+ msgid "Hide comment date"
2341
+ msgstr ""
2342
+
2343
+ #: options/options-layouts/settings-list.php:101
2344
+ msgid "Hide Commenter Labels"
2345
+ msgstr ""
2346
+
2347
+ #: options/options-layouts/settings-list.php:109
2348
+ msgid "Hide Voting buttons"
2349
+ msgstr ""
2350
+
2351
+ #: options/options-layouts/settings-list.php:117
2352
+ msgid "Comment voting buttons icon"
2353
+ msgstr ""
2354
+
2355
+ #: options/options-layouts/settings-list.php:135
2356
+ msgid "Comment voting statistic mode"
2357
+ msgstr ""
2358
+
2359
+ #: options/options-layouts/settings-list.php:139
2360
+ msgid "total count"
2361
+ msgstr ""
2362
+
2363
+ #: options/options-layouts/settings-list.php:140
2364
+ msgid "separate count"
2365
+ msgstr ""
2366
+
2367
+ #: options/options-layouts/settings-list.php:146
2368
+ msgid "Allow guests to vote on comments"
2369
+ msgstr ""
2370
+
2371
+ #: options/options-layouts/settings-list.php:155
2372
+ msgid "Display Ratings"
2373
+ msgstr ""
2374
+
2375
+ #: options/options-layouts/settings-list.php:160
2376
+ msgid "Before Content"
2377
+ msgstr ""
2378
+
2379
+ #: options/options-layouts/settings-list.php:162
2380
+ msgid "After Content"
2381
+ msgstr ""
2382
+
2383
+ #: options/options-layouts/settings-list.php:163
2384
+ msgid "Display ratings on none singular pages"
2385
+ msgstr ""
2386
+
2387
+ #: options/options-layouts/settings-list.php:169
2388
+ msgid "Disable Profiles URL"
2389
+ msgstr ""
2390
+
2391
+ #: options/options-layouts/settings-live-update.php:12
2392
+ msgid "Live update options"
2393
+ msgstr ""
2394
+
2395
+ #: options/options-layouts/settings-live-update.php:13
2396
+ msgid ""
2397
+ "wpDiscuz live update is very light and doesn't overload your server. However "
2398
+ "we recommend to monitor your server resources if you're on a Shared hosting "
2399
+ "plan. There are some very weak hosting plans which may not be able to "
2400
+ "perform very frequently live update requests. If you found some issue you "
2401
+ "can set the option below 30 seconds or more."
2402
+ msgstr ""
2403
+
2404
+ #: options/options-layouts/settings-live-update.php:18
2405
+ msgid "Never update"
2406
+ msgstr ""
2407
+
2408
+ #: options/options-layouts/settings-live-update.php:20
2409
+ msgid "Turn off \"Live Update\" function"
2410
+ msgstr ""
2411
+
2412
+ #: options/options-layouts/settings-live-update.php:22
2413
+ msgid "Show new comment/reply buttons to update manualy"
2414
+ msgstr ""
2415
+
2416
+ #: options/options-layouts/settings-live-update.php:24
2417
+ msgid "Always check for new comments and show update buttons"
2418
+ msgstr ""
2419
+
2420
+ #: options/options-layouts/settings-live-update.php:26
2421
+ msgid "Always update"
2422
+ msgstr ""
2423
+
2424
+ #: options/options-layouts/settings-live-update.php:28
2425
+ msgid "Always check for new comments and update automatically"
2426
+ msgstr ""
2427
+
2428
+ #: options/options-layouts/settings-live-update.php:35
2429
+ msgid "Disable live update for guests"
2430
+ msgstr ""
2431
+
2432
+ #: options/options-layouts/settings-live-update.php:44
2433
+ msgid "Update comment list every"
2434
+ msgstr ""
2435
+
2436
+ #: options/options-layouts/settings-live-update.php:49
2437
+ #: options/options-layouts/settings-live-update.php:50
2438
+ #: options/options-layouts/settings-live-update.php:51
2439
+ msgid "Seconds"
2440
+ msgstr ""
2441
+
2442
+ #: options/options-layouts/settings-live-update.php:52
2443
+ #: options/phrases-layouts/phrases-datetime.php:43
2444
+ msgid "Minute"
2445
+ msgstr ""
2446
+
2447
+ #: options/options-layouts/settings-social.php:12
2448
+ msgid "User agreement prior to a social login action"
2449
+ msgstr ""
2450
+
2451
+ #: options/options-layouts/settings-social.php:13
2452
+ msgid ""
2453
+ "If this option is enabled, all Social Login buttons become not-clickable "
2454
+ "until user accept automatic account creation process based on his/her Social "
2455
+ "Network Account shared information (email, name). This checkbox and "
2456
+ "appropriate information will be displayed when user click on a social login "
2457
+ "button, prior to the login process. This extra step is added to comply with "
2458
+ "the GDPR"
2459
+ msgstr ""
2460
+
2461
+ #: options/options-layouts/settings-social.php:13
2462
+ msgid ""
2463
+ "The note text and the label of this checkbox can be managed in Comments > "
2464
+ "Phrases > Social Login tab."
2465
+ msgstr ""
2466
+
2467
+ #: options/options-layouts/settings-social.php:22
2468
+ msgid "Display social login buttons on reply forms"
2469
+ msgstr ""
2470
+
2471
+ #: options/options-layouts/settings-social.php:35
2472
+ msgid "Facebook"
2473
+ msgstr ""
2474
+
2475
+ #: options/options-layouts/settings-social.php:41
2476
+ msgid ""
2477
+ "To start using Facebook Login and Share Buttons you should get Facebook "
2478
+ "Application Key and Secret for your website. Please follow to this"
2479
+ msgstr ""
2480
+
2481
+ #: options/options-layouts/settings-social.php:41
2482
+ #: options/options-layouts/settings-social.php:87
2483
+ #: options/options-layouts/settings-social.php:134
2484
+ #: options/options-layouts/settings-social.php:173
2485
+ #: options/options-layouts/settings-social.php:219
2486
+ msgid "instruction &raquo;"
2487
+ msgstr ""
2488
+
2489
+ #: options/options-layouts/settings-social.php:47
2490
+ #: options/options-layouts/settings-social.php:93
2491
+ #: options/options-layouts/settings-social.php:140
2492
+ #: options/options-layouts/settings-social.php:179
2493
+ #: options/options-layouts/settings-social.php:225
2494
+ msgid "Enable Login Button"
2495
+ msgstr ""
2496
+
2497
+ #: options/options-layouts/settings-social.php:56
2498
+ #: options/options-layouts/settings-social.php:102
2499
+ #: options/options-layouts/settings-social.php:149
2500
+ #: options/options-layouts/settings-social.php:152
2501
+ #: options/options-layouts/settings-social.php:188
2502
+ #: options/options-layouts/settings-social.php:234
2503
+ msgid "Enable Share Button"
2504
+ msgstr ""
2505
+
2506
+ #: options/options-layouts/settings-social.php:65
2507
+ #: options/options-layouts/settings-social.php:68
2508
+ #: options/options-layouts/settings-social.php:243
2509
+ #: options/options-layouts/settings-social.php:245
2510
+ msgid "Aplication ID"
2511
+ msgstr ""
2512
+
2513
+ #: options/options-layouts/settings-social.php:72
2514
+ #: options/options-layouts/settings-social.php:75
2515
+ #: options/options-layouts/settings-social.php:255
2516
+ #: options/options-layouts/settings-social.php:257
2517
+ msgid "Aplication Secret"
2518
+ msgstr ""
2519
+
2520
+ #: options/options-layouts/settings-social.php:81
2521
+ msgid "Twitter"
2522
+ msgstr ""
2523
+
2524
+ #: options/options-layouts/settings-social.php:87
2525
+ msgid ""
2526
+ "To start using Twitter Login Button you should get Consumer Key and Secret "
2527
+ "for your website. Please follow to this"
2528
+ msgstr ""
2529
+
2530
+ #: options/options-layouts/settings-social.php:111
2531
+ #: options/options-layouts/settings-social.php:113
2532
+ msgid "Consumer Key (API Key)"
2533
+ msgstr ""
2534
+
2535
+ #: options/options-layouts/settings-social.php:117
2536
+ #: options/options-layouts/settings-social.php:120
2537
+ msgid "Consumer Secret (API Secret)"
2538
+ msgstr ""
2539
+
2540
+ #: options/options-layouts/settings-social.php:128
2541
+ msgid "Google +"
2542
+ msgstr ""
2543
+
2544
+ #: options/options-layouts/settings-social.php:134
2545
+ msgid ""
2546
+ "To start using Google+ Login Button you should get Client ID for your "
2547
+ "website. Please follow to this"
2548
+ msgstr ""
2549
+
2550
+ #: options/options-layouts/settings-social.php:158
2551
+ #: options/options-layouts/settings-social.php:160
2552
+ msgid "Client ID"
2553
+ msgstr ""
2554
+
2555
+ #: options/options-layouts/settings-social.php:167
2556
+ msgid "VK"
2557
+ msgstr ""
2558
+
2559
+ #: options/options-layouts/settings-social.php:173
2560
+ msgid ""
2561
+ "To start using VK Login Button you should get Application ID and Secure Key. "
2562
+ "Please follow to this "
2563
+ msgstr ""
2564
+
2565
+ #: options/options-layouts/settings-social.php:197
2566
+ #: options/options-layouts/settings-social.php:199
2567
+ msgid "Application ID"
2568
+ msgstr ""
2569
+
2570
+ #: options/options-layouts/settings-social.php:203
2571
+ #: options/options-layouts/settings-social.php:205
2572
+ msgid "Secure Key"
2573
+ msgstr ""
2574
+
2575
+ #: options/options-layouts/settings-social.php:212
2576
+ msgid "OK"
2577
+ msgstr ""
2578
+
2579
+ #: options/options-layouts/settings-social.php:218
2580
+ msgid "Getting started with"
2581
+ msgstr ""
2582
+
2583
+ #: options/options-layouts/settings-social.php:219
2584
+ msgid ""
2585
+ "To get the Aplication ID, Key and Secret, you should create an app using one "
2586
+ "of the supported types (external, Android, iOS), use this"
2587
+ msgstr ""
2588
+
2589
+ #: options/options-layouts/settings-social.php:249
2590
+ #: options/options-layouts/settings-social.php:251
2591
+ msgid "Aplication Key"
2592
+ msgstr ""
2593
+
2594
+ #: options/options-layouts/settings-style.php:7
2595
+ msgid "Background and Colors"
2596
+ msgstr ""
2597
+
2598
+ #: options/options-layouts/settings-style.php:12
2599
+ msgid "Comment Form and Comment List Style"
2600
+ msgstr ""
2601
+
2602
+ #: options/options-layouts/settings-style.php:16
2603
+ msgid "Default"
2604
+ msgstr ""
2605
+
2606
+ #: options/options-layouts/settings-style.php:17
2607
+ msgid "Dark"
2608
+ msgstr ""
2609
+
2610
+ #: options/options-layouts/settings-style.php:23
2611
+ msgid "Colors"
2612
+ msgstr ""
2613
+
2614
+ #: options/options-layouts/settings-style.php:27
2615
+ #: options/options-layouts/settings-style.php:32
2616
+ #: options/options-layouts/settings-style.php:37
2617
+ #: options/options-layouts/settings-style.php:44
2618
+ #: options/options-layouts/settings-style.php:49
2619
+ #: options/options-layouts/settings-style.php:54
2620
+ #: options/options-layouts/settings-style.php:103
2621
+ #: options/options-layouts/settings-style.php:108
2622
+ #: options/options-layouts/settings-style.php:113
2623
+ #: options/options-layouts/settings-style.php:128
2624
+ msgid "Example: #00FF00"
2625
+ msgstr ""
2626
+
2627
+ #: options/options-layouts/settings-style.php:28
2628
+ msgid "Primary Color"
2629
+ msgstr ""
2630
+
2631
+ #: options/options-layouts/settings-style.php:33
2632
+ msgid "Subscription Bar Background"
2633
+ msgstr ""
2634
+
2635
+ #: options/options-layouts/settings-style.php:38
2636
+ msgid "Comment form fields border"
2637
+ msgstr ""
2638
+
2639
+ #: options/options-layouts/settings-style.php:45
2640
+ msgid "Comment Background"
2641
+ msgstr ""
2642
+
2643
+ #: options/options-layouts/settings-style.php:50
2644
+ msgid "Reply Background"
2645
+ msgstr ""
2646
+
2647
+ #: options/options-layouts/settings-style.php:55
2648
+ msgid "Unread comments background"
2649
+ msgstr ""
2650
+
2651
+ #: options/options-layouts/settings-style.php:62
2652
+ msgid "Button Colors"
2653
+ msgstr ""
2654
+
2655
+ #: options/options-layouts/settings-style.php:66
2656
+ #: options/options-layouts/settings-style.php:76
2657
+ msgid "Text Color"
2658
+ msgstr ""
2659
+
2660
+ #: options/options-layouts/settings-style.php:67
2661
+ msgid "Primary buttons text"
2662
+ msgstr ""
2663
+
2664
+ #: options/options-layouts/settings-style.php:70
2665
+ msgid "Background Color"
2666
+ msgstr ""
2667
+
2668
+ #: options/options-layouts/settings-style.php:71
2669
+ msgid "Primary buttons background"
2670
+ msgstr ""
2671
+
2672
+ #: options/options-layouts/settings-style.php:77
2673
+ msgid "Secondary buttons text"
2674
+ msgstr ""
2675
+
2676
+ #: options/options-layouts/settings-style.php:80
2677
+ msgid "Border Color"
2678
+ msgstr ""
2679
+
2680
+ #: options/options-layouts/settings-style.php:81
2681
+ msgid "Secondary buttons border"
2682
+ msgstr ""
2683
+
2684
+ #: options/options-layouts/settings-style.php:87
2685
+ msgid "Up Vote Color"
2686
+ msgstr ""
2687
+
2688
+ #: options/options-layouts/settings-style.php:88
2689
+ msgid "Up vote button"
2690
+ msgstr ""
2691
+
2692
+ #: options/options-layouts/settings-style.php:91
2693
+ msgid "Down Vote Color"
2694
+ msgstr ""
2695
+
2696
+ #: options/options-layouts/settings-style.php:92
2697
+ msgid "Down vote button"
2698
+ msgstr ""
2699
+
2700
+ #: options/options-layouts/settings-style.php:99
2701
+ msgid "Rating Star Colors"
2702
+ msgstr ""
2703
+
2704
+ #: options/options-layouts/settings-style.php:104
2705
+ msgid "Rating Stars Hover Color"
2706
+ msgstr ""
2707
+
2708
+ #: options/options-layouts/settings-style.php:109
2709
+ msgid "Rating Stars Inactive Color"
2710
+ msgstr ""
2711
+
2712
+ #: options/options-layouts/settings-style.php:114
2713
+ msgid "Rating Stars Active Color"
2714
+ msgstr ""
2715
+
2716
+ #: options/options-layouts/settings-style.php:121
2717
+ msgid "Commenter Label Colors by User Role"
2718
+ msgstr ""
2719
+
2720
+ #: options/options-layouts/settings-style.php:128
2721
+ msgid "label color"
2722
+ msgstr ""
2723
+
2724
+ #: options/options-layouts/settings-style.php:139
2725
+ msgid "Comment text size in pixels"
2726
+ msgstr ""
2727
+
2728
+ #: options/options-layouts/settings-style.php:154
2729
+ msgid "Do not load Font Awesome css lib"
2730
+ msgstr ""
2731
+
2732
+ #: options/options-layouts/settings-style.php:155
2733
+ msgid ""
2734
+ "IMPORTANT: wpDiscuz uses FontAwesome version 5. in case your theme still "
2735
+ "uses the old 4.x versions you should not disable this lib. The theme 4.x "
2736
+ "version doesn't support FontAwesome 5 icons, thus all wpDiscuz icons will be "
2737
+ "lost."
2738
+ msgstr ""
2739
+
2740
+ #: options/options-layouts/settings-style.php:164
2741
+ msgid "Custom CSS Code"
2742
+ msgstr ""
2743
+
2744
+ #: options/options-layouts/settings-subscription.php:7
2745
+ msgid "Email Subscription Settings"
2746
+ msgstr ""
2747
+
2748
+ #: options/options-layouts/settings-subscription.php:11
2749
+ msgid "Notify comment author once comment is approved"
2750
+ msgstr ""
2751
+
2752
+ #: options/options-layouts/settings-subscription.php:16
2753
+ msgid "Disable subscription confirmation for registered users"
2754
+ msgstr ""
2755
+
2756
+ #: options/options-layouts/settings-subscription.php:25
2757
+ msgid "Disable subscription confirmation for guests"
2758
+ msgstr ""
2759
+
2760
+ #: options/options-layouts/settings-subscription.php:34
2761
+ msgid "Show subscription types in dropdown"
2762
+ msgstr ""
2763
+
2764
+ #: options/options-layouts/settings-subscription.php:41
2765
+ msgid "Subscribe to all comments of this post"
2766
+ msgstr ""
2767
+
2768
+ #: options/options-layouts/settings-subscription.php:45
2769
+ msgid "Subscribe to all replies to my comments "
2770
+ msgstr ""
2771
+
2772
+ #: options/options-layouts/settings-subscription.php:47
2773
+ #: options/options-layouts/settings-subscription.php:49
2774
+ msgid "Both"
2775
+ msgstr ""
2776
+
2777
+ #: options/options-layouts/settings-subscription.php:57
2778
+ msgid "Show \"Notify of new replies to this comment\""
2779
+ msgstr ""
2780
+
2781
+ #: options/options-layouts/settings-subscription.php:59
2782
+ msgid ""
2783
+ "wpDiscuz is the only comment plugin which allows you to subscribe to certain "
2784
+ "comment replies. This option is located above [Post Comment] button in "
2785
+ "comment form. You can disable this subscription way by unchecking this "
2786
+ "option."
2787
+ msgstr ""
2788
+
2789
+ #: options/options-layouts/settings-subscription.php:69
2790
+ msgid "\"Notify of new replies to this comment\" checked by default"
2791
+ msgstr ""
2792
+
2793
+ #: options/options-layouts/settings-subscription.php:79
2794
+ msgid "Use Postmatic for subscriptions and commenting by email"
2795
+ msgstr ""
2796
+
2797
+ #: options/options-layouts/settings-subscription.php:80
2798
+ msgid ""
2799
+ "Postmatic allows your users subscribe to comments. Instead of just being "
2800
+ "notified, they add a reply right from their inbox."
2801
+ msgstr ""
2802
+
2803
+ #: options/phrases-layouts/phrases-comment.php:7
2804
+ msgid "Comment Template Phrases"
2805
+ msgstr ""
2806
+
2807
+ #: options/phrases-layouts/phrases-comment.php:83
2808
+ msgid "Save edited comment button text"
2809
+ msgstr ""
2810
+
2811
+ #: options/phrases-layouts/phrases-comment.php:87
2812
+ msgid "Cancel comment editing button text"
2813
+ msgstr ""
2814
+
2815
+ #: options/phrases-layouts/phrases-comment.php:91
2816
+ msgid "Comment read more link text"
2817
+ msgstr ""
2818
+
2819
+ #: options/phrases-layouts/phrases-comment.php:95
2820
+ msgid "Anonymous commenter name"
2821
+ msgstr ""
2822
+
2823
+ #: options/phrases-layouts/phrases-comment.php:115
2824
+ msgid "Sticky comment icon title"
2825
+ msgstr ""
2826
+
2827
+ #: options/phrases-layouts/phrases-comment.php:135
2828
+ msgid "Closed comment icon title"
2829
+ msgstr ""
2830
+
2831
+ #: options/phrases-layouts/phrases-datetime.php:7
2832
+ msgid "Date/Time Phrases"
2833
+ msgstr ""
2834
+
2835
+ #: options/phrases-layouts/phrases-datetime.php:11
2836
+ msgid "Year"
2837
+ msgstr ""
2838
+
2839
+ #: options/phrases-layouts/phrases-datetime.php:15
2840
+ msgid "Years (Plural Form)"
2841
+ msgstr ""
2842
+
2843
+ #: options/phrases-layouts/phrases-datetime.php:19
2844
+ msgid "Month"
2845
+ msgstr ""
2846
+
2847
+ #: options/phrases-layouts/phrases-datetime.php:23
2848
+ msgid "Months (Plural Form)"
2849
+ msgstr ""
2850
+
2851
+ #: options/phrases-layouts/phrases-datetime.php:27
2852
+ msgid "Day"
2853
+ msgstr ""
2854
+
2855
+ #: options/phrases-layouts/phrases-datetime.php:31
2856
+ msgid "Days (Plural Form)"
2857
+ msgstr ""
2858
+
2859
+ #: options/phrases-layouts/phrases-datetime.php:39
2860
+ msgid "Hours (Plural Form)"
2861
+ msgstr ""
2862
+
2863
+ #: options/phrases-layouts/phrases-datetime.php:47
2864
+ msgid "Minutes (Plural Form)"
2865
+ msgstr ""
2866
+
2867
+ #: options/phrases-layouts/phrases-datetime.php:51
2868
+ msgid "Second"
2869
+ msgstr ""
2870
+
2871
+ #: options/phrases-layouts/phrases-datetime.php:55
2872
+ msgid "Seconds (Plural Form)"
2873
+ msgstr ""
2874
+
2875
+ #: options/phrases-layouts/phrases-datetime.php:59
2876
+ msgid "Commented \"right now\" text"
2877
+ msgstr ""
2878
+
2879
+ #: options/phrases-layouts/phrases-datetime.php:63
2880
+ msgid "Ago text"
2881
+ msgstr ""
2882
+
2883
+ #: options/phrases-layouts/phrases-email.php:17
2884
+ msgid "Email Template Phrases"
2885
+ msgstr ""
2886
+
2887
+ #: options/phrases-layouts/phrases-email.php:22
2888
+ msgid "Subscription type: Post comments"
2889
+ msgstr ""
2890
+
2891
+ #: options/phrases-layouts/phrases-email.php:23
2892
+ msgid "Post comment notification subject"
2893
+ msgstr ""
2894
+
2895
+ #: options/phrases-layouts/phrases-email.php:24
2896
+ #: options/phrases-layouts/phrases-email.php:35
2897
+ #: options/phrases-layouts/phrases-email.php:55
2898
+ #: options/phrases-layouts/phrases-email.php:66
2899
+ #: options/phrases-layouts/phrases-email.php:86
2900
+ #: options/phrases-layouts/phrases-email.php:97
2901
+ #: options/phrases-layouts/phrases-email.php:138
2902
+ #: options/phrases-layouts/phrases-email.php:149
2903
+ #: options/phrases-layouts/phrases-email.php:165
2904
+ #: options/phrases-layouts/phrases-email.php:177
2905
+ msgid "Available shortcodes"
2906
+ msgstr ""
2907
+
2908
+ #: options/phrases-layouts/phrases-email.php:34
2909
+ msgid "Post comment notification content"
2910
+ msgstr ""
2911
+
2912
+ #: options/phrases-layouts/phrases-email.php:43
2913
+ #: options/phrases-layouts/phrases-email.php:74
2914
+ msgid "Shortcode above will work for registered users only"
2915
+ msgstr ""
2916
+
2917
+ #: options/phrases-layouts/phrases-email.php:53
2918
+ msgid "Subscription type: All my comments"
2919
+ msgstr ""
2920
+
2921
+ #: options/phrases-layouts/phrases-email.php:54
2922
+ #: options/phrases-layouts/phrases-email.php:85
2923
+ msgid "New reply notification subject"
2924
+ msgstr ""
2925
+
2926
+ #: options/phrases-layouts/phrases-email.php:65
2927
+ #: options/phrases-layouts/phrases-email.php:96
2928
+ msgid "New Reply notification content"
2929
+ msgstr ""
2930
+
2931
+ #: options/phrases-layouts/phrases-email.php:84
2932
+ msgid "Subscription type: Single comment"
2933
+ msgstr ""
2934
+
2935
+ #: options/phrases-layouts/phrases-email.php:124
2936
+ msgid "Ignore subscription"
2937
+ msgstr ""
2938
+
2939
+ #: options/phrases-layouts/phrases-email.php:137
2940
+ msgid "Subscription confirmation email subject"
2941
+ msgstr ""
2942
+
2943
+ #: options/phrases-layouts/phrases-email.php:148
2944
+ msgid "Subscription confirmation email content"
2945
+ msgstr ""
2946
+
2947
+ #: options/phrases-layouts/phrases-email.php:164
2948
+ msgid "Comment approved subject"
2949
+ msgstr ""
2950
+
2951
+ #: options/phrases-layouts/phrases-email.php:175
2952
+ msgid "Comment approved message"
2953
+ msgstr ""
2954
+
2955
+ #: options/phrases-layouts/phrases-error.php:7
2956
+ #: options/phrases-layouts/phrases-notification.php:7
2957
+ msgid "Notification Phrases"
2958
+ msgstr ""
2959
+
2960
+ #: options/phrases-layouts/phrases-error.php:11
2961
+ msgid "Error message for empty field"
2962
+ msgstr ""
2963
+
2964
+ #: options/phrases-layouts/phrases-error.php:15
2965
+ msgid "Error message for invalid email field"
2966
+ msgstr ""
2967
+
2968
+ #: options/phrases-layouts/phrases-error.php:19
2969
+ msgid "Error message for invalid website url field"
2970
+ msgstr ""
2971
+
2972
+ #: options/phrases-layouts/phrases-error.php:23
2973
+ msgid "You can vote only 1 time"
2974
+ msgstr ""
2975
+
2976
+ #: options/phrases-layouts/phrases-error.php:31
2977
+ msgid "You Cannot Vote On Your Comment"
2978
+ msgstr ""
2979
+
2980
+ #: options/phrases-layouts/phrases-error.php:35
2981
+ msgid "You are not allowed to vote for this comment (Voting from same IP)"
2982
+ msgstr ""
2983
+
2984
+ #: options/phrases-layouts/phrases-error.php:47
2985
+ msgid "Message if input text length is too short"
2986
+ msgstr ""
2987
+
2988
+ #: options/phrases-layouts/phrases-error.php:51
2989
+ msgid "Message if input text length is too long"
2990
+ msgstr ""
2991
+
2992
+ #: options/phrases-layouts/phrases-error.php:55
2993
+ msgid "Message if comment was not updated"
2994
+ msgstr ""
2995
+
2996
+ #: options/phrases-layouts/phrases-error.php:59
2997
+ msgid "Message if comment no longer possible to edit"
2998
+ msgstr ""
2999
+
3000
+ #: options/phrases-layouts/phrases-error.php:63
3001
+ msgid "Message if comment text not changed"
3002
+ msgstr ""
3003
+
3004
+ #: options/phrases-layouts/phrases-form.php:7
3005
+ msgid "Form Template Phrases"
3006
+ msgstr ""
3007
+
3008
+ #: options/phrases-layouts/phrases-form.php:11
3009
+ msgid "Comment Field Start"
3010
+ msgstr ""
3011
+
3012
+ #: options/phrases-layouts/phrases-form.php:15
3013
+ msgid "Comment Field Join"
3014
+ msgstr ""
3015
+
3016
+ #: options/phrases-layouts/phrases-form.php:47
3017
+ msgid "Email Field"
3018
+ msgstr ""
3019
+
3020
+ #: options/phrases-layouts/phrases-form.php:59
3021
+ msgid "Notify on new comments"
3022
+ msgstr ""
3023
+
3024
+ #: options/phrases-layouts/phrases-form.php:63
3025
+ msgid "Notify on all new replies"
3026
+ msgstr ""
3027
+
3028
+ #: options/phrases-layouts/phrases-form.php:67
3029
+ msgid "Notify on new replies (checkbox) - On"
3030
+ msgstr ""
3031
+
3032
+ #: options/phrases-layouts/phrases-form.php:71
3033
+ msgid "Notify on new replies (checkbox) - Off"
3034
+ msgstr ""
3035
+
3036
+ #: options/phrases-layouts/phrases-form.php:91
3037
+ msgid "Subscribed on this comment replies"
3038
+ msgstr ""
3039
+
3040
+ #: options/phrases-layouts/phrases-form.php:95
3041
+ msgid "Subscribed on all your comments replies"
3042
+ msgstr ""
3043
+
3044
+ #: options/phrases-layouts/phrases-form.php:99
3045
+ msgid "Subscribed on this post"
3046
+ msgstr ""
3047
+
3048
+ #: options/phrases-layouts/phrases-form.php:103
3049
+ msgid "Form subscription button"
3050
+ msgstr ""
3051
+
3052
+ #: options/phrases-layouts/phrases-form.php:107
3053
+ msgid "Invisible Antispam Protection note"
3054
+ msgstr ""
3055
+
3056
+ #: options/phrases-layouts/phrases-general.php:7
3057
+ msgid "General Phrases"
3058
+ msgstr ""
3059
+
3060
+ #: options/phrases-layouts/phrases-general.php:11
3061
+ msgid "Be the first to comment"
3062
+ msgstr ""
3063
+
3064
+ #: options/phrases-layouts/phrases-general.php:15
3065
+ msgid "Load More Button"
3066
+ msgstr ""
3067
+
3068
+ #: options/phrases-layouts/phrases-general.php:23
3069
+ msgid "Button text if has new comment"
3070
+ msgstr ""
3071
+
3072
+ #: options/phrases-layouts/phrases-general.php:27
3073
+ msgid "Button text if has new comments (Plural Form)"
3074
+ msgstr ""
3075
+
3076
+ #: options/phrases-layouts/phrases-general.php:31
3077
+ msgid "Button text if has new reply"
3078
+ msgstr ""
3079
+
3080
+ #: options/phrases-layouts/phrases-general.php:35
3081
+ msgid "Button text if has new replies (Plural Form)"
3082
+ msgstr ""
3083
+
3084
+ #: options/phrases-layouts/phrases-notification.php:24
3085
+ msgid "Postmatic subscription label"
3086
+ msgstr ""
3087
+
3088
+ #: options/phrases-layouts/phrases-notification.php:42
3089
+ msgid "Logged In"
3090
+ msgstr ""
3091
+
3092
+ #: options/phrases-layouts/phrases-notification.php:46
3093
+ msgid "To post a comment"
3094
+ msgstr ""
3095
+
3096
+ #: options/phrases-layouts/phrases-notification.php:50
3097
+ msgid "Logged in as"
3098
+ msgstr ""
3099
+
3100
+ #: options/phrases-layouts/phrases-notification.php:62
3101
+ msgid "Login To Vote"
3102
+ msgstr ""
3103
+
3104
+ #: options/phrases-layouts/phrases-notification.php:66
3105
+ msgid "Comment waiting moderation"
3106
+ msgstr ""
3107
+
3108
+ #: options/phrases-layouts/phrases-notification.php:70
3109
+ msgid "Message if commenting disabled by user role"
3110
+ msgstr ""
3111
+
3112
+ #: options/phrases-layouts/phrases-social-login.php:15
3113
+ msgid "Social login agreement label"
3114
+ msgstr ""
3115
+
3116
+ #: options/phrases-layouts/phrases-social-login.php:19
3117
+ msgid "Social login agreement description"
3118
+ msgstr ""
3119
+
3120
+ #: options/phrases-layouts/phrases-user-settings.php:7
3121
+ msgid "User Settings Phrases"
3122
+ msgstr ""
3123
+
3124
+ #: options/phrases-layouts/phrases-user-settings.php:31
3125
+ msgid "\"Bulk management via email\" description"
3126
+ msgstr ""
3127
+
3128
+ #: options/phrases-layouts/phrases-user-settings.php:59
3129
+ msgid "Delete all comments email text"
3130
+ msgstr ""
3131
+
3132
+ #: options/phrases-layouts/phrases-user-settings.php:67
3133
+ msgid "Delete all subscriptions email text"
3134
+ msgstr ""
3135
+
3136
+ #: options/tools-layouts/options-export.php:9
3137
+ msgid ""
3138
+ "Using this tool you can migrate or backup/restore wpDiscuz options from one "
3139
+ "WordPress to another."
3140
+ msgstr ""
3141
+
3142
+ #: options/tools-layouts/options-export.php:20
3143
+ msgid "Download Options"
3144
+ msgstr ""
3145
+
3146
+ #: options/tools-layouts/options-export.php:28
3147
+ msgid "Backup Options"
3148
+ msgstr ""
3149
+
3150
+ #: options/tools-layouts/options-import.php:9
3151
+ msgid ""
3152
+ "Here you can import and restore wpDiscuz options. You just need to choose "
3153
+ "backup file and click import options."
3154
+ msgstr ""
3155
+
3156
+ #: options/tools-layouts/options-import.php:22
3157
+ msgid "Import Options"
3158
+ msgstr ""
3159
+
3160
+ #: options/tools-layouts/subscriptions-import.php:11
3161
+ msgid ""
3162
+ "Using this tool you can import subscriptions from other plugins to wpDiscuz."
3163
+ msgstr ""
3164
+
3165
+ #: options/tools-layouts/subscriptions-import.php:19
3166
+ msgid "Import subscriptions from Subscribe To Comments Reloaded"
3167
+ msgstr ""
3168
+
3169
+ #: options/tools-layouts/subscriptions-import.php:20
3170
+ msgid "Import subscriptions from \"Subscribe To Comments Reloaded\" plugin"
3171
+ msgstr ""
3172
+
3173
+ #: options/tools-layouts/tools-other.php:16
3174
+ msgid "Update vote data"
3175
+ msgstr ""
3176
+
3177
+ #: options/tools-layouts/tools-other.php:18
3178
+ msgid ""
3179
+ "We recommend use this tool to do one way hashing of commenter IP addresses "
3180
+ "to 32 bit strings, so you'll keep less personal information of your "
3181
+ "commenters. This tool only hashes voter IP addresses. You also can stop "
3182
+ "saving of commenter IP addresses in comments database table using this "
3183
+ "instruction "
3184
+ msgstr ""
3185
+
3186
+ #: options/tools-layouts/tools-other.php:26
3187
+ msgid "Start Hashing"
3188
+ msgstr ""
3189
+
3190
+ #: options/tools-layouts/tools-other.php:27
3191
+ msgid "Hash users IP addresses"
3192
+ msgstr ""
3193
+
3194
+ #: templates/comment/comment-form.php:61
3195
+ msgid "Your comments have been deleted from database"
3196
+ msgstr ""
3197
+
3198
+ #: templates/comment/comment-form.php:72
3199
+ msgid "You cancel all your subscriptions successfully"
3200
+ msgstr ""
3201
+
3202
+ #: templates/comment/comment-form.php:99
3203
+ msgid "Unable to send an email"
3204
+ msgstr ""
3205
+
3206
+ #: templates/comment/comment-form.php:101
3207
+ msgid "Subscription Fault"
3208
+ msgstr ""
3209
+
3210
+ #: utils/class.WpdiscuzHelper.php:216 utils/class.WpdiscuzHelper.php:219
3211
+ msgid "Spoiler"
3212
+ msgstr ""
3213
+
3214
+ #: utils/class.WpdiscuzHelper.php:312
3215
+ msgid "Sticky"
3216
+ msgstr ""
3217
+
3218
+ #: utils/class.WpdiscuzHelper.php:524
3219
+ msgid "Before using wpDiscuz you should update your data"
3220
+ msgstr ""
3221
+
3222
+ #: utils/class.WpdiscuzHelper.php:525
3223
+ msgid "Go to update data"
3224
+ msgstr ""
3225
+
3226
+ #: utils/deactivation-reason-modal.php:10
3227
+ msgid "Plugin Usage Feedback"
3228
+ msgstr ""
3229
+
3230
+ #: utils/deactivation-reason-modal.php:13
3231
+ msgid ""
3232
+ "Please let us know why you are deactivating. Choosing one of the options "
3233
+ "below you will help us make it better for you and for other users."
3234
+ msgstr ""
3235
+
3236
+ #: utils/deactivation-reason-modal.php:19
3237
+ msgid "I'll reactivate it later"
3238
+ msgstr ""
3239
+
3240
+ #: utils/deactivation-reason-modal.php:23
3241
+ msgid "The plugin is not working"
3242
+ msgstr ""
3243
+
3244
+ #: utils/deactivation-reason-modal.php:24
3245
+ msgid "What kind of problems do you have?"
3246
+ msgstr ""
3247
+
3248
+ #: utils/deactivation-reason-modal.php:28
3249
+ msgid "It's not what I was looking for"
3250
+ msgstr ""
3251
+
3252
+ #: utils/deactivation-reason-modal.php:32
3253
+ msgid "I couldn't understand how to make it work"
3254
+ msgstr ""
3255
+
3256
+ #: utils/deactivation-reason-modal.php:33
3257
+ #: utils/deactivation-reason-modal.php:38
3258
+ msgid "What type of features you want to be in the plugin?"
3259
+ msgstr ""
3260
+
3261
+ #: utils/deactivation-reason-modal.php:37
3262
+ msgid "The plugin is great, but I need specific features"
3263
+ msgstr ""
3264
+
3265
+ #: utils/deactivation-reason-modal.php:42
3266
+ msgid "I didn't like plugin design"
3267
+ msgstr ""
3268
+
3269
+ #: utils/deactivation-reason-modal.php:43
3270
+ msgid "What part of design you don't like or want to change?"
3271
+ msgstr ""
3272
+
3273
+ #: utils/deactivation-reason-modal.php:47
3274
+ msgid "The plugin works very slow"
3275
+ msgstr ""
3276
+
3277
+ #: utils/deactivation-reason-modal.php:48
3278
+ msgid ""
3279
+ "Could you please describe which features of the plugin slows down your "
3280
+ "website?"
3281
+ msgstr ""
3282
+
3283
+ #: utils/deactivation-reason-modal.php:52
3284
+ msgid "I found a better plugin"
3285
+ msgstr ""
3286
+
3287
+ #: utils/deactivation-reason-modal.php:53
3288
+ msgid "Please provide a plugin name or URL"
3289
+ msgstr ""
3290
+
3291
+ #: utils/deactivation-reason-modal.php:62
3292
+ msgid "Dismiss and never show again"
3293
+ msgstr ""
3294
+
3295
+ #: utils/deactivation-reason-modal.php:63
3296
+ msgid "Submit &amp; Deactivate"
3297
+ msgstr ""
3298
+
3299
+ #: utils/deactivation-reason-modal.php:66
3300
+ msgid "Thank you for your feedback!"
3301
+ msgstr ""
3302
+
3303
+ #: utils/layouts/activity/item.php:28
3304
+ msgid "Delete this comment"
3305
+ msgstr ""
3306
+
3307
+ #: utils/layouts/pagination.php:22
3308
+ msgid "&laquo;"
3309
+ msgstr ""
3310
+
3311
+ #: utils/layouts/pagination.php:28
3312
+ msgid "&lsaquo;"
3313
+ msgstr ""
3314
+
3315
+ #: utils/layouts/pagination.php:52
3316
+ msgid "&raquo;"
3317
+ msgstr ""
3318
+
3319
+ #: utils/layouts/subscriptions/item.php:23
3320
+ msgid "Cancel this subscription"
3321
+ msgstr ""
3322
+
3323
+ #. Plugin Name of the plugin/theme
3324
+ msgid "wpDiscuz"
3325
+ msgstr ""
3326
+
3327
+ #. Plugin URI of the plugin/theme
3328
+ msgid "http://wpdiscuz.com/"
3329
+ msgstr ""
3330
+
3331
+ #. Description of the plugin/theme
3332
+ msgid ""
3333
+ "Better comment system. Wordpress post comments and discussion plugin. Allows "
3334
+ "your visitors discuss, vote for comments and share."
3335
+ msgstr ""
3336
+
3337
+ #. Author of the plugin/theme
3338
+ msgid "gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
3339
+ msgstr ""
3340
+
3341
+ #. Author URI of the plugin/theme
3342
+ msgid "https://gvectors.com/"
3343
+ msgstr ""
options/phrases-layouts/phrases-error.php CHANGED
@@ -1,72 +1,72 @@
1
- <?php
2
- if (!defined('ABSPATH')) {
3
- exit();
4
- }
5
- ?>
6
- <div>
7
- <h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Notification Phrases', 'wpdiscuz'); ?></h2>
8
- <table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
9
- <tbody>
10
- <tr valign="top">
11
- <th scope="row"><label for="wc_error_empty_text"><?php _e('Error message for empty field', 'wpdiscuz'); ?></label></th>
12
- <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_error_empty_text']; ?>" name="wc_error_empty_text" id="wc_error_empty_text" /></td>
13
- </tr>
14
- <tr valign="top">
15
- <th scope="row"><label for="wc_error_email_text"><?php _e('Error message for invalid email field', 'wpdiscuz'); ?></label></th>
16
- <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_error_email_text']; ?>" name="wc_error_email_text" id="wc_error_email_text" /></td>
17
- </tr>
18
- <tr valign="top">
19
- <th scope="row"><label for="wc_error_url_text"><?php _e('Error message for invalid website url field', 'wpdiscuz'); ?></label></th>
20
- <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_error_url_text']; ?>" name="wc_error_url_text" id="wc_error_url_text" /></td>
21
- </tr>
22
- <tr valign="top">
23
- <th scope="row"><label for="wc_vote_only_one_time"><?php _e('You can vote only 1 time', 'wpdiscuz'); ?></label></th>
24
- <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_vote_only_one_time']; ?>" name="wc_vote_only_one_time" id="wc_vote_only_one_time" /></td>
25
- </tr>
26
- <tr valign="top">
27
- <th scope="row"><label for="wc_voting_error"><?php _e('Voting Error', 'wpdiscuz'); ?></label></th>
28
- <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_voting_error']; ?>" name="wc_voting_error" id="wc_voting_error" /></td>
29
- </tr>
30
- <tr valign="top">
31
- <th scope="row"><label for="wc_self_vote"><?php _e('You Cannot Vote On Your Comment', 'wpdiscuz'); ?></label></th>
32
- <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_self_vote']; ?>" name="wc_self_vote" id="wc_self_vote" /></td>
33
- </tr>
34
- <tr valign="top">
35
- <th scope="row"><label for="wc_deny_voting_from_same_ip"><?php _e('You are not allowed to vote for this comment (Voting from same IP)', 'wpdiscuz'); ?></label></th>
36
- <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_deny_voting_from_same_ip']; ?>" name="wc_deny_voting_from_same_ip" id="wc_deny_voting_from_same_ip" /></td>
37
- </tr>
38
- <tr valign="top">
39
- <th scope="row"><label for="wc_invalid_captcha"><?php _e('Invalid Captcha Code', 'wpdiscuz'); ?></label></th>
40
- <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_invalid_captcha']; ?>" name="wc_invalid_captcha" id="wc_invalid_captcha" /></td>
41
- </tr>
42
- <tr valign="top">
43
- <th scope="row"><label for="wc_invalid_field"><?php _e('Some of field value is invalid', 'wpdiscuz'); ?></label></th>
44
- <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_invalid_field']; ?>" name="wc_invalid_field" id="wc_invalid_field" /></td>
45
- </tr>
46
- <tr valign="top">
47
- <th scope="row"><label for="wc_msg_input_min_length"><?php _e('Message if input text length is too short', 'wpdiscuz'); ?></label></th>
48
- <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_msg_input_min_length']; ?>" name="wc_msg_input_min_length" id="wc_msg_input_min_length" /></td>
49
- </tr>
50
- <tr valign="top">
51
- <th scope="row"><label for="wc_msg_input_max_length"><?php _e('Message if input text length is too long', 'wpdiscuz'); ?></label></th>
52
- <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_msg_input_max_length']; ?>" name="wc_msg_input_max_length" id="wc_msg_input_max_length" /></td>
53
- </tr>
54
- <tr valign="top">
55
- <th scope="row"><label for="wc_comment_not_updated"><?php _e('Message if comment was not updated', 'wpdiscuz'); ?></label></th>
56
- <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_comment_not_updated']; ?>" name="wc_comment_not_updated" id="wc_comment_not_updated" /></td>
57
- </tr>
58
- <tr valign="top">
59
- <th scope="row"><label for="wc_comment_edit_not_possible"><?php _e('Message if comment no longer possible to edit', 'wpdiscuz'); ?></label></th>
60
- <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_comment_edit_not_possible']; ?>" name="wc_comment_edit_not_possible" id="wc_comment_edit_not_possible" /></td>
61
- </tr>
62
- <tr valign="top">
63
- <th scope="row"><label for="wc_comment_not_edited"><?php _e('Message if comment text not changed', 'wpdiscuz'); ?></label></th>
64
- <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_comment_not_edited']; ?>" name="wc_comment_not_edited" id="wc_comment_not_edited" /></td>
65
- </tr>
66
- <tr valign="top">
67
- <th scope="row"><label for="wc_msg_required_fields"><?php _e('Please fill out required fields', 'wpdiscuz'); ?></label></th>
68
- <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_msg_required_fields']; ?>" name="wc_msg_required_fields" id="wc_msg_required_fields" /></td>
69
- </tr>
70
- </tbody>
71
- </table>
72
  </div>
1
+ <?php
2
+ if (!defined('ABSPATH')) {
3
+ exit();
4
+ }
5
+ ?>
6
+ <div>
7
+ <h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Notification Phrases', 'wpdiscuz'); ?></h2>
8
+ <table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
9
+ <tbody>
10
+ <tr valign="top">
11
+ <th scope="row"><label for="wc_error_empty_text"><?php _e('Error message for empty field', 'wpdiscuz'); ?></label></th>
12
+ <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_error_empty_text']; ?>" name="wc_error_empty_text" id="wc_error_empty_text" /></td>
13
+ </tr>
14
+ <tr valign="top">
15
+ <th scope="row"><label for="wc_error_email_text"><?php _e('Error message for invalid email field', 'wpdiscuz'); ?></label></th>
16
+ <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_error_email_text']; ?>" name="wc_error_email_text" id="wc_error_email_text" /></td>
17
+ </tr>
18
+ <tr valign="top">
19
+ <th scope="row"><label for="wc_error_url_text"><?php _e('Error message for invalid website url field', 'wpdiscuz'); ?></label></th>
20
+ <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_error_url_text']; ?>" name="wc_error_url_text" id="wc_error_url_text" /></td>
21
+ </tr>
22
+ <tr valign="top">
23
+ <th scope="row"><label for="wc_vote_only_one_time"><?php _e('You can vote only 1 time', 'wpdiscuz'); ?></label></th>
24
+ <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_vote_only_one_time']; ?>" name="wc_vote_only_one_time" id="wc_vote_only_one_time" /></td>
25
+ </tr>
26
+ <tr valign="top">
27
+ <th scope="row"><label for="wc_voting_error"><?php _e('Voting Error', 'wpdiscuz'); ?></label></th>
28
+ <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_voting_error']; ?>" name="wc_voting_error" id="wc_voting_error" /></td>
29
+ </tr>
30
+ <tr valign="top">
31
+ <th scope="row"><label for="wc_self_vote"><?php _e('You Cannot Vote On Your Comment', 'wpdiscuz'); ?></label></th>
32
+ <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_self_vote']; ?>" name="wc_self_vote" id="wc_self_vote" /></td>
33
+ </tr>
34
+ <tr valign="top">
35
+ <th scope="row"><label for="wc_deny_voting_from_same_ip"><?php _e('You are not allowed to vote for this comment (Voting from same IP)', 'wpdiscuz'); ?></label></th>
36
+ <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_deny_voting_from_same_ip']; ?>" name="wc_deny_voting_from_same_ip" id="wc_deny_voting_from_same_ip" /></td>
37
+ </tr>
38
+ <tr valign="top">
39
+ <th scope="row"><label for="wc_invalid_captcha"><?php _e('Invalid Captcha Code', 'wpdiscuz'); ?></label></th>
40
+ <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_invalid_captcha']; ?>" name="wc_invalid_captcha" id="wc_invalid_captcha" /></td>
41
+ </tr>
42
+ <tr valign="top">
43
+ <th scope="row"><label for="wc_invalid_field"><?php _e('Some of field value is invalid', 'wpdiscuz'); ?></label></th>
44
+ <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_invalid_field']; ?>" name="wc_invalid_field" id="wc_invalid_field" /></td>
45
+ </tr>
46
+ <tr valign="top">
47
+ <th scope="row"><label for="wc_msg_input_min_length"><?php _e('Message if input text length is too short', 'wpdiscuz'); ?></label></th>
48
+ <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_msg_input_min_length']; ?>" name="wc_msg_input_min_length" id="wc_msg_input_min_length" /></td>
49
+ </tr>
50
+ <tr valign="top">
51
+ <th scope="row"><label for="wc_msg_input_max_length"><?php _e('Message if input text length is too long', 'wpdiscuz'); ?></label></th>
52
+ <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_msg_input_max_length']; ?>" name="wc_msg_input_max_length" id="wc_msg_input_max_length" /></td>
53
+ </tr>
54
+ <tr valign="top">
55
+ <th scope="row"><label for="wc_comment_not_updated"><?php _e('Message if comment was not updated', 'wpdiscuz'); ?></label></th>
56
+ <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_comment_not_updated']; ?>" name="wc_comment_not_updated" id="wc_comment_not_updated" /></td>
57
+ </tr>
58
+ <tr valign="top">
59
+ <th scope="row"><label for="wc_comment_edit_not_possible"><?php _e('Message if comment no longer possible to edit', 'wpdiscuz'); ?></label></th>
60
+ <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_comment_edit_not_possible']; ?>" name="wc_comment_edit_not_possible" id="wc_comment_edit_not_possible" /></td>
61
+ </tr>
62
+ <tr valign="top">
63
+ <th scope="row"><label for="wc_comment_not_edited"><?php _e('Message if comment text not changed', 'wpdiscuz'); ?></label></th>
64
+ <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_comment_not_edited']; ?>" name="wc_comment_not_edited" id="wc_comment_not_edited" /></td>
65
+ </tr>
66
+ <tr valign="top">
67
+ <th scope="row"><label for="wc_msg_required_fields"><?php _e('Please fill out required fields', 'wpdiscuz'); ?></label></th>
68
+ <td colspan="3"><input type="text" value="<?php echo $this->optionsSerialized->phrases['wc_msg_required_fields']; ?>" name="wc_msg_required_fields" id="wc_msg_required_fields" /></td>
69
+ </tr>
70
+ </tbody>
71
+ </table>
72
  </div>
options/tools-layouts/tools-other.php CHANGED
@@ -6,7 +6,7 @@ $notHashedDataCount = intval($this->dbManager->getNotHashedIpCount());
6
 
7
  if ($notHashedDataCount) {
8
  $disabled = '';
9
- $notHasedStartId = $this->dbManager->getNotHashedStartId();
10
  } else {
11
  $disabled = 'disabled="disabled"';
12
  $notHasedStartId = 0;
6
 
7
  if ($notHashedDataCount) {
8
  $disabled = '';
9
+ $notHasedStartId = intval($this->dbManager->getNotHashedStartId());
10
  } else {
11
  $disabled = 'disabled="disabled"';
12
  $notHasedStartId = 0;
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
  === Comments - wpDiscuz ===
2
  Contributors: gVectors Team
3
- Tags: comment, comments, ajax comments, custom comment form, custom comment field
4
  Requires at least: 4.4
5
  Tested up to: 4.9
6
- Stable tag: 5.1.1
7
  Requires PHP: 5.4 and higher
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -174,6 +174,28 @@ Nothing will be lost! **Comments - wpDiscuz** will show all old comments.
174
 
175
  == Changelog ==
176
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
177
  = Comments - wpDiscuz v5.1.1 =
178
 
179
  Please follow to this instruction to create an agreement checkbox for GDPR compliance:
@@ -194,18 +216,6 @@ Please follow to this instruction to create a Cookies Consent checkbox:
194
  * Fixed Bug: Update process overloads MySQL server on websites with a large database
195
 
196
 
197
- IMPORTANT!
198
-
199
- - Please delete all caches and press CTRL+F5 on ebsite front-end after updating wpDiscuz
200
- - wpDiscuz uses FontAwesome version 5. If you have created custom comment fields with custom icons, please edit and update with new version icons.
201
- - Please update all addons once the wpDiscuz is updated to 5 version. Old addons are not compatible with wpDiscuz 5.
202
- - If you have customized wpDiscuz CSS or comment walker php file in WordPress theme folder please remove those. wpDiscuz 5.x.x versions don't support old template files.
203
- - If you have JetPack installed please deactivate Jetpack comments, it affects wpDiscuz
204
- - If you have a Cache Plugin, please delete all caches after wpDiscuz update.
205
- - If you use CDN and found some issue please purge it.
206
- - If your server PHP version is lower than 5.4, [please change it to higher](https://wordpress.org/support/topic/wpdiscuz-4-requires-php-5-4-and-higher/)
207
-
208
-
209
  = Comments - wpDiscuz v5.1.0 =
210
 
211
  * Added: [Documentation -beta-](https://wpdiscuz.com/docs/wpdiscuz-documentation/)
1
  === Comments - wpDiscuz ===
2
  Contributors: gVectors Team
3
+ Tags: GDPR, comments, ajax comments, custom comment form, custom comment field
4
  Requires at least: 4.4
5
  Tested up to: 4.9
6
+ Stable tag: 5.1.2
7
  Requires PHP: 5.4 and higher
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
174
 
175
  == Changelog ==
176
 
177
+
178
+ = Comments - wpDiscuz v5.1.2 =
179
+
180
+ * Fixed Bug : Quotes in emails
181
+ * Fixed Bug : Problems with hashing user IP addresses
182
+ * Fixed Bug : Comment styling issues after editing
183
+ * Fixed Bug : Social login issue
184
+ * Fixed Bug : Cookies Consent checkbox
185
+
186
+
187
+ IMPORTANT!
188
+
189
+ - Please delete all caches and press CTRL+F5 on ebsite front-end after updating wpDiscuz
190
+ - wpDiscuz uses FontAwesome version 5. If you have created custom comment fields with custom icons, please edit and update with new version icons.
191
+ - Please update all addons once the wpDiscuz is updated to 5 version. Old addons are not compatible with wpDiscuz 5.
192
+ - If you have customized wpDiscuz CSS or comment walker php file in WordPress theme folder please remove those. wpDiscuz 5.x.x versions don't support old template files.
193
+ - If you have JetPack installed please deactivate Jetpack comments, it affects wpDiscuz
194
+ - If you have a Cache Plugin, please delete all caches after wpDiscuz update.
195
+ - If you use CDN and found some issue please purge it.
196
+ - If your server PHP version is lower than 5.4, [please change it to higher](https://wordpress.org/support/topic/wpdiscuz-4-requires-php-5-4-and-higher/)
197
+
198
+
199
  = Comments - wpDiscuz v5.1.1 =
200
 
201
  Please follow to this instruction to create an agreement checkbox for GDPR compliance:
216
  * Fixed Bug: Update process overloads MySQL server on websites with a large database
217
 
218
 
 
 
 
 
 
 
 
 
 
 
 
 
219
  = Comments - wpDiscuz v5.1.0 =
220
 
221
  * Added: [Documentation -beta-](https://wpdiscuz.com/docs/wpdiscuz-documentation/)
templates/comment/class.WpdiscuzWalker.php CHANGED
@@ -99,13 +99,13 @@ class WpdiscuzWalker extends Walker_Comment implements WpDiscuzConstants {
99
  $userKey = $comment->user_id . '_' . $comment->comment_author_email;
100
  if (isset($this->users[$userKey])) {
101
  $user = $this->users[$userKey];
102
- } else {
103
  if ($this->optionsSerialized->isUserByEmail) {
104
  $user = get_user_by('email', $comment->comment_author_email);
105
  } else {
106
  $user = $comment->user_id ? get_user_by('id', $comment->user_id) : '';
107
  }
108
- $this->users[$userKey] = $user;
109
  }
110
 
111
  if ($user) {
@@ -127,7 +127,7 @@ class WpdiscuzWalker extends Walker_Comment implements WpDiscuzConstants {
127
  foreach ($user->roles as $role) {
128
  if (array_key_exists($role, $blogRoles)) {
129
  $authorClass = 'wc-blog-user wc-blog-' . $role;
130
- $rolePhrase = $this->optionsSerialized->phrases['wc_blog_role_' . $role];
131
  $author_title = apply_filters('wpdiscuz_user_label', $rolePhrase, $user);
132
  break;
133
  }
@@ -255,14 +255,15 @@ class WpdiscuzWalker extends Walker_Comment implements WpDiscuzConstants {
255
  } else {
256
  $twitt_content = '';
257
  }
 
258
  $twitt_content = urlencode($twitt_content);
259
  $twCommentLink = urlencode($commentLink);
260
  $output .= '<wpdtip>';
261
  $output .= ( $this->optionsSerialized->enableFbShare && $this->optionsSerialized->fbAppID) ? '<span class="wc_fb"><i class="fab fa-facebook-f wpf-cta" aria-hidden="true" title="' . $this->optionsSerialized->phrases['wc_share_facebook'] . '"></i></span>' : '';
262
  $output .= $this->optionsSerialized->enableTwitterShare ? '<a class="wc_tw" target="_blank" href="https://twitter.com/intent/tweet?text=' . $twitt_content . '&url=' . $twCommentLink . '" title="' . $this->optionsSerialized->phrases['wc_share_twitter'] . '"><i class="fab fa-twitter wpf-cta" aria-hidden="true"></i></a>' : '';
263
- $output .= $this->optionsSerialized->enableGoogleShare ? '<a class="wc_go" target="_blank" href="https://plus.google.com/share?url=' . get_permalink($comment->comment_post_ID) . '" title="' . $this->optionsSerialized->phrases['wc_share_google'] . '"><i class="fab fa-google wpf-cta" aria-hidden="true"></i></a>' : '';
264
- $output .= $this->optionsSerialized->enableVkShare ? '<a class="wc_vk" target="_blank" href="http://vk.com/share.php?url=' . get_permalink($comment->comment_post_ID) . '" title="' . $this->optionsSerialized->phrases['wc_share_vk'] . '"><i class="fab fa-vk wpf-cta" aria-hidden="true"></i>' : '';
265
- $output .= $this->optionsSerialized->enableOkShare ? '<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="fab fa-odnoklassniki wpf-cta" aria-hidden="true"></i></a>' : '';
266
  $output .= '</wpdtip></div>';
267
  }
268
 
99
  $userKey = $comment->user_id . '_' . $comment->comment_author_email;
100
  if (isset($this->users[$userKey])) {
101
  $user = $this->users[$userKey];
102
+ } else {
103
  if ($this->optionsSerialized->isUserByEmail) {
104
  $user = get_user_by('email', $comment->comment_author_email);
105
  } else {
106
  $user = $comment->user_id ? get_user_by('id', $comment->user_id) : '';
107
  }
108
+ $this->users[$userKey] = $user;
109
  }
110
 
111
  if ($user) {
127
  foreach ($user->roles as $role) {
128
  if (array_key_exists($role, $blogRoles)) {
129
  $authorClass = 'wc-blog-user wc-blog-' . $role;
130
+ $rolePhrase = isset($this->optionsSerialized->phrases['wc_blog_role_' . $role]) ? $this->optionsSerialized->phrases['wc_blog_role_' . $role] : '';
131
  $author_title = apply_filters('wpdiscuz_user_label', $rolePhrase, $user);
132
  break;
133
  }
255
  } else {
256
  $twitt_content = '';
257
  }
258
+ $postLink = get_permalink($comment->comment_post_ID);
259
  $twitt_content = urlencode($twitt_content);
260
  $twCommentLink = urlencode($commentLink);
261
  $output .= '<wpdtip>';
262
  $output .= ( $this->optionsSerialized->enableFbShare && $this->optionsSerialized->fbAppID) ? '<span class="wc_fb"><i class="fab fa-facebook-f wpf-cta" aria-hidden="true" title="' . $this->optionsSerialized->phrases['wc_share_facebook'] . '"></i></span>' : '';
263
  $output .= $this->optionsSerialized->enableTwitterShare ? '<a class="wc_tw" target="_blank" href="https://twitter.com/intent/tweet?text=' . $twitt_content . '&url=' . $twCommentLink . '" title="' . $this->optionsSerialized->phrases['wc_share_twitter'] . '"><i class="fab fa-twitter wpf-cta" aria-hidden="true"></i></a>' : '';
264
+ $output .= $this->optionsSerialized->enableGoogleShare ? '<a class="wc_go" target="_blank" href="https://plus.google.com/share?url=' . $postLink . '" title="' . $this->optionsSerialized->phrases['wc_share_google'] . '"><i class="fab fa-google wpf-cta" aria-hidden="true"></i></a>' : '';
265
+ $output .= $this->optionsSerialized->enableVkShare ? '<a class="wc_vk" target="_blank" href="http://vk.com/share.php?url=' . $postLink . '" title="' . $this->optionsSerialized->phrases['wc_share_vk'] . '"><i class="fab fa-vk wpf-cta" aria-hidden="true"></i></a>' : '';
266
+ $output .= $this->optionsSerialized->enableOkShare ? '<a class="wc_ok" target="_blank" href="http://www.odnoklassniki.ru/dk?st.cmd=addShare&st.s=1&st._surl=' . $postLink . '" title=""><i class="fab fa-odnoklassniki wpf-cta" aria-hidden="true"></i></a>' : '';
267
  $output .= '</wpdtip></div>';
268
  }
269
 
utils/class.WpdiscuzEmailHelper.php CHANGED
@@ -95,7 +95,7 @@ class WpdiscuzEmailHelper implements WpDiscuzConstants {
95
  $headers = array();
96
  $mailContentType = apply_filters('wp_mail_content_type', 'text/html');
97
  $fromName = apply_filters('wp_mail_from_name', $blogTitle);
98
-
99
  $parsedUrl = parse_url($siteUrl);
100
  $domain = isset($parsedUrl['host']) ? $parsedUrl['host'] : '';
101
  $fromEmail = 'no-reply@' . $domain;
@@ -180,7 +180,7 @@ class WpdiscuzEmailHelper implements WpDiscuzConstants {
180
  $headers = array();
181
  $mailContentType = apply_filters('wp_mail_content_type', 'text/html');
182
  $fromName = apply_filters('wp_mail_from_name', $blogTitle);
183
-
184
  $parsedUrl = parse_url($siteUrl);
185
  $domain = isset($parsedUrl['host']) ? $parsedUrl['host'] : '';
186
  $fromEmail = 'no-reply@' . $domain;
@@ -356,6 +356,7 @@ class WpdiscuzEmailHelper implements WpDiscuzConstants {
356
  $headers = array();
357
  $mailContentType = apply_filters('wp_mail_content_type', 'text/html');
358
  $fromName = apply_filters('wp_mail_from_name', $blogTitle);
 
359
  $parsedUrl = parse_url($siteUrl);
360
  $domain = isset($parsedUrl['host']) ? $parsedUrl['host'] : '';
361
  $fromEmail = 'no-reply@' . $domain;
95
  $headers = array();
96
  $mailContentType = apply_filters('wp_mail_content_type', 'text/html');
97
  $fromName = apply_filters('wp_mail_from_name', $blogTitle);
98
+ $fromName = html_entity_decode($fromName, ENT_QUOTES);
99
  $parsedUrl = parse_url($siteUrl);
100
  $domain = isset($parsedUrl['host']) ? $parsedUrl['host'] : '';
101
  $fromEmail = 'no-reply@' . $domain;
180
  $headers = array();
181
  $mailContentType = apply_filters('wp_mail_content_type', 'text/html');
182
  $fromName = apply_filters('wp_mail_from_name', $blogTitle);
183
+ $fromName = html_entity_decode($fromName, ENT_QUOTES);
184
  $parsedUrl = parse_url($siteUrl);
185
  $domain = isset($parsedUrl['host']) ? $parsedUrl['host'] : '';
186
  $fromEmail = 'no-reply@' . $domain;
356
  $headers = array();
357
  $mailContentType = apply_filters('wp_mail_content_type', 'text/html');
358
  $fromName = apply_filters('wp_mail_from_name', $blogTitle);
359
+ $fromName = html_entity_decode($fromName, ENT_QUOTES);
360
  $parsedUrl = parse_url($siteUrl);
361
  $domain = isset($parsedUrl['host']) ? $parsedUrl['host'] : '';
362
  $fromEmail = 'no-reply@' . $domain;
utils/class.WpdiscuzHelperAjax.php CHANGED
@@ -114,11 +114,13 @@ class WpdiscuzHelperAjax implements WpDiscuzConstants {
114
  $response['code'] = 'dismiss_and_deactivate';
115
  } else if (isset($data['deactivation_reason']) && ($reason = trim($data['deactivation_reason']))) {
116
  $pluginData = get_plugin_data(WPDISCUZ_DIR_PATH . "/class.WpdiscuzCore.php");
 
117
  $to = 'feedback@wpdiscuz.com';
118
  $subject = '[wpDiscuz Feedback - ' . $pluginData['Version'] . '] - ' . $reason;
119
  $headers = array();
120
  $contentType = 'text/html';
121
- $fromName = apply_filters('wp_mail_from_name', get_option('blogname'));
 
122
  $siteUrl = get_site_url();
123
  $parsedUrl = parse_url($siteUrl);
124
  $domain = isset($parsedUrl['host']) ? $parsedUrl['host'] : '';
@@ -176,13 +178,13 @@ class WpdiscuzHelperAjax implements WpDiscuzConstants {
176
  $notHashedCount = isset($data['not-hashed-count']) ? intval($data['not-hashed-count']) : 0;
177
  $notHashedStartId = isset($data['not-hashed-start-id']) ? intval($data['not-hashed-start-id']) : 0;
178
  $nonce = isset($data['_wpnonce']) ? trim($data['_wpnonce']) : '';
179
- if (wp_verify_nonce($nonce, 'wc_tools_form') && $notHashedCount && $notHashedStartId) {
180
  $notHashedVoteData = $this->dbManager->getNotHashedVoteData($notHashedStartId, $limit);
181
  if ($notHashedVoteData) {
182
  $this->dbManager->hashVoteIps($notHashedVoteData);
183
  ++$step;
184
  $progress = $step * $limit * 100 / $notHashedCount;
185
- $response['progress'] = intval($progress);
186
  $response['startId'] = $notHashedVoteData[count($notHashedVoteData) - 1];
187
  } else {
188
  $response['progress'] = 100;
@@ -280,6 +282,7 @@ class WpdiscuzHelperAjax implements WpDiscuzConstants {
280
  $blogTitle = get_option('blogname');
281
  $mailContentType = apply_filters('wp_mail_content_type', 'text/html');
282
  $fromName = apply_filters('wp_mail_from_name', $blogTitle);
 
283
  $parsedUrl = parse_url($siteUrl);
284
  $domain = isset($parsedUrl['host']) ? $parsedUrl['host'] : '';
285
  $fromEmail = 'no-reply@' . $domain;
114
  $response['code'] = 'dismiss_and_deactivate';
115
  } else if (isset($data['deactivation_reason']) && ($reason = trim($data['deactivation_reason']))) {
116
  $pluginData = get_plugin_data(WPDISCUZ_DIR_PATH . "/class.WpdiscuzCore.php");
117
+ $blogTitle = get_option('blogname');
118
  $to = 'feedback@wpdiscuz.com';
119
  $subject = '[wpDiscuz Feedback - ' . $pluginData['Version'] . '] - ' . $reason;
120
  $headers = array();
121
  $contentType = 'text/html';
122
+ $fromName = apply_filters('wp_mail_from_name', $blogTitle);
123
+ $fromName = html_entity_decode($fromName, ENT_QUOTES);
124
  $siteUrl = get_site_url();
125
  $parsedUrl = parse_url($siteUrl);
126
  $domain = isset($parsedUrl['host']) ? $parsedUrl['host'] : '';
178
  $notHashedCount = isset($data['not-hashed-count']) ? intval($data['not-hashed-count']) : 0;
179
  $notHashedStartId = isset($data['not-hashed-start-id']) ? intval($data['not-hashed-start-id']) : 0;
180
  $nonce = isset($data['_wpnonce']) ? trim($data['_wpnonce']) : '';
181
+ if (wp_verify_nonce($nonce, 'wc_tools_form') && $notHashedCount && $notHashedStartId >= 0) {
182
  $notHashedVoteData = $this->dbManager->getNotHashedVoteData($notHashedStartId, $limit);
183
  if ($notHashedVoteData) {
184
  $this->dbManager->hashVoteIps($notHashedVoteData);
185
  ++$step;
186
  $progress = $step * $limit * 100 / $notHashedCount;
187
+ $response['progress'] = ($p = intval($progress)) > 100 ? 100 : $p;
188
  $response['startId'] = $notHashedVoteData[count($notHashedVoteData) - 1];
189
  } else {
190
  $response['progress'] = 100;
282
  $blogTitle = get_option('blogname');
283
  $mailContentType = apply_filters('wp_mail_content_type', 'text/html');
284
  $fromName = apply_filters('wp_mail_from_name', $blogTitle);
285
+ $fromName = html_entity_decode($fromName, ENT_QUOTES);
286
  $parsedUrl = parse_url($siteUrl);
287
  $domain = isset($parsedUrl['host']) ? $parsedUrl['host'] : '';
288
  $fromEmail = 'no-reply@' . $domain;