Comments – wpDiscuz - Version 5.1.5

Version Description

Download this release

Release Info

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

Code changes from version 5.1.4 to 5.1.5

assets/js/wpdiscuz.js CHANGED
@@ -29,6 +29,7 @@ jQuery(document).ready(function ($) {
29
  var wpdCookiesConsent = true;
30
  var wpdiscuzCookiehash = wpdiscuzAjaxObj.wpdiscuz_options.cookiehash;
31
  var isLoadOnlyParentComments = wpdiscuzAjaxObj.wpdiscuz_options.isLoadOnlyParentComments;
 
32
  var wpdiscuzAgreementFields = [];
33
  loginButtonsClone();
34
 
@@ -56,7 +57,7 @@ jQuery(document).ready(function ($) {
56
  $(document).delegate('.wc-reply-button', 'click', function () {
57
  wpdiscuzReplyButton = $(this);
58
  if ($(this).hasClass('wpdiscuz-clonned')) {
59
- $('#wc-secondary-form-wrapper-' + getUniqueID($(this), 0)).slideToggle(700);
60
  } else {
61
  cloneSecondaryForm($(this));
62
  }
@@ -70,7 +71,7 @@ jQuery(document).ready(function ($) {
70
  $(document).delegate('textarea.wc_comment', 'focus', function () {
71
  var parent = $(this).parents('.wc-form-wrapper');
72
  $('.commentTextMaxLength', parent).show();
73
- $('.wc-form-footer', parent).slideDown(700);
74
  });
75
 
76
  $(document).delegate('#wpcomm textarea', 'focus', function () {
@@ -133,7 +134,7 @@ jQuery(document).ready(function ($) {
133
  });
134
 
135
  $(document).delegate('.wpdiscuz-sbs-wrap', 'click', function () {
136
- $('.wpdiscuz-subscribe-bar').slideToggle(500);
137
  });
138
  //============================== CAPTCHA ============================== //
139
  $(document).delegate('.wc_captcha_refresh_img', 'click', function (e) {
@@ -271,7 +272,7 @@ jQuery(document).ready(function ($) {
271
  data.append('wpdiscuz_zs', wpdiscuzAjaxObj.wpdiscuz_options.wpdiscuz_zs);
272
  }
273
 
274
- if ($('.wpd-cookies-chackbox', wcForm).length && !$('.wpd-cookies-chackbox', wcForm).prop("checked")) {
275
  wpdCookiesConsent = false;
276
  }
277
 
@@ -319,7 +320,7 @@ jQuery(document).ready(function ($) {
319
  if (isCookiesEnabled && wpdCookiesConsent) {
320
  addCookie(wcForm, obj);
321
  } else if (!wpdCookiesConsent) {
322
- $('.wpd-cookies-chackbox').removeAttr('checked');
323
  }
324
  wcForm.get(0).reset();
325
  setCookieInForm(obj);
@@ -425,8 +426,8 @@ jQuery(document).ready(function ($) {
425
  Cookies.set('comment_author_url_' + wpdiscuzCookiehash, weburl, {expires: storeCommenterData, path: '/'});
426
  }
427
  }
428
- if ($('.wpd-cookies-chackbox').length) {
429
- $('.wpd-cookies-chackbox').attr('checked', 'checked');
430
  }
431
  }
432
  //============================== ADD COMMENT FUNCTION ============================== //
@@ -914,7 +915,7 @@ jQuery(document).ready(function ($) {
914
  $('#wpdiscuz_form_anchor-' + uniqueId).before(replaceUniqueId(uniqueId));
915
  var secondaryFormWrapper = $('#wc-secondary-form-wrapper-' + uniqueId);
916
  //wpdiscuzReplaceValidationUI($('.wc_comm_form', secondaryFormWrapper)[0]);
917
- secondaryFormWrapper.slideToggle(700, function () {
918
  field.addClass('wpdiscuz-clonned');
919
  });
920
  changeCaptchaImage($('.wc_captcha_refresh_img', secondaryFormWrapper));
@@ -1058,53 +1059,53 @@ jQuery(document).ready(function ($) {
1058
  //============================== FUNCTIONS ============================== //
1059
 
1060
  //=================== FORM VALIDATION ================================//
1061
- /* function wpdiscuzReplaceValidationUI(form) {
1062
- form.addEventListener("invalid", function (event) {
1063
- event.preventDefault();
1064
- }, true);
1065
- form.addEventListener("submit", function (event) {
1066
- if (!this.checkValidity()) {
1067
- event.preventDefault();
1068
- }
1069
- });
1070
- }
1071
-
1072
- $(document).delegate('.wc_comm_submit, .wc_save_edited_comment', 'click', function () {
1073
- var curentForm = $(this).parents('form');
1074
- var invalidFields = $(':invalid', curentForm),
1075
- errorMessages = $('.error-message', curentForm),
1076
- parent;
1077
-
1078
- for (var i = 0; i < errorMessages.length; i++) {
1079
- errorMessages[ i ].parentNode.removeChild(errorMessages[ i ]);
1080
- }
1081
- for (var i = 0; i < invalidFields.length; i++) {
1082
- parent = invalidFields[ i ].parentNode;
1083
- var oldMsg = parent.querySelector('.wpd-field-invalid');
1084
- if (oldMsg) {
1085
- parent.removeChild(oldMsg);
1086
- }
1087
- if (invalidFields[ i ].validationMessage !== '') {
1088
- parent.insertAdjacentHTML("beforeend", "<div class='wpd-field-invalid'><span>" +
1089
- invalidFields[ i ].validationMessage +
1090
- "</span></div>");
1091
- }
1092
- }
1093
- });
1094
-
1095
- function wpdiscuzRemoveError(field) {
1096
- var wpdiscuzErrorDiv = $(field).parents('div.wpdiscuz-item').find('.wpd-field-invalid');
1097
- if (wpdiscuzErrorDiv) {
1098
- wpdiscuzErrorDiv.remove();
1099
- }
1100
- }
1101
- $(document).delegate('.wpdiscuz-item input,.wpdiscuz-item textarea,.wpdiscuz-item select', 'click', function () {
1102
- wpdiscuzRemoveError($(this));
1103
- });
1104
-
1105
- $(document).delegate('.wpdiscuz-item input,.wpdiscuz-item textarea,.wpdiscuz-item select', 'focus', function () {
1106
- wpdiscuzRemoveError($(this));
1107
- });*/
1108
 
1109
  $(document).delegate('.wpd-required-group', 'change', function () {
1110
  if ($('input:checked', this).length !== 0) {
@@ -1228,8 +1229,10 @@ jQuery(document).ready(function ($) {
1228
  var btn = $(this);
1229
  $('.fas', btn).addClass('fa-pulse fa-spinner');
1230
  var data = new FormData();
1231
- data.append('action', 'wpdMostReacted');
1232
- var ajax = getAjaxObj(false, data);
 
 
1233
 
1234
  ajax.done(function (response) {
1235
  try {
@@ -1265,8 +1268,10 @@ jQuery(document).ready(function ($) {
1265
  var btn = $(this);
1266
  $('.fab', btn).addClass('fas fa-pulse fa-spinner');
1267
  var data = new FormData();
1268
- data.append('action', 'wpdHottest');
1269
- var ajax = getAjaxObj(false, data);
 
 
1270
 
1271
  ajax.done(function (response) {
1272
  try {
@@ -1302,7 +1307,7 @@ jQuery(document).ready(function ($) {
1302
  });
1303
 
1304
  function addAgreementInCookie(wcForm) {
1305
- $('.wpd-agreement-chackbox', wcForm).each(function () {
1306
  if ($(this).hasClass('wpd_agreement_hide') && isCookiesEnabled && $(this).prop('checked')) {
1307
  Cookies.set($(this).attr('name') + '_' + wpdiscuzCookiehash, 1, {expires: 30, path: '/'});
1308
  $('input[name=' + $(this).attr('name') + ']').each(function () {
@@ -1343,7 +1348,7 @@ jQuery(document).ready(function ($) {
1343
  btn.removeClass('wc-follow-active');
1344
  if (r.data.followTip) {
1345
  $('wpdtip', btn).html(r.data.followTip);
1346
- }
1347
  if (r.data && r.data.followClass) {
1348
  btn.addClass(r.data.followClass);
1349
  }
@@ -1375,4 +1380,23 @@ jQuery(document).ready(function ($) {
1375
  });
1376
  }
1377
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1378
  });
29
  var wpdCookiesConsent = true;
30
  var wpdiscuzCookiehash = wpdiscuzAjaxObj.wpdiscuz_options.cookiehash;
31
  var isLoadOnlyParentComments = wpdiscuzAjaxObj.wpdiscuz_options.isLoadOnlyParentComments;
32
+ var enableDropAnimation = wpdiscuzAjaxObj.wpdiscuz_options.enableDropAnimation ? 500 : 0;
33
  var wpdiscuzAgreementFields = [];
34
  loginButtonsClone();
35
 
57
  $(document).delegate('.wc-reply-button', 'click', function () {
58
  wpdiscuzReplyButton = $(this);
59
  if ($(this).hasClass('wpdiscuz-clonned')) {
60
+ $('#wc-secondary-form-wrapper-' + getUniqueID($(this), 0)).slideToggle(enableDropAnimation);
61
  } else {
62
  cloneSecondaryForm($(this));
63
  }
71
  $(document).delegate('textarea.wc_comment', 'focus', function () {
72
  var parent = $(this).parents('.wc-form-wrapper');
73
  $('.commentTextMaxLength', parent).show();
74
+ $('.wc-form-footer', parent).slideDown(enableDropAnimation);
75
  });
76
 
77
  $(document).delegate('#wpcomm textarea', 'focus', function () {
134
  });
135
 
136
  $(document).delegate('.wpdiscuz-sbs-wrap', 'click', function () {
137
+ $('.wpdiscuz-subscribe-bar').slideToggle(enableDropAnimation);
138
  });
139
  //============================== CAPTCHA ============================== //
140
  $(document).delegate('.wc_captcha_refresh_img', 'click', function (e) {
272
  data.append('wpdiscuz_zs', wpdiscuzAjaxObj.wpdiscuz_options.wpdiscuz_zs);
273
  }
274
 
275
+ if ($('.wpd-cookies-checkbox', wcForm).length && !$('.wpd-cookies-checkbox', wcForm).prop("checked")) {
276
  wpdCookiesConsent = false;
277
  }
278
 
320
  if (isCookiesEnabled && wpdCookiesConsent) {
321
  addCookie(wcForm, obj);
322
  } else if (!wpdCookiesConsent) {
323
+ $('.wpd-cookies-checkbox').removeAttr('checked');
324
  }
325
  wcForm.get(0).reset();
326
  setCookieInForm(obj);
426
  Cookies.set('comment_author_url_' + wpdiscuzCookiehash, weburl, {expires: storeCommenterData, path: '/'});
427
  }
428
  }
429
+ if ($('.wpd-cookies-checkbox').length) {
430
+ $('.wpd-cookies-checkbox').attr('checked', 'checked');
431
  }
432
  }
433
  //============================== ADD COMMENT FUNCTION ============================== //
915
  $('#wpdiscuz_form_anchor-' + uniqueId).before(replaceUniqueId(uniqueId));
916
  var secondaryFormWrapper = $('#wc-secondary-form-wrapper-' + uniqueId);
917
  //wpdiscuzReplaceValidationUI($('.wc_comm_form', secondaryFormWrapper)[0]);
918
+ secondaryFormWrapper.slideToggle(enableDropAnimation, function () {
919
  field.addClass('wpdiscuz-clonned');
920
  });
921
  changeCaptchaImage($('.wc_captcha_refresh_img', secondaryFormWrapper));
1059
  //============================== FUNCTIONS ============================== //
1060
 
1061
  //=================== FORM VALIDATION ================================//
1062
+ /* function wpdiscuzReplaceValidationUI(form) {
1063
+ form.addEventListener("invalid", function (event) {
1064
+ event.preventDefault();
1065
+ }, true);
1066
+ form.addEventListener("submit", function (event) {
1067
+ if (!this.checkValidity()) {
1068
+ event.preventDefault();
1069
+ }
1070
+ });
1071
+ }
1072
+
1073
+ $(document).delegate('.wc_comm_submit, .wc_save_edited_comment', 'click', function () {
1074
+ var curentForm = $(this).parents('form');
1075
+ var invalidFields = $(':invalid', curentForm),
1076
+ errorMessages = $('.error-message', curentForm),
1077
+ parent;
1078
+
1079
+ for (var i = 0; i < errorMessages.length; i++) {
1080
+ errorMessages[ i ].parentNode.removeChild(errorMessages[ i ]);
1081
+ }
1082
+ for (var i = 0; i < invalidFields.length; i++) {
1083
+ parent = invalidFields[ i ].parentNode;
1084
+ var oldMsg = parent.querySelector('.wpd-field-invalid');
1085
+ if (oldMsg) {
1086
+ parent.removeChild(oldMsg);
1087
+ }
1088
+ if (invalidFields[ i ].validationMessage !== '') {
1089
+ parent.insertAdjacentHTML("beforeend", "<div class='wpd-field-invalid'><span>" +
1090
+ invalidFields[ i ].validationMessage +
1091
+ "</span></div>");
1092
+ }
1093
+ }
1094
+ });
1095
+
1096
+ function wpdiscuzRemoveError(field) {
1097
+ var wpdiscuzErrorDiv = $(field).parents('div.wpdiscuz-item').find('.wpd-field-invalid');
1098
+ if (wpdiscuzErrorDiv) {
1099
+ wpdiscuzErrorDiv.remove();
1100
+ }
1101
+ }
1102
+ $(document).delegate('.wpdiscuz-item input,.wpdiscuz-item textarea,.wpdiscuz-item select', 'click', function () {
1103
+ wpdiscuzRemoveError($(this));
1104
+ });
1105
+
1106
+ $(document).delegate('.wpdiscuz-item input,.wpdiscuz-item textarea,.wpdiscuz-item select', 'focus', function () {
1107
+ wpdiscuzRemoveError($(this));
1108
+ });*/
1109
 
1110
  $(document).delegate('.wpd-required-group', 'change', function () {
1111
  if ($('input:checked', this).length !== 0) {
1229
  var btn = $(this);
1230
  $('.fas', btn).addClass('fa-pulse fa-spinner');
1231
  var data = new FormData();
1232
+ data.append('action', 'wpdMostReactedComment');
1233
+ // data.append('action', 'wpdMostReacted');
1234
+ var ajax = getCustomAjaxObj(false, data);
1235
+ // var ajax = getAjaxObj(false, data);
1236
 
1237
  ajax.done(function (response) {
1238
  try {
1268
  var btn = $(this);
1269
  $('.fab', btn).addClass('fas fa-pulse fa-spinner');
1270
  var data = new FormData();
1271
+ data.append('action', 'wpdMostActiveThread');
1272
+ // data.append('action', 'wpdHottest');
1273
+ var ajax = getCustomAjaxObj(false, data);
1274
+ // var ajax = getAjaxObj(false, data);
1275
 
1276
  ajax.done(function (response) {
1277
  try {
1307
  });
1308
 
1309
  function addAgreementInCookie(wcForm) {
1310
+ $('.wpd-agreement-checkbox', wcForm).each(function () {
1311
  if ($(this).hasClass('wpd_agreement_hide') && isCookiesEnabled && $(this).prop('checked')) {
1312
  Cookies.set($(this).attr('name') + '_' + wpdiscuzCookiehash, 1, {expires: 30, path: '/'});
1313
  $('input[name=' + $(this).attr('name') + ']').each(function () {
1348
  btn.removeClass('wc-follow-active');
1349
  if (r.data.followTip) {
1350
  $('wpdtip', btn).html(r.data.followTip);
1351
+ }
1352
  if (r.data && r.data.followClass) {
1353
  btn.addClass(r.data.followClass);
1354
  }
1380
  });
1381
  }
1382
 
1383
+ /**
1384
+ * @param {type} action the action key
1385
+ * @param {type} data the request properties
1386
+ * @returns {jqXHR}
1387
+ */
1388
+ function getCustomAjaxObj(isShowTopLoading, data) {
1389
+ if (isShowTopLoading) {
1390
+ $('.wpdiscuz-loading-bar').show();
1391
+ }
1392
+ data.append('postId', wpdiscuzPostId);
1393
+ return $.ajax({
1394
+ type: 'POST',
1395
+ url: wpdiscuzAjaxObj.customAjaxUrl,
1396
+ data: data,
1397
+ contentType: false,
1398
+ processData: false,
1399
+ });
1400
+ }
1401
+
1402
  });
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.4
7
  * Author: gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)
8
  * Author URI: https://gvectors.com/
9
  * Plugin URI: http://wpdiscuz.com/
@@ -31,6 +31,8 @@ include_once 'forms/wpDiscuzForm.php';
31
  include_once 'utils/class.WpdiscuzCache.php';
32
  include_once 'utils/class.WpdiscuzHelperAjax.php';
33
 
 
 
34
  class WpdiscuzCore implements WpDiscuzConstants {
35
 
36
  public $dbManager;
@@ -443,7 +445,6 @@ class WpdiscuzCore implements WpDiscuzConstants {
443
  $website_url = $website_url ? urldecode($website_url) : '';
444
  $stickyComment = isset($_POST['wc_sticky_comment']) && ($sticky = intval($_POST['wc_sticky_comment'])) ? $sticky : '';
445
  $closedComment = isset($_POST['wc_closed_comment']) && ($closed = absint($_POST['wc_closed_comment'])) ? $closed : '';
446
- $author_ip = $this->helper->getRealIPAddr();
447
  $uid_data = $this->helper->getUIDData($uniqueId);
448
  $comment_parent = intval($uid_data[0]);
449
  $parentComment = $comment_parent ? get_comment($comment_parent) : null;
@@ -459,7 +460,6 @@ class WpdiscuzCore implements WpDiscuzConstants {
459
  'comment_author_email' => $email,
460
  'comment_content' => $comment_content,
461
  'comment_author_url' => $website_url,
462
- 'comment_author_IP' => $author_ip,
463
  'comment_agent' => $wc_user_agent,
464
  'comment_type' => $stickyComment ? self::WPDISCUZ_STICKY_COMMENT : '',
465
  'comment_karma' => $closedComment
@@ -592,12 +592,10 @@ class WpdiscuzCore implements WpDiscuzConstants {
592
  if ($trimmedContent != $comment->comment_content) {
593
  $trimmedContent = $this->helper->replaceCommentContentCode($trimmedContent);
594
  $commentContent = $this->helper->filterCommentText($trimmedContent);
595
- $author_ip = $this->helper->getRealIPAddr();
596
  $userAgent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '';
597
  $commentarr = array(
598
  'comment_ID' => $commentId,
599
  'comment_content' => $commentContent,
600
- 'comment_author_IP' => $author_ip,
601
  'comment_agent' => $userAgent,
602
  'comment_approved' => $comment->comment_approved
603
  );
@@ -1235,7 +1233,7 @@ class WpdiscuzCore implements WpDiscuzConstants {
1235
  wp_enqueue_script('jquery-form');
1236
  wp_register_script('wpdiscuz-ajax-js', plugins_url(WPDISCUZ_DIR_NAME . '/assets/js/wpdiscuz.js'), array('jquery'), $this->version);
1237
  wp_enqueue_script('wpdiscuz-ajax-js');
1238
- wp_localize_script('wpdiscuz-ajax-js', 'wpdiscuzAjaxObj', array('url' => admin_url('admin-ajax.php'), 'wpdiscuz_options' => $this->wpdiscuzOptionsJs));
1239
 
1240
  if ($this->optionsSerialized->isQuickTagsEnabled) {
1241
  wp_enqueue_script('quicktags');
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.5
7
  * Author: gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)
8
  * Author URI: https://gvectors.com/
9
  * Plugin URI: http://wpdiscuz.com/
31
  include_once 'utils/class.WpdiscuzCache.php';
32
  include_once 'utils/class.WpdiscuzHelperAjax.php';
33
 
34
+ //include_once 'utils/ajax/most-active-thread.php';
35
+
36
  class WpdiscuzCore implements WpDiscuzConstants {
37
 
38
  public $dbManager;
445
  $website_url = $website_url ? urldecode($website_url) : '';
446
  $stickyComment = isset($_POST['wc_sticky_comment']) && ($sticky = intval($_POST['wc_sticky_comment'])) ? $sticky : '';
447
  $closedComment = isset($_POST['wc_closed_comment']) && ($closed = absint($_POST['wc_closed_comment'])) ? $closed : '';
 
448
  $uid_data = $this->helper->getUIDData($uniqueId);
449
  $comment_parent = intval($uid_data[0]);
450
  $parentComment = $comment_parent ? get_comment($comment_parent) : null;
460
  'comment_author_email' => $email,
461
  'comment_content' => $comment_content,
462
  'comment_author_url' => $website_url,
 
463
  'comment_agent' => $wc_user_agent,
464
  'comment_type' => $stickyComment ? self::WPDISCUZ_STICKY_COMMENT : '',
465
  'comment_karma' => $closedComment
592
  if ($trimmedContent != $comment->comment_content) {
593
  $trimmedContent = $this->helper->replaceCommentContentCode($trimmedContent);
594
  $commentContent = $this->helper->filterCommentText($trimmedContent);
 
595
  $userAgent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '';
596
  $commentarr = array(
597
  'comment_ID' => $commentId,
598
  'comment_content' => $commentContent,
 
599
  'comment_agent' => $userAgent,
600
  'comment_approved' => $comment->comment_approved
601
  );
1233
  wp_enqueue_script('jquery-form');
1234
  wp_register_script('wpdiscuz-ajax-js', plugins_url(WPDISCUZ_DIR_NAME . '/assets/js/wpdiscuz.js'), array('jquery'), $this->version);
1235
  wp_enqueue_script('wpdiscuz-ajax-js');
1236
+ wp_localize_script('wpdiscuz-ajax-js', 'wpdiscuzAjaxObj', array('url' => admin_url('admin-ajax.php'), 'customAjaxUrl' => plugins_url(WPDISCUZ_DIR_NAME . '/utils/ajax/wpdiscuz-ajax.php'), 'wpdiscuz_options' => $this->wpdiscuzOptionsJs));
1237
 
1238
  if ($this->optionsSerialized->isQuickTagsEnabled) {
1239
  wp_enqueue_script('quicktags');
forms/wpdFormAttr/Field/AgreementCheckbox.php CHANGED
@@ -59,7 +59,7 @@ class AgreementCheckbox extends Field {
59
  $html .= '</td><td>';
60
  $required = $data['required'] ? ' wpd-required-group ' : '';
61
  $html .= '<div class="wpdiscuz-item ' . $required . ' wpd-field-group">';
62
- $html .= '<input checked="checked" id="' . $key . '-1_' . $uniqueId . '" type="checkbox" name="' . $key . '" value="1" class="' . $key . ' wpd-field wpd-agreement-chackbox '.$showAagainClass.'" > <label class="wpd-field-label wpd-cursor-pointer" for="' . $key . '-1_' . $uniqueId . '">' . $data['label'] . '</label>';
63
  $html .= '</div>';
64
  $html .= '</td></tr >';
65
  return $html;
@@ -75,7 +75,7 @@ class AgreementCheckbox extends Field {
75
  <div class="wpdiscuz-item wpd-field-group wpd-field-checkbox wpd-field-agreement wpd-field-single <?php echo $required; ?> <?php echo $hasDesc ? 'wpd-has-desc' : '' ?>">
76
  <div class="wpd-field-group-title">
77
  <div class="wpd-item">
78
- <input id="<?php echo $name . '-1_' . $uniqueId; ?>" type="checkbox" name="<?php echo $name; ?>" value="1" class="<?php echo $name; ?> wpd-field wpd-agreement-chackbox <?php echo $showAagainClass; ?>" <?php echo $args['required'] ? 'required' : ''; ?>>
79
  <label class="wpd-field-label wpd-cursor-pointer" for="<?php echo $name . '-1_' . $uniqueId; ?>"><?php echo $args['label']; ?></label>
80
  </div>
81
  </div>
59
  $html .= '</td><td>';
60
  $required = $data['required'] ? ' wpd-required-group ' : '';
61
  $html .= '<div class="wpdiscuz-item ' . $required . ' wpd-field-group">';
62
+ $html .= '<input checked="checked" id="' . $key . '-1_' . $uniqueId . '" type="checkbox" name="' . $key . '" value="1" class="' . $key . ' wpd-field wpd-agreement-checkbox '.$showAagainClass.'" > <label class="wpd-field-label wpd-cursor-pointer" for="' . $key . '-1_' . $uniqueId . '">' . $data['label'] . '</label>';
63
  $html .= '</div>';
64
  $html .= '</td></tr >';
65
  return $html;
75
  <div class="wpdiscuz-item wpd-field-group wpd-field-checkbox wpd-field-agreement wpd-field-single <?php echo $required; ?> <?php echo $hasDesc ? 'wpd-has-desc' : '' ?>">
76
  <div class="wpd-field-group-title">
77
  <div class="wpd-item">
78
+ <input id="<?php echo $name . '-1_' . $uniqueId; ?>" type="checkbox" name="<?php echo $name; ?>" value="1" class="<?php echo $name; ?> wpd-field wpd-agreement-checkbox <?php echo $showAagainClass; ?>" <?php echo $args['required'] ? 'required' : ''; ?>>
79
  <label class="wpd-field-label wpd-cursor-pointer" for="<?php echo $name . '-1_' . $uniqueId; ?>"><?php echo $args['label']; ?></label>
80
  </div>
81
  </div>
forms/wpdFormAttr/Field/CookiesConsent.php CHANGED
@@ -43,7 +43,7 @@ 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="<?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>
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-checkbox" />
47
  <label class="wpd-field-label wpd-cursor-pointer" for="<?php echo $name . '-1_' . $uniqueId; ?>"><?php echo $args['label']; ?></label>
48
  </div>
49
  </div>
forms/wpdFormAttr/Field/DefaultField/Captcha.php CHANGED
@@ -248,7 +248,7 @@ class Captcha extends Field {
248
  $mTime = substr($file, wpdFormConst::CAPTCHA_LENGTH + 1, 10);
249
  if (file_exists($fileName) && is_file($fileName) && $mTime) {
250
  $expired = $mTime + ($minutes * 60);
251
- if ($expired < current_time('timestamp') || $deactivate) {
252
  @unlink($fileName);
253
  }
254
  }
248
  $mTime = substr($file, wpdFormConst::CAPTCHA_LENGTH + 1, 10);
249
  if (file_exists($fileName) && is_file($fileName) && $mTime) {
250
  $expired = $mTime + ($minutes * 60);
251
+ if ($expired < time() || $deactivate) {
252
  @unlink($fileName);
253
  }
254
  }
includes/class.WpdiscuzDBManager.php CHANGED
@@ -54,7 +54,7 @@ class WpdiscuzDBManager implements WpDiscuzConstants {
54
  $sql = "CREATE TABLE `{$this->avatarsCache}`(`id` INT(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL DEFAULT 0, `user_email` VARCHAR(255) NOT NULL, `url` VARCHAR(255) NOT NULL, `hash` VARCHAR(255) NOT NULL, `maketime` INT(11) NOT NULL DEFAULT 0, `cached` TINYINT(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `user_id` (`user_id`), UNIQUE KEY `user_email` (`user_email`), KEY `url` (`url`), KEY `hash` (`hash`), KEY `maketime` (`maketime`), KEY `cached` (`cached`)) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci AUTO_INCREMENT=1;";
55
  maybe_create_table($this->avatarsCache, $sql);
56
 
57
- $sql = "CREATE TABLE `{$this->followUsers}` (`id` int(11) NOT NULL AUTO_INCREMENT, `post_id` int(11) NOT NULL DEFAULT '0', `user_id` int(11) NOT NULL DEFAULT '0', `user_email` varchar(125) NOT NULL, `user_name` varchar(255) NOT NULL, `follower_id` int(11) NOT NULL DEFAULT '0', `follower_email` varchar(125) NOT NULL, `follower_name` varchar(255) NOT NULL, `activation_key` varchar(32) NOT NULL, `confirm` tinyint(1) NOT NULL DEFAULT '0', `follow_timestamp` int(11) NOT NULL, `follow_date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `post_id` (`post_id`), KEY `user_id` (`user_id`), KEY `user_email` (`user_email`), KEY `follower_id` (`follower_id`), KEY `follower_email` (`follower_email`), KEY `confirm` (`confirm`), KEY `follow_timestamp` (`follow_timestamp`), UNIQUE KEY `follow_unique_key` (`user_email`, `follower_email`)) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;";
58
  maybe_create_table($this->followUsers, $sql);
59
  }
60
 
@@ -78,7 +78,7 @@ class WpdiscuzDBManager implements WpDiscuzConstants {
78
  public function createFollowUsersTable() {
79
  $this->initDB();
80
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
81
- $sql = "CREATE TABLE `{$this->followUsers}` (`id` int(11) NOT NULL AUTO_INCREMENT, `post_id` int(11) NOT NULL DEFAULT '0', `user_id` int(11) NOT NULL DEFAULT '0', `user_email` varchar(125) NOT NULL, `user_name` varchar(255) NOT NULL, `follower_id` int(11) NOT NULL DEFAULT '0', `follower_email` varchar(125) NOT NULL, `follower_name` varchar(255) NOT NULL, `activation_key` varchar(32) NOT NULL, `confirm` tinyint(1) NOT NULL DEFAULT '0', `follow_timestamp` int(11) NOT NULL, `follow_date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `post_id` (`post_id`), KEY `user_id` (`user_id`), KEY `user_email` (`user_email`), KEY `follower_id` (`follower_id`), KEY `follower_email` (`follower_email`), KEY `confirm` (`confirm`), KEY `follow_timestamp` (`follow_timestamp`), UNIQUE KEY `follow_unique_key` (`user_email`, `follower_email`)) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;";
82
  maybe_create_table($this->followUsers, $sql);
83
  }
84
 
54
  $sql = "CREATE TABLE `{$this->avatarsCache}`(`id` INT(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL DEFAULT 0, `user_email` VARCHAR(255) NOT NULL, `url` VARCHAR(255) NOT NULL, `hash` VARCHAR(255) NOT NULL, `maketime` INT(11) NOT NULL DEFAULT 0, `cached` TINYINT(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `user_id` (`user_id`), UNIQUE KEY `user_email` (`user_email`), KEY `url` (`url`), KEY `hash` (`hash`), KEY `maketime` (`maketime`), KEY `cached` (`cached`)) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci AUTO_INCREMENT=1;";
55
  maybe_create_table($this->avatarsCache, $sql);
56
 
57
+ $sql = "CREATE TABLE `{$this->followUsers}` (`id` int(11) NOT NULL AUTO_INCREMENT, `post_id` int(11) NOT NULL DEFAULT '0', `user_id` int(11) NOT NULL DEFAULT '0', `user_email` varchar(125) NOT NULL, `user_name` varchar(255) NOT NULL, `follower_id` int(11) NOT NULL DEFAULT '0', `follower_email` varchar(125) NOT NULL, `follower_name` varchar(255) NOT NULL, `activation_key` varchar(32) NOT NULL, `confirm` tinyint(1) NOT NULL DEFAULT '0', `follow_timestamp` int(11) NOT NULL, `follow_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `post_id` (`post_id`), KEY `user_id` (`user_id`), KEY `user_email` (`user_email`), KEY `follower_id` (`follower_id`), KEY `follower_email` (`follower_email`), KEY `confirm` (`confirm`), KEY `follow_timestamp` (`follow_timestamp`), UNIQUE KEY `follow_unique_key` (`user_email`, `follower_email`)) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;";
58
  maybe_create_table($this->followUsers, $sql);
59
  }
60
 
78
  public function createFollowUsersTable() {
79
  $this->initDB();
80
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
81
+ $sql = "CREATE TABLE `{$this->followUsers}` (`id` int(11) NOT NULL AUTO_INCREMENT, `post_id` int(11) NOT NULL DEFAULT '0', `user_id` int(11) NOT NULL DEFAULT '0', `user_email` varchar(125) NOT NULL, `user_name` varchar(255) NOT NULL, `follower_id` int(11) NOT NULL DEFAULT '0', `follower_email` varchar(125) NOT NULL, `follower_name` varchar(255) NOT NULL, `activation_key` varchar(32) NOT NULL, `confirm` tinyint(1) NOT NULL DEFAULT '0', `follow_timestamp` int(11) NOT NULL, `follow_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `post_id` (`post_id`), KEY `user_id` (`user_id`), KEY `user_email` (`user_email`), KEY `follower_id` (`follower_id`), KEY `follower_email` (`follower_email`), KEY `confirm` (`confirm`), KEY `follow_timestamp` (`follow_timestamp`), UNIQUE KEY `follow_unique_key` (`user_email`, `follower_email`)) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;";
82
  maybe_create_table($this->followUsers, $sql);
83
  }
84
 
languages/wpdiscuz-de_DE.po CHANGED
@@ -1,3677 +1,3677 @@
1
- msgid ""
2
- msgstr ""
3
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
4
- "Project-Id-Version: wpDiscuz\n"
5
- "POT-Creation-Date: 2018-05-30 22:54+0400\n"
6
- "PO-Revision-Date: 2018-07-07 22:27+0200\n"
7
- "Language-Team: \n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "X-Generator: Poedit 2.0.8\n"
12
- "X-Poedit-Basepath: ..\n"
13
- "X-Poedit-WPHeader: class.WpdiscuzCore.php\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
- "Last-Translator: scysys <scysys@outlook.com>\n"
19
- "Language: de_DE\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 "Alle 3 Stunden"
26
-
27
- #: class.WpdiscuzCore.php:262
28
- msgid "Every 48 hours"
29
- msgstr "Alle 48 Stunden"
30
-
31
- #: class.WpdiscuzCore.php:375
32
- msgid "We are sorry, but this comment cannot be posted. Please try later."
33
- msgstr ""
34
- "Es tut uns leid, aber dieser Kommentar kann nicht gepostet werden. Bitte "
35
- "versuchen Sie es später."
36
-
37
- #: class.WpdiscuzCore.php:443
38
- msgid "This is closed comment thread"
39
- msgstr "Dies ist ein geschlossenes Kommentar Thema"
40
-
41
- #: class.WpdiscuzCore.php:1096 class.WpdiscuzCore.php:1328
42
- msgid "Settings"
43
- msgstr "Einstellungen"
44
-
45
- #: class.WpdiscuzCore.php:1098 class.WpdiscuzCore.php:1330
46
- msgid "Phrases"
47
- msgstr "Übersetzungen"
48
-
49
- #: class.WpdiscuzCore.php:1100
50
- msgid "Tools"
51
- msgstr "Werkzeuge"
52
-
53
- #: class.WpdiscuzCore.php:1101 options/html-options.php:22
54
- #: options/html-options.php:64 options/options-layouts/settings-addons.php:14
55
- msgid "Addons"
56
- msgstr "Erweiterungen"
57
-
58
- #: class.WpdiscuzCore.php:1113
59
- msgid "Do you really want to reset all options?"
60
- msgstr "Möchten Sie wirklich alle Optionen zurücksetzen?"
61
-
62
- #: class.WpdiscuzCore.php:1114
63
- msgid "Do you really want to remove voting data?"
64
- msgstr "Möchten Sie wirklich die Voting-Daten entfernen?"
65
-
66
- #: class.WpdiscuzCore.php:1115
67
- msgid "Do you really want to reset phrases?"
68
- msgstr "Möchten Sie wirklich die Phrasen zurücksetzen?"
69
-
70
- #: class.WpdiscuzCore.php:1116
71
- msgid "Do you really want to delete gravatars cache?"
72
- msgstr "Möchten Sie den Gravatar-Cache wirklich löschen?"
73
-
74
- #: class.WpdiscuzCore.php:1117
75
- msgid "Do you really want to delete statistics cache?"
76
- msgstr "Möchten Sie den Statistik-Cache wirklich löschen?"
77
-
78
- #: class.WpdiscuzCore.php:1154
79
- msgid "Please check one of reasons before sending feedback!"
80
- msgstr "Bitte überprüfen Sie einen der Gründe, bevor Sie ein Feedback senden!"
81
-
82
- #: class.WpdiscuzCore.php:1155 utils/deactivation-reason-modal.php:58
83
- msgid "Please provide more information"
84
- msgstr "Bitte geben Sie weitere Informationen an"
85
-
86
- #: class.WpdiscuzCore.php:1402 options/phrases-layouts/phrases-comment.php:56
87
- msgid "Admin"
88
- msgstr "Admin"
89
-
90
- #: class.WpdiscuzCore.php:1404 class.WpdiscuzCore.php:1413
91
- #: options/phrases-layouts/phrases-comment.php:58
92
- msgid "Author"
93
- msgstr "Autor"
94
-
95
- #: class.WpdiscuzCore.php:1408 options/phrases-layouts/phrases-comment.php:64
96
- msgid "Member"
97
- msgstr "Mitglied"
98
-
99
- #: class.WpdiscuzCore.php:1414 options/phrases-layouts/phrases-comment.php:62
100
- msgid "Guest"
101
- msgstr "Gast"
102
-
103
- #: forms/wpDiscuzForm.php:96
104
- msgid "Invalid Data !!!"
105
- msgstr "Ungültige Daten !!!"
106
-
107
- #: forms/wpDiscuzForm.php:104 forms/wpDiscuzForm.php:152
108
- msgid "Forms"
109
- msgstr "Formulare"
110
-
111
- #: forms/wpDiscuzForm.php:105 options/html-phrases.php:22
112
- msgid "Form"
113
- msgstr "Formular"
114
-
115
- #: forms/wpDiscuzForm.php:106
116
- msgid "Add New"
117
- msgstr "Neu hinzufügen"
118
-
119
- #: forms/wpDiscuzForm.php:107
120
- msgid "Add New Form"
121
- msgstr "Neues Formular hinzufügen"
122
-
123
- #: forms/wpDiscuzForm.php:108
124
- msgid "Edit Form"
125
- msgstr "Formular bearbeiten"
126
-
127
- #: forms/wpDiscuzForm.php:109
128
- msgid "You did not create any forms yet"
129
- msgstr "Sie haben bisher keine Formulare erstellt"
130
-
131
- #: forms/wpDiscuzForm.php:110
132
- msgid "Nothing found in Trash"
133
- msgstr "Nichts im Papierkorb gefunden"
134
-
135
- #: forms/wpDiscuzForm.php:111
136
- msgid "Search Forms"
137
- msgstr "Formulare suchen"
138
-
139
- #: forms/wpDiscuzForm.php:166
140
- msgid "Title"
141
- msgstr "Titel"
142
-
143
- #: forms/wpDiscuzForm.php:167
144
- msgid "Post Types"
145
- msgstr "Beitragstypen"
146
-
147
- #: forms/wpDiscuzForm.php:168
148
- msgid "Post IDs"
149
- msgstr "Beitrags-ID"
150
-
151
- #: forms/wpDiscuzForm.php:169 forms/wpdFormAttr/Form.php:621
152
- msgid "Language"
153
- msgstr "Sprache"
154
-
155
- #: forms/wpDiscuzForm.php:170
156
- msgid "Date"
157
- msgstr "Datum"
158
-
159
- #: forms/wpDiscuzForm.php:215
160
- msgid "Field Types"
161
- msgstr "Feld-Typen"
162
-
163
- #: forms/wpDiscuzForm.php:216 forms/wpdFormAttr/Row.php:23
164
- msgid "Two column"
165
- msgstr "2 Spalten"
166
-
167
- #: forms/wpDiscuzForm.php:217 forms/wpdFormAttr/Field/Field.php:66
168
- #: forms/wpdFormAttr/Row.php:24
169
- msgid "Delete"
170
- msgstr "Löschen"
171
-
172
- #: forms/wpDiscuzForm.php:218 forms/wpdFormAttr/Row.php:25
173
- msgid "Move"
174
- msgstr "Verschieben"
175
-
176
- #: forms/wpDiscuzForm.php:219 forms/wpdFormAttr/Row.php:69
177
- msgid "Add Field"
178
- msgstr "Feld hinzufügen"
179
-
180
- #: forms/wpDiscuzForm.php:220 forms/wpdFormAttr/Field/Field.php:63
181
- #: options/class.WpdiscuzOptionsSerialized.php:779
182
- #: options/phrases-layouts/phrases-comment.php:19
183
- msgid "Edit"
184
- msgstr "Bearbeiten"
185
-
186
- #: forms/wpDiscuzForm.php:221
187
- msgid "You can not delete default field."
188
- msgstr "Das Standardpaket kann nicht gelöscht werden."
189
-
190
- #: forms/wpDiscuzForm.php:222
191
- msgid "You really want to delete this item ?"
192
- msgstr "Wollen Sie dieses Objekt wirklich löschen?"
193
-
194
- #: forms/wpDiscuzForm.php:229
195
- msgid "Permission Denied !!!"
196
- msgstr "Berechtigung verweigert !!!"
197
-
198
- #: forms/wpDiscuzForm.php:254 forms/wpdFormAttr/Form.php:591
199
- #: forms/wpdFormAttr/html/admin-form-fields-list.php:18
200
- #: options/options-layouts/settings-customfields.php:7
201
- msgid "Custom Fields"
202
- msgstr "Benutzerdefinierte Felder"
203
-
204
- #: forms/wpDiscuzForm.php:302
205
- msgid "Custom CSS"
206
- msgstr "Benutzerdefiniertes CSS"
207
-
208
- #: forms/wpDiscuzForm.php:358
209
- msgid "Default Form"
210
- msgstr "Standardformular"
211
-
212
- #: forms/wpDiscuzForm.php:391 forms/wpDiscuzForm.php:399
213
- #: forms/wpdFormAttr/Form.php:677
214
- msgid "Leave a Reply"
215
- msgstr "Hinterlasse einen Kommentar"
216
-
217
- #: forms/wpDiscuzForm.php:414 forms/wpdFormAttr/Field/AgreementCheckbox.php:12
218
- #: forms/wpdFormAttr/Field/CheckboxField.php:12
219
- #: forms/wpdFormAttr/Field/ColorField.php:12
220
- #: forms/wpdFormAttr/Field/CookiesConsent.php:14
221
- #: forms/wpdFormAttr/Field/DateField.php:12
222
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:27
223
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:19
224
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:18
225
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:65
226
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:18
227
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:18
228
- #: forms/wpdFormAttr/Field/NumberField.php:12
229
- #: forms/wpdFormAttr/Field/RadioField.php:12
230
- #: forms/wpdFormAttr/Field/RatingField.php:12
231
- #: forms/wpdFormAttr/Field/SelectField.php:12
232
- #: forms/wpdFormAttr/Field/TextAreaField.php:13
233
- #: forms/wpdFormAttr/Field/TextField.php:12
234
- #: forms/wpdFormAttr/Field/UrlField.php:12 forms/wpdFormAttr/Form.php:789
235
- msgid "Name"
236
- msgstr "Name"
237
-
238
- #: forms/wpDiscuzForm.php:416 forms/wpdFormAttr/Field/DefaultField/Email.php:65
239
- #: forms/wpdFormAttr/Form.php:796
240
- #: options/class.WpdiscuzOptionsSerialized.php:764 options/html-phrases.php:25
241
- msgid "Email"
242
- msgstr "E-Mail"
243
-
244
- #: forms/wpDiscuzForm.php:418
245
- msgid "WebSite URL"
246
- msgstr "URL der Webseite"
247
-
248
- #: forms/wpDiscuzForm.php:421
249
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:116
250
- #: forms/wpdFormAttr/Form.php:819
251
- msgid "Post Comment"
252
- msgstr "Kommentar absenden"
253
-
254
- #: forms/wpDiscuzForm.php:430
255
- msgid "Clone Form"
256
- msgstr "Formular duplizieren"
257
-
258
- #: forms/wpDiscuzForm.php:442
259
- msgid "Clone"
260
- msgstr "Duplizieren"
261
-
262
- #: forms/wpDiscuzForm.php:480
263
- msgid ""
264
- "Comment Form is not detected, please navigate to form manager page to create "
265
- "it. "
266
- msgstr ""
267
- "Kommentar-Formular wird nicht erkannt, navigieren Sie bitte zur Formular-"
268
- "Manager-Seite, um sie zu erstellen. "
269
-
270
- #: forms/wpDiscuzForm.php:481
271
- msgid "Add Comment Form"
272
- msgstr "Kommentar Formular hinzufügen"
273
-
274
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:16
275
- #: forms/wpdFormAttr/Field/CheckboxField.php:17
276
- #: forms/wpdFormAttr/Field/ColorField.php:17
277
- #: forms/wpdFormAttr/Field/CookiesConsent.php:18
278
- #: forms/wpdFormAttr/Field/DateField.php:17
279
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:32
280
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:24
281
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:23
282
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:23
283
- #: forms/wpdFormAttr/Field/NumberField.php:17
284
- #: forms/wpdFormAttr/Field/RadioField.php:17
285
- #: forms/wpdFormAttr/Field/RatingField.php:16
286
- #: forms/wpdFormAttr/Field/SelectField.php:17
287
- #: forms/wpdFormAttr/Field/TextAreaField.php:18
288
- #: forms/wpdFormAttr/Field/TextField.php:17
289
- #: forms/wpdFormAttr/Field/UrlField.php:17
290
- msgid "Description"
291
- msgstr "Beschreibung"
292
-
293
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:18
294
- #: forms/wpdFormAttr/Field/CheckboxField.php:19
295
- #: forms/wpdFormAttr/Field/ColorField.php:19
296
- #: forms/wpdFormAttr/Field/CookiesConsent.php:20
297
- #: forms/wpdFormAttr/Field/DateField.php:19
298
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:34
299
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:26
300
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:25
301
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:25
302
- #: forms/wpdFormAttr/Field/NumberField.php:19
303
- #: forms/wpdFormAttr/Field/NumberField.php:24
304
- #: forms/wpdFormAttr/Field/NumberField.php:29
305
- #: forms/wpdFormAttr/Field/RadioField.php:19
306
- #: forms/wpdFormAttr/Field/RatingField.php:18
307
- #: forms/wpdFormAttr/Field/SelectField.php:19
308
- #: forms/wpdFormAttr/Field/TextAreaField.php:20
309
- #: forms/wpdFormAttr/Field/TextField.php:19
310
- #: forms/wpdFormAttr/Field/UrlField.php:19
311
- msgid ""
312
- "Field specific short description or some rule related to inserted "
313
- "information."
314
- msgstr ""
315
- "Feldspezifische Kurzbeschreibung oder eine Regel in Bezug auf eingefügte "
316
- "Informationen."
317
-
318
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:21
319
- #: forms/wpdFormAttr/Field/CookiesConsent.php:23
320
- msgid "Checkbox Label"
321
- msgstr "CheckBox Beschriftung"
322
-
323
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:22
324
- msgid ""
325
- "You can use HTML tags to add links to website Terms and Privacy Policy "
326
- "pages. For example: "
327
- msgstr ""
328
- "Sie können HTML-Tags verwenden, um Links zu den Nutzungsbedingungen der "
329
- "Website und den Datenschutzrichtlinien hinzuzufügen. Beispielsweise: "
330
-
331
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:28
332
- #: forms/wpdFormAttr/Field/CheckboxField.php:33
333
- #: forms/wpdFormAttr/Field/ColorField.php:29
334
- #: forms/wpdFormAttr/Field/DateField.php:29
335
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:36
336
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:35
337
- #: forms/wpdFormAttr/Field/NumberField.php:39
338
- #: forms/wpdFormAttr/Field/RadioField.php:33
339
- #: forms/wpdFormAttr/Field/RatingField.php:28
340
- #: forms/wpdFormAttr/Field/SelectField.php:33
341
- #: forms/wpdFormAttr/Field/TextAreaField.php:23
342
- #: forms/wpdFormAttr/Field/TextField.php:29
343
- #: forms/wpdFormAttr/Field/UrlField.php:29
344
- msgid "Field is required"
345
- msgstr "Feld ist erforderlich"
346
-
347
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:32
348
- #: forms/wpdFormAttr/Field/CheckboxField.php:37
349
- #: forms/wpdFormAttr/Field/ColorField.php:33
350
- #: forms/wpdFormAttr/Field/DateField.php:33
351
- #: forms/wpdFormAttr/Field/NumberField.php:43
352
- #: forms/wpdFormAttr/Field/RadioField.php:37
353
- #: forms/wpdFormAttr/Field/SelectField.php:37
354
- #: forms/wpdFormAttr/Field/TextAreaField.php:27
355
- #: forms/wpdFormAttr/Field/TextField.php:33
356
- #: forms/wpdFormAttr/Field/UrlField.php:33
357
- msgid "Display on reply form"
358
- msgstr "Auf Antwortformular anzeigen"
359
-
360
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:36
361
- msgid "Display for Guests"
362
- msgstr "Anzeige für Gäste"
363
-
364
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:40
365
- msgid "Display for Registered Users"
366
- msgstr "Anzeige für registrierte Benutzer"
367
-
368
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:44
369
- msgid "Don't show again if the agreement is accepted once"
370
- msgstr "Nicht mehr anzeigen, wenn die Vereinbarung einmal akzeptiert wurde"
371
-
372
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:101
373
- #: forms/wpdFormAttr/Field/CheckboxField.php:153
374
- #: forms/wpdFormAttr/Field/ColorField.php:115
375
- #: forms/wpdFormAttr/Field/DateField.php:115
376
- #: forms/wpdFormAttr/Field/NumberField.php:125
377
- #: forms/wpdFormAttr/Field/RadioField.php:130
378
- #: forms/wpdFormAttr/Field/RatingField.php:126
379
- #: forms/wpdFormAttr/Field/SelectField.php:125
380
- #: forms/wpdFormAttr/Field/TextAreaField.php:98
381
- #: forms/wpdFormAttr/Field/TextField.php:109
382
- #: forms/wpdFormAttr/Field/UrlField.php:110
383
- msgid "field is required!"
384
- msgstr "Dieses Feld ist ein Pflichtfeld!"
385
-
386
- #: forms/wpdFormAttr/Field/CheckboxField.php:14
387
- #: forms/wpdFormAttr/Field/ColorField.php:14
388
- #: forms/wpdFormAttr/Field/DateField.php:14
389
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:29
390
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:21
391
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:20
392
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:20
393
- #: forms/wpdFormAttr/Field/NumberField.php:14
394
- #: forms/wpdFormAttr/Field/RadioField.php:14
395
- #: forms/wpdFormAttr/Field/SelectField.php:14
396
- #: forms/wpdFormAttr/Field/TextAreaField.php:15
397
- #: forms/wpdFormAttr/Field/TextField.php:14
398
- #: forms/wpdFormAttr/Field/UrlField.php:14
399
- msgid "Also used for field placeholder"
400
- msgstr "Wird auch für den Feld-Platzhalter verwendet"
401
-
402
- #: forms/wpdFormAttr/Field/CheckboxField.php:28
403
- #: forms/wpdFormAttr/Field/RadioField.php:28
404
- #: forms/wpdFormAttr/Field/SelectField.php:28
405
- msgid "Values"
406
- msgstr "Werte"
407
-
408
- #: forms/wpdFormAttr/Field/CheckboxField.php:30
409
- msgid "Please insert one value per line"
410
- msgstr "Bitte geben Sie einen Wert pro Zeile ein"
411
-
412
- #: forms/wpdFormAttr/Field/CheckboxField.php:41
413
- #: forms/wpdFormAttr/Field/ColorField.php:37
414
- #: forms/wpdFormAttr/Field/DateField.php:37
415
- #: forms/wpdFormAttr/Field/NumberField.php:47
416
- #: forms/wpdFormAttr/Field/RadioField.php:41
417
- #: forms/wpdFormAttr/Field/RatingField.php:32
418
- #: forms/wpdFormAttr/Field/SelectField.php:41
419
- #: forms/wpdFormAttr/Field/TextAreaField.php:31
420
- #: forms/wpdFormAttr/Field/TextField.php:37
421
- #: forms/wpdFormAttr/Field/UrlField.php:37
422
- msgid "Display on comment"
423
- msgstr "Bei Kommentar anzeigen"
424
-
425
- #: forms/wpdFormAttr/Field/CheckboxField.php:45
426
- #: forms/wpdFormAttr/Field/ColorField.php:41
427
- #: forms/wpdFormAttr/Field/DateField.php:41
428
- #: forms/wpdFormAttr/Field/NumberField.php:51
429
- #: forms/wpdFormAttr/Field/RadioField.php:45
430
- #: forms/wpdFormAttr/Field/RatingField.php:36
431
- #: forms/wpdFormAttr/Field/SelectField.php:45
432
- #: forms/wpdFormAttr/Field/TextAreaField.php:35
433
- #: forms/wpdFormAttr/Field/TextField.php:41
434
- #: forms/wpdFormAttr/Field/UrlField.php:41
435
- msgid "Advanced Options"
436
- msgstr "Erweiterte Optionen"
437
-
438
- #: forms/wpdFormAttr/Field/CheckboxField.php:48
439
- #: forms/wpdFormAttr/Field/ColorField.php:44
440
- #: forms/wpdFormAttr/Field/DateField.php:44
441
- #: forms/wpdFormAttr/Field/NumberField.php:54
442
- #: forms/wpdFormAttr/Field/RadioField.php:48
443
- #: forms/wpdFormAttr/Field/RatingField.php:39
444
- #: forms/wpdFormAttr/Field/SelectField.php:48
445
- #: forms/wpdFormAttr/Field/TextAreaField.php:38
446
- #: forms/wpdFormAttr/Field/TextField.php:44
447
- #: forms/wpdFormAttr/Field/UrlField.php:44
448
- msgid "Meta Key"
449
- msgstr "Meta-Key"
450
-
451
- #: forms/wpdFormAttr/Field/CheckboxField.php:52
452
- #: forms/wpdFormAttr/Field/ColorField.php:48
453
- #: forms/wpdFormAttr/Field/DateField.php:48
454
- #: forms/wpdFormAttr/Field/NumberField.php:58
455
- #: forms/wpdFormAttr/Field/RadioField.php:52
456
- #: forms/wpdFormAttr/Field/RatingField.php:43
457
- #: forms/wpdFormAttr/Field/SelectField.php:52
458
- #: forms/wpdFormAttr/Field/TextAreaField.php:42
459
- #: forms/wpdFormAttr/Field/TextField.php:48
460
- #: forms/wpdFormAttr/Field/UrlField.php:48
461
- msgid "Replace old meta key"
462
- msgstr "Ersetzen Sie den alten Meta-Schlüssel"
463
-
464
- #: forms/wpdFormAttr/Field/ColorField.php:23
465
- #: forms/wpdFormAttr/Field/DateField.php:23
466
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:30
467
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:29
468
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:29
469
- #: forms/wpdFormAttr/Field/NumberField.php:33
470
- #: forms/wpdFormAttr/Field/RatingField.php:22
471
- #: forms/wpdFormAttr/Field/TextField.php:23
472
- #: forms/wpdFormAttr/Field/UrlField.php:23
473
- msgid "Field icon"
474
- msgstr "Feld Symbol"
475
-
476
- #: forms/wpdFormAttr/Field/ColorField.php:26
477
- #: forms/wpdFormAttr/Field/DateField.php:26
478
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:33
479
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:32
480
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:32
481
- #: forms/wpdFormAttr/Field/NumberField.php:36
482
- #: forms/wpdFormAttr/Field/RatingField.php:25
483
- #: forms/wpdFormAttr/Field/TextField.php:26
484
- #: forms/wpdFormAttr/Field/UrlField.php:26
485
- msgid "Font-awesome icon library."
486
- msgstr "Schriftart-Awesome Icon-Bibliothek."
487
-
488
- #: forms/wpdFormAttr/Field/CookiesConsent.php:92
489
- msgid "Save my data for the next time I comment"
490
- msgstr "Meine Daten für das nächste Mal speichern"
491
-
492
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:37
493
- msgid ""
494
- "For an advanced antispam protection please check <a target=\"blank\" href="
495
- "\"https://gvectors.com/product/wpdiscuz-recaptcha/\">wpDiscuz - Google "
496
- "reCAPTCHA</a> addon."
497
- msgstr ""
498
- "Für einen erweiterten Spam-Schutz überprüfen Sie bitte das <a target=\"blank"
499
- "\" href=\"https://gvectors.com/product/wpdiscuz-recaptcha/\">wpDiscuz - "
500
- "Google reCAPTCHA</a> Addon."
501
-
502
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:40
503
- msgid "Show for guests"
504
- msgstr "Für Gäste anzeigen"
505
-
506
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:44
507
- msgid "Show for logged in users"
508
- msgstr "Anzeigen für angemeldete Benutzer"
509
-
510
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:117
511
- #: forms/wpdFormAttr/Form.php:812
512
- msgid "Code"
513
- msgstr "Code"
514
-
515
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:135
516
- msgid "Cannot create image file"
517
- msgstr "Kann Bilddatei nicht erstellen"
518
-
519
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:136
520
- msgid "Permission denied for file creation"
521
- msgstr "Für die Datei-Erstellung ist eine Berechtigung erforderlich"
522
-
523
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:137
524
- msgid "PHP GD2 library is disabled"
525
- msgstr "PHP GD2 Bibliothek ist deaktiviert"
526
-
527
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:138
528
- msgid "PNG image creation disabled"
529
- msgstr "PNG-Bilderstellung deaktiviert"
530
-
531
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:145
532
- msgid "Insert the CAPTCHA code"
533
- msgstr "Geben Sie den CAPTCHA-Code ein"
534
-
535
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:20
536
- msgid "Button Text"
537
- msgstr "Button Text"
538
-
539
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:77
540
- msgid " - (on)"
541
- msgstr " - (EIN)"
542
-
543
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:78
544
- msgid " - (off)"
545
- msgstr " - (AUS)"
546
-
547
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:35
548
- msgid "Enable"
549
- msgstr "Aktivieren"
550
-
551
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:84
552
- #: forms/wpdFormAttr/Form.php:803
553
- msgid "Website"
554
- msgstr "Webseite"
555
-
556
- #: forms/wpdFormAttr/Field/Field.php:54
557
- msgid " (Submit Button)"
558
- msgstr " (Submit Button)"
559
-
560
- #: forms/wpdFormAttr/Field/Field.php:56
561
- msgid " (CAPTCHA)"
562
- msgstr " (CAPTCHA)"
563
-
564
- #: forms/wpdFormAttr/Field/Field.php:89
565
- msgid "Add To Form"
566
- msgstr "Zum Formular hinzufügen"
567
-
568
- #: forms/wpdFormAttr/Field/NumberField.php:22
569
- msgid "Min Value"
570
- msgstr "Min. Wert"
571
-
572
- #: forms/wpdFormAttr/Field/NumberField.php:27
573
- msgid "Max Value"
574
- msgstr "Max. Wert"
575
-
576
- #: forms/wpdFormAttr/Field/NumberField.php:129
577
- msgid "value can not be less than"
578
- msgstr "Wert darf nicht weniger sein als"
579
-
580
- #: forms/wpdFormAttr/Field/NumberField.php:132
581
- msgid "value can not be more than"
582
- msgstr "Wert darf nicht mehr sein als"
583
-
584
- #: forms/wpdFormAttr/Field/RadioField.php:30
585
- #: forms/wpdFormAttr/Field/SelectField.php:30
586
- msgid "New value new line"
587
- msgstr "Neuer Wert, neue Linie"
588
-
589
- #: forms/wpdFormAttr/Form.php:630
590
- msgid "Disable commenting for roles"
591
- msgstr "Deaktivieren Sie das Kommentieren von Rollen"
592
-
593
- #: forms/wpdFormAttr/Form.php:651
594
- msgid "Allow guests to comment"
595
- msgstr "Gästen erlauben zu kommentieren"
596
-
597
- #: forms/wpdFormAttr/Form.php:655 forms/wpdFormAttr/Form.php:666
598
- msgid "Yes"
599
- msgstr "Ja"
600
-
601
- #: forms/wpdFormAttr/Form.php:657 forms/wpdFormAttr/Form.php:668
602
- msgid "No"
603
- msgstr "Nein"
604
-
605
- #: forms/wpdFormAttr/Form.php:662
606
- msgid "Enable subscription bar"
607
- msgstr "Abonnement Leiste aktivieren"
608
-
609
- #: forms/wpdFormAttr/Form.php:673
610
- msgid "Comment form header text"
611
- msgstr "Kommentar Formular Kopfzeilen Text"
612
-
613
- #: forms/wpdFormAttr/Form.php:682
614
- msgid "Display comment form for post types"
615
- msgstr "Zeige Kommentarformular für Beitrags Typen"
616
-
617
- #: forms/wpdFormAttr/Form.php:689
618
- msgid ""
619
- "The red marked post types are already attached to other comment form. If you "
620
- "set this form too, the old forms will not be used for them."
621
- msgstr ""
622
- "Die rot markierten Post-Typen sind bereits an ein anderes Kommentarformular "
623
- "angehängt. Wenn Sie dieses Formular auch markieren, werden die alten "
624
- "Formulare für diese Post-Typen nicht verwendet werden."
625
-
626
- #: forms/wpdFormAttr/Form.php:711
627
- msgid "Display comment form for post IDs"
628
- msgstr "Zeige Kommentarformular für Beitrags IDs"
629
-
630
- #: forms/wpdFormAttr/Form.php:712
631
- msgid ""
632
- "You can use this form for certain posts/pages specified by comma separated "
633
- "IDs."
634
- msgstr ""
635
- "Sie können dieses Formular für bestimmte Beiträge/Seiten verwenden, die "
636
- "durch Komma getrennte IDs angegeben sind."
637
-
638
- #: forms/wpdFormAttr/Form.php:723
639
- msgid "Comment Text Field"
640
- msgstr "Kommentar Textfeld"
641
-
642
- #: forms/wpdFormAttr/Form.php:738
643
- msgid "ADD ROW"
644
- msgstr "REIHE HINZUFÜGEN"
645
-
646
- #: forms/wpdFormAttr/Form.php:770
647
- msgid ""
648
- "Only logged in customers who have purchased this product may leave a review."
649
- msgstr ""
650
- "Nur angemeldete Kunden, die dieses Produkt gekauft haben, dürfen eine "
651
- "Bewertung abgeben."
652
-
653
- #: forms/wpdFormAttr/Login/SocialLogin.php:32
654
- msgid "Authentication failed."
655
- msgstr "Authentifizierung ist fehlgeschlagen."
656
-
657
- #: forms/wpdFormAttr/Login/SocialLogin.php:83
658
- msgid "Facebook access token or user ID invalid."
659
- msgstr "Facebook Access Token oder Benutzer-ID ungültig."
660
-
661
- #: forms/wpdFormAttr/Login/SocialLogin.php:87
662
- msgid "Facebook App Secret is required."
663
- msgstr "Facebook App Secret ist erforderlich."
664
-
665
- #: forms/wpdFormAttr/Login/SocialLogin.php:117
666
- msgid "Google access token invalid."
667
- msgstr "Google Access Token ist ungültig."
668
-
669
- #: forms/wpdFormAttr/Login/SocialLogin.php:128
670
- msgid "Google authentication failed."
671
- msgstr "Google Authentifizierung ist fehlgeschlagen."
672
-
673
- #: forms/wpdFormAttr/Login/SocialLogin.php:156
674
- msgid "Twitter Consumer Key and Consumer Secret required."
675
- msgstr "Twitter Consumer Key und Consumer Secret sind erforderlich."
676
-
677
- #: forms/wpdFormAttr/Login/SocialLogin.php:168
678
- msgid "Twitter authentication failed (OAuth secret does not exist)."
679
- msgstr ""
680
- "Twitter Authentifizierung ist fehlgeschlagen (OAuth secret existiert nicht)."
681
-
682
- #: forms/wpdFormAttr/Login/SocialLogin.php:180
683
- msgid "Twitter connection failed."
684
- msgstr "Twitter Verbindung fehlgeschlagen."
685
-
686
- #: forms/wpdFormAttr/Login/SocialLogin.php:190
687
- msgid "VK Client ID and Client Secret required."
688
- msgstr "VK-Client-ID und Client-Secret erforderlich."
689
-
690
- #: forms/wpdFormAttr/Login/SocialLogin.php:218
691
- msgid "VK authentication failed (OAuth <code>state</code> does not exist)."
692
- msgstr ""
693
- "Die VK-Authentifizierung ist fehlgeschlagen (OAuth <code>state</code> ist "
694
- "nicht vorhanden)."
695
-
696
- #: forms/wpdFormAttr/Login/SocialLogin.php:221
697
- msgid "VK authentication failed (OAuth <code>code</code> does not exist)."
698
- msgstr ""
699
- "Die VK-Authentifizierung ist fehlgeschlagen (OAuth <code>code</code> ist "
700
- "nicht vorhanden)."
701
-
702
- #: forms/wpdFormAttr/Login/SocialLogin.php:239
703
- msgid "VK authentication failed (<code>user_id</code> does not exist)."
704
- msgstr ""
705
- "Die VK-Authentifizierung ist fehlgeschlagen (<code>user_id</code> existiert "
706
- "nicht)."
707
-
708
- #: forms/wpdFormAttr/Login/SocialLogin.php:265
709
- msgid "OK Application ID, Application Key and Application Secret required."
710
- msgstr ""
711
- "OK Application ID, Application Key und Application Secret erforderlich."
712
-
713
- #: forms/wpdFormAttr/Login/SocialLogin.php:290
714
- msgid "OK authentication failed (OAuth <code>state</code> does not exist)."
715
- msgstr ""
716
- "Die OK-Authentifizierung ist fehlgeschlagen (OAuth <code>state</code> ist "
717
- "nicht vorhanden)."
718
-
719
- #: forms/wpdFormAttr/Login/SocialLogin.php:293
720
- msgid "OK authentication failed (<code>code</code> does not exist)."
721
- msgstr ""
722
- "Die OK-Authentifizierung ist fehlgeschlagen (<code>code</code> ist nicht "
723
- "vorhanden)."
724
-
725
- #: forms/wpdFormAttr/Login/SocialLogin.php:312
726
- msgid "OK authentication failed (<code>access_token</code> does not exist)."
727
- msgstr ""
728
- "Die OK-Authentifizierung ist fehlgeschlagen (<code>access_token</code> ist "
729
- "nicht vorhanden)."
730
-
731
- #: forms/wpdFormAttr/html/admin-form-fields-list.php:7
732
- msgid "Comment Form Fields"
733
- msgstr "Kommentarformular Felder"
734
-
735
- #: options/addons/al/title.php:7 options/class.WpdiscuzOptions.php:393
736
- msgid "Advanced Likers"
737
- msgstr "Erweiterte Gefällt-mir-Klicker"
738
-
739
- #: options/addons/cai/title.php:7
740
- msgid "Comment Author"
741
- msgstr "Kommentar-Autor"
742
-
743
- #: options/addons/fem/title.php:7
744
- msgid "Frontend Moderation"
745
- msgstr "Frontend-Moderation"
746
-
747
- #: options/addons/more/title.php:6
748
- msgid "More Addons..."
749
- msgstr "Weitere Addons ..."
750
-
751
- #: options/addons/mu/title.php:7 options/class.WpdiscuzOptions.php:417
752
- msgid "Media Uploader"
753
- msgstr "Media Uploader"
754
-
755
- #: options/addons/raf/title.php:7 options/class.WpdiscuzOptions.php:397
756
- msgid "Report and Flagging"
757
- msgstr "Bericht und Kennzeichnung"
758
-
759
- #: options/addons/ucm/title.php:7
760
- msgid "Mentioning"
761
- msgstr "Erwähnung"
762
-
763
- #: options/class.WpdiscuzOptions.php:22 options/class.WpdiscuzOptions.php:135
764
- #: options/class.WpdiscuzOptions.php:344
765
- msgid "Hacker?"
766
- msgstr "Hacker?"
767
-
768
- #: options/class.WpdiscuzOptions.php:126
769
- msgid "Settings updated"
770
- msgstr "Einstellungen aktualisiert"
771
-
772
- #: options/class.WpdiscuzOptions.php:291
773
- msgid "Phrases updated"
774
- msgstr "Phrasen aktualisiert"
775
-
776
- #: options/class.WpdiscuzOptions.php:318
777
- msgid "Options were backed up!"
778
- msgstr "Optionen wurden gesichert!"
779
-
780
- #: options/class.WpdiscuzOptions.php:320
781
- msgid "Cannot back up the options!"
782
- msgstr "Kann die Optionen nicht sichern!"
783
-
784
- #: options/class.WpdiscuzOptions.php:331
785
- msgid "Options Imported Successfully!"
786
- msgstr "Optionen erfolgreich importiert!"
787
-
788
- #: options/class.WpdiscuzOptions.php:333
789
- msgid "Error occured! File content is empty or data is not valid!"
790
- msgstr "Fehler aufgetreten! Dateiinhalt ist leer oder Daten sind nicht gültig!"
791
-
792
- #: options/class.WpdiscuzOptions.php:336
793
- msgid "Error occured! Can not get file content!"
794
- msgstr "Fehler aufgetreten! Dateiinhalte können nicht abgerufen werden!"
795
-
796
- #: options/class.WpdiscuzOptions.php:339
797
- msgid "Error occured! Please choose file!"
798
- msgstr "Fehler aufgetreten! Bitte Datei auswählen!"
799
-
800
- #: options/class.WpdiscuzOptions.php:355
801
- msgid ""
802
- "Brings an ocean of emotions to your comments. It comes with an awesome smile "
803
- "package."
804
- msgstr ""
805
- "Bringt ein Meer an Emotionen für Ihre Kommentare. Es kommt mit einem tollen "
806
- "lächelnden Paket."
807
-
808
- #: options/class.WpdiscuzOptions.php:356
809
- msgid ""
810
- "Extended information about comment author with Profile, Activity, Votes and "
811
- "Subscriptions Tabs on pop-up window."
812
- msgstr ""
813
- "Erweiterte Informationen zum Kommentarautor mit den Registerkarten Profil, "
814
- "Aktivität, Abstimmungen und Abonnements im Popup-Fenster."
815
-
816
- #: options/class.WpdiscuzOptions.php:357
817
- msgid ""
818
- "Real-time online user checking, pop-up notification of new online users and "
819
- "online/offline badges."
820
- msgstr ""
821
- "Echtzeit-Online-Benutzerprüfung, Popup-Benachrichtigung für neue Online-"
822
- "Benutzer und Online- / Offline-Badges."
823
-
824
- #: options/class.WpdiscuzOptions.php:358
825
- msgid ""
826
- "Allows to create private comment threads. Rich management options in "
827
- "dashboard by user roles."
828
- msgstr ""
829
- "Ermöglicht das Erstellen privater Kommentar-Threads. Umfangreiche "
830
- "Verwaltungsoptionen im Dashboard nach Benutzerrollen."
831
-
832
- #: options/class.WpdiscuzOptions.php:359
833
- msgid ""
834
- "Total control over comment subscriptions. Full list, monitor, manage, "
835
- "filter, unsubscribe, confirm..."
836
- msgstr ""
837
- "Gesamtsteuerung über Kommentarabonnements. Vollständige Liste, überwachen, "
838
- "verwalten, filtern, abbestellen, bestätigen ..."
839
-
840
- #: options/class.WpdiscuzOptions.php:360
841
- msgid ""
842
- "A full-fledged tool-kit for advertising in comment section of your website. "
843
- "Separate banner and ad managment."
844
- msgstr ""
845
- "Ein vollwertiges Tool-Kit für die Werbung im Kommentarbereich Ihrer Website. "
846
- "Separates Banner und Anzeigenmanagement."
847
-
848
- #: options/class.WpdiscuzOptions.php:361
849
- msgid ""
850
- "Allows to mention comments and users in comment text using #comment-id and "
851
- "@username tags."
852
- msgstr ""
853
- "Ermöglicht es, Kommentare und Benutzer in Kommentartext mit #comment-id und "
854
- "@username-Tags zu erwähnen."
855
-
856
- #: options/class.WpdiscuzOptions.php:362
857
- msgid ""
858
- "See comment likers and voters of each comment. Adds user reputation and "
859
- "badges based on received likes."
860
- msgstr ""
861
- "Siehe Kommentar Likers und Wähler von jedem Kommentar. Fügt basierend auf "
862
- "empfangenen Likes Nutzer-Reputation und -Ausweise hinzu."
863
-
864
- #: options/class.WpdiscuzOptions.php:363
865
- msgid ""
866
- "Comment reporting tools. Auto-moderates comments based on number of flags "
867
- "and dislikes."
868
- msgstr ""
869
- "Kommentarberichtswerkzeuge. Automatische Moderation von Kommentaren, "
870
- "basierend auf der Anzahl von Markierungen (Flags) und Abneigungen (Dislikes)."
871
-
872
- #: options/class.WpdiscuzOptions.php:364
873
- msgid ""
874
- "Adds a smart and intuitive AJAX \"Translate\" button with 60 language "
875
- "options. Uses free translation API."
876
- msgstr ""
877
- "Fügt eine intelligente und intuitive AJAX-Schaltfläche \"Übersetzen\" mit 60 "
878
- "Sprachoptionen hinzu. Verwendet kostenlose Übersetzungs-API."
879
-
880
- #: options/class.WpdiscuzOptions.php:365
881
- msgid ""
882
- "AJAX powered front-end comment search. It starts searching while you type "
883
- "search words. "
884
- msgstr ""
885
- "AJAX-basierte Front-End-Kommentarsuche. Sie beginnt zu suchen, während Sie "
886
- "die Suchbegriffe eingeben. "
887
-
888
- #: options/class.WpdiscuzOptions.php:366
889
- msgid ""
890
- "Most voted comments, Active comment threads, Most commented posts, Active "
891
- "comment authors"
892
- msgstr ""
893
- "Die am häufigsten bewerteten Kommentare, Aktive Kommentarthemen, Meist "
894
- "kommentierte Beiträge, Aktive Kommentarautoren"
895
-
896
- #: options/class.WpdiscuzOptions.php:367
897
- msgid ""
898
- "All in one powerful yet simple admin toolkit to moderate comments on front-"
899
- "end."
900
- msgstr ""
901
- "Alles in einem leistungsstarken und doch einfachen Admin-Toolkit zur "
902
- "Moderation von Kommentaren im Frontend."
903
-
904
- #: options/class.WpdiscuzOptions.php:368
905
- msgid ""
906
- "Extended comment attachment system. Allows to upload images, videos, audios "
907
- "and other file types."
908
- msgstr ""
909
- "Erweitertes Kommentar-Anhangsystem. Ermöglicht das Hochladen von Bildern, "
910
- "Videos, Audios und anderen Dateitypen."
911
-
912
- #: options/class.WpdiscuzOptions.php:369
913
- msgid ""
914
- "Adds No CAPTCHA on all comment forms. Stops spam and bot comments with "
915
- "Google reCAPTCHA"
916
- msgstr ""
917
- "Fügt allen Kommentarfeldern kein CAPTCHA hinzu. Stoppt Spam- und Bot-"
918
- "Kommentare mit Google reCAPTCHA"
919
-
920
- #: options/class.WpdiscuzOptions.php:370
921
- msgid ""
922
- "Integrates myCRED Badges and Ranks. Converts wpDiscuz comment votes/likes to "
923
- "myCRED points. "
924
- msgstr ""
925
- "Integriert myCRED Badges und Ränge. Konvertiert wpDiscuz Kommentar-Votes / "
926
- "Likes zu myCRED-Punkten. "
927
-
928
- #: options/class.WpdiscuzOptions.php:371
929
- msgid ""
930
- "Allows censoring comment words. Filters comments and replaces those phrases "
931
- "with custom words."
932
- msgstr ""
933
- "Ermöglicht das Zensieren von Kommentarwörtern. Filtert Kommentare und "
934
- "ersetzt diese Sätze durch benutzerdefinierte Wörter."
935
-
936
- #: options/class.WpdiscuzOptions.php:377
937
- msgid "Custom Comment Forms"
938
- msgstr "Benutzerdefinierte Kommentar Formulare"
939
-
940
- #: options/class.WpdiscuzOptions.php:378
941
- msgid ""
942
- "You can create custom comment forms with wpDiscuz. wpDiscuz 4 comes with "
943
- "custom comment forms and fields. You can create custom comment forms for "
944
- "each post type, each form can beceated with different form fields, for "
945
- "eaxample: text, dropdown, rating, checkboxes, etc..."
946
- msgstr ""
947
- "Sie können benutzerdefinierte Kommentarformulare mit wpDiscuz erstellen. "
948
- "wpDiscuz 4 kommt mit benutzerdefinierten Kommentarformularen und Feldern. "
949
- "Sie können benutzerdefinierte Kommentarformulare für jeden Posttyp "
950
- "erstellen, jedes Formular kann mit verschiedenen Formularfeldern gefüllt "
951
- "werden, zum Beispiel: Text, Dropdown, Bewertung, Checkboxen, etc ..."
952
-
953
- #: options/class.WpdiscuzOptions.php:381
954
- msgid "Emoticons"
955
- msgstr "Emoticons"
956
-
957
- #: options/class.WpdiscuzOptions.php:382
958
- msgid ""
959
- "You can add more emotions to your comments using wpDiscuz Emoticons addon."
960
- msgstr ""
961
- "Sie können mit dem wpDiscuz-Emoticons-Addon den Kommentaren mehr Emotionen "
962
- "hinzufügen."
963
-
964
- #: options/class.WpdiscuzOptions.php:385
965
- msgid "Ads Manager"
966
- msgstr "Werbe-Manager"
967
-
968
- #: options/class.WpdiscuzOptions.php:386
969
- msgid ""
970
- "Increase your income using ad banners. Comment area is the most active "
971
- "sections for advertising. wpDiscuz Ads Manager addon is designed to help you "
972
- "add banners and control ads in this section."
973
- msgstr ""
974
- "Steigern Sie Ihr Einkommen mit Werbebannern. Der Kommentarbereich ist der "
975
- "aktivste Bereich für Werbung. wpDiscuz Ads Manager Addon wurde entwickelt, "
976
- "um Ihnen zu helfen, Banner hinzuzufügen und Anzeigen in diesem Bereich zu "
977
- "steuern."
978
-
979
- #: options/class.WpdiscuzOptions.php:389
980
- msgid "User and Comment Mentioning"
981
- msgstr "Benutzer- und Kommentarbenennung"
982
-
983
- #: options/class.WpdiscuzOptions.php:390
984
- msgid ""
985
- "Using wpDiscuz User &amp; Comment Mentioning addon you can allow commenters "
986
- "mention comments and users in comment text using #comment-id and @username "
987
- "tags."
988
- msgstr ""
989
- "Durch die Verwendung des wpDiscuz Benutzer &amp; Erwähnungskommentar-Addon "
990
- "ist es den Kommentatoren erlaubt, Kommentare und Benutzer im Kommentartext "
991
- "mit den Tags #comment-id und @username zu erwähnen."
992
-
993
- #: options/class.WpdiscuzOptions.php:394
994
- msgid ""
995
- "wpDiscuz Advanced Likers addon displays likers and voters of each comment. "
996
- "Adds user reputation and badges based on received likes."
997
- msgstr ""
998
- "wpDiscuz Advanced Likers Addon zeigt Likers und Wähler von jedem Kommentar "
999
- "an. Fügt, basierend auf empfangenen Likes, Nutzer-Reputation und -Badges "
1000
- "hinzu."
1001
-
1002
- #: options/class.WpdiscuzOptions.php:398
1003
- msgid ""
1004
- "Let your commenters help you to determine and remove spam comments. wpDiscuz "
1005
- "Report and Flagging addon comes with comment reporting tools. Automaticaly "
1006
- "auto-moderates comments based on number of flags and dislikes."
1007
- msgstr ""
1008
- "Lassen Sie Ihre Kommentatoren bei der Ermittlung und Entfernung von Spam-"
1009
- "Kommentaren helfen. wpDiscuz Report and Flagging Addon enthält Tools zur "
1010
- "Kommentierung von Kommentaren. Automatische Moderation von Kommentaren "
1011
- "basierend auf der Anzahl von Flags und Dislikes."
1012
-
1013
- #: options/class.WpdiscuzOptions.php:401
1014
- msgid "Comment Translate"
1015
- msgstr "Kommentar übersetzen"
1016
-
1017
- #: options/class.WpdiscuzOptions.php:402
1018
- msgid ""
1019
- "In most cases the big part of your visitors are not a native speakers of "
1020
- "your language. Make your comments comprehensible for all visitors using "
1021
- "wpDiscuz Comment Translation addon. It adds smart and intuitive AJAX "
1022
- "\"Translate\" button with 60 language translation options. Uses free "
1023
- "translation API."
1024
- msgstr ""
1025
- "In den meisten Fällen ist der Großteil Ihrer Besucher kein Muttersprachler "
1026
- "Ihrer Sprache. Machen Sie Ihre Kommentare verständlich für alle Besucher, "
1027
- "die wpDiscuz Comment Translation addon verwenden. Es fügt intelligente und "
1028
- "intuitive AJAX \"Übersetzen\" -Taste mit 60 Sprachübersetzungsoptionen "
1029
- "hinzu. Verwendet kostenlose Übersetzungs-API."
1030
-
1031
- #: options/class.WpdiscuzOptions.php:405
1032
- msgid "Comment Search"
1033
- msgstr "Kommentarsuche"
1034
-
1035
- #: options/class.WpdiscuzOptions.php:406
1036
- msgid ""
1037
- "You can let website visitor search in comments. It's always more attractive "
1038
- "to find a comment about something that interest you. Using wpDiscuz Comment "
1039
- "Search addon you'll get a nice, AJAX powered front-end comment search form "
1040
- "above comment list."
1041
- msgstr ""
1042
- "Sie können den Website-Besucher in Kommentaren suchen lassen. Es ist immer "
1043
- "attraktiver, einen Kommentar zu etwas zu finden, der Sie interessiert. Mit "
1044
- "wpDiscuz Comment Search Addon erhalten Sie ein nettes, AJAX-gestütztes "
1045
- "Frontend-Kommentar-Suchformular über der Kommentarliste."
1046
-
1047
- #: options/class.WpdiscuzOptions.php:409
1048
- msgid "wpDiscuz Widgets"
1049
- msgstr "wpDiscuz Widgets"
1050
-
1051
- #: options/class.WpdiscuzOptions.php:410
1052
- msgid ""
1053
- "More Comment Widgets! Most voted comments, Active comment threads, Most "
1054
- "commented posts, Active comment authors widgets are available in wpDiscuz "
1055
- "Widgets Addon"
1056
- msgstr ""
1057
- "Mehr Kommentare Widgets! Die meisten ausgewählten Kommentare, wie \"Aktive "
1058
- "Kommentarthemen\", \"Meist kommentierte Beiträge\", \"Aktive Kommentarautoren"
1059
- "\" Widgets sind in wpDiscuz Widgets Addon verfügbar"
1060
-
1061
- #: options/class.WpdiscuzOptions.php:413
1062
- msgid "Front-end Moderation"
1063
- msgstr "Frontend-Moderation"
1064
-
1065
- #: options/class.WpdiscuzOptions.php:414
1066
- msgid ""
1067
- "You can moderate comments on front-end using all in one powerful yet simple "
1068
- "wpDiscuz Frontend Moderation addon."
1069
- msgstr ""
1070
- "Sie können Kommentare am Front-End moderieren, indem Sie das alles-in-einem "
1071
- "leistungsstarke und einfache wpDiscuz-Frontend-Moderation-Addon verwenden."
1072
-
1073
- #: options/class.WpdiscuzOptions.php:418
1074
- msgid ""
1075
- "You can let website visitors attach images and files to comments and embed "
1076
- "video/audio content using wpDiscuz Media Uploader addon."
1077
- msgstr ""
1078
- "Sie können Website-Besuchern das Anhängen von Bildern und Dateien an "
1079
- "Kommentare und das Einbetten von Video- / Audioinhalten mithilfe des Add-Ins "
1080
- "wpDiscuz Media Uploader ermöglichen."
1081
-
1082
- #: options/class.WpdiscuzOptions.php:421
1083
- msgid "Google ReCaptcha"
1084
- msgstr "Google ReCaptcha"
1085
-
1086
- #: options/class.WpdiscuzOptions.php:422
1087
- msgid ""
1088
- "Advanced spam protection with wpDiscuz Google reCAPTCHA addon. This addon "
1089
- "adds No-CAPTCHA reCAPTCHA on all comment forms. Stops spam and bot comments."
1090
- msgstr ""
1091
- "Erweiterter Spamschutz mit wpDiscuz Google reCAPTCHA Addon. Dieses Addon "
1092
- "fügt No-CAPTCHA reCAPTCHA für alle Kommentarformen hinzu. Stoppt Spam- und "
1093
- "Bot-Kommentare."
1094
-
1095
- #: options/class.WpdiscuzOptions.php:438
1096
- msgid "New Addons are available for wpDiscuz Comments Plugin"
1097
- msgstr "Neue Addons verfügbar für das wpDiscuz-Kommentare-Plugin"
1098
-
1099
- #: options/class.WpdiscuzOptions.php:445 options/class.WpdiscuzOptions.php:451
1100
- msgid "Go to wpDiscuz Addons subMenu"
1101
- msgstr "Gehen Sie zum WpDiscuz Addons Untermenü"
1102
-
1103
- #: options/class.WpdiscuzOptions.php:483
1104
- msgid "Do you know?"
1105
- msgstr "Wissen Sie es?"
1106
-
1107
- #: options/class.WpdiscuzOptions.php:496
1108
- msgid "More info"
1109
- msgstr "Mehr Info"
1110
-
1111
- #: options/class.WpdiscuzOptionsSerialized.php:754
1112
- msgid "Be the First to Comment!"
1113
- msgstr "Hinterlassen Sie den ersten Kommentar!"
1114
-
1115
- #: options/class.WpdiscuzOptionsSerialized.php:755
1116
- msgid "Start the discussion"
1117
- msgstr "Starte die Diskussion"
1118
-
1119
- #: options/class.WpdiscuzOptionsSerialized.php:756
1120
- msgid "Join the discussion"
1121
- msgstr "An Diskussion beteiligen"
1122
-
1123
- #: options/class.WpdiscuzOptionsSerialized.php:757
1124
- #: options/phrases-layouts/phrases-form.php:19
1125
- msgid "Comment threads"
1126
- msgstr "Kommentar Themen"
1127
-
1128
- #: options/class.WpdiscuzOptionsSerialized.php:758
1129
- #: options/phrases-layouts/phrases-form.php:23
1130
- msgid "Thread replies"
1131
- msgstr "Themen Antworten"
1132
-
1133
- #: options/class.WpdiscuzOptionsSerialized.php:759
1134
- #: options/phrases-layouts/phrases-form.php:27
1135
- msgid "Followers"
1136
- msgstr "Follower"
1137
-
1138
- #: options/class.WpdiscuzOptionsSerialized.php:760
1139
- #: options/phrases-layouts/phrases-form.php:31
1140
- msgid "Most reacted comment"
1141
- msgstr "Kommentar, auf das am meisten reagiert wurde"
1142
-
1143
- #: options/class.WpdiscuzOptionsSerialized.php:761
1144
- #: options/phrases-layouts/phrases-form.php:35
1145
- msgid "Hottest comment thread"
1146
- msgstr "Beliebtestes Kommentar Thema"
1147
-
1148
- #: options/class.WpdiscuzOptionsSerialized.php:762
1149
- #: options/phrases-layouts/phrases-form.php:39
1150
- msgid "Comment authors"
1151
- msgstr "Kommentatoren"
1152
-
1153
- #: options/class.WpdiscuzOptionsSerialized.php:763
1154
- #: options/phrases-layouts/phrases-form.php:43
1155
- msgid "Recent comment authors"
1156
- msgstr "Letzte Kommentartoren"
1157
-
1158
- #: options/class.WpdiscuzOptionsSerialized.php:765
1159
- #: options/phrases-layouts/phrases-form.php:51
1160
- msgid "Subscribe"
1161
- msgstr "Abonnieren"
1162
-
1163
- #: options/class.WpdiscuzOptionsSerialized.php:766
1164
- #: options/phrases-layouts/phrases-form.php:55
1165
- msgid "Notify of"
1166
- msgstr "Benachrichtige mich bei"
1167
-
1168
- #: options/class.WpdiscuzOptionsSerialized.php:767
1169
- msgid "new follow-up comments"
1170
- msgstr "allen neuen Kommentare"
1171
-
1172
- #: options/class.WpdiscuzOptionsSerialized.php:768
1173
- msgid "new replies to my comments"
1174
- msgstr "nur Antworten zu meinen Kommentar/en"
1175
-
1176
- #: options/class.WpdiscuzOptionsSerialized.php:769
1177
- msgid "Notify of new replies to this comment - (on)"
1178
- msgstr "Benachrichtigung über neue Antworten auf diesen Kommentar - (EIN)"
1179
-
1180
- #: options/class.WpdiscuzOptionsSerialized.php:770
1181
- msgid "Notify of new replies to this comment - (off)"
1182
- msgstr "Benachrichtigung über neue Antworten auf diesen Kommentar - (AUS)"
1183
-
1184
- #: options/class.WpdiscuzOptionsSerialized.php:771
1185
- #: options/phrases-layouts/phrases-form.php:75
1186
- msgid "Sort by"
1187
- msgstr "Sortieren nach"
1188
-
1189
- #: options/class.WpdiscuzOptionsSerialized.php:772
1190
- #: options/phrases-layouts/phrases-form.php:79
1191
- msgid "newest"
1192
- msgstr "neueste"
1193
-
1194
- #: options/class.WpdiscuzOptionsSerialized.php:773
1195
- #: options/phrases-layouts/phrases-form.php:83
1196
- msgid "oldest"
1197
- msgstr "älteste"
1198
-
1199
- #: options/class.WpdiscuzOptionsSerialized.php:774
1200
- #: options/phrases-layouts/phrases-form.php:87
1201
- msgid "most voted"
1202
- msgstr "meiste Bewertungen"
1203
-
1204
- #: options/class.WpdiscuzOptionsSerialized.php:775
1205
- msgid "Load More Comments"
1206
- msgstr "Weitere Kommentare anzeigen"
1207
-
1208
- #: options/class.WpdiscuzOptionsSerialized.php:776
1209
- #: options/phrases-layouts/phrases-general.php:19
1210
- msgid "Load Rest of Comments"
1211
- msgstr "Lade alle weiteren Kommentare"
1212
-
1213
- #: options/class.WpdiscuzOptionsSerialized.php:777
1214
- #: options/phrases-layouts/phrases-comment.php:11
1215
- msgid "Reply"
1216
- msgstr "Antworten"
1217
-
1218
- #: options/class.WpdiscuzOptionsSerialized.php:778
1219
- #: options/phrases-layouts/phrases-comment.php:15
1220
- msgid "Share"
1221
- msgstr "Teilen"
1222
-
1223
- #: options/class.WpdiscuzOptionsSerialized.php:780
1224
- #: options/phrases-layouts/phrases-comment.php:23
1225
- msgid "Share On Facebook"
1226
- msgstr "Auf Facebook teilen"
1227
-
1228
- #: options/class.WpdiscuzOptionsSerialized.php:781
1229
- #: options/phrases-layouts/phrases-comment.php:27
1230
- msgid "Share On Twitter"
1231
- msgstr "Auf Twitter teilen"
1232
-
1233
- #: options/class.WpdiscuzOptionsSerialized.php:782
1234
- #: options/phrases-layouts/phrases-comment.php:31
1235
- msgid "Share On Google"
1236
- msgstr "Auf Google teilen"
1237
-
1238
- #: options/class.WpdiscuzOptionsSerialized.php:783
1239
- #: options/phrases-layouts/phrases-comment.php:35
1240
- msgid "Share On VKontakte"
1241
- msgstr "Auf VKontakte teilen"
1242
-
1243
- #: options/class.WpdiscuzOptionsSerialized.php:784
1244
- #: options/phrases-layouts/phrases-comment.php:39
1245
- msgid "Share On Odnoklassniki"
1246
- msgstr "Auf Odnoklassniki teilen"
1247
-
1248
- #: options/class.WpdiscuzOptionsSerialized.php:785
1249
- #: options/phrases-layouts/phrases-comment.php:43
1250
- msgid "Hide Replies"
1251
- msgstr "Antworten verbergen"
1252
-
1253
- #: options/class.WpdiscuzOptionsSerialized.php:786
1254
- #: options/phrases-layouts/phrases-comment.php:47
1255
- msgid "View Replies"
1256
- msgstr "Antworten anzeigen"
1257
-
1258
- #: options/class.WpdiscuzOptionsSerialized.php:787
1259
- msgid "New Comment"
1260
- msgstr "Neuer Kommentar"
1261
-
1262
- #: options/class.WpdiscuzOptionsSerialized.php:788
1263
- #: options/class.WpdiscuzOptionsSerialized.php:790
1264
- #: options/class.WpdiscuzOptionsSerialized.php:792
1265
- #: options/class.WpdiscuzOptionsSerialized.php:796
1266
- #: options/phrases-layouts/phrases-email.php:120
1267
- msgid "Unsubscribe"
1268
- msgstr "Abmelden"
1269
-
1270
- #: options/class.WpdiscuzOptionsSerialized.php:788
1271
- msgid ""
1272
- "Hi [SUBSCRIBER_NAME],<br/><br/>new comment on the discussion section you've "
1273
- "been interested in<br/><br/><a href=\"[COMMENT_URL]\">[COMMENT_URL]</a><br/"
1274
- "><br/>[COMMENT_CONTENT]<br/><br/><a href=\"[UNSUBSCRIBE_URL]\">"
1275
- msgstr ""
1276
- "Hallo [SUBSCRIBER_NAME],<br/><br/>es gibt einen neuen Kommentar zum "
1277
- "Diskussionsteil, für den Sie sich interessiert haben<br/><br/><a href="
1278
- "\"[COMMENT_URL]\">[COMMENT_URL]</a><br/><br/>[COMMENT_CONTENT]<br/><br/><a "
1279
- "href=\"[UNSUBSCRIBE_URL]\">"
1280
-
1281
- #: options/class.WpdiscuzOptionsSerialized.php:789
1282
- #: options/class.WpdiscuzOptionsSerialized.php:791
1283
- msgid "New Reply"
1284
- msgstr "Neue Antwort"
1285
-
1286
- #: options/class.WpdiscuzOptionsSerialized.php:790
1287
- msgid ""
1288
- "Hi [SUBSCRIBER_NAME],<br/><br/>new reply on the discussion section you've "
1289
- "been interested in<br/><br/><a href=\"[COMMENT_URL]\">[COMMENT_URL]</a><br/"
1290
- "><br/>[COMMENT_CONTENT]<br/><br/><a href=\"[UNSUBSCRIBE_URL]\">"
1291
- msgstr ""
1292
- "Hallo [SUBSCRIBER_NAME],<br/><br/>es gibt eine neue Antwort auf den "
1293
- "Diskussionsteil, für den Sie sich interessiert haben<br/><br/><a href="
1294
- "\"[COMMENT_URL]\">[COMMENT_URL]</a><br/><br/>[COMMENT_CONTENT]<br/><br/><a "
1295
- "href=\"[UNSUBSCRIBE_URL]\">"
1296
-
1297
- #: options/class.WpdiscuzOptionsSerialized.php:792
1298
- msgid ""
1299
- "Hi [COMMENT_AUTHOR],<br/><br/>new reply on the discussion section you've "
1300
- "been interested in<br/><br/><a href=\"[COMMENT_URL]\">[COMMENT_URL]</a><br/"
1301
- "><br/>[COMMENT_CONTENT]<br/><br/><a href=\"[UNSUBSCRIBE_URL]\">"
1302
- msgstr ""
1303
- "Hallo [COMMENT_AUTHOR],<br/><br/>es gibt eine neue Antwort auf den "
1304
- "Diskussionsteil, für den Sie sich interessiert haben<br/><br/><a href="
1305
- "\"[COMMENT_URL]\">[COMMENT_URL]</a><br/><br/>[COMMENT_CONTENT]<br/><br/><a "
1306
- "href=\"[UNSUBSCRIBE_URL]\">"
1307
-
1308
- #: options/class.WpdiscuzOptionsSerialized.php:793
1309
- msgid "You're subscribed for new replies on this comment"
1310
- msgstr ""
1311
- "Sie haben alle zukünftigen Antworten zu diesem Kommentar erfolgreich "
1312
- "abonniert"
1313
-
1314
- #: options/class.WpdiscuzOptionsSerialized.php:794
1315
- msgid "You're subscribed for new replies on all your comments"
1316
- msgstr ""
1317
- "Sie haben alle zukünftigen Antworten zu allen Kommentaren erfolgreich "
1318
- "abonniert"
1319
-
1320
- #: options/class.WpdiscuzOptionsSerialized.php:795
1321
- msgid "You're subscribed for new follow-up comments on this post"
1322
- msgstr ""
1323
- "Sie haben alle zukünftigen Kommentare zu diesem Beitrag erfolgreich abonniert"
1324
-
1325
- #: options/class.WpdiscuzOptionsSerialized.php:797
1326
- msgid "Cancel subscription"
1327
- msgstr "Abrechnung kündigen"
1328
-
1329
- #: options/class.WpdiscuzOptionsSerialized.php:798
1330
- #: options/phrases-layouts/phrases-notification.php:19
1331
- msgid "You've successfully unsubscribed."
1332
- msgstr "Kommentar-Benachrichtigung erfolgreich de-abonniert."
1333
-
1334
- #: options/class.WpdiscuzOptionsSerialized.php:799
1335
- #: options/phrases-layouts/phrases-notification.php:15
1336
- msgid "You've successfully subscribed."
1337
- msgstr "Kommentar-Benachrichtigung erfolgreich abonniert."
1338
-
1339
- #: options/class.WpdiscuzOptionsSerialized.php:800
1340
- #: options/phrases-layouts/phrases-email.php:128
1341
- msgid "Confirm your subscription"
1342
- msgstr "Benachrichtigung bestätigen"
1343
-
1344
- #: options/class.WpdiscuzOptionsSerialized.php:801
1345
- #: options/phrases-layouts/phrases-email.php:132
1346
- msgid "You've successfully confirmed your subscription."
1347
- msgstr "Sie haben Ihre Kommentar-Benachrichtigung/en erfolgreich abonniert."
1348
-
1349
- #: options/class.WpdiscuzOptionsSerialized.php:802
1350
- msgid "Subscription Confirmation"
1351
- msgstr "Anmeldungsbestätigung"
1352
-
1353
- #: options/class.WpdiscuzOptionsSerialized.php:803
1354
- msgid "Confirm Your Subscrption"
1355
- msgstr "Bestätigen Sie Ihr Abonnement"
1356
-
1357
- #: options/class.WpdiscuzOptionsSerialized.php:803
1358
- msgid "Cancel Subscription"
1359
- msgstr "Abonnement kündigen"
1360
-
1361
- #: options/class.WpdiscuzOptionsSerialized.php:803
1362
- msgid ""
1363
- "Hi, <br/> You just subscribed for new comments on our website. This means "
1364
- "you will receive an email when new comments are posted according to "
1365
- "subscription option you've chosen. <br/> To activate, click confirm below. "
1366
- "If you believe this is an error, ignore this message and we'll never bother "
1367
- "you again. <br/><br/><a href=\"[POST_URL]\">[POST_TITLE]</a><br/><br/><a "
1368
- "href=\"[CONFIRM_URL]\">"
1369
- msgstr ""
1370
- "Hallo, <br/> Sie haben soeben neue Kommentare auf unserer Website abonniert. "
1371
- "Das bedeutet, dass Sie eine E-Mail erhalten, wenn neue Kommentare "
1372
- "entsprechend der von Ihnen gewählten Abonnement-Option veröffentlicht "
1373
- "werden. <br/> Zum Aktivieren klicken Sie unten auf \"Bestätigen\". Wenn Sie "
1374
- "glauben, dass dies ein Fehler ist, ignorieren Sie diese Meldung und wir "
1375
- "werden Sie nicht wieder belästigen. <br/><br/><a href="
1376
- "\"[POST_URL]\">[POST_TITLE]</a><br/><br/><a href=\"[CONFIRM_URL]\">"
1377
-
1378
- #: options/class.WpdiscuzOptionsSerialized.php:804
1379
- msgid "please fill out this field to comment"
1380
- msgstr "Bitte füllen Sie dieses Feld aus"
1381
-
1382
- #: options/class.WpdiscuzOptionsSerialized.php:805
1383
- msgid "email address is invalid"
1384
- msgstr "Bitte überprüfen Sie Ihre angegebene Email-Adresse"
1385
-
1386
- #: options/class.WpdiscuzOptionsSerialized.php:806
1387
- msgid "url is invalid"
1388
- msgstr "Bitte überprüfen Sie Ihre angegebene URL"
1389
-
1390
- #: options/class.WpdiscuzOptionsSerialized.php:807
1391
- msgid "year"
1392
- msgstr "Jahr"
1393
-
1394
- #: options/class.WpdiscuzOptionsSerialized.php:808
1395
- msgid "years"
1396
- msgstr "Jahre"
1397
-
1398
- #: options/class.WpdiscuzOptionsSerialized.php:809
1399
- msgid "month"
1400
- msgstr "Monat"
1401
-
1402
- #: options/class.WpdiscuzOptionsSerialized.php:810
1403
- msgid "months"
1404
- msgstr "Monate"
1405
-
1406
- #: options/class.WpdiscuzOptionsSerialized.php:811
1407
- msgid "day"
1408
- msgstr "Tag"
1409
-
1410
- #: options/class.WpdiscuzOptionsSerialized.php:812
1411
- msgid "days"
1412
- msgstr "Tage"
1413
-
1414
- #: options/class.WpdiscuzOptionsSerialized.php:813
1415
- msgid "hour"
1416
- msgstr "Stunde"
1417
-
1418
- #: options/class.WpdiscuzOptionsSerialized.php:814
1419
- msgid "hours"
1420
- msgstr "Stunden"
1421
-
1422
- #: options/class.WpdiscuzOptionsSerialized.php:815
1423
- msgid "minute"
1424
- msgstr "Minute"
1425
-
1426
- #: options/class.WpdiscuzOptionsSerialized.php:816
1427
- msgid "minutes"
1428
- msgstr "Minuten"
1429
-
1430
- #: options/class.WpdiscuzOptionsSerialized.php:817
1431
- msgid "second"
1432
- msgstr "Sekunde"
1433
-
1434
- #: options/class.WpdiscuzOptionsSerialized.php:818
1435
- msgid "seconds"
1436
- msgstr "Sekunden"
1437
-
1438
- #: options/class.WpdiscuzOptionsSerialized.php:819
1439
- msgid "right now"
1440
- msgstr "gerade eben"
1441
-
1442
- #: options/class.WpdiscuzOptionsSerialized.php:820
1443
- msgid "ago"
1444
- msgstr "zuvor"
1445
-
1446
- #: options/class.WpdiscuzOptionsSerialized.php:821
1447
- #: options/phrases-layouts/phrases-notification.php:38
1448
- msgid "You must be"
1449
- msgstr "Du musst"
1450
-
1451
- #: options/class.WpdiscuzOptionsSerialized.php:822
1452
- msgid "You are logged in as"
1453
- msgstr "Sie sind angemeldet als"
1454
-
1455
- #: options/class.WpdiscuzOptionsSerialized.php:823
1456
- #: options/phrases-layouts/phrases-notification.php:29
1457
- msgid "Login"
1458
- msgstr "Anmelden"
1459
-
1460
- #: options/class.WpdiscuzOptionsSerialized.php:824
1461
- #: options/phrases-layouts/phrases-notification.php:33
1462
- #, php-format
1463
- msgid "Please %s to comment"
1464
- msgstr "Bitte %s um zu kommentieren"
1465
-
1466
- #: options/class.WpdiscuzOptionsSerialized.php:825
1467
- #: options/phrases-layouts/phrases-notification.php:54
1468
- msgid "Log out"
1469
- msgstr "Abmelden"
1470
-
1471
- #: options/class.WpdiscuzOptionsSerialized.php:826
1472
- msgid "logged in"
1473
- msgstr "eingeloggt"
1474
-
1475
- #: options/class.WpdiscuzOptionsSerialized.php:827
1476
- msgid "to post a comment."
1477
- msgstr "um ein Kommentar oder eine Antwort schreiben zu können."
1478
-
1479
- #: options/class.WpdiscuzOptionsSerialized.php:828
1480
- #: options/phrases-layouts/phrases-comment.php:75
1481
- msgid "Vote Up"
1482
- msgstr "Gefällt mir"
1483
-
1484
- #: options/class.WpdiscuzOptionsSerialized.php:829
1485
- #: options/phrases-layouts/phrases-comment.php:79
1486
- msgid "Vote Down"
1487
- msgstr "Ablehnen"
1488
-
1489
- #: options/class.WpdiscuzOptionsSerialized.php:830
1490
- #: options/phrases-layouts/phrases-notification.php:58
1491
- msgid "Vote Counted"
1492
- msgstr "Gezählte Stimmen"
1493
-
1494
- #: options/class.WpdiscuzOptionsSerialized.php:831
1495
- msgid "You've already voted for this comment"
1496
- msgstr "Es ist immer nur eine Bewertung erlaubt"
1497
-
1498
- #: options/class.WpdiscuzOptionsSerialized.php:832
1499
- #: options/phrases-layouts/phrases-error.php:27
1500
- msgid "Voting Error"
1501
- msgstr "Bewertungs-Fehler"
1502
-
1503
- #: options/class.WpdiscuzOptionsSerialized.php:833
1504
- msgid "You Must Be Logged In To Vote"
1505
- msgstr "Um Ihre Stimme abgeben zu können müssen Sie angemeldet sein"
1506
-
1507
- #: options/class.WpdiscuzOptionsSerialized.php:834
1508
- msgid "You cannot vote for your comment"
1509
- msgstr "Eigene Kommentare können nicht bewertet werden"
1510
-
1511
- #: options/class.WpdiscuzOptionsSerialized.php:835
1512
- msgid "You are not allowed to vote for this comment"
1513
- msgstr "Es ist nur eine Stimmvergabe möglich"
1514
-
1515
- #: options/class.WpdiscuzOptionsSerialized.php:836
1516
- #: options/phrases-layouts/phrases-error.php:39
1517
- msgid "Invalid Captcha Code"
1518
- msgstr "Captcha Code ist falsch"
1519
-
1520
- #: options/class.WpdiscuzOptionsSerialized.php:837
1521
- #: options/phrases-layouts/phrases-error.php:43
1522
- msgid "Some of field value is invalid"
1523
- msgstr "Nicht alle von Ihnen ausgefüllten Felder sind richtig"
1524
-
1525
- #: options/class.WpdiscuzOptionsSerialized.php:838
1526
- msgid "new comment"
1527
- msgstr "Neuer Kommentar"
1528
-
1529
- #: options/class.WpdiscuzOptionsSerialized.php:839
1530
- msgid "new comments"
1531
- msgstr "neue Kommentare"
1532
-
1533
- #: options/class.WpdiscuzOptionsSerialized.php:840
1534
- msgid "Comment awaiting moderation"
1535
- msgstr "Ihr Kommentar wurde zur Freischaltung vorgelegt"
1536
-
1537
- #: options/class.WpdiscuzOptionsSerialized.php:841
1538
- msgid "new reply on your comment"
1539
- msgstr "neue Anwort zu Ihrem Kommentar"
1540
-
1541
- #: options/class.WpdiscuzOptionsSerialized.php:842
1542
- msgid "new replies on your comments"
1543
- msgstr "neue Antworten zu Ihren Kommentaren"
1544
-
1545
- #: options/class.WpdiscuzOptionsSerialized.php:843
1546
- msgid "Sorry, the comment was not updated"
1547
- msgstr ""
1548
- "Tut uns leid, aber dieser Kommentar konnte leider nicht aktualisiert werden"
1549
-
1550
- #: options/class.WpdiscuzOptionsSerialized.php:844
1551
- msgid "Sorry, this comment no longer possible to edit"
1552
- msgstr ""
1553
- "Tut uns leid, aber dieser Kommentar kann leider nicht mehr aktualisiert "
1554
- "werden"
1555
-
1556
- #: options/class.WpdiscuzOptionsSerialized.php:845
1557
- msgid "You've not made any changes"
1558
- msgstr "Es wurden keine Änderungen von Ihnen vorgenommen"
1559
-
1560
- #: options/class.WpdiscuzOptionsSerialized.php:846
1561
- msgid "Save"
1562
- msgstr "Speichern"
1563
-
1564
- #: options/class.WpdiscuzOptionsSerialized.php:847
1565
- msgid "Cancel"
1566
- msgstr "Abbrechen"
1567
-
1568
- #: options/class.WpdiscuzOptionsSerialized.php:848
1569
- msgid "Input is too short"
1570
- msgstr "Diese Eingabe ist zu kurz"
1571
-
1572
- #: options/class.WpdiscuzOptionsSerialized.php:849
1573
- msgid "Input is too long"
1574
- msgstr "Diese Eingabe ist zu lang"
1575
-
1576
- #: options/class.WpdiscuzOptionsSerialized.php:850
1577
- msgid "Read more &raquo;"
1578
- msgstr "Weiterlesen &raquo;"
1579
-
1580
- #: options/class.WpdiscuzOptionsSerialized.php:851
1581
- msgid "Anonymous"
1582
- msgstr "Anonym"
1583
-
1584
- #: options/class.WpdiscuzOptionsSerialized.php:852
1585
- #: options/phrases-layouts/phrases-error.php:67
1586
- msgid "Please fill out required fields"
1587
- msgstr "Bitte füllen Sie die erforderlichen Felder aus"
1588
-
1589
- #: options/class.WpdiscuzOptionsSerialized.php:853
1590
- #: options/phrases-layouts/phrases-social-login.php:11
1591
- msgid "Connect with"
1592
- msgstr "Anmelden mit"
1593
-
1594
- #: options/class.WpdiscuzOptionsSerialized.php:854
1595
- #: options/phrases-layouts/phrases-notification.php:11
1596
- msgid "You're subscribed to"
1597
- msgstr "Sie sind angemeldet für"
1598
-
1599
- #: options/class.WpdiscuzOptionsSerialized.php:855
1600
- msgid "Participate in this discussion via email"
1601
- msgstr "Folge dieser Diskussion per E-Mail"
1602
-
1603
- #: options/class.WpdiscuzOptionsSerialized.php:856
1604
- #: utils/layouts/pagination.php:46
1605
- msgid "&rsaquo;"
1606
- msgstr "&rsaquo;"
1607
-
1608
- #: options/class.WpdiscuzOptionsSerialized.php:857
1609
- msgid "Your comment is approved!"
1610
- msgstr "Ihr Kommentar wurde genehmigt!"
1611
-
1612
- #: options/class.WpdiscuzOptionsSerialized.php:858
1613
- msgid ""
1614
- "Hi [COMMENT_AUTHOR],<br/><br/>your comment was approved.<br/><br/><a href="
1615
- "\"[COMMENT_URL]\">[COMMENT_URL]</a><br/><br/>[COMMENT_CONTENT]"
1616
- msgstr ""
1617
- "Hallo [COMMENT_AUTHOR],<br/><br/>>Ihr Kommentar wurde genehmigt.<br/><br/><a "
1618
- "href=\"[COMMENT_URL]\">[COMMENT_URL]</a><br/><br/>[COMMENT_CONTENT]"
1619
-
1620
- #: options/class.WpdiscuzOptionsSerialized.php:859
1621
- msgid "Comments are closed."
1622
- msgstr "Kommentare sind geschlossen."
1623
-
1624
- #: options/class.WpdiscuzOptionsSerialized.php:860
1625
- #: options/phrases-layouts/phrases-comment.php:99
1626
- msgid "Stick this comment - (on)"
1627
- msgstr "Diesen Kommentar anheften - (EIN)"
1628
-
1629
- #: options/class.WpdiscuzOptionsSerialized.php:861
1630
- #: options/phrases-layouts/phrases-comment.php:103
1631
- msgid "Stick this comment - (off)"
1632
- msgstr "Diesen Kommentar anheften - (AUS)"
1633
-
1634
- #: options/class.WpdiscuzOptionsSerialized.php:862
1635
- #: options/phrases-layouts/phrases-comment.php:107
1636
- msgid "Stick"
1637
- msgstr "Anheften"
1638
-
1639
- #: options/class.WpdiscuzOptionsSerialized.php:863
1640
- #: options/phrases-layouts/phrases-comment.php:111
1641
- msgid "Unstick"
1642
- msgstr "Abheften"
1643
-
1644
- #: options/class.WpdiscuzOptionsSerialized.php:864
1645
- msgid "Sticky comment thread"
1646
- msgstr "Angeheftetes Kommentar Thema"
1647
-
1648
- #: options/class.WpdiscuzOptionsSerialized.php:865
1649
- #: options/phrases-layouts/phrases-comment.php:119
1650
- msgid "Close this comment - (on)"
1651
- msgstr "Diesen Kommentar schließen - (EIN)"
1652
-
1653
- #: options/class.WpdiscuzOptionsSerialized.php:866
1654
- #: options/phrases-layouts/phrases-comment.php:123
1655
- msgid "Close this comment - (off)"
1656
- msgstr "Diesen Kommentar schließen - (AUS)"
1657
-
1658
- #: options/class.WpdiscuzOptionsSerialized.php:867
1659
- #: options/phrases-layouts/phrases-comment.php:127
1660
- msgid "Close"
1661
- msgstr "Schließen"
1662
-
1663
- #: options/class.WpdiscuzOptionsSerialized.php:868
1664
- #: options/phrases-layouts/phrases-comment.php:131
1665
- msgid "Open"
1666
- msgstr "Offen"
1667
-
1668
- #: options/class.WpdiscuzOptionsSerialized.php:869
1669
- msgid "Closed comment thread"
1670
- msgstr "Geschlossener Kommentar Thema"
1671
-
1672
- #: options/class.WpdiscuzOptionsSerialized.php:870
1673
- msgid "I allow to create an account"
1674
- msgstr "Ich erlaube ein Konto zu erstellen"
1675
-
1676
- #: options/class.WpdiscuzOptionsSerialized.php:871
1677
- msgid ""
1678
- "When you login first time using a Social Login button, we collect your "
1679
- "account public profile information shared by Social Login provider, based on "
1680
- "your privacy settings. We also get your email address to automatically "
1681
- "create an account for you in our website. Once your account is created, "
1682
- "you'll be logged-in to this account."
1683
- msgstr ""
1684
- "Wenn Sie sich zum ersten Mal mit einer Social-Login-Schaltfläche anmelden, "
1685
- "erfassen wir die von Ihrem Social Login-Anbieter freigegebenen Informationen "
1686
- "zum öffentlichen Profil Ihres Kontos, basierend auf Ihren "
1687
- "Datenschutzeinstellungen. Wir erhalten auch Ihre E-Mail-Adresse, um "
1688
- "automatisch ein Konto für Sie auf unserer Website zu erstellen. Sobald Ihr "
1689
- "Konto erstellt wurde, werden Sie bei diesem Konto angemeldet."
1690
-
1691
- #: options/class.WpdiscuzOptionsSerialized.php:872
1692
- msgid "This comment form is under antispam protection"
1693
- msgstr "Dieses Kommentarformular steht unter Antispam-Schutz"
1694
-
1695
- #: options/class.WpdiscuzOptionsSerialized.php:873
1696
- #: options/phrases-layouts/phrases-social-login.php:23
1697
- msgid "Disagree"
1698
- msgstr "Ablehnen"
1699
-
1700
- #: options/class.WpdiscuzOptionsSerialized.php:874
1701
- #: options/phrases-layouts/phrases-social-login.php:27
1702
- msgid "Agree"
1703
- msgstr "Ich stimme zu"
1704
-
1705
- #: options/class.WpdiscuzOptionsSerialized.php:875
1706
- #: options/phrases-layouts/phrases-user-settings.php:11
1707
- msgid "My content and settings"
1708
- msgstr "Meine Inhalte und Einstellungen"
1709
-
1710
- #: options/class.WpdiscuzOptionsSerialized.php:876
1711
- #: options/phrases-layouts/phrases-user-settings.php:15
1712
- msgid "Activity"
1713
- msgstr "Aktivität"
1714
-
1715
- #: options/class.WpdiscuzOptionsSerialized.php:877
1716
- #: options/phrases-layouts/phrases-user-settings.php:19
1717
- msgid "Subscriptions"
1718
- msgstr "Abonnements"
1719
-
1720
- #: options/class.WpdiscuzOptionsSerialized.php:878
1721
- #: options/phrases-layouts/phrases-user-settings.php:23
1722
- msgid "In response to:"
1723
- msgstr "Als Antwort auf:"
1724
-
1725
- #: options/class.WpdiscuzOptionsSerialized.php:879
1726
- #: options/class.WpdiscuzOptionsSerialized.php:885
1727
- #: options/phrases-layouts/phrases-user-settings.php:27
1728
- #: options/phrases-layouts/phrases-user-settings.php:51
1729
- msgid "Bulk management via email"
1730
- msgstr "Massen-Management per E-Mail"
1731
-
1732
- #: options/class.WpdiscuzOptionsSerialized.php:880
1733
- msgid ""
1734
- "Click the button above to get an email with bulk delete and unsubscribe "
1735
- "links."
1736
- msgstr ""
1737
- "Klicken Sie auf die Schaltfläche oben, um eine E-Mail mit Links zum Löschen "
1738
- "und zur Massen-Abbestellung zu erhalten."
1739
-
1740
- #: options/class.WpdiscuzOptionsSerialized.php:881
1741
- #: options/phrases-layouts/phrases-user-settings.php:35
1742
- msgid "No data found!"
1743
- msgstr "Keine Daten gefunden!"
1744
-
1745
- #: options/class.WpdiscuzOptionsSerialized.php:882
1746
- #: options/class.WpdiscuzOptionsSerialized.php:886
1747
- #: options/phrases-layouts/phrases-user-settings.php:39
1748
- #: options/phrases-layouts/phrases-user-settings.php:55
1749
- msgid "Delete all my comments"
1750
- msgstr "Löschen Sie alle meine Kommentare"
1751
-
1752
- #: options/class.WpdiscuzOptionsSerialized.php:883
1753
- #: options/phrases-layouts/phrases-user-settings.php:43
1754
- msgid "Cancel all comment subscriptions"
1755
- msgstr "Brechen Sie alle Kommentarabonnements ab"
1756
-
1757
- #: options/class.WpdiscuzOptionsSerialized.php:884
1758
- #: options/phrases-layouts/phrases-user-settings.php:47
1759
- msgid "Clear cookies with my personal data"
1760
- msgstr "Löschen Sie Cookies mit meinen persönlichen Daten"
1761
-
1762
- #: options/class.WpdiscuzOptionsSerialized.php:887
1763
- msgid ""
1764
- "Please use this link to delete all your comments. Please note, that this "
1765
- "action cannot be undone."
1766
- msgstr ""
1767
- "Bitte benutzen Sie diesen Link, um alle Ihre Kommentare zu löschen. Bitte "
1768
- "beachten Sie, dass diese Aktion nicht rückgängig gemacht werden kann."
1769
-
1770
- #: options/class.WpdiscuzOptionsSerialized.php:888
1771
- #: options/phrases-layouts/phrases-user-settings.php:63
1772
- msgid "Delete all my subscriptions"
1773
- msgstr "Alle meine Abonnements löschen"
1774
-
1775
- #: options/class.WpdiscuzOptionsSerialized.php:889
1776
- msgid ""
1777
- "Please use this link to cancel all subscriptions for new comments. Please "
1778
- "note, that this action cannot be undone."
1779
- msgstr ""
1780
- "Bitte verwenden Sie diesen Link, um alle Abonnements für neue Kommentare "
1781
- "abzubrechen. Bitte beachten Sie, dass diese Aktion nicht rückgängig gemacht "
1782
- "werden kann."
1783
-
1784
- #: options/class.WpdiscuzOptionsSerialized.php:890
1785
- #: options/phrases-layouts/phrases-user-settings.php:71
1786
- msgid "subscribed to this comment"
1787
- msgstr "abonnierte diesen Kommentar"
1788
-
1789
- #: options/class.WpdiscuzOptionsSerialized.php:891
1790
- #: options/phrases-layouts/phrases-user-settings.php:75
1791
- msgid "subscribed to my comments"
1792
- msgstr "abonnierte meine Kommentare"
1793
-
1794
- #: options/class.WpdiscuzOptionsSerialized.php:892
1795
- #: options/phrases-layouts/phrases-user-settings.php:79
1796
- msgid "subscribed to all follow-up comments of this post"
1797
- msgstr "abonnierte alle Follow-up-Kommentare dieses Beitrags"
1798
-
1799
- #: options/class.WpdiscuzOptionsSerialized.php:893
1800
- #: options/phrases-layouts/phrases-user-settings.php:83
1801
- msgid "Please check your email."
1802
- msgstr "Bitte überprüfen Sie Ihre E-Mail."
1803
-
1804
- #: options/class.WpdiscuzOptionsSerialized.php:894
1805
- #: options/phrases-layouts/phrases-user-settings.php:87
1806
- msgid "Error : Can't send email."
1807
- msgstr "Fehler: E-Mail kann nicht gesendet werden."
1808
-
1809
- #: options/class.WpdiscuzOptionsSerialized.php:895
1810
- #: options/phrases-layouts/phrases-user-settings.php:91
1811
- msgid "Are you sure you want to delete this comment?"
1812
- msgstr "Sind Sie sicher, dass Sie diesen Kommentar löschen wollen?"
1813
-
1814
- #: options/class.WpdiscuzOptionsSerialized.php:896
1815
- #: options/phrases-layouts/phrases-user-settings.php:95
1816
- msgid "Are you sure you want to cancel this subscription?"
1817
- msgstr "Sind Sie sicher, dass Sie Ihr Abo kündigen wollen?"
1818
-
1819
- #: options/html-addons.php:11
1820
- msgid "wpDiscuz Addons"
1821
- msgstr "wpDiscuz Addons"
1822
-
1823
- #: options/html-addons.php:19
1824
- msgid "wpDiscuz Add-ons"
1825
- msgstr "wpDiscuz Addons"
1826
-
1827
- #: options/html-addons.php:20
1828
- msgid "Addons Support Forum"
1829
- msgstr "Addons Support Forum"
1830
-
1831
- #: options/html-addons.php:25
1832
- msgid ""
1833
- "All wpDiscuz addons are being developed by wpDiscuz developers at gVectors "
1834
- "Team, those are very solid premium level extensions and come with premium "
1835
- "support.\n"
1836
- " These addons help us to keep top level "
1837
- "development of the free wpDiscuz plugin. All essential and even dozens of "
1838
- "extra-cool features are already available for free in core wpDiscuz. \n"
1839
- " There will never be any limits, any pro and paid "
1840
- "versions for wpDiscuz. We have another dozens of awesome features in our to-"
1841
- "do list which will also be added for free in future releases. \n"
1842
- " So the free wpDiscuz development always stays on "
1843
- "the first priority and wpDiscuz is being extended with new free functions "
1844
- "and features even faster than before."
1845
- msgstr ""
1846
- "Alle wpDiscuz-Addons werden von den wpDiscuz-Entwicklern des gVectors-Teams "
1847
- "entwickelt, welche sehr solide Premium-Erweiterungen sind und das Team Ihnen "
1848
- "Premium-Support anbietet.\n"
1849
- " Diese Addons helfen uns, die Entwicklung des "
1850
- "kostenlosen wpDiscuz-Plugins auf höchstem Niveau zu halten. Alle wichtigen "
1851
- "und sogar Dutzende extra-coole Features sind bereits im Kern von wpDiscuz "
1852
- "kostenlos verfügbar. \n"
1853
- " Für wpDiscuz gibt es keine Limits, keine Pro und "
1854
- "keine kostenpflichtigen Versionen. Wir haben weitere Dutzende von tollen "
1855
- "Funktionen in unserer To-Do-Liste, die auch in zukünftigen Versionen "
1856
- "kostenlos hinzugefügt werden. \n"
1857
- " Die freie Entwicklung von wpDiscuz steht also "
1858
- "immer an erster Stelle und wpDiscuz wird noch schneller um neue Funktionen "
1859
- "und Funktionen erweitert."
1860
-
1861
- #: options/html-addons.php:31
1862
- msgid " Thank you!<br/> Sincerely yours,<br/> gVectors Team&nbsp;"
1863
- msgstr " Danke!<br/>Mit freundlichen Grüßen,<br/>gVectors Team&nbsp;"
1864
-
1865
- #: options/html-addons.php:53
1866
- msgid "Installed"
1867
- msgstr "Installiert"
1868
-
1869
- #: options/html-addons.php:57
1870
- msgid "Version"
1871
- msgstr "Version"
1872
-
1873
- #: options/html-addons.php:58
1874
- msgid "at least"
1875
- msgstr "mindestens"
1876
-
1877
- #: options/html-addons.php:60
1878
- msgid "Live Preview | Buy"
1879
- msgstr "Livevorschau | Kaufen"
1880
-
1881
- #: options/html-addons.php:66
1882
- msgid "More information about"
1883
- msgstr "Mehr Informationen zu"
1884
-
1885
- #: options/html-options.php:10
1886
- msgid "wpDiscuz General Settings"
1887
- msgstr "wpDiscuz allgemeine Einstellungen"
1888
-
1889
- #: options/html-options.php:19
1890
- msgid "Need More Features?"
1891
- msgstr "Benötigen Sie mehr Funktionen?"
1892
-
1893
- #: options/html-options.php:20
1894
- msgid "Documentation"
1895
- msgstr "Dokumentation"
1896
-
1897
- #: options/html-options.php:21
1898
- msgid "Support"
1899
- msgstr "Support"
1900
-
1901
- #: options/html-options.php:54 options/html-phrases.php:21
1902
- msgid "General"
1903
- msgstr "Allgemein"
1904
-
1905
- #: options/html-options.php:55
1906
- msgid "Comment Form"
1907
- msgstr "Kommentarformular"
1908
-
1909
- #: options/html-options.php:56
1910
- msgid "Comment List"
1911
- msgstr "Kommentarliste"
1912
-
1913
- #: options/html-options.php:57
1914
- #: options/options-layouts/settings-live-update.php:7
1915
- msgid "Live Update"
1916
- msgstr "LiveUpdate"
1917
-
1918
- #: options/html-options.php:59
1919
- msgid "Subscription"
1920
- msgstr "Abonnement"
1921
-
1922
- #: options/html-options.php:59
1923
- msgid "and Postmatic"
1924
- msgstr "und Postmatic"
1925
-
1926
- #: options/html-options.php:60
1927
- msgid "Styling"
1928
- msgstr "Styling"
1929
-
1930
- #: options/html-options.php:61
1931
- msgid "Cache"
1932
- msgstr "Cache"
1933
-
1934
- #: options/html-options.php:62 options/options-layouts/settings-social.php:7
1935
- msgid "Social Login &amp; Share"
1936
- msgstr "Social Login &amp; Teilen"
1937
-
1938
- #: options/html-options.php:63
1939
- #: options/options-layouts/settings-integrations.php:7
1940
- msgid "Integrations"
1941
- msgstr "Integrationen"
1942
-
1943
- #: options/html-options.php:154
1944
- msgid "Reset Options"
1945
- msgstr "Optionen zurücksetzen"
1946
-
1947
- #: options/html-options.php:156
1948
- msgid "Remove vote data"
1949
- msgstr "Voting Daten entfernen"
1950
-
1951
- #: options/html-options.php:157 options/html-phrases.php:80
1952
- msgid "Save Changes"
1953
- msgstr "Änderungen speichern"
1954
-
1955
- #: options/html-phrases.php:10
1956
- msgid "wpDiscuz Front-end Phrases"
1957
- msgstr "wpDiscuz Frontend-Sätze"
1958
-
1959
- #: options/html-phrases.php:23
1960
- msgid "Comment"
1961
- msgstr "Kommentar"
1962
-
1963
- #: options/html-phrases.php:24
1964
- msgid "Date/Time"
1965
- msgstr "Datum/Uhrzeit"
1966
-
1967
- #: options/html-phrases.php:26
1968
- msgid "Notification"
1969
- msgstr "Benachrichtigung"
1970
-
1971
- #: options/html-phrases.php:27
1972
- #: options/phrases-layouts/phrases-social-login.php:7
1973
- msgid "Social Login"
1974
- msgstr "Social Login"
1975
-
1976
- #: options/html-phrases.php:28
1977
- msgid "User Settings"
1978
- msgstr "Benutzereinstellungen"
1979
-
1980
- #: options/html-phrases.php:29
1981
- msgid "Errors"
1982
- msgstr "Fehler"
1983
-
1984
- #: options/html-phrases.php:79
1985
- msgid "Reset Phrases"
1986
- msgstr "Phrasen zurücksetzen"
1987
-
1988
- #: options/html-tools.php:10
1989
- msgid "wpDiscuz Tools"
1990
- msgstr "wpDiscuz Werkzeuge"
1991
-
1992
- #: options/html-tools.php:15 options/tools-layouts/options-export.php:7
1993
- msgid "Export options"
1994
- msgstr "Export-Optionen"
1995
-
1996
- #: options/html-tools.php:16 options/tools-layouts/options-import.php:7
1997
- msgid "Import options"
1998
- msgstr "Import-Optionen"
1999
-
2000
- #: options/html-tools.php:17 options/tools-layouts/subscriptions-import.php:9
2001
- msgid "Import subscriptions"
2002
- msgstr "Abonnements importieren"
2003
-
2004
- #: options/html-tools.php:18 utils/deactivation-reason-modal.php:57
2005
- msgid "Other"
2006
- msgstr "Andere"
2007
-
2008
- #: options/options-layouts/settings-addons.php:20
2009
- msgid ""
2010
- "Here you can find wpDiscuz Addons' setting options in vertical subTabs with "
2011
- "according addon titles. All wpDiscuz addons are listed on wpDiscuz"
2012
- msgstr ""
2013
- "Hier finden Sie die Einstellungsmöglichkeiten von wpDiscuz Addons in "
2014
- "vertikalen Untertabs mit entsprechenden Addon-Titeln. Alle wpDiscuz Addons "
2015
- "sind auf wpDiscuz aufgelistet"
2016
-
2017
- #: options/options-layouts/settings-addons.php:20
2018
- msgid "Addons subMenu"
2019
- msgstr "Addons Untermenü"
2020
-
2021
- #: options/options-layouts/settings-addons.php:20
2022
- msgid ""
2023
- "We'll add new free and paid addons with almost every wpDiscuz release. There "
2024
- "will be dozens of very useful addons in near future. Currently wpDiscuz "
2025
- "consists of about 70 free features/addons like \"Live Update\", \"First "
2026
- "comment redirection\", \"Comment sorting\", \"Simple CAPTCHA\", \"AJAX "
2027
- "Pagination\", \"Lazy Load\", \"Comment Likes\", \"Comment Share\" and dozens "
2028
- "of other addons and there will be more. All new and free addons will be "
2029
- "built-in with wpDiscuz plugin and all paid addons will be listed separately "
2030
- "on"
2031
- msgstr ""
2032
- "Wir werden neue kostenlose und kostenpflichtige Addons mit fast jeder "
2033
- "wpDiscuz-Version hinzufügen. In naher Zukunft wird es dutzende sehr "
2034
- "nützliche Addons geben. Momentan besteht wpDiscuz aus ca. 70 kostenlosen "
2035
- "Features / Addons wie \"Live Update\", \"Erste Kommentarumleitung\", "
2036
- "\"Kommentar sortieren\", \"Einfaches CAPTCHA\", \"AJAX Paginierung\", \"Lazy "
2037
- "Load\", \"Kommentar Likes\", \"Kommentar teilen\" und dutzende anderer "
2038
- "Addons und es wird mehr geben. Alle neuen und kostenlosen Addons werden mit "
2039
- "dem wpDiscuz Plugin eingebaut und alle kostenpflichtigen Addons werden "
2040
- "separat aufgelistet im"
2041
-
2042
- #: options/options-layouts/settings-cache.php:10
2043
- msgid "Gravatar Cache"
2044
- msgstr "Gravatar Cache"
2045
-
2046
- #: options/options-layouts/settings-cache.php:15
2047
- msgid "Enable Grvatar caching"
2048
- msgstr "Gravatar Caching aktivieren"
2049
-
2050
- #: options/options-layouts/settings-cache.php:17
2051
- msgid ""
2052
- "It seems on of important functions (\"file_get_contents\", "
2053
- "\"file_put_contents\") of php is not exists.<br/> Please enable these "
2054
- "functions in your server settings to use gravatar caching feature."
2055
- msgstr ""
2056
- "Es scheint, dass eine wichtige Funktion (\"file_get_contents\", "
2057
- "\"file_put_contents\") von php nicht existiert.<br/> Bitte aktivieren Sie "
2058
- "diese Funktionen in Ihren Servereinstellungen, um die Gravatar-Caching-"
2059
- "Funktion zu verwenden."
2060
-
2061
- #: options/options-layouts/settings-cache.php:26
2062
- msgid "Caching method"
2063
- msgstr "Caching Methode"
2064
-
2065
- #: options/options-layouts/settings-cache.php:29
2066
- msgid "Runtime"
2067
- msgstr "Laufzeit"
2068
-
2069
- #: options/options-layouts/settings-cache.php:30
2070
- msgid "Cron job"
2071
- msgstr "Cron Job"
2072
-
2073
- #: options/options-layouts/settings-cache.php:35
2074
- msgid "Cache avatars for \"X\" days"
2075
- msgstr "Avatare für \"X\" Tage cachen"
2076
-
2077
- #: options/options-layouts/settings-cache.php:42
2078
- #: options/options-layouts/settings-cache.php:45
2079
- msgid "Purge expired caches"
2080
- msgstr "Abgelaufene Caches bereinigen"
2081
-
2082
- #: options/options-layouts/settings-cache.php:49
2083
- #: options/options-layouts/settings-cache.php:52
2084
- msgid "Purge all caches"
2085
- msgstr "Alle Caches bereinigen"
2086
-
2087
- #: options/options-layouts/settings-cache.php:56
2088
- msgid "Statistics Cache"
2089
- msgstr "Statistik Cache"
2090
-
2091
- #: options/options-layouts/settings-cache.php:60
2092
- #: options/options-layouts/settings-cache.php:63
2093
- msgid "Purge statistics caches"
2094
- msgstr "Statistik Caches bereinigen"
2095
-
2096
- #: options/options-layouts/settings-customfields.php:12
2097
- msgid "Google Map API Key"
2098
- msgstr "Google MAP API Schlüssel"
2099
-
2100
- #: options/options-layouts/settings-form.php:7
2101
- msgid "Comment Form Settings"
2102
- msgstr "Kommentarformular Einstellungen"
2103
-
2104
- #: options/options-layouts/settings-form.php:12
2105
- msgid "Hide Header Text"
2106
- msgstr "Kopfzeilen Text verbergen"
2107
-
2108
- #: options/options-layouts/settings-form.php:13
2109
- msgid ""
2110
- "This option hides \"Leave Reply\" header text on top of comment form. You "
2111
- "can madify this text in Comments > Forms admin page."
2112
- msgstr ""
2113
- "Diese Option blendet die Kopfzeile \"Hinterlasse einen Kommentar\" über dem "
2114
- "Kommentarformular aus. Sie können diesen Text auf der Seite \"Kommentare > "
2115
- "Formulare\" verwalten."
2116
-
2117
- #: options/options-layouts/settings-form.php:22
2118
- msgid "Show logged-in user name and logout link on top of main form"
2119
- msgstr ""
2120
- "Eingeloggten Besuchern ihren Benutzernamen sowie einen Ausloggen-Link über "
2121
- "dem Kommentarformular anzeigen"
2122
-
2123
- #: options/options-layouts/settings-form.php:31
2124
- msgid "Comment Form components"
2125
- msgstr "Kommentarformular Komponenten"
2126
-
2127
- #: options/options-layouts/settings-form.php:32
2128
- msgid ""
2129
- "These components can be found on the main comment form. The \"My Content and "
2130
- "Settings\" button is located on the top left side, under the \"Leave Reply\" "
2131
- "header text. The \"Discussion Statistic\" and \"Recent Comment Authors\" "
2132
- "sections are located under the main comment form fields ont the left and "
2133
- "right sides accordingly."
2134
- msgstr ""
2135
- "Diese Komponenten finden Sie im Hauptkommentarformular. Die Schaltfläche "
2136
- "\"Meine Inhalte und Einstellungen\" befindet sich oben links unter der "
2137
- "Kopfzeile \"Hinterlasse einen Kommentar\". Die Abschnitte "
2138
- "\"Diskussionsstatistik\" und \"Letzte Kommentartoren\" befinden sich "
2139
- "entsprechend unter den Formularfeldern der Hauptkommentare auf der linken "
2140
- "und rechten Seite."
2141
-
2142
- #: options/options-layouts/settings-form.php:42
2143
- msgid "Hide \"Please login to comment\" text"
2144
- msgstr ""
2145
- "Text \"Bitte loggen Sie sich ein, um einen Kommentar zu schreiben\" "
2146
- "ausblenden"
2147
-
2148
- #: options/options-layouts/settings-form.php:49
2149
- msgid "Hide \"My Content and Settings\" button"
2150
- msgstr "Button \"Meine Inhalte und Einstellungen\" ausblenden"
2151
-
2152
- #: options/options-layouts/settings-form.php:56
2153
- msgid "Hide \"Discussion Statistic\" section"
2154
- msgstr "Abschnitt \"Diskussionsstatistik\" ausblenden"
2155
-
2156
- #: options/options-layouts/settings-form.php:63
2157
- msgid "Hide \"Recent Comment Authors\" section"
2158
- msgstr "Bereich \"Letzte Kommentartoren\" ausblenden"
2159
-
2160
- #: options/options-layouts/settings-form.php:71
2161
- msgid "Keep guest commenter credentials in browser cookies for x days"
2162
- msgstr ""
2163
- "Behalten Sie die Informationen des Gastkommentators für x Tage in einem "
2164
- "Browser-Cookie"
2165
-
2166
- #: options/options-layouts/settings-form.php:73
2167
- msgid ""
2168
- "wpDiscuz uses WordPress function to keep guest Name, Email and Website "
2169
- "information in cookies to fill according fields of comment form on next "
2170
- "commenting time."
2171
- msgstr ""
2172
- "wpDiscuz nutzt die WordPress-Funktion, um Informationen über den Namen, die "
2173
- "E-Mail Adresse und die Website des Gastes in Cookies zu speichern, um die "
2174
- "entsprechenden Kommentarfelder zum nächsten Kommentarzeitpunkt zu füllen."
2175
-
2176
- #: options/options-layouts/settings-form.php:74
2177
- msgid "Set this option value -1 to make it unlimited."
2178
- msgstr "Setzen Sie diese Option auf -1, um sie unbegrenzt zu machen."
2179
-
2180
- #: options/options-layouts/settings-form.php:75
2181
- msgid "Set this option value 0 to clear those data when user closes browser."
2182
- msgstr ""
2183
- "Setzen Sie diesen Optionswert auf 0, um diese Daten zu löschen, wenn der "
2184
- "Benutzer den Browser schließt."
2185
-
2186
- #: options/options-layouts/settings-form.php:82
2187
- msgid "Comment author name length (for guests only)"
2188
- msgstr "Länge des Kommentar Autorennamens (nur für Gäste)"
2189
-
2190
- #: options/options-layouts/settings-form.php:86
2191
- #: options/options-layouts/settings-form.php:100
2192
- msgid "Min"
2193
- msgstr "Min"
2194
-
2195
- #: options/options-layouts/settings-form.php:89
2196
- #: options/options-layouts/settings-form.php:103
2197
- msgid "Max"
2198
- msgstr "Max"
2199
-
2200
- #: options/options-layouts/settings-form.php:95
2201
- msgid "Comment text length"
2202
- msgstr "Länge des Kommentars"
2203
-
2204
- #: options/options-layouts/settings-form.php:96
2205
- msgid ""
2206
- "Allows to set minimum and maximum number of chars can be inserted in comment "
2207
- "textarea. Leave the max value empty to remove the limit."
2208
- msgstr ""
2209
- "Ermöglicht die Einstellung der minimalen und maximalen Anzahl von Zeichen, "
2210
- "die in das Kommentar Textfeld eingefügt werden können. Lassen Sie den "
2211
- "Maximalwert leer, um das Limit zu entfernen."
2212
-
2213
- #: options/options-layouts/settings-form.php:109
2214
- msgid "Captcha generation type"
2215
- msgstr "Captcha Erzeugungstyp"
2216
-
2217
- #: options/options-layouts/settings-form.php:114
2218
- msgid "File system"
2219
- msgstr "Dateisystem"
2220
-
2221
- #: options/options-layouts/settings-form.php:115
2222
- msgid "WP Session"
2223
- msgstr "WP Session"
2224
-
2225
- #: options/options-layouts/settings-form.php:122
2226
- msgid "Invisible Spam Protection"
2227
- msgstr "Unsichtbarer Spamschutz"
2228
-
2229
- #: options/options-layouts/settings-form.php:124
2230
- msgid ""
2231
- "You should purge caches after each key generation otherwise the plugin may "
2232
- "work not correctly"
2233
- msgstr ""
2234
- "Sie sollten Caches nach jeder Schlüsselgenerierung löschen, sonst "
2235
- "funktioniert das Plugin möglicherweise nicht richtig"
2236
-
2237
- #: options/options-layouts/settings-form.php:127
2238
- msgid "Leave the field empty if you don't want to use this feature"
2239
- msgstr ""
2240
- "Lassen Sie das Feld leer, wenn Sie diese Funktion nicht verwenden möchten"
2241
-
2242
- #: options/options-layouts/settings-form.php:132
2243
- msgid "Generate"
2244
- msgstr "Generieren"
2245
-
2246
- #: options/options-layouts/settings-form.php:137
2247
- msgid "Display note about Invisible Spam Protection"
2248
- msgstr "Notiz zum unsichtbaren Spamschutz anzeigen"
2249
-
2250
- #: options/options-layouts/settings-form.php:138
2251
- msgid ""
2252
- "wpDiscuz has built-in invisible antispam protection based on server side and "
2253
- "front-end unique key comparation. By default wpDiscuz display a small note "
2254
- "in simple CAPTCHA area, saying the comment form is under antispam "
2255
- "protection. The note text can be managed in Comments > Phrases > Form tab."
2256
- msgstr ""
2257
- "wpDiscuz verfügt über einen eingebauten, unsichtbaren Antispam-Schutz, der "
2258
- "auf der Vergleichbarkeit von Server- und Front-End-Schlüssel basiert. "
2259
- "Standardmäßig zeigt wpDiscuz eine kleine Notiz im einfachen CAPTCHA-Bereich "
2260
- "an und sagt, dass das Kommentarformular unter Antispam-Schutz steht. Der "
2261
- "Notiztext kann in \"Kommentare > Phrasen > Formular-Tab\" verwaltet werden."
2262
-
2263
- #: options/options-layouts/settings-form.php:147
2264
- msgid "Enable Quicktags"
2265
- msgstr "Quicktags ermöglichen"
2266
-
2267
- #: options/options-layouts/settings-form.php:148
2268
- msgid ""
2269
- "Quicktag is a on-click button that inserts HTML in to comment textarea. For "
2270
- "example the \"b\" Quicktag will insert the HTML bold tags < b > < /b >."
2271
- msgstr ""
2272
- "Quicktag ist ein OnClick Button, der HTML in den Kommentarbereich einfügt. "
2273
- "Zum Beispiel fügt der \"b\"-Quicktag die HTML-Fett-Tags < b > < / b> ein."
2274
-
2275
- #: options/options-layouts/settings-form.php:157
2276
- msgid "Enable automatic image URL to image HTML conversion"
2277
- msgstr "Automatische Bild-URL zur Bild-HTML Konvertierung aktivieren"
2278
-
2279
- #: options/options-layouts/settings-form.php:166
2280
- msgid "Allow comment editing for"
2281
- msgstr "Erlaube das Bearbeiten von kommentaren für"
2282
-
2283
- #: options/options-layouts/settings-form.php:171
2284
- msgid "Do not allow"
2285
- msgstr "Nicht zulassen"
2286
-
2287
- #: options/options-layouts/settings-form.php:172
2288
- #: options/options-layouts/settings-form.php:173
2289
- #: options/options-layouts/settings-live-update.php:53
2290
- #: options/options-layouts/settings-live-update.php:54
2291
- #: options/options-layouts/settings-live-update.php:55
2292
- msgid "Minutes"
2293
- msgstr "Minuten"
2294
-
2295
- #: options/options-layouts/settings-form.php:174
2296
- #: options/phrases-layouts/phrases-datetime.php:35
2297
- msgid "Hour"
2298
- msgstr "Stunde"
2299
-
2300
- #: options/options-layouts/settings-form.php:175
2301
- #: options/options-layouts/settings-form.php:176
2302
- msgid "Hours"
2303
- msgstr "Stunden"
2304
-
2305
- #: options/options-layouts/settings-form.php:177
2306
- msgid "Unlimit"
2307
- msgstr "Unbegrenzt"
2308
-
2309
- #: options/options-layouts/settings-general.php:7
2310
- msgid "General Settings"
2311
- msgstr "Allgemeine Einstellungen"
2312
-
2313
- #: options/options-layouts/settings-general.php:11
2314
- msgid "Enable wpdiscuz on home page"
2315
- msgstr "wpDiscuz auf der Homepage aktivieren"
2316
-
2317
- #: options/options-layouts/settings-general.php:16
2318
- msgid "Use guest email to detect registered account"
2319
- msgstr ""
2320
- "Benutzen Sie die E-Mail Adresse des Gastes, um einen registrierten Account "
2321
- "zu erkennen"
2322
-
2323
- #: options/options-layouts/settings-general.php:18
2324
- msgid ""
2325
- "Sometimes registered users comment as guest using the same email address. "
2326
- "wpDiscuz can detect the account role using guest email and display commenter "
2327
- "label correctly."
2328
- msgstr ""
2329
- "Manchmal melden sich registrierte Benutzer als Gast mit derselben E-Mail "
2330
- "Adresse an. wpDiscuz kann die Kontorolle mithilfe der Gast E-Mail erkennen "
2331
- "und das Kommentar Label korrekt anzeigen."
2332
-
2333
- #: options/options-layouts/settings-general.php:25
2334
- msgid "Secure comment content in HTTPS protocol."
2335
- msgstr "Sichern Sie den Kommentarinhalt im HTTPS-Protokoll."
2336
-
2337
- #: options/options-layouts/settings-general.php:27
2338
- msgid ""
2339
- "This option detects images and other contents with non-https source URLs and "
2340
- "fix according to your selected logic."
2341
- msgstr ""
2342
- "Diese Option erkennt Bilder und andere Inhalte einer nicht-https Quellen URL "
2343
- "um sie dann nach Ihrer ausgewählten Logik zu beheben."
2344
-
2345
- #: options/options-layouts/settings-general.php:35
2346
- msgid "Replace non-https content to simple link URLs"
2347
- msgstr "Ersetzen Sie Nicht-https-Inhalte durch einfache Link-URLs"
2348
-
2349
- #: options/options-layouts/settings-general.php:39
2350
- msgid ""
2351
- "Just replace http protocols to https (https may not be supported by content "
2352
- "provider)"
2353
- msgstr ""
2354
- "Ersetzen Sie http-Protokolle zu https (https wird möglicherweise nicht von "
2355
- "jeden Provider unterstützt)"
2356
-
2357
- #: options/options-layouts/settings-general.php:43
2358
- msgid "Ignore non-https content"
2359
- msgstr "Nicht-https Inhalte ignorieren"
2360
-
2361
- #: options/options-layouts/settings-general.php:51
2362
- msgid "Redirect first commenter to"
2363
- msgstr "Autor des ersten Kommentars auf folgende Seite weiterleiten"
2364
-
2365
- #: options/options-layouts/settings-general.php:58
2366
- msgid "Do not redirect"
2367
- msgstr "Nicht weiterleiten"
2368
-
2369
- #: options/options-layouts/settings-general.php:66
2370
- msgid "Use WordPress Date/Time format"
2371
- msgstr "WordPress-Datumsformat verwenden"
2372
-
2373
- #: options/options-layouts/settings-general.php:67
2374
- msgid ""
2375
- "wpDiscuz shows Human Readable date format. If you check this option it'll "
2376
- "show the date/time format set in WordPress General Settings."
2377
- msgstr ""
2378
- "wpDiscuz zeigt ein gut verständlich sowie menschlich lesbares Format. Sollte "
2379
- "diese Option aktiviert werden, wird das von Wordpress vorgegebene Format "
2380
- "verwendet."
2381
-
2382
- #: options/options-layouts/settings-general.php:73
2383
- msgid "Current Wordpress date/time format"
2384
- msgstr "Aktuellea Wordpress-Datum/Uhrzeit-Format"
2385
-
2386
- #: options/options-layouts/settings-general.php:79
2387
- msgid "Use Plugin .PO/.MO files"
2388
- msgstr "Verwendung von Plugin .PO/.MO Dateien"
2389
-
2390
- #: options/options-layouts/settings-general.php:80
2391
- msgid ""
2392
- "wpDiscuz phrase system allows you to translate all front-end phrases. "
2393
- "However if you have a multi-language website it'll not allow you to add more "
2394
- "than one language translation. The only way to get it is the plugin "
2395
- "translation files (.PO / .MO). If wpDiscuz has the languages you need you "
2396
- "should check this option to disable phrase system and it'll automatically "
2397
- "translate all phrases based on language files according to current language."
2398
- msgstr ""
2399
- "wpDiscuz Phrasen-System erlaubt die Beschriftungen des Kommentarbereiches. "
2400
- "Sollte jedoch eine mehrsprachiges System (Multisite) installiert sein, so "
2401
- "kann nur eine Sprache verwendet werden."
2402
-
2403
- #: options/options-layouts/settings-general.php:87
2404
- msgid ""
2405
- "Help wpDiscuz to grow allowing people to recognize which comment plugin you "
2406
- "use"
2407
- msgstr ""
2408
- "Helfen Sie mit, dass wpDiscuz weiter wächst und sich Menschen daran "
2409
- "erinnern, welches Kommentar-Plugin Sie verwenden"
2410
-
2411
- #: options/options-layouts/settings-general.php:89
2412
- msgid ""
2413
- "Please check this option on to help wpDiscuz get more popularity as your "
2414
- "thank to the hard work we do for you totally free. This option adds a very "
2415
- "small (16x16px) icon under the comment section which will allow your site "
2416
- "visitors recognize the name of comment solution you use."
2417
- msgstr ""
2418
- "Bitte aktivieren Sie diese Option damit WpDiscuz mehr Popularität gewinnt - "
2419
- "als Ihr Danke für die harte Arbeit wir für Sie völlig kostenlos erledigen. "
2420
- "Diese Option fügt eine sehr kleines (16x16px) Icon unter den Kommentaren ein "
2421
- "- über das der Besucher Ihrer Website den Namen des Kommentar-Lösung "
2422
- "kennenlernen, die Sie verwenden."
2423
-
2424
- #: options/options-layouts/settings-general.php:94
2425
- msgid "Thank you!"
2426
- msgstr "Vielen Dank!"
2427
-
2428
- #: options/options-layouts/settings-integrations.php:14
2429
- msgid "BuddyPress"
2430
- msgstr "BuddyPress"
2431
-
2432
- #: options/options-layouts/settings-integrations.php:15
2433
- msgid "Users Ultra"
2434
- msgstr "Users Ultra"
2435
-
2436
- #: options/options-layouts/settings-integrations.php:16
2437
- msgid "User Pro"
2438
- msgstr "User Pro"
2439
-
2440
- #: options/options-layouts/settings-integrations.php:17
2441
- msgid "Ultimate Member"
2442
- msgstr "Ultimate Member"
2443
-
2444
- #: options/options-layouts/settings-integrations.php:18
2445
- msgid "MyCred"
2446
- msgstr "MyCred"
2447
-
2448
- #: options/options-layouts/settings-integrations.php:23
2449
- #: options/options-layouts/settings-integrations.php:41
2450
- #: options/options-layouts/settings-integrations.php:59
2451
- #: options/options-layouts/settings-integrations.php:90
2452
- #: options/options-layouts/settings-integrations.php:124
2453
- msgid "Please add the code below in current active theme's functions.php file"
2454
- msgstr ""
2455
- "Bitte fügen Sie den folgenden Code in die Datei functions.php des derzeit "
2456
- "aktiven Themes hinzu"
2457
-
2458
- #: options/options-layouts/settings-integrations.php:24
2459
- msgid ""
2460
- "This code will integrate BuddyPress profile URL with wpDiscuz. BuddyPress "
2461
- "Display Names and Avatars will be integrated automatically."
2462
- msgstr ""
2463
- "Dieser Code integriert die BuddyPress-Profil-URL mit wpDiscuz. BuddyPress "
2464
- "Display-Namen und Avatare werden automatisch integriert."
2465
-
2466
- #: options/options-layouts/settings-integrations.php:42
2467
- msgid ""
2468
- "This code will integrate Users Ultra profile URL with wpDiscuz. Users Ultra "
2469
- "Display Names and Avatars will be integrated automatically."
2470
- msgstr ""
2471
- "Dieser Code wird die Ultra-Profil-URL der User mit wpDiscuz integrieren. Die "
2472
- "Ultra-Display-Namen und -Avatare der User werden automatisch integriert."
2473
-
2474
- #: options/options-layouts/settings-integrations.php:60
2475
- msgid ""
2476
- "This code will integrate User Pro profile URL with wpDiscuz. User Pro "
2477
- "Display Names and Avatars will be integrated automatically."
2478
- msgstr ""
2479
- "Dieser Code integriert die User-Pro-Profil-URL in wpDiscuz. User-Pro-Display-"
2480
- "Namen und -Avatare werden automatisch integriert."
2481
-
2482
- #: options/options-layouts/settings-integrations.php:91
2483
- msgid ""
2484
- "This code consists of two parts, which will integrate Ultimate Member "
2485
- "profile Display Name and Profile URL with wpDiscuz. UM Avatars will be "
2486
- "integrated automatically."
2487
- msgstr ""
2488
- "Dieser Code besteht aus zwei Teilen, der einmal den Ultimate-Member-Profile-"
2489
- "Display-Name und die Profile-URL mit wpDiscuz integriert. UM-Avatare werden "
2490
- "automatisch integriert."
2491
-
2492
- #: options/options-layouts/settings-integrations.php:125
2493
- msgid ""
2494
- "This code will integrate MyCred User Ranks and Badges under comment author "
2495
- "avatar."
2496
- msgstr ""
2497
- "Dieser Code wird MyCred User Ranks und Badges unter Avatar des "
2498
- "Kommentarautors integrieren."
2499
-
2500
- #: options/options-layouts/settings-list.php:7
2501
- msgid "Comment List Settings"
2502
- msgstr "Kommentarliste Einstellungen"
2503
-
2504
- #: options/options-layouts/settings-list.php:12
2505
- msgid "Display only parent comments and <u>view replies &or;</u> button"
2506
- msgstr ""
2507
- "Zeigen Sie nur übergeordnete Kommentare und <u>Antworten anzeigen &or;</u> an"
2508
-
2509
- #: options/options-layouts/settings-list.php:14
2510
- msgid ""
2511
- "If this option is enabled only parent comment will be displayed. This "
2512
- "increases page load speed and keeps pages light. If visitor wants to read "
2513
- "replies he/she just need to click on [view replies (12)] button located on "
2514
- "all parent comments which have replies."
2515
- msgstr ""
2516
- "Wenn diese Option aktiviert ist, wird nur der übergeordnete Kommentar "
2517
- "angezeigt. Dies erhöht die Seitenladegeschwindigkeit und hält Seiten leicht. "
2518
- "Wenn der Besucher Antworten lesen möchte, muss er nur auf die Schaltfläche "
2519
- "[Antworten anzeigen (12)] klicken, die sich auf allen Elternkommentaren "
2520
- "befindet, die Antworten haben."
2521
-
2522
- #: options/options-layouts/settings-list.php:24
2523
- msgid "Show sorting buttons"
2524
- msgstr "Kommentar Sortierungsoptionen anzeigen"
2525
-
2526
- #: options/options-layouts/settings-list.php:25
2527
- msgid ""
2528
- "This option enables comment sorting buttons (newest | oldest | most voted). "
2529
- "Sorting buttons are not available for the default comments pagination type "
2530
- "[1][2][3]... It's only active for [Load more] and other AYAX pagination "
2531
- "types."
2532
- msgstr ""
2533
- "Diese Option aktiviert Schaltflächen zum Sortieren der Kommentare (neueste | "
2534
- "älteste | am häufigsten gewählte). Sortierschaltflächen sind für den "
2535
- "Standardkommentar-Seitentyp [1] [2] [3] nicht verfügbar. Er ist nur für "
2536
- "[Mehr laden] und andere AYAX-Paginationsarten aktiv."
2537
-
2538
- #: options/options-layouts/settings-list.php:34
2539
- msgid "Set comments ordering to \"Most voted\" by default "
2540
- msgstr "Kommentare standartmäßig nach \"meiste Stimmen\" sortieren "
2541
-
2542
- #: options/options-layouts/settings-list.php:43
2543
- msgid "Reverse child comments order"
2544
- msgstr "Umgekehrte Reihenfolge der untergeordneten Kommentare"
2545
-
2546
- #: options/options-layouts/settings-list.php:52
2547
- msgid "Comments loading/pagination type"
2548
- msgstr "Lade/Seiten-Typ der Kommentare"
2549
-
2550
- #: options/options-layouts/settings-list.php:54
2551
- msgid ""
2552
- "You can manage the number of comments for [Load more] option in Settings > "
2553
- "Discussion page, using \"Break comments into pages with [X] top level "
2554
- "comments per page\" option. To show the default Wordpress comment pagination "
2555
- "you should enable the checkbox on bigining of the same option."
2556
- msgstr ""
2557
- "Sie können die Anzahl der Kommentare für die Option [Mehr laden] unter "
2558
- "\"Einstellungen > Diskussionsseite\" mit der Option \"Kommentare in Seiten "
2559
- "mit [X] Top-Level-Kommentaren pro Seite teilen\" verwalten. Um die "
2560
- "standardmäßige Wordpress-Kommentar-Paginierung anzuzeigen, sollten Sie das "
2561
- "Kontrollkästchen für Bigining derselben Option aktivieren."
2562
-
2563
- #: options/options-layouts/settings-list.php:60
2564
- #: options/options-layouts/settings-list.php:62
2565
- msgid "[Load more] Button"
2566
- msgstr "[Mehr laden] Schaltfläche"
2567
-
2568
- #: options/options-layouts/settings-list.php:64
2569
- #: options/options-layouts/settings-list.php:66
2570
- msgid "[Load rest of all comments] Button"
2571
- msgstr "[Rest von allen Kommentaren laden] Schaltfläche"
2572
-
2573
- #: options/options-layouts/settings-list.php:68
2574
- #: options/options-layouts/settings-list.php:70
2575
- msgid "Load all comments"
2576
- msgstr "Lade alle Kommentare"
2577
-
2578
- #: options/options-layouts/settings-list.php:72
2579
- #: options/options-layouts/settings-list.php:74
2580
- msgid "Lazy load comments on scrolling"
2581
- msgstr "Scroll-Funktion (Lädt automatisch neue Kommentare am Ende der Seite)"
2582
-
2583
- #: options/options-layouts/settings-list.php:81
2584
- msgid ""
2585
- "The number of words before breaking comment text and showing \"Read more\" "
2586
- "link"
2587
- msgstr ""
2588
- "Die Anzahl der Wörter vor dem Umbrechen des Kommentartextes und Anzeigen des "
2589
- "Links \"Lesen Sie mehr\" "
2590
-
2591
- #: options/options-layouts/settings-list.php:83
2592
- msgid "Set this option value 0, to turn off comment text breaking function."
2593
- msgstr ""
2594
- "Legen Sie diesen Optionswert auf 0 fest, um die "
2595
- "Kommentartextunterbrechungsfunktion zu deaktivieren."
2596
-
2597
- #: options/options-layouts/settings-list.php:90
2598
- msgid "Comment components"
2599
- msgstr "Kommentar Komponenten"
2600
-
2601
- #: options/options-layouts/settings-list.php:95
2602
- msgid "Hide comment link"
2603
- msgstr "\"Kommentar beantworten\" Link verbergen"
2604
-
2605
- #: options/options-layouts/settings-list.php:98
2606
- msgid "Hide comment date"
2607
- msgstr "Kommentardatum ausblenden"
2608
-
2609
- #: options/options-layouts/settings-list.php:101
2610
- msgid "Hide Commenter Labels"
2611
- msgstr "Kennzeichnung von Autoren verbergen"
2612
-
2613
- #: options/options-layouts/settings-list.php:109
2614
- msgid "Hide Voting buttons"
2615
- msgstr "Abstimm-Schaltflächen verbergen"
2616
-
2617
- #: options/options-layouts/settings-list.php:117
2618
- msgid "Comment voting buttons icon"
2619
- msgstr "Kommentar Voting Buttonsymbol"
2620
-
2621
- #: options/options-layouts/settings-list.php:135
2622
- msgid "Comment voting statistic mode"
2623
- msgstr "Kommentar Voting Statistik-Modus"
2624
-
2625
- #: options/options-layouts/settings-list.php:139
2626
- msgid "total count"
2627
- msgstr "Gesamtzahl"
2628
-
2629
- #: options/options-layouts/settings-list.php:140
2630
- msgid "separate count"
2631
- msgstr "Separate Zählung"
2632
-
2633
- #: options/options-layouts/settings-list.php:146
2634
- msgid "Allow guests to vote on comments"
2635
- msgstr "Abstimmen erlauben auch für Gäste"
2636
-
2637
- #: options/options-layouts/settings-list.php:155
2638
- msgid "Display Ratings"
2639
- msgstr "Bewertungen anzeigen"
2640
-
2641
- #: options/options-layouts/settings-list.php:160
2642
- msgid "Before Content"
2643
- msgstr "Vor dem Inhalt"
2644
-
2645
- #: options/options-layouts/settings-list.php:162
2646
- msgid "After Content"
2647
- msgstr "Nach dem Inhalt"
2648
-
2649
- #: options/options-layouts/settings-list.php:163
2650
- msgid "Display ratings on none singular pages"
2651
- msgstr "Bewertungen nicht auf einzelnen Seiten anzeigen"
2652
-
2653
- #: options/options-layouts/settings-list.php:169
2654
- msgid "Disable Profiles URL"
2655
- msgstr "Profil URLs deaktivieren"
2656
-
2657
- #: options/options-layouts/settings-live-update.php:12
2658
- msgid "Live update options"
2659
- msgstr "Live Update Optionen"
2660
-
2661
- #: options/options-layouts/settings-live-update.php:13
2662
- msgid ""
2663
- "wpDiscuz live update is very light and doesn't overload your server. However "
2664
- "we recommend to monitor your server resources if you're on a Shared hosting "
2665
- "plan. There are some very weak hosting plans which may not be able to "
2666
- "perform very frequently live update requests. If you found some issue you "
2667
- "can set the option below 30 seconds or more."
2668
- msgstr ""
2669
- "wpDiscuz Live Update ist sehr leicht und überlastet Ihren Server nicht. Wir "
2670
- "empfehlen jedoch, Ihre Serverressourcen zu überwachen, wenn Sie einen Shared "
2671
- "Hosting-Plan haben. Es gibt einige sehr schwache Hosting-Pläne, die "
2672
- "möglicherweise nicht in der Lage sind, Live-Update-Anfragen sehr häufig "
2673
- "durchzuführen. Wenn Sie ein Ergebnis vorliegen haben, können Sie die Option "
2674
- "unter 30 Sekunden oder länger einstellen."
2675
-
2676
- #: options/options-layouts/settings-live-update.php:18
2677
- msgid "Never update"
2678
- msgstr "Nie Aktualisieren"
2679
-
2680
- #: options/options-layouts/settings-live-update.php:20
2681
- msgid "Turn off \"Live Update\" function"
2682
- msgstr "Schalten Sie die Funktion „Live-Update“ aus"
2683
-
2684
- #: options/options-layouts/settings-live-update.php:22
2685
- msgid "Show new comment/reply buttons to update manualy"
2686
- msgstr ""
2687
- "Zeige neue Kommentar- / Antwort-Links, um Deinen Besuchern manuelles "
2688
- "Aktualisieren zu ermöglichen"
2689
-
2690
- #: options/options-layouts/settings-live-update.php:24
2691
- msgid "Always check for new comments and show update buttons"
2692
- msgstr "Immer auf neue Kommentare prüfen und Update Button anzeigen"
2693
-
2694
- #: options/options-layouts/settings-live-update.php:26
2695
- msgid "Always update"
2696
- msgstr "Immer Aktualisieren"
2697
-
2698
- #: options/options-layouts/settings-live-update.php:28
2699
- msgid "Always check for new comments and update automatically"
2700
- msgstr "Automatsche Prüfung und Aktualisierung für neue Kommentare"
2701
-
2702
- #: options/options-layouts/settings-live-update.php:35
2703
- msgid "Disable live update for guests"
2704
- msgstr "Live Updates für Gäste deaktivieren"
2705
-
2706
- #: options/options-layouts/settings-live-update.php:44
2707
- msgid "Update comment list every"
2708
- msgstr "Update Kommentar-Liste alle"
2709
-
2710
- #: options/options-layouts/settings-live-update.php:49
2711
- #: options/options-layouts/settings-live-update.php:50
2712
- #: options/options-layouts/settings-live-update.php:51
2713
- msgid "Seconds"
2714
- msgstr "Sekunden"
2715
-
2716
- #: options/options-layouts/settings-live-update.php:52
2717
- #: options/phrases-layouts/phrases-datetime.php:43
2718
- msgid "Minute"
2719
- msgstr "Minute"
2720
-
2721
- #: options/options-layouts/settings-social.php:12
2722
- msgid "User agreement prior to a social login action"
2723
- msgstr "Benutzervereinbarung vor einer Social Login Aktion"
2724
-
2725
- #: options/options-layouts/settings-social.php:13
2726
- msgid ""
2727
- "If this option is enabled, all Social Login buttons become not-clickable "
2728
- "until user accept automatic account creation process based on his/her Social "
2729
- "Network Account shared information (email, name). This checkbox and "
2730
- "appropriate information will be displayed when user click on a social login "
2731
- "button, prior to the login process. This extra step is added to comply with "
2732
- "the GDPR"
2733
- msgstr ""
2734
- "Wenn diese Option aktiviert ist, können alle Schaltflächen für die Social-"
2735
- "Anmeldung nicht angeklickt werden, bis der Benutzer den automatischen "
2736
- "Kontoerstellungsprozess, basierend auf den Informationen seines sozialen "
2737
- "Netzwerkkontos (E-Mail, Name), akzeptiert. Dieses Kontrollkästchen und die "
2738
- "entsprechenden Informationen werden angezeigt, wenn der Benutzer vor dem "
2739
- "Anmeldevorgang auf eine Schaltfläche für die Social-Anmeldung klickt. Dieser "
2740
- "zusätzliche Schritt wird hinzugefügt, um der DSGVO zu entsprechen"
2741
-
2742
- #: options/options-layouts/settings-social.php:13
2743
- msgid ""
2744
- "The note text and the label of this checkbox can be managed in Comments > "
2745
- "Phrases > Social Login tab."
2746
- msgstr ""
2747
- "Der Notizentext und die Beschriftung dieses Kontrollkästchens können in den "
2748
- "\"Kommentaren > Phrasen > Social-Login-Tab\" verwaltet werden."
2749
-
2750
- #: options/options-layouts/settings-social.php:22
2751
- msgid "Display social login buttons on reply forms"
2752
- msgstr "Social Login Buttons in Antwortformularen anzeigen"
2753
-
2754
- #: options/options-layouts/settings-social.php:35
2755
- msgid "Facebook"
2756
- msgstr "Facebook"
2757
-
2758
- #: options/options-layouts/settings-social.php:41
2759
- msgid ""
2760
- "To start using Facebook Login and Share Buttons you should get Facebook "
2761
- "Application Key and Secret for your website. Please follow to this"
2762
- msgstr ""
2763
- "Um die Facebook Login und Share Buttons zu verwenden, sollten Sie den "
2764
- "Facebook Application Key und das Secret für Ihre Website erhalten. Bitte "
2765
- "folgen Sie dieser"
2766
-
2767
- #: options/options-layouts/settings-social.php:41
2768
- #: options/options-layouts/settings-social.php:87
2769
- #: options/options-layouts/settings-social.php:134
2770
- #: options/options-layouts/settings-social.php:173
2771
- #: options/options-layouts/settings-social.php:219
2772
- msgid "instruction &raquo;"
2773
- msgstr "Anweisung &raquo;"
2774
-
2775
- #: options/options-layouts/settings-social.php:47
2776
- #: options/options-layouts/settings-social.php:93
2777
- #: options/options-layouts/settings-social.php:140
2778
- #: options/options-layouts/settings-social.php:179
2779
- #: options/options-layouts/settings-social.php:225
2780
- msgid "Enable Login Button"
2781
- msgstr "Login Button aktivieren"
2782
-
2783
- #: options/options-layouts/settings-social.php:56
2784
- #: options/options-layouts/settings-social.php:102
2785
- #: options/options-layouts/settings-social.php:149
2786
- #: options/options-layouts/settings-social.php:152
2787
- #: options/options-layouts/settings-social.php:188
2788
- #: options/options-layouts/settings-social.php:234
2789
- msgid "Enable Share Button"
2790
- msgstr "Teilen Button aktivieren"
2791
-
2792
- #: options/options-layouts/settings-social.php:65
2793
- #: options/options-layouts/settings-social.php:68
2794
- #: options/options-layouts/settings-social.php:243
2795
- #: options/options-layouts/settings-social.php:245
2796
- msgid "Aplication ID"
2797
- msgstr "Application ID"
2798
-
2799
- #: options/options-layouts/settings-social.php:72
2800
- #: options/options-layouts/settings-social.php:75
2801
- #: options/options-layouts/settings-social.php:255
2802
- #: options/options-layouts/settings-social.php:257
2803
- msgid "Aplication Secret"
2804
- msgstr "Application Secret"
2805
-
2806
- #: options/options-layouts/settings-social.php:81
2807
- msgid "Twitter"
2808
- msgstr "Twitter"
2809
-
2810
- #: options/options-layouts/settings-social.php:87
2811
- msgid ""
2812
- "To start using Twitter Login Button you should get Consumer Key and Secret "
2813
- "for your website. Please follow to this"
2814
- msgstr ""
2815
- "Um den Twitter Login Button zu verwenden, sollten Sie den Consumer Key und "
2816
- "das Secret für Ihre Website erhalten. Bitte folgen Sie dieser"
2817
-
2818
- #: options/options-layouts/settings-social.php:111
2819
- #: options/options-layouts/settings-social.php:113
2820
- msgid "Consumer Key (API Key)"
2821
- msgstr "Consumer Key (API Key)"
2822
-
2823
- #: options/options-layouts/settings-social.php:117
2824
- #: options/options-layouts/settings-social.php:120
2825
- msgid "Consumer Secret (API Secret)"
2826
- msgstr "Consumer Secret (API Secret)"
2827
-
2828
- #: options/options-layouts/settings-social.php:128
2829
- msgid "Google +"
2830
- msgstr "Google+"
2831
-
2832
- #: options/options-layouts/settings-social.php:134
2833
- msgid ""
2834
- "To start using Google+ Login Button you should get Client ID for your "
2835
- "website. Please follow to this"
2836
- msgstr ""
2837
- "Um die Google+ Login-Schaltfläche zu verwenden, sollten Sie die Client-ID "
2838
- "für Ihre Website abrufen. Bitte folgen Sie dieser"
2839
-
2840
- #: options/options-layouts/settings-social.php:158
2841
- #: options/options-layouts/settings-social.php:160
2842
- msgid "Client ID"
2843
- msgstr "Client ID"
2844
-
2845
- #: options/options-layouts/settings-social.php:167
2846
- msgid "VK"
2847
- msgstr "VK"
2848
-
2849
- #: options/options-layouts/settings-social.php:173
2850
- msgid ""
2851
- "To start using VK Login Button you should get Application ID and Secure Key. "
2852
- "Please follow to this "
2853
- msgstr ""
2854
- "Um VK Login Button zu verwenden, sollten Sie die Application ID und den "
2855
- "Secure Key erhalten. Bitte folgen Sie dieser "
2856
-
2857
- #: options/options-layouts/settings-social.php:197
2858
- #: options/options-layouts/settings-social.php:199
2859
- msgid "Application ID"
2860
- msgstr "Application ID"
2861
-
2862
- #: options/options-layouts/settings-social.php:203
2863
- #: options/options-layouts/settings-social.php:205
2864
- msgid "Secure Key"
2865
- msgstr "Secure Key"
2866
-
2867
- #: options/options-layouts/settings-social.php:212
2868
- msgid "OK"
2869
- msgstr "OK"
2870
-
2871
- #: options/options-layouts/settings-social.php:218
2872
- msgid "Getting started with"
2873
- msgstr "Anfangen mit"
2874
-
2875
- #: options/options-layouts/settings-social.php:219
2876
- msgid ""
2877
- "To get the Aplication ID, Key and Secret, you should create an app using one "
2878
- "of the supported types (external, Android, iOS), use this"
2879
- msgstr ""
2880
- "Um die Application ID, den Key und das Secret zu erhalten, sollten Sie eine "
2881
- "App mit einem der unterstützten Typen (extern, Android, iOS) erstellen, "
2882
- "verwenden Sie diese"
2883
-
2884
- #: options/options-layouts/settings-social.php:249
2885
- #: options/options-layouts/settings-social.php:251
2886
- msgid "Aplication Key"
2887
- msgstr "Application Key"
2888
-
2889
- #: options/options-layouts/settings-style.php:7
2890
- msgid "Background and Colors"
2891
- msgstr "Hintergrund und Farben"
2892
-
2893
- #: options/options-layouts/settings-style.php:12
2894
- msgid "Comment Form and Comment List Style"
2895
- msgstr "Kommentarformular und Kommentarliste Style"
2896
-
2897
- #: options/options-layouts/settings-style.php:16
2898
- msgid "Default"
2899
- msgstr "Standard"
2900
-
2901
- #: options/options-layouts/settings-style.php:17
2902
- msgid "Dark"
2903
- msgstr "Dunkel"
2904
-
2905
- #: options/options-layouts/settings-style.php:23
2906
- msgid "Colors"
2907
- msgstr "Farben"
2908
-
2909
- #: options/options-layouts/settings-style.php:27
2910
- #: options/options-layouts/settings-style.php:32
2911
- #: options/options-layouts/settings-style.php:37
2912
- #: options/options-layouts/settings-style.php:44
2913
- #: options/options-layouts/settings-style.php:49
2914
- #: options/options-layouts/settings-style.php:54
2915
- #: options/options-layouts/settings-style.php:103
2916
- #: options/options-layouts/settings-style.php:108
2917
- #: options/options-layouts/settings-style.php:113
2918
- #: options/options-layouts/settings-style.php:128
2919
- msgid "Example: #00FF00"
2920
- msgstr "Beispiel: #00FF00"
2921
-
2922
- #: options/options-layouts/settings-style.php:28
2923
- msgid "Primary Color"
2924
- msgstr "Primäre Farbe"
2925
-
2926
- #: options/options-layouts/settings-style.php:33
2927
- msgid "Subscription Bar Background"
2928
- msgstr "Abonnementleiste Hintergrund"
2929
-
2930
- #: options/options-layouts/settings-style.php:38
2931
- msgid "Comment form fields border"
2932
- msgstr "Rahmenfarbe der Kommentarfelder"
2933
-
2934
- #: options/options-layouts/settings-style.php:45
2935
- msgid "Comment Background"
2936
- msgstr "Kommentar Hintergrund"
2937
-
2938
- #: options/options-layouts/settings-style.php:50
2939
- msgid "Reply Background"
2940
- msgstr "Antwort Hintergrund"
2941
-
2942
- #: options/options-layouts/settings-style.php:55
2943
- msgid "Unread comments background"
2944
- msgstr "Hintergrundfarbe der ungelesenen Kommentare"
2945
-
2946
- #: options/options-layouts/settings-style.php:62
2947
- msgid "Button Colors"
2948
- msgstr "Button Farben"
2949
-
2950
- #: options/options-layouts/settings-style.php:66
2951
- #: options/options-layouts/settings-style.php:76
2952
- msgid "Text Color"
2953
- msgstr "Textfarbe"
2954
-
2955
- #: options/options-layouts/settings-style.php:67
2956
- msgid "Primary buttons text"
2957
- msgstr "Primärer Button Text"
2958
-
2959
- #: options/options-layouts/settings-style.php:70
2960
- msgid "Background Color"
2961
- msgstr "Hintergrundfarbe"
2962
-
2963
- #: options/options-layouts/settings-style.php:71
2964
- msgid "Primary buttons background"
2965
- msgstr "Primärer Button Hintergrund"
2966
-
2967
- #: options/options-layouts/settings-style.php:77
2968
- msgid "Secondary buttons text"
2969
- msgstr "Sekundärer Button Text"
2970
-
2971
- #: options/options-layouts/settings-style.php:80
2972
- msgid "Border Color"
2973
- msgstr "Rahmenfarbe"
2974
-
2975
- #: options/options-layouts/settings-style.php:81
2976
- msgid "Secondary buttons border"
2977
- msgstr "Sekundärer Button Rahmen"
2978
-
2979
- #: options/options-layouts/settings-style.php:87
2980
- msgid "Up Vote Color"
2981
- msgstr "Hoch Vote Farbe"
2982
-
2983
- #: options/options-layouts/settings-style.php:88
2984
- msgid "Up vote button"
2985
- msgstr "Hoch Vote Button"
2986
-
2987
- #: options/options-layouts/settings-style.php:91
2988
- msgid "Down Vote Color"
2989
- msgstr "Runter Vote Farbe"
2990
-
2991
- #: options/options-layouts/settings-style.php:92
2992
- msgid "Down vote button"
2993
- msgstr "Runter Vote Button"
2994
-
2995
- #: options/options-layouts/settings-style.php:99
2996
- msgid "Rating Star Colors"
2997
- msgstr "Farben der Bewertungssterne"
2998
-
2999
- #: options/options-layouts/settings-style.php:104
3000
- msgid "Rating Stars Hover Color"
3001
- msgstr "Hover Farbe der Bewertungssterne"
3002
-
3003
- #: options/options-layouts/settings-style.php:109
3004
- msgid "Rating Stars Inactive Color"
3005
- msgstr "Farbe der inaktiven Bewertungssterne"
3006
-
3007
- #: options/options-layouts/settings-style.php:114
3008
- msgid "Rating Stars Active Color"
3009
- msgstr "Farbe der aktiven Bewertungssterne"
3010
-
3011
- #: options/options-layouts/settings-style.php:121
3012
- msgid "Commenter Label Colors by User Role"
3013
- msgstr "Farben von Kommentator Etiketten nach Benutzerrolle"
3014
-
3015
- #: options/options-layouts/settings-style.php:128
3016
- msgid "label color"
3017
- msgstr "Label-Farbe"
3018
-
3019
- #: options/options-layouts/settings-style.php:139
3020
- msgid "Comment text size in pixels"
3021
- msgstr "Textgrösse des Kommentars in Pixel"
3022
-
3023
- #: options/options-layouts/settings-style.php:154
3024
- msgid "Do not load Font Awesome css lib"
3025
- msgstr "Font Awesome css lib nicht laden"
3026
-
3027
- #: options/options-layouts/settings-style.php:155
3028
- msgid ""
3029
- "IMPORTANT: wpDiscuz uses FontAwesome version 5. in case your theme still "
3030
- "uses the old 4.x versions you should not disable this lib. The theme 4.x "
3031
- "version doesn't support FontAwesome 5 icons, thus all wpDiscuz icons will be "
3032
- "lost."
3033
- msgstr ""
3034
- "WICHTIG: wpDiscuz verwendet FontAwesome Version 5. Falls Ihr Theme noch die "
3035
- "alten 4.x Versionen verwendet, sollten Sie dieses Lib nicht deaktivieren. "
3036
- "Die Theme 4.x Version unterstützt keine FontAwesome 5 Icons, so dass alle "
3037
- "wpDiscuz Icons verloren gehen."
3038
-
3039
- #: options/options-layouts/settings-style.php:164
3040
- msgid "Custom CSS Code"
3041
- msgstr "Eigenes CSS"
3042
-
3043
- #: options/options-layouts/settings-subscription.php:7
3044
- msgid "Email Subscription Settings"
3045
- msgstr "E-Mail Abonnement-Einstellungen"
3046
-
3047
- #: options/options-layouts/settings-subscription.php:11
3048
- msgid "Notify comment author once comment is approved"
3049
- msgstr "Kommentarautor benachrichtigen, sobald der Kommentar genehmigt wurde"
3050
-
3051
- #: options/options-layouts/settings-subscription.php:16
3052
- msgid "Disable subscription confirmation for registered users"
3053
- msgstr "E-Mail-Abonnement-System für angemeldete Benutzer deaktivieren"
3054
-
3055
- #: options/options-layouts/settings-subscription.php:25
3056
- msgid "Disable subscription confirmation for guests"
3057
- msgstr "Abonnementbestätigung für Gäste deaktivieren"
3058
-
3059
- #: options/options-layouts/settings-subscription.php:34
3060
- msgid "Show subscription types in dropdown"
3061
- msgstr "Abonnententypen im Dropdown-Menü anzeigen"
3062
-
3063
- #: options/options-layouts/settings-subscription.php:41
3064
- msgid "Subscribe to all comments of this post"
3065
- msgstr "Alle Kommentare von diesem Beitrag abonnieren"
3066
-
3067
- #: options/options-layouts/settings-subscription.php:45
3068
- msgid "Subscribe to all replies to my comments "
3069
- msgstr "Alle Antworten zu meinen Kommentaren abonnieren "
3070
-
3071
- #: options/options-layouts/settings-subscription.php:47
3072
- #: options/options-layouts/settings-subscription.php:49
3073
- msgid "Both"
3074
- msgstr "Beide"
3075
-
3076
- #: options/options-layouts/settings-subscription.php:57
3077
- msgid "Show \"Notify of new replies to this comment\""
3078
- msgstr "Zeigen Sie \"Benachrichtigen bei neuen Antworten zu diesem Kommentar“"
3079
-
3080
- #: options/options-layouts/settings-subscription.php:59
3081
- msgid ""
3082
- "wpDiscuz is the only comment plugin which allows you to subscribe to certain "
3083
- "comment replies. This option is located above [Post Comment] button in "
3084
- "comment form. You can disable this subscription way by unchecking this "
3085
- "option."
3086
- msgstr ""
3087
- "wpDiscuz ist bisher das einzige Kommentar-System, welches eMail-Abonnements "
3088
- "auf einzelne Kommentare / Antworten ermöglicht. Diese Option ist oberhalb "
3089
- "der [Kommentar veröffentlichen] Schaltfläche im Kommentar-Formular. Um die "
3090
- "Funktion zu deaktivieren kannst du hier den Options-Haken entfernen."
3091
-
3092
- #: options/options-layouts/settings-subscription.php:69
3093
- msgid "\"Notify of new replies to this comment\" checked by default"
3094
- msgstr ""
3095
- "\"Benachrichtigung über neue Antworten auf diesen Kommentar\" standardmäßig "
3096
- "aktiviert"
3097
-
3098
- #: options/options-layouts/settings-subscription.php:79
3099
- msgid "Use Postmatic for subscriptions and commenting by email"
3100
- msgstr ""
3101
- "Verwenden Sie Postmatic zu Benachrichtigungen bei neuen Kommentare per E-Mail"
3102
-
3103
- #: options/options-layouts/settings-subscription.php:80
3104
- msgid ""
3105
- "Postmatic allows your users subscribe to comments. Instead of just being "
3106
- "notified, they add a reply right from their inbox."
3107
- msgstr ""
3108
- "Postmatic ermöglicht deinen Besuchern sich per E-Mail über neuen Kommentare "
3109
- "benachrichtigen zu lassen. Zusätzlich können diese direkt im Posteingang "
3110
- "beantwortet werden."
3111
-
3112
- #: options/phrases-layouts/phrases-comment.php:7
3113
- msgid "Comment Template Phrases"
3114
- msgstr "Kommentarvorlagenphrasen"
3115
-
3116
- #: options/phrases-layouts/phrases-comment.php:83
3117
- msgid "Save edited comment button text"
3118
- msgstr "Speichern des bearbeiteten Kommentars Button Text"
3119
-
3120
- #: options/phrases-layouts/phrases-comment.php:87
3121
- msgid "Cancel comment editing button text"
3122
- msgstr "Verwerfen des bearbeiteten Kommentars Button Text"
3123
-
3124
- #: options/phrases-layouts/phrases-comment.php:91
3125
- msgid "Comment read more link text"
3126
- msgstr "Kommentar Weiterlesen Linktext"
3127
-
3128
- #: options/phrases-layouts/phrases-comment.php:95
3129
- msgid "Anonymous commenter name"
3130
- msgstr "Anonymer Kommentatorname"
3131
-
3132
- #: options/phrases-layouts/phrases-comment.php:115
3133
- msgid "Sticky comment icon title"
3134
- msgstr "Angehefteter Kommentar-Symboltitel"
3135
-
3136
- #: options/phrases-layouts/phrases-comment.php:135
3137
- msgid "Closed comment icon title"
3138
- msgstr "Geschlossener Kommentar-Symboltitel"
3139
-
3140
- #: options/phrases-layouts/phrases-datetime.php:7
3141
- msgid "Date/Time Phrases"
3142
- msgstr "Datum/Zeit Texte"
3143
-
3144
- #: options/phrases-layouts/phrases-datetime.php:11
3145
- msgid "Year"
3146
- msgstr "Jahr"
3147
-
3148
- #: options/phrases-layouts/phrases-datetime.php:15
3149
- msgid "Years (Plural Form)"
3150
- msgstr "Jahre (plural)"
3151
-
3152
- #: options/phrases-layouts/phrases-datetime.php:19
3153
- msgid "Month"
3154
- msgstr "Monat"
3155
-
3156
- #: options/phrases-layouts/phrases-datetime.php:23
3157
- msgid "Months (Plural Form)"
3158
- msgstr "Monate (Plural Form)"
3159
-
3160
- #: options/phrases-layouts/phrases-datetime.php:27
3161
- msgid "Day"
3162
- msgstr "Tag"
3163
-
3164
- #: options/phrases-layouts/phrases-datetime.php:31
3165
- msgid "Days (Plural Form)"
3166
- msgstr "Tage (plural)"
3167
-
3168
- #: options/phrases-layouts/phrases-datetime.php:39
3169
- msgid "Hours (Plural Form)"
3170
- msgstr "Stunden (Plural Form)"
3171
-
3172
- #: options/phrases-layouts/phrases-datetime.php:47
3173
- msgid "Minutes (Plural Form)"
3174
- msgstr "Minuten (Plural Form)"
3175
-
3176
- #: options/phrases-layouts/phrases-datetime.php:51
3177
- msgid "Second"
3178
- msgstr "Sekunde"
3179
-
3180
- #: options/phrases-layouts/phrases-datetime.php:55
3181
- msgid "Seconds (Plural Form)"
3182
- msgstr "Sekunden (plural)"
3183
-
3184
- #: options/phrases-layouts/phrases-datetime.php:59
3185
- msgid "Commented \"right now\" text"
3186
- msgstr "Kommentierte \"gerade jetzt\" den Text"
3187
-
3188
- #: options/phrases-layouts/phrases-datetime.php:63
3189
- msgid "Ago text"
3190
- msgstr "Text zuvor"
3191
-
3192
- #: options/phrases-layouts/phrases-email.php:17
3193
- msgid "Email Template Phrases"
3194
- msgstr "E-Mail Benachrichtungs-Phrasen"
3195
-
3196
- #: options/phrases-layouts/phrases-email.php:22
3197
- msgid "Subscription type: Post comments"
3198
- msgstr "Abonnement-Typ: Kommentare posten"
3199
-
3200
- #: options/phrases-layouts/phrases-email.php:23
3201
- msgid "Post comment notification subject"
3202
- msgstr "Kommentarbenachrichtigungs-Betreff senden"
3203
-
3204
- #: options/phrases-layouts/phrases-email.php:24
3205
- #: options/phrases-layouts/phrases-email.php:35
3206
- #: options/phrases-layouts/phrases-email.php:55
3207
- #: options/phrases-layouts/phrases-email.php:66
3208
- #: options/phrases-layouts/phrases-email.php:86
3209
- #: options/phrases-layouts/phrases-email.php:97
3210
- #: options/phrases-layouts/phrases-email.php:138
3211
- #: options/phrases-layouts/phrases-email.php:149
3212
- #: options/phrases-layouts/phrases-email.php:165
3213
- #: options/phrases-layouts/phrases-email.php:177
3214
- msgid "Available shortcodes"
3215
- msgstr "Verfügbare Shortcodes"
3216
-
3217
- #: options/phrases-layouts/phrases-email.php:34
3218
- msgid "Post comment notification content"
3219
- msgstr "Inhalte für Kommentarbenachrichtigungen senden"
3220
-
3221
- #: options/phrases-layouts/phrases-email.php:43
3222
- #: options/phrases-layouts/phrases-email.php:74
3223
- msgid "Shortcode above will work for registered users only"
3224
- msgstr "Der obige Shortcode funktioniert nur für registrierte Benutzer"
3225
-
3226
- #: options/phrases-layouts/phrases-email.php:53
3227
- msgid "Subscription type: All my comments"
3228
- msgstr "Abonnementstyp: Alle meine Kommentare"
3229
-
3230
- #: options/phrases-layouts/phrases-email.php:54
3231
- #: options/phrases-layouts/phrases-email.php:85
3232
- msgid "New reply notification subject"
3233
- msgstr "Neuer Betreff zur Antwortbenachrichtigung"
3234
-
3235
- #: options/phrases-layouts/phrases-email.php:65
3236
- #: options/phrases-layouts/phrases-email.php:96
3237
- msgid "New Reply notification content"
3238
- msgstr "Neuer Inhalt zur Antwortbenachrichtigung"
3239
-
3240
- #: options/phrases-layouts/phrases-email.php:84
3241
- msgid "Subscription type: Single comment"
3242
- msgstr "Abonnement-Typ: Einzelner Kommentar"
3243
-
3244
- #: options/phrases-layouts/phrases-email.php:124
3245
- msgid "Ignore subscription"
3246
- msgstr "Abonnement ignorieren"
3247
-
3248
- #: options/phrases-layouts/phrases-email.php:137
3249
- msgid "Subscription confirmation email subject"
3250
- msgstr "E-Mail-Betreff der Abonnementbestätigung"
3251
-
3252
- #: options/phrases-layouts/phrases-email.php:148
3253
- msgid "Subscription confirmation email content"
3254
- msgstr "E-Mail-Inhalt der Abonnementbestätigung"
3255
-
3256
- #: options/phrases-layouts/phrases-email.php:164
3257
- msgid "Comment approved subject"
3258
- msgstr "Kommentargenehmigter Betreff"
3259
-
3260
- #: options/phrases-layouts/phrases-email.php:175
3261
- msgid "Comment approved message"
3262
- msgstr "Kommentargenehmigte Nachricht"
3263
-
3264
- #: options/phrases-layouts/phrases-error.php:7
3265
- #: options/phrases-layouts/phrases-notification.php:7
3266
- msgid "Notification Phrases"
3267
- msgstr "Sätze zu Mitteilungen"
3268
-
3269
- #: options/phrases-layouts/phrases-error.php:11
3270
- msgid "Error message for empty field"
3271
- msgstr "Fehlermeldung für leeres Feld"
3272
-
3273
- #: options/phrases-layouts/phrases-error.php:15
3274
- msgid "Error message for invalid email field"
3275
- msgstr "Bitte überprüfe deine angegebene E-Mail Adresse"
3276
-
3277
- #: options/phrases-layouts/phrases-error.php:19
3278
- msgid "Error message for invalid website url field"
3279
- msgstr "Bitte überprüfe deine angegebene Website Adresse"
3280
-
3281
- #: options/phrases-layouts/phrases-error.php:23
3282
- msgid "You can vote only 1 time"
3283
- msgstr "Du kannst nur ein mal abstimmen"
3284
-
3285
- #: options/phrases-layouts/phrases-error.php:31
3286
- msgid "You Cannot Vote On Your Comment"
3287
- msgstr "Du kannst nicht für deinen Kommentar abstimmen"
3288
-
3289
- #: options/phrases-layouts/phrases-error.php:35
3290
- msgid "You are not allowed to vote for this comment (Voting from same IP)"
3291
- msgstr "Sie dürfen nicht für diesen Kommentar stimmen (IP-Adresse identisch)"
3292
-
3293
- #: options/phrases-layouts/phrases-error.php:47
3294
- msgid "Message if input text length is too short"
3295
- msgstr "Der eingegebene Text für eine Nachricht ist zu kurz"
3296
-
3297
- #: options/phrases-layouts/phrases-error.php:51
3298
- msgid "Message if input text length is too long"
3299
- msgstr "Der eingegebene Text für eine Nachricht ist zu lang"
3300
-
3301
- #: options/phrases-layouts/phrases-error.php:55
3302
- msgid "Message if comment was not updated"
3303
- msgstr "Tut uns leid, aber der Kommentar wurde nicht aktualisiert"
3304
-
3305
- #: options/phrases-layouts/phrases-error.php:59
3306
- msgid "Message if comment no longer possible to edit"
3307
- msgstr "Tut uns leid, aber dieser Kommentar kann nicht mehr verändert werden"
3308
-
3309
- #: options/phrases-layouts/phrases-error.php:63
3310
- msgid "Message if comment text not changed"
3311
- msgstr "Nachricht, wenn Kommentartext nicht verändert wurde"
3312
-
3313
- #: options/phrases-layouts/phrases-form.php:7
3314
- msgid "Form Template Phrases"
3315
- msgstr "Sätze für Formularvorlagen"
3316
-
3317
- #: options/phrases-layouts/phrases-form.php:11
3318
- msgid "Comment Field Start"
3319
- msgstr "Kommentarfeld Start"
3320
-
3321
- #: options/phrases-layouts/phrases-form.php:15
3322
- msgid "Comment Field Join"
3323
- msgstr "Kommentarfeld Beitreten"
3324
-
3325
- #: options/phrases-layouts/phrases-form.php:47
3326
- msgid "Email Field"
3327
- msgstr "E-Mail Feld"
3328
-
3329
- #: options/phrases-layouts/phrases-form.php:59
3330
- msgid "Notify on new comments"
3331
- msgstr "Benachrichtigen bei neuen Kommentaren"
3332
-
3333
- #: options/phrases-layouts/phrases-form.php:63
3334
- msgid "Notify on all new replies"
3335
- msgstr "Benachrichtigen bei allen neuen Antworten"
3336
-
3337
- #: options/phrases-layouts/phrases-form.php:67
3338
- msgid "Notify on new replies (checkbox) - On"
3339
- msgstr "Bei neuen Antworten benachrichtigen (Checkbox) - EIN"
3340
-
3341
- #: options/phrases-layouts/phrases-form.php:71
3342
- msgid "Notify on new replies (checkbox) - Off"
3343
- msgstr "Bei neuen Antworten benachrichtigen (Checkbox) - AUS"
3344
-
3345
- #: options/phrases-layouts/phrases-form.php:91
3346
- msgid "Subscribed on this comment replies"
3347
- msgstr ""
3348
- "Sie erhalten Benachrichtigungen für allen weiteren Reaktionen zu diesen "
3349
- "Kommentar"
3350
-
3351
- #: options/phrases-layouts/phrases-form.php:95
3352
- msgid "Subscribed on all your comments replies"
3353
- msgstr ""
3354
- "Sie erhalten Benachrichtigungen für alle weiteren Reaktionen zu all Ihren "
3355
- "Kommentaren"
3356
-
3357
- #: options/phrases-layouts/phrases-form.php:99
3358
- msgid "Subscribed on this post"
3359
- msgstr "Diesen Beitrag abonnieren"
3360
-
3361
- #: options/phrases-layouts/phrases-form.php:103
3362
- msgid "Form subscription button"
3363
- msgstr "Formular Abonnement Schaltfläche"
3364
-
3365
- #: options/phrases-layouts/phrases-form.php:107
3366
- msgid "Invisible Antispam Protection note"
3367
- msgstr "Hinweis für den unsichtbaren Antispam-Schutz"
3368
-
3369
- #: options/phrases-layouts/phrases-general.php:7
3370
- msgid "General Phrases"
3371
- msgstr "Generelle Sätze"
3372
-
3373
- #: options/phrases-layouts/phrases-general.php:11
3374
- msgid "Be the first to comment"
3375
- msgstr "Hinterlassen Sie einen ersten Kommentar"
3376
-
3377
- #: options/phrases-layouts/phrases-general.php:15
3378
- msgid "Load More Button"
3379
- msgstr "Mehr anzeigen Taste"
3380
-
3381
- #: options/phrases-layouts/phrases-general.php:23
3382
- msgid "Button text if has new comment"
3383
- msgstr "Button Text bei neuem Kommentar"
3384
-
3385
- #: options/phrases-layouts/phrases-general.php:27
3386
- msgid "Button text if has new comments (Plural Form)"
3387
- msgstr "Button Text bei neuen Kommentaren"
3388
-
3389
- #: options/phrases-layouts/phrases-general.php:31
3390
- msgid "Button text if has new reply"
3391
- msgstr "Button Text bei neuer Antwort"
3392
-
3393
- #: options/phrases-layouts/phrases-general.php:35
3394
- msgid "Button text if has new replies (Plural Form)"
3395
- msgstr "Button Text bei neuen Antworten"
3396
-
3397
- #: options/phrases-layouts/phrases-notification.php:24
3398
- msgid "Postmatic subscription label"
3399
- msgstr "Postmatic Abonnement-Label"
3400
-
3401
- #: options/phrases-layouts/phrases-notification.php:42
3402
- msgid "Logged In"
3403
- msgstr "Angemeldet"
3404
-
3405
- #: options/phrases-layouts/phrases-notification.php:46
3406
- msgid "To post a comment"
3407
- msgstr "um ein Kommentar schreiben zu können."
3408
-
3409
- #: options/phrases-layouts/phrases-notification.php:50
3410
- msgid "Logged in as"
3411
- msgstr "Angemeldet als"
3412
-
3413
- #: options/phrases-layouts/phrases-notification.php:62
3414
- msgid "Login To Vote"
3415
- msgstr "Zum Abstimmen bitte anmelden"
3416
-
3417
- #: options/phrases-layouts/phrases-notification.php:66
3418
- msgid "Comment waiting moderation"
3419
- msgstr "Kommentar wartet auf Moderation"
3420
-
3421
- #: options/phrases-layouts/phrases-notification.php:70
3422
- msgid "Message if commenting disabled by user role"
3423
- msgstr ""
3424
- "Nachricht, wenn das Kommentieren durch die Benutzerrolle deaktiviert ist"
3425
-
3426
- #: options/phrases-layouts/phrases-social-login.php:15
3427
- msgid "Social login agreement label"
3428
- msgstr "Label für soziale Login-Vereinbarung"
3429
-
3430
- #: options/phrases-layouts/phrases-social-login.php:19
3431
- msgid "Social login agreement description"
3432
- msgstr "Beschreibung der sozialen Login-Vereinbarung"
3433
-
3434
- #: options/phrases-layouts/phrases-user-settings.php:7
3435
- msgid "User Settings Phrases"
3436
- msgstr "Benutzereinstellungen zu Phrasen"
3437
-
3438
- #: options/phrases-layouts/phrases-user-settings.php:31
3439
- msgid "\"Bulk management via email\" description"
3440
- msgstr "\"Massenverwaltung per E-Mail\" Beschreibung"
3441
-
3442
- #: options/phrases-layouts/phrases-user-settings.php:59
3443
- msgid "Delete all comments email text"
3444
- msgstr "Löschen Sie den gesamten E-Mail-Text für Kommentare"
3445
-
3446
- #: options/phrases-layouts/phrases-user-settings.php:67
3447
- msgid "Delete all subscriptions email text"
3448
- msgstr "Lösche den gesamten E-Mail-Text für Abonnements"
3449
-
3450
- #: options/tools-layouts/options-export.php:9
3451
- msgid ""
3452
- "Using this tool you can migrate or backup/restore wpDiscuz options from one "
3453
- "WordPress to another."
3454
- msgstr ""
3455
- "Mit diesem Tool können Sie wpDiscuz Optionen von einem WordPress zum anderen "
3456
- "migrieren oder sichern / wiederherstellen."
3457
-
3458
- #: options/tools-layouts/options-export.php:20
3459
- msgid "Download Options"
3460
- msgstr "Download Optionen"
3461
-
3462
- #: options/tools-layouts/options-export.php:28
3463
- msgid "Backup Options"
3464
- msgstr "Backup-Optionen"
3465
-
3466
- #: options/tools-layouts/options-import.php:9
3467
- msgid ""
3468
- "Here you can import and restore wpDiscuz options. You just need to choose "
3469
- "backup file and click import options."
3470
- msgstr ""
3471
- "Hier können Sie wpDiscuz-Optionen importieren und wiederherstellen. Sie "
3472
- "müssen nur die Sicherungsdatei auswählen und auf Importoptionen klicken."
3473
-
3474
- #: options/tools-layouts/options-import.php:22
3475
- msgid "Import Options"
3476
- msgstr "Import-Optionen"
3477
-
3478
- #: options/tools-layouts/subscriptions-import.php:11
3479
- msgid ""
3480
- "Using this tool you can import subscriptions from other plugins to wpDiscuz."
3481
- msgstr ""
3482
- "Mit diesem Tool können Sie Abonnements von anderen Plugins in wpDiscuz "
3483
- "importieren."
3484
-
3485
- #: options/tools-layouts/subscriptions-import.php:19
3486
- msgid "Import subscriptions from Subscribe To Comments Reloaded"
3487
- msgstr "Abonnements von Abonnenten in neu geladene Kommentare importieren"
3488
-
3489
- #: options/tools-layouts/subscriptions-import.php:20
3490
- msgid "Import subscriptions from \"Subscribe To Comments Reloaded\" plugin"
3491
- msgstr ""
3492
- "Importiere Abonnements von dem \"Subscribe To Comments Reloaded\" -Plugin"
3493
-
3494
- #: options/tools-layouts/tools-other.php:16
3495
- msgid "Update vote data"
3496
- msgstr "Voting Daten aktualisieren"
3497
-
3498
- #: options/tools-layouts/tools-other.php:18
3499
- msgid ""
3500
- "We recommend use this tool to do one way hashing of commenter IP addresses "
3501
- "to 32 bit strings, so you'll keep less personal information of your "
3502
- "commenters. This tool only hashes voter IP addresses. You also can stop "
3503
- "saving of commenter IP addresses in comments database table using this "
3504
- "instruction "
3505
- msgstr ""
3506
- "Wir empfehlen, dieses Tool zu verwenden, um Singlemode-IP-Adressen auf 32-"
3507
- "Bit-Strings zu reduzieren, so dass Sie weniger persönliche Informationen "
3508
- "über Ihre Kommentatoren behalten. Dieses Tool hat nur Voter-IP-Adressen. Sie "
3509
- "können mit dieser Anweisung auch das Speichern von Kommentar-IP-Adressen in "
3510
- "der Kommentardatenbanktabelle stoppen "
3511
-
3512
- #: options/tools-layouts/tools-other.php:26
3513
- msgid "Start Hashing"
3514
- msgstr "Starte das Hashing"
3515
-
3516
- #: options/tools-layouts/tools-other.php:27
3517
- msgid "Hash users IP addresses"
3518
- msgstr "Hash-Benutzer IP-Adressen"
3519
-
3520
- #: templates/comment/comment-form.php:61
3521
- msgid "Your comments have been deleted from database"
3522
- msgstr "Ihre Kommentare wurden aus der Datenbank gelöscht"
3523
-
3524
- #: templates/comment/comment-form.php:72
3525
- msgid "You cancel all your subscriptions successfully"
3526
- msgstr "Sie haben alle Ihre Abonnements erfolgreich storniert"
3527
-
3528
- #: templates/comment/comment-form.php:99
3529
- msgid "Unable to send an email"
3530
- msgstr "Leider kann aktuell keine E-Mail versendet werden"
3531
-
3532
- #: templates/comment/comment-form.php:101
3533
- msgid "Subscription Fault"
3534
- msgstr "Abonnementfehler"
3535
-
3536
- #: utils/class.WpdiscuzHelper.php:216 utils/class.WpdiscuzHelper.php:219
3537
- msgid "Spoiler"
3538
- msgstr "Spoiler"
3539
-
3540
- #: utils/class.WpdiscuzHelper.php:312
3541
- msgid "Sticky"
3542
- msgstr "Sticky"
3543
-
3544
- #: utils/class.WpdiscuzHelper.php:524
3545
- msgid "Before using wpDiscuz you should update your data"
3546
- msgstr "Bevor Sie wpDiscuz verwenden, sollten Sie Ihre Daten aktualisieren"
3547
-
3548
- #: utils/class.WpdiscuzHelper.php:525
3549
- msgid "Go to update data"
3550
- msgstr "Gehen Sie zu Daten aktualisieren"
3551
-
3552
- #: utils/deactivation-reason-modal.php:10
3553
- msgid "Plugin Usage Feedback"
3554
- msgstr "Feedback zur Plugin-Nutzung"
3555
-
3556
- #: utils/deactivation-reason-modal.php:13
3557
- msgid ""
3558
- "Please let us know why you are deactivating. Choosing one of the options "
3559
- "below you will help us make it better for you and for other users."
3560
- msgstr ""
3561
- "Bitte lassen Sie uns wissen, warum Sie das PlugIn deaktivieren. Wenn Sie "
3562
- "eine der folgenden Optionen auswählen, dann können wir für Sie und andere "
3563
- "Nutzer das PlugIn verbessern."
3564
-
3565
- #: utils/deactivation-reason-modal.php:19
3566
- msgid "I'll reactivate it later"
3567
- msgstr "Ich reaktiviere es später"
3568
-
3569
- #: utils/deactivation-reason-modal.php:23
3570
- msgid "The plugin is not working"
3571
- msgstr "Das PlugIn funktioniert nicht"
3572
-
3573
- #: utils/deactivation-reason-modal.php:24
3574
- msgid "What kind of problems do you have?"
3575
- msgstr "Welche Probleme haben Sie?"
3576
-
3577
- #: utils/deactivation-reason-modal.php:28
3578
- msgid "It's not what I was looking for"
3579
- msgstr "Es ist nicht das, was ich suchte"
3580
-
3581
- #: utils/deactivation-reason-modal.php:32
3582
- msgid "I couldn't understand how to make it work"
3583
- msgstr "Ich habe nicht verstanden, wie es funktioniert"
3584
-
3585
- #: utils/deactivation-reason-modal.php:33
3586
- #: utils/deactivation-reason-modal.php:38
3587
- msgid "What type of features you want to be in the plugin?"
3588
- msgstr "Welche Arten von Funktionen möchten Sie mit dem Plugin haben?"
3589
-
3590
- #: utils/deactivation-reason-modal.php:37
3591
- msgid "The plugin is great, but I need specific features"
3592
- msgstr "Das Plugin ist toll, aber ich brauche spezielle Funktionen"
3593
-
3594
- #: utils/deactivation-reason-modal.php:42
3595
- msgid "I didn't like plugin design"
3596
- msgstr "Mir gefiel das Plugin-Design nicht"
3597
-
3598
- #: utils/deactivation-reason-modal.php:43
3599
- msgid "What part of design you don't like or want to change?"
3600
- msgstr "Welcher Teil des Designs, das Ihnen nicht gefiel, möchten Sie ändern?"
3601
-
3602
- #: utils/deactivation-reason-modal.php:47
3603
- msgid "The plugin works very slow"
3604
- msgstr "Das Plugin arbeitet sehr langsam"
3605
-
3606
- #: utils/deactivation-reason-modal.php:48
3607
- msgid ""
3608
- "Could you please describe which features of the plugin slows down your "
3609
- "website?"
3610
- msgstr ""
3611
- "Beschreiben Sie bitte, welche Funktionen des Plugins Ihre Website "
3612
- "verlangsamte?"
3613
-
3614
- #: utils/deactivation-reason-modal.php:52
3615
- msgid "I found a better plugin"
3616
- msgstr "Ich fand ein besseres Plugin"
3617
-
3618
- #: utils/deactivation-reason-modal.php:53
3619
- msgid "Please provide a plugin name or URL"
3620
- msgstr "Bitte geben Sie einen Plugin-Namen oder die URL an"
3621
-
3622
- #: utils/deactivation-reason-modal.php:62
3623
- msgid "Dismiss and never show again"
3624
- msgstr "Ausblenden und nicht wieder anzeigen"
3625
-
3626
- #: utils/deactivation-reason-modal.php:63
3627
- msgid "Submit &amp; Deactivate"
3628
- msgstr "Absenden &amp; deaktivieren"
3629
-
3630
- #: utils/deactivation-reason-modal.php:66
3631
- msgid "Thank you for your feedback!"
3632
- msgstr "Vielen Dank für Ihr Feedback!"
3633
-
3634
- #: utils/layouts/activity/item.php:28
3635
- msgid "Delete this comment"
3636
- msgstr "Diesen Kommentar löschen"
3637
-
3638
- #: utils/layouts/pagination.php:22
3639
- msgid "&laquo;"
3640
- msgstr "&laquo;"
3641
-
3642
- #: utils/layouts/pagination.php:28
3643
- msgid "&lsaquo;"
3644
- msgstr "&lsaquo;"
3645
-
3646
- #: utils/layouts/pagination.php:52
3647
- msgid "&raquo;"
3648
- msgstr "&raquo;"
3649
-
3650
- #: utils/layouts/subscriptions/item.php:23
3651
- msgid "Cancel this subscription"
3652
- msgstr "Dieses Abonnement abbestellen"
3653
-
3654
- #. Plugin Name of the plugin/theme
3655
- msgid "wpDiscuz"
3656
- msgstr "wpDiscuz"
3657
-
3658
- #. Plugin URI of the plugin/theme
3659
- msgid "http://wpdiscuz.com/"
3660
- msgstr "http://wpdiscuz.com/"
3661
-
3662
- #. Description of the plugin/theme
3663
- msgid ""
3664
- "Better comment system. Wordpress post comments and discussion plugin. Allows "
3665
- "your visitors discuss, vote for comments and share."
3666
- msgstr ""
3667
- "Besseres Kommentar-System. Wordpress-Post-Kommentare und Diskussions-Plugin. "
3668
- "Erlaubt Ihren Besuchern zu diskutieren, für Kommentare zu stimmen und zu "
3669
- "teilen."
3670
-
3671
- #. Author of the plugin/theme
3672
- msgid "gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
3673
- msgstr "Team gVectors (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
3674
-
3675
- #. Author URI of the plugin/theme
3676
- msgid "https://gvectors.com/"
3677
- msgstr ""
1
+ msgid ""
2
+ msgstr ""
3
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
4
+ "Project-Id-Version: wpDiscuz\n"
5
+ "POT-Creation-Date: 2018-05-30 22:54+0400\n"
6
+ "PO-Revision-Date: 2018-07-07 22:27+0200\n"
7
+ "Language-Team: \n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 2.0.8\n"
12
+ "X-Poedit-Basepath: ..\n"
13
+ "X-Poedit-WPHeader: class.WpdiscuzCore.php\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Last-Translator: scysys <scysys@outlook.com>\n"
19
+ "Language: de_DE\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 "Alle 3 Stunden"
26
+
27
+ #: class.WpdiscuzCore.php:262
28
+ msgid "Every 48 hours"
29
+ msgstr "Alle 48 Stunden"
30
+
31
+ #: class.WpdiscuzCore.php:375
32
+ msgid "We are sorry, but this comment cannot be posted. Please try later."
33
+ msgstr ""
34
+ "Es tut uns leid, aber dieser Kommentar kann nicht gepostet werden. Bitte "
35
+ "versuchen Sie es später."
36
+
37
+ #: class.WpdiscuzCore.php:443
38
+ msgid "This is closed comment thread"
39
+ msgstr "Dies ist ein geschlossenes Kommentar Thema"
40
+
41
+ #: class.WpdiscuzCore.php:1096 class.WpdiscuzCore.php:1328
42
+ msgid "Settings"
43
+ msgstr "Einstellungen"
44
+
45
+ #: class.WpdiscuzCore.php:1098 class.WpdiscuzCore.php:1330
46
+ msgid "Phrases"
47
+ msgstr "Übersetzungen"
48
+
49
+ #: class.WpdiscuzCore.php:1100
50
+ msgid "Tools"
51
+ msgstr "Werkzeuge"
52
+
53
+ #: class.WpdiscuzCore.php:1101 options/html-options.php:22
54
+ #: options/html-options.php:64 options/options-layouts/settings-addons.php:14
55
+ msgid "Addons"
56
+ msgstr "Erweiterungen"
57
+
58
+ #: class.WpdiscuzCore.php:1113
59
+ msgid "Do you really want to reset all options?"
60
+ msgstr "Möchten Sie wirklich alle Optionen zurücksetzen?"
61
+
62
+ #: class.WpdiscuzCore.php:1114
63
+ msgid "Do you really want to remove voting data?"
64
+ msgstr "Möchten Sie wirklich die Voting-Daten entfernen?"
65
+
66
+ #: class.WpdiscuzCore.php:1115
67
+ msgid "Do you really want to reset phrases?"
68
+ msgstr "Möchten Sie wirklich die Phrasen zurücksetzen?"
69
+
70
+ #: class.WpdiscuzCore.php:1116
71
+ msgid "Do you really want to delete gravatars cache?"
72
+ msgstr "Möchten Sie den Gravatar-Cache wirklich löschen?"
73
+
74
+ #: class.WpdiscuzCore.php:1117
75
+ msgid "Do you really want to delete statistics cache?"
76
+ msgstr "Möchten Sie den Statistik-Cache wirklich löschen?"
77
+
78
+ #: class.WpdiscuzCore.php:1154
79
+ msgid "Please check one of reasons before sending feedback!"
80
+ msgstr "Bitte überprüfen Sie einen der Gründe, bevor Sie ein Feedback senden!"
81
+
82
+ #: class.WpdiscuzCore.php:1155 utils/deactivation-reason-modal.php:58
83
+ msgid "Please provide more information"
84
+ msgstr "Bitte geben Sie weitere Informationen an"
85
+
86
+ #: class.WpdiscuzCore.php:1402 options/phrases-layouts/phrases-comment.php:56
87
+ msgid "Admin"
88
+ msgstr "Admin"
89
+
90
+ #: class.WpdiscuzCore.php:1404 class.WpdiscuzCore.php:1413
91
+ #: options/phrases-layouts/phrases-comment.php:58
92
+ msgid "Author"
93
+ msgstr "Autor"
94
+
95
+ #: class.WpdiscuzCore.php:1408 options/phrases-layouts/phrases-comment.php:64
96
+ msgid "Member"
97
+ msgstr "Mitglied"
98
+
99
+ #: class.WpdiscuzCore.php:1414 options/phrases-layouts/phrases-comment.php:62
100
+ msgid "Guest"
101
+ msgstr "Gast"
102
+
103
+ #: forms/wpDiscuzForm.php:96
104
+ msgid "Invalid Data !!!"
105
+ msgstr "Ungültige Daten !!!"
106
+
107
+ #: forms/wpDiscuzForm.php:104 forms/wpDiscuzForm.php:152
108
+ msgid "Forms"
109
+ msgstr "Formulare"
110
+
111
+ #: forms/wpDiscuzForm.php:105 options/html-phrases.php:22
112
+ msgid "Form"
113
+ msgstr "Formular"
114
+
115
+ #: forms/wpDiscuzForm.php:106
116
+ msgid "Add New"
117
+ msgstr "Neu hinzufügen"
118
+
119
+ #: forms/wpDiscuzForm.php:107
120
+ msgid "Add New Form"
121
+ msgstr "Neues Formular hinzufügen"
122
+
123
+ #: forms/wpDiscuzForm.php:108
124
+ msgid "Edit Form"
125
+ msgstr "Formular bearbeiten"
126
+
127
+ #: forms/wpDiscuzForm.php:109
128
+ msgid "You did not create any forms yet"
129
+ msgstr "Sie haben bisher keine Formulare erstellt"
130
+
131
+ #: forms/wpDiscuzForm.php:110
132
+ msgid "Nothing found in Trash"
133
+ msgstr "Nichts im Papierkorb gefunden"
134
+
135
+ #: forms/wpDiscuzForm.php:111
136
+ msgid "Search Forms"
137
+ msgstr "Formulare suchen"
138
+
139
+ #: forms/wpDiscuzForm.php:166
140
+ msgid "Title"
141
+ msgstr "Titel"
142
+
143
+ #: forms/wpDiscuzForm.php:167
144
+ msgid "Post Types"
145
+ msgstr "Beitragstypen"
146
+
147
+ #: forms/wpDiscuzForm.php:168
148
+ msgid "Post IDs"
149
+ msgstr "Beitrags-ID"
150
+
151
+ #: forms/wpDiscuzForm.php:169 forms/wpdFormAttr/Form.php:621
152
+ msgid "Language"
153
+ msgstr "Sprache"
154
+
155
+ #: forms/wpDiscuzForm.php:170
156
+ msgid "Date"
157
+ msgstr "Datum"
158
+
159
+ #: forms/wpDiscuzForm.php:215
160
+ msgid "Field Types"
161
+ msgstr "Feld-Typen"
162
+
163
+ #: forms/wpDiscuzForm.php:216 forms/wpdFormAttr/Row.php:23
164
+ msgid "Two column"
165
+ msgstr "2 Spalten"
166
+
167
+ #: forms/wpDiscuzForm.php:217 forms/wpdFormAttr/Field/Field.php:66
168
+ #: forms/wpdFormAttr/Row.php:24
169
+ msgid "Delete"
170
+ msgstr "Löschen"
171
+
172
+ #: forms/wpDiscuzForm.php:218 forms/wpdFormAttr/Row.php:25
173
+ msgid "Move"
174
+ msgstr "Verschieben"
175
+
176
+ #: forms/wpDiscuzForm.php:219 forms/wpdFormAttr/Row.php:69
177
+ msgid "Add Field"
178
+ msgstr "Feld hinzufügen"
179
+
180
+ #: forms/wpDiscuzForm.php:220 forms/wpdFormAttr/Field/Field.php:63
181
+ #: options/class.WpdiscuzOptionsSerialized.php:779
182
+ #: options/phrases-layouts/phrases-comment.php:19
183
+ msgid "Edit"
184
+ msgstr "Bearbeiten"
185
+
186
+ #: forms/wpDiscuzForm.php:221
187
+ msgid "You can not delete default field."
188
+ msgstr "Das Standardpaket kann nicht gelöscht werden."
189
+
190
+ #: forms/wpDiscuzForm.php:222
191
+ msgid "You really want to delete this item ?"
192
+ msgstr "Wollen Sie dieses Objekt wirklich löschen?"
193
+
194
+ #: forms/wpDiscuzForm.php:229
195
+ msgid "Permission Denied !!!"
196
+ msgstr "Berechtigung verweigert !!!"
197
+
198
+ #: forms/wpDiscuzForm.php:254 forms/wpdFormAttr/Form.php:591
199
+ #: forms/wpdFormAttr/html/admin-form-fields-list.php:18
200
+ #: options/options-layouts/settings-customfields.php:7
201
+ msgid "Custom Fields"
202
+ msgstr "Benutzerdefinierte Felder"
203
+
204
+ #: forms/wpDiscuzForm.php:302
205
+ msgid "Custom CSS"
206
+ msgstr "Benutzerdefiniertes CSS"
207
+
208
+ #: forms/wpDiscuzForm.php:358
209
+ msgid "Default Form"
210
+ msgstr "Standardformular"
211
+
212
+ #: forms/wpDiscuzForm.php:391 forms/wpDiscuzForm.php:399
213
+ #: forms/wpdFormAttr/Form.php:677
214
+ msgid "Leave a Reply"
215
+ msgstr "Hinterlasse einen Kommentar"
216
+
217
+ #: forms/wpDiscuzForm.php:414 forms/wpdFormAttr/Field/AgreementCheckbox.php:12
218
+ #: forms/wpdFormAttr/Field/CheckboxField.php:12
219
+ #: forms/wpdFormAttr/Field/ColorField.php:12
220
+ #: forms/wpdFormAttr/Field/CookiesConsent.php:14
221
+ #: forms/wpdFormAttr/Field/DateField.php:12
222
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:27
223
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:19
224
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:18
225
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:65
226
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:18
227
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:18
228
+ #: forms/wpdFormAttr/Field/NumberField.php:12
229
+ #: forms/wpdFormAttr/Field/RadioField.php:12
230
+ #: forms/wpdFormAttr/Field/RatingField.php:12
231
+ #: forms/wpdFormAttr/Field/SelectField.php:12
232
+ #: forms/wpdFormAttr/Field/TextAreaField.php:13
233
+ #: forms/wpdFormAttr/Field/TextField.php:12
234
+ #: forms/wpdFormAttr/Field/UrlField.php:12 forms/wpdFormAttr/Form.php:789
235
+ msgid "Name"
236
+ msgstr "Name"
237
+
238
+ #: forms/wpDiscuzForm.php:416 forms/wpdFormAttr/Field/DefaultField/Email.php:65
239
+ #: forms/wpdFormAttr/Form.php:796
240
+ #: options/class.WpdiscuzOptionsSerialized.php:764 options/html-phrases.php:25
241
+ msgid "Email"
242
+ msgstr "E-Mail"
243
+
244
+ #: forms/wpDiscuzForm.php:418
245
+ msgid "WebSite URL"
246
+ msgstr "URL der Webseite"
247
+
248
+ #: forms/wpDiscuzForm.php:421
249
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:116
250
+ #: forms/wpdFormAttr/Form.php:819
251
+ msgid "Post Comment"
252
+ msgstr "Kommentar absenden"
253
+
254
+ #: forms/wpDiscuzForm.php:430
255
+ msgid "Clone Form"
256
+ msgstr "Formular duplizieren"
257
+
258
+ #: forms/wpDiscuzForm.php:442
259
+ msgid "Clone"
260
+ msgstr "Duplizieren"
261
+
262
+ #: forms/wpDiscuzForm.php:480
263
+ msgid ""
264
+ "Comment Form is not detected, please navigate to form manager page to create "
265
+ "it. "
266
+ msgstr ""
267
+ "Kommentar-Formular wird nicht erkannt, navigieren Sie bitte zur Formular-"
268
+ "Manager-Seite, um sie zu erstellen. "
269
+
270
+ #: forms/wpDiscuzForm.php:481
271
+ msgid "Add Comment Form"
272
+ msgstr "Kommentar Formular hinzufügen"
273
+
274
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:16
275
+ #: forms/wpdFormAttr/Field/CheckboxField.php:17
276
+ #: forms/wpdFormAttr/Field/ColorField.php:17
277
+ #: forms/wpdFormAttr/Field/CookiesConsent.php:18
278
+ #: forms/wpdFormAttr/Field/DateField.php:17
279
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:32
280
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:24
281
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:23
282
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:23
283
+ #: forms/wpdFormAttr/Field/NumberField.php:17
284
+ #: forms/wpdFormAttr/Field/RadioField.php:17
285
+ #: forms/wpdFormAttr/Field/RatingField.php:16
286
+ #: forms/wpdFormAttr/Field/SelectField.php:17
287
+ #: forms/wpdFormAttr/Field/TextAreaField.php:18
288
+ #: forms/wpdFormAttr/Field/TextField.php:17
289
+ #: forms/wpdFormAttr/Field/UrlField.php:17
290
+ msgid "Description"
291
+ msgstr "Beschreibung"
292
+
293
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:18
294
+ #: forms/wpdFormAttr/Field/CheckboxField.php:19
295
+ #: forms/wpdFormAttr/Field/ColorField.php:19
296
+ #: forms/wpdFormAttr/Field/CookiesConsent.php:20
297
+ #: forms/wpdFormAttr/Field/DateField.php:19
298
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:34
299
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:26
300
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:25
301
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:25
302
+ #: forms/wpdFormAttr/Field/NumberField.php:19
303
+ #: forms/wpdFormAttr/Field/NumberField.php:24
304
+ #: forms/wpdFormAttr/Field/NumberField.php:29
305
+ #: forms/wpdFormAttr/Field/RadioField.php:19
306
+ #: forms/wpdFormAttr/Field/RatingField.php:18
307
+ #: forms/wpdFormAttr/Field/SelectField.php:19
308
+ #: forms/wpdFormAttr/Field/TextAreaField.php:20
309
+ #: forms/wpdFormAttr/Field/TextField.php:19
310
+ #: forms/wpdFormAttr/Field/UrlField.php:19
311
+ msgid ""
312
+ "Field specific short description or some rule related to inserted "
313
+ "information."
314
+ msgstr ""
315
+ "Feldspezifische Kurzbeschreibung oder eine Regel in Bezug auf eingefügte "
316
+ "Informationen."
317
+
318
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:21
319
+ #: forms/wpdFormAttr/Field/CookiesConsent.php:23
320
+ msgid "Checkbox Label"
321
+ msgstr "CheckBox Beschriftung"
322
+
323
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:22
324
+ msgid ""
325
+ "You can use HTML tags to add links to website Terms and Privacy Policy "
326
+ "pages. For example: "
327
+ msgstr ""
328
+ "Sie können HTML-Tags verwenden, um Links zu den Nutzungsbedingungen der "
329
+ "Website und den Datenschutzrichtlinien hinzuzufügen. Beispielsweise: "
330
+
331
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:28
332
+ #: forms/wpdFormAttr/Field/CheckboxField.php:33
333
+ #: forms/wpdFormAttr/Field/ColorField.php:29
334
+ #: forms/wpdFormAttr/Field/DateField.php:29
335
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:36
336
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:35
337
+ #: forms/wpdFormAttr/Field/NumberField.php:39
338
+ #: forms/wpdFormAttr/Field/RadioField.php:33
339
+ #: forms/wpdFormAttr/Field/RatingField.php:28
340
+ #: forms/wpdFormAttr/Field/SelectField.php:33
341
+ #: forms/wpdFormAttr/Field/TextAreaField.php:23
342
+ #: forms/wpdFormAttr/Field/TextField.php:29
343
+ #: forms/wpdFormAttr/Field/UrlField.php:29
344
+ msgid "Field is required"
345
+ msgstr "Feld ist erforderlich"
346
+
347
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:32
348
+ #: forms/wpdFormAttr/Field/CheckboxField.php:37
349
+ #: forms/wpdFormAttr/Field/ColorField.php:33
350
+ #: forms/wpdFormAttr/Field/DateField.php:33
351
+ #: forms/wpdFormAttr/Field/NumberField.php:43
352
+ #: forms/wpdFormAttr/Field/RadioField.php:37
353
+ #: forms/wpdFormAttr/Field/SelectField.php:37
354
+ #: forms/wpdFormAttr/Field/TextAreaField.php:27
355
+ #: forms/wpdFormAttr/Field/TextField.php:33
356
+ #: forms/wpdFormAttr/Field/UrlField.php:33
357
+ msgid "Display on reply form"
358
+ msgstr "Auf Antwortformular anzeigen"
359
+
360
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:36
361
+ msgid "Display for Guests"
362
+ msgstr "Anzeige für Gäste"
363
+
364
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:40
365
+ msgid "Display for Registered Users"
366
+ msgstr "Anzeige für registrierte Benutzer"
367
+
368
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:44
369
+ msgid "Don't show again if the agreement is accepted once"
370
+ msgstr "Nicht mehr anzeigen, wenn die Vereinbarung einmal akzeptiert wurde"
371
+
372
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:101
373
+ #: forms/wpdFormAttr/Field/CheckboxField.php:153
374
+ #: forms/wpdFormAttr/Field/ColorField.php:115
375
+ #: forms/wpdFormAttr/Field/DateField.php:115
376
+ #: forms/wpdFormAttr/Field/NumberField.php:125
377
+ #: forms/wpdFormAttr/Field/RadioField.php:130
378
+ #: forms/wpdFormAttr/Field/RatingField.php:126
379
+ #: forms/wpdFormAttr/Field/SelectField.php:125
380
+ #: forms/wpdFormAttr/Field/TextAreaField.php:98
381
+ #: forms/wpdFormAttr/Field/TextField.php:109
382
+ #: forms/wpdFormAttr/Field/UrlField.php:110
383
+ msgid "field is required!"
384
+ msgstr "Dieses Feld ist ein Pflichtfeld!"
385
+
386
+ #: forms/wpdFormAttr/Field/CheckboxField.php:14
387
+ #: forms/wpdFormAttr/Field/ColorField.php:14
388
+ #: forms/wpdFormAttr/Field/DateField.php:14
389
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:29
390
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:21
391
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:20
392
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:20
393
+ #: forms/wpdFormAttr/Field/NumberField.php:14
394
+ #: forms/wpdFormAttr/Field/RadioField.php:14
395
+ #: forms/wpdFormAttr/Field/SelectField.php:14
396
+ #: forms/wpdFormAttr/Field/TextAreaField.php:15
397
+ #: forms/wpdFormAttr/Field/TextField.php:14
398
+ #: forms/wpdFormAttr/Field/UrlField.php:14
399
+ msgid "Also used for field placeholder"
400
+ msgstr "Wird auch für den Feld-Platzhalter verwendet"
401
+
402
+ #: forms/wpdFormAttr/Field/CheckboxField.php:28
403
+ #: forms/wpdFormAttr/Field/RadioField.php:28
404
+ #: forms/wpdFormAttr/Field/SelectField.php:28
405
+ msgid "Values"
406
+ msgstr "Werte"
407
+
408
+ #: forms/wpdFormAttr/Field/CheckboxField.php:30
409
+ msgid "Please insert one value per line"
410
+ msgstr "Bitte geben Sie einen Wert pro Zeile ein"
411
+
412
+ #: forms/wpdFormAttr/Field/CheckboxField.php:41
413
+ #: forms/wpdFormAttr/Field/ColorField.php:37
414
+ #: forms/wpdFormAttr/Field/DateField.php:37
415
+ #: forms/wpdFormAttr/Field/NumberField.php:47
416
+ #: forms/wpdFormAttr/Field/RadioField.php:41
417
+ #: forms/wpdFormAttr/Field/RatingField.php:32
418
+ #: forms/wpdFormAttr/Field/SelectField.php:41
419
+ #: forms/wpdFormAttr/Field/TextAreaField.php:31
420
+ #: forms/wpdFormAttr/Field/TextField.php:37
421
+ #: forms/wpdFormAttr/Field/UrlField.php:37
422
+ msgid "Display on comment"
423
+ msgstr "Bei Kommentar anzeigen"
424
+
425
+ #: forms/wpdFormAttr/Field/CheckboxField.php:45
426
+ #: forms/wpdFormAttr/Field/ColorField.php:41
427
+ #: forms/wpdFormAttr/Field/DateField.php:41
428
+ #: forms/wpdFormAttr/Field/NumberField.php:51
429
+ #: forms/wpdFormAttr/Field/RadioField.php:45
430
+ #: forms/wpdFormAttr/Field/RatingField.php:36
431
+ #: forms/wpdFormAttr/Field/SelectField.php:45
432
+ #: forms/wpdFormAttr/Field/TextAreaField.php:35
433
+ #: forms/wpdFormAttr/Field/TextField.php:41
434
+ #: forms/wpdFormAttr/Field/UrlField.php:41
435
+ msgid "Advanced Options"
436
+ msgstr "Erweiterte Optionen"
437
+
438
+ #: forms/wpdFormAttr/Field/CheckboxField.php:48
439
+ #: forms/wpdFormAttr/Field/ColorField.php:44
440
+ #: forms/wpdFormAttr/Field/DateField.php:44
441
+ #: forms/wpdFormAttr/Field/NumberField.php:54
442
+ #: forms/wpdFormAttr/Field/RadioField.php:48
443
+ #: forms/wpdFormAttr/Field/RatingField.php:39
444
+ #: forms/wpdFormAttr/Field/SelectField.php:48
445
+ #: forms/wpdFormAttr/Field/TextAreaField.php:38
446
+ #: forms/wpdFormAttr/Field/TextField.php:44
447
+ #: forms/wpdFormAttr/Field/UrlField.php:44
448
+ msgid "Meta Key"
449
+ msgstr "Meta-Key"
450
+
451
+ #: forms/wpdFormAttr/Field/CheckboxField.php:52
452
+ #: forms/wpdFormAttr/Field/ColorField.php:48
453
+ #: forms/wpdFormAttr/Field/DateField.php:48
454
+ #: forms/wpdFormAttr/Field/NumberField.php:58
455
+ #: forms/wpdFormAttr/Field/RadioField.php:52
456
+ #: forms/wpdFormAttr/Field/RatingField.php:43
457
+ #: forms/wpdFormAttr/Field/SelectField.php:52
458
+ #: forms/wpdFormAttr/Field/TextAreaField.php:42
459
+ #: forms/wpdFormAttr/Field/TextField.php:48
460
+ #: forms/wpdFormAttr/Field/UrlField.php:48
461
+ msgid "Replace old meta key"
462
+ msgstr "Ersetzen Sie den alten Meta-Schlüssel"
463
+
464
+ #: forms/wpdFormAttr/Field/ColorField.php:23
465
+ #: forms/wpdFormAttr/Field/DateField.php:23
466
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:30
467
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:29
468
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:29
469
+ #: forms/wpdFormAttr/Field/NumberField.php:33
470
+ #: forms/wpdFormAttr/Field/RatingField.php:22
471
+ #: forms/wpdFormAttr/Field/TextField.php:23
472
+ #: forms/wpdFormAttr/Field/UrlField.php:23
473
+ msgid "Field icon"
474
+ msgstr "Feld Symbol"
475
+
476
+ #: forms/wpdFormAttr/Field/ColorField.php:26
477
+ #: forms/wpdFormAttr/Field/DateField.php:26
478
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:33
479
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:32
480
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:32
481
+ #: forms/wpdFormAttr/Field/NumberField.php:36
482
+ #: forms/wpdFormAttr/Field/RatingField.php:25
483
+ #: forms/wpdFormAttr/Field/TextField.php:26
484
+ #: forms/wpdFormAttr/Field/UrlField.php:26
485
+ msgid "Font-awesome icon library."
486
+ msgstr "Schriftart-Awesome Icon-Bibliothek."
487
+
488
+ #: forms/wpdFormAttr/Field/CookiesConsent.php:92
489
+ msgid "Save my data for the next time I comment"
490
+ msgstr "Meine Daten für das nächste Mal speichern"
491
+
492
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:37
493
+ msgid ""
494
+ "For an advanced antispam protection please check <a target=\"blank\" href="
495
+ "\"https://gvectors.com/product/wpdiscuz-recaptcha/\">wpDiscuz - Google "
496
+ "reCAPTCHA</a> addon."
497
+ msgstr ""
498
+ "Für einen erweiterten Spam-Schutz überprüfen Sie bitte das <a target=\"blank"
499
+ "\" href=\"https://gvectors.com/product/wpdiscuz-recaptcha/\">wpDiscuz - "
500
+ "Google reCAPTCHA</a> Addon."
501
+
502
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:40
503
+ msgid "Show for guests"
504
+ msgstr "Für Gäste anzeigen"
505
+
506
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:44
507
+ msgid "Show for logged in users"
508
+ msgstr "Anzeigen für angemeldete Benutzer"
509
+
510
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:117
511
+ #: forms/wpdFormAttr/Form.php:812
512
+ msgid "Code"
513
+ msgstr "Code"
514
+
515
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:135
516
+ msgid "Cannot create image file"
517
+ msgstr "Kann Bilddatei nicht erstellen"
518
+
519
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:136
520
+ msgid "Permission denied for file creation"
521
+ msgstr "Für die Datei-Erstellung ist eine Berechtigung erforderlich"
522
+
523
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:137
524
+ msgid "PHP GD2 library is disabled"
525
+ msgstr "PHP GD2 Bibliothek ist deaktiviert"
526
+
527
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:138
528
+ msgid "PNG image creation disabled"
529
+ msgstr "PNG-Bilderstellung deaktiviert"
530
+
531
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:145
532
+ msgid "Insert the CAPTCHA code"
533
+ msgstr "Geben Sie den CAPTCHA-Code ein"
534
+
535
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:20
536
+ msgid "Button Text"
537
+ msgstr "Button Text"
538
+
539
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:77
540
+ msgid " - (on)"
541
+ msgstr " - (EIN)"
542
+
543
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:78
544
+ msgid " - (off)"
545
+ msgstr " - (AUS)"
546
+
547
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:35
548
+ msgid "Enable"
549
+ msgstr "Aktivieren"
550
+
551
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:84
552
+ #: forms/wpdFormAttr/Form.php:803
553
+ msgid "Website"
554
+ msgstr "Webseite"
555
+
556
+ #: forms/wpdFormAttr/Field/Field.php:54
557
+ msgid " (Submit Button)"
558
+ msgstr " (Submit Button)"
559
+
560
+ #: forms/wpdFormAttr/Field/Field.php:56
561
+ msgid " (CAPTCHA)"
562
+ msgstr " (CAPTCHA)"
563
+
564
+ #: forms/wpdFormAttr/Field/Field.php:89
565
+ msgid "Add To Form"
566
+ msgstr "Zum Formular hinzufügen"
567
+
568
+ #: forms/wpdFormAttr/Field/NumberField.php:22
569
+ msgid "Min Value"
570
+ msgstr "Min. Wert"
571
+
572
+ #: forms/wpdFormAttr/Field/NumberField.php:27
573
+ msgid "Max Value"
574
+ msgstr "Max. Wert"
575
+
576
+ #: forms/wpdFormAttr/Field/NumberField.php:129
577
+ msgid "value can not be less than"
578
+ msgstr "Wert darf nicht weniger sein als"
579
+
580
+ #: forms/wpdFormAttr/Field/NumberField.php:132
581
+ msgid "value can not be more than"
582
+ msgstr "Wert darf nicht mehr sein als"
583
+
584
+ #: forms/wpdFormAttr/Field/RadioField.php:30
585
+ #: forms/wpdFormAttr/Field/SelectField.php:30
586
+ msgid "New value new line"
587
+ msgstr "Neuer Wert, neue Linie"
588
+
589
+ #: forms/wpdFormAttr/Form.php:630
590
+ msgid "Disable commenting for roles"
591
+ msgstr "Deaktivieren Sie das Kommentieren von Rollen"
592
+
593
+ #: forms/wpdFormAttr/Form.php:651
594
+ msgid "Allow guests to comment"
595
+ msgstr "Gästen erlauben zu kommentieren"
596
+
597
+ #: forms/wpdFormAttr/Form.php:655 forms/wpdFormAttr/Form.php:666
598
+ msgid "Yes"
599
+ msgstr "Ja"
600
+
601
+ #: forms/wpdFormAttr/Form.php:657 forms/wpdFormAttr/Form.php:668
602
+ msgid "No"
603
+ msgstr "Nein"
604
+
605
+ #: forms/wpdFormAttr/Form.php:662
606
+ msgid "Enable subscription bar"
607
+ msgstr "Abonnement Leiste aktivieren"
608
+
609
+ #: forms/wpdFormAttr/Form.php:673
610
+ msgid "Comment form header text"
611
+ msgstr "Kommentar Formular Kopfzeilen Text"
612
+
613
+ #: forms/wpdFormAttr/Form.php:682
614
+ msgid "Display comment form for post types"
615
+ msgstr "Zeige Kommentarformular für Beitrags Typen"
616
+
617
+ #: forms/wpdFormAttr/Form.php:689
618
+ msgid ""
619
+ "The red marked post types are already attached to other comment form. If you "
620
+ "set this form too, the old forms will not be used for them."
621
+ msgstr ""
622
+ "Die rot markierten Post-Typen sind bereits an ein anderes Kommentarformular "
623
+ "angehängt. Wenn Sie dieses Formular auch markieren, werden die alten "
624
+ "Formulare für diese Post-Typen nicht verwendet werden."
625
+
626
+ #: forms/wpdFormAttr/Form.php:711
627
+ msgid "Display comment form for post IDs"
628
+ msgstr "Zeige Kommentarformular für Beitrags IDs"
629
+
630
+ #: forms/wpdFormAttr/Form.php:712
631
+ msgid ""
632
+ "You can use this form for certain posts/pages specified by comma separated "
633
+ "IDs."
634
+ msgstr ""
635
+ "Sie können dieses Formular für bestimmte Beiträge/Seiten verwenden, die "
636
+ "durch Komma getrennte IDs angegeben sind."
637
+
638
+ #: forms/wpdFormAttr/Form.php:723
639
+ msgid "Comment Text Field"
640
+ msgstr "Kommentar Textfeld"
641
+
642
+ #: forms/wpdFormAttr/Form.php:738
643
+ msgid "ADD ROW"
644
+ msgstr "REIHE HINZUFÜGEN"
645
+
646
+ #: forms/wpdFormAttr/Form.php:770
647
+ msgid ""
648
+ "Only logged in customers who have purchased this product may leave a review."
649
+ msgstr ""
650
+ "Nur angemeldete Kunden, die dieses Produkt gekauft haben, dürfen eine "
651
+ "Bewertung abgeben."
652
+
653
+ #: forms/wpdFormAttr/Login/SocialLogin.php:32
654
+ msgid "Authentication failed."
655
+ msgstr "Authentifizierung ist fehlgeschlagen."
656
+
657
+ #: forms/wpdFormAttr/Login/SocialLogin.php:83
658
+ msgid "Facebook access token or user ID invalid."
659
+ msgstr "Facebook Access Token oder Benutzer-ID ungültig."
660
+
661
+ #: forms/wpdFormAttr/Login/SocialLogin.php:87
662
+ msgid "Facebook App Secret is required."
663
+ msgstr "Facebook App Secret ist erforderlich."
664
+
665
+ #: forms/wpdFormAttr/Login/SocialLogin.php:117
666
+ msgid "Google access token invalid."
667
+ msgstr "Google Access Token ist ungültig."
668
+
669
+ #: forms/wpdFormAttr/Login/SocialLogin.php:128
670
+ msgid "Google authentication failed."
671
+ msgstr "Google Authentifizierung ist fehlgeschlagen."
672
+
673
+ #: forms/wpdFormAttr/Login/SocialLogin.php:156
674
+ msgid "Twitter Consumer Key and Consumer Secret required."
675
+ msgstr "Twitter Consumer Key und Consumer Secret sind erforderlich."
676
+
677
+ #: forms/wpdFormAttr/Login/SocialLogin.php:168
678
+ msgid "Twitter authentication failed (OAuth secret does not exist)."
679
+ msgstr ""
680
+ "Twitter Authentifizierung ist fehlgeschlagen (OAuth secret existiert nicht)."
681
+
682
+ #: forms/wpdFormAttr/Login/SocialLogin.php:180
683
+ msgid "Twitter connection failed."
684
+ msgstr "Twitter Verbindung fehlgeschlagen."
685
+
686
+ #: forms/wpdFormAttr/Login/SocialLogin.php:190
687
+ msgid "VK Client ID and Client Secret required."
688
+ msgstr "VK-Client-ID und Client-Secret erforderlich."
689
+
690
+ #: forms/wpdFormAttr/Login/SocialLogin.php:218
691
+ msgid "VK authentication failed (OAuth <code>state</code> does not exist)."
692
+ msgstr ""
693
+ "Die VK-Authentifizierung ist fehlgeschlagen (OAuth <code>state</code> ist "
694
+ "nicht vorhanden)."
695
+
696
+ #: forms/wpdFormAttr/Login/SocialLogin.php:221
697
+ msgid "VK authentication failed (OAuth <code>code</code> does not exist)."
698
+ msgstr ""
699
+ "Die VK-Authentifizierung ist fehlgeschlagen (OAuth <code>code</code> ist "
700
+ "nicht vorhanden)."
701
+
702
+ #: forms/wpdFormAttr/Login/SocialLogin.php:239
703
+ msgid "VK authentication failed (<code>user_id</code> does not exist)."
704
+ msgstr ""
705
+ "Die VK-Authentifizierung ist fehlgeschlagen (<code>user_id</code> existiert "
706
+ "nicht)."
707
+
708
+ #: forms/wpdFormAttr/Login/SocialLogin.php:265
709
+ msgid "OK Application ID, Application Key and Application Secret required."
710
+ msgstr ""
711
+ "OK Application ID, Application Key und Application Secret erforderlich."
712
+
713
+ #: forms/wpdFormAttr/Login/SocialLogin.php:290
714
+ msgid "OK authentication failed (OAuth <code>state</code> does not exist)."
715
+ msgstr ""
716
+ "Die OK-Authentifizierung ist fehlgeschlagen (OAuth <code>state</code> ist "
717
+ "nicht vorhanden)."
718
+
719
+ #: forms/wpdFormAttr/Login/SocialLogin.php:293
720
+ msgid "OK authentication failed (<code>code</code> does not exist)."
721
+ msgstr ""
722
+ "Die OK-Authentifizierung ist fehlgeschlagen (<code>code</code> ist nicht "
723
+ "vorhanden)."
724
+
725
+ #: forms/wpdFormAttr/Login/SocialLogin.php:312
726
+ msgid "OK authentication failed (<code>access_token</code> does not exist)."
727
+ msgstr ""
728
+ "Die OK-Authentifizierung ist fehlgeschlagen (<code>access_token</code> ist "
729
+ "nicht vorhanden)."
730
+
731
+ #: forms/wpdFormAttr/html/admin-form-fields-list.php:7
732
+ msgid "Comment Form Fields"
733
+ msgstr "Kommentarformular Felder"
734
+
735
+ #: options/addons/al/title.php:7 options/class.WpdiscuzOptions.php:393
736
+ msgid "Advanced Likers"
737
+ msgstr "Erweiterte Gefällt-mir-Klicker"
738
+
739
+ #: options/addons/cai/title.php:7
740
+ msgid "Comment Author"
741
+ msgstr "Kommentar-Autor"
742
+
743
+ #: options/addons/fem/title.php:7
744
+ msgid "Frontend Moderation"
745
+ msgstr "Frontend-Moderation"
746
+
747
+ #: options/addons/more/title.php:6
748
+ msgid "More Addons..."
749
+ msgstr "Weitere Addons ..."
750
+
751
+ #: options/addons/mu/title.php:7 options/class.WpdiscuzOptions.php:417
752
+ msgid "Media Uploader"
753
+ msgstr "Media Uploader"
754
+
755
+ #: options/addons/raf/title.php:7 options/class.WpdiscuzOptions.php:397
756
+ msgid "Report and Flagging"
757
+ msgstr "Bericht und Kennzeichnung"
758
+
759
+ #: options/addons/ucm/title.php:7
760
+ msgid "Mentioning"
761
+ msgstr "Erwähnung"
762
+
763
+ #: options/class.WpdiscuzOptions.php:22 options/class.WpdiscuzOptions.php:135
764
+ #: options/class.WpdiscuzOptions.php:344
765
+ msgid "Hacker?"
766
+ msgstr "Hacker?"
767
+
768
+ #: options/class.WpdiscuzOptions.php:126
769
+ msgid "Settings updated"
770
+ msgstr "Einstellungen aktualisiert"
771
+
772
+ #: options/class.WpdiscuzOptions.php:291
773
+ msgid "Phrases updated"
774
+ msgstr "Phrasen aktualisiert"
775
+
776
+ #: options/class.WpdiscuzOptions.php:318
777
+ msgid "Options were backed up!"
778
+ msgstr "Optionen wurden gesichert!"
779
+
780
+ #: options/class.WpdiscuzOptions.php:320
781
+ msgid "Cannot back up the options!"
782
+ msgstr "Kann die Optionen nicht sichern!"
783
+
784
+ #: options/class.WpdiscuzOptions.php:331
785
+ msgid "Options Imported Successfully!"
786
+ msgstr "Optionen erfolgreich importiert!"
787
+
788
+ #: options/class.WpdiscuzOptions.php:333
789
+ msgid "Error occured! File content is empty or data is not valid!"
790
+ msgstr "Fehler aufgetreten! Dateiinhalt ist leer oder Daten sind nicht gültig!"
791
+
792
+ #: options/class.WpdiscuzOptions.php:336
793
+ msgid "Error occured! Can not get file content!"
794
+ msgstr "Fehler aufgetreten! Dateiinhalte können nicht abgerufen werden!"
795
+
796
+ #: options/class.WpdiscuzOptions.php:339
797
+ msgid "Error occured! Please choose file!"
798
+ msgstr "Fehler aufgetreten! Bitte Datei auswählen!"
799
+
800
+ #: options/class.WpdiscuzOptions.php:355
801
+ msgid ""
802
+ "Brings an ocean of emotions to your comments. It comes with an awesome smile "
803
+ "package."
804
+ msgstr ""
805
+ "Bringt ein Meer an Emotionen für Ihre Kommentare. Es kommt mit einem tollen "
806
+ "lächelnden Paket."
807
+
808
+ #: options/class.WpdiscuzOptions.php:356
809
+ msgid ""
810
+ "Extended information about comment author with Profile, Activity, Votes and "
811
+ "Subscriptions Tabs on pop-up window."
812
+ msgstr ""
813
+ "Erweiterte Informationen zum Kommentarautor mit den Registerkarten Profil, "
814
+ "Aktivität, Abstimmungen und Abonnements im Popup-Fenster."
815
+
816
+ #: options/class.WpdiscuzOptions.php:357
817
+ msgid ""
818
+ "Real-time online user checking, pop-up notification of new online users and "
819
+ "online/offline badges."
820
+ msgstr ""
821
+ "Echtzeit-Online-Benutzerprüfung, Popup-Benachrichtigung für neue Online-"
822
+ "Benutzer und Online- / Offline-Badges."
823
+
824
+ #: options/class.WpdiscuzOptions.php:358
825
+ msgid ""
826
+ "Allows to create private comment threads. Rich management options in "
827
+ "dashboard by user roles."
828
+ msgstr ""
829
+ "Ermöglicht das Erstellen privater Kommentar-Threads. Umfangreiche "
830
+ "Verwaltungsoptionen im Dashboard nach Benutzerrollen."
831
+
832
+ #: options/class.WpdiscuzOptions.php:359
833
+ msgid ""
834
+ "Total control over comment subscriptions. Full list, monitor, manage, "
835
+ "filter, unsubscribe, confirm..."
836
+ msgstr ""
837
+ "Gesamtsteuerung über Kommentarabonnements. Vollständige Liste, überwachen, "
838
+ "verwalten, filtern, abbestellen, bestätigen ..."
839
+
840
+ #: options/class.WpdiscuzOptions.php:360
841
+ msgid ""
842
+ "A full-fledged tool-kit for advertising in comment section of your website. "
843
+ "Separate banner and ad managment."
844
+ msgstr ""
845
+ "Ein vollwertiges Tool-Kit für die Werbung im Kommentarbereich Ihrer Website. "
846
+ "Separates Banner und Anzeigenmanagement."
847
+
848
+ #: options/class.WpdiscuzOptions.php:361
849
+ msgid ""
850
+ "Allows to mention comments and users in comment text using #comment-id and "
851
+ "@username tags."
852
+ msgstr ""
853
+ "Ermöglicht es, Kommentare und Benutzer in Kommentartext mit #comment-id und "
854
+ "@username-Tags zu erwähnen."
855
+
856
+ #: options/class.WpdiscuzOptions.php:362
857
+ msgid ""
858
+ "See comment likers and voters of each comment. Adds user reputation and "
859
+ "badges based on received likes."
860
+ msgstr ""
861
+ "Siehe Kommentar Likers und Wähler von jedem Kommentar. Fügt basierend auf "
862
+ "empfangenen Likes Nutzer-Reputation und -Ausweise hinzu."
863
+
864
+ #: options/class.WpdiscuzOptions.php:363
865
+ msgid ""
866
+ "Comment reporting tools. Auto-moderates comments based on number of flags "
867
+ "and dislikes."
868
+ msgstr ""
869
+ "Kommentarberichtswerkzeuge. Automatische Moderation von Kommentaren, "
870
+ "basierend auf der Anzahl von Markierungen (Flags) und Abneigungen (Dislikes)."
871
+
872
+ #: options/class.WpdiscuzOptions.php:364
873
+ msgid ""
874
+ "Adds a smart and intuitive AJAX \"Translate\" button with 60 language "
875
+ "options. Uses free translation API."
876
+ msgstr ""
877
+ "Fügt eine intelligente und intuitive AJAX-Schaltfläche \"Übersetzen\" mit 60 "
878
+ "Sprachoptionen hinzu. Verwendet kostenlose Übersetzungs-API."
879
+
880
+ #: options/class.WpdiscuzOptions.php:365
881
+ msgid ""
882
+ "AJAX powered front-end comment search. It starts searching while you type "
883
+ "search words. "
884
+ msgstr ""
885
+ "AJAX-basierte Front-End-Kommentarsuche. Sie beginnt zu suchen, während Sie "
886
+ "die Suchbegriffe eingeben. "
887
+
888
+ #: options/class.WpdiscuzOptions.php:366
889
+ msgid ""
890
+ "Most voted comments, Active comment threads, Most commented posts, Active "
891
+ "comment authors"
892
+ msgstr ""
893
+ "Die am häufigsten bewerteten Kommentare, Aktive Kommentarthemen, Meist "
894
+ "kommentierte Beiträge, Aktive Kommentarautoren"
895
+
896
+ #: options/class.WpdiscuzOptions.php:367
897
+ msgid ""
898
+ "All in one powerful yet simple admin toolkit to moderate comments on front-"
899
+ "end."
900
+ msgstr ""
901
+ "Alles in einem leistungsstarken und doch einfachen Admin-Toolkit zur "
902
+ "Moderation von Kommentaren im Frontend."
903
+
904
+ #: options/class.WpdiscuzOptions.php:368
905
+ msgid ""
906
+ "Extended comment attachment system. Allows to upload images, videos, audios "
907
+ "and other file types."
908
+ msgstr ""
909
+ "Erweitertes Kommentar-Anhangsystem. Ermöglicht das Hochladen von Bildern, "
910
+ "Videos, Audios und anderen Dateitypen."
911
+
912
+ #: options/class.WpdiscuzOptions.php:369
913
+ msgid ""
914
+ "Adds No CAPTCHA on all comment forms. Stops spam and bot comments with "
915
+ "Google reCAPTCHA"
916
+ msgstr ""
917
+ "Fügt allen Kommentarfeldern kein CAPTCHA hinzu. Stoppt Spam- und Bot-"
918
+ "Kommentare mit Google reCAPTCHA"
919
+
920
+ #: options/class.WpdiscuzOptions.php:370
921
+ msgid ""
922
+ "Integrates myCRED Badges and Ranks. Converts wpDiscuz comment votes/likes to "
923
+ "myCRED points. "
924
+ msgstr ""
925
+ "Integriert myCRED Badges und Ränge. Konvertiert wpDiscuz Kommentar-Votes / "
926
+ "Likes zu myCRED-Punkten. "
927
+
928
+ #: options/class.WpdiscuzOptions.php:371
929
+ msgid ""
930
+ "Allows censoring comment words. Filters comments and replaces those phrases "
931
+ "with custom words."
932
+ msgstr ""
933
+ "Ermöglicht das Zensieren von Kommentarwörtern. Filtert Kommentare und "
934
+ "ersetzt diese Sätze durch benutzerdefinierte Wörter."
935
+
936
+ #: options/class.WpdiscuzOptions.php:377
937
+ msgid "Custom Comment Forms"
938
+ msgstr "Benutzerdefinierte Kommentar Formulare"
939
+
940
+ #: options/class.WpdiscuzOptions.php:378
941
+ msgid ""
942
+ "You can create custom comment forms with wpDiscuz. wpDiscuz 4 comes with "
943
+ "custom comment forms and fields. You can create custom comment forms for "
944
+ "each post type, each form can beceated with different form fields, for "
945
+ "eaxample: text, dropdown, rating, checkboxes, etc..."
946
+ msgstr ""
947
+ "Sie können benutzerdefinierte Kommentarformulare mit wpDiscuz erstellen. "
948
+ "wpDiscuz 4 kommt mit benutzerdefinierten Kommentarformularen und Feldern. "
949
+ "Sie können benutzerdefinierte Kommentarformulare für jeden Posttyp "
950
+ "erstellen, jedes Formular kann mit verschiedenen Formularfeldern gefüllt "
951
+ "werden, zum Beispiel: Text, Dropdown, Bewertung, Checkboxen, etc ..."
952
+
953
+ #: options/class.WpdiscuzOptions.php:381
954
+ msgid "Emoticons"
955
+ msgstr "Emoticons"
956
+
957
+ #: options/class.WpdiscuzOptions.php:382
958
+ msgid ""
959
+ "You can add more emotions to your comments using wpDiscuz Emoticons addon."
960
+ msgstr ""
961
+ "Sie können mit dem wpDiscuz-Emoticons-Addon den Kommentaren mehr Emotionen "
962
+ "hinzufügen."
963
+
964
+ #: options/class.WpdiscuzOptions.php:385
965
+ msgid "Ads Manager"
966
+ msgstr "Werbe-Manager"
967
+
968
+ #: options/class.WpdiscuzOptions.php:386
969
+ msgid ""
970
+ "Increase your income using ad banners. Comment area is the most active "
971
+ "sections for advertising. wpDiscuz Ads Manager addon is designed to help you "
972
+ "add banners and control ads in this section."
973
+ msgstr ""
974
+ "Steigern Sie Ihr Einkommen mit Werbebannern. Der Kommentarbereich ist der "
975
+ "aktivste Bereich für Werbung. wpDiscuz Ads Manager Addon wurde entwickelt, "
976
+ "um Ihnen zu helfen, Banner hinzuzufügen und Anzeigen in diesem Bereich zu "
977
+ "steuern."
978
+
979
+ #: options/class.WpdiscuzOptions.php:389
980
+ msgid "User and Comment Mentioning"
981
+ msgstr "Benutzer- und Kommentarbenennung"
982
+
983
+ #: options/class.WpdiscuzOptions.php:390
984
+ msgid ""
985
+ "Using wpDiscuz User &amp; Comment Mentioning addon you can allow commenters "
986
+ "mention comments and users in comment text using #comment-id and @username "
987
+ "tags."
988
+ msgstr ""
989
+ "Durch die Verwendung des wpDiscuz Benutzer &amp; Erwähnungskommentar-Addon "
990
+ "ist es den Kommentatoren erlaubt, Kommentare und Benutzer im Kommentartext "
991
+ "mit den Tags #comment-id und @username zu erwähnen."
992
+
993
+ #: options/class.WpdiscuzOptions.php:394
994
+ msgid ""
995
+ "wpDiscuz Advanced Likers addon displays likers and voters of each comment. "
996
+ "Adds user reputation and badges based on received likes."
997
+ msgstr ""
998
+ "wpDiscuz Advanced Likers Addon zeigt Likers und Wähler von jedem Kommentar "
999
+ "an. Fügt, basierend auf empfangenen Likes, Nutzer-Reputation und -Badges "
1000
+ "hinzu."
1001
+
1002
+ #: options/class.WpdiscuzOptions.php:398
1003
+ msgid ""
1004
+ "Let your commenters help you to determine and remove spam comments. wpDiscuz "
1005
+ "Report and Flagging addon comes with comment reporting tools. Automaticaly "
1006
+ "auto-moderates comments based on number of flags and dislikes."
1007
+ msgstr ""
1008
+ "Lassen Sie Ihre Kommentatoren bei der Ermittlung und Entfernung von Spam-"
1009
+ "Kommentaren helfen. wpDiscuz Report and Flagging Addon enthält Tools zur "
1010
+ "Kommentierung von Kommentaren. Automatische Moderation von Kommentaren "
1011
+ "basierend auf der Anzahl von Flags und Dislikes."
1012
+
1013
+ #: options/class.WpdiscuzOptions.php:401
1014
+ msgid "Comment Translate"
1015
+ msgstr "Kommentar übersetzen"
1016
+
1017
+ #: options/class.WpdiscuzOptions.php:402
1018
+ msgid ""
1019
+ "In most cases the big part of your visitors are not a native speakers of "
1020
+ "your language. Make your comments comprehensible for all visitors using "
1021
+ "wpDiscuz Comment Translation addon. It adds smart and intuitive AJAX "
1022
+ "\"Translate\" button with 60 language translation options. Uses free "
1023
+ "translation API."
1024
+ msgstr ""
1025
+ "In den meisten Fällen ist der Großteil Ihrer Besucher kein Muttersprachler "
1026
+ "Ihrer Sprache. Machen Sie Ihre Kommentare verständlich für alle Besucher, "
1027
+ "die wpDiscuz Comment Translation addon verwenden. Es fügt intelligente und "
1028
+ "intuitive AJAX \"Übersetzen\" -Taste mit 60 Sprachübersetzungsoptionen "
1029
+ "hinzu. Verwendet kostenlose Übersetzungs-API."
1030
+
1031
+ #: options/class.WpdiscuzOptions.php:405
1032
+ msgid "Comment Search"
1033
+ msgstr "Kommentarsuche"
1034
+
1035
+ #: options/class.WpdiscuzOptions.php:406
1036
+ msgid ""
1037
+ "You can let website visitor search in comments. It's always more attractive "
1038
+ "to find a comment about something that interest you. Using wpDiscuz Comment "
1039
+ "Search addon you'll get a nice, AJAX powered front-end comment search form "
1040
+ "above comment list."
1041
+ msgstr ""
1042
+ "Sie können den Website-Besucher in Kommentaren suchen lassen. Es ist immer "
1043
+ "attraktiver, einen Kommentar zu etwas zu finden, der Sie interessiert. Mit "
1044
+ "wpDiscuz Comment Search Addon erhalten Sie ein nettes, AJAX-gestütztes "
1045
+ "Frontend-Kommentar-Suchformular über der Kommentarliste."
1046
+
1047
+ #: options/class.WpdiscuzOptions.php:409
1048
+ msgid "wpDiscuz Widgets"
1049
+ msgstr "wpDiscuz Widgets"
1050
+
1051
+ #: options/class.WpdiscuzOptions.php:410
1052
+ msgid ""
1053
+ "More Comment Widgets! Most voted comments, Active comment threads, Most "
1054
+ "commented posts, Active comment authors widgets are available in wpDiscuz "
1055
+ "Widgets Addon"
1056
+ msgstr ""
1057
+ "Mehr Kommentare Widgets! Die meisten ausgewählten Kommentare, wie \"Aktive "
1058
+ "Kommentarthemen\", \"Meist kommentierte Beiträge\", \"Aktive Kommentarautoren"
1059
+ "\" Widgets sind in wpDiscuz Widgets Addon verfügbar"
1060
+
1061
+ #: options/class.WpdiscuzOptions.php:413
1062
+ msgid "Front-end Moderation"
1063
+ msgstr "Frontend-Moderation"
1064
+
1065
+ #: options/class.WpdiscuzOptions.php:414
1066
+ msgid ""
1067
+ "You can moderate comments on front-end using all in one powerful yet simple "
1068
+ "wpDiscuz Frontend Moderation addon."
1069
+ msgstr ""
1070
+ "Sie können Kommentare am Front-End moderieren, indem Sie das alles-in-einem "
1071
+ "leistungsstarke und einfache wpDiscuz-Frontend-Moderation-Addon verwenden."
1072
+
1073
+ #: options/class.WpdiscuzOptions.php:418
1074
+ msgid ""
1075
+ "You can let website visitors attach images and files to comments and embed "
1076
+ "video/audio content using wpDiscuz Media Uploader addon."
1077
+ msgstr ""
1078
+ "Sie können Website-Besuchern das Anhängen von Bildern und Dateien an "
1079
+ "Kommentare und das Einbetten von Video- / Audioinhalten mithilfe des Add-Ins "
1080
+ "wpDiscuz Media Uploader ermöglichen."
1081
+
1082
+ #: options/class.WpdiscuzOptions.php:421
1083
+ msgid "Google ReCaptcha"
1084
+ msgstr "Google ReCaptcha"
1085
+
1086
+ #: options/class.WpdiscuzOptions.php:422
1087
+ msgid ""
1088
+ "Advanced spam protection with wpDiscuz Google reCAPTCHA addon. This addon "
1089
+ "adds No-CAPTCHA reCAPTCHA on all comment forms. Stops spam and bot comments."
1090
+ msgstr ""
1091
+ "Erweiterter Spamschutz mit wpDiscuz Google reCAPTCHA Addon. Dieses Addon "
1092
+ "fügt No-CAPTCHA reCAPTCHA für alle Kommentarformen hinzu. Stoppt Spam- und "
1093
+ "Bot-Kommentare."
1094
+
1095
+ #: options/class.WpdiscuzOptions.php:438
1096
+ msgid "New Addons are available for wpDiscuz Comments Plugin"
1097
+ msgstr "Neue Addons verfügbar für das wpDiscuz-Kommentare-Plugin"
1098
+
1099
+ #: options/class.WpdiscuzOptions.php:445 options/class.WpdiscuzOptions.php:451
1100
+ msgid "Go to wpDiscuz Addons subMenu"
1101
+ msgstr "Gehen Sie zum WpDiscuz Addons Untermenü"
1102
+
1103
+ #: options/class.WpdiscuzOptions.php:483
1104
+ msgid "Do you know?"
1105
+ msgstr "Wissen Sie es?"
1106
+
1107
+ #: options/class.WpdiscuzOptions.php:496
1108
+ msgid "More info"
1109
+ msgstr "Mehr Info"
1110
+
1111
+ #: options/class.WpdiscuzOptionsSerialized.php:754
1112
+ msgid "Be the First to Comment!"
1113
+ msgstr "Hinterlassen Sie den ersten Kommentar!"
1114
+
1115
+ #: options/class.WpdiscuzOptionsSerialized.php:755
1116
+ msgid "Start the discussion"
1117
+ msgstr "Starte die Diskussion"
1118
+
1119
+ #: options/class.WpdiscuzOptionsSerialized.php:756
1120
+ msgid "Join the discussion"
1121
+ msgstr "An Diskussion beteiligen"
1122
+
1123
+ #: options/class.WpdiscuzOptionsSerialized.php:757
1124
+ #: options/phrases-layouts/phrases-form.php:19
1125
+ msgid "Comment threads"
1126
+ msgstr "Kommentar Themen"
1127
+
1128
+ #: options/class.WpdiscuzOptionsSerialized.php:758
1129
+ #: options/phrases-layouts/phrases-form.php:23
1130
+ msgid "Thread replies"
1131
+ msgstr "Themen Antworten"
1132
+
1133
+ #: options/class.WpdiscuzOptionsSerialized.php:759
1134
+ #: options/phrases-layouts/phrases-form.php:27
1135
+ msgid "Followers"
1136
+ msgstr "Follower"
1137
+
1138
+ #: options/class.WpdiscuzOptionsSerialized.php:760
1139
+ #: options/phrases-layouts/phrases-form.php:31
1140
+ msgid "Most reacted comment"
1141
+ msgstr "Kommentar, auf das am meisten reagiert wurde"
1142
+
1143
+ #: options/class.WpdiscuzOptionsSerialized.php:761
1144
+ #: options/phrases-layouts/phrases-form.php:35
1145
+ msgid "Hottest comment thread"
1146
+ msgstr "Beliebtestes Kommentar Thema"
1147
+
1148
+ #: options/class.WpdiscuzOptionsSerialized.php:762
1149
+ #: options/phrases-layouts/phrases-form.php:39
1150
+ msgid "Comment authors"
1151
+ msgstr "Kommentatoren"
1152
+
1153
+ #: options/class.WpdiscuzOptionsSerialized.php:763
1154
+ #: options/phrases-layouts/phrases-form.php:43
1155
+ msgid "Recent comment authors"
1156
+ msgstr "Letzte Kommentartoren"
1157
+
1158
+ #: options/class.WpdiscuzOptionsSerialized.php:765
1159
+ #: options/phrases-layouts/phrases-form.php:51
1160
+ msgid "Subscribe"
1161
+ msgstr "Abonnieren"
1162
+
1163
+ #: options/class.WpdiscuzOptionsSerialized.php:766
1164
+ #: options/phrases-layouts/phrases-form.php:55
1165
+ msgid "Notify of"
1166
+ msgstr "Benachrichtige mich bei"
1167
+
1168
+ #: options/class.WpdiscuzOptionsSerialized.php:767
1169
+ msgid "new follow-up comments"
1170
+ msgstr "allen neuen Kommentare"
1171
+
1172
+ #: options/class.WpdiscuzOptionsSerialized.php:768
1173
+ msgid "new replies to my comments"
1174
+ msgstr "nur Antworten zu meinen Kommentar/en"
1175
+
1176
+ #: options/class.WpdiscuzOptionsSerialized.php:769
1177
+ msgid "Notify of new replies to this comment - (on)"
1178
+ msgstr "Benachrichtigung über neue Antworten auf diesen Kommentar - (EIN)"
1179
+
1180
+ #: options/class.WpdiscuzOptionsSerialized.php:770
1181
+ msgid "Notify of new replies to this comment - (off)"
1182
+ msgstr "Benachrichtigung über neue Antworten auf diesen Kommentar - (AUS)"
1183
+
1184
+ #: options/class.WpdiscuzOptionsSerialized.php:771
1185
+ #: options/phrases-layouts/phrases-form.php:75
1186
+ msgid "Sort by"
1187
+ msgstr "Sortieren nach"
1188
+
1189
+ #: options/class.WpdiscuzOptionsSerialized.php:772
1190
+ #: options/phrases-layouts/phrases-form.php:79
1191
+ msgid "newest"
1192
+ msgstr "neueste"
1193
+
1194
+ #: options/class.WpdiscuzOptionsSerialized.php:773
1195
+ #: options/phrases-layouts/phrases-form.php:83
1196
+ msgid "oldest"
1197
+ msgstr "älteste"
1198
+
1199
+ #: options/class.WpdiscuzOptionsSerialized.php:774
1200
+ #: options/phrases-layouts/phrases-form.php:87
1201
+ msgid "most voted"
1202
+ msgstr "meiste Bewertungen"
1203
+
1204
+ #: options/class.WpdiscuzOptionsSerialized.php:775
1205
+ msgid "Load More Comments"
1206
+ msgstr "Weitere Kommentare anzeigen"
1207
+
1208
+ #: options/class.WpdiscuzOptionsSerialized.php:776
1209
+ #: options/phrases-layouts/phrases-general.php:19
1210
+ msgid "Load Rest of Comments"
1211
+ msgstr "Lade alle weiteren Kommentare"
1212
+
1213
+ #: options/class.WpdiscuzOptionsSerialized.php:777
1214
+ #: options/phrases-layouts/phrases-comment.php:11
1215
+ msgid "Reply"
1216
+ msgstr "Antworten"
1217
+
1218
+ #: options/class.WpdiscuzOptionsSerialized.php:778
1219
+ #: options/phrases-layouts/phrases-comment.php:15
1220
+ msgid "Share"
1221
+ msgstr "Teilen"
1222
+
1223
+ #: options/class.WpdiscuzOptionsSerialized.php:780
1224
+ #: options/phrases-layouts/phrases-comment.php:23
1225
+ msgid "Share On Facebook"
1226
+ msgstr "Auf Facebook teilen"
1227
+
1228
+ #: options/class.WpdiscuzOptionsSerialized.php:781
1229
+ #: options/phrases-layouts/phrases-comment.php:27
1230
+ msgid "Share On Twitter"
1231
+ msgstr "Auf Twitter teilen"
1232
+
1233
+ #: options/class.WpdiscuzOptionsSerialized.php:782
1234
+ #: options/phrases-layouts/phrases-comment.php:31
1235
+ msgid "Share On Google"
1236
+ msgstr "Auf Google teilen"
1237
+
1238
+ #: options/class.WpdiscuzOptionsSerialized.php:783
1239
+ #: options/phrases-layouts/phrases-comment.php:35
1240
+ msgid "Share On VKontakte"
1241
+ msgstr "Auf VKontakte teilen"
1242
+
1243
+ #: options/class.WpdiscuzOptionsSerialized.php:784
1244
+ #: options/phrases-layouts/phrases-comment.php:39
1245
+ msgid "Share On Odnoklassniki"
1246
+ msgstr "Auf Odnoklassniki teilen"
1247
+
1248
+ #: options/class.WpdiscuzOptionsSerialized.php:785
1249
+ #: options/phrases-layouts/phrases-comment.php:43
1250
+ msgid "Hide Replies"
1251
+ msgstr "Antworten verbergen"
1252
+
1253
+ #: options/class.WpdiscuzOptionsSerialized.php:786
1254
+ #: options/phrases-layouts/phrases-comment.php:47
1255
+ msgid "View Replies"
1256
+ msgstr "Antworten anzeigen"
1257
+
1258
+ #: options/class.WpdiscuzOptionsSerialized.php:787
1259
+ msgid "New Comment"
1260
+ msgstr "Neuer Kommentar"
1261
+
1262
+ #: options/class.WpdiscuzOptionsSerialized.php:788
1263
+ #: options/class.WpdiscuzOptionsSerialized.php:790
1264
+ #: options/class.WpdiscuzOptionsSerialized.php:792
1265
+ #: options/class.WpdiscuzOptionsSerialized.php:796
1266
+ #: options/phrases-layouts/phrases-email.php:120
1267
+ msgid "Unsubscribe"
1268
+ msgstr "Abmelden"
1269
+
1270
+ #: options/class.WpdiscuzOptionsSerialized.php:788
1271
+ msgid ""
1272
+ "Hi [SUBSCRIBER_NAME],<br/><br/>new comment on the discussion section you've "
1273
+ "been interested in<br/><br/><a href=\"[COMMENT_URL]\">[COMMENT_URL]</a><br/"
1274
+ "><br/>[COMMENT_CONTENT]<br/><br/><a href=\"[UNSUBSCRIBE_URL]\">"
1275
+ msgstr ""
1276
+ "Hallo [SUBSCRIBER_NAME],<br/><br/>es gibt einen neuen Kommentar zum "
1277
+ "Diskussionsteil, für den Sie sich interessiert haben<br/><br/><a href="
1278
+ "\"[COMMENT_URL]\">[COMMENT_URL]</a><br/><br/>[COMMENT_CONTENT]<br/><br/><a "
1279
+ "href=\"[UNSUBSCRIBE_URL]\">"
1280
+
1281
+ #: options/class.WpdiscuzOptionsSerialized.php:789
1282
+ #: options/class.WpdiscuzOptionsSerialized.php:791
1283
+ msgid "New Reply"
1284
+ msgstr "Neue Antwort"
1285
+
1286
+ #: options/class.WpdiscuzOptionsSerialized.php:790
1287
+ msgid ""
1288
+ "Hi [SUBSCRIBER_NAME],<br/><br/>new reply on the discussion section you've "
1289
+ "been interested in<br/><br/><a href=\"[COMMENT_URL]\">[COMMENT_URL]</a><br/"
1290
+ "><br/>[COMMENT_CONTENT]<br/><br/><a href=\"[UNSUBSCRIBE_URL]\">"
1291
+ msgstr ""
1292
+ "Hallo [SUBSCRIBER_NAME],<br/><br/>es gibt eine neue Antwort auf den "
1293
+ "Diskussionsteil, für den Sie sich interessiert haben<br/><br/><a href="
1294
+ "\"[COMMENT_URL]\">[COMMENT_URL]</a><br/><br/>[COMMENT_CONTENT]<br/><br/><a "
1295
+ "href=\"[UNSUBSCRIBE_URL]\">"
1296
+
1297
+ #: options/class.WpdiscuzOptionsSerialized.php:792
1298
+ msgid ""
1299
+ "Hi [COMMENT_AUTHOR],<br/><br/>new reply on the discussion section you've "
1300
+ "been interested in<br/><br/><a href=\"[COMMENT_URL]\">[COMMENT_URL]</a><br/"
1301
+ "><br/>[COMMENT_CONTENT]<br/><br/><a href=\"[UNSUBSCRIBE_URL]\">"
1302
+ msgstr ""
1303
+ "Hallo [COMMENT_AUTHOR],<br/><br/>es gibt eine neue Antwort auf den "
1304
+ "Diskussionsteil, für den Sie sich interessiert haben<br/><br/><a href="
1305
+ "\"[COMMENT_URL]\">[COMMENT_URL]</a><br/><br/>[COMMENT_CONTENT]<br/><br/><a "
1306
+ "href=\"[UNSUBSCRIBE_URL]\">"
1307
+
1308
+ #: options/class.WpdiscuzOptionsSerialized.php:793
1309
+ msgid "You're subscribed for new replies on this comment"
1310
+ msgstr ""
1311
+ "Sie haben alle zukünftigen Antworten zu diesem Kommentar erfolgreich "
1312
+ "abonniert"
1313
+
1314
+ #: options/class.WpdiscuzOptionsSerialized.php:794
1315
+ msgid "You're subscribed for new replies on all your comments"
1316
+ msgstr ""
1317
+ "Sie haben alle zukünftigen Antworten zu allen Kommentaren erfolgreich "
1318
+ "abonniert"
1319
+
1320
+ #: options/class.WpdiscuzOptionsSerialized.php:795
1321
+ msgid "You're subscribed for new follow-up comments on this post"
1322
+ msgstr ""
1323
+ "Sie haben alle zukünftigen Kommentare zu diesem Beitrag erfolgreich abonniert"
1324
+
1325
+ #: options/class.WpdiscuzOptionsSerialized.php:797
1326
+ msgid "Cancel subscription"
1327
+ msgstr "Abrechnung kündigen"
1328
+
1329
+ #: options/class.WpdiscuzOptionsSerialized.php:798
1330
+ #: options/phrases-layouts/phrases-notification.php:19
1331
+ msgid "You've successfully unsubscribed."
1332
+ msgstr "Kommentar-Benachrichtigung erfolgreich de-abonniert."
1333
+
1334
+ #: options/class.WpdiscuzOptionsSerialized.php:799
1335
+ #: options/phrases-layouts/phrases-notification.php:15
1336
+ msgid "You've successfully subscribed."
1337
+ msgstr "Kommentar-Benachrichtigung erfolgreich abonniert."
1338
+
1339
+ #: options/class.WpdiscuzOptionsSerialized.php:800
1340
+ #: options/phrases-layouts/phrases-email.php:128
1341
+ msgid "Confirm your subscription"
1342
+ msgstr "Benachrichtigung bestätigen"
1343
+
1344
+ #: options/class.WpdiscuzOptionsSerialized.php:801
1345
+ #: options/phrases-layouts/phrases-email.php:132
1346
+ msgid "You've successfully confirmed your subscription."
1347
+ msgstr "Sie haben Ihre Kommentar-Benachrichtigung/en erfolgreich abonniert."
1348
+
1349
+ #: options/class.WpdiscuzOptionsSerialized.php:802
1350
+ msgid "Subscription Confirmation"
1351
+ msgstr "Anmeldungsbestätigung"
1352
+
1353
+ #: options/class.WpdiscuzOptionsSerialized.php:803
1354
+ msgid "Confirm Your Subscrption"
1355
+ msgstr "Bestätigen Sie Ihr Abonnement"
1356
+
1357
+ #: options/class.WpdiscuzOptionsSerialized.php:803
1358
+ msgid "Cancel Subscription"
1359
+ msgstr "Abonnement kündigen"
1360
+
1361
+ #: options/class.WpdiscuzOptionsSerialized.php:803
1362
+ msgid ""
1363
+ "Hi, <br/> You just subscribed for new comments on our website. This means "
1364
+ "you will receive an email when new comments are posted according to "
1365
+ "subscription option you've chosen. <br/> To activate, click confirm below. "
1366
+ "If you believe this is an error, ignore this message and we'll never bother "
1367
+ "you again. <br/><br/><a href=\"[POST_URL]\">[POST_TITLE]</a><br/><br/><a "
1368
+ "href=\"[CONFIRM_URL]\">"
1369
+ msgstr ""
1370
+ "Hallo, <br/> Sie haben soeben neue Kommentare auf unserer Website abonniert. "
1371
+ "Das bedeutet, dass Sie eine E-Mail erhalten, wenn neue Kommentare "
1372
+ "entsprechend der von Ihnen gewählten Abonnement-Option veröffentlicht "
1373
+ "werden. <br/> Zum Aktivieren klicken Sie unten auf \"Bestätigen\". Wenn Sie "
1374
+ "glauben, dass dies ein Fehler ist, ignorieren Sie diese Meldung und wir "
1375
+ "werden Sie nicht wieder belästigen. <br/><br/><a href="
1376
+ "\"[POST_URL]\">[POST_TITLE]</a><br/><br/><a href=\"[CONFIRM_URL]\">"
1377
+
1378
+ #: options/class.WpdiscuzOptionsSerialized.php:804
1379
+ msgid "please fill out this field to comment"
1380
+ msgstr "Bitte füllen Sie dieses Feld aus"
1381
+
1382
+ #: options/class.WpdiscuzOptionsSerialized.php:805
1383
+ msgid "email address is invalid"
1384
+ msgstr "Bitte überprüfen Sie Ihre angegebene Email-Adresse"
1385
+
1386
+ #: options/class.WpdiscuzOptionsSerialized.php:806
1387
+ msgid "url is invalid"
1388
+ msgstr "Bitte überprüfen Sie Ihre angegebene URL"
1389
+
1390
+ #: options/class.WpdiscuzOptionsSerialized.php:807
1391
+ msgid "year"
1392
+ msgstr "Jahr"
1393
+
1394
+ #: options/class.WpdiscuzOptionsSerialized.php:808
1395
+ msgid "years"
1396
+ msgstr "Jahre"
1397
+
1398
+ #: options/class.WpdiscuzOptionsSerialized.php:809
1399
+ msgid "month"
1400
+ msgstr "Monat"
1401
+
1402
+ #: options/class.WpdiscuzOptionsSerialized.php:810
1403
+ msgid "months"
1404
+ msgstr "Monate"
1405
+
1406
+ #: options/class.WpdiscuzOptionsSerialized.php:811
1407
+ msgid "day"
1408
+ msgstr "Tag"
1409
+
1410
+ #: options/class.WpdiscuzOptionsSerialized.php:812
1411
+ msgid "days"
1412
+ msgstr "Tage"
1413
+
1414
+ #: options/class.WpdiscuzOptionsSerialized.php:813
1415
+ msgid "hour"
1416
+ msgstr "Stunde"
1417
+
1418
+ #: options/class.WpdiscuzOptionsSerialized.php:814
1419
+ msgid "hours"
1420
+ msgstr "Stunden"
1421
+
1422
+ #: options/class.WpdiscuzOptionsSerialized.php:815
1423
+ msgid "minute"
1424
+ msgstr "Minute"
1425
+
1426
+ #: options/class.WpdiscuzOptionsSerialized.php:816
1427
+ msgid "minutes"
1428
+ msgstr "Minuten"
1429
+
1430
+ #: options/class.WpdiscuzOptionsSerialized.php:817
1431
+ msgid "second"
1432
+ msgstr "Sekunde"
1433
+
1434
+ #: options/class.WpdiscuzOptionsSerialized.php:818
1435
+ msgid "seconds"
1436
+ msgstr "Sekunden"
1437
+
1438
+ #: options/class.WpdiscuzOptionsSerialized.php:819
1439
+ msgid "right now"
1440
+ msgstr "gerade eben"
1441
+
1442
+ #: options/class.WpdiscuzOptionsSerialized.php:820
1443
+ msgid "ago"
1444
+ msgstr "zuvor"
1445
+
1446
+ #: options/class.WpdiscuzOptionsSerialized.php:821
1447
+ #: options/phrases-layouts/phrases-notification.php:38
1448
+ msgid "You must be"
1449
+ msgstr "Du musst"
1450
+
1451
+ #: options/class.WpdiscuzOptionsSerialized.php:822
1452
+ msgid "You are logged in as"
1453
+ msgstr "Sie sind angemeldet als"
1454
+
1455
+ #: options/class.WpdiscuzOptionsSerialized.php:823
1456
+ #: options/phrases-layouts/phrases-notification.php:29
1457
+ msgid "Login"
1458
+ msgstr "Anmelden"
1459
+
1460
+ #: options/class.WpdiscuzOptionsSerialized.php:824
1461
+ #: options/phrases-layouts/phrases-notification.php:33
1462
+ #, php-format
1463
+ msgid "Please %s to comment"
1464
+ msgstr "Bitte %s um zu kommentieren"
1465
+
1466
+ #: options/class.WpdiscuzOptionsSerialized.php:825
1467
+ #: options/phrases-layouts/phrases-notification.php:54
1468
+ msgid "Log out"
1469
+ msgstr "Abmelden"
1470
+
1471
+ #: options/class.WpdiscuzOptionsSerialized.php:826
1472
+ msgid "logged in"
1473
+ msgstr "eingeloggt"
1474
+
1475
+ #: options/class.WpdiscuzOptionsSerialized.php:827
1476
+ msgid "to post a comment."
1477
+ msgstr "um ein Kommentar oder eine Antwort schreiben zu können."
1478
+
1479
+ #: options/class.WpdiscuzOptionsSerialized.php:828
1480
+ #: options/phrases-layouts/phrases-comment.php:75
1481
+ msgid "Vote Up"
1482
+ msgstr "Gefällt mir"
1483
+
1484
+ #: options/class.WpdiscuzOptionsSerialized.php:829
1485
+ #: options/phrases-layouts/phrases-comment.php:79
1486
+ msgid "Vote Down"
1487
+ msgstr "Ablehnen"
1488
+
1489
+ #: options/class.WpdiscuzOptionsSerialized.php:830
1490
+ #: options/phrases-layouts/phrases-notification.php:58
1491
+ msgid "Vote Counted"
1492
+ msgstr "Gezählte Stimmen"
1493
+
1494
+ #: options/class.WpdiscuzOptionsSerialized.php:831
1495
+ msgid "You've already voted for this comment"
1496
+ msgstr "Es ist immer nur eine Bewertung erlaubt"
1497
+
1498
+ #: options/class.WpdiscuzOptionsSerialized.php:832
1499
+ #: options/phrases-layouts/phrases-error.php:27
1500
+ msgid "Voting Error"
1501
+ msgstr "Bewertungs-Fehler"
1502
+
1503
+ #: options/class.WpdiscuzOptionsSerialized.php:833
1504
+ msgid "You Must Be Logged In To Vote"
1505
+ msgstr "Um Ihre Stimme abgeben zu können müssen Sie angemeldet sein"
1506
+
1507
+ #: options/class.WpdiscuzOptionsSerialized.php:834
1508
+ msgid "You cannot vote for your comment"
1509
+ msgstr "Eigene Kommentare können nicht bewertet werden"
1510
+
1511
+ #: options/class.WpdiscuzOptionsSerialized.php:835
1512
+ msgid "You are not allowed to vote for this comment"
1513
+ msgstr "Es ist nur eine Stimmvergabe möglich"
1514
+
1515
+ #: options/class.WpdiscuzOptionsSerialized.php:836
1516
+ #: options/phrases-layouts/phrases-error.php:39
1517
+ msgid "Invalid Captcha Code"
1518
+ msgstr "Captcha Code ist falsch"
1519
+
1520
+ #: options/class.WpdiscuzOptionsSerialized.php:837
1521
+ #: options/phrases-layouts/phrases-error.php:43
1522
+ msgid "Some of field value is invalid"
1523
+ msgstr "Nicht alle von Ihnen ausgefüllten Felder sind richtig"
1524
+
1525
+ #: options/class.WpdiscuzOptionsSerialized.php:838
1526
+ msgid "new comment"
1527
+ msgstr "Neuer Kommentar"
1528
+
1529
+ #: options/class.WpdiscuzOptionsSerialized.php:839
1530
+ msgid "new comments"
1531
+ msgstr "neue Kommentare"
1532
+
1533
+ #: options/class.WpdiscuzOptionsSerialized.php:840
1534
+ msgid "Comment awaiting moderation"
1535
+ msgstr "Ihr Kommentar wurde zur Freischaltung vorgelegt"
1536
+
1537
+ #: options/class.WpdiscuzOptionsSerialized.php:841
1538
+ msgid "new reply on your comment"
1539
+ msgstr "neue Anwort zu Ihrem Kommentar"
1540
+
1541
+ #: options/class.WpdiscuzOptionsSerialized.php:842
1542
+ msgid "new replies on your comments"
1543
+ msgstr "neue Antworten zu Ihren Kommentaren"
1544
+
1545
+ #: options/class.WpdiscuzOptionsSerialized.php:843
1546
+ msgid "Sorry, the comment was not updated"
1547
+ msgstr ""
1548
+ "Tut uns leid, aber dieser Kommentar konnte leider nicht aktualisiert werden"
1549
+
1550
+ #: options/class.WpdiscuzOptionsSerialized.php:844
1551
+ msgid "Sorry, this comment no longer possible to edit"
1552
+ msgstr ""
1553
+ "Tut uns leid, aber dieser Kommentar kann leider nicht mehr aktualisiert "
1554
+ "werden"
1555
+
1556
+ #: options/class.WpdiscuzOptionsSerialized.php:845
1557
+ msgid "You've not made any changes"
1558
+ msgstr "Es wurden keine Änderungen von Ihnen vorgenommen"
1559
+
1560
+ #: options/class.WpdiscuzOptionsSerialized.php:846
1561
+ msgid "Save"
1562
+ msgstr "Speichern"
1563
+
1564
+ #: options/class.WpdiscuzOptionsSerialized.php:847
1565
+ msgid "Cancel"
1566
+ msgstr "Abbrechen"
1567
+
1568
+ #: options/class.WpdiscuzOptionsSerialized.php:848
1569
+ msgid "Input is too short"
1570
+ msgstr "Diese Eingabe ist zu kurz"
1571
+
1572
+ #: options/class.WpdiscuzOptionsSerialized.php:849
1573
+ msgid "Input is too long"
1574
+ msgstr "Diese Eingabe ist zu lang"
1575
+
1576
+ #: options/class.WpdiscuzOptionsSerialized.php:850
1577
+ msgid "Read more &raquo;"
1578
+ msgstr "Weiterlesen &raquo;"
1579
+
1580
+ #: options/class.WpdiscuzOptionsSerialized.php:851
1581
+ msgid "Anonymous"
1582
+ msgstr "Anonym"
1583
+
1584
+ #: options/class.WpdiscuzOptionsSerialized.php:852
1585
+ #: options/phrases-layouts/phrases-error.php:67
1586
+ msgid "Please fill out required fields"
1587
+ msgstr "Bitte füllen Sie die erforderlichen Felder aus"
1588
+
1589
+ #: options/class.WpdiscuzOptionsSerialized.php:853
1590
+ #: options/phrases-layouts/phrases-social-login.php:11
1591
+ msgid "Connect with"
1592
+ msgstr "Anmelden mit"
1593
+
1594
+ #: options/class.WpdiscuzOptionsSerialized.php:854
1595
+ #: options/phrases-layouts/phrases-notification.php:11
1596
+ msgid "You're subscribed to"
1597
+ msgstr "Sie sind angemeldet für"
1598
+
1599
+ #: options/class.WpdiscuzOptionsSerialized.php:855
1600
+ msgid "Participate in this discussion via email"
1601
+ msgstr "Folge dieser Diskussion per E-Mail"
1602
+
1603
+ #: options/class.WpdiscuzOptionsSerialized.php:856
1604
+ #: utils/layouts/pagination.php:46
1605
+ msgid "&rsaquo;"
1606
+ msgstr "&rsaquo;"
1607
+
1608
+ #: options/class.WpdiscuzOptionsSerialized.php:857
1609
+ msgid "Your comment is approved!"
1610
+ msgstr "Ihr Kommentar wurde genehmigt!"
1611
+
1612
+ #: options/class.WpdiscuzOptionsSerialized.php:858
1613
+ msgid ""
1614
+ "Hi [COMMENT_AUTHOR],<br/><br/>your comment was approved.<br/><br/><a href="
1615
+ "\"[COMMENT_URL]\">[COMMENT_URL]</a><br/><br/>[COMMENT_CONTENT]"
1616
+ msgstr ""
1617
+ "Hallo [COMMENT_AUTHOR],<br/><br/>>Ihr Kommentar wurde genehmigt.<br/><br/><a "
1618
+ "href=\"[COMMENT_URL]\">[COMMENT_URL]</a><br/><br/>[COMMENT_CONTENT]"
1619
+
1620
+ #: options/class.WpdiscuzOptionsSerialized.php:859
1621
+ msgid "Comments are closed."
1622
+ msgstr "Kommentare sind geschlossen."
1623
+
1624
+ #: options/class.WpdiscuzOptionsSerialized.php:860
1625
+ #: options/phrases-layouts/phrases-comment.php:99
1626
+ msgid "Stick this comment - (on)"
1627
+ msgstr "Diesen Kommentar anheften - (EIN)"
1628
+
1629
+ #: options/class.WpdiscuzOptionsSerialized.php:861
1630
+ #: options/phrases-layouts/phrases-comment.php:103
1631
+ msgid "Stick this comment - (off)"
1632
+ msgstr "Diesen Kommentar anheften - (AUS)"
1633
+
1634
+ #: options/class.WpdiscuzOptionsSerialized.php:862
1635
+ #: options/phrases-layouts/phrases-comment.php:107
1636
+ msgid "Stick"
1637
+ msgstr "Anheften"
1638
+
1639
+ #: options/class.WpdiscuzOptionsSerialized.php:863
1640
+ #: options/phrases-layouts/phrases-comment.php:111
1641
+ msgid "Unstick"
1642
+ msgstr "Abheften"
1643
+
1644
+ #: options/class.WpdiscuzOptionsSerialized.php:864
1645
+ msgid "Sticky comment thread"
1646
+ msgstr "Angeheftetes Kommentar Thema"
1647
+
1648
+ #: options/class.WpdiscuzOptionsSerialized.php:865
1649
+ #: options/phrases-layouts/phrases-comment.php:119
1650
+ msgid "Close this comment - (on)"
1651
+ msgstr "Diesen Kommentar schließen - (EIN)"
1652
+
1653
+ #: options/class.WpdiscuzOptionsSerialized.php:866
1654
+ #: options/phrases-layouts/phrases-comment.php:123
1655
+ msgid "Close this comment - (off)"
1656
+ msgstr "Diesen Kommentar schließen - (AUS)"
1657
+
1658
+ #: options/class.WpdiscuzOptionsSerialized.php:867
1659
+ #: options/phrases-layouts/phrases-comment.php:127
1660
+ msgid "Close"
1661
+ msgstr "Schließen"
1662
+
1663
+ #: options/class.WpdiscuzOptionsSerialized.php:868
1664
+ #: options/phrases-layouts/phrases-comment.php:131
1665
+ msgid "Open"
1666
+ msgstr "Offen"
1667
+
1668
+ #: options/class.WpdiscuzOptionsSerialized.php:869
1669
+ msgid "Closed comment thread"
1670
+ msgstr "Geschlossener Kommentar Thema"
1671
+
1672
+ #: options/class.WpdiscuzOptionsSerialized.php:870
1673
+ msgid "I allow to create an account"
1674
+ msgstr "Ich erlaube ein Konto zu erstellen"
1675
+
1676
+ #: options/class.WpdiscuzOptionsSerialized.php:871
1677
+ msgid ""
1678
+ "When you login first time using a Social Login button, we collect your "
1679
+ "account public profile information shared by Social Login provider, based on "
1680
+ "your privacy settings. We also get your email address to automatically "
1681
+ "create an account for you in our website. Once your account is created, "
1682
+ "you'll be logged-in to this account."
1683
+ msgstr ""
1684
+ "Wenn Sie sich zum ersten Mal mit einer Social-Login-Schaltfläche anmelden, "
1685
+ "erfassen wir die von Ihrem Social Login-Anbieter freigegebenen Informationen "
1686
+ "zum öffentlichen Profil Ihres Kontos, basierend auf Ihren "
1687
+ "Datenschutzeinstellungen. Wir erhalten auch Ihre E-Mail-Adresse, um "
1688
+ "automatisch ein Konto für Sie auf unserer Website zu erstellen. Sobald Ihr "
1689
+ "Konto erstellt wurde, werden Sie bei diesem Konto angemeldet."
1690
+
1691
+ #: options/class.WpdiscuzOptionsSerialized.php:872
1692
+ msgid "This comment form is under antispam protection"
1693
+ msgstr "Dieses Kommentarformular steht unter Antispam-Schutz"
1694
+
1695
+ #: options/class.WpdiscuzOptionsSerialized.php:873
1696
+ #: options/phrases-layouts/phrases-social-login.php:23
1697
+ msgid "Disagree"
1698
+ msgstr "Ablehnen"
1699
+
1700
+ #: options/class.WpdiscuzOptionsSerialized.php:874
1701
+ #: options/phrases-layouts/phrases-social-login.php:27
1702
+ msgid "Agree"
1703
+ msgstr "Ich stimme zu"
1704
+
1705
+ #: options/class.WpdiscuzOptionsSerialized.php:875
1706
+ #: options/phrases-layouts/phrases-user-settings.php:11
1707
+ msgid "My content and settings"
1708
+ msgstr "Meine Inhalte und Einstellungen"
1709
+
1710
+ #: options/class.WpdiscuzOptionsSerialized.php:876
1711
+ #: options/phrases-layouts/phrases-user-settings.php:15
1712
+ msgid "Activity"
1713
+ msgstr "Aktivität"
1714
+
1715
+ #: options/class.WpdiscuzOptionsSerialized.php:877
1716
+ #: options/phrases-layouts/phrases-user-settings.php:19
1717
+ msgid "Subscriptions"
1718
+ msgstr "Abonnements"
1719
+
1720
+ #: options/class.WpdiscuzOptionsSerialized.php:878
1721
+ #: options/phrases-layouts/phrases-user-settings.php:23
1722
+ msgid "In response to:"
1723
+ msgstr "Als Antwort auf:"
1724
+
1725
+ #: options/class.WpdiscuzOptionsSerialized.php:879
1726
+ #: options/class.WpdiscuzOptionsSerialized.php:885
1727
+ #: options/phrases-layouts/phrases-user-settings.php:27
1728
+ #: options/phrases-layouts/phrases-user-settings.php:51
1729
+ msgid "Bulk management via email"
1730
+ msgstr "Massen-Management per E-Mail"
1731
+
1732
+ #: options/class.WpdiscuzOptionsSerialized.php:880
1733
+ msgid ""
1734
+ "Click the button above to get an email with bulk delete and unsubscribe "
1735
+ "links."
1736
+ msgstr ""
1737
+ "Klicken Sie auf die Schaltfläche oben, um eine E-Mail mit Links zum Löschen "
1738
+ "und zur Massen-Abbestellung zu erhalten."
1739
+
1740
+ #: options/class.WpdiscuzOptionsSerialized.php:881
1741
+ #: options/phrases-layouts/phrases-user-settings.php:35
1742
+ msgid "No data found!"
1743
+ msgstr "Keine Daten gefunden!"
1744
+
1745
+ #: options/class.WpdiscuzOptionsSerialized.php:882
1746
+ #: options/class.WpdiscuzOptionsSerialized.php:886
1747
+ #: options/phrases-layouts/phrases-user-settings.php:39
1748
+ #: options/phrases-layouts/phrases-user-settings.php:55
1749
+ msgid "Delete all my comments"
1750
+ msgstr "Löschen Sie alle meine Kommentare"
1751
+
1752
+ #: options/class.WpdiscuzOptionsSerialized.php:883
1753
+ #: options/phrases-layouts/phrases-user-settings.php:43
1754
+ msgid "Cancel all comment subscriptions"
1755
+ msgstr "Brechen Sie alle Kommentarabonnements ab"
1756
+
1757
+ #: options/class.WpdiscuzOptionsSerialized.php:884
1758
+ #: options/phrases-layouts/phrases-user-settings.php:47
1759
+ msgid "Clear cookies with my personal data"
1760
+ msgstr "Löschen Sie Cookies mit meinen persönlichen Daten"
1761
+
1762
+ #: options/class.WpdiscuzOptionsSerialized.php:887
1763
+ msgid ""
1764
+ "Please use this link to delete all your comments. Please note, that this "
1765
+ "action cannot be undone."
1766
+ msgstr ""
1767
+ "Bitte benutzen Sie diesen Link, um alle Ihre Kommentare zu löschen. Bitte "
1768
+ "beachten Sie, dass diese Aktion nicht rückgängig gemacht werden kann."
1769
+
1770
+ #: options/class.WpdiscuzOptionsSerialized.php:888
1771
+ #: options/phrases-layouts/phrases-user-settings.php:63
1772
+ msgid "Delete all my subscriptions"
1773
+ msgstr "Alle meine Abonnements löschen"
1774
+
1775
+ #: options/class.WpdiscuzOptionsSerialized.php:889
1776
+ msgid ""
1777
+ "Please use this link to cancel all subscriptions for new comments. Please "
1778
+ "note, that this action cannot be undone."
1779
+ msgstr ""
1780
+ "Bitte verwenden Sie diesen Link, um alle Abonnements für neue Kommentare "
1781
+ "abzubrechen. Bitte beachten Sie, dass diese Aktion nicht rückgängig gemacht "
1782
+ "werden kann."
1783
+
1784
+ #: options/class.WpdiscuzOptionsSerialized.php:890
1785
+ #: options/phrases-layouts/phrases-user-settings.php:71
1786
+ msgid "subscribed to this comment"
1787
+ msgstr "abonnierte diesen Kommentar"
1788
+
1789
+ #: options/class.WpdiscuzOptionsSerialized.php:891
1790
+ #: options/phrases-layouts/phrases-user-settings.php:75
1791
+ msgid "subscribed to my comments"
1792
+ msgstr "abonnierte meine Kommentare"
1793
+
1794
+ #: options/class.WpdiscuzOptionsSerialized.php:892
1795
+ #: options/phrases-layouts/phrases-user-settings.php:79
1796
+ msgid "subscribed to all follow-up comments of this post"
1797
+ msgstr "abonnierte alle Follow-up-Kommentare dieses Beitrags"
1798
+
1799
+ #: options/class.WpdiscuzOptionsSerialized.php:893
1800
+ #: options/phrases-layouts/phrases-user-settings.php:83
1801
+ msgid "Please check your email."
1802
+ msgstr "Bitte überprüfen Sie Ihre E-Mail."
1803
+
1804
+ #: options/class.WpdiscuzOptionsSerialized.php:894
1805
+ #: options/phrases-layouts/phrases-user-settings.php:87
1806
+ msgid "Error : Can't send email."
1807
+ msgstr "Fehler: E-Mail kann nicht gesendet werden."
1808
+
1809
+ #: options/class.WpdiscuzOptionsSerialized.php:895
1810
+ #: options/phrases-layouts/phrases-user-settings.php:91
1811
+ msgid "Are you sure you want to delete this comment?"
1812
+ msgstr "Sind Sie sicher, dass Sie diesen Kommentar löschen wollen?"
1813
+
1814
+ #: options/class.WpdiscuzOptionsSerialized.php:896
1815
+ #: options/phrases-layouts/phrases-user-settings.php:95
1816
+ msgid "Are you sure you want to cancel this subscription?"
1817
+ msgstr "Sind Sie sicher, dass Sie Ihr Abo kündigen wollen?"
1818
+
1819
+ #: options/html-addons.php:11
1820
+ msgid "wpDiscuz Addons"
1821
+ msgstr "wpDiscuz Addons"
1822
+
1823
+ #: options/html-addons.php:19
1824
+ msgid "wpDiscuz Add-ons"
1825
+ msgstr "wpDiscuz Addons"
1826
+
1827
+ #: options/html-addons.php:20
1828
+ msgid "Addons Support Forum"
1829
+ msgstr "Addons Support Forum"
1830
+
1831
+ #: options/html-addons.php:25
1832
+ msgid ""
1833
+ "All wpDiscuz addons are being developed by wpDiscuz developers at gVectors "
1834
+ "Team, those are very solid premium level extensions and come with premium "
1835
+ "support.\n"
1836
+ " These addons help us to keep top level "
1837
+ "development of the free wpDiscuz plugin. All essential and even dozens of "
1838
+ "extra-cool features are already available for free in core wpDiscuz. \n"
1839
+ " There will never be any limits, any pro and paid "
1840
+ "versions for wpDiscuz. We have another dozens of awesome features in our to-"
1841
+ "do list which will also be added for free in future releases. \n"
1842
+ " So the free wpDiscuz development always stays on "
1843
+ "the first priority and wpDiscuz is being extended with new free functions "
1844
+ "and features even faster than before."
1845
+ msgstr ""
1846
+ "Alle wpDiscuz-Addons werden von den wpDiscuz-Entwicklern des gVectors-Teams "
1847
+ "entwickelt, welche sehr solide Premium-Erweiterungen sind und das Team Ihnen "
1848
+ "Premium-Support anbietet.\n"
1849
+ " Diese Addons helfen uns, die Entwicklung des "
1850
+ "kostenlosen wpDiscuz-Plugins auf höchstem Niveau zu halten. Alle wichtigen "
1851
+ "und sogar Dutzende extra-coole Features sind bereits im Kern von wpDiscuz "
1852
+ "kostenlos verfügbar. \n"
1853
+ " Für wpDiscuz gibt es keine Limits, keine Pro und "
1854
+ "keine kostenpflichtigen Versionen. Wir haben weitere Dutzende von tollen "
1855
+ "Funktionen in unserer To-Do-Liste, die auch in zukünftigen Versionen "
1856
+ "kostenlos hinzugefügt werden. \n"
1857
+ " Die freie Entwicklung von wpDiscuz steht also "
1858
+ "immer an erster Stelle und wpDiscuz wird noch schneller um neue Funktionen "
1859
+ "und Funktionen erweitert."
1860
+
1861
+ #: options/html-addons.php:31
1862
+ msgid " Thank you!<br/> Sincerely yours,<br/> gVectors Team&nbsp;"
1863
+ msgstr " Danke!<br/>Mit freundlichen Grüßen,<br/>gVectors Team&nbsp;"
1864
+
1865
+ #: options/html-addons.php:53
1866
+ msgid "Installed"
1867
+ msgstr "Installiert"
1868
+
1869
+ #: options/html-addons.php:57
1870
+ msgid "Version"
1871
+ msgstr "Version"
1872
+
1873
+ #: options/html-addons.php:58
1874
+ msgid "at least"
1875
+ msgstr "mindestens"
1876
+
1877
+ #: options/html-addons.php:60
1878
+ msgid "Live Preview | Buy"
1879
+ msgstr "Livevorschau | Kaufen"
1880
+
1881
+ #: options/html-addons.php:66
1882
+ msgid "More information about"
1883
+ msgstr "Mehr Informationen zu"
1884
+
1885
+ #: options/html-options.php:10
1886
+ msgid "wpDiscuz General Settings"
1887
+ msgstr "wpDiscuz allgemeine Einstellungen"
1888
+
1889
+ #: options/html-options.php:19
1890
+ msgid "Need More Features?"
1891
+ msgstr "Benötigen Sie mehr Funktionen?"
1892
+
1893
+ #: options/html-options.php:20
1894
+ msgid "Documentation"
1895
+ msgstr "Dokumentation"
1896
+
1897
+ #: options/html-options.php:21
1898
+ msgid "Support"
1899
+ msgstr "Support"
1900
+
1901
+ #: options/html-options.php:54 options/html-phrases.php:21
1902
+ msgid "General"
1903
+ msgstr "Allgemein"
1904
+
1905
+ #: options/html-options.php:55
1906
+ msgid "Comment Form"
1907
+ msgstr "Kommentarformular"
1908
+
1909
+ #: options/html-options.php:56
1910
+ msgid "Comment List"
1911
+ msgstr "Kommentarliste"
1912
+
1913
+ #: options/html-options.php:57
1914
+ #: options/options-layouts/settings-live-update.php:7
1915
+ msgid "Live Update"
1916
+ msgstr "LiveUpdate"
1917
+
1918
+ #: options/html-options.php:59
1919
+ msgid "Subscription"
1920
+ msgstr "Abonnement"
1921
+
1922
+ #: options/html-options.php:59
1923
+ msgid "and Postmatic"
1924
+ msgstr "und Postmatic"
1925
+
1926
+ #: options/html-options.php:60
1927
+ msgid "Styling"
1928
+ msgstr "Styling"
1929
+
1930
+ #: options/html-options.php:61
1931
+ msgid "Cache"
1932
+ msgstr "Cache"
1933
+
1934
+ #: options/html-options.php:62 options/options-layouts/settings-social.php:7
1935
+ msgid "Social Login &amp; Share"
1936
+ msgstr "Social Login &amp; Teilen"
1937
+
1938
+ #: options/html-options.php:63
1939
+ #: options/options-layouts/settings-integrations.php:7
1940
+ msgid "Integrations"
1941
+ msgstr "Integrationen"
1942
+
1943
+ #: options/html-options.php:154
1944
+ msgid "Reset Options"
1945
+ msgstr "Optionen zurücksetzen"
1946
+
1947
+ #: options/html-options.php:156
1948
+ msgid "Remove vote data"
1949
+ msgstr "Voting Daten entfernen"
1950
+
1951
+ #: options/html-options.php:157 options/html-phrases.php:80
1952
+ msgid "Save Changes"
1953
+ msgstr "Änderungen speichern"
1954
+
1955
+ #: options/html-phrases.php:10
1956
+ msgid "wpDiscuz Front-end Phrases"
1957
+ msgstr "wpDiscuz Frontend-Sätze"
1958
+
1959
+ #: options/html-phrases.php:23
1960
+ msgid "Comment"
1961
+ msgstr "Kommentar"
1962
+
1963
+ #: options/html-phrases.php:24
1964
+ msgid "Date/Time"
1965
+ msgstr "Datum/Uhrzeit"
1966
+
1967
+ #: options/html-phrases.php:26
1968
+ msgid "Notification"
1969
+ msgstr "Benachrichtigung"
1970
+
1971
+ #: options/html-phrases.php:27
1972
+ #: options/phrases-layouts/phrases-social-login.php:7
1973
+ msgid "Social Login"
1974
+ msgstr "Social Login"
1975
+
1976
+ #: options/html-phrases.php:28
1977
+ msgid "User Settings"
1978
+ msgstr "Benutzereinstellungen"
1979
+
1980
+ #: options/html-phrases.php:29
1981
+ msgid "Errors"
1982
+ msgstr "Fehler"
1983
+
1984
+ #: options/html-phrases.php:79
1985
+ msgid "Reset Phrases"
1986
+ msgstr "Phrasen zurücksetzen"
1987
+
1988
+ #: options/html-tools.php:10
1989
+ msgid "wpDiscuz Tools"
1990
+ msgstr "wpDiscuz Werkzeuge"
1991
+
1992
+ #: options/html-tools.php:15 options/tools-layouts/options-export.php:7
1993
+ msgid "Export options"
1994
+ msgstr "Export-Optionen"
1995
+
1996
+ #: options/html-tools.php:16 options/tools-layouts/options-import.php:7
1997
+ msgid "Import options"
1998
+ msgstr "Import-Optionen"
1999
+
2000
+ #: options/html-tools.php:17 options/tools-layouts/subscriptions-import.php:9
2001
+ msgid "Import subscriptions"
2002
+ msgstr "Abonnements importieren"
2003
+
2004
+ #: options/html-tools.php:18 utils/deactivation-reason-modal.php:57
2005
+ msgid "Other"
2006
+ msgstr "Andere"
2007
+
2008
+ #: options/options-layouts/settings-addons.php:20
2009
+ msgid ""
2010
+ "Here you can find wpDiscuz Addons' setting options in vertical subTabs with "
2011
+ "according addon titles. All wpDiscuz addons are listed on wpDiscuz"
2012
+ msgstr ""
2013
+ "Hier finden Sie die Einstellungsmöglichkeiten von wpDiscuz Addons in "
2014
+ "vertikalen Untertabs mit entsprechenden Addon-Titeln. Alle wpDiscuz Addons "
2015
+ "sind auf wpDiscuz aufgelistet"
2016
+
2017
+ #: options/options-layouts/settings-addons.php:20
2018
+ msgid "Addons subMenu"
2019
+ msgstr "Addons Untermenü"
2020
+
2021
+ #: options/options-layouts/settings-addons.php:20
2022
+ msgid ""
2023
+ "We'll add new free and paid addons with almost every wpDiscuz release. There "
2024
+ "will be dozens of very useful addons in near future. Currently wpDiscuz "
2025
+ "consists of about 70 free features/addons like \"Live Update\", \"First "
2026
+ "comment redirection\", \"Comment sorting\", \"Simple CAPTCHA\", \"AJAX "
2027
+ "Pagination\", \"Lazy Load\", \"Comment Likes\", \"Comment Share\" and dozens "
2028
+ "of other addons and there will be more. All new and free addons will be "
2029
+ "built-in with wpDiscuz plugin and all paid addons will be listed separately "
2030
+ "on"
2031
+ msgstr ""
2032
+ "Wir werden neue kostenlose und kostenpflichtige Addons mit fast jeder "
2033
+ "wpDiscuz-Version hinzufügen. In naher Zukunft wird es dutzende sehr "
2034
+ "nützliche Addons geben. Momentan besteht wpDiscuz aus ca. 70 kostenlosen "
2035
+ "Features / Addons wie \"Live Update\", \"Erste Kommentarumleitung\", "
2036
+ "\"Kommentar sortieren\", \"Einfaches CAPTCHA\", \"AJAX Paginierung\", \"Lazy "
2037
+ "Load\", \"Kommentar Likes\", \"Kommentar teilen\" und dutzende anderer "
2038
+ "Addons und es wird mehr geben. Alle neuen und kostenlosen Addons werden mit "
2039
+ "dem wpDiscuz Plugin eingebaut und alle kostenpflichtigen Addons werden "
2040
+ "separat aufgelistet im"
2041
+
2042
+ #: options/options-layouts/settings-cache.php:10
2043
+ msgid "Gravatar Cache"
2044
+ msgstr "Gravatar Cache"
2045
+
2046
+ #: options/options-layouts/settings-cache.php:15
2047
+ msgid "Enable Grvatar caching"
2048
+ msgstr "Gravatar Caching aktivieren"
2049
+
2050
+ #: options/options-layouts/settings-cache.php:17
2051
+ msgid ""
2052
+ "It seems on of important functions (\"file_get_contents\", "
2053
+ "\"file_put_contents\") of php is not exists.<br/> Please enable these "
2054
+ "functions in your server settings to use gravatar caching feature."
2055
+ msgstr ""
2056
+ "Es scheint, dass eine wichtige Funktion (\"file_get_contents\", "
2057
+ "\"file_put_contents\") von php nicht existiert.<br/> Bitte aktivieren Sie "
2058
+ "diese Funktionen in Ihren Servereinstellungen, um die Gravatar-Caching-"
2059
+ "Funktion zu verwenden."
2060
+
2061
+ #: options/options-layouts/settings-cache.php:26
2062
+ msgid "Caching method"
2063
+ msgstr "Caching Methode"
2064
+
2065
+ #: options/options-layouts/settings-cache.php:29
2066
+ msgid "Runtime"
2067
+ msgstr "Laufzeit"
2068
+
2069
+ #: options/options-layouts/settings-cache.php:30
2070
+ msgid "Cron job"
2071
+ msgstr "Cron Job"
2072
+
2073
+ #: options/options-layouts/settings-cache.php:35
2074
+ msgid "Cache avatars for \"X\" days"
2075
+ msgstr "Avatare für \"X\" Tage cachen"
2076
+
2077
+ #: options/options-layouts/settings-cache.php:42
2078
+ #: options/options-layouts/settings-cache.php:45
2079
+ msgid "Purge expired caches"
2080
+ msgstr "Abgelaufene Caches bereinigen"
2081
+
2082
+ #: options/options-layouts/settings-cache.php:49
2083
+ #: options/options-layouts/settings-cache.php:52
2084
+ msgid "Purge all caches"
2085
+ msgstr "Alle Caches bereinigen"
2086
+
2087
+ #: options/options-layouts/settings-cache.php:56
2088
+ msgid "Statistics Cache"
2089
+ msgstr "Statistik Cache"
2090
+
2091
+ #: options/options-layouts/settings-cache.php:60
2092
+ #: options/options-layouts/settings-cache.php:63
2093
+ msgid "Purge statistics caches"
2094
+ msgstr "Statistik Caches bereinigen"
2095
+
2096
+ #: options/options-layouts/settings-customfields.php:12
2097
+ msgid "Google Map API Key"
2098
+ msgstr "Google MAP API Schlüssel"
2099
+
2100
+ #: options/options-layouts/settings-form.php:7
2101
+ msgid "Comment Form Settings"
2102
+ msgstr "Kommentarformular Einstellungen"
2103
+
2104
+ #: options/options-layouts/settings-form.php:12
2105
+ msgid "Hide Header Text"
2106
+ msgstr "Kopfzeilen Text verbergen"
2107
+
2108
+ #: options/options-layouts/settings-form.php:13
2109
+ msgid ""
2110
+ "This option hides \"Leave Reply\" header text on top of comment form. You "
2111
+ "can madify this text in Comments > Forms admin page."
2112
+ msgstr ""
2113
+ "Diese Option blendet die Kopfzeile \"Hinterlasse einen Kommentar\" über dem "
2114
+ "Kommentarformular aus. Sie können diesen Text auf der Seite \"Kommentare > "
2115
+ "Formulare\" verwalten."
2116
+
2117
+ #: options/options-layouts/settings-form.php:22
2118
+ msgid "Show logged-in user name and logout link on top of main form"
2119
+ msgstr ""
2120
+ "Eingeloggten Besuchern ihren Benutzernamen sowie einen Ausloggen-Link über "
2121
+ "dem Kommentarformular anzeigen"
2122
+
2123
+ #: options/options-layouts/settings-form.php:31
2124
+ msgid "Comment Form components"
2125
+ msgstr "Kommentarformular Komponenten"
2126
+
2127
+ #: options/options-layouts/settings-form.php:32
2128
+ msgid ""
2129
+ "These components can be found on the main comment form. The \"My Content and "
2130
+ "Settings\" button is located on the top left side, under the \"Leave Reply\" "
2131
+ "header text. The \"Discussion Statistic\" and \"Recent Comment Authors\" "
2132
+ "sections are located under the main comment form fields ont the left and "
2133
+ "right sides accordingly."
2134
+ msgstr ""
2135
+ "Diese Komponenten finden Sie im Hauptkommentarformular. Die Schaltfläche "
2136
+ "\"Meine Inhalte und Einstellungen\" befindet sich oben links unter der "
2137
+ "Kopfzeile \"Hinterlasse einen Kommentar\". Die Abschnitte "
2138
+ "\"Diskussionsstatistik\" und \"Letzte Kommentartoren\" befinden sich "
2139
+ "entsprechend unter den Formularfeldern der Hauptkommentare auf der linken "
2140
+ "und rechten Seite."
2141
+
2142
+ #: options/options-layouts/settings-form.php:42
2143
+ msgid "Hide \"Please login to comment\" text"
2144
+ msgstr ""
2145
+ "Text \"Bitte loggen Sie sich ein, um einen Kommentar zu schreiben\" "
2146
+ "ausblenden"
2147
+
2148
+ #: options/options-layouts/settings-form.php:49
2149
+ msgid "Hide \"My Content and Settings\" button"
2150
+ msgstr "Button \"Meine Inhalte und Einstellungen\" ausblenden"
2151
+
2152
+ #: options/options-layouts/settings-form.php:56
2153
+ msgid "Hide \"Discussion Statistic\" section"
2154
+ msgstr "Abschnitt \"Diskussionsstatistik\" ausblenden"
2155
+
2156
+ #: options/options-layouts/settings-form.php:63
2157
+ msgid "Hide \"Recent Comment Authors\" section"
2158
+ msgstr "Bereich \"Letzte Kommentartoren\" ausblenden"
2159
+
2160
+ #: options/options-layouts/settings-form.php:71
2161
+ msgid "Keep guest commenter credentials in browser cookies for x days"
2162
+ msgstr ""
2163
+ "Behalten Sie die Informationen des Gastkommentators für x Tage in einem "
2164
+ "Browser-Cookie"
2165
+
2166
+ #: options/options-layouts/settings-form.php:73
2167
+ msgid ""
2168
+ "wpDiscuz uses WordPress function to keep guest Name, Email and Website "
2169
+ "information in cookies to fill according fields of comment form on next "
2170
+ "commenting time."
2171
+ msgstr ""
2172
+ "wpDiscuz nutzt die WordPress-Funktion, um Informationen über den Namen, die "
2173
+ "E-Mail Adresse und die Website des Gastes in Cookies zu speichern, um die "
2174
+ "entsprechenden Kommentarfelder zum nächsten Kommentarzeitpunkt zu füllen."
2175
+
2176
+ #: options/options-layouts/settings-form.php:74
2177
+ msgid "Set this option value -1 to make it unlimited."
2178
+ msgstr "Setzen Sie diese Option auf -1, um sie unbegrenzt zu machen."
2179
+
2180
+ #: options/options-layouts/settings-form.php:75
2181
+ msgid "Set this option value 0 to clear those data when user closes browser."
2182
+ msgstr ""
2183
+ "Setzen Sie diesen Optionswert auf 0, um diese Daten zu löschen, wenn der "
2184
+ "Benutzer den Browser schließt."
2185
+
2186
+ #: options/options-layouts/settings-form.php:82
2187
+ msgid "Comment author name length (for guests only)"
2188
+ msgstr "Länge des Kommentar Autorennamens (nur für Gäste)"
2189
+
2190
+ #: options/options-layouts/settings-form.php:86
2191
+ #: options/options-layouts/settings-form.php:100
2192
+ msgid "Min"
2193
+ msgstr "Min"
2194
+
2195
+ #: options/options-layouts/settings-form.php:89
2196
+ #: options/options-layouts/settings-form.php:103
2197
+ msgid "Max"
2198
+ msgstr "Max"
2199
+
2200
+ #: options/options-layouts/settings-form.php:95
2201
+ msgid "Comment text length"
2202
+ msgstr "Länge des Kommentars"
2203
+
2204
+ #: options/options-layouts/settings-form.php:96
2205
+ msgid ""
2206
+ "Allows to set minimum and maximum number of chars can be inserted in comment "
2207
+ "textarea. Leave the max value empty to remove the limit."
2208
+ msgstr ""
2209
+ "Ermöglicht die Einstellung der minimalen und maximalen Anzahl von Zeichen, "
2210
+ "die in das Kommentar Textfeld eingefügt werden können. Lassen Sie den "
2211
+ "Maximalwert leer, um das Limit zu entfernen."
2212
+
2213
+ #: options/options-layouts/settings-form.php:109
2214
+ msgid "Captcha generation type"
2215
+ msgstr "Captcha Erzeugungstyp"
2216
+
2217
+ #: options/options-layouts/settings-form.php:114
2218
+ msgid "File system"
2219
+ msgstr "Dateisystem"
2220
+
2221
+ #: options/options-layouts/settings-form.php:115
2222
+ msgid "WP Session"
2223
+ msgstr "WP Session"
2224
+
2225
+ #: options/options-layouts/settings-form.php:122
2226
+ msgid "Invisible Spam Protection"
2227
+ msgstr "Unsichtbarer Spamschutz"
2228
+
2229
+ #: options/options-layouts/settings-form.php:124
2230
+ msgid ""
2231
+ "You should purge caches after each key generation otherwise the plugin may "
2232
+ "work not correctly"
2233
+ msgstr ""
2234
+ "Sie sollten Caches nach jeder Schlüsselgenerierung löschen, sonst "
2235
+ "funktioniert das Plugin möglicherweise nicht richtig"
2236
+
2237
+ #: options/options-layouts/settings-form.php:127
2238
+ msgid "Leave the field empty if you don't want to use this feature"
2239
+ msgstr ""
2240
+ "Lassen Sie das Feld leer, wenn Sie diese Funktion nicht verwenden möchten"
2241
+
2242
+ #: options/options-layouts/settings-form.php:132
2243
+ msgid "Generate"
2244
+ msgstr "Generieren"
2245
+
2246
+ #: options/options-layouts/settings-form.php:137
2247
+ msgid "Display note about Invisible Spam Protection"
2248
+ msgstr "Notiz zum unsichtbaren Spamschutz anzeigen"
2249
+
2250
+ #: options/options-layouts/settings-form.php:138
2251
+ msgid ""
2252
+ "wpDiscuz has built-in invisible antispam protection based on server side and "
2253
+ "front-end unique key comparation. By default wpDiscuz display a small note "
2254
+ "in simple CAPTCHA area, saying the comment form is under antispam "
2255
+ "protection. The note text can be managed in Comments > Phrases > Form tab."
2256
+ msgstr ""
2257
+ "wpDiscuz verfügt über einen eingebauten, unsichtbaren Antispam-Schutz, der "
2258
+ "auf der Vergleichbarkeit von Server- und Front-End-Schlüssel basiert. "
2259
+ "Standardmäßig zeigt wpDiscuz eine kleine Notiz im einfachen CAPTCHA-Bereich "
2260
+ "an und sagt, dass das Kommentarformular unter Antispam-Schutz steht. Der "
2261
+ "Notiztext kann in \"Kommentare > Phrasen > Formular-Tab\" verwaltet werden."
2262
+
2263
+ #: options/options-layouts/settings-form.php:147
2264
+ msgid "Enable Quicktags"
2265
+ msgstr "Quicktags ermöglichen"
2266
+
2267
+ #: options/options-layouts/settings-form.php:148
2268
+ msgid ""
2269
+ "Quicktag is a on-click button that inserts HTML in to comment textarea. For "
2270
+ "example the \"b\" Quicktag will insert the HTML bold tags < b > < /b >."
2271
+ msgstr ""
2272
+ "Quicktag ist ein OnClick Button, der HTML in den Kommentarbereich einfügt. "
2273
+ "Zum Beispiel fügt der \"b\"-Quicktag die HTML-Fett-Tags < b > < / b> ein."
2274
+
2275
+ #: options/options-layouts/settings-form.php:157
2276
+ msgid "Enable automatic image URL to image HTML conversion"
2277
+ msgstr "Automatische Bild-URL zur Bild-HTML Konvertierung aktivieren"
2278
+
2279
+ #: options/options-layouts/settings-form.php:166
2280
+ msgid "Allow comment editing for"
2281
+ msgstr "Erlaube das Bearbeiten von kommentaren für"
2282
+
2283
+ #: options/options-layouts/settings-form.php:171
2284
+ msgid "Do not allow"
2285
+ msgstr "Nicht zulassen"
2286
+
2287
+ #: options/options-layouts/settings-form.php:172
2288
+ #: options/options-layouts/settings-form.php:173
2289
+ #: options/options-layouts/settings-live-update.php:53
2290
+ #: options/options-layouts/settings-live-update.php:54
2291
+ #: options/options-layouts/settings-live-update.php:55
2292
+ msgid "Minutes"
2293
+ msgstr "Minuten"
2294
+
2295
+ #: options/options-layouts/settings-form.php:174
2296
+ #: options/phrases-layouts/phrases-datetime.php:35
2297
+ msgid "Hour"
2298
+ msgstr "Stunde"
2299
+
2300
+ #: options/options-layouts/settings-form.php:175
2301
+ #: options/options-layouts/settings-form.php:176
2302
+ msgid "Hours"
2303
+ msgstr "Stunden"
2304
+
2305
+ #: options/options-layouts/settings-form.php:177
2306
+ msgid "Unlimit"
2307
+ msgstr "Unbegrenzt"
2308
+
2309
+ #: options/options-layouts/settings-general.php:7
2310
+ msgid "General Settings"
2311
+ msgstr "Allgemeine Einstellungen"
2312
+
2313
+ #: options/options-layouts/settings-general.php:11
2314
+ msgid "Enable wpdiscuz on home page"
2315
+ msgstr "wpDiscuz auf der Homepage aktivieren"
2316
+
2317
+ #: options/options-layouts/settings-general.php:16
2318
+ msgid "Use guest email to detect registered account"
2319
+ msgstr ""
2320
+ "Benutzen Sie die E-Mail Adresse des Gastes, um einen registrierten Account "
2321
+ "zu erkennen"
2322
+
2323
+ #: options/options-layouts/settings-general.php:18
2324
+ msgid ""
2325
+ "Sometimes registered users comment as guest using the same email address. "
2326
+ "wpDiscuz can detect the account role using guest email and display commenter "
2327
+ "label correctly."
2328
+ msgstr ""
2329
+ "Manchmal melden sich registrierte Benutzer als Gast mit derselben E-Mail "
2330
+ "Adresse an. wpDiscuz kann die Kontorolle mithilfe der Gast E-Mail erkennen "
2331
+ "und das Kommentar Label korrekt anzeigen."
2332
+
2333
+ #: options/options-layouts/settings-general.php:25
2334
+ msgid "Secure comment content in HTTPS protocol."
2335
+ msgstr "Sichern Sie den Kommentarinhalt im HTTPS-Protokoll."
2336
+
2337
+ #: options/options-layouts/settings-general.php:27
2338
+ msgid ""
2339
+ "This option detects images and other contents with non-https source URLs and "
2340
+ "fix according to your selected logic."
2341
+ msgstr ""
2342
+ "Diese Option erkennt Bilder und andere Inhalte einer nicht-https Quellen URL "
2343
+ "um sie dann nach Ihrer ausgewählten Logik zu beheben."
2344
+
2345
+ #: options/options-layouts/settings-general.php:35
2346
+ msgid "Replace non-https content to simple link URLs"
2347
+ msgstr "Ersetzen Sie Nicht-https-Inhalte durch einfache Link-URLs"
2348
+
2349
+ #: options/options-layouts/settings-general.php:39
2350
+ msgid ""
2351
+ "Just replace http protocols to https (https may not be supported by content "
2352
+ "provider)"
2353
+ msgstr ""
2354
+ "Ersetzen Sie http-Protokolle zu https (https wird möglicherweise nicht von "
2355
+ "jeden Provider unterstützt)"
2356
+
2357
+ #: options/options-layouts/settings-general.php:43
2358
+ msgid "Ignore non-https content"
2359
+ msgstr "Nicht-https Inhalte ignorieren"
2360
+
2361
+ #: options/options-layouts/settings-general.php:51
2362
+ msgid "Redirect first commenter to"
2363
+ msgstr "Autor des ersten Kommentars auf folgende Seite weiterleiten"
2364
+
2365
+ #: options/options-layouts/settings-general.php:58
2366
+ msgid "Do not redirect"
2367
+ msgstr "Nicht weiterleiten"
2368
+
2369
+ #: options/options-layouts/settings-general.php:66
2370
+ msgid "Use WordPress Date/Time format"
2371
+ msgstr "WordPress-Datumsformat verwenden"
2372
+
2373
+ #: options/options-layouts/settings-general.php:67
2374
+ msgid ""
2375
+ "wpDiscuz shows Human Readable date format. If you check this option it'll "
2376
+ "show the date/time format set in WordPress General Settings."
2377
+ msgstr ""
2378
+ "wpDiscuz zeigt ein gut verständlich sowie menschlich lesbares Format. Sollte "
2379
+ "diese Option aktiviert werden, wird das von Wordpress vorgegebene Format "
2380
+ "verwendet."
2381
+
2382
+ #: options/options-layouts/settings-general.php:73
2383
+ msgid "Current Wordpress date/time format"
2384
+ msgstr "Aktuellea Wordpress-Datum/Uhrzeit-Format"
2385
+
2386
+ #: options/options-layouts/settings-general.php:79
2387
+ msgid "Use Plugin .PO/.MO files"
2388
+ msgstr "Verwendung von Plugin .PO/.MO Dateien"
2389
+
2390
+ #: options/options-layouts/settings-general.php:80
2391
+ msgid ""
2392
+ "wpDiscuz phrase system allows you to translate all front-end phrases. "
2393
+ "However if you have a multi-language website it'll not allow you to add more "
2394
+ "than one language translation. The only way to get it is the plugin "
2395
+ "translation files (.PO / .MO). If wpDiscuz has the languages you need you "
2396
+ "should check this option to disable phrase system and it'll automatically "
2397
+ "translate all phrases based on language files according to current language."
2398
+ msgstr ""
2399
+ "wpDiscuz Phrasen-System erlaubt die Beschriftungen des Kommentarbereiches. "
2400
+ "Sollte jedoch eine mehrsprachiges System (Multisite) installiert sein, so "
2401
+ "kann nur eine Sprache verwendet werden."
2402
+
2403
+ #: options/options-layouts/settings-general.php:87
2404
+ msgid ""
2405
+ "Help wpDiscuz to grow allowing people to recognize which comment plugin you "
2406
+ "use"
2407
+ msgstr ""
2408
+ "Helfen Sie mit, dass wpDiscuz weiter wächst und sich Menschen daran "
2409
+ "erinnern, welches Kommentar-Plugin Sie verwenden"
2410
+
2411
+ #: options/options-layouts/settings-general.php:89
2412
+ msgid ""
2413
+ "Please check this option on to help wpDiscuz get more popularity as your "
2414
+ "thank to the hard work we do for you totally free. This option adds a very "
2415
+ "small (16x16px) icon under the comment section which will allow your site "
2416
+ "visitors recognize the name of comment solution you use."
2417
+ msgstr ""
2418
+ "Bitte aktivieren Sie diese Option damit WpDiscuz mehr Popularität gewinnt - "
2419
+ "als Ihr Danke für die harte Arbeit wir für Sie völlig kostenlos erledigen. "
2420
+ "Diese Option fügt eine sehr kleines (16x16px) Icon unter den Kommentaren ein "
2421
+ "- über das der Besucher Ihrer Website den Namen des Kommentar-Lösung "
2422
+ "kennenlernen, die Sie verwenden."
2423
+
2424
+ #: options/options-layouts/settings-general.php:94
2425
+ msgid "Thank you!"
2426
+ msgstr "Vielen Dank!"
2427
+
2428
+ #: options/options-layouts/settings-integrations.php:14
2429
+ msgid "BuddyPress"
2430
+ msgstr "BuddyPress"
2431
+
2432
+ #: options/options-layouts/settings-integrations.php:15
2433
+ msgid "Users Ultra"
2434
+ msgstr "Users Ultra"
2435
+
2436
+ #: options/options-layouts/settings-integrations.php:16
2437
+ msgid "User Pro"
2438
+ msgstr "User Pro"
2439
+
2440
+ #: options/options-layouts/settings-integrations.php:17
2441
+ msgid "Ultimate Member"
2442
+ msgstr "Ultimate Member"
2443
+
2444
+ #: options/options-layouts/settings-integrations.php:18
2445
+ msgid "MyCred"
2446
+ msgstr "MyCred"
2447
+
2448
+ #: options/options-layouts/settings-integrations.php:23
2449
+ #: options/options-layouts/settings-integrations.php:41
2450
+ #: options/options-layouts/settings-integrations.php:59
2451
+ #: options/options-layouts/settings-integrations.php:90
2452
+ #: options/options-layouts/settings-integrations.php:124
2453
+ msgid "Please add the code below in current active theme's functions.php file"
2454
+ msgstr ""
2455
+ "Bitte fügen Sie den folgenden Code in die Datei functions.php des derzeit "
2456
+ "aktiven Themes hinzu"
2457
+
2458
+ #: options/options-layouts/settings-integrations.php:24
2459
+ msgid ""
2460
+ "This code will integrate BuddyPress profile URL with wpDiscuz. BuddyPress "
2461
+ "Display Names and Avatars will be integrated automatically."
2462
+ msgstr ""
2463
+ "Dieser Code integriert die BuddyPress-Profil-URL mit wpDiscuz. BuddyPress "
2464
+ "Display-Namen und Avatare werden automatisch integriert."
2465
+
2466
+ #: options/options-layouts/settings-integrations.php:42
2467
+ msgid ""
2468
+ "This code will integrate Users Ultra profile URL with wpDiscuz. Users Ultra "
2469
+ "Display Names and Avatars will be integrated automatically."
2470
+ msgstr ""
2471
+ "Dieser Code wird die Ultra-Profil-URL der User mit wpDiscuz integrieren. Die "
2472
+ "Ultra-Display-Namen und -Avatare der User werden automatisch integriert."
2473
+
2474
+ #: options/options-layouts/settings-integrations.php:60
2475
+ msgid ""
2476
+ "This code will integrate User Pro profile URL with wpDiscuz. User Pro "
2477
+ "Display Names and Avatars will be integrated automatically."
2478
+ msgstr ""
2479
+ "Dieser Code integriert die User-Pro-Profil-URL in wpDiscuz. User-Pro-Display-"
2480
+ "Namen und -Avatare werden automatisch integriert."
2481
+
2482
+ #: options/options-layouts/settings-integrations.php:91
2483
+ msgid ""
2484
+ "This code consists of two parts, which will integrate Ultimate Member "
2485
+ "profile Display Name and Profile URL with wpDiscuz. UM Avatars will be "
2486
+ "integrated automatically."
2487
+ msgstr ""
2488
+ "Dieser Code besteht aus zwei Teilen, der einmal den Ultimate-Member-Profile-"
2489
+ "Display-Name und die Profile-URL mit wpDiscuz integriert. UM-Avatare werden "
2490
+ "automatisch integriert."
2491
+
2492
+ #: options/options-layouts/settings-integrations.php:125
2493
+ msgid ""
2494
+ "This code will integrate MyCred User Ranks and Badges under comment author "
2495
+ "avatar."
2496
+ msgstr ""
2497
+ "Dieser Code wird MyCred User Ranks und Badges unter Avatar des "
2498
+ "Kommentarautors integrieren."
2499
+
2500
+ #: options/options-layouts/settings-list.php:7
2501
+ msgid "Comment List Settings"
2502
+ msgstr "Kommentarliste Einstellungen"
2503
+
2504
+ #: options/options-layouts/settings-list.php:12
2505
+ msgid "Display only parent comments and <u>view replies &or;</u> button"
2506
+ msgstr ""
2507
+ "Zeigen Sie nur übergeordnete Kommentare und <u>Antworten anzeigen &or;</u> an"
2508
+
2509
+ #: options/options-layouts/settings-list.php:14
2510
+ msgid ""
2511
+ "If this option is enabled only parent comment will be displayed. This "
2512
+ "increases page load speed and keeps pages light. If visitor wants to read "
2513
+ "replies he/she just need to click on [view replies (12)] button located on "
2514
+ "all parent comments which have replies."
2515
+ msgstr ""
2516
+ "Wenn diese Option aktiviert ist, wird nur der übergeordnete Kommentar "
2517
+ "angezeigt. Dies erhöht die Seitenladegeschwindigkeit und hält Seiten leicht. "
2518
+ "Wenn der Besucher Antworten lesen möchte, muss er nur auf die Schaltfläche "
2519
+ "[Antworten anzeigen (12)] klicken, die sich auf allen Elternkommentaren "
2520
+ "befindet, die Antworten haben."
2521
+
2522
+ #: options/options-layouts/settings-list.php:24
2523
+ msgid "Show sorting buttons"
2524
+ msgstr "Kommentar Sortierungsoptionen anzeigen"
2525
+
2526
+ #: options/options-layouts/settings-list.php:25
2527
+ msgid ""
2528
+ "This option enables comment sorting buttons (newest | oldest | most voted). "
2529
+ "Sorting buttons are not available for the default comments pagination type "
2530
+ "[1][2][3]... It's only active for [Load more] and other AYAX pagination "
2531
+ "types."
2532
+ msgstr ""
2533
+ "Diese Option aktiviert Schaltflächen zum Sortieren der Kommentare (neueste | "
2534
+ "älteste | am häufigsten gewählte). Sortierschaltflächen sind für den "
2535
+ "Standardkommentar-Seitentyp [1] [2] [3] nicht verfügbar. Er ist nur für "
2536
+ "[Mehr laden] und andere AYAX-Paginationsarten aktiv."
2537
+
2538
+ #: options/options-layouts/settings-list.php:34
2539
+ msgid "Set comments ordering to \"Most voted\" by default "
2540
+ msgstr "Kommentare standartmäßig nach \"meiste Stimmen\" sortieren "
2541
+
2542
+ #: options/options-layouts/settings-list.php:43
2543
+ msgid "Reverse child comments order"
2544
+ msgstr "Umgekehrte Reihenfolge der untergeordneten Kommentare"
2545
+
2546
+ #: options/options-layouts/settings-list.php:52
2547
+ msgid "Comments loading/pagination type"
2548
+ msgstr "Lade/Seiten-Typ der Kommentare"
2549
+
2550
+ #: options/options-layouts/settings-list.php:54
2551
+ msgid ""
2552
+ "You can manage the number of comments for [Load more] option in Settings > "
2553
+ "Discussion page, using \"Break comments into pages with [X] top level "
2554
+ "comments per page\" option. To show the default Wordpress comment pagination "
2555
+ "you should enable the checkbox on bigining of the same option."
2556
+ msgstr ""
2557
+ "Sie können die Anzahl der Kommentare für die Option [Mehr laden] unter "
2558
+ "\"Einstellungen > Diskussionsseite\" mit der Option \"Kommentare in Seiten "
2559
+ "mit [X] Top-Level-Kommentaren pro Seite teilen\" verwalten. Um die "
2560
+ "standardmäßige Wordpress-Kommentar-Paginierung anzuzeigen, sollten Sie das "
2561
+ "Kontrollkästchen für Bigining derselben Option aktivieren."
2562
+
2563
+ #: options/options-layouts/settings-list.php:60
2564
+ #: options/options-layouts/settings-list.php:62
2565
+ msgid "[Load more] Button"
2566
+ msgstr "[Mehr laden] Schaltfläche"
2567
+
2568
+ #: options/options-layouts/settings-list.php:64
2569
+ #: options/options-layouts/settings-list.php:66
2570
+ msgid "[Load rest of all comments] Button"
2571
+ msgstr "[Rest von allen Kommentaren laden] Schaltfläche"
2572
+
2573
+ #: options/options-layouts/settings-list.php:68
2574
+ #: options/options-layouts/settings-list.php:70
2575
+ msgid "Load all comments"
2576
+ msgstr "Lade alle Kommentare"
2577
+
2578
+ #: options/options-layouts/settings-list.php:72
2579
+ #: options/options-layouts/settings-list.php:74
2580
+ msgid "Lazy load comments on scrolling"
2581
+ msgstr "Scroll-Funktion (Lädt automatisch neue Kommentare am Ende der Seite)"
2582
+
2583
+ #: options/options-layouts/settings-list.php:81
2584
+ msgid ""
2585
+ "The number of words before breaking comment text and showing \"Read more\" "
2586
+ "link"
2587
+ msgstr ""
2588
+ "Die Anzahl der Wörter vor dem Umbrechen des Kommentartextes und Anzeigen des "
2589
+ "Links \"Lesen Sie mehr\" "
2590
+
2591
+ #: options/options-layouts/settings-list.php:83
2592
+ msgid "Set this option value 0, to turn off comment text breaking function."
2593
+ msgstr ""
2594
+ "Legen Sie diesen Optionswert auf 0 fest, um die "
2595
+ "Kommentartextunterbrechungsfunktion zu deaktivieren."
2596
+
2597
+ #: options/options-layouts/settings-list.php:90
2598
+ msgid "Comment components"
2599
+ msgstr "Kommentar Komponenten"
2600
+
2601
+ #: options/options-layouts/settings-list.php:95
2602
+ msgid "Hide comment link"
2603
+ msgstr "\"Kommentar beantworten\" Link verbergen"
2604
+
2605
+ #: options/options-layouts/settings-list.php:98
2606
+ msgid "Hide comment date"
2607
+ msgstr "Kommentardatum ausblenden"
2608
+
2609
+ #: options/options-layouts/settings-list.php:101
2610
+ msgid "Hide Commenter Labels"
2611
+ msgstr "Kennzeichnung von Autoren verbergen"
2612
+
2613
+ #: options/options-layouts/settings-list.php:109
2614
+ msgid "Hide Voting buttons"
2615
+ msgstr "Abstimm-Schaltflächen verbergen"
2616
+
2617
+ #: options/options-layouts/settings-list.php:117
2618
+ msgid "Comment voting buttons icon"
2619
+ msgstr "Kommentar Voting Buttonsymbol"
2620
+
2621
+ #: options/options-layouts/settings-list.php:135
2622
+ msgid "Comment voting statistic mode"
2623
+ msgstr "Kommentar Voting Statistik-Modus"
2624
+
2625
+ #: options/options-layouts/settings-list.php:139
2626
+ msgid "total count"
2627
+ msgstr "Gesamtzahl"
2628
+
2629
+ #: options/options-layouts/settings-list.php:140
2630
+ msgid "separate count"
2631
+ msgstr "Separate Zählung"
2632
+
2633
+ #: options/options-layouts/settings-list.php:146
2634
+ msgid "Allow guests to vote on comments"
2635
+ msgstr "Abstimmen erlauben auch für Gäste"
2636
+
2637
+ #: options/options-layouts/settings-list.php:155
2638
+ msgid "Display Ratings"
2639
+ msgstr "Bewertungen anzeigen"
2640
+
2641
+ #: options/options-layouts/settings-list.php:160
2642
+ msgid "Before Content"
2643
+ msgstr "Vor dem Inhalt"
2644
+
2645
+ #: options/options-layouts/settings-list.php:162
2646
+ msgid "After Content"
2647
+ msgstr "Nach dem Inhalt"
2648
+
2649
+ #: options/options-layouts/settings-list.php:163
2650
+ msgid "Display ratings on none singular pages"
2651
+ msgstr "Bewertungen nicht auf einzelnen Seiten anzeigen"
2652
+
2653
+ #: options/options-layouts/settings-list.php:169
2654
+ msgid "Disable Profiles URL"
2655
+ msgstr "Profil URLs deaktivieren"
2656
+
2657
+ #: options/options-layouts/settings-live-update.php:12
2658
+ msgid "Live update options"
2659
+ msgstr "Live Update Optionen"
2660
+
2661
+ #: options/options-layouts/settings-live-update.php:13
2662
+ msgid ""
2663
+ "wpDiscuz live update is very light and doesn't overload your server. However "
2664
+ "we recommend to monitor your server resources if you're on a Shared hosting "
2665
+ "plan. There are some very weak hosting plans which may not be able to "
2666
+ "perform very frequently live update requests. If you found some issue you "
2667
+ "can set the option below 30 seconds or more."
2668
+ msgstr ""
2669
+ "wpDiscuz Live Update ist sehr leicht und überlastet Ihren Server nicht. Wir "
2670
+ "empfehlen jedoch, Ihre Serverressourcen zu überwachen, wenn Sie einen Shared "
2671
+ "Hosting-Plan haben. Es gibt einige sehr schwache Hosting-Pläne, die "
2672
+ "möglicherweise nicht in der Lage sind, Live-Update-Anfragen sehr häufig "
2673
+ "durchzuführen. Wenn Sie ein Ergebnis vorliegen haben, können Sie die Option "
2674
+ "unter 30 Sekunden oder länger einstellen."
2675
+
2676
+ #: options/options-layouts/settings-live-update.php:18
2677
+ msgid "Never update"
2678
+ msgstr "Nie Aktualisieren"
2679
+
2680
+ #: options/options-layouts/settings-live-update.php:20
2681
+ msgid "Turn off \"Live Update\" function"
2682
+ msgstr "Schalten Sie die Funktion „Live-Update“ aus"
2683
+
2684
+ #: options/options-layouts/settings-live-update.php:22
2685
+ msgid "Show new comment/reply buttons to update manualy"
2686
+ msgstr ""
2687
+ "Zeige neue Kommentar- / Antwort-Links, um Deinen Besuchern manuelles "
2688
+ "Aktualisieren zu ermöglichen"
2689
+
2690
+ #: options/options-layouts/settings-live-update.php:24
2691
+ msgid "Always check for new comments and show update buttons"
2692
+ msgstr "Immer auf neue Kommentare prüfen und Update Button anzeigen"
2693
+
2694
+ #: options/options-layouts/settings-live-update.php:26
2695
+ msgid "Always update"
2696
+ msgstr "Immer Aktualisieren"
2697
+
2698
+ #: options/options-layouts/settings-live-update.php:28
2699
+ msgid "Always check for new comments and update automatically"
2700
+ msgstr "Automatsche Prüfung und Aktualisierung für neue Kommentare"
2701
+
2702
+ #: options/options-layouts/settings-live-update.php:35
2703
+ msgid "Disable live update for guests"
2704
+ msgstr "Live Updates für Gäste deaktivieren"
2705
+
2706
+ #: options/options-layouts/settings-live-update.php:44
2707
+ msgid "Update comment list every"
2708
+ msgstr "Update Kommentar-Liste alle"
2709
+
2710
+ #: options/options-layouts/settings-live-update.php:49
2711
+ #: options/options-layouts/settings-live-update.php:50
2712
+ #: options/options-layouts/settings-live-update.php:51
2713
+ msgid "Seconds"
2714
+ msgstr "Sekunden"
2715
+
2716
+ #: options/options-layouts/settings-live-update.php:52
2717
+ #: options/phrases-layouts/phrases-datetime.php:43
2718
+ msgid "Minute"
2719
+ msgstr "Minute"
2720
+
2721
+ #: options/options-layouts/settings-social.php:12
2722
+ msgid "User agreement prior to a social login action"
2723
+ msgstr "Benutzervereinbarung vor einer Social Login Aktion"
2724
+
2725
+ #: options/options-layouts/settings-social.php:13
2726
+ msgid ""
2727
+ "If this option is enabled, all Social Login buttons become not-clickable "
2728
+ "until user accept automatic account creation process based on his/her Social "
2729
+ "Network Account shared information (email, name). This checkbox and "
2730
+ "appropriate information will be displayed when user click on a social login "
2731
+ "button, prior to the login process. This extra step is added to comply with "
2732
+ "the GDPR"
2733
+ msgstr ""
2734
+ "Wenn diese Option aktiviert ist, können alle Schaltflächen für die Social-"
2735
+ "Anmeldung nicht angeklickt werden, bis der Benutzer den automatischen "
2736
+ "Kontoerstellungsprozess, basierend auf den Informationen seines sozialen "
2737
+ "Netzwerkkontos (E-Mail, Name), akzeptiert. Dieses Kontrollkästchen und die "
2738
+ "entsprechenden Informationen werden angezeigt, wenn der Benutzer vor dem "
2739
+ "Anmeldevorgang auf eine Schaltfläche für die Social-Anmeldung klickt. Dieser "
2740
+ "zusätzliche Schritt wird hinzugefügt, um der DSGVO zu entsprechen"
2741
+
2742
+ #: options/options-layouts/settings-social.php:13
2743
+ msgid ""
2744
+ "The note text and the label of this checkbox can be managed in Comments > "
2745
+ "Phrases > Social Login tab."
2746
+ msgstr ""
2747
+ "Der Notizentext und die Beschriftung dieses Kontrollkästchens können in den "
2748
+ "\"Kommentaren > Phrasen > Social-Login-Tab\" verwaltet werden."
2749
+
2750
+ #: options/options-layouts/settings-social.php:22
2751
+ msgid "Display social login buttons on reply forms"
2752
+ msgstr "Social Login Buttons in Antwortformularen anzeigen"
2753
+
2754
+ #: options/options-layouts/settings-social.php:35
2755
+ msgid "Facebook"
2756
+ msgstr "Facebook"
2757
+
2758
+ #: options/options-layouts/settings-social.php:41
2759
+ msgid ""
2760
+ "To start using Facebook Login and Share Buttons you should get Facebook "
2761
+ "Application Key and Secret for your website. Please follow to this"
2762
+ msgstr ""
2763
+ "Um die Facebook Login und Share Buttons zu verwenden, sollten Sie den "
2764
+ "Facebook Application Key und das Secret für Ihre Website erhalten. Bitte "
2765
+ "folgen Sie dieser"
2766
+
2767
+ #: options/options-layouts/settings-social.php:41
2768
+ #: options/options-layouts/settings-social.php:87
2769
+ #: options/options-layouts/settings-social.php:134
2770
+ #: options/options-layouts/settings-social.php:173
2771
+ #: options/options-layouts/settings-social.php:219
2772
+ msgid "instruction &raquo;"
2773
+ msgstr "Anweisung &raquo;"
2774
+
2775
+ #: options/options-layouts/settings-social.php:47
2776
+ #: options/options-layouts/settings-social.php:93
2777
+ #: options/options-layouts/settings-social.php:140
2778
+ #: options/options-layouts/settings-social.php:179
2779
+ #: options/options-layouts/settings-social.php:225
2780
+ msgid "Enable Login Button"
2781
+ msgstr "Login Button aktivieren"
2782
+
2783
+ #: options/options-layouts/settings-social.php:56
2784
+ #: options/options-layouts/settings-social.php:102
2785
+ #: options/options-layouts/settings-social.php:149
2786
+ #: options/options-layouts/settings-social.php:152
2787
+ #: options/options-layouts/settings-social.php:188
2788
+ #: options/options-layouts/settings-social.php:234
2789
+ msgid "Enable Share Button"
2790
+ msgstr "Teilen Button aktivieren"
2791
+
2792
+ #: options/options-layouts/settings-social.php:65
2793
+ #: options/options-layouts/settings-social.php:68
2794
+ #: options/options-layouts/settings-social.php:243
2795
+ #: options/options-layouts/settings-social.php:245
2796
+ msgid "Aplication ID"
2797
+ msgstr "Application ID"
2798
+
2799
+ #: options/options-layouts/settings-social.php:72
2800
+ #: options/options-layouts/settings-social.php:75
2801
+ #: options/options-layouts/settings-social.php:255
2802
+ #: options/options-layouts/settings-social.php:257
2803
+ msgid "Aplication Secret"
2804
+ msgstr "Application Secret"
2805
+
2806
+ #: options/options-layouts/settings-social.php:81
2807
+ msgid "Twitter"
2808
+ msgstr "Twitter"
2809
+
2810
+ #: options/options-layouts/settings-social.php:87
2811
+ msgid ""
2812
+ "To start using Twitter Login Button you should get Consumer Key and Secret "
2813
+ "for your website. Please follow to this"
2814
+ msgstr ""
2815
+ "Um den Twitter Login Button zu verwenden, sollten Sie den Consumer Key und "
2816
+ "das Secret für Ihre Website erhalten. Bitte folgen Sie dieser"
2817
+
2818
+ #: options/options-layouts/settings-social.php:111
2819
+ #: options/options-layouts/settings-social.php:113
2820
+ msgid "Consumer Key (API Key)"
2821
+ msgstr "Consumer Key (API Key)"
2822
+
2823
+ #: options/options-layouts/settings-social.php:117
2824
+ #: options/options-layouts/settings-social.php:120
2825
+ msgid "Consumer Secret (API Secret)"
2826
+ msgstr "Consumer Secret (API Secret)"
2827
+
2828
+ #: options/options-layouts/settings-social.php:128
2829
+ msgid "Google +"
2830
+ msgstr "Google+"
2831
+
2832
+ #: options/options-layouts/settings-social.php:134
2833
+ msgid ""
2834
+ "To start using Google+ Login Button you should get Client ID for your "
2835
+ "website. Please follow to this"
2836
+ msgstr ""
2837
+ "Um die Google+ Login-Schaltfläche zu verwenden, sollten Sie die Client-ID "
2838
+ "für Ihre Website abrufen. Bitte folgen Sie dieser"
2839
+
2840
+ #: options/options-layouts/settings-social.php:158
2841
+ #: options/options-layouts/settings-social.php:160
2842
+ msgid "Client ID"
2843
+ msgstr "Client ID"
2844
+
2845
+ #: options/options-layouts/settings-social.php:167
2846
+ msgid "VK"
2847
+ msgstr "VK"
2848
+
2849
+ #: options/options-layouts/settings-social.php:173
2850
+ msgid ""
2851
+ "To start using VK Login Button you should get Application ID and Secure Key. "
2852
+ "Please follow to this "
2853
+ msgstr ""
2854
+ "Um VK Login Button zu verwenden, sollten Sie die Application ID und den "
2855
+ "Secure Key erhalten. Bitte folgen Sie dieser "
2856
+
2857
+ #: options/options-layouts/settings-social.php:197
2858
+ #: options/options-layouts/settings-social.php:199
2859
+ msgid "Application ID"
2860
+ msgstr "Application ID"
2861
+
2862
+ #: options/options-layouts/settings-social.php:203
2863
+ #: options/options-layouts/settings-social.php:205
2864
+ msgid "Secure Key"
2865
+ msgstr "Secure Key"
2866
+
2867
+ #: options/options-layouts/settings-social.php:212
2868
+ msgid "OK"
2869
+ msgstr "OK"
2870
+
2871
+ #: options/options-layouts/settings-social.php:218
2872
+ msgid "Getting started with"
2873
+ msgstr "Anfangen mit"
2874
+
2875
+ #: options/options-layouts/settings-social.php:219
2876
+ msgid ""
2877
+ "To get the Aplication ID, Key and Secret, you should create an app using one "
2878
+ "of the supported types (external, Android, iOS), use this"
2879
+ msgstr ""
2880
+ "Um die Application ID, den Key und das Secret zu erhalten, sollten Sie eine "
2881
+ "App mit einem der unterstützten Typen (extern, Android, iOS) erstellen, "
2882
+ "verwenden Sie diese"
2883
+
2884
+ #: options/options-layouts/settings-social.php:249
2885
+ #: options/options-layouts/settings-social.php:251
2886
+ msgid "Aplication Key"
2887
+ msgstr "Application Key"
2888
+
2889
+ #: options/options-layouts/settings-style.php:7
2890
+ msgid "Background and Colors"
2891
+ msgstr "Hintergrund und Farben"
2892
+
2893
+ #: options/options-layouts/settings-style.php:12
2894
+ msgid "Comment Form and Comment List Style"
2895
+ msgstr "Kommentarformular und Kommentarliste Style"
2896
+
2897
+ #: options/options-layouts/settings-style.php:16
2898
+ msgid "Default"
2899
+ msgstr "Standard"
2900
+
2901
+ #: options/options-layouts/settings-style.php:17
2902
+ msgid "Dark"
2903
+ msgstr "Dunkel"
2904
+
2905
+ #: options/options-layouts/settings-style.php:23
2906
+ msgid "Colors"
2907
+ msgstr "Farben"
2908
+
2909
+ #: options/options-layouts/settings-style.php:27
2910
+ #: options/options-layouts/settings-style.php:32
2911
+ #: options/options-layouts/settings-style.php:37
2912
+ #: options/options-layouts/settings-style.php:44
2913
+ #: options/options-layouts/settings-style.php:49
2914
+ #: options/options-layouts/settings-style.php:54
2915
+ #: options/options-layouts/settings-style.php:103
2916
+ #: options/options-layouts/settings-style.php:108
2917
+ #: options/options-layouts/settings-style.php:113
2918
+ #: options/options-layouts/settings-style.php:128
2919
+ msgid "Example: #00FF00"
2920
+ msgstr "Beispiel: #00FF00"
2921
+
2922
+ #: options/options-layouts/settings-style.php:28
2923
+ msgid "Primary Color"
2924
+ msgstr "Primäre Farbe"
2925
+
2926
+ #: options/options-layouts/settings-style.php:33
2927
+ msgid "Subscription Bar Background"
2928
+ msgstr "Abonnementleiste Hintergrund"
2929
+
2930
+ #: options/options-layouts/settings-style.php:38
2931
+ msgid "Comment form fields border"
2932
+ msgstr "Rahmenfarbe der Kommentarfelder"
2933
+
2934
+ #: options/options-layouts/settings-style.php:45
2935
+ msgid "Comment Background"
2936
+ msgstr "Kommentar Hintergrund"
2937
+
2938
+ #: options/options-layouts/settings-style.php:50
2939
+ msgid "Reply Background"
2940
+ msgstr "Antwort Hintergrund"
2941
+
2942
+ #: options/options-layouts/settings-style.php:55
2943
+ msgid "Unread comments background"
2944
+ msgstr "Hintergrundfarbe der ungelesenen Kommentare"
2945
+
2946
+ #: options/options-layouts/settings-style.php:62
2947
+ msgid "Button Colors"
2948
+ msgstr "Button Farben"
2949
+
2950
+ #: options/options-layouts/settings-style.php:66
2951
+ #: options/options-layouts/settings-style.php:76
2952
+ msgid "Text Color"
2953
+ msgstr "Textfarbe"
2954
+
2955
+ #: options/options-layouts/settings-style.php:67
2956
+ msgid "Primary buttons text"
2957
+ msgstr "Primärer Button Text"
2958
+
2959
+ #: options/options-layouts/settings-style.php:70
2960
+ msgid "Background Color"
2961
+ msgstr "Hintergrundfarbe"
2962
+
2963
+ #: options/options-layouts/settings-style.php:71
2964
+ msgid "Primary buttons background"
2965
+ msgstr "Primärer Button Hintergrund"
2966
+
2967
+ #: options/options-layouts/settings-style.php:77
2968
+ msgid "Secondary buttons text"
2969
+ msgstr "Sekundärer Button Text"
2970
+
2971
+ #: options/options-layouts/settings-style.php:80
2972
+ msgid "Border Color"
2973
+ msgstr "Rahmenfarbe"
2974
+
2975
+ #: options/options-layouts/settings-style.php:81
2976
+ msgid "Secondary buttons border"
2977
+ msgstr "Sekundärer Button Rahmen"
2978
+
2979
+ #: options/options-layouts/settings-style.php:87
2980
+ msgid "Up Vote Color"
2981
+ msgstr "Hoch Vote Farbe"
2982
+
2983
+ #: options/options-layouts/settings-style.php:88
2984
+ msgid "Up vote button"
2985
+ msgstr "Hoch Vote Button"
2986
+
2987
+ #: options/options-layouts/settings-style.php:91
2988
+ msgid "Down Vote Color"
2989
+ msgstr "Runter Vote Farbe"
2990
+
2991
+ #: options/options-layouts/settings-style.php:92
2992
+ msgid "Down vote button"
2993
+ msgstr "Runter Vote Button"
2994
+
2995
+ #: options/options-layouts/settings-style.php:99
2996
+ msgid "Rating Star Colors"
2997
+ msgstr "Farben der Bewertungssterne"
2998
+
2999
+ #: options/options-layouts/settings-style.php:104
3000
+ msgid "Rating Stars Hover Color"
3001
+ msgstr "Hover Farbe der Bewertungssterne"
3002
+
3003
+ #: options/options-layouts/settings-style.php:109
3004
+ msgid "Rating Stars Inactive Color"
3005
+ msgstr "Farbe der inaktiven Bewertungssterne"
3006
+
3007
+ #: options/options-layouts/settings-style.php:114
3008
+ msgid "Rating Stars Active Color"
3009
+ msgstr "Farbe der aktiven Bewertungssterne"
3010
+
3011
+ #: options/options-layouts/settings-style.php:121
3012
+ msgid "Commenter Label Colors by User Role"
3013
+ msgstr "Farben von Kommentator Etiketten nach Benutzerrolle"
3014
+
3015
+ #: options/options-layouts/settings-style.php:128
3016
+ msgid "label color"
3017
+ msgstr "Label-Farbe"
3018
+
3019
+ #: options/options-layouts/settings-style.php:139
3020
+ msgid "Comment text size in pixels"
3021
+ msgstr "Textgrösse des Kommentars in Pixel"
3022
+
3023
+ #: options/options-layouts/settings-style.php:154
3024
+ msgid "Do not load Font Awesome css lib"
3025
+ msgstr "Font Awesome css lib nicht laden"
3026
+
3027
+ #: options/options-layouts/settings-style.php:155
3028
+ msgid ""
3029
+ "IMPORTANT: wpDiscuz uses FontAwesome version 5. in case your theme still "
3030
+ "uses the old 4.x versions you should not disable this lib. The theme 4.x "
3031
+ "version doesn't support FontAwesome 5 icons, thus all wpDiscuz icons will be "
3032
+ "lost."
3033
+ msgstr ""
3034
+ "WICHTIG: wpDiscuz verwendet FontAwesome Version 5. Falls Ihr Theme noch die "
3035
+ "alten 4.x Versionen verwendet, sollten Sie dieses Lib nicht deaktivieren. "
3036
+ "Die Theme 4.x Version unterstützt keine FontAwesome 5 Icons, so dass alle "
3037
+ "wpDiscuz Icons verloren gehen."
3038
+
3039
+ #: options/options-layouts/settings-style.php:164
3040
+ msgid "Custom CSS Code"
3041
+ msgstr "Eigenes CSS"
3042
+
3043
+ #: options/options-layouts/settings-subscription.php:7
3044
+ msgid "Email Subscription Settings"
3045
+ msgstr "E-Mail Abonnement-Einstellungen"
3046
+
3047
+ #: options/options-layouts/settings-subscription.php:11
3048
+ msgid "Notify comment author once comment is approved"
3049
+ msgstr "Kommentarautor benachrichtigen, sobald der Kommentar genehmigt wurde"
3050
+
3051
+ #: options/options-layouts/settings-subscription.php:16
3052
+ msgid "Disable subscription confirmation for registered users"
3053
+ msgstr "E-Mail-Abonnement-System für angemeldete Benutzer deaktivieren"
3054
+
3055
+ #: options/options-layouts/settings-subscription.php:25
3056
+ msgid "Disable subscription confirmation for guests"
3057
+ msgstr "Abonnementbestätigung für Gäste deaktivieren"
3058
+
3059
+ #: options/options-layouts/settings-subscription.php:34
3060
+ msgid "Show subscription types in dropdown"
3061
+ msgstr "Abonnententypen im Dropdown-Menü anzeigen"
3062
+
3063
+ #: options/options-layouts/settings-subscription.php:41
3064
+ msgid "Subscribe to all comments of this post"
3065
+ msgstr "Alle Kommentare von diesem Beitrag abonnieren"
3066
+
3067
+ #: options/options-layouts/settings-subscription.php:45
3068
+ msgid "Subscribe to all replies to my comments "
3069
+ msgstr "Alle Antworten zu meinen Kommentaren abonnieren "
3070
+
3071
+ #: options/options-layouts/settings-subscription.php:47
3072
+ #: options/options-layouts/settings-subscription.php:49
3073
+ msgid "Both"
3074
+ msgstr "Beide"
3075
+
3076
+ #: options/options-layouts/settings-subscription.php:57
3077
+ msgid "Show \"Notify of new replies to this comment\""
3078
+ msgstr "Zeigen Sie \"Benachrichtigen bei neuen Antworten zu diesem Kommentar“"
3079
+
3080
+ #: options/options-layouts/settings-subscription.php:59
3081
+ msgid ""
3082
+ "wpDiscuz is the only comment plugin which allows you to subscribe to certain "
3083
+ "comment replies. This option is located above [Post Comment] button in "
3084
+ "comment form. You can disable this subscription way by unchecking this "
3085
+ "option."
3086
+ msgstr ""
3087
+ "wpDiscuz ist bisher das einzige Kommentar-System, welches eMail-Abonnements "
3088
+ "auf einzelne Kommentare / Antworten ermöglicht. Diese Option ist oberhalb "
3089
+ "der [Kommentar veröffentlichen] Schaltfläche im Kommentar-Formular. Um die "
3090
+ "Funktion zu deaktivieren kannst du hier den Options-Haken entfernen."
3091
+
3092
+ #: options/options-layouts/settings-subscription.php:69
3093
+ msgid "\"Notify of new replies to this comment\" checked by default"
3094
+ msgstr ""
3095
+ "\"Benachrichtigung über neue Antworten auf diesen Kommentar\" standardmäßig "
3096
+ "aktiviert"
3097
+
3098
+ #: options/options-layouts/settings-subscription.php:79
3099
+ msgid "Use Postmatic for subscriptions and commenting by email"
3100
+ msgstr ""
3101
+ "Verwenden Sie Postmatic zu Benachrichtigungen bei neuen Kommentare per E-Mail"
3102
+
3103
+ #: options/options-layouts/settings-subscription.php:80
3104
+ msgid ""
3105
+ "Postmatic allows your users subscribe to comments. Instead of just being "
3106
+ "notified, they add a reply right from their inbox."
3107
+ msgstr ""
3108
+ "Postmatic ermöglicht deinen Besuchern sich per E-Mail über neuen Kommentare "
3109
+ "benachrichtigen zu lassen. Zusätzlich können diese direkt im Posteingang "
3110
+ "beantwortet werden."
3111
+
3112
+ #: options/phrases-layouts/phrases-comment.php:7
3113
+ msgid "Comment Template Phrases"
3114
+ msgstr "Kommentarvorlagenphrasen"
3115
+
3116
+ #: options/phrases-layouts/phrases-comment.php:83
3117
+ msgid "Save edited comment button text"
3118
+ msgstr "Speichern des bearbeiteten Kommentars Button Text"
3119
+
3120
+ #: options/phrases-layouts/phrases-comment.php:87
3121
+ msgid "Cancel comment editing button text"
3122
+ msgstr "Verwerfen des bearbeiteten Kommentars Button Text"
3123
+
3124
+ #: options/phrases-layouts/phrases-comment.php:91
3125
+ msgid "Comment read more link text"
3126
+ msgstr "Kommentar Weiterlesen Linktext"
3127
+
3128
+ #: options/phrases-layouts/phrases-comment.php:95
3129
+ msgid "Anonymous commenter name"
3130
+ msgstr "Anonymer Kommentatorname"
3131
+
3132
+ #: options/phrases-layouts/phrases-comment.php:115
3133
+ msgid "Sticky comment icon title"
3134
+ msgstr "Angehefteter Kommentar-Symboltitel"
3135
+
3136
+ #: options/phrases-layouts/phrases-comment.php:135
3137
+ msgid "Closed comment icon title"
3138
+ msgstr "Geschlossener Kommentar-Symboltitel"
3139
+
3140
+ #: options/phrases-layouts/phrases-datetime.php:7
3141
+ msgid "Date/Time Phrases"
3142
+ msgstr "Datum/Zeit Texte"
3143
+
3144
+ #: options/phrases-layouts/phrases-datetime.php:11
3145
+ msgid "Year"
3146
+ msgstr "Jahr"
3147
+
3148
+ #: options/phrases-layouts/phrases-datetime.php:15
3149
+ msgid "Years (Plural Form)"
3150
+ msgstr "Jahre (plural)"
3151
+
3152
+ #: options/phrases-layouts/phrases-datetime.php:19
3153
+ msgid "Month"
3154
+ msgstr "Monat"
3155
+
3156
+ #: options/phrases-layouts/phrases-datetime.php:23
3157
+ msgid "Months (Plural Form)"
3158
+ msgstr "Monate (Plural Form)"
3159
+
3160
+ #: options/phrases-layouts/phrases-datetime.php:27
3161
+ msgid "Day"
3162
+ msgstr "Tag"
3163
+
3164
+ #: options/phrases-layouts/phrases-datetime.php:31
3165
+ msgid "Days (Plural Form)"
3166
+ msgstr "Tage (plural)"
3167
+
3168
+ #: options/phrases-layouts/phrases-datetime.php:39
3169
+ msgid "Hours (Plural Form)"
3170
+ msgstr "Stunden (Plural Form)"
3171
+
3172
+ #: options/phrases-layouts/phrases-datetime.php:47
3173
+ msgid "Minutes (Plural Form)"
3174
+ msgstr "Minuten (Plural Form)"
3175
+
3176
+ #: options/phrases-layouts/phrases-datetime.php:51
3177
+ msgid "Second"
3178
+ msgstr "Sekunde"
3179
+
3180
+ #: options/phrases-layouts/phrases-datetime.php:55
3181
+ msgid "Seconds (Plural Form)"
3182
+ msgstr "Sekunden (plural)"
3183
+
3184
+ #: options/phrases-layouts/phrases-datetime.php:59
3185
+ msgid "Commented \"right now\" text"
3186
+ msgstr "Kommentierte \"gerade jetzt\" den Text"
3187
+
3188
+ #: options/phrases-layouts/phrases-datetime.php:63
3189
+ msgid "Ago text"
3190
+ msgstr "Text zuvor"
3191
+
3192
+ #: options/phrases-layouts/phrases-email.php:17
3193
+ msgid "Email Template Phrases"
3194
+ msgstr "E-Mail Benachrichtungs-Phrasen"
3195
+
3196
+ #: options/phrases-layouts/phrases-email.php:22
3197
+ msgid "Subscription type: Post comments"
3198
+ msgstr "Abonnement-Typ: Kommentare posten"
3199
+
3200
+ #: options/phrases-layouts/phrases-email.php:23
3201
+ msgid "Post comment notification subject"
3202
+ msgstr "Kommentarbenachrichtigungs-Betreff senden"
3203
+
3204
+ #: options/phrases-layouts/phrases-email.php:24
3205
+ #: options/phrases-layouts/phrases-email.php:35
3206
+ #: options/phrases-layouts/phrases-email.php:55
3207
+ #: options/phrases-layouts/phrases-email.php:66
3208
+ #: options/phrases-layouts/phrases-email.php:86
3209
+ #: options/phrases-layouts/phrases-email.php:97
3210
+ #: options/phrases-layouts/phrases-email.php:138
3211
+ #: options/phrases-layouts/phrases-email.php:149
3212
+ #: options/phrases-layouts/phrases-email.php:165
3213
+ #: options/phrases-layouts/phrases-email.php:177
3214
+ msgid "Available shortcodes"
3215
+ msgstr "Verfügbare Shortcodes"
3216
+
3217
+ #: options/phrases-layouts/phrases-email.php:34
3218
+ msgid "Post comment notification content"
3219
+ msgstr "Inhalte für Kommentarbenachrichtigungen senden"
3220
+
3221
+ #: options/phrases-layouts/phrases-email.php:43
3222
+ #: options/phrases-layouts/phrases-email.php:74
3223
+ msgid "Shortcode above will work for registered users only"
3224
+ msgstr "Der obige Shortcode funktioniert nur für registrierte Benutzer"
3225
+
3226
+ #: options/phrases-layouts/phrases-email.php:53
3227
+ msgid "Subscription type: All my comments"
3228
+ msgstr "Abonnementstyp: Alle meine Kommentare"
3229
+
3230
+ #: options/phrases-layouts/phrases-email.php:54
3231
+ #: options/phrases-layouts/phrases-email.php:85
3232
+ msgid "New reply notification subject"
3233
+ msgstr "Neuer Betreff zur Antwortbenachrichtigung"
3234
+
3235
+ #: options/phrases-layouts/phrases-email.php:65
3236
+ #: options/phrases-layouts/phrases-email.php:96
3237
+ msgid "New Reply notification content"
3238
+ msgstr "Neuer Inhalt zur Antwortbenachrichtigung"
3239
+
3240
+ #: options/phrases-layouts/phrases-email.php:84
3241
+ msgid "Subscription type: Single comment"
3242
+ msgstr "Abonnement-Typ: Einzelner Kommentar"
3243
+
3244
+ #: options/phrases-layouts/phrases-email.php:124
3245
+ msgid "Ignore subscription"
3246
+ msgstr "Abonnement ignorieren"
3247
+
3248
+ #: options/phrases-layouts/phrases-email.php:137
3249
+ msgid "Subscription confirmation email subject"
3250
+ msgstr "E-Mail-Betreff der Abonnementbestätigung"
3251
+
3252
+ #: options/phrases-layouts/phrases-email.php:148
3253
+ msgid "Subscription confirmation email content"
3254
+ msgstr "E-Mail-Inhalt der Abonnementbestätigung"
3255
+
3256
+ #: options/phrases-layouts/phrases-email.php:164
3257
+ msgid "Comment approved subject"
3258
+ msgstr "Kommentargenehmigter Betreff"
3259
+
3260
+ #: options/phrases-layouts/phrases-email.php:175
3261
+ msgid "Comment approved message"
3262
+ msgstr "Kommentargenehmigte Nachricht"
3263
+
3264
+ #: options/phrases-layouts/phrases-error.php:7
3265
+ #: options/phrases-layouts/phrases-notification.php:7
3266
+ msgid "Notification Phrases"
3267
+ msgstr "Sätze zu Mitteilungen"
3268
+
3269
+ #: options/phrases-layouts/phrases-error.php:11
3270
+ msgid "Error message for empty field"
3271
+ msgstr "Fehlermeldung für leeres Feld"
3272
+
3273
+ #: options/phrases-layouts/phrases-error.php:15
3274
+ msgid "Error message for invalid email field"
3275
+ msgstr "Bitte überprüfe deine angegebene E-Mail Adresse"
3276
+
3277
+ #: options/phrases-layouts/phrases-error.php:19
3278
+ msgid "Error message for invalid website url field"
3279
+ msgstr "Bitte überprüfe deine angegebene Website Adresse"
3280
+
3281
+ #: options/phrases-layouts/phrases-error.php:23
3282
+ msgid "You can vote only 1 time"
3283
+ msgstr "Du kannst nur ein mal abstimmen"
3284
+
3285
+ #: options/phrases-layouts/phrases-error.php:31
3286
+ msgid "You Cannot Vote On Your Comment"
3287
+ msgstr "Du kannst nicht für deinen Kommentar abstimmen"
3288
+
3289
+ #: options/phrases-layouts/phrases-error.php:35
3290
+ msgid "You are not allowed to vote for this comment (Voting from same IP)"
3291
+ msgstr "Sie dürfen nicht für diesen Kommentar stimmen (IP-Adresse identisch)"
3292
+
3293
+ #: options/phrases-layouts/phrases-error.php:47
3294
+ msgid "Message if input text length is too short"
3295
+ msgstr "Der eingegebene Text für eine Nachricht ist zu kurz"
3296
+
3297
+ #: options/phrases-layouts/phrases-error.php:51
3298
+ msgid "Message if input text length is too long"
3299
+ msgstr "Der eingegebene Text für eine Nachricht ist zu lang"
3300
+
3301
+ #: options/phrases-layouts/phrases-error.php:55
3302
+ msgid "Message if comment was not updated"
3303
+ msgstr "Tut uns leid, aber der Kommentar wurde nicht aktualisiert"
3304
+
3305
+ #: options/phrases-layouts/phrases-error.php:59
3306
+ msgid "Message if comment no longer possible to edit"
3307
+ msgstr "Tut uns leid, aber dieser Kommentar kann nicht mehr verändert werden"
3308
+
3309
+ #: options/phrases-layouts/phrases-error.php:63
3310
+ msgid "Message if comment text not changed"
3311
+ msgstr "Nachricht, wenn Kommentartext nicht verändert wurde"
3312
+
3313
+ #: options/phrases-layouts/phrases-form.php:7
3314
+ msgid "Form Template Phrases"
3315
+ msgstr "Sätze für Formularvorlagen"
3316
+
3317
+ #: options/phrases-layouts/phrases-form.php:11
3318
+ msgid "Comment Field Start"
3319
+ msgstr "Kommentarfeld Start"
3320
+
3321
+ #: options/phrases-layouts/phrases-form.php:15
3322
+ msgid "Comment Field Join"
3323
+ msgstr "Kommentarfeld Beitreten"
3324
+
3325
+ #: options/phrases-layouts/phrases-form.php:47
3326
+ msgid "Email Field"
3327
+ msgstr "E-Mail Feld"
3328
+
3329
+ #: options/phrases-layouts/phrases-form.php:59
3330
+ msgid "Notify on new comments"
3331
+ msgstr "Benachrichtigen bei neuen Kommentaren"
3332
+
3333
+ #: options/phrases-layouts/phrases-form.php:63
3334
+ msgid "Notify on all new replies"
3335
+ msgstr "Benachrichtigen bei allen neuen Antworten"
3336
+
3337
+ #: options/phrases-layouts/phrases-form.php:67
3338
+ msgid "Notify on new replies (checkbox) - On"
3339
+ msgstr "Bei neuen Antworten benachrichtigen (Checkbox) - EIN"
3340
+
3341
+ #: options/phrases-layouts/phrases-form.php:71
3342
+ msgid "Notify on new replies (checkbox) - Off"
3343
+ msgstr "Bei neuen Antworten benachrichtigen (Checkbox) - AUS"
3344
+
3345
+ #: options/phrases-layouts/phrases-form.php:91
3346
+ msgid "Subscribed on this comment replies"
3347
+ msgstr ""
3348
+ "Sie erhalten Benachrichtigungen für allen weiteren Reaktionen zu diesen "
3349
+ "Kommentar"
3350
+
3351
+ #: options/phrases-layouts/phrases-form.php:95
3352
+ msgid "Subscribed on all your comments replies"
3353
+ msgstr ""
3354
+ "Sie erhalten Benachrichtigungen für alle weiteren Reaktionen zu all Ihren "
3355
+ "Kommentaren"
3356
+
3357
+ #: options/phrases-layouts/phrases-form.php:99
3358
+ msgid "Subscribed on this post"
3359
+ msgstr "Diesen Beitrag abonnieren"
3360
+
3361
+ #: options/phrases-layouts/phrases-form.php:103
3362
+ msgid "Form subscription button"
3363
+ msgstr "Formular Abonnement Schaltfläche"
3364
+
3365
+ #: options/phrases-layouts/phrases-form.php:107
3366
+ msgid "Invisible Antispam Protection note"
3367
+ msgstr "Hinweis für den unsichtbaren Antispam-Schutz"
3368
+
3369
+ #: options/phrases-layouts/phrases-general.php:7
3370
+ msgid "General Phrases"
3371
+ msgstr "Generelle Sätze"
3372
+
3373
+ #: options/phrases-layouts/phrases-general.php:11
3374
+ msgid "Be the first to comment"
3375
+ msgstr "Hinterlassen Sie einen ersten Kommentar"
3376
+
3377
+ #: options/phrases-layouts/phrases-general.php:15
3378
+ msgid "Load More Button"
3379
+ msgstr "Mehr anzeigen Taste"
3380
+
3381
+ #: options/phrases-layouts/phrases-general.php:23
3382
+ msgid "Button text if has new comment"
3383
+ msgstr "Button Text bei neuem Kommentar"
3384
+
3385
+ #: options/phrases-layouts/phrases-general.php:27
3386
+ msgid "Button text if has new comments (Plural Form)"
3387
+ msgstr "Button Text bei neuen Kommentaren"
3388
+
3389
+ #: options/phrases-layouts/phrases-general.php:31
3390
+ msgid "Button text if has new reply"
3391
+ msgstr "Button Text bei neuer Antwort"
3392
+
3393
+ #: options/phrases-layouts/phrases-general.php:35
3394
+ msgid "Button text if has new replies (Plural Form)"
3395
+ msgstr "Button Text bei neuen Antworten"
3396
+
3397
+ #: options/phrases-layouts/phrases-notification.php:24
3398
+ msgid "Postmatic subscription label"
3399
+ msgstr "Postmatic Abonnement-Label"
3400
+
3401
+ #: options/phrases-layouts/phrases-notification.php:42
3402
+ msgid "Logged In"
3403
+ msgstr "Angemeldet"
3404
+
3405
+ #: options/phrases-layouts/phrases-notification.php:46
3406
+ msgid "To post a comment"
3407
+ msgstr "um ein Kommentar schreiben zu können."
3408
+
3409
+ #: options/phrases-layouts/phrases-notification.php:50
3410
+ msgid "Logged in as"
3411
+ msgstr "Angemeldet als"
3412
+
3413
+ #: options/phrases-layouts/phrases-notification.php:62
3414
+ msgid "Login To Vote"
3415
+ msgstr "Zum Abstimmen bitte anmelden"
3416
+
3417
+ #: options/phrases-layouts/phrases-notification.php:66
3418
+ msgid "Comment waiting moderation"
3419
+ msgstr "Kommentar wartet auf Moderation"
3420
+
3421
+ #: options/phrases-layouts/phrases-notification.php:70
3422
+ msgid "Message if commenting disabled by user role"
3423
+ msgstr ""
3424
+ "Nachricht, wenn das Kommentieren durch die Benutzerrolle deaktiviert ist"
3425
+
3426
+ #: options/phrases-layouts/phrases-social-login.php:15
3427
+ msgid "Social login agreement label"
3428
+ msgstr "Label für soziale Login-Vereinbarung"
3429
+
3430
+ #: options/phrases-layouts/phrases-social-login.php:19
3431
+ msgid "Social login agreement description"
3432
+ msgstr "Beschreibung der sozialen Login-Vereinbarung"
3433
+
3434
+ #: options/phrases-layouts/phrases-user-settings.php:7
3435
+ msgid "User Settings Phrases"
3436
+ msgstr "Benutzereinstellungen zu Phrasen"
3437
+
3438
+ #: options/phrases-layouts/phrases-user-settings.php:31
3439
+ msgid "\"Bulk management via email\" description"
3440
+ msgstr "\"Massenverwaltung per E-Mail\" Beschreibung"
3441
+
3442
+ #: options/phrases-layouts/phrases-user-settings.php:59
3443
+ msgid "Delete all comments email text"
3444
+ msgstr "Löschen Sie den gesamten E-Mail-Text für Kommentare"
3445
+
3446
+ #: options/phrases-layouts/phrases-user-settings.php:67
3447
+ msgid "Delete all subscriptions email text"
3448
+ msgstr "Lösche den gesamten E-Mail-Text für Abonnements"
3449
+
3450
+ #: options/tools-layouts/options-export.php:9
3451
+ msgid ""
3452
+ "Using this tool you can migrate or backup/restore wpDiscuz options from one "
3453
+ "WordPress to another."
3454
+ msgstr ""
3455
+ "Mit diesem Tool können Sie wpDiscuz Optionen von einem WordPress zum anderen "
3456
+ "migrieren oder sichern / wiederherstellen."
3457
+
3458
+ #: options/tools-layouts/options-export.php:20
3459
+ msgid "Download Options"
3460
+ msgstr "Download Optionen"
3461
+
3462
+ #: options/tools-layouts/options-export.php:28
3463
+ msgid "Backup Options"
3464
+ msgstr "Backup-Optionen"
3465
+
3466
+ #: options/tools-layouts/options-import.php:9
3467
+ msgid ""
3468
+ "Here you can import and restore wpDiscuz options. You just need to choose "
3469
+ "backup file and click import options."
3470
+ msgstr ""
3471
+ "Hier können Sie wpDiscuz-Optionen importieren und wiederherstellen. Sie "
3472
+ "müssen nur die Sicherungsdatei auswählen und auf Importoptionen klicken."
3473
+
3474
+ #: options/tools-layouts/options-import.php:22
3475
+ msgid "Import Options"
3476
+ msgstr "Import-Optionen"
3477
+
3478
+ #: options/tools-layouts/subscriptions-import.php:11
3479
+ msgid ""
3480
+ "Using this tool you can import subscriptions from other plugins to wpDiscuz."
3481
+ msgstr ""
3482
+ "Mit diesem Tool können Sie Abonnements von anderen Plugins in wpDiscuz "
3483
+ "importieren."
3484
+
3485
+ #: options/tools-layouts/subscriptions-import.php:19
3486
+ msgid "Import subscriptions from Subscribe To Comments Reloaded"
3487
+ msgstr "Abonnements von Abonnenten in neu geladene Kommentare importieren"
3488
+
3489
+ #: options/tools-layouts/subscriptions-import.php:20
3490
+ msgid "Import subscriptions from \"Subscribe To Comments Reloaded\" plugin"
3491
+ msgstr ""
3492
+ "Importiere Abonnements von dem \"Subscribe To Comments Reloaded\" -Plugin"
3493
+
3494
+ #: options/tools-layouts/tools-other.php:16
3495
+ msgid "Update vote data"
3496
+ msgstr "Voting Daten aktualisieren"
3497
+
3498
+ #: options/tools-layouts/tools-other.php:18
3499
+ msgid ""
3500
+ "We recommend use this tool to do one way hashing of commenter IP addresses "
3501
+ "to 32 bit strings, so you'll keep less personal information of your "
3502
+ "commenters. This tool only hashes voter IP addresses. You also can stop "
3503
+ "saving of commenter IP addresses in comments database table using this "
3504
+ "instruction "
3505
+ msgstr ""
3506
+ "Wir empfehlen, dieses Tool zu verwenden, um Singlemode-IP-Adressen auf 32-"
3507
+ "Bit-Strings zu reduzieren, so dass Sie weniger persönliche Informationen "
3508
+ "über Ihre Kommentatoren behalten. Dieses Tool hat nur Voter-IP-Adressen. Sie "
3509
+ "können mit dieser Anweisung auch das Speichern von Kommentar-IP-Adressen in "
3510
+ "der Kommentardatenbanktabelle stoppen "
3511
+
3512
+ #: options/tools-layouts/tools-other.php:26
3513
+ msgid "Start Hashing"
3514
+ msgstr "Starte das Hashing"
3515
+
3516
+ #: options/tools-layouts/tools-other.php:27
3517
+ msgid "Hash users IP addresses"
3518
+ msgstr "Hash-Benutzer IP-Adressen"
3519
+
3520
+ #: templates/comment/comment-form.php:61
3521
+ msgid "Your comments have been deleted from database"
3522
+ msgstr "Ihre Kommentare wurden aus der Datenbank gelöscht"
3523
+
3524
+ #: templates/comment/comment-form.php:72
3525
+ msgid "You cancel all your subscriptions successfully"
3526
+ msgstr "Sie haben alle Ihre Abonnements erfolgreich storniert"
3527
+
3528
+ #: templates/comment/comment-form.php:99
3529
+ msgid "Unable to send an email"
3530
+ msgstr "Leider kann aktuell keine E-Mail versendet werden"
3531
+
3532
+ #: templates/comment/comment-form.php:101
3533
+ msgid "Subscription Fault"
3534
+ msgstr "Abonnementfehler"
3535
+
3536
+ #: utils/class.WpdiscuzHelper.php:216 utils/class.WpdiscuzHelper.php:219
3537
+ msgid "Spoiler"
3538
+ msgstr "Spoiler"
3539
+
3540
+ #: utils/class.WpdiscuzHelper.php:312
3541
+ msgid "Sticky"
3542
+ msgstr "Sticky"
3543
+
3544
+ #: utils/class.WpdiscuzHelper.php:524
3545
+ msgid "Before using wpDiscuz you should update your data"
3546
+ msgstr "Bevor Sie wpDiscuz verwenden, sollten Sie Ihre Daten aktualisieren"
3547
+
3548
+ #: utils/class.WpdiscuzHelper.php:525
3549
+ msgid "Go to update data"
3550
+ msgstr "Gehen Sie zu Daten aktualisieren"
3551
+
3552
+ #: utils/deactivation-reason-modal.php:10
3553
+ msgid "Plugin Usage Feedback"
3554
+ msgstr "Feedback zur Plugin-Nutzung"
3555
+
3556
+ #: utils/deactivation-reason-modal.php:13
3557
+ msgid ""
3558
+ "Please let us know why you are deactivating. Choosing one of the options "
3559
+ "below you will help us make it better for you and for other users."
3560
+ msgstr ""
3561
+ "Bitte lassen Sie uns wissen, warum Sie das PlugIn deaktivieren. Wenn Sie "
3562
+ "eine der folgenden Optionen auswählen, dann können wir für Sie und andere "
3563
+ "Nutzer das PlugIn verbessern."
3564
+
3565
+ #: utils/deactivation-reason-modal.php:19
3566
+ msgid "I'll reactivate it later"
3567
+ msgstr "Ich reaktiviere es später"
3568
+
3569
+ #: utils/deactivation-reason-modal.php:23
3570
+ msgid "The plugin is not working"
3571
+ msgstr "Das PlugIn funktioniert nicht"
3572
+
3573
+ #: utils/deactivation-reason-modal.php:24
3574
+ msgid "What kind of problems do you have?"
3575
+ msgstr "Welche Probleme haben Sie?"
3576
+
3577
+ #: utils/deactivation-reason-modal.php:28
3578
+ msgid "It's not what I was looking for"
3579
+ msgstr "Es ist nicht das, was ich suchte"
3580
+
3581
+ #: utils/deactivation-reason-modal.php:32
3582
+ msgid "I couldn't understand how to make it work"
3583
+ msgstr "Ich habe nicht verstanden, wie es funktioniert"
3584
+
3585
+ #: utils/deactivation-reason-modal.php:33
3586
+ #: utils/deactivation-reason-modal.php:38
3587
+ msgid "What type of features you want to be in the plugin?"
3588
+ msgstr "Welche Arten von Funktionen möchten Sie mit dem Plugin haben?"
3589
+
3590
+ #: utils/deactivation-reason-modal.php:37
3591
+ msgid "The plugin is great, but I need specific features"
3592
+ msgstr "Das Plugin ist toll, aber ich brauche spezielle Funktionen"
3593
+
3594
+ #: utils/deactivation-reason-modal.php:42
3595
+ msgid "I didn't like plugin design"
3596
+ msgstr "Mir gefiel das Plugin-Design nicht"
3597
+
3598
+ #: utils/deactivation-reason-modal.php:43
3599
+ msgid "What part of design you don't like or want to change?"
3600
+ msgstr "Welcher Teil des Designs, das Ihnen nicht gefiel, möchten Sie ändern?"
3601
+
3602
+ #: utils/deactivation-reason-modal.php:47
3603
+ msgid "The plugin works very slow"
3604
+ msgstr "Das Plugin arbeitet sehr langsam"
3605
+
3606
+ #: utils/deactivation-reason-modal.php:48
3607
+ msgid ""
3608
+ "Could you please describe which features of the plugin slows down your "
3609
+ "website?"
3610
+ msgstr ""
3611
+ "Beschreiben Sie bitte, welche Funktionen des Plugins Ihre Website "
3612
+ "verlangsamte?"
3613
+
3614
+ #: utils/deactivation-reason-modal.php:52
3615
+ msgid "I found a better plugin"
3616
+ msgstr "Ich fand ein besseres Plugin"
3617
+
3618
+ #: utils/deactivation-reason-modal.php:53
3619
+ msgid "Please provide a plugin name or URL"
3620
+ msgstr "Bitte geben Sie einen Plugin-Namen oder die URL an"
3621
+
3622
+ #: utils/deactivation-reason-modal.php:62
3623
+ msgid "Dismiss and never show again"
3624
+ msgstr "Ausblenden und nicht wieder anzeigen"
3625
+
3626
+ #: utils/deactivation-reason-modal.php:63
3627
+ msgid "Submit &amp; Deactivate"
3628
+ msgstr "Absenden &amp; deaktivieren"
3629
+
3630
+ #: utils/deactivation-reason-modal.php:66
3631
+ msgid "Thank you for your feedback!"
3632
+ msgstr "Vielen Dank für Ihr Feedback!"
3633
+
3634
+ #: utils/layouts/activity/item.php:28
3635
+ msgid "Delete this comment"
3636
+ msgstr "Diesen Kommentar löschen"
3637
+
3638
+ #: utils/layouts/pagination.php:22
3639
+ msgid "&laquo;"
3640
+ msgstr "&laquo;"
3641
+
3642
+ #: utils/layouts/pagination.php:28
3643
+ msgid "&lsaquo;"
3644
+ msgstr "&lsaquo;"
3645
+
3646
+ #: utils/layouts/pagination.php:52
3647
+ msgid "&raquo;"
3648
+ msgstr "&raquo;"
3649
+
3650
+ #: utils/layouts/subscriptions/item.php:23
3651
+ msgid "Cancel this subscription"
3652
+ msgstr "Dieses Abonnement abbestellen"
3653
+
3654
+ #. Plugin Name of the plugin/theme
3655
+ msgid "wpDiscuz"
3656
+ msgstr "wpDiscuz"
3657
+
3658
+ #. Plugin URI of the plugin/theme
3659
+ msgid "http://wpdiscuz.com/"
3660
+ msgstr "http://wpdiscuz.com/"
3661
+
3662
+ #. Description of the plugin/theme
3663
+ msgid ""
3664
+ "Better comment system. Wordpress post comments and discussion plugin. Allows "
3665
+ "your visitors discuss, vote for comments and share."
3666
+ msgstr ""
3667
+ "Besseres Kommentar-System. Wordpress-Post-Kommentare und Diskussions-Plugin. "
3668
+ "Erlaubt Ihren Besuchern zu diskutieren, für Kommentare zu stimmen und zu "
3669
+ "teilen."
3670
+
3671
+ #. Author of the plugin/theme
3672
+ msgid "gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
3673
+ msgstr "Team gVectors (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
3674
+
3675
+ #. Author URI of the plugin/theme
3676
+ msgid "https://gvectors.com/"
3677
+ msgstr ""
languages/wpdiscuz.pot CHANGED
@@ -1,3541 +1,3556 @@
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-07-15 15:58+0000\n"
7
- "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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: Loco https://localise.biz/\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
- "Language: "
23
-
24
- #: class.WpdiscuzCore.php:263
25
- msgid "Every 3 hours"
26
- msgstr ""
27
-
28
- #: class.WpdiscuzCore.php:267
29
- msgid "Every 48 hours"
30
- msgstr ""
31
-
32
- #: class.WpdiscuzCore.php:380
33
- msgid "We are sorry, but this comment cannot be posted. Please try later."
34
- msgstr ""
35
-
36
- #: class.WpdiscuzCore.php:389
37
- msgid "We are sorry, you are not allowed to comment more than one time!"
38
- msgstr ""
39
-
40
- #: class.WpdiscuzCore.php:451
41
- msgid "This is closed comment thread"
42
- msgstr ""
43
-
44
- #: class.WpdiscuzCore.php:1107 class.WpdiscuzCore.php:1339
45
- msgid "Settings"
46
- msgstr ""
47
-
48
- #: class.WpdiscuzCore.php:1109 class.WpdiscuzCore.php:1341
49
- msgid "Phrases"
50
- msgstr ""
51
-
52
- #: class.WpdiscuzCore.php:1111
53
- msgid "Tools"
54
- msgstr ""
55
-
56
- #: class.WpdiscuzCore.php:1112 options/html-options.php:22
57
- #: options/html-options.php:64 options/options-layouts/settings-addons.php:14
58
- msgid "Addons"
59
- msgstr ""
60
-
61
- #: class.WpdiscuzCore.php:1124
62
- msgid "Do you really want to reset all options?"
63
- msgstr ""
64
-
65
- #: class.WpdiscuzCore.php:1125
66
- msgid "Do you really want to remove voting data?"
67
- msgstr ""
68
-
69
- #: class.WpdiscuzCore.php:1126
70
- msgid "Do you really want to reset phrases?"
71
- msgstr ""
72
-
73
- #: class.WpdiscuzCore.php:1127
74
- msgid "Do you really want to delete gravatars cache?"
75
- msgstr ""
76
-
77
- #: class.WpdiscuzCore.php:1128
78
- msgid "Do you really want to delete statistics cache?"
79
- msgstr ""
80
-
81
- #: class.WpdiscuzCore.php:1165
82
- msgid "Please check one of reasons before sending feedback!"
83
- msgstr ""
84
-
85
- #: class.WpdiscuzCore.php:1166 utils/deactivation-reason-modal.php:58
86
- msgid "Please provide more information"
87
- msgstr ""
88
-
89
- #: class.WpdiscuzCore.php:1423 options/phrases-layouts/phrases-comment.php:56
90
- msgid "Admin"
91
- msgstr ""
92
-
93
- #: class.WpdiscuzCore.php:1425 class.WpdiscuzCore.php:1434
94
- #: options/phrases-layouts/phrases-comment.php:58
95
- msgid "Author"
96
- msgstr ""
97
-
98
- #: class.WpdiscuzCore.php:1429 options/phrases-layouts/phrases-comment.php:64
99
- msgid "Member"
100
- msgstr ""
101
-
102
- #: class.WpdiscuzCore.php:1435 options/phrases-layouts/phrases-comment.php:62
103
- msgid "Guest"
104
- msgstr ""
105
-
106
- #: forms/wpDiscuzForm.php:105 forms/wpDiscuzForm.php:153
107
- msgid "Forms"
108
- msgstr ""
109
-
110
- #: forms/wpDiscuzForm.php:106 options/html-phrases.php:22
111
- msgid "Form"
112
- msgstr ""
113
-
114
- #: forms/wpDiscuzForm.php:107
115
- msgid "Add New"
116
- msgstr ""
117
-
118
- #: forms/wpDiscuzForm.php:108
119
- msgid "Add New Form"
120
- msgstr ""
121
-
122
- #: forms/wpDiscuzForm.php:109
123
- msgid "Edit Form"
124
- msgstr ""
125
-
126
- #: forms/wpDiscuzForm.php:110
127
- msgid "You did not create any forms yet"
128
- msgstr ""
129
-
130
- #: forms/wpDiscuzForm.php:111
131
- msgid "Nothing found in Trash"
132
- msgstr ""
133
-
134
- #: forms/wpDiscuzForm.php:112
135
- msgid "Search Forms"
136
- msgstr ""
137
-
138
- #: forms/wpDiscuzForm.php:168
139
- msgid "Post Types"
140
- msgstr ""
141
-
142
- #: forms/wpDiscuzForm.php:169
143
- msgid "Post IDs"
144
- msgstr ""
145
-
146
- #: forms/wpDiscuzForm.php:170 forms/wpdFormAttr/Form.php:674
147
- msgid "Language"
148
- msgstr ""
149
-
150
- #: forms/wpDiscuzForm.php:216
151
- msgid "Field Types"
152
- msgstr ""
153
-
154
- #: forms/wpDiscuzForm.php:217 forms/wpdFormAttr/Row.php:23
155
- msgid "Two column"
156
- msgstr ""
157
-
158
- #: forms/wpDiscuzForm.php:218 forms/wpdFormAttr/Row.php:24
159
- #: forms/wpdFormAttr/Field/Field.php:66
160
- msgid "Delete"
161
- msgstr ""
162
-
163
- #: forms/wpDiscuzForm.php:219 forms/wpdFormAttr/Row.php:25
164
- msgid "Move"
165
- msgstr ""
166
-
167
- #: forms/wpDiscuzForm.php:220 forms/wpdFormAttr/Row.php:69
168
- msgid "Add Field"
169
- msgstr ""
170
-
171
- #: forms/wpDiscuzForm.php:221 options/class.WpdiscuzOptionsSerialized.php:788
172
- #: options/phrases-layouts/phrases-comment.php:19
173
- #: forms/wpdFormAttr/Field/Field.php:63
174
- msgid "Edit"
175
- msgstr ""
176
-
177
- #: forms/wpDiscuzForm.php:222
178
- msgid "You can not delete default field."
179
- msgstr ""
180
-
181
- #: forms/wpDiscuzForm.php:223
182
- msgid "You really want to delete this item ?"
183
- msgstr ""
184
-
185
- #: forms/wpDiscuzForm.php:230
186
- msgid "Permission Denied !!!"
187
- msgstr ""
188
-
189
- #: forms/wpDiscuzForm.php:255 forms/wpdFormAttr/Form.php:642
190
- #: options/options-layouts/settings-customfields.php:7
191
- #: forms/wpdFormAttr/html/admin-form-fields-list.php:18
192
- msgid "Custom Fields"
193
- msgstr ""
194
-
195
- #: forms/wpDiscuzForm.php:303
196
- msgid "Custom CSS"
197
- msgstr ""
198
-
199
- #: forms/wpDiscuzForm.php:359
200
- msgid "Default Form"
201
- msgstr ""
202
-
203
- #: forms/wpDiscuzForm.php:392 forms/wpDiscuzForm.php:400
204
- #: forms/wpdFormAttr/Form.php:755 forms/wpdFormAttr/Form.php:755
205
- msgid "Leave a Reply"
206
- msgstr ""
207
-
208
- #: forms/wpDiscuzForm.php:415 forms/wpdFormAttr/Form.php:873
209
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:12
210
- #: forms/wpdFormAttr/Field/CheckboxField.php:12
211
- #: forms/wpdFormAttr/Field/ColorField.php:12
212
- #: forms/wpdFormAttr/Field/CookiesConsent.php:14
213
- #: forms/wpdFormAttr/Field/DateField.php:12
214
- #: forms/wpdFormAttr/Field/HTMLField.php:12
215
- #: forms/wpdFormAttr/Field/NumberField.php:12
216
- #: forms/wpdFormAttr/Field/RadioField.php:12
217
- #: forms/wpdFormAttr/Field/RatingField.php:12
218
- #: forms/wpdFormAttr/Field/SelectField.php:12
219
- #: forms/wpdFormAttr/Field/TextAreaField.php:13
220
- #: forms/wpdFormAttr/Field/TextField.php:12
221
- #: forms/wpdFormAttr/Field/UrlField.php:12
222
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:27
223
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:19
224
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:18
225
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:65
226
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:18
227
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:18
228
- msgid "Name"
229
- msgstr ""
230
-
231
- #: forms/wpDiscuzForm.php:417 options/class.WpdiscuzOptionsSerialized.php:774
232
- #: options/html-phrases.php:25 forms/wpdFormAttr/Form.php:880
233
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:65
234
- msgid "Email"
235
- msgstr ""
236
-
237
- #: forms/wpDiscuzForm.php:419
238
- msgid "WebSite URL"
239
- msgstr ""
240
-
241
- #: forms/wpDiscuzForm.php:422 forms/wpdFormAttr/Form.php:903
242
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:116
243
- msgid "Post Comment"
244
- msgstr ""
245
-
246
- #: forms/wpDiscuzForm.php:443
247
- msgid "Clone"
248
- msgstr ""
249
-
250
- #: forms/wpDiscuzForm.php:481
251
- msgid ""
252
- "Comment Form is not detected, please navigate to form manager page to create "
253
- "it. "
254
- msgstr ""
255
-
256
- #: forms/wpDiscuzForm.php:482
257
- msgid "Add Comment Form"
258
- msgstr ""
259
-
260
- #: options/class.WpdiscuzOptions.php:22 options/class.WpdiscuzOptions.php:139
261
- #: options/class.WpdiscuzOptions.php:364
262
- msgid "Hacker?"
263
- msgstr ""
264
-
265
- #: options/class.WpdiscuzOptions.php:130
266
- msgid "Settings updated"
267
- msgstr ""
268
-
269
- #: options/class.WpdiscuzOptions.php:311
270
- msgid "Phrases updated"
271
- msgstr ""
272
-
273
- #: options/class.WpdiscuzOptions.php:338
274
- msgid "Options were backed up!"
275
- msgstr ""
276
-
277
- #: options/class.WpdiscuzOptions.php:340
278
- msgid "Cannot back up the options!"
279
- msgstr ""
280
-
281
- #: options/class.WpdiscuzOptions.php:351
282
- msgid "Options Imported Successfully!"
283
- msgstr ""
284
-
285
- #: options/class.WpdiscuzOptions.php:353
286
- msgid "Error occured! File content is empty or data is not valid!"
287
- msgstr ""
288
-
289
- #: options/class.WpdiscuzOptions.php:356
290
- msgid "Error occured! Can not get file content!"
291
- msgstr ""
292
-
293
- #: options/class.WpdiscuzOptions.php:359
294
- msgid "Error occured! Please choose file!"
295
- msgstr ""
296
-
297
- #: options/class.WpdiscuzOptions.php:375
298
- msgid ""
299
- "Brings an ocean of emotions to your comments. It comes with an awesome smile "
300
- "package."
301
- msgstr ""
302
-
303
- #: options/class.WpdiscuzOptions.php:376
304
- msgid ""
305
- "Extended information about comment author with Profile, Activity, Votes and "
306
- "Subscriptions Tabs on pop-up window."
307
- msgstr ""
308
-
309
- #: options/class.WpdiscuzOptions.php:377
310
- msgid ""
311
- "Real-time online user checking, pop-up notification of new online users and "
312
- "online/offline badges."
313
- msgstr ""
314
-
315
- #: options/class.WpdiscuzOptions.php:378
316
- msgid ""
317
- "Allows to create private comment threads. Rich management options in "
318
- "dashboard by user roles."
319
- msgstr ""
320
-
321
- #: options/class.WpdiscuzOptions.php:379
322
- msgid ""
323
- "Total control over comment subscriptions. Full list, monitor, manage, filter,"
324
- " unsubscribe, confirm..."
325
- msgstr ""
326
-
327
- #: options/class.WpdiscuzOptions.php:380
328
- msgid ""
329
- "A full-fledged tool-kit for advertising in comment section of your website. "
330
- "Separate banner and ad managment."
331
- msgstr ""
332
-
333
- #: options/class.WpdiscuzOptions.php:381
334
- msgid ""
335
- "Allows to mention comments and users in comment text using #comment-id and "
336
- "@username tags."
337
- msgstr ""
338
-
339
- #: options/class.WpdiscuzOptions.php:382
340
- msgid ""
341
- "See comment likers and voters of each comment. Adds user reputation and "
342
- "badges based on received likes."
343
- msgstr ""
344
-
345
- #: options/class.WpdiscuzOptions.php:383
346
- msgid ""
347
- "Comment reporting tools. Auto-moderates comments based on number of flags "
348
- "and dislikes."
349
- msgstr ""
350
-
351
- #: options/class.WpdiscuzOptions.php:384
352
- msgid ""
353
- "Adds a smart and intuitive AJAX \"Translate\" button with 60 language "
354
- "options. Uses free translation API."
355
- msgstr ""
356
-
357
- #: options/class.WpdiscuzOptions.php:385
358
- msgid ""
359
- "AJAX powered front-end comment search. It starts searching while you type "
360
- "search words. "
361
- msgstr ""
362
-
363
- #: options/class.WpdiscuzOptions.php:386
364
- msgid ""
365
- "Most voted comments, Active comment threads, Most commented posts, Active "
366
- "comment authors"
367
- msgstr ""
368
-
369
- #: options/class.WpdiscuzOptions.php:387
370
- msgid ""
371
- "All in one powerful yet simple admin toolkit to moderate comments on front-"
372
- "end."
373
- msgstr ""
374
-
375
- #: options/class.WpdiscuzOptions.php:388
376
- msgid ""
377
- "Extended comment attachment system. Allows to upload images, videos, audios "
378
- "and other file types."
379
- msgstr ""
380
-
381
- #: options/class.WpdiscuzOptions.php:389
382
- msgid ""
383
- "Adds No CAPTCHA on all comment forms. Stops spam and bot comments with "
384
- "Google reCAPTCHA"
385
- msgstr ""
386
-
387
- #: options/class.WpdiscuzOptions.php:390
388
- msgid ""
389
- "Integrates myCRED Badges and Ranks. Converts wpDiscuz comment votes/likes to "
390
- "myCRED points. "
391
- msgstr ""
392
-
393
- #: options/class.WpdiscuzOptions.php:391
394
- msgid ""
395
- "Allows censoring comment words. Filters comments and replaces those phrases "
396
- "with custom words."
397
- msgstr ""
398
-
399
- #: options/class.WpdiscuzOptions.php:397
400
- msgid "Custom Comment Forms"
401
- msgstr ""
402
-
403
- #: options/class.WpdiscuzOptions.php:398
404
- msgid ""
405
- "You can create custom comment forms with wpDiscuz. wpDiscuz 4 comes with "
406
- "custom comment forms and fields. You can create custom comment forms for "
407
- "each post type, each form can beceated with different form fields, for "
408
- "eaxample: text, dropdown, rating, checkboxes, etc..."
409
- msgstr ""
410
-
411
- #: options/class.WpdiscuzOptions.php:401
412
- msgid "Emoticons"
413
- msgstr ""
414
-
415
- #: options/class.WpdiscuzOptions.php:402
416
- msgid ""
417
- "You can add more emotions to your comments using wpDiscuz Emoticons addon."
418
- msgstr ""
419
-
420
- #: options/class.WpdiscuzOptions.php:405
421
- msgid "Ads Manager"
422
- msgstr ""
423
-
424
- #: options/class.WpdiscuzOptions.php:406
425
- msgid ""
426
- "Increase your income using ad banners. Comment area is the most active "
427
- "sections for advertising. wpDiscuz Ads Manager addon is designed to help you "
428
- "add banners and control ads in this section."
429
- msgstr ""
430
-
431
- #: options/class.WpdiscuzOptions.php:409
432
- msgid "User and Comment Mentioning"
433
- msgstr ""
434
-
435
- #: options/class.WpdiscuzOptions.php:410
436
- msgid ""
437
- "Using wpDiscuz User &amp; Comment Mentioning addon you can allow commenters "
438
- "mention comments and users in comment text using #comment-id and @username "
439
- "tags."
440
- msgstr ""
441
-
442
- #: options/class.WpdiscuzOptions.php:413 options/addons/al/title.php:7
443
- msgid "Advanced Likers"
444
- msgstr ""
445
-
446
- #: options/class.WpdiscuzOptions.php:414
447
- msgid ""
448
- "wpDiscuz Advanced Likers addon displays likers and voters of each comment. "
449
- "Adds user reputation and badges based on received likes."
450
- msgstr ""
451
-
452
- #: options/class.WpdiscuzOptions.php:417 options/addons/raf/title.php:7
453
- msgid "Report and Flagging"
454
- msgstr ""
455
-
456
- #: options/class.WpdiscuzOptions.php:418
457
- msgid ""
458
- "Let your commenters help you to determine and remove spam comments. wpDiscuz "
459
- "Report and Flagging addon comes with comment reporting tools. Automaticaly "
460
- "auto-moderates comments based on number of flags and dislikes."
461
- msgstr ""
462
-
463
- #: options/class.WpdiscuzOptions.php:421
464
- msgid "Comment Translate"
465
- msgstr ""
466
-
467
- #: options/class.WpdiscuzOptions.php:422
468
- msgid ""
469
- "In most cases the big part of your visitors are not a native speakers of "
470
- "your language. Make your comments comprehensible for all visitors using "
471
- "wpDiscuz Comment Translation addon. It adds smart and intuitive AJAX "
472
- "\"Translate\" button with 60 language translation options. Uses free "
473
- "translation API."
474
- msgstr ""
475
-
476
- #: options/class.WpdiscuzOptions.php:425
477
- msgid "Comment Search"
478
- msgstr ""
479
-
480
- #: options/class.WpdiscuzOptions.php:426
481
- msgid ""
482
- "You can let website visitor search in comments. It's always more attractive "
483
- "to find a comment about something that interest you. Using wpDiscuz Comment "
484
- "Search addon you'll get a nice, AJAX powered front-end comment search form "
485
- "above comment list."
486
- msgstr ""
487
-
488
- #: options/class.WpdiscuzOptions.php:429
489
- msgid "wpDiscuz Widgets"
490
- msgstr ""
491
-
492
- #: options/class.WpdiscuzOptions.php:430
493
- msgid ""
494
- "More Comment Widgets! Most voted comments, Active comment threads, Most "
495
- "commented posts, Active comment authors widgets are available in wpDiscuz "
496
- "Widgets Addon"
497
- msgstr ""
498
-
499
- #: options/class.WpdiscuzOptions.php:433
500
- msgid "Front-end Moderation"
501
- msgstr ""
502
-
503
- #: options/class.WpdiscuzOptions.php:434
504
- msgid ""
505
- "You can moderate comments on front-end using all in one powerful yet simple "
506
- "wpDiscuz Frontend Moderation addon."
507
- msgstr ""
508
-
509
- #: options/class.WpdiscuzOptions.php:437 options/addons/mu/title.php:7
510
- msgid "Media Uploader"
511
- msgstr ""
512
-
513
- #: options/class.WpdiscuzOptions.php:438
514
- msgid ""
515
- "You can let website visitors attach images and files to comments and embed "
516
- "video/audio content using wpDiscuz Media Uploader addon."
517
- msgstr ""
518
-
519
- #: options/class.WpdiscuzOptions.php:441
520
- msgid "Google ReCaptcha"
521
- msgstr ""
522
-
523
- #: options/class.WpdiscuzOptions.php:442
524
- msgid ""
525
- "Advanced spam protection with wpDiscuz Google reCAPTCHA addon. This addon "
526
- "adds No-CAPTCHA reCAPTCHA on all comment forms. Stops spam and bot comments."
527
- msgstr ""
528
-
529
- #: options/class.WpdiscuzOptions.php:503
530
- msgid "Do you know?"
531
- msgstr ""
532
-
533
- #: options/class.WpdiscuzOptions.php:516
534
- msgid "More info"
535
- msgstr ""
536
-
537
- #: options/class.WpdiscuzOptionsSerialized.php:764
538
- msgid "Be the First to Comment!"
539
- msgstr ""
540
-
541
- #: options/class.WpdiscuzOptionsSerialized.php:765
542
- msgid "Start the discussion"
543
- msgstr ""
544
-
545
- #: options/class.WpdiscuzOptionsSerialized.php:766
546
- msgid "Join the discussion"
547
- msgstr ""
548
-
549
- #: options/class.WpdiscuzOptionsSerialized.php:767
550
- #: options/phrases-layouts/phrases-form.php:19
551
- msgid "Comment threads"
552
- msgstr ""
553
-
554
- #: options/class.WpdiscuzOptionsSerialized.php:768
555
- #: options/phrases-layouts/phrases-form.php:23
556
- msgid "Thread replies"
557
- msgstr ""
558
-
559
- #: options/class.WpdiscuzOptionsSerialized.php:769
560
- #: options/phrases-layouts/phrases-form.php:27
561
- msgid "Followers"
562
- msgstr ""
563
-
564
- #: options/class.WpdiscuzOptionsSerialized.php:770
565
- #: options/phrases-layouts/phrases-form.php:31
566
- msgid "Most reacted comment"
567
- msgstr ""
568
-
569
- #: options/class.WpdiscuzOptionsSerialized.php:771
570
- #: options/phrases-layouts/phrases-form.php:35
571
- msgid "Hottest comment thread"
572
- msgstr ""
573
-
574
- #: options/class.WpdiscuzOptionsSerialized.php:772
575
- #: options/phrases-layouts/phrases-form.php:39
576
- msgid "Comment authors"
577
- msgstr ""
578
-
579
- #: options/class.WpdiscuzOptionsSerialized.php:773
580
- #: options/phrases-layouts/phrases-form.php:43
581
- msgid "Recent comment authors"
582
- msgstr ""
583
-
584
- #: options/class.WpdiscuzOptionsSerialized.php:775
585
- #: options/phrases-layouts/phrases-form.php:51
586
- msgid "Subscribe"
587
- msgstr ""
588
-
589
- #: options/class.WpdiscuzOptionsSerialized.php:776
590
- #: options/phrases-layouts/phrases-form.php:55
591
- msgid "Notify of"
592
- msgstr ""
593
-
594
- #: options/class.WpdiscuzOptionsSerialized.php:777
595
- msgid "new follow-up comments"
596
- msgstr ""
597
-
598
- #: options/class.WpdiscuzOptionsSerialized.php:778
599
- msgid "new replies to my comments"
600
- msgstr ""
601
-
602
- #: options/class.WpdiscuzOptionsSerialized.php:779
603
- msgid "Notify of new replies to this comment"
604
- msgstr ""
605
-
606
- #: options/class.WpdiscuzOptionsSerialized.php:780
607
- #: options/phrases-layouts/phrases-form.php:71
608
- msgid "Sort by"
609
- msgstr ""
610
-
611
- #: options/class.WpdiscuzOptionsSerialized.php:781
612
- #: options/phrases-layouts/phrases-form.php:75
613
- msgid "newest"
614
- msgstr ""
615
-
616
- #: options/class.WpdiscuzOptionsSerialized.php:782
617
- #: options/phrases-layouts/phrases-form.php:79
618
- msgid "oldest"
619
- msgstr ""
620
-
621
- #: options/class.WpdiscuzOptionsSerialized.php:783
622
- #: options/phrases-layouts/phrases-form.php:83
623
- msgid "most voted"
624
- msgstr ""
625
-
626
- #: options/class.WpdiscuzOptionsSerialized.php:784
627
- msgid "Load More Comments"
628
- msgstr ""
629
-
630
- #: options/class.WpdiscuzOptionsSerialized.php:785
631
- #: options/phrases-layouts/phrases-general.php:19
632
- msgid "Load Rest of Comments"
633
- msgstr ""
634
-
635
- #: options/class.WpdiscuzOptionsSerialized.php:786
636
- #: options/phrases-layouts/phrases-comment.php:11
637
- msgid "Reply"
638
- msgstr ""
639
-
640
- #: options/class.WpdiscuzOptionsSerialized.php:787
641
- #: options/phrases-layouts/phrases-comment.php:15
642
- msgid "Share"
643
- msgstr ""
644
-
645
- #: options/class.WpdiscuzOptionsSerialized.php:789
646
- #: options/phrases-layouts/phrases-comment.php:23
647
- msgid "Share On Facebook"
648
- msgstr ""
649
-
650
- #: options/class.WpdiscuzOptionsSerialized.php:790
651
- #: options/phrases-layouts/phrases-comment.php:27
652
- msgid "Share On Twitter"
653
- msgstr ""
654
-
655
- #: options/class.WpdiscuzOptionsSerialized.php:791
656
- #: options/phrases-layouts/phrases-comment.php:31
657
- msgid "Share On Google"
658
- msgstr ""
659
-
660
- #: options/class.WpdiscuzOptionsSerialized.php:792
661
- #: options/phrases-layouts/phrases-comment.php:35
662
- msgid "Share On VKontakte"
663
- msgstr ""
664
-
665
- #: options/class.WpdiscuzOptionsSerialized.php:793
666
- #: options/phrases-layouts/phrases-comment.php:39
667
- msgid "Share On Odnoklassniki"
668
- msgstr ""
669
-
670
- #: options/class.WpdiscuzOptionsSerialized.php:794
671
- #: options/phrases-layouts/phrases-comment.php:43
672
- msgid "Hide Replies"
673
- msgstr ""
674
-
675
- #: options/class.WpdiscuzOptionsSerialized.php:795
676
- #: options/phrases-layouts/phrases-comment.php:47
677
- msgid "View Replies"
678
- msgstr ""
679
-
680
- #: options/class.WpdiscuzOptionsSerialized.php:796
681
- #: options/class.WpdiscuzOptionsSerialized.php:921
682
- msgid "New Comment"
683
- msgstr ""
684
-
685
- #: options/class.WpdiscuzOptionsSerialized.php:797
686
- #: options/class.WpdiscuzOptionsSerialized.php:799
687
- #: options/class.WpdiscuzOptionsSerialized.php:801
688
- #: options/class.WpdiscuzOptionsSerialized.php:812
689
- #: options/class.WpdiscuzOptionsSerialized.php:920
690
- #: options/class.WpdiscuzOptionsSerialized.php:922
691
- msgid "</a>"
692
- msgstr ""
693
-
694
- #: options/class.WpdiscuzOptionsSerialized.php:798
695
- #: options/class.WpdiscuzOptionsSerialized.php:800
696
- msgid "New Reply"
697
- msgstr ""
698
-
699
- #: options/class.WpdiscuzOptionsSerialized.php:802
700
- msgid "You're subscribed for new replies on this comment"
701
- msgstr ""
702
-
703
- #: options/class.WpdiscuzOptionsSerialized.php:803
704
- msgid "You're subscribed for new replies on all your comments"
705
- msgstr ""
706
-
707
- #: options/class.WpdiscuzOptionsSerialized.php:804
708
- msgid "You're subscribed for new follow-up comments on this post"
709
- msgstr ""
710
-
711
- #: options/class.WpdiscuzOptionsSerialized.php:805
712
- #: options/phrases-layouts/phrases-email.php:169
713
- msgid "Unsubscribe"
714
- msgstr ""
715
-
716
- #: options/class.WpdiscuzOptionsSerialized.php:806
717
- msgid "Cancel subscription"
718
- msgstr ""
719
-
720
- #: options/class.WpdiscuzOptionsSerialized.php:807
721
- #: options/phrases-layouts/phrases-notification.php:19
722
- msgid "You've successfully unsubscribed."
723
- msgstr ""
724
-
725
- #: options/class.WpdiscuzOptionsSerialized.php:808
726
- #: options/phrases-layouts/phrases-notification.php:15
727
- msgid "You've successfully subscribed."
728
- msgstr ""
729
-
730
- #: options/class.WpdiscuzOptionsSerialized.php:809
731
- #: options/phrases-layouts/phrases-email.php:177
732
- msgid "Confirm your subscription"
733
- msgstr ""
734
-
735
- #: options/class.WpdiscuzOptionsSerialized.php:810
736
- #: options/phrases-layouts/phrases-email.php:181
737
- msgid "You've successfully confirmed your subscription."
738
- msgstr ""
739
-
740
- #: options/class.WpdiscuzOptionsSerialized.php:811
741
- msgid "Subscription Confirmation"
742
- msgstr ""
743
-
744
- #: options/class.WpdiscuzOptionsSerialized.php:813
745
- msgid "please fill out this field to comment"
746
- msgstr ""
747
-
748
- #: options/class.WpdiscuzOptionsSerialized.php:814
749
- msgid "email address is invalid"
750
- msgstr ""
751
-
752
- #: options/class.WpdiscuzOptionsSerialized.php:815
753
- msgid "url is invalid"
754
- msgstr ""
755
-
756
- #: options/class.WpdiscuzOptionsSerialized.php:816
757
- msgid "year"
758
- msgstr ""
759
-
760
- #: options/class.WpdiscuzOptionsSerialized.php:817
761
- msgid "years"
762
- msgstr ""
763
-
764
- #: options/class.WpdiscuzOptionsSerialized.php:818
765
- msgid "month"
766
- msgstr ""
767
-
768
- #: options/class.WpdiscuzOptionsSerialized.php:819
769
- msgid "months"
770
- msgstr ""
771
-
772
- #: options/class.WpdiscuzOptionsSerialized.php:820
773
- msgid "day"
774
- msgstr ""
775
-
776
- #: options/class.WpdiscuzOptionsSerialized.php:821
777
- msgid "days"
778
- msgstr ""
779
-
780
- #: options/class.WpdiscuzOptionsSerialized.php:822
781
- msgid "hour"
782
- msgstr ""
783
-
784
- #: options/class.WpdiscuzOptionsSerialized.php:823
785
- msgid "hours"
786
- msgstr ""
787
-
788
- #: options/class.WpdiscuzOptionsSerialized.php:824
789
- msgid "minute"
790
- msgstr ""
791
-
792
- #: options/class.WpdiscuzOptionsSerialized.php:825
793
- msgid "minutes"
794
- msgstr ""
795
-
796
- #: options/class.WpdiscuzOptionsSerialized.php:826
797
- msgid "second"
798
- msgstr ""
799
-
800
- #: options/class.WpdiscuzOptionsSerialized.php:827
801
- msgid "seconds"
802
- msgstr ""
803
-
804
- #: options/class.WpdiscuzOptionsSerialized.php:828
805
- msgid "right now"
806
- msgstr ""
807
-
808
- #: options/class.WpdiscuzOptionsSerialized.php:829
809
- msgid "ago"
810
- msgstr ""
811
-
812
- #: options/class.WpdiscuzOptionsSerialized.php:830
813
- #: options/phrases-layouts/phrases-notification.php:38
814
- msgid "You must be"
815
- msgstr ""
816
-
817
- #: options/class.WpdiscuzOptionsSerialized.php:831
818
- msgid "You are logged in as"
819
- msgstr ""
820
-
821
- #: options/class.WpdiscuzOptionsSerialized.php:832
822
- #: options/phrases-layouts/phrases-notification.php:29
823
- msgid "Login"
824
- msgstr ""
825
-
826
- #: options/class.WpdiscuzOptionsSerialized.php:833
827
- #: options/phrases-layouts/phrases-notification.php:33
828
- #, php-format
829
- msgid "Please %s to comment"
830
- msgstr ""
831
-
832
- #: options/class.WpdiscuzOptionsSerialized.php:834
833
- #: options/phrases-layouts/phrases-notification.php:54
834
- msgid "Log out"
835
- msgstr ""
836
-
837
- #: options/class.WpdiscuzOptionsSerialized.php:835
838
- msgid "logged in"
839
- msgstr ""
840
-
841
- #: options/class.WpdiscuzOptionsSerialized.php:836
842
- msgid "to post a comment."
843
- msgstr ""
844
-
845
- #: options/class.WpdiscuzOptionsSerialized.php:837
846
- #: options/phrases-layouts/phrases-comment.php:75
847
- msgid "Vote Up"
848
- msgstr ""
849
-
850
- #: options/class.WpdiscuzOptionsSerialized.php:838
851
- #: options/phrases-layouts/phrases-comment.php:79
852
- msgid "Vote Down"
853
- msgstr ""
854
-
855
- #: options/class.WpdiscuzOptionsSerialized.php:839
856
- #: options/phrases-layouts/phrases-notification.php:58
857
- msgid "Vote Counted"
858
- msgstr ""
859
-
860
- #: options/class.WpdiscuzOptionsSerialized.php:840
861
- msgid "You've already voted for this comment"
862
- msgstr ""
863
-
864
- #: options/class.WpdiscuzOptionsSerialized.php:841
865
- #: options/phrases-layouts/phrases-error.php:27
866
- msgid "Voting Error"
867
- msgstr ""
868
-
869
- #: options/class.WpdiscuzOptionsSerialized.php:842
870
- msgid "You Must Be Logged In To Vote"
871
- msgstr ""
872
-
873
- #: options/class.WpdiscuzOptionsSerialized.php:843
874
- msgid "You cannot vote for your comment"
875
- msgstr ""
876
-
877
- #: options/class.WpdiscuzOptionsSerialized.php:844
878
- msgid "You are not allowed to vote for this comment"
879
- msgstr ""
880
-
881
- #: options/class.WpdiscuzOptionsSerialized.php:845
882
- #: options/phrases-layouts/phrases-error.php:39
883
- msgid "Invalid Captcha Code"
884
- msgstr ""
885
-
886
- #: options/class.WpdiscuzOptionsSerialized.php:846
887
- #: options/phrases-layouts/phrases-error.php:43
888
- msgid "Some of field value is invalid"
889
- msgstr ""
890
-
891
- #: options/class.WpdiscuzOptionsSerialized.php:847
892
- msgid "new comment"
893
- msgstr ""
894
-
895
- #: options/class.WpdiscuzOptionsSerialized.php:848
896
- msgid "new comments"
897
- msgstr ""
898
-
899
- #: options/class.WpdiscuzOptionsSerialized.php:849
900
- msgid "Comment awaiting moderation"
901
- msgstr ""
902
-
903
- #: options/class.WpdiscuzOptionsSerialized.php:850
904
- msgid "new reply on your comment"
905
- msgstr ""
906
-
907
- #: options/class.WpdiscuzOptionsSerialized.php:851
908
- msgid "new replies on your comments"
909
- msgstr ""
910
-
911
- #: options/class.WpdiscuzOptionsSerialized.php:852
912
- msgid "Sorry, the comment was not updated"
913
- msgstr ""
914
-
915
- #: options/class.WpdiscuzOptionsSerialized.php:853
916
- msgid "Sorry, this comment no longer possible to edit"
917
- msgstr ""
918
-
919
- #: options/class.WpdiscuzOptionsSerialized.php:854
920
- msgid "You've not made any changes"
921
- msgstr ""
922
-
923
- #: options/class.WpdiscuzOptionsSerialized.php:855
924
- msgid "Save"
925
- msgstr ""
926
-
927
- #: options/class.WpdiscuzOptionsSerialized.php:856
928
- msgid "Cancel"
929
- msgstr ""
930
-
931
- #: options/class.WpdiscuzOptionsSerialized.php:857
932
- msgid "Input is too short"
933
- msgstr ""
934
-
935
- #: options/class.WpdiscuzOptionsSerialized.php:858
936
- msgid "Input is too long"
937
- msgstr ""
938
-
939
- #: options/class.WpdiscuzOptionsSerialized.php:859
940
- msgid "Read more &raquo;"
941
- msgstr ""
942
-
943
- #: options/class.WpdiscuzOptionsSerialized.php:860
944
- msgid "Anonymous"
945
- msgstr ""
946
-
947
- #: options/class.WpdiscuzOptionsSerialized.php:861
948
- #: options/phrases-layouts/phrases-error.php:67
949
- msgid "Please fill out required fields"
950
- msgstr ""
951
-
952
- #: options/class.WpdiscuzOptionsSerialized.php:862
953
- #: options/phrases-layouts/phrases-social-login.php:11
954
- msgid "Connect with"
955
- msgstr ""
956
-
957
- #: options/class.WpdiscuzOptionsSerialized.php:863
958
- #: options/phrases-layouts/phrases-notification.php:11
959
- msgid "You're subscribed to"
960
- msgstr ""
961
-
962
- #: options/class.WpdiscuzOptionsSerialized.php:864
963
- msgid "Participate in this discussion via email"
964
- msgstr ""
965
-
966
- #: options/class.WpdiscuzOptionsSerialized.php:865
967
- #: utils/layouts/pagination.php:46
968
- msgid "&rsaquo;"
969
- msgstr ""
970
-
971
- #: options/class.WpdiscuzOptionsSerialized.php:866
972
- msgid "Your comment is approved!"
973
- msgstr ""
974
-
975
- #: options/class.WpdiscuzOptionsSerialized.php:867
976
- msgid ""
977
- "Hi [COMMENT_AUTHOR],<br/><br/>your comment was approved.<br/><br/><a "
978
- "href=\"[COMMENT_URL]\">[COMMENT_URL]</a><br/><br/>[COMMENT_CONTENT]"
979
- msgstr ""
980
-
981
- #: options/class.WpdiscuzOptionsSerialized.php:868
982
- msgid "Comments are closed."
983
- msgstr ""
984
-
985
- #: options/class.WpdiscuzOptionsSerialized.php:869
986
- msgid "Stick this comment"
987
- msgstr ""
988
-
989
- #: options/class.WpdiscuzOptionsSerialized.php:870
990
- #: options/phrases-layouts/phrases-comment.php:103
991
- msgid "Stick"
992
- msgstr ""
993
-
994
- #: options/class.WpdiscuzOptionsSerialized.php:871
995
- #: options/phrases-layouts/phrases-comment.php:107
996
- msgid "Unstick"
997
- msgstr ""
998
-
999
- #: options/class.WpdiscuzOptionsSerialized.php:872
1000
- msgid "Sticky comment thread"
1001
- msgstr ""
1002
-
1003
- #: options/class.WpdiscuzOptionsSerialized.php:873
1004
- msgid "Close this thread"
1005
- msgstr ""
1006
-
1007
- #: options/class.WpdiscuzOptionsSerialized.php:874
1008
- #: options/phrases-layouts/phrases-comment.php:119
1009
- msgid "Close"
1010
- msgstr ""
1011
-
1012
- #: options/class.WpdiscuzOptionsSerialized.php:875
1013
- #: options/phrases-layouts/phrases-comment.php:123
1014
- msgid "Open"
1015
- msgstr ""
1016
-
1017
- #: options/class.WpdiscuzOptionsSerialized.php:876
1018
- msgid "Closed comment thread"
1019
- msgstr ""
1020
-
1021
- #: options/class.WpdiscuzOptionsSerialized.php:877
1022
- msgid "I allow to create an account"
1023
- msgstr ""
1024
-
1025
- #: options/class.WpdiscuzOptionsSerialized.php:878
1026
- msgid ""
1027
- "When you login first time using a Social Login button, we collect your "
1028
- "account public profile information shared by Social Login provider, based on "
1029
- "your privacy settings. We also get your email address to automatically "
1030
- "create an account for you in our website. Once your account is created, "
1031
- "you'll be logged-in to this account."
1032
- msgstr ""
1033
-
1034
- #: options/class.WpdiscuzOptionsSerialized.php:879
1035
- msgid "This comment form is under antispam protection"
1036
- msgstr ""
1037
-
1038
- #: options/class.WpdiscuzOptionsSerialized.php:880
1039
- #: options/phrases-layouts/phrases-social-login.php:23
1040
- msgid "Disagree"
1041
- msgstr ""
1042
-
1043
- #: options/class.WpdiscuzOptionsSerialized.php:881
1044
- #: options/phrases-layouts/phrases-social-login.php:27
1045
- msgid "Agree"
1046
- msgstr ""
1047
-
1048
- #: options/class.WpdiscuzOptionsSerialized.php:882
1049
- #: options/phrases-layouts/phrases-user-settings.php:11
1050
- msgid "My content and settings"
1051
- msgstr ""
1052
-
1053
- #: options/class.WpdiscuzOptionsSerialized.php:883
1054
- #: options/phrases-layouts/phrases-user-settings.php:15
1055
- msgid "Activity"
1056
- msgstr ""
1057
-
1058
- #: options/class.WpdiscuzOptionsSerialized.php:884
1059
- #: options/phrases-layouts/phrases-user-settings.php:19
1060
- msgid "Subscriptions"
1061
- msgstr ""
1062
-
1063
- #: options/class.WpdiscuzOptionsSerialized.php:885
1064
- #: options/phrases-layouts/phrases-user-settings.php:23
1065
- msgid "Follows"
1066
- msgstr ""
1067
-
1068
- #: options/class.WpdiscuzOptionsSerialized.php:886
1069
- #: options/phrases-layouts/phrases-user-settings.php:27
1070
- msgid "In response to:"
1071
- msgstr ""
1072
-
1073
- #: options/class.WpdiscuzOptionsSerialized.php:887
1074
- #: options/class.WpdiscuzOptionsSerialized.php:893
1075
- #: options/phrases-layouts/phrases-user-settings.php:31
1076
- #: options/phrases-layouts/phrases-user-settings.php:55
1077
- msgid "Bulk management via email"
1078
- msgstr ""
1079
-
1080
- #: options/class.WpdiscuzOptionsSerialized.php:888
1081
- msgid ""
1082
- "Click the button above to get an email with bulk delete and unsubscribe "
1083
- "links."
1084
- msgstr ""
1085
-
1086
- #: options/class.WpdiscuzOptionsSerialized.php:889
1087
- #: options/phrases-layouts/phrases-user-settings.php:39
1088
- msgid "No data found!"
1089
- msgstr ""
1090
-
1091
- #: options/class.WpdiscuzOptionsSerialized.php:890
1092
- #: options/class.WpdiscuzOptionsSerialized.php:894
1093
- #: options/phrases-layouts/phrases-user-settings.php:43
1094
- #: options/phrases-layouts/phrases-user-settings.php:60
1095
- msgid "Delete all my comments"
1096
- msgstr ""
1097
-
1098
- #: options/class.WpdiscuzOptionsSerialized.php:891
1099
- #: options/phrases-layouts/phrases-user-settings.php:47
1100
- msgid "Cancel all comment subscriptions"
1101
- msgstr ""
1102
-
1103
- #: options/class.WpdiscuzOptionsSerialized.php:892
1104
- #: options/phrases-layouts/phrases-user-settings.php:51
1105
- msgid "Clear cookies with my personal data"
1106
- msgstr ""
1107
-
1108
- #: options/class.WpdiscuzOptionsSerialized.php:895
1109
- msgid ""
1110
- "Please use this link to delete all your comments. Please note, that this "
1111
- "action cannot be undone.<br/><br/><a href=\"[DELETE_COMMENTS_URL]\" "
1112
- "target=\"_blank\">Delete all my comments</a><br/><br/>"
1113
- msgstr ""
1114
-
1115
- #: options/class.WpdiscuzOptionsSerialized.php:896
1116
- #: options/phrases-layouts/phrases-user-settings.php:85
1117
- msgid "Delete all my subscriptions"
1118
- msgstr ""
1119
-
1120
- #: options/class.WpdiscuzOptionsSerialized.php:897
1121
- msgid ""
1122
- "Please use this link to cancel all subscriptions for new comments. Please "
1123
- "note, that this action cannot be undone.<br/><br/><a "
1124
- "href=\"[DELETE_SUBSCRIPTIONS_URL]\" target=\"_blank\">Delete all my "
1125
- "subscriptions</a><br/><br/>"
1126
- msgstr ""
1127
-
1128
- #: options/class.WpdiscuzOptionsSerialized.php:898
1129
- #: options/phrases-layouts/phrases-user-settings.php:110
1130
- msgid "Delete all my follows"
1131
- msgstr ""
1132
-
1133
- #: options/class.WpdiscuzOptionsSerialized.php:899
1134
- msgid ""
1135
- "Please use this link to cancel all follows for new comments. Please note, "
1136
- "that this action cannot be undone.<br/><br/><a href=\"[DELETE_FOLLOWS_URL]\" "
1137
- "target=\"_blank\">Delete all my follows</a><br/><br/>"
1138
- msgstr ""
1139
-
1140
- #: options/class.WpdiscuzOptionsSerialized.php:900
1141
- #: options/phrases-layouts/phrases-user-settings.php:134
1142
- msgid "subscribed to this comment"
1143
- msgstr ""
1144
-
1145
- #: options/class.WpdiscuzOptionsSerialized.php:901
1146
- #: options/phrases-layouts/phrases-user-settings.php:138
1147
- msgid "subscribed to my comments"
1148
- msgstr ""
1149
-
1150
- #: options/class.WpdiscuzOptionsSerialized.php:902
1151
- #: options/phrases-layouts/phrases-user-settings.php:142
1152
- msgid "subscribed to all follow-up comments of this post"
1153
- msgstr ""
1154
-
1155
- #: options/class.WpdiscuzOptionsSerialized.php:904
1156
- #: options/phrases-layouts/phrases-user-settings.php:150
1157
- msgid "Error : Can't send email."
1158
- msgstr ""
1159
-
1160
- #: options/class.WpdiscuzOptionsSerialized.php:905
1161
- #: options/phrases-layouts/phrases-user-settings.php:154
1162
- msgid "Are you sure you want to delete this comment?"
1163
- msgstr ""
1164
-
1165
- #: options/class.WpdiscuzOptionsSerialized.php:906
1166
- #: options/phrases-layouts/phrases-user-settings.php:158
1167
- msgid "Are you sure you want to cancel this subscription?"
1168
- msgstr ""
1169
-
1170
- #: options/class.WpdiscuzOptionsSerialized.php:907
1171
- #: options/phrases-layouts/phrases-user-settings.php:162
1172
- msgid "Are you sure you want to cancel this follow?"
1173
- msgstr ""
1174
-
1175
- #: options/class.WpdiscuzOptionsSerialized.php:908
1176
- #: options/phrases-layouts/phrases-follow.php:11
1177
- msgid "Follow this user"
1178
- msgstr ""
1179
-
1180
- #: options/class.WpdiscuzOptionsSerialized.php:909
1181
- #: options/phrases-layouts/phrases-follow.php:15
1182
- msgid "Unfollow this user"
1183
- msgstr ""
1184
-
1185
- #: options/class.WpdiscuzOptionsSerialized.php:910
1186
- #: options/phrases-layouts/phrases-follow.php:19
1187
- msgid "You started following this comment author"
1188
- msgstr ""
1189
-
1190
- #: options/class.WpdiscuzOptionsSerialized.php:911
1191
- msgid "You stopped following this comment author."
1192
- msgstr ""
1193
-
1194
- #: options/class.WpdiscuzOptionsSerialized.php:912
1195
- msgid "Please check your email and confirm the user following request."
1196
- msgstr ""
1197
-
1198
- #: options/class.WpdiscuzOptionsSerialized.php:913
1199
- msgid "Sorry, we couldn't send confirmation email."
1200
- msgstr ""
1201
-
1202
- #: options/class.WpdiscuzOptionsSerialized.php:914
1203
- msgid "Please login to follow users."
1204
- msgstr ""
1205
-
1206
- #: options/class.WpdiscuzOptionsSerialized.php:915
1207
- msgid "We are sorry, but you can't follow this user."
1208
- msgstr ""
1209
-
1210
- #: options/class.WpdiscuzOptionsSerialized.php:916
1211
- msgid "Following failed. Please try again later."
1212
- msgstr ""
1213
-
1214
- #: options/class.WpdiscuzOptionsSerialized.php:917
1215
- msgid "Confirm user following request"
1216
- msgstr ""
1217
-
1218
- #: options/class.WpdiscuzOptionsSerialized.php:918
1219
- msgid "Cancel user following request"
1220
- msgstr ""
1221
-
1222
- #: options/class.WpdiscuzOptionsSerialized.php:919
1223
- msgid "User Following Confirmation"
1224
- msgstr ""
1225
-
1226
- #: options/html-addons.php:11
1227
- msgid "wpDiscuz Addons"
1228
- msgstr ""
1229
-
1230
- #: options/html-addons.php:19
1231
- msgid "wpDiscuz Add-ons"
1232
- msgstr ""
1233
-
1234
- #: options/html-addons.php:20
1235
- msgid "Addons Support Forum"
1236
- msgstr ""
1237
-
1238
- #: options/html-addons.php:25
1239
- msgid ""
1240
- "All wpDiscuz addons are being developed by wpDiscuz developers at gVectors "
1241
- "Team, those are very solid premium level extensions and come with premium "
1242
- "support.\n"
1243
- " These addons help us to keep top level "
1244
- "development of the free wpDiscuz plugin. All essential and even dozens of "
1245
- "extra-cool features are already available for free in core wpDiscuz. \n"
1246
- " There will never be any limits, any pro and paid "
1247
- "versions for wpDiscuz. We have another dozens of awesome features in our to-"
1248
- "do list which will also be added for free in future releases. \n"
1249
- " So the free wpDiscuz development always stays on "
1250
- "the first priority and wpDiscuz is being extended with new free functions "
1251
- "and features even faster than before."
1252
- msgstr ""
1253
-
1254
- #: options/html-addons.php:31
1255
- msgid " Thank you!<br/> Sincerely yours,<br/> gVectors Team&nbsp;"
1256
- msgstr ""
1257
-
1258
- #: options/html-addons.php:60
1259
- msgid "Live Preview | Buy"
1260
- msgstr ""
1261
-
1262
- #: options/html-options.php:10
1263
- msgid "wpDiscuz General Settings"
1264
- msgstr ""
1265
-
1266
- #: options/html-options.php:19
1267
- msgid "Need More Features?"
1268
- msgstr ""
1269
-
1270
- #: options/html-options.php:20
1271
- msgid "Documentation"
1272
- msgstr ""
1273
-
1274
- #: options/html-options.php:21
1275
- msgid "Support"
1276
- msgstr ""
1277
-
1278
- #: options/html-options.php:54 options/html-phrases.php:21
1279
- msgid "General"
1280
- msgstr ""
1281
-
1282
- #: options/html-options.php:55
1283
- msgid "Comment Form"
1284
- msgstr ""
1285
-
1286
- #: options/html-options.php:56
1287
- msgid "Comment List"
1288
- msgstr ""
1289
-
1290
- #: options/html-options.php:57
1291
- #: options/options-layouts/settings-live-update.php:7
1292
- msgid "Live Update"
1293
- msgstr ""
1294
-
1295
- #: options/html-options.php:59
1296
- msgid "Subscription"
1297
- msgstr ""
1298
-
1299
- #: options/html-options.php:59
1300
- msgid "and Postmatic"
1301
- msgstr ""
1302
-
1303
- #: options/html-options.php:60
1304
- msgid "Styling"
1305
- msgstr ""
1306
-
1307
- #: options/html-options.php:61
1308
- msgid "Cache"
1309
- msgstr ""
1310
-
1311
- #: options/html-options.php:62 options/options-layouts/settings-social.php:7
1312
- msgid "Social Login &amp; Share"
1313
- msgstr ""
1314
-
1315
- #: options/html-options.php:63
1316
- #: options/options-layouts/settings-integrations.php:7
1317
- msgid "Integrations"
1318
- msgstr ""
1319
-
1320
- #: options/html-options.php:154
1321
- msgid "Reset Options"
1322
- msgstr ""
1323
-
1324
- #: options/html-options.php:156
1325
- msgid "Remove vote data"
1326
- msgstr ""
1327
-
1328
- #: options/html-options.php:157 options/html-phrases.php:82
1329
- msgid "Save Changes"
1330
- msgstr ""
1331
-
1332
- #: options/html-phrases.php:10
1333
- msgid "wpDiscuz Front-end Phrases"
1334
- msgstr ""
1335
-
1336
- #: options/html-phrases.php:23
1337
- msgid "Comment"
1338
- msgstr ""
1339
-
1340
- #: options/html-phrases.php:24
1341
- msgid "Date/Time"
1342
- msgstr ""
1343
-
1344
- #: options/html-phrases.php:26
1345
- msgid "Notification"
1346
- msgstr ""
1347
-
1348
- #: options/html-phrases.php:27
1349
- msgid "Follow"
1350
- msgstr ""
1351
-
1352
- #: options/html-phrases.php:28
1353
- #: options/phrases-layouts/phrases-social-login.php:7
1354
- msgid "Social Login"
1355
- msgstr ""
1356
-
1357
- #: options/html-phrases.php:29
1358
- msgid "User Settings"
1359
- msgstr ""
1360
-
1361
- #: options/html-phrases.php:30
1362
- msgid "Errors"
1363
- msgstr ""
1364
-
1365
- #: options/html-phrases.php:81
1366
- msgid "Reset Phrases"
1367
- msgstr ""
1368
-
1369
- #: options/html-tools.php:10
1370
- msgid "wpDiscuz Tools"
1371
- msgstr ""
1372
-
1373
- #: options/html-tools.php:15 options/tools-layouts/options-export.php:7
1374
- msgid "Export options"
1375
- msgstr ""
1376
-
1377
- #: options/html-tools.php:16 options/tools-layouts/options-import.php:7
1378
- msgid "Import options"
1379
- msgstr ""
1380
-
1381
- #: options/html-tools.php:17 options/tools-layouts/subscriptions-import.php:9
1382
- msgid "Import subscriptions"
1383
- msgstr ""
1384
-
1385
- #: options/html-tools.php:18 utils/deactivation-reason-modal.php:57
1386
- msgid "Other"
1387
- msgstr ""
1388
-
1389
- #: utils/class.WpdiscuzHelper.php:221 utils/class.WpdiscuzHelper.php:224
1390
- msgid "Spoiler"
1391
- msgstr ""
1392
-
1393
- #: utils/class.WpdiscuzHelper.php:564
1394
- msgid "Go to update data"
1395
- msgstr ""
1396
-
1397
- #: utils/class.WpdiscuzHelperEmail.php:511
1398
- msgid "Cancel Follow"
1399
- msgstr ""
1400
-
1401
- #: utils/deactivation-reason-modal.php:10
1402
- msgid "Plugin Usage Feedback"
1403
- msgstr ""
1404
-
1405
- #: utils/deactivation-reason-modal.php:13
1406
- msgid ""
1407
- "Please let us know why you are deactivating. Choosing one of the options "
1408
- "below you will help us make it better for you and for other users."
1409
- msgstr ""
1410
-
1411
- #: utils/deactivation-reason-modal.php:19
1412
- msgid "I'll reactivate it later"
1413
- msgstr ""
1414
-
1415
- #: utils/deactivation-reason-modal.php:23
1416
- msgid "The plugin is not working"
1417
- msgstr ""
1418
-
1419
- #: utils/deactivation-reason-modal.php:24
1420
- msgid "What kind of problems do you have?"
1421
- msgstr ""
1422
-
1423
- #: utils/deactivation-reason-modal.php:28
1424
- msgid "It's not what I was looking for"
1425
- msgstr ""
1426
-
1427
- #: utils/deactivation-reason-modal.php:32
1428
- msgid "I couldn't understand how to make it work"
1429
- msgstr ""
1430
-
1431
- #: utils/deactivation-reason-modal.php:33
1432
- #: utils/deactivation-reason-modal.php:38
1433
- msgid "What type of features you want to be in the plugin?"
1434
- msgstr ""
1435
-
1436
- #: utils/deactivation-reason-modal.php:37
1437
- msgid "The plugin is great, but I need specific features"
1438
- msgstr ""
1439
-
1440
- #: utils/deactivation-reason-modal.php:42
1441
- msgid "I didn't like plugin design"
1442
- msgstr ""
1443
-
1444
- #: utils/deactivation-reason-modal.php:43
1445
- msgid "What part of design you don't like or want to change?"
1446
- msgstr ""
1447
-
1448
- #: utils/deactivation-reason-modal.php:47
1449
- msgid "The plugin works very slow"
1450
- msgstr ""
1451
-
1452
- #: utils/deactivation-reason-modal.php:48
1453
- msgid ""
1454
- "Could you please describe which features of the plugin slows down your "
1455
- "website?"
1456
- msgstr ""
1457
-
1458
- #: utils/deactivation-reason-modal.php:52
1459
- msgid "I found a better plugin"
1460
- msgstr ""
1461
-
1462
- #: utils/deactivation-reason-modal.php:53
1463
- msgid "Please provide a plugin name or URL"
1464
- msgstr ""
1465
-
1466
- #: utils/deactivation-reason-modal.php:62
1467
- msgid "Dismiss and never show again"
1468
- msgstr ""
1469
-
1470
- #: utils/deactivation-reason-modal.php:66
1471
- msgid "Thank you for your feedback!"
1472
- msgstr ""
1473
-
1474
- #: forms/wpdFormAttr/Form.php:131 forms/wpdFormAttr/Form.php:415
1475
- #: forms/wpdFormAttr/Form.php:744
1476
- msgid ""
1477
- "I allow to use my email address and send notification about new comments and "
1478
- "replies (you can unsubscribe at any time)."
1479
- msgstr ""
1480
-
1481
- #: forms/wpdFormAttr/Form.php:679 forms/wpdFormAttr/Form.php:701
1482
- #: forms/wpdFormAttr/Form.php:713 forms/wpdFormAttr/Form.php:725
1483
- #: forms/wpdFormAttr/Form.php:736 forms/wpdFormAttr/Form.php:756
1484
- #: forms/wpdFormAttr/Form.php:786 forms/wpdFormAttr/Form.php:796
1485
- #: forms/wpdFormAttr/Form.php:803 options/options-layouts/settings-cache.php:23
1486
- #: options/options-layouts/settings-cache.php:33
1487
- #: options/options-layouts/settings-cache.php:41
1488
- #: options/options-layouts/settings-form.php:18
1489
- #: options/options-layouts/settings-form.php:28
1490
- #: options/options-layouts/settings-form.php:68
1491
- #: options/options-layouts/settings-form.php:82
1492
- #: options/options-layouts/settings-form.php:96
1493
- #: options/options-layouts/settings-form.php:111
1494
- #: options/options-layouts/settings-form.php:124
1495
- #: options/options-layouts/settings-form.php:140
1496
- #: options/options-layouts/settings-form.php:151
1497
- #: options/options-layouts/settings-form.php:162
1498
- #: options/options-layouts/settings-form.php:172
1499
- #: options/options-layouts/settings-form.php:190
1500
- #: options/options-layouts/settings-general.php:14
1501
- #: options/options-layouts/settings-general.php:26
1502
- #: options/options-layouts/settings-general.php:68
1503
- #: options/options-layouts/settings-general.php:82
1504
- #: options/options-layouts/settings-general.php:92
1505
- #: options/options-layouts/settings-list.php:20
1506
- #: options/options-layouts/settings-list.php:31
1507
- #: options/options-layouts/settings-list.php:41
1508
- #: options/options-layouts/settings-list.php:51
1509
- #: options/options-layouts/settings-list.php:81
1510
- #: options/options-layouts/settings-list.php:93
1511
- #: options/options-layouts/settings-list.php:113
1512
- #: options/options-layouts/settings-list.php:122
1513
- #: options/options-layouts/settings-list.php:141
1514
- #: options/options-layouts/settings-list.php:153
1515
- #: options/options-layouts/settings-list.php:163
1516
- #: options/options-layouts/settings-list.php:178
1517
- #: options/options-layouts/settings-list.php:188
1518
- #: options/options-layouts/settings-live-update.php:31
1519
- #: options/options-layouts/settings-social.php:18
1520
- #: options/options-layouts/settings-social.php:28
1521
- #: options/options-layouts/settings-style.php:19
1522
- #: options/options-layouts/settings-style.php:59
1523
- #: options/options-layouts/settings-style.php:96
1524
- #: options/options-layouts/settings-style.php:119
1525
- #: options/options-layouts/settings-style.php:138
1526
- #: options/options-layouts/settings-style.php:164
1527
- #: options/options-layouts/settings-style.php:173
1528
- #: options/options-layouts/settings-subscription.php:18
1529
- #: options/options-layouts/settings-subscription.php:28
1530
- #: options/options-layouts/settings-subscription.php:38
1531
- #: options/options-layouts/settings-subscription.php:62
1532
- #: options/options-layouts/settings-subscription.php:75
1533
- #: options/options-layouts/settings-subscription.php:85
1534
- #: options/options-layouts/settings-subscription.php:111
1535
- #: options/options-layouts/settings-subscription.php:121
1536
- msgid "Read the documentation"
1537
- msgstr ""
1538
-
1539
- #: forms/wpdFormAttr/Form.php:684
1540
- msgid "Disable commenting for roles"
1541
- msgstr ""
1542
-
1543
- #: forms/wpdFormAttr/Form.php:706
1544
- msgid "Allow guests to comment"
1545
- msgstr ""
1546
-
1547
- #: forms/wpdFormAttr/Form.php:710 forms/wpdFormAttr/Form.php:722
1548
- #: forms/wpdFormAttr/Form.php:733
1549
- msgid "Yes"
1550
- msgstr ""
1551
-
1552
- #: forms/wpdFormAttr/Form.php:712 forms/wpdFormAttr/Form.php:724
1553
- #: forms/wpdFormAttr/Form.php:735
1554
- msgid "No"
1555
- msgstr ""
1556
-
1557
- #: forms/wpdFormAttr/Form.php:718
1558
- msgid "Enable subscription bar"
1559
- msgstr ""
1560
-
1561
- #: forms/wpdFormAttr/Form.php:729
1562
- msgid "Display agreement checkbox in Comment Subscription bar"
1563
- msgstr ""
1564
-
1565
- #: forms/wpdFormAttr/Form.php:741
1566
- msgid "Comment Subscription bar agreement checkbox label"
1567
- msgstr ""
1568
-
1569
- #: forms/wpdFormAttr/Form.php:751
1570
- msgid "Comment form header text"
1571
- msgstr ""
1572
-
1573
- #: forms/wpdFormAttr/Form.php:761
1574
- msgid "Display comment form for post types"
1575
- msgstr ""
1576
-
1577
- #: forms/wpdFormAttr/Form.php:768
1578
- msgid ""
1579
- "The red marked post types are already attached to other comment form. If you "
1580
- "set this form too, the old forms will not be used for them."
1581
- msgstr ""
1582
-
1583
- #: forms/wpdFormAttr/Form.php:791
1584
- msgid "Display comment form for post IDs"
1585
- msgstr ""
1586
-
1587
- #: forms/wpdFormAttr/Form.php:792
1588
- msgid ""
1589
- "You can use this form for certain posts/pages specified by comma separated "
1590
- "IDs."
1591
- msgstr ""
1592
-
1593
- #: forms/wpdFormAttr/Form.php:807
1594
- msgid "Comment Text Field"
1595
- msgstr ""
1596
-
1597
- #: forms/wpdFormAttr/Form.php:822
1598
- msgid "ADD ROW"
1599
- msgstr ""
1600
-
1601
- #: forms/wpdFormAttr/Form.php:887
1602
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:84
1603
- msgid "Website"
1604
- msgstr ""
1605
-
1606
- #: forms/wpdFormAttr/Form.php:896
1607
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:117
1608
- msgid "Code"
1609
- msgstr ""
1610
-
1611
- #: options/options-layouts/settings-addons.php:20
1612
- msgid ""
1613
- "Here you can find wpDiscuz Addons' setting options in vertical subTabs with "
1614
- "according addon titles. All wpDiscuz addons are listed on wpDiscuz"
1615
- msgstr ""
1616
-
1617
- #: options/options-layouts/settings-addons.php:20
1618
- msgid "Addons subMenu"
1619
- msgstr ""
1620
-
1621
- #: options/options-layouts/settings-addons.php:20
1622
- msgid ""
1623
- "We'll add new free and paid addons with almost every wpDiscuz release. There "
1624
- "will be dozens of very useful addons in near future. Currently wpDiscuz "
1625
- "consists of about 70 free features/addons like \"Live Update\", \"First "
1626
- "comment redirection\", \"Comment sorting\", \"Simple CAPTCHA\", \"AJAX "
1627
- "Pagination\", \"Lazy Load\", \"Comment Likes\", \"Comment Share\" and dozens "
1628
- "of other addons and there will be more. All new and free addons will be "
1629
- "built-in with wpDiscuz plugin and all paid addons will be listed separately "
1630
- "on"
1631
- msgstr ""
1632
-
1633
- #: options/options-layouts/settings-cache.php:10
1634
- msgid "Gravatar Cache"
1635
- msgstr ""
1636
-
1637
- #: options/options-layouts/settings-cache.php:15
1638
- msgid "Enable Gravatar caching"
1639
- msgstr ""
1640
-
1641
- #: options/options-layouts/settings-cache.php:17
1642
- msgid ""
1643
- "It seems on of important functions (\"file_get_contents\", "
1644
- "\"file_put_contents\") of php is not exists.<br/> Please enable these "
1645
- "functions in your server settings to use gravatar caching feature."
1646
- msgstr ""
1647
-
1648
- #: options/options-layouts/settings-cache.php:27
1649
- msgid "Caching method"
1650
- msgstr ""
1651
-
1652
- #: options/options-layouts/settings-cache.php:30
1653
- msgid "Runtime"
1654
- msgstr ""
1655
-
1656
- #: options/options-layouts/settings-cache.php:31
1657
- msgid "Cron job"
1658
- msgstr ""
1659
-
1660
- #: options/options-layouts/settings-cache.php:37
1661
- msgid "Cache avatars for \"X\" days"
1662
- msgstr ""
1663
-
1664
- #: options/options-layouts/settings-cache.php:45
1665
- #: options/options-layouts/settings-cache.php:48
1666
- msgid "Purge expired caches"
1667
- msgstr ""
1668
-
1669
- #: options/options-layouts/settings-cache.php:52
1670
- #: options/options-layouts/settings-cache.php:55
1671
- msgid "Purge all caches"
1672
- msgstr ""
1673
-
1674
- #: options/options-layouts/settings-cache.php:59
1675
- msgid "Statistics Cache"
1676
- msgstr ""
1677
-
1678
- #: options/options-layouts/settings-cache.php:63
1679
- #: options/options-layouts/settings-cache.php:66
1680
- msgid "Purge statistics caches"
1681
- msgstr ""
1682
-
1683
- #: options/options-layouts/settings-customfields.php:12
1684
- msgid "Google Map API Key"
1685
- msgstr ""
1686
-
1687
- #: options/options-layouts/settings-form.php:7
1688
- msgid "Comment Form Settings"
1689
- msgstr ""
1690
-
1691
- #: options/options-layouts/settings-form.php:12
1692
- msgid "Hide Header Text"
1693
- msgstr ""
1694
-
1695
- #: options/options-layouts/settings-form.php:13
1696
- msgid ""
1697
- "This option hides \"Leave Reply\" header text on top of comment form. You "
1698
- "can change this text in Comments > Forms admin page."
1699
- msgstr ""
1700
-
1701
- #: options/options-layouts/settings-form.php:23
1702
- msgid "Show logged-in user name and logout link on top of main form"
1703
- msgstr ""
1704
-
1705
- #: options/options-layouts/settings-form.php:33
1706
- msgid "Comment Form components"
1707
- msgstr ""
1708
-
1709
- #: options/options-layouts/settings-form.php:34
1710
- msgid ""
1711
- "These components can be found on the main comment form. The \"My Content and "
1712
- "Settings\" button is located on the top left side, under the \"Leave Reply\" "
1713
- "header text. The \"Discussion Statistic\" and \"Recent Comment Authors\" "
1714
- "sections are located under the main comment form fields ont the left and "
1715
- "right sides accordingly."
1716
- msgstr ""
1717
-
1718
- #: options/options-layouts/settings-form.php:43
1719
- msgid "Hide \"Please login to comment\" text"
1720
- msgstr ""
1721
-
1722
- #: options/options-layouts/settings-form.php:50
1723
- msgid "Hide \"My Content and Settings\" button"
1724
- msgstr ""
1725
-
1726
- #: options/options-layouts/settings-form.php:57
1727
- msgid "Hide \"Discussion Statistic\" section"
1728
- msgstr ""
1729
-
1730
- #: options/options-layouts/settings-form.php:64
1731
- msgid "Hide \"Recent Comment Authors\" section"
1732
- msgstr ""
1733
-
1734
- #: options/options-layouts/settings-form.php:73
1735
- msgid "Keep guest commenter credentials in browser cookies for x days"
1736
- msgstr ""
1737
-
1738
- #: options/options-layouts/settings-form.php:75
1739
- msgid ""
1740
- "wpDiscuz uses WordPress function to keep guest Name, Email and Website "
1741
- "information in cookies to fill according fields of comment form on next "
1742
- "commenting time."
1743
- msgstr ""
1744
-
1745
- #: options/options-layouts/settings-form.php:76
1746
- msgid "Set this option value -1 to make it unlimited."
1747
- msgstr ""
1748
-
1749
- #: options/options-layouts/settings-form.php:77
1750
- msgid "Set this option value 0 to clear those data when user closes browser."
1751
- msgstr ""
1752
-
1753
- #: options/options-layouts/settings-form.php:87
1754
- msgid "Comment author name length (for guests only)"
1755
- msgstr ""
1756
-
1757
- #: options/options-layouts/settings-form.php:91
1758
- #: options/options-layouts/settings-form.php:106
1759
- msgid "Min"
1760
- msgstr ""
1761
-
1762
- #: options/options-layouts/settings-form.php:94
1763
- #: options/options-layouts/settings-form.php:109
1764
- msgid "Max"
1765
- msgstr ""
1766
-
1767
- #: options/options-layouts/settings-form.php:101
1768
- msgid "Comment text length"
1769
- msgstr ""
1770
-
1771
- #: options/options-layouts/settings-form.php:102
1772
- msgid ""
1773
- "Allows to set minimum and maximum number of chars can be inserted in comment "
1774
- "textarea. Leave the max value empty to remove the limit."
1775
- msgstr ""
1776
-
1777
- #: options/options-layouts/settings-form.php:116
1778
- msgid "Captcha generation type"
1779
- msgstr ""
1780
-
1781
- #: options/options-layouts/settings-form.php:121
1782
- msgid "File system"
1783
- msgstr ""
1784
-
1785
- #: options/options-layouts/settings-form.php:122
1786
- msgid "WP Session"
1787
- msgstr ""
1788
-
1789
- #: options/options-layouts/settings-form.php:129
1790
- msgid "Invisible Spam Protection"
1791
- msgstr ""
1792
-
1793
- #: options/options-layouts/settings-form.php:131
1794
- msgid ""
1795
- "You should purge caches after each key generation otherwise the plugin may "
1796
- "work not correctly"
1797
- msgstr ""
1798
-
1799
- #: options/options-layouts/settings-form.php:134
1800
- msgid "Leave the field empty if you don't want to use this feature"
1801
- msgstr ""
1802
-
1803
- #: options/options-layouts/settings-form.php:139
1804
- msgid "Generate"
1805
- msgstr ""
1806
-
1807
- #: options/options-layouts/settings-form.php:145
1808
- msgid "Display note about Invisible Spam Protection"
1809
- msgstr ""
1810
-
1811
- #: options/options-layouts/settings-form.php:146
1812
- msgid ""
1813
- "wpDiscuz has built-in invisible antispam protection based on server side and "
1814
- "front-end unique key comparation. By default wpDiscuz display a small note "
1815
- "in simple CAPTCHA area, saying the comment form is under antispam protection."
1816
- " The note text can be managed in Comments > Phrases > Form tab."
1817
- msgstr ""
1818
-
1819
- #: options/options-layouts/settings-form.php:156
1820
- msgid "Enable Quicktags"
1821
- msgstr ""
1822
-
1823
- #: options/options-layouts/settings-form.php:157
1824
- msgid ""
1825
- "Quicktag is a on-click button that inserts HTML in to comment textarea. For "
1826
- "example the \"b\" Quicktag will insert the HTML bold tags < b > < /b >."
1827
- msgstr ""
1828
-
1829
- #: options/options-layouts/settings-form.php:167
1830
- msgid "Enable automatic image URL to image HTML conversion"
1831
- msgstr ""
1832
-
1833
- #: options/options-layouts/settings-form.php:177
1834
- msgid "Allow comment editing for"
1835
- msgstr ""
1836
-
1837
- #: options/options-layouts/settings-form.php:182
1838
- msgid "Do not allow"
1839
- msgstr ""
1840
-
1841
- #: options/options-layouts/settings-form.php:183
1842
- #: options/options-layouts/settings-form.php:184
1843
- #: options/options-layouts/settings-live-update.php:54
1844
- #: options/options-layouts/settings-live-update.php:55
1845
- #: options/options-layouts/settings-live-update.php:56
1846
- msgid "Minutes"
1847
- msgstr ""
1848
-
1849
- #: options/options-layouts/settings-form.php:185
1850
- #: options/phrases-layouts/phrases-datetime.php:35
1851
- msgid "Hour"
1852
- msgstr ""
1853
-
1854
- #: options/options-layouts/settings-form.php:186
1855
- #: options/options-layouts/settings-form.php:187
1856
- msgid "Hours"
1857
- msgstr ""
1858
-
1859
- #: options/options-layouts/settings-form.php:188
1860
- msgid "Unlimit"
1861
- msgstr ""
1862
-
1863
- #: options/options-layouts/settings-general.php:7
1864
- msgid "General Settings"
1865
- msgstr ""
1866
-
1867
- #: options/options-layouts/settings-general.php:11
1868
- msgid "Enable wpdiscuz on home page"
1869
- msgstr ""
1870
-
1871
- #: options/options-layouts/settings-general.php:19
1872
- msgid "Use guest email to detect registered account"
1873
- msgstr ""
1874
-
1875
- #: options/options-layouts/settings-general.php:21
1876
- msgid ""
1877
- "Sometimes registered users comment as guest using the same email address. "
1878
- "wpDiscuz can detect the account role using guest email and display commenter "
1879
- "label correctly."
1880
- msgstr ""
1881
-
1882
- #: options/options-layouts/settings-general.php:31
1883
- msgid "Secure comment content in HTTPS protocol."
1884
- msgstr ""
1885
-
1886
- #: options/options-layouts/settings-general.php:33
1887
- msgid ""
1888
- "This option detects images and other contents with non-https source URLs and "
1889
- "fix according to your selected logic."
1890
- msgstr ""
1891
-
1892
- #: options/options-layouts/settings-general.php:41
1893
- msgid "Replace non-https content to simple link URLs"
1894
- msgstr ""
1895
-
1896
- #: options/options-layouts/settings-general.php:45
1897
- msgid ""
1898
- "Just replace http protocols to https (https may not be supported by content "
1899
- "provider)"
1900
- msgstr ""
1901
-
1902
- #: options/options-layouts/settings-general.php:49
1903
- msgid "Ignore non-https content"
1904
- msgstr ""
1905
-
1906
- #: options/options-layouts/settings-general.php:57
1907
- msgid "Redirect first commenter to"
1908
- msgstr ""
1909
-
1910
- #: options/options-layouts/settings-general.php:64
1911
- msgid "Do not redirect"
1912
- msgstr ""
1913
-
1914
- #: options/options-layouts/settings-general.php:73
1915
- msgid "Use WordPress Date/Time format"
1916
- msgstr ""
1917
-
1918
- #: options/options-layouts/settings-general.php:74
1919
- msgid ""
1920
- "wpDiscuz shows Human Readable date format. If you check this option it'll "
1921
- "show the date/time format set in WordPress General Settings."
1922
- msgstr ""
1923
-
1924
- #: options/options-layouts/settings-general.php:80
1925
- msgid "Current Wordpress date/time format"
1926
- msgstr ""
1927
-
1928
- #: options/options-layouts/settings-general.php:87
1929
- msgid "Use Plugin .PO/.MO files"
1930
- msgstr ""
1931
-
1932
- #: options/options-layouts/settings-general.php:88
1933
- msgid ""
1934
- "wpDiscuz phrase system allows you to translate all front-end phrases. "
1935
- "However if you have a multi-language website it'll not allow you to add more "
1936
- "than one language translation. The only way to get it is the plugin "
1937
- "translation files (.PO / .MO). If wpDiscuz has the languages you need you "
1938
- "should check this option to disable phrase system and it'll automatically "
1939
- "translate all phrases based on language files according to current language."
1940
- msgstr ""
1941
-
1942
- #: options/options-layouts/settings-general.php:98
1943
- msgid ""
1944
- "Help wpDiscuz to grow allowing people to recognize which comment plugin you "
1945
- "use"
1946
- msgstr ""
1947
-
1948
- #: options/options-layouts/settings-general.php:100
1949
- msgid ""
1950
- "Please check this option on to help wpDiscuz get more popularity as your "
1951
- "thank to the hard work we do for you totally free. This option adds a very "
1952
- "small (16x16px) icon under the comment section which will allow your site "
1953
- "visitors recognize the name of comment solution you use."
1954
- msgstr ""
1955
-
1956
- #: options/options-layouts/settings-general.php:105
1957
- msgid "Thank you!"
1958
- msgstr ""
1959
-
1960
- #: options/options-layouts/settings-integrations.php:14
1961
- msgid "BuddyPress"
1962
- msgstr ""
1963
-
1964
- #: options/options-layouts/settings-integrations.php:15
1965
- msgid "Users Ultra"
1966
- msgstr ""
1967
-
1968
- #: options/options-layouts/settings-integrations.php:16
1969
- msgid "User Pro"
1970
- msgstr ""
1971
-
1972
- #: options/options-layouts/settings-integrations.php:17
1973
- msgid "Ultimate Member"
1974
- msgstr ""
1975
-
1976
- #: options/options-layouts/settings-integrations.php:18
1977
- msgid "MyCred"
1978
- msgstr ""
1979
-
1980
- #: options/options-layouts/settings-integrations.php:19
1981
- msgid "PeepSo"
1982
- msgstr ""
1983
-
1984
- #: options/options-layouts/settings-integrations.php:24
1985
- #: options/options-layouts/settings-integrations.php:42
1986
- #: options/options-layouts/settings-integrations.php:60
1987
- #: options/options-layouts/settings-integrations.php:91
1988
- #: options/options-layouts/settings-integrations.php:125
1989
- #: options/options-layouts/settings-integrations.php:154
1990
- msgid "Please add the code below in current active theme's functions.php file"
1991
- msgstr ""
1992
-
1993
- #: options/options-layouts/settings-integrations.php:25
1994
- msgid ""
1995
- "This code will integrate BuddyPress profile URL with wpDiscuz. BuddyPress "
1996
- "Display Names and Avatars will be integrated automatically."
1997
- msgstr ""
1998
-
1999
- #: options/options-layouts/settings-integrations.php:43
2000
- msgid ""
2001
- "This code will integrate Users Ultra profile URL with wpDiscuz. Users Ultra "
2002
- "Display Names and Avatars will be integrated automatically."
2003
- msgstr ""
2004
-
2005
- #: options/options-layouts/settings-integrations.php:61
2006
- msgid ""
2007
- "This code will integrate User Pro profile URL with wpDiscuz. User Pro "
2008
- "Display Names and Avatars will be integrated automatically."
2009
- msgstr ""
2010
-
2011
- #: options/options-layouts/settings-integrations.php:92
2012
- msgid ""
2013
- "This code consists of two parts, which will integrate Ultimate Member "
2014
- "profile Display Name and Profile URL with wpDiscuz. UM Avatars will be "
2015
- "integrated automatically."
2016
- msgstr ""
2017
-
2018
- #: options/options-layouts/settings-integrations.php:126
2019
- msgid ""
2020
- "This code will integrate MyCred User Ranks and Badges under comment author "
2021
- "avatar."
2022
- msgstr ""
2023
-
2024
- #: options/options-layouts/settings-integrations.php:155
2025
- msgid "This code will integrate PeepSo profile url with wpDiscuz."
2026
- msgstr ""
2027
-
2028
- #: options/options-layouts/settings-list.php:7
2029
- msgid "Comment List Settings"
2030
- msgstr ""
2031
-
2032
- #: options/options-layouts/settings-list.php:12
2033
- msgid "Display only parent comments and <u>view replies &or;</u> button"
2034
- msgstr ""
2035
-
2036
- #: options/options-layouts/settings-list.php:14
2037
- msgid ""
2038
- "If this option is enabled only parent comment will be displayed. This "
2039
- "increases page load speed and keeps pages light. If visitor wants to read "
2040
- "replies he/she just need to click on [view replies (12)] button located on "
2041
- "all parent comments which have replies."
2042
- msgstr ""
2043
-
2044
- #: options/options-layouts/settings-list.php:25
2045
- msgid "Show sorting buttons"
2046
- msgstr ""
2047
-
2048
- #: options/options-layouts/settings-list.php:26
2049
- msgid ""
2050
- "This option enables comment sorting buttons (newest | oldest | most voted). "
2051
- "Sorting buttons are not available for the default comments pagination type "
2052
- "[1][2][3]... It's only active for [Load more] and other AYAX pagination "
2053
- "types."
2054
- msgstr ""
2055
-
2056
- #: options/options-layouts/settings-list.php:36
2057
- msgid "Set comments ordering to \"Most voted\" by default "
2058
- msgstr ""
2059
-
2060
- #: options/options-layouts/settings-list.php:46
2061
- msgid "Reverse child comments order"
2062
- msgstr ""
2063
-
2064
- #: options/options-layouts/settings-list.php:56
2065
- msgid "Comments loading/pagination type"
2066
- msgstr ""
2067
-
2068
- #: options/options-layouts/settings-list.php:58
2069
- msgid ""
2070
- "You can manage the number of comments for [Load more] option in Settings > "
2071
- "Discussion page, using \"Break comments into pages with [X] top level "
2072
- "comments per page\" option. To show the default Wordpress comment pagination "
2073
- "you should enable the checkbox on bigining of the same option."
2074
- msgstr ""
2075
-
2076
- #: options/options-layouts/settings-list.php:64
2077
- #: options/options-layouts/settings-list.php:66
2078
- msgid "[Load more] Button"
2079
- msgstr ""
2080
-
2081
- #: options/options-layouts/settings-list.php:68
2082
- #: options/options-layouts/settings-list.php:70
2083
- msgid "[Load rest of all comments] Button"
2084
- msgstr ""
2085
-
2086
- #: options/options-layouts/settings-list.php:72
2087
- #: options/options-layouts/settings-list.php:74
2088
- msgid "Load all comments"
2089
- msgstr ""
2090
-
2091
- #: options/options-layouts/settings-list.php:76
2092
- #: options/options-layouts/settings-list.php:78
2093
- msgid "Lazy load comments on scrolling"
2094
- msgstr ""
2095
-
2096
- #: options/options-layouts/settings-list.php:86
2097
- msgid ""
2098
- "The number of words before breaking comment text and showing \"Read more\" "
2099
- "link"
2100
- msgstr ""
2101
-
2102
- #: options/options-layouts/settings-list.php:88
2103
- msgid "Set this option value 0, to turn off comment text breaking function."
2104
- msgstr ""
2105
-
2106
- #: options/options-layouts/settings-list.php:98
2107
- msgid "Comment components"
2108
- msgstr ""
2109
-
2110
- #: options/options-layouts/settings-list.php:103
2111
- msgid "Hide comment link"
2112
- msgstr ""
2113
-
2114
- #: options/options-layouts/settings-list.php:106
2115
- msgid "Hide comment date"
2116
- msgstr ""
2117
-
2118
- #: options/options-layouts/settings-list.php:109
2119
- msgid "Hide Commenter Labels"
2120
- msgstr ""
2121
-
2122
- #: options/options-layouts/settings-list.php:118
2123
- msgid "Hide Voting buttons"
2124
- msgstr ""
2125
-
2126
- #: options/options-layouts/settings-list.php:127
2127
- msgid "Comment voting buttons icon"
2128
- msgstr ""
2129
-
2130
- #: options/options-layouts/settings-list.php:146
2131
- msgid "Comment voting statistic mode"
2132
- msgstr ""
2133
-
2134
- #: options/options-layouts/settings-list.php:150
2135
- msgid "total count"
2136
- msgstr ""
2137
-
2138
- #: options/options-layouts/settings-list.php:151
2139
- msgid "separate count"
2140
- msgstr ""
2141
-
2142
- #: options/options-layouts/settings-list.php:158
2143
- msgid "Allow guests to vote on comments"
2144
- msgstr ""
2145
-
2146
- #: options/options-layouts/settings-list.php:168
2147
- msgid "Display Ratings"
2148
- msgstr ""
2149
-
2150
- #: options/options-layouts/settings-list.php:173
2151
- msgid "Before Content"
2152
- msgstr ""
2153
-
2154
- #: options/options-layouts/settings-list.php:175
2155
- msgid "After Content"
2156
- msgstr ""
2157
-
2158
- #: options/options-layouts/settings-list.php:176
2159
- msgid "Display ratings on none singular pages"
2160
- msgstr ""
2161
-
2162
- #: options/options-layouts/settings-list.php:183
2163
- msgid "Disable Profiles URL"
2164
- msgstr ""
2165
-
2166
- #: options/options-layouts/settings-live-update.php:12
2167
- msgid "Live update options"
2168
- msgstr ""
2169
-
2170
- #: options/options-layouts/settings-live-update.php:13
2171
- msgid ""
2172
- "wpDiscuz live update is very light and doesn't overload your server. However "
2173
- "we recommend to monitor your server resources if you're on a Shared hosting "
2174
- "plan. There are some very weak hosting plans which may not be able to "
2175
- "perform very frequently live update requests. If you found some issue you "
2176
- "can set the option below 30 seconds or more."
2177
- msgstr ""
2178
-
2179
- #: options/options-layouts/settings-live-update.php:18
2180
- msgid "Never update"
2181
- msgstr ""
2182
-
2183
- #: options/options-layouts/settings-live-update.php:20
2184
- msgid "Turn off \"Live Update\" function"
2185
- msgstr ""
2186
-
2187
- #: options/options-layouts/settings-live-update.php:22
2188
- msgid "Show new comment/reply buttons to update manualy"
2189
- msgstr ""
2190
-
2191
- #: options/options-layouts/settings-live-update.php:24
2192
- msgid "Always check for new comments and show update buttons"
2193
- msgstr ""
2194
-
2195
- #: options/options-layouts/settings-live-update.php:26
2196
- msgid "Always update"
2197
- msgstr ""
2198
-
2199
- #: options/options-layouts/settings-live-update.php:28
2200
- msgid "Always check for new comments and update automatically"
2201
- msgstr ""
2202
-
2203
- #: options/options-layouts/settings-live-update.php:36
2204
- msgid "Disable live update for guests"
2205
- msgstr ""
2206
-
2207
- #: options/options-layouts/settings-live-update.php:45
2208
- msgid "Update comment list every"
2209
- msgstr ""
2210
-
2211
- #: options/options-layouts/settings-live-update.php:50
2212
- #: options/options-layouts/settings-live-update.php:51
2213
- #: options/options-layouts/settings-live-update.php:52
2214
- msgid "Seconds"
2215
- msgstr ""
2216
-
2217
- #: options/options-layouts/settings-live-update.php:53
2218
- #: options/phrases-layouts/phrases-datetime.php:43
2219
- msgid "Minute"
2220
- msgstr ""
2221
-
2222
- #: options/options-layouts/settings-social.php:12
2223
- msgid "User agreement prior to a social login action"
2224
- msgstr ""
2225
-
2226
- #: options/options-layouts/settings-social.php:13
2227
- msgid ""
2228
- "If this option is enabled, all Social Login buttons become not-clickable "
2229
- "until user accept automatic account creation process based on his/her Social "
2230
- "Network Account shared information (email, name). This checkbox and "
2231
- "appropriate information will be displayed when user click on a social login "
2232
- "button, prior to the login process. This extra step is added to comply with "
2233
- "the GDPR"
2234
- msgstr ""
2235
-
2236
- #: options/options-layouts/settings-social.php:13
2237
- msgid ""
2238
- "The note text and the label of this checkbox can be managed in Comments > "
2239
- "Phrases > Social Login tab."
2240
- msgstr ""
2241
-
2242
- #: options/options-layouts/settings-social.php:23
2243
- msgid "Display social login buttons on reply forms"
2244
- msgstr ""
2245
-
2246
- #: options/options-layouts/settings-social.php:37
2247
- msgid "Facebook"
2248
- msgstr ""
2249
-
2250
- #: options/options-layouts/settings-social.php:43
2251
- msgid ""
2252
- "To start using Facebook Login and Share Buttons you should get Facebook "
2253
- "Application Key and Secret for your website. Please follow to this"
2254
- msgstr ""
2255
-
2256
- #: options/options-layouts/settings-social.php:43
2257
- #: options/options-layouts/settings-social.php:102
2258
- #: options/options-layouts/settings-social.php:150
2259
- #: options/options-layouts/settings-social.php:190
2260
- #: options/options-layouts/settings-social.php:237
2261
- msgid "instruction &raquo;"
2262
- msgstr ""
2263
-
2264
- #: options/options-layouts/settings-social.php:44
2265
- msgid "Valid OAuth Redirect URI"
2266
- msgstr ""
2267
-
2268
- #: options/options-layouts/settings-social.php:50
2269
- #: options/options-layouts/settings-social.php:109
2270
- #: options/options-layouts/settings-social.php:157
2271
- #: options/options-layouts/settings-social.php:197
2272
- #: options/options-layouts/settings-social.php:244
2273
- msgid "Enable Login Button"
2274
- msgstr ""
2275
-
2276
- #: options/options-layouts/settings-social.php:60
2277
- msgid "Use Facebook OAuth2"
2278
- msgstr ""
2279
-
2280
- #: options/options-layouts/settings-social.php:71
2281
- #: options/options-layouts/settings-social.php:118
2282
- #: options/options-layouts/settings-social.php:166
2283
- #: options/options-layouts/settings-social.php:169
2284
- #: options/options-layouts/settings-social.php:206
2285
- #: options/options-layouts/settings-social.php:253
2286
- msgid "Enable Share Button"
2287
- msgstr ""
2288
-
2289
- #: options/options-layouts/settings-social.php:80
2290
- #: options/options-layouts/settings-social.php:83
2291
- #: options/options-layouts/settings-social.php:262
2292
- #: options/options-layouts/settings-social.php:264
2293
- msgid "Aplication ID"
2294
- msgstr ""
2295
-
2296
- #: options/options-layouts/settings-social.php:87
2297
- #: options/options-layouts/settings-social.php:90
2298
- #: options/options-layouts/settings-social.php:274
2299
- #: options/options-layouts/settings-social.php:276
2300
- msgid "Aplication Secret"
2301
- msgstr ""
2302
-
2303
- #: options/options-layouts/settings-social.php:96
2304
- msgid "Twitter"
2305
- msgstr ""
2306
-
2307
- #: options/options-layouts/settings-social.php:102
2308
- msgid ""
2309
- "To start using Twitter Login Button you should get Consumer Key and Secret "
2310
- "for your website. Please follow to this"
2311
- msgstr ""
2312
-
2313
- #: options/options-layouts/settings-social.php:103
2314
- msgid "Callback URL"
2315
- msgstr ""
2316
-
2317
- #: options/options-layouts/settings-social.php:127
2318
- #: options/options-layouts/settings-social.php:129
2319
- msgid "Consumer Key (API Key)"
2320
- msgstr ""
2321
-
2322
- #: options/options-layouts/settings-social.php:133
2323
- #: options/options-layouts/settings-social.php:136
2324
- msgid "Consumer Secret (API Secret)"
2325
- msgstr ""
2326
-
2327
- #: options/options-layouts/settings-social.php:144
2328
- msgid "Google +"
2329
- msgstr ""
2330
-
2331
- #: options/options-layouts/settings-social.php:150
2332
- msgid ""
2333
- "To start using Google+ Login Button you should get Client ID for your "
2334
- "website. Please follow to this"
2335
- msgstr ""
2336
-
2337
- #: options/options-layouts/settings-social.php:151
2338
- msgid "Authorized JavaScript Sources / Permitted URI redirects"
2339
- msgstr ""
2340
-
2341
- #: options/options-layouts/settings-social.php:175
2342
- #: options/options-layouts/settings-social.php:177
2343
- msgid "Client ID"
2344
- msgstr ""
2345
-
2346
- #: options/options-layouts/settings-social.php:184
2347
- msgid "VK"
2348
- msgstr ""
2349
-
2350
- #: options/options-layouts/settings-social.php:190
2351
- msgid ""
2352
- "To start using VK Login Button you should get Application ID and Secure Key. "
2353
- "Please follow to this "
2354
- msgstr ""
2355
-
2356
- #: options/options-layouts/settings-social.php:191
2357
- #: options/options-layouts/settings-social.php:238
2358
- msgid "Redirect URI"
2359
- msgstr ""
2360
-
2361
- #: options/options-layouts/settings-social.php:215
2362
- #: options/options-layouts/settings-social.php:217
2363
- msgid "Application ID"
2364
- msgstr ""
2365
-
2366
- #: options/options-layouts/settings-social.php:221
2367
- #: options/options-layouts/settings-social.php:223
2368
- msgid "Secure Key"
2369
- msgstr ""
2370
-
2371
- #: options/options-layouts/settings-social.php:230
2372
- msgid "OK"
2373
- msgstr ""
2374
-
2375
- #: options/options-layouts/settings-social.php:236
2376
- msgid "Getting started with"
2377
- msgstr ""
2378
-
2379
- #: options/options-layouts/settings-social.php:237
2380
- msgid ""
2381
- "To get the Aplication ID, Key and Secret, you should create an app using one "
2382
- "of the supported types (external, Android, iOS), use this"
2383
- msgstr ""
2384
-
2385
- #: options/options-layouts/settings-social.php:268
2386
- #: options/options-layouts/settings-social.php:270
2387
- msgid "Aplication Key"
2388
- msgstr ""
2389
-
2390
- #: options/options-layouts/settings-style.php:7
2391
- msgid "Background and Colors"
2392
- msgstr ""
2393
-
2394
- #: options/options-layouts/settings-style.php:12
2395
- msgid "Comment Form and Comment List Style"
2396
- msgstr ""
2397
-
2398
- #: options/options-layouts/settings-style.php:16
2399
- msgid "Default"
2400
- msgstr ""
2401
-
2402
- #: options/options-layouts/settings-style.php:17
2403
- msgid "Dark"
2404
- msgstr ""
2405
-
2406
- #: options/options-layouts/settings-style.php:24
2407
- msgid "Colors"
2408
- msgstr ""
2409
-
2410
- #: options/options-layouts/settings-style.php:28
2411
- #: options/options-layouts/settings-style.php:33
2412
- #: options/options-layouts/settings-style.php:38
2413
- #: options/options-layouts/settings-style.php:45
2414
- #: options/options-layouts/settings-style.php:50
2415
- #: options/options-layouts/settings-style.php:55
2416
- #: options/options-layouts/settings-style.php:106
2417
- #: options/options-layouts/settings-style.php:111
2418
- #: options/options-layouts/settings-style.php:116
2419
- #: options/options-layouts/settings-style.php:131
2420
- msgid "Example: #00FF00"
2421
- msgstr ""
2422
-
2423
- #: options/options-layouts/settings-style.php:29
2424
- msgid "Primary Color"
2425
- msgstr ""
2426
-
2427
- #: options/options-layouts/settings-style.php:34
2428
- msgid "Subscription Bar Background"
2429
- msgstr ""
2430
-
2431
- #: options/options-layouts/settings-style.php:39
2432
- msgid "Comment form fields border"
2433
- msgstr ""
2434
-
2435
- #: options/options-layouts/settings-style.php:46
2436
- msgid "Comment Background"
2437
- msgstr ""
2438
-
2439
- #: options/options-layouts/settings-style.php:51
2440
- msgid "Reply Background"
2441
- msgstr ""
2442
-
2443
- #: options/options-layouts/settings-style.php:56
2444
- msgid "Unread comments background"
2445
- msgstr ""
2446
-
2447
- #: options/options-layouts/settings-style.php:64
2448
- msgid "Button Colors"
2449
- msgstr ""
2450
-
2451
- #: options/options-layouts/settings-style.php:68
2452
- #: options/options-layouts/settings-style.php:78
2453
- msgid "Text Color"
2454
- msgstr ""
2455
-
2456
- #: options/options-layouts/settings-style.php:69
2457
- msgid "Primary buttons text"
2458
- msgstr ""
2459
-
2460
- #: options/options-layouts/settings-style.php:72
2461
- msgid "Background Color"
2462
- msgstr ""
2463
-
2464
- #: options/options-layouts/settings-style.php:73
2465
- msgid "Primary buttons background"
2466
- msgstr ""
2467
-
2468
- #: options/options-layouts/settings-style.php:79
2469
- msgid "Secondary buttons text"
2470
- msgstr ""
2471
-
2472
- #: options/options-layouts/settings-style.php:82
2473
- msgid "Border Color"
2474
- msgstr ""
2475
-
2476
- #: options/options-layouts/settings-style.php:83
2477
- msgid "Secondary buttons border"
2478
- msgstr ""
2479
-
2480
- #: options/options-layouts/settings-style.php:89
2481
- msgid "Up Vote Color"
2482
- msgstr ""
2483
-
2484
- #: options/options-layouts/settings-style.php:90
2485
- msgid "Up vote button"
2486
- msgstr ""
2487
-
2488
- #: options/options-layouts/settings-style.php:93
2489
- msgid "Down Vote Color"
2490
- msgstr ""
2491
-
2492
- #: options/options-layouts/settings-style.php:94
2493
- msgid "Down vote button"
2494
- msgstr ""
2495
-
2496
- #: options/options-layouts/settings-style.php:102
2497
- msgid "Rating Star Colors"
2498
- msgstr ""
2499
-
2500
- #: options/options-layouts/settings-style.php:107
2501
- msgid "Rating Stars Hover Color"
2502
- msgstr ""
2503
-
2504
- #: options/options-layouts/settings-style.php:112
2505
- msgid "Rating Stars Inactive Color"
2506
- msgstr ""
2507
-
2508
- #: options/options-layouts/settings-style.php:117
2509
- msgid "Rating Stars Active Color"
2510
- msgstr ""
2511
-
2512
- #: options/options-layouts/settings-style.php:124
2513
- msgid "Commenter Label Colors by User Role"
2514
- msgstr ""
2515
-
2516
- #: options/options-layouts/settings-style.php:131
2517
- msgid "label color"
2518
- msgstr ""
2519
-
2520
- #: options/options-layouts/settings-style.php:143
2521
- msgid "Comment text size in pixels"
2522
- msgstr ""
2523
-
2524
- #: options/options-layouts/settings-style.php:158
2525
- msgid "Do not load Font Awesome css lib"
2526
- msgstr ""
2527
-
2528
- #: options/options-layouts/settings-style.php:159
2529
- msgid ""
2530
- "IMPORTANT: wpDiscuz uses FontAwesome version 5. in case your theme still "
2531
- "uses the old 4.x versions you should not disable this lib. The theme 4.x "
2532
- "version doesn't support FontAwesome 5 icons, thus all wpDiscuz icons will be "
2533
- "lost."
2534
- msgstr ""
2535
-
2536
- #: options/options-layouts/settings-style.php:169
2537
- msgid "Custom CSS Code"
2538
- msgstr ""
2539
-
2540
- #: options/options-layouts/settings-subscription.php:11
2541
- msgid "Comment Subscription"
2542
- msgstr ""
2543
-
2544
- #: options/options-layouts/settings-subscription.php:15
2545
- msgid "Notify comment author once comment is approved"
2546
- msgstr ""
2547
-
2548
- #: options/options-layouts/settings-subscription.php:23
2549
- msgid "Disable subscription confirmation for registered users"
2550
- msgstr ""
2551
-
2552
- #: options/options-layouts/settings-subscription.php:33
2553
- msgid "Disable subscription confirmation for guests"
2554
- msgstr ""
2555
-
2556
- #: options/options-layouts/settings-subscription.php:43
2557
- msgid "Show subscription types in dropdown"
2558
- msgstr ""
2559
-
2560
- #: options/options-layouts/settings-subscription.php:50
2561
- msgid "Subscribe to all comments of this post"
2562
- msgstr ""
2563
-
2564
- #: options/options-layouts/settings-subscription.php:54
2565
- msgid "Subscribe to all replies to my comments "
2566
- msgstr ""
2567
-
2568
- #: options/options-layouts/settings-subscription.php:56
2569
- #: options/options-layouts/settings-subscription.php:58
2570
- msgid "Both"
2571
- msgstr ""
2572
-
2573
- #: options/options-layouts/settings-subscription.php:67
2574
- msgid "Show \"Notify of new replies to this comment\""
2575
- msgstr ""
2576
-
2577
- #: options/options-layouts/settings-subscription.php:69
2578
- msgid ""
2579
- "wpDiscuz is the only comment plugin which allows you to subscribe to certain "
2580
- "comment replies. This option is located above [Post Comment] button in "
2581
- "comment form. You can disable this subscription way by unchecking this "
2582
- "option."
2583
- msgstr ""
2584
-
2585
- #: options/options-layouts/settings-subscription.php:80
2586
- msgid "\"Notify of new replies to this comment\" checked by default"
2587
- msgstr ""
2588
-
2589
- #: options/options-layouts/settings-subscription.php:91
2590
- msgid "Use Postmatic for subscriptions and commenting by email"
2591
- msgstr ""
2592
-
2593
- #: options/options-layouts/settings-subscription.php:92
2594
- msgid ""
2595
- "Postmatic allows your users subscribe to comments. Instead of just being "
2596
- "notified, they add a reply right from their inbox."
2597
- msgstr ""
2598
-
2599
- #: options/options-layouts/settings-subscription.php:101
2600
- msgid "User Subscription / Following"
2601
- msgstr ""
2602
-
2603
- #: options/options-layouts/settings-subscription.php:106
2604
- msgid "Enable user following feature"
2605
- msgstr ""
2606
-
2607
- #: options/options-layouts/settings-subscription.php:116
2608
- msgid "Follow users without email confirmation"
2609
- msgstr ""
2610
-
2611
- #: options/phrases-layouts/phrases-comment.php:7
2612
- msgid "Comment Template Phrases"
2613
- msgstr ""
2614
-
2615
- #: options/phrases-layouts/phrases-comment.php:83
2616
- msgid "Save edited comment button text"
2617
- msgstr ""
2618
-
2619
- #: options/phrases-layouts/phrases-comment.php:87
2620
- msgid "Cancel comment editing button text"
2621
- msgstr ""
2622
-
2623
- #: options/phrases-layouts/phrases-comment.php:91
2624
- msgid "Comment read more link text"
2625
- msgstr ""
2626
-
2627
- #: options/phrases-layouts/phrases-comment.php:95
2628
- msgid "Anonymous commenter name"
2629
- msgstr ""
2630
-
2631
- #: options/phrases-layouts/phrases-comment.php:99
2632
- msgid "Stick button title"
2633
- msgstr ""
2634
-
2635
- #: options/phrases-layouts/phrases-comment.php:111
2636
- msgid "Sticky comment icon title"
2637
- msgstr ""
2638
-
2639
- #: options/phrases-layouts/phrases-comment.php:115
2640
- msgid "Close button title"
2641
- msgstr ""
2642
-
2643
- #: options/phrases-layouts/phrases-comment.php:127
2644
- msgid "Closed comment icon title"
2645
- msgstr ""
2646
-
2647
- #: options/phrases-layouts/phrases-datetime.php:7
2648
- msgid "Date/Time Phrases"
2649
- msgstr ""
2650
-
2651
- #: options/phrases-layouts/phrases-datetime.php:11
2652
- msgid "Year"
2653
- msgstr ""
2654
-
2655
- #: options/phrases-layouts/phrases-datetime.php:15
2656
- msgid "Years (Plural Form)"
2657
- msgstr ""
2658
-
2659
- #: options/phrases-layouts/phrases-datetime.php:19
2660
- msgid "Month"
2661
- msgstr ""
2662
-
2663
- #: options/phrases-layouts/phrases-datetime.php:23
2664
- msgid "Months (Plural Form)"
2665
- msgstr ""
2666
-
2667
- #: options/phrases-layouts/phrases-datetime.php:27
2668
- msgid "Day"
2669
- msgstr ""
2670
-
2671
- #: options/phrases-layouts/phrases-datetime.php:31
2672
- msgid "Days (Plural Form)"
2673
- msgstr ""
2674
-
2675
- #: options/phrases-layouts/phrases-datetime.php:39
2676
- msgid "Hours (Plural Form)"
2677
- msgstr ""
2678
-
2679
- #: options/phrases-layouts/phrases-datetime.php:47
2680
- msgid "Minutes (Plural Form)"
2681
- msgstr ""
2682
-
2683
- #: options/phrases-layouts/phrases-datetime.php:51
2684
- msgid "Second"
2685
- msgstr ""
2686
-
2687
- #: options/phrases-layouts/phrases-datetime.php:55
2688
- msgid "Seconds (Plural Form)"
2689
- msgstr ""
2690
-
2691
- #: options/phrases-layouts/phrases-datetime.php:59
2692
- msgid "Commented \"right now\" text"
2693
- msgstr ""
2694
-
2695
- #: options/phrases-layouts/phrases-datetime.php:63
2696
- msgid "Ago text"
2697
- msgstr ""
2698
-
2699
- #: options/phrases-layouts/phrases-email.php:17
2700
- msgid "Email Template Phrases"
2701
- msgstr ""
2702
-
2703
- #: options/phrases-layouts/phrases-email.php:22
2704
- msgid "Subscription type: Post comments"
2705
- msgstr ""
2706
-
2707
- #: options/phrases-layouts/phrases-email.php:23
2708
- msgid "Post comment notification subject"
2709
- msgstr ""
2710
-
2711
- #: options/phrases-layouts/phrases-email.php:24
2712
- #: options/phrases-layouts/phrases-email.php:35
2713
- #: options/phrases-layouts/phrases-email.php:55
2714
- #: options/phrases-layouts/phrases-email.php:66
2715
- #: options/phrases-layouts/phrases-email.php:86
2716
- #: options/phrases-layouts/phrases-email.php:97
2717
- #: options/phrases-layouts/phrases-email.php:115
2718
- #: options/phrases-layouts/phrases-email.php:126
2719
- #: options/phrases-layouts/phrases-email.php:142
2720
- #: options/phrases-layouts/phrases-email.php:154
2721
- #: options/phrases-layouts/phrases-follow.php:57
2722
- #: options/phrases-layouts/phrases-follow.php:68
2723
- #: options/phrases-layouts/phrases-follow.php:84
2724
- #: options/phrases-layouts/phrases-follow.php:95
2725
- #: options/phrases-layouts/phrases-user-settings.php:61
2726
- #: options/phrases-layouts/phrases-user-settings.php:73
2727
- #: options/phrases-layouts/phrases-user-settings.php:86
2728
- #: options/phrases-layouts/phrases-user-settings.php:98
2729
- #: options/phrases-layouts/phrases-user-settings.php:111
2730
- #: options/phrases-layouts/phrases-user-settings.php:123
2731
- msgid "Available shortcodes"
2732
- msgstr ""
2733
-
2734
- #: options/phrases-layouts/phrases-email.php:34
2735
- msgid "Post comment notification content"
2736
- msgstr ""
2737
-
2738
- #: options/phrases-layouts/phrases-email.php:43
2739
- #: options/phrases-layouts/phrases-email.php:74
2740
- msgid "Shortcode above will work for registered users only"
2741
- msgstr ""
2742
-
2743
- #: options/phrases-layouts/phrases-email.php:53
2744
- msgid "Subscription type: All my comments"
2745
- msgstr ""
2746
-
2747
- #: options/phrases-layouts/phrases-email.php:54
2748
- #: options/phrases-layouts/phrases-email.php:85
2749
- msgid "New reply notification subject"
2750
- msgstr ""
2751
-
2752
- #: options/phrases-layouts/phrases-email.php:65
2753
- #: options/phrases-layouts/phrases-email.php:96
2754
- msgid "New Reply notification content"
2755
- msgstr ""
2756
-
2757
- #: options/phrases-layouts/phrases-email.php:84
2758
- msgid "Subscription type: Single comment"
2759
- msgstr ""
2760
-
2761
- #: options/phrases-layouts/phrases-email.php:114
2762
- msgid "Subscription confirmation email subject"
2763
- msgstr ""
2764
-
2765
- #: options/phrases-layouts/phrases-email.php:125
2766
- msgid "Subscription confirmation email content"
2767
- msgstr ""
2768
-
2769
- #: options/phrases-layouts/phrases-email.php:141
2770
- msgid "Comment approved subject"
2771
- msgstr ""
2772
-
2773
- #: options/phrases-layouts/phrases-email.php:152
2774
- msgid "Comment approved message"
2775
- msgstr ""
2776
-
2777
- #: options/phrases-layouts/phrases-email.php:173
2778
- msgid "Ignore subscription"
2779
- msgstr ""
2780
-
2781
- #: options/phrases-layouts/phrases-error.php:7
2782
- #: options/phrases-layouts/phrases-notification.php:7
2783
- msgid "Notification Phrases"
2784
- msgstr ""
2785
-
2786
- #: options/phrases-layouts/phrases-error.php:11
2787
- msgid "Error message for empty field"
2788
- msgstr ""
2789
-
2790
- #: options/phrases-layouts/phrases-error.php:15
2791
- msgid "Error message for invalid email field"
2792
- msgstr ""
2793
-
2794
- #: options/phrases-layouts/phrases-error.php:19
2795
- msgid "Error message for invalid website url field"
2796
- msgstr ""
2797
-
2798
- #: options/phrases-layouts/phrases-error.php:23
2799
- msgid "You can vote only 1 time"
2800
- msgstr ""
2801
-
2802
- #: options/phrases-layouts/phrases-error.php:31
2803
- msgid "You Cannot Vote On Your Comment"
2804
- msgstr ""
2805
-
2806
- #: options/phrases-layouts/phrases-error.php:35
2807
- msgid "You are not allowed to vote for this comment (Voting from same IP)"
2808
- msgstr ""
2809
-
2810
- #: options/phrases-layouts/phrases-error.php:47
2811
- msgid "Message if input text length is too short"
2812
- msgstr ""
2813
-
2814
- #: options/phrases-layouts/phrases-error.php:51
2815
- msgid "Message if input text length is too long"
2816
- msgstr ""
2817
-
2818
- #: options/phrases-layouts/phrases-error.php:55
2819
- msgid "Message if comment was not updated"
2820
- msgstr ""
2821
-
2822
- #: options/phrases-layouts/phrases-error.php:59
2823
- msgid "Message if comment no longer possible to edit"
2824
- msgstr ""
2825
-
2826
- #: options/phrases-layouts/phrases-error.php:63
2827
- msgid "Message if comment text not changed"
2828
- msgstr ""
2829
-
2830
- #: options/phrases-layouts/phrases-follow.php:7
2831
- msgid "Follow Users Phrases"
2832
- msgstr ""
2833
-
2834
- #: options/phrases-layouts/phrases-follow.php:23
2835
- msgid "You stopped following this comment author"
2836
- msgstr ""
2837
-
2838
- #: options/phrases-layouts/phrases-follow.php:27
2839
- msgid "Please check your email and confirm the follow"
2840
- msgstr ""
2841
-
2842
- #: options/phrases-layouts/phrases-follow.php:31
2843
- msgid "Sorry, we couldn't send confirmation email"
2844
- msgstr ""
2845
-
2846
- #: options/phrases-layouts/phrases-follow.php:35
2847
- msgid "Please login to follow users"
2848
- msgstr ""
2849
-
2850
- #: options/phrases-layouts/phrases-follow.php:39
2851
- msgid "We are sorry, following this user is impossible"
2852
- msgstr ""
2853
-
2854
- #: options/phrases-layouts/phrases-follow.php:43
2855
- msgid "We are sorry, following failed. Please try again later."
2856
- msgstr ""
2857
-
2858
- #: options/phrases-layouts/phrases-follow.php:47
2859
- msgid "Confirm following link text"
2860
- msgstr ""
2861
-
2862
- #: options/phrases-layouts/phrases-follow.php:51
2863
- msgid "Cancel following link text"
2864
- msgstr ""
2865
-
2866
- #: options/phrases-layouts/phrases-follow.php:56
2867
- msgid "Follow confirmation email subject"
2868
- msgstr ""
2869
-
2870
- #: options/phrases-layouts/phrases-follow.php:67
2871
- msgid "Follow confirmation email content"
2872
- msgstr ""
2873
-
2874
- #: options/phrases-layouts/phrases-follow.php:83
2875
- msgid "Following email subject"
2876
- msgstr ""
2877
-
2878
- #: options/phrases-layouts/phrases-follow.php:94
2879
- msgid "Follow email content"
2880
- msgstr ""
2881
-
2882
- #: options/phrases-layouts/phrases-form.php:7
2883
- msgid "Form Template Phrases"
2884
- msgstr ""
2885
-
2886
- #: options/phrases-layouts/phrases-form.php:11
2887
- msgid "Comment Field Start"
2888
- msgstr ""
2889
-
2890
- #: options/phrases-layouts/phrases-form.php:15
2891
- msgid "Comment Field Join"
2892
- msgstr ""
2893
-
2894
- #: options/phrases-layouts/phrases-form.php:47
2895
- msgid "Email Field"
2896
- msgstr ""
2897
-
2898
- #: options/phrases-layouts/phrases-form.php:59
2899
- msgid "Notify on new comments"
2900
- msgstr ""
2901
-
2902
- #: options/phrases-layouts/phrases-form.php:63
2903
- msgid "Notify on all new replies"
2904
- msgstr ""
2905
-
2906
- #: options/phrases-layouts/phrases-form.php:67
2907
- msgid "Notify on new replies to this comment"
2908
- msgstr ""
2909
-
2910
- #: options/phrases-layouts/phrases-form.php:87
2911
- msgid "Subscribed on this comment replies"
2912
- msgstr ""
2913
-
2914
- #: options/phrases-layouts/phrases-form.php:91
2915
- msgid "Subscribed on all your comments replies"
2916
- msgstr ""
2917
-
2918
- #: options/phrases-layouts/phrases-form.php:95
2919
- msgid "Subscribed on this post"
2920
- msgstr ""
2921
-
2922
- #: options/phrases-layouts/phrases-form.php:99
2923
- msgid "Form subscription button"
2924
- msgstr ""
2925
-
2926
- #: options/phrases-layouts/phrases-form.php:103
2927
- msgid "Invisible Antispam Protection note"
2928
- msgstr ""
2929
-
2930
- #: options/phrases-layouts/phrases-general.php:7
2931
- msgid "General Phrases"
2932
- msgstr ""
2933
-
2934
- #: options/phrases-layouts/phrases-general.php:11
2935
- msgid "Be the first to comment"
2936
- msgstr ""
2937
-
2938
- #: options/phrases-layouts/phrases-general.php:15
2939
- msgid "Load More Button"
2940
- msgstr ""
2941
-
2942
- #: options/phrases-layouts/phrases-general.php:23
2943
- msgid "Button text if has new comment"
2944
- msgstr ""
2945
-
2946
- #: options/phrases-layouts/phrases-general.php:27
2947
- msgid "Button text if has new comments (Plural Form)"
2948
- msgstr ""
2949
-
2950
- #: options/phrases-layouts/phrases-general.php:31
2951
- msgid "Button text if has new reply"
2952
- msgstr ""
2953
-
2954
- #: options/phrases-layouts/phrases-general.php:35
2955
- msgid "Button text if has new replies (Plural Form)"
2956
- msgstr ""
2957
-
2958
- #: options/phrases-layouts/phrases-notification.php:24
2959
- msgid "Postmatic subscription label"
2960
- msgstr ""
2961
-
2962
- #: options/phrases-layouts/phrases-notification.php:42
2963
- msgid "Logged In"
2964
- msgstr ""
2965
-
2966
- #: options/phrases-layouts/phrases-notification.php:46
2967
- msgid "To post a comment"
2968
- msgstr ""
2969
-
2970
- #: options/phrases-layouts/phrases-notification.php:50
2971
- msgid "Logged in as"
2972
- msgstr ""
2973
-
2974
- #: options/phrases-layouts/phrases-notification.php:62
2975
- msgid "Login To Vote"
2976
- msgstr ""
2977
-
2978
- #: options/phrases-layouts/phrases-notification.php:66
2979
- msgid "Comment waiting moderation"
2980
- msgstr ""
2981
-
2982
- #: options/phrases-layouts/phrases-notification.php:70
2983
- msgid "Message if commenting disabled by user role"
2984
- msgstr ""
2985
-
2986
- #: options/phrases-layouts/phrases-social-login.php:15
2987
- msgid "Social login agreement label"
2988
- msgstr ""
2989
-
2990
- #: options/phrases-layouts/phrases-social-login.php:19
2991
- msgid "Social login agreement description"
2992
- msgstr ""
2993
-
2994
- #: options/phrases-layouts/phrases-user-settings.php:7
2995
- msgid "User Settings Phrases"
2996
- msgstr ""
2997
-
2998
- #: options/phrases-layouts/phrases-user-settings.php:35
2999
- msgid "\"Bulk management via email\" description"
3000
- msgstr ""
3001
-
3002
- #: options/phrases-layouts/phrases-user-settings.php:72
3003
- msgid "Delete all comments email text"
3004
- msgstr ""
3005
-
3006
- #: options/phrases-layouts/phrases-user-settings.php:97
3007
- msgid "Delete all subscriptions email text"
3008
- msgstr ""
3009
-
3010
- #: options/phrases-layouts/phrases-user-settings.php:122
3011
- msgid "Delete all follows email text"
3012
- msgstr ""
3013
-
3014
- #: options/phrases-layouts/phrases-user-settings.php:146
3015
- msgid "Please check your email."
3016
- msgstr ""
3017
-
3018
- #: options/tools-layouts/options-export.php:9
3019
- msgid ""
3020
- "Using this tool you can migrate or backup/restore wpDiscuz options from one "
3021
- "WordPress to another."
3022
- msgstr ""
3023
-
3024
- #: options/tools-layouts/options-export.php:20
3025
- msgid "Download Options"
3026
- msgstr ""
3027
-
3028
- #: options/tools-layouts/options-export.php:28
3029
- msgid "Backup Options"
3030
- msgstr ""
3031
-
3032
- #: options/tools-layouts/options-import.php:9
3033
- msgid ""
3034
- "Here you can import and restore wpDiscuz options. You just need to choose "
3035
- "backup file and click import options."
3036
- msgstr ""
3037
-
3038
- #: options/tools-layouts/options-import.php:22
3039
- msgid "Import Options"
3040
- msgstr ""
3041
-
3042
- #: options/tools-layouts/subscriptions-import.php:11
3043
- msgid ""
3044
- "Using this tool you can import subscriptions from other plugins to wpDiscuz."
3045
- msgstr ""
3046
-
3047
- #: options/tools-layouts/subscriptions-import.php:19
3048
- msgid "Import subscriptions from Subscribe To Comments Reloaded"
3049
- msgstr ""
3050
-
3051
- #: options/tools-layouts/subscriptions-import.php:20
3052
- msgid "Import subscriptions from \"Subscribe To Comments Reloaded\" plugin"
3053
- msgstr ""
3054
-
3055
- #: options/tools-layouts/tools-other.php:16
3056
- msgid "Update vote data"
3057
- msgstr ""
3058
-
3059
- #: options/tools-layouts/tools-other.php:18
3060
- msgid ""
3061
- "We recommend use this tool to do one way hashing of commenter IP addresses "
3062
- "to 32 bit strings, so you'll keep less personal information of your "
3063
- "commenters. This tool only hashes voter IP addresses. You also can stop "
3064
- "saving of commenter IP addresses in comments database table using this "
3065
- "instruction "
3066
- msgstr ""
3067
-
3068
- #: options/tools-layouts/tools-other.php:26
3069
- msgid "Start Hashing"
3070
- msgstr ""
3071
-
3072
- #: options/tools-layouts/tools-other.php:27
3073
- msgid "Hash users IP addresses"
3074
- msgstr ""
3075
-
3076
- #: templates/comment/comment-form.php:61
3077
- msgid "Your comments have been deleted from database"
3078
- msgstr ""
3079
-
3080
- #: templates/comment/comment-form.php:72
3081
- msgid "You cancel all your subscriptions successfully"
3082
- msgstr ""
3083
-
3084
- #: templates/comment/comment-form.php:82
3085
- msgid "You cancel all your follows successfully"
3086
- msgstr ""
3087
-
3088
- #: templates/comment/comment-form.php:91
3089
- msgid "Follow has been confirmed successfully"
3090
- msgstr ""
3091
-
3092
- #: templates/comment/comment-form.php:99
3093
- msgid "Follow has been canceled successfully"
3094
- msgstr ""
3095
-
3096
- #: templates/comment/comment-form.php:127
3097
- msgid "Unable to send an email"
3098
- msgstr ""
3099
-
3100
- #: templates/comment/comment-form.php:129
3101
- msgid "Subscription Fault"
3102
- msgstr ""
3103
-
3104
- #: utils/layouts/pagination.php:22
3105
- msgid "&laquo;"
3106
- msgstr ""
3107
-
3108
- #: utils/layouts/pagination.php:28
3109
- msgid "&lsaquo;"
3110
- msgstr ""
3111
-
3112
- #: utils/layouts/pagination.php:52
3113
- msgid "&raquo;"
3114
- msgstr ""
3115
-
3116
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:16
3117
- #: forms/wpdFormAttr/Field/CheckboxField.php:17
3118
- #: forms/wpdFormAttr/Field/ColorField.php:17
3119
- #: forms/wpdFormAttr/Field/CookiesConsent.php:18
3120
- #: forms/wpdFormAttr/Field/DateField.php:17
3121
- #: forms/wpdFormAttr/Field/NumberField.php:17
3122
- #: forms/wpdFormAttr/Field/RadioField.php:17
3123
- #: forms/wpdFormAttr/Field/RatingField.php:16
3124
- #: forms/wpdFormAttr/Field/SelectField.php:17
3125
- #: forms/wpdFormAttr/Field/TextAreaField.php:18
3126
- #: forms/wpdFormAttr/Field/TextField.php:17
3127
- #: forms/wpdFormAttr/Field/UrlField.php:17
3128
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:32
3129
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:24
3130
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:23
3131
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:23
3132
- msgid "Description"
3133
- msgstr ""
3134
-
3135
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:18
3136
- #: forms/wpdFormAttr/Field/CheckboxField.php:19
3137
- #: forms/wpdFormAttr/Field/ColorField.php:19
3138
- #: forms/wpdFormAttr/Field/CookiesConsent.php:20
3139
- #: forms/wpdFormAttr/Field/DateField.php:19
3140
- #: forms/wpdFormAttr/Field/NumberField.php:19
3141
- #: forms/wpdFormAttr/Field/NumberField.php:24
3142
- #: forms/wpdFormAttr/Field/NumberField.php:29
3143
- #: forms/wpdFormAttr/Field/RadioField.php:19
3144
- #: forms/wpdFormAttr/Field/RatingField.php:18
3145
- #: forms/wpdFormAttr/Field/SelectField.php:19
3146
- #: forms/wpdFormAttr/Field/TextAreaField.php:20
3147
- #: forms/wpdFormAttr/Field/TextField.php:19
3148
- #: forms/wpdFormAttr/Field/UrlField.php:19
3149
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:34
3150
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:26
3151
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:25
3152
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:25
3153
- msgid ""
3154
- "Field specific short description or some rule related to inserted "
3155
- "information."
3156
- msgstr ""
3157
-
3158
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:21
3159
- #: forms/wpdFormAttr/Field/CookiesConsent.php:23
3160
- msgid "Checkbox Label"
3161
- msgstr ""
3162
-
3163
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:22
3164
- msgid ""
3165
- "You can use HTML tags to add links to website Terms and Privacy Policy pages."
3166
- " For example: "
3167
- msgstr ""
3168
-
3169
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:28
3170
- #: forms/wpdFormAttr/Field/CheckboxField.php:33
3171
- #: forms/wpdFormAttr/Field/ColorField.php:29
3172
- #: forms/wpdFormAttr/Field/DateField.php:29
3173
- #: forms/wpdFormAttr/Field/NumberField.php:39
3174
- #: forms/wpdFormAttr/Field/RadioField.php:33
3175
- #: forms/wpdFormAttr/Field/RatingField.php:28
3176
- #: forms/wpdFormAttr/Field/SelectField.php:33
3177
- #: forms/wpdFormAttr/Field/TextAreaField.php:23
3178
- #: forms/wpdFormAttr/Field/TextField.php:29
3179
- #: forms/wpdFormAttr/Field/UrlField.php:29
3180
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:36
3181
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:35
3182
- msgid "Field is required"
3183
- msgstr ""
3184
-
3185
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:32
3186
- #: forms/wpdFormAttr/Field/CheckboxField.php:37
3187
- #: forms/wpdFormAttr/Field/ColorField.php:33
3188
- #: forms/wpdFormAttr/Field/DateField.php:33
3189
- #: forms/wpdFormAttr/Field/HTMLField.php:21
3190
- #: forms/wpdFormAttr/Field/NumberField.php:43
3191
- #: forms/wpdFormAttr/Field/RadioField.php:37
3192
- #: forms/wpdFormAttr/Field/SelectField.php:37
3193
- #: forms/wpdFormAttr/Field/TextAreaField.php:27
3194
- #: forms/wpdFormAttr/Field/TextField.php:33
3195
- #: forms/wpdFormAttr/Field/UrlField.php:33
3196
- msgid "Display on reply form"
3197
- msgstr ""
3198
-
3199
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:36
3200
- msgid "Display for Guests"
3201
- msgstr ""
3202
-
3203
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:40
3204
- msgid "Display for Registered Users"
3205
- msgstr ""
3206
-
3207
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:44
3208
- msgid "Don't show again if the agreement is accepted once"
3209
- msgstr ""
3210
-
3211
- #: forms/wpdFormAttr/Field/AgreementCheckbox.php:101
3212
- #: forms/wpdFormAttr/Field/CheckboxField.php:153
3213
- #: forms/wpdFormAttr/Field/ColorField.php:115
3214
- #: forms/wpdFormAttr/Field/DateField.php:115
3215
- #: forms/wpdFormAttr/Field/NumberField.php:125
3216
- #: forms/wpdFormAttr/Field/RadioField.php:130
3217
- #: forms/wpdFormAttr/Field/RatingField.php:126
3218
- #: forms/wpdFormAttr/Field/SelectField.php:125
3219
- #: forms/wpdFormAttr/Field/TextAreaField.php:98
3220
- #: forms/wpdFormAttr/Field/TextField.php:109
3221
- #: forms/wpdFormAttr/Field/UrlField.php:110
3222
- msgid "field is required!"
3223
- msgstr ""
3224
-
3225
- #: forms/wpdFormAttr/Field/CheckboxField.php:14
3226
- #: forms/wpdFormAttr/Field/ColorField.php:14
3227
- #: forms/wpdFormAttr/Field/DateField.php:14
3228
- #: forms/wpdFormAttr/Field/NumberField.php:14
3229
- #: forms/wpdFormAttr/Field/RadioField.php:14
3230
- #: forms/wpdFormAttr/Field/SelectField.php:14
3231
- #: forms/wpdFormAttr/Field/TextAreaField.php:15
3232
- #: forms/wpdFormAttr/Field/TextField.php:14
3233
- #: forms/wpdFormAttr/Field/UrlField.php:14
3234
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:29
3235
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:21
3236
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:20
3237
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:20
3238
- msgid "Also used for field placeholder"
3239
- msgstr ""
3240
-
3241
- #: forms/wpdFormAttr/Field/CheckboxField.php:28
3242
- #: forms/wpdFormAttr/Field/RadioField.php:28
3243
- #: forms/wpdFormAttr/Field/SelectField.php:28
3244
- msgid "Values"
3245
- msgstr ""
3246
-
3247
- #: forms/wpdFormAttr/Field/CheckboxField.php:30
3248
- msgid "Please insert one value per line"
3249
- msgstr ""
3250
-
3251
- #: forms/wpdFormAttr/Field/CheckboxField.php:41
3252
- #: forms/wpdFormAttr/Field/ColorField.php:37
3253
- #: forms/wpdFormAttr/Field/DateField.php:37
3254
- #: forms/wpdFormAttr/Field/NumberField.php:47
3255
- #: forms/wpdFormAttr/Field/RadioField.php:41
3256
- #: forms/wpdFormAttr/Field/RatingField.php:32
3257
- #: forms/wpdFormAttr/Field/SelectField.php:41
3258
- #: forms/wpdFormAttr/Field/TextAreaField.php:31
3259
- #: forms/wpdFormAttr/Field/TextField.php:37
3260
- #: forms/wpdFormAttr/Field/UrlField.php:37
3261
- msgid "Display on comment"
3262
- msgstr ""
3263
-
3264
- #: forms/wpdFormAttr/Field/CheckboxField.php:45
3265
- #: forms/wpdFormAttr/Field/ColorField.php:41
3266
- #: forms/wpdFormAttr/Field/DateField.php:41
3267
- #: forms/wpdFormAttr/Field/NumberField.php:51
3268
- #: forms/wpdFormAttr/Field/RadioField.php:45
3269
- #: forms/wpdFormAttr/Field/RatingField.php:36
3270
- #: forms/wpdFormAttr/Field/SelectField.php:45
3271
- #: forms/wpdFormAttr/Field/TextAreaField.php:35
3272
- #: forms/wpdFormAttr/Field/TextField.php:41
3273
- #: forms/wpdFormAttr/Field/UrlField.php:41
3274
- msgid "Advanced Options"
3275
- msgstr ""
3276
-
3277
- #: forms/wpdFormAttr/Field/CheckboxField.php:48
3278
- #: forms/wpdFormAttr/Field/ColorField.php:44
3279
- #: forms/wpdFormAttr/Field/DateField.php:44
3280
- #: forms/wpdFormAttr/Field/NumberField.php:54
3281
- #: forms/wpdFormAttr/Field/RadioField.php:48
3282
- #: forms/wpdFormAttr/Field/RatingField.php:39
3283
- #: forms/wpdFormAttr/Field/SelectField.php:48
3284
- #: forms/wpdFormAttr/Field/TextAreaField.php:38
3285
- #: forms/wpdFormAttr/Field/TextField.php:44
3286
- #: forms/wpdFormAttr/Field/UrlField.php:44
3287
- msgid "Meta Key"
3288
- msgstr ""
3289
-
3290
- #: forms/wpdFormAttr/Field/CheckboxField.php:52
3291
- #: forms/wpdFormAttr/Field/ColorField.php:48
3292
- #: forms/wpdFormAttr/Field/DateField.php:48
3293
- #: forms/wpdFormAttr/Field/NumberField.php:58
3294
- #: forms/wpdFormAttr/Field/RadioField.php:52
3295
- #: forms/wpdFormAttr/Field/RatingField.php:43
3296
- #: forms/wpdFormAttr/Field/SelectField.php:52
3297
- #: forms/wpdFormAttr/Field/TextAreaField.php:42
3298
- #: forms/wpdFormAttr/Field/TextField.php:48
3299
- #: forms/wpdFormAttr/Field/UrlField.php:48
3300
- msgid "Replace old meta key"
3301
- msgstr ""
3302
-
3303
- #: forms/wpdFormAttr/Field/ColorField.php:23
3304
- #: forms/wpdFormAttr/Field/DateField.php:23
3305
- #: forms/wpdFormAttr/Field/NumberField.php:33
3306
- #: forms/wpdFormAttr/Field/RatingField.php:22
3307
- #: forms/wpdFormAttr/Field/TextField.php:23
3308
- #: forms/wpdFormAttr/Field/UrlField.php:23
3309
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:30
3310
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:29
3311
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:29
3312
- msgid "Field icon"
3313
- msgstr ""
3314
-
3315
- #: forms/wpdFormAttr/Field/ColorField.php:26
3316
- #: forms/wpdFormAttr/Field/DateField.php:26
3317
- #: forms/wpdFormAttr/Field/NumberField.php:36
3318
- #: forms/wpdFormAttr/Field/RatingField.php:25
3319
- #: forms/wpdFormAttr/Field/TextField.php:26
3320
- #: forms/wpdFormAttr/Field/UrlField.php:26
3321
- #: forms/wpdFormAttr/Field/DefaultField/Email.php:33
3322
- #: forms/wpdFormAttr/Field/DefaultField/Name.php:32
3323
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:32
3324
- msgid "Font-awesome icon library."
3325
- msgstr ""
3326
-
3327
- #: forms/wpdFormAttr/Field/Field.php:54
3328
- msgid " (Submit Button)"
3329
- msgstr ""
3330
-
3331
- #: forms/wpdFormAttr/Field/Field.php:56
3332
- msgid " (CAPTCHA)"
3333
- msgstr ""
3334
-
3335
- #: forms/wpdFormAttr/Field/Field.php:89
3336
- msgid "Add To Form"
3337
- msgstr ""
3338
-
3339
- #: forms/wpdFormAttr/Field/HTMLField.php:17
3340
- msgid "HTML Code"
3341
- msgstr ""
3342
-
3343
- #: forms/wpdFormAttr/Field/NumberField.php:22
3344
- msgid "Min Value"
3345
- msgstr ""
3346
-
3347
- #: forms/wpdFormAttr/Field/NumberField.php:27
3348
- msgid "Max Value"
3349
- msgstr ""
3350
-
3351
- #: forms/wpdFormAttr/Field/NumberField.php:129
3352
- msgid "value can not be less than"
3353
- msgstr ""
3354
-
3355
- #: forms/wpdFormAttr/Field/NumberField.php:132
3356
- msgid "value can not be more than"
3357
- msgstr ""
3358
-
3359
- #: forms/wpdFormAttr/Field/RadioField.php:30
3360
- #: forms/wpdFormAttr/Field/SelectField.php:30
3361
- msgid "New value new line"
3362
- msgstr ""
3363
-
3364
- #: forms/wpdFormAttr/html/admin-form-fields-list.php:7
3365
- msgid "Comment Form Fields"
3366
- msgstr ""
3367
-
3368
- #: forms/wpdFormAttr/Login/SocialLogin.php:32
3369
- msgid "Authentication failed."
3370
- msgstr ""
3371
-
3372
- #: forms/wpdFormAttr/Login/SocialLogin.php:90
3373
- msgid "Facebook access token or user ID invalid."
3374
- msgstr ""
3375
-
3376
- #: forms/wpdFormAttr/Login/SocialLogin.php:94
3377
- msgid "Facebook App Secret is required."
3378
- msgstr ""
3379
-
3380
- #: forms/wpdFormAttr/Login/SocialLogin.php:123
3381
- msgid "Facebook Application ID and Application Secret required."
3382
- msgstr ""
3383
-
3384
- #: forms/wpdFormAttr/Login/SocialLogin.php:151
3385
- msgid ""
3386
- "Facebook authentication failed (OAuth <code>state</code> does not exist)."
3387
- msgstr ""
3388
-
3389
- #: forms/wpdFormAttr/Login/SocialLogin.php:154
3390
- msgid ""
3391
- "Facebook authentication failed (OAuth <code>code</code> does not exist)."
3392
- msgstr ""
3393
-
3394
- #: forms/wpdFormAttr/Login/SocialLogin.php:193
3395
- msgid "Google access token invalid."
3396
- msgstr ""
3397
-
3398
- #: forms/wpdFormAttr/Login/SocialLogin.php:204
3399
- msgid "Google authentication failed."
3400
- msgstr ""
3401
-
3402
- #: forms/wpdFormAttr/Login/SocialLogin.php:232
3403
- msgid "Twitter Consumer Key and Consumer Secret required."
3404
- msgstr ""
3405
-
3406
- #: forms/wpdFormAttr/Login/SocialLogin.php:245
3407
- msgid "Twitter authentication failed (OAuth secret does not exist)."
3408
- msgstr ""
3409
-
3410
- #: forms/wpdFormAttr/Login/SocialLogin.php:256
3411
- msgid "Twitter connection failed."
3412
- msgstr ""
3413
-
3414
- #: forms/wpdFormAttr/Login/SocialLogin.php:266
3415
- msgid "VK Client ID and Client Secret required."
3416
- msgstr ""
3417
-
3418
- #: forms/wpdFormAttr/Login/SocialLogin.php:295
3419
- msgid "VK authentication failed (OAuth <code>state</code> does not exist)."
3420
- msgstr ""
3421
-
3422
- #: forms/wpdFormAttr/Login/SocialLogin.php:298
3423
- msgid "VK authentication failed (OAuth <code>code</code> does not exist)."
3424
- msgstr ""
3425
-
3426
- #: forms/wpdFormAttr/Login/SocialLogin.php:316
3427
- msgid "VK authentication failed (<code>user_id</code> does not exist)."
3428
- msgstr ""
3429
-
3430
- #: forms/wpdFormAttr/Login/SocialLogin.php:342
3431
- msgid "OK Application ID, Application Key and Application Secret required."
3432
- msgstr ""
3433
-
3434
- #: forms/wpdFormAttr/Login/SocialLogin.php:369
3435
- msgid "OK authentication failed (OAuth <code>state</code> does not exist)."
3436
- msgstr ""
3437
-
3438
- #: forms/wpdFormAttr/Login/SocialLogin.php:372
3439
- msgid "OK authentication failed (<code>code</code> does not exist)."
3440
- msgstr ""
3441
-
3442
- #: forms/wpdFormAttr/Login/SocialLogin.php:391
3443
- msgid "OK authentication failed (<code>access_token</code> does not exist)."
3444
- msgstr ""
3445
-
3446
- #: forms/wpdFormAttr/Tools/PersonalDataExporter.php:36
3447
- msgid "wpDiscuz Fields Data"
3448
- msgstr ""
3449
-
3450
- #: options/addons/cai/title.php:7
3451
- msgid "Comment Author"
3452
- msgstr ""
3453
-
3454
- #: options/addons/fem/title.php:7
3455
- msgid "Frontend Moderation"
3456
- msgstr ""
3457
-
3458
- #: options/addons/more/title.php:6
3459
- msgid "More Addons..."
3460
- msgstr ""
3461
-
3462
- #: options/addons/ucm/title.php:7
3463
- msgid "Mentioning"
3464
- msgstr ""
3465
-
3466
- #: utils/layouts/activity/item.php:28
3467
- msgid "Delete this comment"
3468
- msgstr ""
3469
-
3470
- #: utils/layouts/follows/item.php:14
3471
- msgid "Cancel this follow"
3472
- msgstr ""
3473
-
3474
- #: utils/layouts/subscriptions/item.php:23
3475
- msgid "Cancel this subscription"
3476
- msgstr ""
3477
-
3478
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:37
3479
- msgid ""
3480
- "For an advanced antispam protection please check <a target=\"blank\" "
3481
- "href=\"https://gvectors.com/product/wpdiscuz-recaptcha/\">wpDiscuz - Google "
3482
- "reCAPTCHA</a> addon."
3483
- msgstr ""
3484
-
3485
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:40
3486
- msgid "Show for guests"
3487
- msgstr ""
3488
-
3489
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:44
3490
- msgid "Show for logged in users"
3491
- msgstr ""
3492
-
3493
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:135
3494
- msgid "Cannot create image file"
3495
- msgstr ""
3496
-
3497
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:136
3498
- msgid "Permission denied for file creation"
3499
- msgstr ""
3500
-
3501
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:137
3502
- msgid "PHP GD2 library is disabled"
3503
- msgstr ""
3504
-
3505
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:138
3506
- msgid "PNG image creation disabled"
3507
- msgstr ""
3508
-
3509
- #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:145
3510
- msgid "Insert the CAPTCHA code"
3511
- msgstr ""
3512
-
3513
- #: forms/wpdFormAttr/Field/DefaultField/Submit.php:20
3514
- msgid "Button Text"
3515
- msgstr ""
3516
-
3517
- #: forms/wpdFormAttr/Field/DefaultField/Website.php:35
3518
- msgid "Enable"
3519
- msgstr ""
3520
-
3521
- #. Plugin Name of the plugin/theme
3522
- msgid "wpDiscuz"
3523
- msgstr ""
3524
-
3525
- #. Description of the plugin/theme
3526
- msgid ""
3527
- "Better comment system. Wordpress post comments and discussion plugin. Allows "
3528
- "your visitors discuss, vote for comments and share."
3529
- msgstr ""
3530
-
3531
- #. Plugin URI of the plugin/theme
3532
- msgid "http://wpdiscuz.com/"
3533
- msgstr ""
3534
-
3535
- #. Author of the plugin/theme
3536
- msgid "gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
3537
- msgstr ""
3538
-
3539
- #. Author URI of the plugin/theme
3540
- msgid "https://gvectors.com/"
3541
- 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-08-06 17:50+0000\n"
7
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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: Loco https://localise.biz/\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
+ "Language: "
23
+
24
+ #: class.WpdiscuzCore.php:265
25
+ msgid "Every 3 hours"
26
+ msgstr ""
27
+
28
+ #: class.WpdiscuzCore.php:269
29
+ msgid "Every 48 hours"
30
+ msgstr ""
31
+
32
+ #: class.WpdiscuzCore.php:382
33
+ msgid "We are sorry, but this comment cannot be posted. Please try later."
34
+ msgstr ""
35
+
36
+ #: class.WpdiscuzCore.php:391
37
+ msgid "We are sorry, you are not allowed to comment more than one time!"
38
+ msgstr ""
39
+
40
+ #: class.WpdiscuzCore.php:452
41
+ msgid "This is closed comment thread"
42
+ msgstr ""
43
+
44
+ #: class.WpdiscuzCore.php:1105 class.WpdiscuzCore.php:1337
45
+ msgid "Settings"
46
+ msgstr ""
47
+
48
+ #: class.WpdiscuzCore.php:1107 class.WpdiscuzCore.php:1339
49
+ msgid "Phrases"
50
+ msgstr ""
51
+
52
+ #: class.WpdiscuzCore.php:1109
53
+ msgid "Tools"
54
+ msgstr ""
55
+
56
+ #: class.WpdiscuzCore.php:1110 options/html-options.php:22
57
+ #: options/html-options.php:64 options/options-layouts/settings-addons.php:14
58
+ msgid "Addons"
59
+ msgstr ""
60
+
61
+ #: class.WpdiscuzCore.php:1122
62
+ msgid "Do you really want to reset all options?"
63
+ msgstr ""
64
+
65
+ #: class.WpdiscuzCore.php:1123
66
+ msgid "Do you really want to remove voting data?"
67
+ msgstr ""
68
+
69
+ #: class.WpdiscuzCore.php:1124
70
+ msgid "Do you really want to reset phrases?"
71
+ msgstr ""
72
+
73
+ #: class.WpdiscuzCore.php:1125
74
+ msgid "Do you really want to delete gravatars cache?"
75
+ msgstr ""
76
+
77
+ #: class.WpdiscuzCore.php:1126
78
+ msgid "Do you really want to delete statistics cache?"
79
+ msgstr ""
80
+
81
+ #: class.WpdiscuzCore.php:1163
82
+ msgid "Please check one of reasons before sending feedback!"
83
+ msgstr ""
84
+
85
+ #: class.WpdiscuzCore.php:1164 utils/deactivation-reason-modal.php:58
86
+ msgid "Please provide more information"
87
+ msgstr ""
88
+
89
+ #: class.WpdiscuzCore.php:1424 options/phrases-layouts/phrases-comment.php:56
90
+ msgid "Admin"
91
+ msgstr ""
92
+
93
+ #: class.WpdiscuzCore.php:1426 class.WpdiscuzCore.php:1435
94
+ #: options/phrases-layouts/phrases-comment.php:58
95
+ msgid "Author"
96
+ msgstr ""
97
+
98
+ #: class.WpdiscuzCore.php:1430 options/phrases-layouts/phrases-comment.php:64
99
+ msgid "Member"
100
+ msgstr ""
101
+
102
+ #: class.WpdiscuzCore.php:1436 options/phrases-layouts/phrases-comment.php:62
103
+ msgid "Guest"
104
+ msgstr ""
105
+
106
+ #: forms/wpDiscuzForm.php:111 forms/wpDiscuzForm.php:159
107
+ msgid "Forms"
108
+ msgstr ""
109
+
110
+ #: forms/wpDiscuzForm.php:112 options/html-phrases.php:22
111
+ msgid "Form"
112
+ msgstr ""
113
+
114
+ #: forms/wpDiscuzForm.php:113
115
+ msgid "Add New"
116
+ msgstr ""
117
+
118
+ #: forms/wpDiscuzForm.php:114
119
+ msgid "Add New Form"
120
+ msgstr ""
121
+
122
+ #: forms/wpDiscuzForm.php:115
123
+ msgid "Edit Form"
124
+ msgstr ""
125
+
126
+ #: forms/wpDiscuzForm.php:116
127
+ msgid "You did not create any forms yet"
128
+ msgstr ""
129
+
130
+ #: forms/wpDiscuzForm.php:117
131
+ msgid "Nothing found in Trash"
132
+ msgstr ""
133
+
134
+ #: forms/wpDiscuzForm.php:118
135
+ msgid "Search Forms"
136
+ msgstr ""
137
+
138
+ #: forms/wpDiscuzForm.php:174
139
+ msgid "Post Types"
140
+ msgstr ""
141
+
142
+ #: forms/wpDiscuzForm.php:175
143
+ msgid "Post IDs"
144
+ msgstr ""
145
+
146
+ #: forms/wpDiscuzForm.php:176 forms/wpdFormAttr/Form.php:674
147
+ msgid "Language"
148
+ msgstr ""
149
+
150
+ #: forms/wpDiscuzForm.php:222
151
+ msgid "Field Types"
152
+ msgstr ""
153
+
154
+ #: forms/wpDiscuzForm.php:223 forms/wpdFormAttr/Row.php:23
155
+ msgid "Two column"
156
+ msgstr ""
157
+
158
+ #: forms/wpDiscuzForm.php:224 forms/wpdFormAttr/Row.php:24
159
+ #: forms/wpdFormAttr/Field/Field.php:66
160
+ msgid "Delete"
161
+ msgstr ""
162
+
163
+ #: forms/wpDiscuzForm.php:225 forms/wpdFormAttr/Row.php:25
164
+ msgid "Move"
165
+ msgstr ""
166
+
167
+ #: forms/wpDiscuzForm.php:226 forms/wpdFormAttr/Row.php:69
168
+ msgid "Add Field"
169
+ msgstr ""
170
+
171
+ #: forms/wpDiscuzForm.php:227 options/class.WpdiscuzOptionsSerialized.php:815
172
+ #: options/phrases-layouts/phrases-comment.php:19
173
+ #: forms/wpdFormAttr/Field/Field.php:63
174
+ msgid "Edit"
175
+ msgstr ""
176
+
177
+ #: forms/wpDiscuzForm.php:228
178
+ msgid "You can not delete default field."
179
+ msgstr ""
180
+
181
+ #: forms/wpDiscuzForm.php:229
182
+ msgid "You really want to delete this item ?"
183
+ msgstr ""
184
+
185
+ #: forms/wpDiscuzForm.php:236
186
+ msgid "Permission Denied !!!"
187
+ msgstr ""
188
+
189
+ #: forms/wpDiscuzForm.php:261 forms/wpdFormAttr/Form.php:642
190
+ #: options/options-layouts/settings-customfields.php:7
191
+ #: forms/wpdFormAttr/html/admin-form-fields-list.php:18
192
+ msgid "Custom Fields"
193
+ msgstr ""
194
+
195
+ #: forms/wpDiscuzForm.php:309
196
+ msgid "Custom CSS"
197
+ msgstr ""
198
+
199
+ #: forms/wpDiscuzForm.php:365
200
+ msgid "Default Form"
201
+ msgstr ""
202
+
203
+ #: forms/wpDiscuzForm.php:398 forms/wpDiscuzForm.php:406
204
+ #: forms/wpdFormAttr/Form.php:755 forms/wpdFormAttr/Form.php:755
205
+ msgid "Leave a Reply"
206
+ msgstr ""
207
+
208
+ #: forms/wpDiscuzForm.php:421 forms/wpdFormAttr/Form.php:873
209
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:12
210
+ #: forms/wpdFormAttr/Field/CheckboxField.php:12
211
+ #: forms/wpdFormAttr/Field/ColorField.php:12
212
+ #: forms/wpdFormAttr/Field/CookiesConsent.php:14
213
+ #: forms/wpdFormAttr/Field/DateField.php:12
214
+ #: forms/wpdFormAttr/Field/HTMLField.php:12
215
+ #: forms/wpdFormAttr/Field/NumberField.php:12
216
+ #: forms/wpdFormAttr/Field/RadioField.php:12
217
+ #: forms/wpdFormAttr/Field/RatingField.php:12
218
+ #: forms/wpdFormAttr/Field/SelectField.php:12
219
+ #: forms/wpdFormAttr/Field/TextAreaField.php:13
220
+ #: forms/wpdFormAttr/Field/TextField.php:12
221
+ #: forms/wpdFormAttr/Field/UrlField.php:12
222
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:27
223
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:19
224
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:18
225
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:65
226
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:18
227
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:18
228
+ msgid "Name"
229
+ msgstr ""
230
+
231
+ #: forms/wpDiscuzForm.php:423 options/class.WpdiscuzOptionsSerialized.php:801
232
+ #: options/html-phrases.php:25 forms/wpdFormAttr/Form.php:880
233
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:65
234
+ msgid "Email"
235
+ msgstr ""
236
+
237
+ #: forms/wpDiscuzForm.php:425
238
+ msgid "WebSite URL"
239
+ msgstr ""
240
+
241
+ #: forms/wpDiscuzForm.php:428 forms/wpdFormAttr/Form.php:903
242
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:116
243
+ msgid "Post Comment"
244
+ msgstr ""
245
+
246
+ #: forms/wpDiscuzForm.php:449
247
+ msgid "Clone"
248
+ msgstr ""
249
+
250
+ #: forms/wpDiscuzForm.php:487
251
+ msgid ""
252
+ "Comment Form is not detected, please navigate to form manager page to create "
253
+ "it. "
254
+ msgstr ""
255
+
256
+ #: forms/wpDiscuzForm.php:488
257
+ msgid "Add Comment Form"
258
+ msgstr ""
259
+
260
+ #: options/class.WpdiscuzOptions.php:22 options/class.WpdiscuzOptions.php:142
261
+ #: options/class.WpdiscuzOptions.php:367
262
+ msgid "Hacker?"
263
+ msgstr ""
264
+
265
+ #: options/class.WpdiscuzOptions.php:133
266
+ msgid "Settings updated"
267
+ msgstr ""
268
+
269
+ #: options/class.WpdiscuzOptions.php:314
270
+ msgid "Phrases updated"
271
+ msgstr ""
272
+
273
+ #: options/class.WpdiscuzOptions.php:341
274
+ msgid "Options were backed up!"
275
+ msgstr ""
276
+
277
+ #: options/class.WpdiscuzOptions.php:343
278
+ msgid "Cannot back up the options!"
279
+ msgstr ""
280
+
281
+ #: options/class.WpdiscuzOptions.php:354
282
+ msgid "Options Imported Successfully!"
283
+ msgstr ""
284
+
285
+ #: options/class.WpdiscuzOptions.php:356
286
+ msgid "Error occured! File content is empty or data is not valid!"
287
+ msgstr ""
288
+
289
+ #: options/class.WpdiscuzOptions.php:359
290
+ msgid "Error occured! Can not get file content!"
291
+ msgstr ""
292
+
293
+ #: options/class.WpdiscuzOptions.php:362
294
+ msgid "Error occured! Please choose file!"
295
+ msgstr ""
296
+
297
+ #: options/class.WpdiscuzOptions.php:378
298
+ msgid ""
299
+ "Brings an ocean of emotions to your comments. It comes with an awesome smile "
300
+ "package."
301
+ msgstr ""
302
+
303
+ #: options/class.WpdiscuzOptions.php:379
304
+ msgid ""
305
+ "Extended information about comment author with Profile, Activity, Votes and "
306
+ "Subscriptions Tabs on pop-up window."
307
+ msgstr ""
308
+
309
+ #: options/class.WpdiscuzOptions.php:380
310
+ msgid ""
311
+ "Real-time online user checking, pop-up notification of new online users and "
312
+ "online/offline badges."
313
+ msgstr ""
314
+
315
+ #: options/class.WpdiscuzOptions.php:381
316
+ msgid ""
317
+ "Allows to create private comment threads. Rich management options in "
318
+ "dashboard by user roles."
319
+ msgstr ""
320
+
321
+ #: options/class.WpdiscuzOptions.php:382
322
+ msgid ""
323
+ "Total control over comment subscriptions. Full list, monitor, manage, filter,"
324
+ " unsubscribe, confirm..."
325
+ msgstr ""
326
+
327
+ #: options/class.WpdiscuzOptions.php:383
328
+ msgid ""
329
+ "A full-fledged tool-kit for advertising in comment section of your website. "
330
+ "Separate banner and ad managment."
331
+ msgstr ""
332
+
333
+ #: options/class.WpdiscuzOptions.php:384
334
+ msgid ""
335
+ "Allows to mention comments and users in comment text using #comment-id and "
336
+ "@username tags."
337
+ msgstr ""
338
+
339
+ #: options/class.WpdiscuzOptions.php:385
340
+ msgid ""
341
+ "See comment likers and voters of each comment. Adds user reputation and "
342
+ "badges based on received likes."
343
+ msgstr ""
344
+
345
+ #: options/class.WpdiscuzOptions.php:386
346
+ msgid ""
347
+ "Comment reporting tools. Auto-moderates comments based on number of flags "
348
+ "and dislikes."
349
+ msgstr ""
350
+
351
+ #: options/class.WpdiscuzOptions.php:387
352
+ msgid ""
353
+ "Adds a smart and intuitive AJAX \"Translate\" button with 60 language "
354
+ "options. Uses free translation API."
355
+ msgstr ""
356
+
357
+ #: options/class.WpdiscuzOptions.php:388
358
+ msgid ""
359
+ "AJAX powered front-end comment search. It starts searching while you type "
360
+ "search words. "
361
+ msgstr ""
362
+
363
+ #: options/class.WpdiscuzOptions.php:389
364
+ msgid ""
365
+ "Most voted comments, Active comment threads, Most commented posts, Active "
366
+ "comment authors"
367
+ msgstr ""
368
+
369
+ #: options/class.WpdiscuzOptions.php:390
370
+ msgid ""
371
+ "All in one powerful yet simple admin toolkit to moderate comments on front-"
372
+ "end."
373
+ msgstr ""
374
+
375
+ #: options/class.WpdiscuzOptions.php:391
376
+ msgid ""
377
+ "Extended comment attachment system. Allows to upload images, videos, audios "
378
+ "and other file types."
379
+ msgstr ""
380
+
381
+ #: options/class.WpdiscuzOptions.php:392
382
+ msgid ""
383
+ "Adds No CAPTCHA on all comment forms. Stops spam and bot comments with "
384
+ "Google reCAPTCHA"
385
+ msgstr ""
386
+
387
+ #: options/class.WpdiscuzOptions.php:393
388
+ msgid ""
389
+ "Integrates myCRED Badges and Ranks. Converts wpDiscuz comment votes/likes to "
390
+ "myCRED points. "
391
+ msgstr ""
392
+
393
+ #: options/class.WpdiscuzOptions.php:394
394
+ msgid ""
395
+ "Allows censoring comment words. Filters comments and replaces those phrases "
396
+ "with custom words."
397
+ msgstr ""
398
+
399
+ #: options/class.WpdiscuzOptions.php:400
400
+ msgid "Custom Comment Forms"
401
+ msgstr ""
402
+
403
+ #: options/class.WpdiscuzOptions.php:401
404
+ msgid ""
405
+ "You can create custom comment forms with wpDiscuz. wpDiscuz 4 comes with "
406
+ "custom comment forms and fields. You can create custom comment forms for "
407
+ "each post type, each form can beceated with different form fields, for "
408
+ "eaxample: text, dropdown, rating, checkboxes, etc..."
409
+ msgstr ""
410
+
411
+ #: options/class.WpdiscuzOptions.php:404
412
+ msgid "Emoticons"
413
+ msgstr ""
414
+
415
+ #: options/class.WpdiscuzOptions.php:405
416
+ msgid ""
417
+ "You can add more emotions to your comments using wpDiscuz Emoticons addon."
418
+ msgstr ""
419
+
420
+ #: options/class.WpdiscuzOptions.php:408
421
+ msgid "Ads Manager"
422
+ msgstr ""
423
+
424
+ #: options/class.WpdiscuzOptions.php:409
425
+ msgid ""
426
+ "Increase your income using ad banners. Comment area is the most active "
427
+ "sections for advertising. wpDiscuz Ads Manager addon is designed to help you "
428
+ "add banners and control ads in this section."
429
+ msgstr ""
430
+
431
+ #: options/class.WpdiscuzOptions.php:412
432
+ msgid "User and Comment Mentioning"
433
+ msgstr ""
434
+
435
+ #: options/class.WpdiscuzOptions.php:413
436
+ msgid ""
437
+ "Using wpDiscuz User &amp; Comment Mentioning addon you can allow commenters "
438
+ "mention comments and users in comment text using #comment-id and @username "
439
+ "tags."
440
+ msgstr ""
441
+
442
+ #: options/class.WpdiscuzOptions.php:416 options/addons/al/title.php:7
443
+ msgid "Advanced Likers"
444
+ msgstr ""
445
+
446
+ #: options/class.WpdiscuzOptions.php:417
447
+ msgid ""
448
+ "wpDiscuz Advanced Likers addon displays likers and voters of each comment. "
449
+ "Adds user reputation and badges based on received likes."
450
+ msgstr ""
451
+
452
+ #: options/class.WpdiscuzOptions.php:420 options/addons/raf/title.php:7
453
+ msgid "Report and Flagging"
454
+ msgstr ""
455
+
456
+ #: options/class.WpdiscuzOptions.php:421
457
+ msgid ""
458
+ "Let your commenters help you to determine and remove spam comments. wpDiscuz "
459
+ "Report and Flagging addon comes with comment reporting tools. Automaticaly "
460
+ "auto-moderates comments based on number of flags and dislikes."
461
+ msgstr ""
462
+
463
+ #: options/class.WpdiscuzOptions.php:424
464
+ msgid "Comment Translate"
465
+ msgstr ""
466
+
467
+ #: options/class.WpdiscuzOptions.php:425
468
+ msgid ""
469
+ "In most cases the big part of your visitors are not a native speakers of "
470
+ "your language. Make your comments comprehensible for all visitors using "
471
+ "wpDiscuz Comment Translation addon. It adds smart and intuitive AJAX "
472
+ "\"Translate\" button with 60 language translation options. Uses free "
473
+ "translation API."
474
+ msgstr ""
475
+
476
+ #: options/class.WpdiscuzOptions.php:428
477
+ msgid "Comment Search"
478
+ msgstr ""
479
+
480
+ #: options/class.WpdiscuzOptions.php:429
481
+ msgid ""
482
+ "You can let website visitor search in comments. It's always more attractive "
483
+ "to find a comment about something that interest you. Using wpDiscuz Comment "
484
+ "Search addon you'll get a nice, AJAX powered front-end comment search form "
485
+ "above comment list."
486
+ msgstr ""
487
+
488
+ #: options/class.WpdiscuzOptions.php:432
489
+ msgid "wpDiscuz Widgets"
490
+ msgstr ""
491
+
492
+ #: options/class.WpdiscuzOptions.php:433
493
+ msgid ""
494
+ "More Comment Widgets! Most voted comments, Active comment threads, Most "
495
+ "commented posts, Active comment authors widgets are available in wpDiscuz "
496
+ "Widgets Addon"
497
+ msgstr ""
498
+
499
+ #: options/class.WpdiscuzOptions.php:436
500
+ msgid "Front-end Moderation"
501
+ msgstr ""
502
+
503
+ #: options/class.WpdiscuzOptions.php:437
504
+ msgid ""
505
+ "You can moderate comments on front-end using all in one powerful yet simple "
506
+ "wpDiscuz Frontend Moderation addon."
507
+ msgstr ""
508
+
509
+ #: options/class.WpdiscuzOptions.php:440 options/addons/mu/title.php:7
510
+ msgid "Media Uploader"
511
+ msgstr ""
512
+
513
+ #: options/class.WpdiscuzOptions.php:441
514
+ msgid ""
515
+ "You can let website visitors attach images and files to comments and embed "
516
+ "video/audio content using wpDiscuz Media Uploader addon."
517
+ msgstr ""
518
+
519
+ #: options/class.WpdiscuzOptions.php:444
520
+ msgid "Google ReCaptcha"
521
+ msgstr ""
522
+
523
+ #: options/class.WpdiscuzOptions.php:445
524
+ msgid ""
525
+ "Advanced spam protection with wpDiscuz Google reCAPTCHA addon. This addon "
526
+ "adds No-CAPTCHA reCAPTCHA on all comment forms. Stops spam and bot comments."
527
+ msgstr ""
528
+
529
+ #: options/class.WpdiscuzOptions.php:506
530
+ msgid "Do you know?"
531
+ msgstr ""
532
+
533
+ #: options/class.WpdiscuzOptions.php:519
534
+ msgid "More info"
535
+ msgstr ""
536
+
537
+ #: options/class.WpdiscuzOptionsSerialized.php:791
538
+ msgid "Be the First to Comment!"
539
+ msgstr ""
540
+
541
+ #: options/class.WpdiscuzOptionsSerialized.php:792
542
+ msgid "Start the discussion"
543
+ msgstr ""
544
+
545
+ #: options/class.WpdiscuzOptionsSerialized.php:793
546
+ msgid "Join the discussion"
547
+ msgstr ""
548
+
549
+ #: options/class.WpdiscuzOptionsSerialized.php:794
550
+ #: options/phrases-layouts/phrases-form.php:19
551
+ msgid "Comment threads"
552
+ msgstr ""
553
+
554
+ #: options/class.WpdiscuzOptionsSerialized.php:795
555
+ #: options/phrases-layouts/phrases-form.php:23
556
+ msgid "Thread replies"
557
+ msgstr ""
558
+
559
+ #: options/class.WpdiscuzOptionsSerialized.php:796
560
+ #: options/phrases-layouts/phrases-form.php:27
561
+ msgid "Followers"
562
+ msgstr ""
563
+
564
+ #: options/class.WpdiscuzOptionsSerialized.php:797
565
+ #: options/phrases-layouts/phrases-form.php:31
566
+ msgid "Most reacted comment"
567
+ msgstr ""
568
+
569
+ #: options/class.WpdiscuzOptionsSerialized.php:798
570
+ #: options/phrases-layouts/phrases-form.php:35
571
+ msgid "Hottest comment thread"
572
+ msgstr ""
573
+
574
+ #: options/class.WpdiscuzOptionsSerialized.php:799
575
+ #: options/phrases-layouts/phrases-form.php:39
576
+ msgid "Comment authors"
577
+ msgstr ""
578
+
579
+ #: options/class.WpdiscuzOptionsSerialized.php:800
580
+ #: options/phrases-layouts/phrases-form.php:43
581
+ msgid "Recent comment authors"
582
+ msgstr ""
583
+
584
+ #: options/class.WpdiscuzOptionsSerialized.php:802
585
+ #: options/phrases-layouts/phrases-form.php:51
586
+ msgid "Subscribe"
587
+ msgstr ""
588
+
589
+ #: options/class.WpdiscuzOptionsSerialized.php:803
590
+ #: options/phrases-layouts/phrases-form.php:55
591
+ msgid "Notify of"
592
+ msgstr ""
593
+
594
+ #: options/class.WpdiscuzOptionsSerialized.php:804
595
+ msgid "new follow-up comments"
596
+ msgstr ""
597
+
598
+ #: options/class.WpdiscuzOptionsSerialized.php:805
599
+ msgid "new replies to my comments"
600
+ msgstr ""
601
+
602
+ #: options/class.WpdiscuzOptionsSerialized.php:806
603
+ msgid "Notify of new replies to this comment"
604
+ msgstr ""
605
+
606
+ #: options/class.WpdiscuzOptionsSerialized.php:807
607
+ #: options/phrases-layouts/phrases-form.php:71
608
+ msgid "Sort by"
609
+ msgstr ""
610
+
611
+ #: options/class.WpdiscuzOptionsSerialized.php:808
612
+ #: options/phrases-layouts/phrases-form.php:75
613
+ msgid "newest"
614
+ msgstr ""
615
+
616
+ #: options/class.WpdiscuzOptionsSerialized.php:809
617
+ #: options/phrases-layouts/phrases-form.php:79
618
+ msgid "oldest"
619
+ msgstr ""
620
+
621
+ #: options/class.WpdiscuzOptionsSerialized.php:810
622
+ #: options/phrases-layouts/phrases-form.php:83
623
+ msgid "most voted"
624
+ msgstr ""
625
+
626
+ #: options/class.WpdiscuzOptionsSerialized.php:811
627
+ msgid "Load More Comments"
628
+ msgstr ""
629
+
630
+ #: options/class.WpdiscuzOptionsSerialized.php:812
631
+ #: options/phrases-layouts/phrases-general.php:19
632
+ msgid "Load Rest of Comments"
633
+ msgstr ""
634
+
635
+ #: options/class.WpdiscuzOptionsSerialized.php:813
636
+ #: options/phrases-layouts/phrases-comment.php:11
637
+ msgid "Reply"
638
+ msgstr ""
639
+
640
+ #: options/class.WpdiscuzOptionsSerialized.php:814
641
+ #: options/phrases-layouts/phrases-comment.php:15
642
+ msgid "Share"
643
+ msgstr ""
644
+
645
+ #: options/class.WpdiscuzOptionsSerialized.php:816
646
+ #: options/phrases-layouts/phrases-comment.php:23
647
+ msgid "Share On Facebook"
648
+ msgstr ""
649
+
650
+ #: options/class.WpdiscuzOptionsSerialized.php:817
651
+ #: options/phrases-layouts/phrases-comment.php:27
652
+ msgid "Share On Twitter"
653
+ msgstr ""
654
+
655
+ #: options/class.WpdiscuzOptionsSerialized.php:818
656
+ #: options/phrases-layouts/phrases-comment.php:31
657
+ msgid "Share On Google"
658
+ msgstr ""
659
+
660
+ #: options/class.WpdiscuzOptionsSerialized.php:819
661
+ #: options/phrases-layouts/phrases-comment.php:35
662
+ msgid "Share On VKontakte"
663
+ msgstr ""
664
+
665
+ #: options/class.WpdiscuzOptionsSerialized.php:820
666
+ #: options/phrases-layouts/phrases-comment.php:39
667
+ msgid "Share On Odnoklassniki"
668
+ msgstr ""
669
+
670
+ #: options/class.WpdiscuzOptionsSerialized.php:821
671
+ #: options/phrases-layouts/phrases-comment.php:43
672
+ msgid "Hide Replies"
673
+ msgstr ""
674
+
675
+ #: options/class.WpdiscuzOptionsSerialized.php:822
676
+ #: options/phrases-layouts/phrases-comment.php:47
677
+ msgid "View Replies"
678
+ msgstr ""
679
+
680
+ #: options/class.WpdiscuzOptionsSerialized.php:823
681
+ #: options/class.WpdiscuzOptionsSerialized.php:948
682
+ msgid "New Comment"
683
+ msgstr ""
684
+
685
+ #: options/class.WpdiscuzOptionsSerialized.php:824
686
+ #: options/class.WpdiscuzOptionsSerialized.php:826
687
+ #: options/class.WpdiscuzOptionsSerialized.php:828
688
+ #: options/class.WpdiscuzOptionsSerialized.php:839
689
+ #: options/class.WpdiscuzOptionsSerialized.php:947
690
+ #: options/class.WpdiscuzOptionsSerialized.php:949
691
+ msgid "</a>"
692
+ msgstr ""
693
+
694
+ #: options/class.WpdiscuzOptionsSerialized.php:825
695
+ #: options/class.WpdiscuzOptionsSerialized.php:827
696
+ msgid "New Reply"
697
+ msgstr ""
698
+
699
+ #: options/class.WpdiscuzOptionsSerialized.php:829
700
+ msgid "You're subscribed for new replies on this comment"
701
+ msgstr ""
702
+
703
+ #: options/class.WpdiscuzOptionsSerialized.php:830
704
+ msgid "You're subscribed for new replies on all your comments"
705
+ msgstr ""
706
+
707
+ #: options/class.WpdiscuzOptionsSerialized.php:831
708
+ msgid "You're subscribed for new follow-up comments on this post"
709
+ msgstr ""
710
+
711
+ #: options/class.WpdiscuzOptionsSerialized.php:832
712
+ #: options/phrases-layouts/phrases-email.php:169
713
+ msgid "Unsubscribe"
714
+ msgstr ""
715
+
716
+ #: options/class.WpdiscuzOptionsSerialized.php:833
717
+ msgid "Cancel subscription"
718
+ msgstr ""
719
+
720
+ #: options/class.WpdiscuzOptionsSerialized.php:834
721
+ #: options/phrases-layouts/phrases-notification.php:19
722
+ msgid "You've successfully unsubscribed."
723
+ msgstr ""
724
+
725
+ #: options/class.WpdiscuzOptionsSerialized.php:835
726
+ #: options/phrases-layouts/phrases-notification.php:15
727
+ msgid "You've successfully subscribed."
728
+ msgstr ""
729
+
730
+ #: options/class.WpdiscuzOptionsSerialized.php:836
731
+ #: options/phrases-layouts/phrases-email.php:177
732
+ msgid "Confirm your subscription"
733
+ msgstr ""
734
+
735
+ #: options/class.WpdiscuzOptionsSerialized.php:837
736
+ #: options/phrases-layouts/phrases-email.php:181
737
+ msgid "You've successfully confirmed your subscription."
738
+ msgstr ""
739
+
740
+ #: options/class.WpdiscuzOptionsSerialized.php:838
741
+ msgid "Subscription Confirmation"
742
+ msgstr ""
743
+
744
+ #: options/class.WpdiscuzOptionsSerialized.php:840
745
+ msgid "please fill out this field to comment"
746
+ msgstr ""
747
+
748
+ #: options/class.WpdiscuzOptionsSerialized.php:841
749
+ msgid "email address is invalid"
750
+ msgstr ""
751
+
752
+ #: options/class.WpdiscuzOptionsSerialized.php:842
753
+ msgid "url is invalid"
754
+ msgstr ""
755
+
756
+ #: options/class.WpdiscuzOptionsSerialized.php:843
757
+ msgid "year"
758
+ msgstr ""
759
+
760
+ #: options/class.WpdiscuzOptionsSerialized.php:844
761
+ msgid "years"
762
+ msgstr ""
763
+
764
+ #: options/class.WpdiscuzOptionsSerialized.php:845
765
+ msgid "month"
766
+ msgstr ""
767
+
768
+ #: options/class.WpdiscuzOptionsSerialized.php:846
769
+ msgid "months"
770
+ msgstr ""
771
+
772
+ #: options/class.WpdiscuzOptionsSerialized.php:847
773
+ msgid "day"
774
+ msgstr ""
775
+
776
+ #: options/class.WpdiscuzOptionsSerialized.php:848
777
+ msgid "days"
778
+ msgstr ""
779
+
780
+ #: options/class.WpdiscuzOptionsSerialized.php:849
781
+ msgid "hour"
782
+ msgstr ""
783
+
784
+ #: options/class.WpdiscuzOptionsSerialized.php:850
785
+ msgid "hours"
786
+ msgstr ""
787
+
788
+ #: options/class.WpdiscuzOptionsSerialized.php:851
789
+ msgid "minute"
790
+ msgstr ""
791
+
792
+ #: options/class.WpdiscuzOptionsSerialized.php:852
793
+ msgid "minutes"
794
+ msgstr ""
795
+
796
+ #: options/class.WpdiscuzOptionsSerialized.php:853
797
+ msgid "second"
798
+ msgstr ""
799
+
800
+ #: options/class.WpdiscuzOptionsSerialized.php:854
801
+ msgid "seconds"
802
+ msgstr ""
803
+
804
+ #: options/class.WpdiscuzOptionsSerialized.php:855
805
+ msgid "right now"
806
+ msgstr ""
807
+
808
+ #: options/class.WpdiscuzOptionsSerialized.php:856
809
+ msgid "ago"
810
+ msgstr ""
811
+
812
+ #: options/class.WpdiscuzOptionsSerialized.php:857
813
+ #: options/phrases-layouts/phrases-notification.php:38
814
+ msgid "You must be"
815
+ msgstr ""
816
+
817
+ #: options/class.WpdiscuzOptionsSerialized.php:858
818
+ msgid "You are logged in as"
819
+ msgstr ""
820
+
821
+ #: options/class.WpdiscuzOptionsSerialized.php:859
822
+ #: options/phrases-layouts/phrases-notification.php:29
823
+ msgid "Login"
824
+ msgstr ""
825
+
826
+ #: options/class.WpdiscuzOptionsSerialized.php:860
827
+ #: options/phrases-layouts/phrases-notification.php:33
828
+ #, php-format
829
+ msgid "Please %s to comment"
830
+ msgstr ""
831
+
832
+ #: options/class.WpdiscuzOptionsSerialized.php:861
833
+ #: options/phrases-layouts/phrases-notification.php:54
834
+ msgid "Log out"
835
+ msgstr ""
836
+
837
+ #: options/class.WpdiscuzOptionsSerialized.php:862
838
+ msgid "logged in"
839
+ msgstr ""
840
+
841
+ #: options/class.WpdiscuzOptionsSerialized.php:863
842
+ msgid "to post a comment."
843
+ msgstr ""
844
+
845
+ #: options/class.WpdiscuzOptionsSerialized.php:864
846
+ #: options/phrases-layouts/phrases-comment.php:75
847
+ msgid "Vote Up"
848
+ msgstr ""
849
+
850
+ #: options/class.WpdiscuzOptionsSerialized.php:865
851
+ #: options/phrases-layouts/phrases-comment.php:79
852
+ msgid "Vote Down"
853
+ msgstr ""
854
+
855
+ #: options/class.WpdiscuzOptionsSerialized.php:866
856
+ #: options/phrases-layouts/phrases-notification.php:58
857
+ msgid "Vote Counted"
858
+ msgstr ""
859
+
860
+ #: options/class.WpdiscuzOptionsSerialized.php:867
861
+ msgid "You've already voted for this comment"
862
+ msgstr ""
863
+
864
+ #: options/class.WpdiscuzOptionsSerialized.php:868
865
+ #: options/phrases-layouts/phrases-error.php:27
866
+ msgid "Voting Error"
867
+ msgstr ""
868
+
869
+ #: options/class.WpdiscuzOptionsSerialized.php:869
870
+ msgid "You Must Be Logged In To Vote"
871
+ msgstr ""
872
+
873
+ #: options/class.WpdiscuzOptionsSerialized.php:870
874
+ msgid "You cannot vote for your comment"
875
+ msgstr ""
876
+
877
+ #: options/class.WpdiscuzOptionsSerialized.php:871
878
+ msgid "You are not allowed to vote for this comment"
879
+ msgstr ""
880
+
881
+ #: options/class.WpdiscuzOptionsSerialized.php:872
882
+ #: options/phrases-layouts/phrases-error.php:39
883
+ msgid "Invalid Captcha Code"
884
+ msgstr ""
885
+
886
+ #: options/class.WpdiscuzOptionsSerialized.php:873
887
+ #: options/phrases-layouts/phrases-error.php:43
888
+ msgid "Some of field value is invalid"
889
+ msgstr ""
890
+
891
+ #: options/class.WpdiscuzOptionsSerialized.php:874
892
+ msgid "new comment"
893
+ msgstr ""
894
+
895
+ #: options/class.WpdiscuzOptionsSerialized.php:875
896
+ msgid "new comments"
897
+ msgstr ""
898
+
899
+ #: options/class.WpdiscuzOptionsSerialized.php:876
900
+ msgid "Comment awaiting moderation"
901
+ msgstr ""
902
+
903
+ #: options/class.WpdiscuzOptionsSerialized.php:877
904
+ msgid "new reply on your comment"
905
+ msgstr ""
906
+
907
+ #: options/class.WpdiscuzOptionsSerialized.php:878
908
+ msgid "new replies on your comments"
909
+ msgstr ""
910
+
911
+ #: options/class.WpdiscuzOptionsSerialized.php:879
912
+ msgid "Sorry, the comment was not updated"
913
+ msgstr ""
914
+
915
+ #: options/class.WpdiscuzOptionsSerialized.php:880
916
+ msgid "Sorry, this comment no longer possible to edit"
917
+ msgstr ""
918
+
919
+ #: options/class.WpdiscuzOptionsSerialized.php:881
920
+ msgid "You've not made any changes"
921
+ msgstr ""
922
+
923
+ #: options/class.WpdiscuzOptionsSerialized.php:882
924
+ msgid "Save"
925
+ msgstr ""
926
+
927
+ #: options/class.WpdiscuzOptionsSerialized.php:883
928
+ msgid "Cancel"
929
+ msgstr ""
930
+
931
+ #: options/class.WpdiscuzOptionsSerialized.php:884
932
+ msgid "Input is too short"
933
+ msgstr ""
934
+
935
+ #: options/class.WpdiscuzOptionsSerialized.php:885
936
+ msgid "Input is too long"
937
+ msgstr ""
938
+
939
+ #: options/class.WpdiscuzOptionsSerialized.php:886
940
+ msgid "Read more &raquo;"
941
+ msgstr ""
942
+
943
+ #: options/class.WpdiscuzOptionsSerialized.php:887
944
+ msgid "Anonymous"
945
+ msgstr ""
946
+
947
+ #: options/class.WpdiscuzOptionsSerialized.php:888
948
+ #: options/phrases-layouts/phrases-error.php:67
949
+ msgid "Please fill out required fields"
950
+ msgstr ""
951
+
952
+ #: options/class.WpdiscuzOptionsSerialized.php:889
953
+ #: options/phrases-layouts/phrases-social-login.php:11
954
+ msgid "Connect with"
955
+ msgstr ""
956
+
957
+ #: options/class.WpdiscuzOptionsSerialized.php:890
958
+ #: options/phrases-layouts/phrases-notification.php:11
959
+ msgid "You're subscribed to"
960
+ msgstr ""
961
+
962
+ #: options/class.WpdiscuzOptionsSerialized.php:891
963
+ msgid "Participate in this discussion via email"
964
+ msgstr ""
965
+
966
+ #: options/class.WpdiscuzOptionsSerialized.php:892
967
+ #: utils/layouts/pagination.php:46
968
+ msgid "&rsaquo;"
969
+ msgstr ""
970
+
971
+ #: options/class.WpdiscuzOptionsSerialized.php:893
972
+ msgid "Your comment is approved!"
973
+ msgstr ""
974
+
975
+ #: options/class.WpdiscuzOptionsSerialized.php:894
976
+ msgid ""
977
+ "Hi [COMMENT_AUTHOR],<br/><br/>your comment was approved.<br/><br/><a "
978
+ "href=\"[COMMENT_URL]\">[COMMENT_URL]</a><br/><br/>[COMMENT_CONTENT]"
979
+ msgstr ""
980
+
981
+ #: options/class.WpdiscuzOptionsSerialized.php:895
982
+ msgid "Comments are closed."
983
+ msgstr ""
984
+
985
+ #: options/class.WpdiscuzOptionsSerialized.php:896
986
+ msgid "Stick this comment"
987
+ msgstr ""
988
+
989
+ #: options/class.WpdiscuzOptionsSerialized.php:897
990
+ #: options/phrases-layouts/phrases-comment.php:103
991
+ msgid "Stick"
992
+ msgstr ""
993
+
994
+ #: options/class.WpdiscuzOptionsSerialized.php:898
995
+ #: options/phrases-layouts/phrases-comment.php:107
996
+ msgid "Unstick"
997
+ msgstr ""
998
+
999
+ #: options/class.WpdiscuzOptionsSerialized.php:899
1000
+ msgid "Sticky comment thread"
1001
+ msgstr ""
1002
+
1003
+ #: options/class.WpdiscuzOptionsSerialized.php:900
1004
+ msgid "Close this thread"
1005
+ msgstr ""
1006
+
1007
+ #: options/class.WpdiscuzOptionsSerialized.php:901
1008
+ #: options/phrases-layouts/phrases-comment.php:119
1009
+ msgid "Close"
1010
+ msgstr ""
1011
+
1012
+ #: options/class.WpdiscuzOptionsSerialized.php:902
1013
+ #: options/phrases-layouts/phrases-comment.php:123
1014
+ msgid "Open"
1015
+ msgstr ""
1016
+
1017
+ #: options/class.WpdiscuzOptionsSerialized.php:903
1018
+ msgid "Closed comment thread"
1019
+ msgstr ""
1020
+
1021
+ #: options/class.WpdiscuzOptionsSerialized.php:904
1022
+ msgid "I allow to create an account"
1023
+ msgstr ""
1024
+
1025
+ #: options/class.WpdiscuzOptionsSerialized.php:905
1026
+ msgid ""
1027
+ "When you login first time using a Social Login button, we collect your "
1028
+ "account public profile information shared by Social Login provider, based on "
1029
+ "your privacy settings. We also get your email address to automatically "
1030
+ "create an account for you in our website. Once your account is created, "
1031
+ "you'll be logged-in to this account."
1032
+ msgstr ""
1033
+
1034
+ #: options/class.WpdiscuzOptionsSerialized.php:906
1035
+ msgid "This comment form is under antispam protection"
1036
+ msgstr ""
1037
+
1038
+ #: options/class.WpdiscuzOptionsSerialized.php:907
1039
+ #: options/phrases-layouts/phrases-social-login.php:23
1040
+ msgid "Disagree"
1041
+ msgstr ""
1042
+
1043
+ #: options/class.WpdiscuzOptionsSerialized.php:908
1044
+ #: options/phrases-layouts/phrases-social-login.php:27
1045
+ msgid "Agree"
1046
+ msgstr ""
1047
+
1048
+ #: options/class.WpdiscuzOptionsSerialized.php:909
1049
+ #: options/phrases-layouts/phrases-user-settings.php:11
1050
+ msgid "My content and settings"
1051
+ msgstr ""
1052
+
1053
+ #: options/class.WpdiscuzOptionsSerialized.php:910
1054
+ #: options/phrases-layouts/phrases-user-settings.php:15
1055
+ msgid "Activity"
1056
+ msgstr ""
1057
+
1058
+ #: options/class.WpdiscuzOptionsSerialized.php:911
1059
+ #: options/phrases-layouts/phrases-user-settings.php:19
1060
+ msgid "Subscriptions"
1061
+ msgstr ""
1062
+
1063
+ #: options/class.WpdiscuzOptionsSerialized.php:912
1064
+ #: options/phrases-layouts/phrases-user-settings.php:23
1065
+ msgid "Follows"
1066
+ msgstr ""
1067
+
1068
+ #: options/class.WpdiscuzOptionsSerialized.php:913
1069
+ #: options/phrases-layouts/phrases-user-settings.php:27
1070
+ msgid "In response to:"
1071
+ msgstr ""
1072
+
1073
+ #: options/class.WpdiscuzOptionsSerialized.php:914
1074
+ #: options/class.WpdiscuzOptionsSerialized.php:920
1075
+ #: options/phrases-layouts/phrases-user-settings.php:31
1076
+ #: options/phrases-layouts/phrases-user-settings.php:55
1077
+ msgid "Bulk management via email"
1078
+ msgstr ""
1079
+
1080
+ #: options/class.WpdiscuzOptionsSerialized.php:915
1081
+ msgid ""
1082
+ "Click the button above to get an email with bulk delete and unsubscribe "
1083
+ "links."
1084
+ msgstr ""
1085
+
1086
+ #: options/class.WpdiscuzOptionsSerialized.php:916
1087
+ #: options/phrases-layouts/phrases-user-settings.php:39
1088
+ msgid "No data found!"
1089
+ msgstr ""
1090
+
1091
+ #: options/class.WpdiscuzOptionsSerialized.php:917
1092
+ #: options/class.WpdiscuzOptionsSerialized.php:921
1093
+ #: options/phrases-layouts/phrases-user-settings.php:43
1094
+ #: options/phrases-layouts/phrases-user-settings.php:60
1095
+ msgid "Delete all my comments"
1096
+ msgstr ""
1097
+
1098
+ #: options/class.WpdiscuzOptionsSerialized.php:918
1099
+ #: options/phrases-layouts/phrases-user-settings.php:47
1100
+ msgid "Cancel all comment subscriptions"
1101
+ msgstr ""
1102
+
1103
+ #: options/class.WpdiscuzOptionsSerialized.php:919
1104
+ #: options/phrases-layouts/phrases-user-settings.php:51
1105
+ msgid "Clear cookies with my personal data"
1106
+ msgstr ""
1107
+
1108
+ #: options/class.WpdiscuzOptionsSerialized.php:922
1109
+ msgid ""
1110
+ "Please use this link to delete all your comments. Please note, that this "
1111
+ "action cannot be undone.<br/><br/><a href=\"[DELETE_COMMENTS_URL]\" "
1112
+ "target=\"_blank\">Delete all my comments</a><br/><br/>"
1113
+ msgstr ""
1114
+
1115
+ #: options/class.WpdiscuzOptionsSerialized.php:923
1116
+ #: options/phrases-layouts/phrases-user-settings.php:85
1117
+ msgid "Delete all my subscriptions"
1118
+ msgstr ""
1119
+
1120
+ #: options/class.WpdiscuzOptionsSerialized.php:924
1121
+ msgid ""
1122
+ "Please use this link to cancel all subscriptions for new comments. Please "
1123
+ "note, that this action cannot be undone.<br/><br/><a "
1124
+ "href=\"[DELETE_SUBSCRIPTIONS_URL]\" target=\"_blank\">Delete all my "
1125
+ "subscriptions</a><br/><br/>"
1126
+ msgstr ""
1127
+
1128
+ #: options/class.WpdiscuzOptionsSerialized.php:925
1129
+ #: options/phrases-layouts/phrases-user-settings.php:110
1130
+ msgid "Delete all my follows"
1131
+ msgstr ""
1132
+
1133
+ #: options/class.WpdiscuzOptionsSerialized.php:926
1134
+ msgid ""
1135
+ "Please use this link to cancel all follows for new comments. Please note, "
1136
+ "that this action cannot be undone.<br/><br/><a href=\"[DELETE_FOLLOWS_URL]\" "
1137
+ "target=\"_blank\">Delete all my follows</a><br/><br/>"
1138
+ msgstr ""
1139
+
1140
+ #: options/class.WpdiscuzOptionsSerialized.php:927
1141
+ #: options/phrases-layouts/phrases-user-settings.php:134
1142
+ msgid "subscribed to this comment"
1143
+ msgstr ""
1144
+
1145
+ #: options/class.WpdiscuzOptionsSerialized.php:928
1146
+ #: options/phrases-layouts/phrases-user-settings.php:138
1147
+ msgid "subscribed to my comments"
1148
+ msgstr ""
1149
+
1150
+ #: options/class.WpdiscuzOptionsSerialized.php:929
1151
+ #: options/phrases-layouts/phrases-user-settings.php:142
1152
+ msgid "subscribed to all follow-up comments of this post"
1153
+ msgstr ""
1154
+
1155
+ #: options/class.WpdiscuzOptionsSerialized.php:931
1156
+ #: options/phrases-layouts/phrases-user-settings.php:150
1157
+ msgid "Error : Can't send email."
1158
+ msgstr ""
1159
+
1160
+ #: options/class.WpdiscuzOptionsSerialized.php:932
1161
+ #: options/phrases-layouts/phrases-user-settings.php:154
1162
+ msgid "Are you sure you want to delete this comment?"
1163
+ msgstr ""
1164
+
1165
+ #: options/class.WpdiscuzOptionsSerialized.php:933
1166
+ #: options/phrases-layouts/phrases-user-settings.php:158
1167
+ msgid "Are you sure you want to cancel this subscription?"
1168
+ msgstr ""
1169
+
1170
+ #: options/class.WpdiscuzOptionsSerialized.php:934
1171
+ #: options/phrases-layouts/phrases-user-settings.php:162
1172
+ msgid "Are you sure you want to cancel this follow?"
1173
+ msgstr ""
1174
+
1175
+ #: options/class.WpdiscuzOptionsSerialized.php:935
1176
+ #: options/phrases-layouts/phrases-follow.php:11
1177
+ msgid "Follow this user"
1178
+ msgstr ""
1179
+
1180
+ #: options/class.WpdiscuzOptionsSerialized.php:936
1181
+ #: options/phrases-layouts/phrases-follow.php:15
1182
+ msgid "Unfollow this user"
1183
+ msgstr ""
1184
+
1185
+ #: options/class.WpdiscuzOptionsSerialized.php:937
1186
+ #: options/phrases-layouts/phrases-follow.php:19
1187
+ msgid "You started following this comment author"
1188
+ msgstr ""
1189
+
1190
+ #: options/class.WpdiscuzOptionsSerialized.php:938
1191
+ msgid "You stopped following this comment author."
1192
+ msgstr ""
1193
+
1194
+ #: options/class.WpdiscuzOptionsSerialized.php:939
1195
+ msgid "Please check your email and confirm the user following request."
1196
+ msgstr ""
1197
+
1198
+ #: options/class.WpdiscuzOptionsSerialized.php:940
1199
+ msgid "Sorry, we couldn't send confirmation email."
1200
+ msgstr ""
1201
+
1202
+ #: options/class.WpdiscuzOptionsSerialized.php:941
1203
+ msgid "Please login to follow users."
1204
+ msgstr ""
1205
+
1206
+ #: options/class.WpdiscuzOptionsSerialized.php:942
1207
+ msgid "We are sorry, but you can't follow this user."
1208
+ msgstr ""
1209
+
1210
+ #: options/class.WpdiscuzOptionsSerialized.php:943
1211
+ msgid "Following failed. Please try again later."
1212
+ msgstr ""
1213
+
1214
+ #: options/class.WpdiscuzOptionsSerialized.php:944
1215
+ msgid "Confirm user following request"
1216
+ msgstr ""
1217
+
1218
+ #: options/class.WpdiscuzOptionsSerialized.php:945
1219
+ msgid "Cancel user following request"
1220
+ msgstr ""
1221
+
1222
+ #: options/class.WpdiscuzOptionsSerialized.php:946
1223
+ msgid "User Following Confirmation"
1224
+ msgstr ""
1225
+
1226
+ #: options/html-addons.php:11
1227
+ msgid "wpDiscuz Addons"
1228
+ msgstr ""
1229
+
1230
+ #: options/html-addons.php:19
1231
+ msgid "wpDiscuz Add-ons"
1232
+ msgstr ""
1233
+
1234
+ #: options/html-addons.php:20
1235
+ msgid "Addons Support Forum"
1236
+ msgstr ""
1237
+
1238
+ #: options/html-addons.php:25
1239
+ msgid ""
1240
+ "All wpDiscuz addons are being developed by wpDiscuz developers at gVectors "
1241
+ "Team, those are very solid premium level extensions and come with premium "
1242
+ "support.\n"
1243
+ " These addons help us to keep top level "
1244
+ "development of the free wpDiscuz plugin. All essential and even dozens of "
1245
+ "extra-cool features are already available for free in core wpDiscuz. \n"
1246
+ " There will never be any limits, any pro and paid "
1247
+ "versions for wpDiscuz. We have another dozens of awesome features in our to-"
1248
+ "do list which will also be added for free in future releases. \n"
1249
+ " So the free wpDiscuz development always stays on "
1250
+ "the first priority and wpDiscuz is being extended with new free functions "
1251
+ "and features even faster than before."
1252
+ msgstr ""
1253
+
1254
+ #: options/html-addons.php:31
1255
+ msgid " Thank you!<br/> Sincerely yours,<br/> gVectors Team&nbsp;"
1256
+ msgstr ""
1257
+
1258
+ #: options/html-addons.php:60
1259
+ msgid "Live Preview | Buy"
1260
+ msgstr ""
1261
+
1262
+ #: options/html-options.php:10
1263
+ msgid "wpDiscuz General Settings"
1264
+ msgstr ""
1265
+
1266
+ #: options/html-options.php:19
1267
+ msgid "Need More Features?"
1268
+ msgstr ""
1269
+
1270
+ #: options/html-options.php:20
1271
+ msgid "Documentation"
1272
+ msgstr ""
1273
+
1274
+ #: options/html-options.php:21
1275
+ msgid "Support"
1276
+ msgstr ""
1277
+
1278
+ #: options/html-options.php:54 options/html-phrases.php:21
1279
+ msgid "General"
1280
+ msgstr ""
1281
+
1282
+ #: options/html-options.php:55
1283
+ msgid "Comment Form"
1284
+ msgstr ""
1285
+
1286
+ #: options/html-options.php:56
1287
+ msgid "Comment List"
1288
+ msgstr ""
1289
+
1290
+ #: options/html-options.php:57
1291
+ #: options/options-layouts/settings-live-update.php:7
1292
+ msgid "Live Update"
1293
+ msgstr ""
1294
+
1295
+ #: options/html-options.php:59
1296
+ msgid "Subscription"
1297
+ msgstr ""
1298
+
1299
+ #: options/html-options.php:59
1300
+ msgid "and Postmatic"
1301
+ msgstr ""
1302
+
1303
+ #: options/html-options.php:60
1304
+ msgid "Styling"
1305
+ msgstr ""
1306
+
1307
+ #: options/html-options.php:61
1308
+ msgid "Cache"
1309
+ msgstr ""
1310
+
1311
+ #: options/html-options.php:62 options/options-layouts/settings-social.php:7
1312
+ msgid "Social Login &amp; Share"
1313
+ msgstr ""
1314
+
1315
+ #: options/html-options.php:63
1316
+ #: options/options-layouts/settings-integrations.php:7
1317
+ msgid "Integrations"
1318
+ msgstr ""
1319
+
1320
+ #: options/html-options.php:154
1321
+ msgid "Reset Options"
1322
+ msgstr ""
1323
+
1324
+ #: options/html-options.php:156
1325
+ msgid "Remove vote data"
1326
+ msgstr ""
1327
+
1328
+ #: options/html-options.php:157 options/html-phrases.php:82
1329
+ msgid "Save Changes"
1330
+ msgstr ""
1331
+
1332
+ #: options/html-phrases.php:10
1333
+ msgid "wpDiscuz Front-end Phrases"
1334
+ msgstr ""
1335
+
1336
+ #: options/html-phrases.php:23
1337
+ msgid "Comment"
1338
+ msgstr ""
1339
+
1340
+ #: options/html-phrases.php:24
1341
+ msgid "Date/Time"
1342
+ msgstr ""
1343
+
1344
+ #: options/html-phrases.php:26
1345
+ msgid "Notification"
1346
+ msgstr ""
1347
+
1348
+ #: options/html-phrases.php:27
1349
+ msgid "Follow"
1350
+ msgstr ""
1351
+
1352
+ #: options/html-phrases.php:28
1353
+ #: options/phrases-layouts/phrases-social-login.php:7
1354
+ msgid "Social Login"
1355
+ msgstr ""
1356
+
1357
+ #: options/html-phrases.php:29
1358
+ msgid "User Settings"
1359
+ msgstr ""
1360
+
1361
+ #: options/html-phrases.php:30
1362
+ msgid "Errors"
1363
+ msgstr ""
1364
+
1365
+ #: options/html-phrases.php:81
1366
+ msgid "Reset Phrases"
1367
+ msgstr ""
1368
+
1369
+ #: options/html-tools.php:10
1370
+ msgid "wpDiscuz Tools"
1371
+ msgstr ""
1372
+
1373
+ #: options/html-tools.php:15 options/tools-layouts/options-export.php:7
1374
+ msgid "Export options"
1375
+ msgstr ""
1376
+
1377
+ #: options/html-tools.php:16 options/tools-layouts/options-import.php:7
1378
+ msgid "Import options"
1379
+ msgstr ""
1380
+
1381
+ #: options/html-tools.php:17 options/tools-layouts/subscriptions-import.php:9
1382
+ msgid "Import subscriptions"
1383
+ msgstr ""
1384
+
1385
+ #: options/html-tools.php:18 utils/deactivation-reason-modal.php:57
1386
+ msgid "Other"
1387
+ msgstr ""
1388
+
1389
+ #: utils/class.WpdiscuzHelper.php:224 utils/class.WpdiscuzHelper.php:227
1390
+ msgid "Spoiler"
1391
+ msgstr ""
1392
+
1393
+ #: utils/class.WpdiscuzHelper.php:567
1394
+ msgid "Go to update data"
1395
+ msgstr ""
1396
+
1397
+ #: utils/class.WpdiscuzHelperEmail.php:511
1398
+ msgid "Cancel Follow"
1399
+ msgstr ""
1400
+
1401
+ #: utils/deactivation-reason-modal.php:10
1402
+ msgid "Plugin Usage Feedback"
1403
+ msgstr ""
1404
+
1405
+ #: utils/deactivation-reason-modal.php:13
1406
+ msgid ""
1407
+ "Please let us know why you are deactivating. Choosing one of the options "
1408
+ "below you will help us make it better for you and for other users."
1409
+ msgstr ""
1410
+
1411
+ #: utils/deactivation-reason-modal.php:19
1412
+ msgid "I'll reactivate it later"
1413
+ msgstr ""
1414
+
1415
+ #: utils/deactivation-reason-modal.php:23
1416
+ msgid "The plugin is not working"
1417
+ msgstr ""
1418
+
1419
+ #: utils/deactivation-reason-modal.php:24
1420
+ msgid "What kind of problems do you have?"
1421
+ msgstr ""
1422
+
1423
+ #: utils/deactivation-reason-modal.php:28
1424
+ msgid "It's not what I was looking for"
1425
+ msgstr ""
1426
+
1427
+ #: utils/deactivation-reason-modal.php:32
1428
+ msgid "I couldn't understand how to make it work"
1429
+ msgstr ""
1430
+
1431
+ #: utils/deactivation-reason-modal.php:33
1432
+ #: utils/deactivation-reason-modal.php:38
1433
+ msgid "What type of features you want to be in the plugin?"
1434
+ msgstr ""
1435
+
1436
+ #: utils/deactivation-reason-modal.php:37
1437
+ msgid "The plugin is great, but I need specific features"
1438
+ msgstr ""
1439
+
1440
+ #: utils/deactivation-reason-modal.php:42
1441
+ msgid "I didn't like plugin design"
1442
+ msgstr ""
1443
+
1444
+ #: utils/deactivation-reason-modal.php:43
1445
+ msgid "What part of design you don't like or want to change?"
1446
+ msgstr ""
1447
+
1448
+ #: utils/deactivation-reason-modal.php:47
1449
+ msgid "The plugin works very slow"
1450
+ msgstr ""
1451
+
1452
+ #: utils/deactivation-reason-modal.php:48
1453
+ msgid ""
1454
+ "Could you please describe which features of the plugin slows down your "
1455
+ "website?"
1456
+ msgstr ""
1457
+
1458
+ #: utils/deactivation-reason-modal.php:52
1459
+ msgid "I found a better plugin"
1460
+ msgstr ""
1461
+
1462
+ #: utils/deactivation-reason-modal.php:53
1463
+ msgid "Please provide a plugin name or URL"
1464
+ msgstr ""
1465
+
1466
+ #: utils/deactivation-reason-modal.php:62
1467
+ msgid "Dismiss and never show again"
1468
+ msgstr ""
1469
+
1470
+ #: utils/deactivation-reason-modal.php:66
1471
+ msgid "Thank you for your feedback!"
1472
+ msgstr ""
1473
+
1474
+ #: forms/wpdFormAttr/Form.php:131 forms/wpdFormAttr/Form.php:415
1475
+ #: forms/wpdFormAttr/Form.php:744
1476
+ msgid ""
1477
+ "I allow to use my email address and send notification about new comments and "
1478
+ "replies (you can unsubscribe at any time)."
1479
+ msgstr ""
1480
+
1481
+ #: forms/wpdFormAttr/Form.php:679 forms/wpdFormAttr/Form.php:701
1482
+ #: forms/wpdFormAttr/Form.php:713 forms/wpdFormAttr/Form.php:725
1483
+ #: forms/wpdFormAttr/Form.php:736 forms/wpdFormAttr/Form.php:756
1484
+ #: forms/wpdFormAttr/Form.php:786 forms/wpdFormAttr/Form.php:796
1485
+ #: forms/wpdFormAttr/Form.php:803 options/options-layouts/settings-cache.php:23
1486
+ #: options/options-layouts/settings-cache.php:33
1487
+ #: options/options-layouts/settings-cache.php:41
1488
+ #: options/options-layouts/settings-form.php:18
1489
+ #: options/options-layouts/settings-form.php:28
1490
+ #: options/options-layouts/settings-form.php:68
1491
+ #: options/options-layouts/settings-form.php:82
1492
+ #: options/options-layouts/settings-form.php:96
1493
+ #: options/options-layouts/settings-form.php:111
1494
+ #: options/options-layouts/settings-form.php:124
1495
+ #: options/options-layouts/settings-form.php:140
1496
+ #: options/options-layouts/settings-form.php:151
1497
+ #: options/options-layouts/settings-form.php:162
1498
+ #: options/options-layouts/settings-form.php:172
1499
+ #: options/options-layouts/settings-form.php:190
1500
+ #: options/options-layouts/settings-form.php:200
1501
+ #: options/options-layouts/settings-form.php:210
1502
+ #: options/options-layouts/settings-form.php:220
1503
+ #: options/options-layouts/settings-general.php:14
1504
+ #: options/options-layouts/settings-general.php:26
1505
+ #: options/options-layouts/settings-general.php:68
1506
+ #: options/options-layouts/settings-general.php:82
1507
+ #: options/options-layouts/settings-general.php:92
1508
+ #: options/options-layouts/settings-list.php:20
1509
+ #: options/options-layouts/settings-list.php:31
1510
+ #: options/options-layouts/settings-list.php:41
1511
+ #: options/options-layouts/settings-list.php:51
1512
+ #: options/options-layouts/settings-list.php:81
1513
+ #: options/options-layouts/settings-list.php:93
1514
+ #: options/options-layouts/settings-list.php:113
1515
+ #: options/options-layouts/settings-list.php:122
1516
+ #: options/options-layouts/settings-list.php:141
1517
+ #: options/options-layouts/settings-list.php:153
1518
+ #: options/options-layouts/settings-list.php:163
1519
+ #: options/options-layouts/settings-list.php:178
1520
+ #: options/options-layouts/settings-list.php:188
1521
+ #: options/options-layouts/settings-live-update.php:31
1522
+ #: options/options-layouts/settings-social.php:18
1523
+ #: options/options-layouts/settings-social.php:28
1524
+ #: options/options-layouts/settings-style.php:19
1525
+ #: options/options-layouts/settings-style.php:59
1526
+ #: options/options-layouts/settings-style.php:96
1527
+ #: options/options-layouts/settings-style.php:119
1528
+ #: options/options-layouts/settings-style.php:138
1529
+ #: options/options-layouts/settings-style.php:164
1530
+ #: options/options-layouts/settings-style.php:173
1531
+ #: options/options-layouts/settings-subscription.php:18
1532
+ #: options/options-layouts/settings-subscription.php:28
1533
+ #: options/options-layouts/settings-subscription.php:38
1534
+ #: options/options-layouts/settings-subscription.php:62
1535
+ #: options/options-layouts/settings-subscription.php:75
1536
+ #: options/options-layouts/settings-subscription.php:85
1537
+ #: options/options-layouts/settings-subscription.php:111
1538
+ #: options/options-layouts/settings-subscription.php:121
1539
+ msgid "Read the documentation"
1540
+ msgstr ""
1541
+
1542
+ #: forms/wpdFormAttr/Form.php:684
1543
+ msgid "Disable commenting for roles"
1544
+ msgstr ""
1545
+
1546
+ #: forms/wpdFormAttr/Form.php:706
1547
+ msgid "Allow guests to comment"
1548
+ msgstr ""
1549
+
1550
+ #: forms/wpdFormAttr/Form.php:710 forms/wpdFormAttr/Form.php:722
1551
+ #: forms/wpdFormAttr/Form.php:733
1552
+ msgid "Yes"
1553
+ msgstr ""
1554
+
1555
+ #: forms/wpdFormAttr/Form.php:712 forms/wpdFormAttr/Form.php:724
1556
+ #: forms/wpdFormAttr/Form.php:735
1557
+ msgid "No"
1558
+ msgstr ""
1559
+
1560
+ #: forms/wpdFormAttr/Form.php:718
1561
+ msgid "Enable subscription bar"
1562
+ msgstr ""
1563
+
1564
+ #: forms/wpdFormAttr/Form.php:729
1565
+ msgid "Display agreement checkbox in Comment Subscription bar"
1566
+ msgstr ""
1567
+
1568
+ #: forms/wpdFormAttr/Form.php:741
1569
+ msgid "Comment Subscription bar agreement checkbox label"
1570
+ msgstr ""
1571
+
1572
+ #: forms/wpdFormAttr/Form.php:751
1573
+ msgid "Comment form header text"
1574
+ msgstr ""
1575
+
1576
+ #: forms/wpdFormAttr/Form.php:761
1577
+ msgid "Display comment form for post types"
1578
+ msgstr ""
1579
+
1580
+ #: forms/wpdFormAttr/Form.php:768
1581
+ msgid ""
1582
+ "The red marked post types are already attached to other comment form. If you "
1583
+ "set this form too, the old forms will not be used for them."
1584
+ msgstr ""
1585
+
1586
+ #: forms/wpdFormAttr/Form.php:791
1587
+ msgid "Display comment form for post IDs"
1588
+ msgstr ""
1589
+
1590
+ #: forms/wpdFormAttr/Form.php:792
1591
+ msgid ""
1592
+ "You can use this form for certain posts/pages specified by comma separated "
1593
+ "IDs."
1594
+ msgstr ""
1595
+
1596
+ #: forms/wpdFormAttr/Form.php:807
1597
+ msgid "Comment Text Field"
1598
+ msgstr ""
1599
+
1600
+ #: forms/wpdFormAttr/Form.php:822
1601
+ msgid "ADD ROW"
1602
+ msgstr ""
1603
+
1604
+ #: forms/wpdFormAttr/Form.php:887
1605
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:84
1606
+ msgid "Website"
1607
+ msgstr ""
1608
+
1609
+ #: forms/wpdFormAttr/Form.php:896
1610
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:117
1611
+ msgid "Code"
1612
+ msgstr ""
1613
+
1614
+ #: options/options-layouts/settings-addons.php:20
1615
+ msgid ""
1616
+ "Here you can find wpDiscuz Addons' setting options in vertical subTabs with "
1617
+ "according addon titles. All wpDiscuz addons are listed on wpDiscuz"
1618
+ msgstr ""
1619
+
1620
+ #: options/options-layouts/settings-addons.php:20
1621
+ msgid "Addons subMenu"
1622
+ msgstr ""
1623
+
1624
+ #: options/options-layouts/settings-addons.php:20
1625
+ msgid ""
1626
+ "We'll add new free and paid addons with almost every wpDiscuz release. There "
1627
+ "will be dozens of very useful addons in near future. Currently wpDiscuz "
1628
+ "consists of about 70 free features/addons like \"Live Update\", \"First "
1629
+ "comment redirection\", \"Comment sorting\", \"Simple CAPTCHA\", \"AJAX "
1630
+ "Pagination\", \"Lazy Load\", \"Comment Likes\", \"Comment Share\" and dozens "
1631
+ "of other addons and there will be more. All new and free addons will be "
1632
+ "built-in with wpDiscuz plugin and all paid addons will be listed separately "
1633
+ "on"
1634
+ msgstr ""
1635
+
1636
+ #: options/options-layouts/settings-cache.php:10
1637
+ msgid "Gravatar Cache"
1638
+ msgstr ""
1639
+
1640
+ #: options/options-layouts/settings-cache.php:15
1641
+ msgid "Enable Gravatar caching"
1642
+ msgstr ""
1643
+
1644
+ #: options/options-layouts/settings-cache.php:17
1645
+ msgid ""
1646
+ "It seems on of important functions (\"file_get_contents\", "
1647
+ "\"file_put_contents\") of php is not exists.<br/> Please enable these "
1648
+ "functions in your server settings to use gravatar caching feature."
1649
+ msgstr ""
1650
+
1651
+ #: options/options-layouts/settings-cache.php:27
1652
+ msgid "Caching method"
1653
+ msgstr ""
1654
+
1655
+ #: options/options-layouts/settings-cache.php:30
1656
+ msgid "Runtime"
1657
+ msgstr ""
1658
+
1659
+ #: options/options-layouts/settings-cache.php:31
1660
+ msgid "Cron job"
1661
+ msgstr ""
1662
+
1663
+ #: options/options-layouts/settings-cache.php:37
1664
+ msgid "Cache avatars for \"X\" days"
1665
+ msgstr ""
1666
+
1667
+ #: options/options-layouts/settings-cache.php:45
1668
+ #: options/options-layouts/settings-cache.php:48
1669
+ msgid "Purge expired caches"
1670
+ msgstr ""
1671
+
1672
+ #: options/options-layouts/settings-cache.php:52
1673
+ #: options/options-layouts/settings-cache.php:55
1674
+ msgid "Purge all caches"
1675
+ msgstr ""
1676
+
1677
+ #: options/options-layouts/settings-cache.php:59
1678
+ msgid "Statistics Cache"
1679
+ msgstr ""
1680
+
1681
+ #: options/options-layouts/settings-cache.php:63
1682
+ #: options/options-layouts/settings-cache.php:66
1683
+ msgid "Purge statistics caches"
1684
+ msgstr ""
1685
+
1686
+ #: options/options-layouts/settings-customfields.php:12
1687
+ msgid "Google Map API Key"
1688
+ msgstr ""
1689
+
1690
+ #: options/options-layouts/settings-form.php:7
1691
+ msgid "Comment Form Settings"
1692
+ msgstr ""
1693
+
1694
+ #: options/options-layouts/settings-form.php:12
1695
+ msgid "Hide Header Text"
1696
+ msgstr ""
1697
+
1698
+ #: options/options-layouts/settings-form.php:13
1699
+ msgid ""
1700
+ "This option hides \"Leave Reply\" header text on top of comment form. You "
1701
+ "can change this text in Comments > Forms admin page."
1702
+ msgstr ""
1703
+
1704
+ #: options/options-layouts/settings-form.php:23
1705
+ msgid "Show logged-in user name and logout link on top of main form"
1706
+ msgstr ""
1707
+
1708
+ #: options/options-layouts/settings-form.php:33
1709
+ msgid "Comment Form components"
1710
+ msgstr ""
1711
+
1712
+ #: options/options-layouts/settings-form.php:34
1713
+ msgid ""
1714
+ "These components can be found on the main comment form. The \"My Content and "
1715
+ "Settings\" button is located on the top left side, under the \"Leave Reply\" "
1716
+ "header text. The \"Discussion Statistic\" and \"Recent Comment Authors\" "
1717
+ "sections are located under the main comment form fields ont the left and "
1718
+ "right sides accordingly."
1719
+ msgstr ""
1720
+
1721
+ #: options/options-layouts/settings-form.php:43
1722
+ msgid "Hide \"Please login to comment\" text"
1723
+ msgstr ""
1724
+
1725
+ #: options/options-layouts/settings-form.php:50
1726
+ msgid "Hide \"My Content and Settings\" button"
1727
+ msgstr ""
1728
+
1729
+ #: options/options-layouts/settings-form.php:57
1730
+ msgid "Hide \"Discussion Statistic\" section"
1731
+ msgstr ""
1732
+
1733
+ #: options/options-layouts/settings-form.php:64
1734
+ msgid "Hide \"Recent Comment Authors\" section"
1735
+ msgstr ""
1736
+
1737
+ #: options/options-layouts/settings-form.php:73
1738
+ msgid "Keep guest commenter credentials in browser cookies for x days"
1739
+ msgstr ""
1740
+
1741
+ #: options/options-layouts/settings-form.php:75
1742
+ msgid ""
1743
+ "wpDiscuz uses WordPress function to keep guest Name, Email and Website "
1744
+ "information in cookies to fill according fields of comment form on next "
1745
+ "commenting time."
1746
+ msgstr ""
1747
+
1748
+ #: options/options-layouts/settings-form.php:76
1749
+ msgid "Set this option value -1 to make it unlimited."
1750
+ msgstr ""
1751
+
1752
+ #: options/options-layouts/settings-form.php:77
1753
+ msgid "Set this option value 0 to clear those data when user closes browser."
1754
+ msgstr ""
1755
+
1756
+ #: options/options-layouts/settings-form.php:87
1757
+ msgid "Comment author name length (for guests only)"
1758
+ msgstr ""
1759
+
1760
+ #: options/options-layouts/settings-form.php:91
1761
+ #: options/options-layouts/settings-form.php:106
1762
+ msgid "Min"
1763
+ msgstr ""
1764
+
1765
+ #: options/options-layouts/settings-form.php:94
1766
+ #: options/options-layouts/settings-form.php:109
1767
+ msgid "Max"
1768
+ msgstr ""
1769
+
1770
+ #: options/options-layouts/settings-form.php:101
1771
+ msgid "Comment text length"
1772
+ msgstr ""
1773
+
1774
+ #: options/options-layouts/settings-form.php:102
1775
+ msgid ""
1776
+ "Allows to set minimum and maximum number of chars can be inserted in comment "
1777
+ "textarea. Leave the max value empty to remove the limit."
1778
+ msgstr ""
1779
+
1780
+ #: options/options-layouts/settings-form.php:116
1781
+ msgid "Captcha generation type"
1782
+ msgstr ""
1783
+
1784
+ #: options/options-layouts/settings-form.php:121
1785
+ msgid "File system"
1786
+ msgstr ""
1787
+
1788
+ #: options/options-layouts/settings-form.php:122
1789
+ msgid "WP Session"
1790
+ msgstr ""
1791
+
1792
+ #: options/options-layouts/settings-form.php:129
1793
+ msgid "Invisible Spam Protection"
1794
+ msgstr ""
1795
+
1796
+ #: options/options-layouts/settings-form.php:131
1797
+ msgid ""
1798
+ "You should purge caches after each key generation otherwise the plugin may "
1799
+ "work not correctly"
1800
+ msgstr ""
1801
+
1802
+ #: options/options-layouts/settings-form.php:134
1803
+ msgid "Leave the field empty if you don't want to use this feature"
1804
+ msgstr ""
1805
+
1806
+ #: options/options-layouts/settings-form.php:139
1807
+ msgid "Generate"
1808
+ msgstr ""
1809
+
1810
+ #: options/options-layouts/settings-form.php:145
1811
+ msgid "Display note about Invisible Spam Protection"
1812
+ msgstr ""
1813
+
1814
+ #: options/options-layouts/settings-form.php:146
1815
+ msgid ""
1816
+ "wpDiscuz has built-in invisible antispam protection based on server side and "
1817
+ "front-end unique key comparation. By default wpDiscuz display a small note "
1818
+ "in simple CAPTCHA area, saying the comment form is under antispam protection."
1819
+ " The note text can be managed in Comments > Phrases > Form tab."
1820
+ msgstr ""
1821
+
1822
+ #: options/options-layouts/settings-form.php:156
1823
+ msgid "Enable Quicktags"
1824
+ msgstr ""
1825
+
1826
+ #: options/options-layouts/settings-form.php:157
1827
+ msgid ""
1828
+ "Quicktag is a on-click button that inserts HTML in to comment textarea. For "
1829
+ "example the \"b\" Quicktag will insert the HTML bold tags < b > < /b >."
1830
+ msgstr ""
1831
+
1832
+ #: options/options-layouts/settings-form.php:167
1833
+ msgid "Enable automatic image URL to image HTML conversion"
1834
+ msgstr ""
1835
+
1836
+ #: options/options-layouts/settings-form.php:177
1837
+ msgid "Edit Button - Allow comment editing for"
1838
+ msgstr ""
1839
+
1840
+ #: options/options-layouts/settings-form.php:182
1841
+ msgid "Do not allow"
1842
+ msgstr ""
1843
+
1844
+ #: options/options-layouts/settings-form.php:183
1845
+ #: options/options-layouts/settings-form.php:184
1846
+ #: options/options-layouts/settings-live-update.php:54
1847
+ #: options/options-layouts/settings-live-update.php:55
1848
+ #: options/options-layouts/settings-live-update.php:56
1849
+ msgid "Minutes"
1850
+ msgstr ""
1851
+
1852
+ #: options/options-layouts/settings-form.php:185
1853
+ #: options/phrases-layouts/phrases-datetime.php:35
1854
+ msgid "Hour"
1855
+ msgstr ""
1856
+
1857
+ #: options/options-layouts/settings-form.php:186
1858
+ #: options/options-layouts/settings-form.php:187
1859
+ msgid "Hours"
1860
+ msgstr ""
1861
+
1862
+ #: options/options-layouts/settings-form.php:188
1863
+ msgid "Unlimit"
1864
+ msgstr ""
1865
+
1866
+ #: options/options-layouts/settings-form.php:195
1867
+ msgid "Stick Button - Stick a comment thread"
1868
+ msgstr ""
1869
+
1870
+ #: options/options-layouts/settings-form.php:205
1871
+ msgid "Close Button - Close a comment thread"
1872
+ msgstr ""
1873
+
1874
+ #: options/options-layouts/settings-form.php:215
1875
+ msgid "Enable drop animation for comment form and subscription bar"
1876
+ msgstr ""
1877
+
1878
+ #: options/options-layouts/settings-general.php:7
1879
+ msgid "General Settings"
1880
+ msgstr ""
1881
+
1882
+ #: options/options-layouts/settings-general.php:11
1883
+ msgid "Enable wpdiscuz on home page"
1884
+ msgstr ""
1885
+
1886
+ #: options/options-layouts/settings-general.php:19
1887
+ msgid "Use guest email to detect registered account"
1888
+ msgstr ""
1889
+
1890
+ #: options/options-layouts/settings-general.php:21
1891
+ msgid ""
1892
+ "Sometimes registered users comment as guest using the same email address. "
1893
+ "wpDiscuz can detect the account role using guest email and display commenter "
1894
+ "label correctly."
1895
+ msgstr ""
1896
+
1897
+ #: options/options-layouts/settings-general.php:31
1898
+ msgid "Secure comment content in HTTPS protocol."
1899
+ msgstr ""
1900
+
1901
+ #: options/options-layouts/settings-general.php:33
1902
+ msgid ""
1903
+ "This option detects images and other contents with non-https source URLs and "
1904
+ "fix according to your selected logic."
1905
+ msgstr ""
1906
+
1907
+ #: options/options-layouts/settings-general.php:41
1908
+ msgid "Replace non-https content to simple link URLs"
1909
+ msgstr ""
1910
+
1911
+ #: options/options-layouts/settings-general.php:45
1912
+ msgid ""
1913
+ "Just replace http protocols to https (https may not be supported by content "
1914
+ "provider)"
1915
+ msgstr ""
1916
+
1917
+ #: options/options-layouts/settings-general.php:49
1918
+ msgid "Ignore non-https content"
1919
+ msgstr ""
1920
+
1921
+ #: options/options-layouts/settings-general.php:57
1922
+ msgid "Redirect first commenter to"
1923
+ msgstr ""
1924
+
1925
+ #: options/options-layouts/settings-general.php:64
1926
+ msgid "Do not redirect"
1927
+ msgstr ""
1928
+
1929
+ #: options/options-layouts/settings-general.php:73
1930
+ msgid "Use WordPress Date/Time format"
1931
+ msgstr ""
1932
+
1933
+ #: options/options-layouts/settings-general.php:74
1934
+ msgid ""
1935
+ "wpDiscuz shows Human Readable date format. If you check this option it'll "
1936
+ "show the date/time format set in WordPress General Settings."
1937
+ msgstr ""
1938
+
1939
+ #: options/options-layouts/settings-general.php:80
1940
+ msgid "Current Wordpress date/time format"
1941
+ msgstr ""
1942
+
1943
+ #: options/options-layouts/settings-general.php:87
1944
+ msgid "Use Plugin .PO/.MO files"
1945
+ msgstr ""
1946
+
1947
+ #: options/options-layouts/settings-general.php:88
1948
+ msgid ""
1949
+ "wpDiscuz phrase system allows you to translate all front-end phrases. "
1950
+ "However if you have a multi-language website it'll not allow you to add more "
1951
+ "than one language translation. The only way to get it is the plugin "
1952
+ "translation files (.PO / .MO). If wpDiscuz has the languages you need you "
1953
+ "should check this option to disable phrase system and it'll automatically "
1954
+ "translate all phrases based on language files according to current language."
1955
+ msgstr ""
1956
+
1957
+ #: options/options-layouts/settings-general.php:98
1958
+ msgid ""
1959
+ "Help wpDiscuz to grow allowing people to recognize which comment plugin you "
1960
+ "use"
1961
+ msgstr ""
1962
+
1963
+ #: options/options-layouts/settings-general.php:100
1964
+ msgid ""
1965
+ "Please check this option on to help wpDiscuz get more popularity as your "
1966
+ "thank to the hard work we do for you totally free. This option adds a very "
1967
+ "small (16x16px) icon under the comment section which will allow your site "
1968
+ "visitors recognize the name of comment solution you use."
1969
+ msgstr ""
1970
+
1971
+ #: options/options-layouts/settings-general.php:105
1972
+ msgid "Thank you!"
1973
+ msgstr ""
1974
+
1975
+ #: options/options-layouts/settings-integrations.php:14
1976
+ msgid "BuddyPress"
1977
+ msgstr ""
1978
+
1979
+ #: options/options-layouts/settings-integrations.php:15
1980
+ msgid "Users Ultra"
1981
+ msgstr ""
1982
+
1983
+ #: options/options-layouts/settings-integrations.php:16
1984
+ msgid "User Pro"
1985
+ msgstr ""
1986
+
1987
+ #: options/options-layouts/settings-integrations.php:17
1988
+ msgid "Ultimate Member"
1989
+ msgstr ""
1990
+
1991
+ #: options/options-layouts/settings-integrations.php:18
1992
+ msgid "MyCred"
1993
+ msgstr ""
1994
+
1995
+ #: options/options-layouts/settings-integrations.php:19
1996
+ msgid "PeepSo"
1997
+ msgstr ""
1998
+
1999
+ #: options/options-layouts/settings-integrations.php:24
2000
+ #: options/options-layouts/settings-integrations.php:42
2001
+ #: options/options-layouts/settings-integrations.php:60
2002
+ #: options/options-layouts/settings-integrations.php:91
2003
+ #: options/options-layouts/settings-integrations.php:125
2004
+ #: options/options-layouts/settings-integrations.php:154
2005
+ msgid "Please add the code below in current active theme's functions.php file"
2006
+ msgstr ""
2007
+
2008
+ #: options/options-layouts/settings-integrations.php:25
2009
+ msgid ""
2010
+ "This code will integrate BuddyPress profile URL with wpDiscuz. BuddyPress "
2011
+ "Display Names and Avatars will be integrated automatically."
2012
+ msgstr ""
2013
+
2014
+ #: options/options-layouts/settings-integrations.php:43
2015
+ msgid ""
2016
+ "This code will integrate Users Ultra profile URL with wpDiscuz. Users Ultra "
2017
+ "Display Names and Avatars will be integrated automatically."
2018
+ msgstr ""
2019
+
2020
+ #: options/options-layouts/settings-integrations.php:61
2021
+ msgid ""
2022
+ "This code will integrate User Pro profile URL with wpDiscuz. User Pro "
2023
+ "Display Names and Avatars will be integrated automatically."
2024
+ msgstr ""
2025
+
2026
+ #: options/options-layouts/settings-integrations.php:92
2027
+ msgid ""
2028
+ "This code consists of two parts, which will integrate Ultimate Member "
2029
+ "profile Display Name and Profile URL with wpDiscuz. UM Avatars will be "
2030
+ "integrated automatically."
2031
+ msgstr ""
2032
+
2033
+ #: options/options-layouts/settings-integrations.php:126
2034
+ msgid ""
2035
+ "This code will integrate MyCred User Ranks and Badges under comment author "
2036
+ "avatar."
2037
+ msgstr ""
2038
+
2039
+ #: options/options-layouts/settings-integrations.php:155
2040
+ msgid "This code will integrate PeepSo profile url with wpDiscuz."
2041
+ msgstr ""
2042
+
2043
+ #: options/options-layouts/settings-list.php:7
2044
+ msgid "Comment List Settings"
2045
+ msgstr ""
2046
+
2047
+ #: options/options-layouts/settings-list.php:12
2048
+ msgid "Display only parent comments and <u>view replies &or;</u> button"
2049
+ msgstr ""
2050
+
2051
+ #: options/options-layouts/settings-list.php:14
2052
+ msgid ""
2053
+ "If this option is enabled only parent comment will be displayed. This "
2054
+ "increases page load speed and keeps pages light. If visitor wants to read "
2055
+ "replies he/she just need to click on [view replies (12)] button located on "
2056
+ "all parent comments which have replies."
2057
+ msgstr ""
2058
+
2059
+ #: options/options-layouts/settings-list.php:25
2060
+ msgid "Show sorting buttons"
2061
+ msgstr ""
2062
+
2063
+ #: options/options-layouts/settings-list.php:26
2064
+ msgid ""
2065
+ "This option enables comment sorting buttons (newest | oldest | most voted). "
2066
+ "Sorting buttons are not available for the default comments pagination type "
2067
+ "[1][2][3]... It's only active for [Load more] and other AYAX pagination "
2068
+ "types."
2069
+ msgstr ""
2070
+
2071
+ #: options/options-layouts/settings-list.php:36
2072
+ msgid "Set comments ordering to \"Most voted\" by default "
2073
+ msgstr ""
2074
+
2075
+ #: options/options-layouts/settings-list.php:46
2076
+ msgid "Reverse child comments order"
2077
+ msgstr ""
2078
+
2079
+ #: options/options-layouts/settings-list.php:56
2080
+ msgid "Comments loading/pagination type"
2081
+ msgstr ""
2082
+
2083
+ #: options/options-layouts/settings-list.php:58
2084
+ msgid ""
2085
+ "You can manage the number of comments for [Load more] option in Settings > "
2086
+ "Discussion page, using \"Break comments into pages with [X] top level "
2087
+ "comments per page\" option. To show the default Wordpress comment pagination "
2088
+ "you should enable the checkbox on bigining of the same option."
2089
+ msgstr ""
2090
+
2091
+ #: options/options-layouts/settings-list.php:64
2092
+ #: options/options-layouts/settings-list.php:66
2093
+ msgid "[Load more] Button"
2094
+ msgstr ""
2095
+
2096
+ #: options/options-layouts/settings-list.php:68
2097
+ #: options/options-layouts/settings-list.php:70
2098
+ msgid "[Load rest of all comments] Button"
2099
+ msgstr ""
2100
+
2101
+ #: options/options-layouts/settings-list.php:72
2102
+ #: options/options-layouts/settings-list.php:74
2103
+ msgid "Load all comments"
2104
+ msgstr ""
2105
+
2106
+ #: options/options-layouts/settings-list.php:76
2107
+ #: options/options-layouts/settings-list.php:78
2108
+ msgid "Lazy load comments on scrolling"
2109
+ msgstr ""
2110
+
2111
+ #: options/options-layouts/settings-list.php:86
2112
+ msgid ""
2113
+ "The number of words before breaking comment text and showing \"Read more\" "
2114
+ "link"
2115
+ msgstr ""
2116
+
2117
+ #: options/options-layouts/settings-list.php:88
2118
+ msgid "Set this option value 0, to turn off comment text breaking function."
2119
+ msgstr ""
2120
+
2121
+ #: options/options-layouts/settings-list.php:98
2122
+ msgid "Comment components"
2123
+ msgstr ""
2124
+
2125
+ #: options/options-layouts/settings-list.php:103
2126
+ msgid "Hide comment link"
2127
+ msgstr ""
2128
+
2129
+ #: options/options-layouts/settings-list.php:106
2130
+ msgid "Hide comment date"
2131
+ msgstr ""
2132
+
2133
+ #: options/options-layouts/settings-list.php:109
2134
+ msgid "Hide Commenter Labels"
2135
+ msgstr ""
2136
+
2137
+ #: options/options-layouts/settings-list.php:118
2138
+ msgid "Hide Voting buttons"
2139
+ msgstr ""
2140
+
2141
+ #: options/options-layouts/settings-list.php:127
2142
+ msgid "Comment voting buttons icon"
2143
+ msgstr ""
2144
+
2145
+ #: options/options-layouts/settings-list.php:146
2146
+ msgid "Comment voting statistic mode"
2147
+ msgstr ""
2148
+
2149
+ #: options/options-layouts/settings-list.php:150
2150
+ msgid "total count"
2151
+ msgstr ""
2152
+
2153
+ #: options/options-layouts/settings-list.php:151
2154
+ msgid "separate count"
2155
+ msgstr ""
2156
+
2157
+ #: options/options-layouts/settings-list.php:158
2158
+ msgid "Allow guests to vote on comments"
2159
+ msgstr ""
2160
+
2161
+ #: options/options-layouts/settings-list.php:168
2162
+ msgid "Display Ratings"
2163
+ msgstr ""
2164
+
2165
+ #: options/options-layouts/settings-list.php:173
2166
+ msgid "Before Content"
2167
+ msgstr ""
2168
+
2169
+ #: options/options-layouts/settings-list.php:175
2170
+ msgid "After Content"
2171
+ msgstr ""
2172
+
2173
+ #: options/options-layouts/settings-list.php:176
2174
+ msgid "Display ratings on none singular pages"
2175
+ msgstr ""
2176
+
2177
+ #: options/options-layouts/settings-list.php:183
2178
+ msgid "Disable Profiles URL"
2179
+ msgstr ""
2180
+
2181
+ #: options/options-layouts/settings-live-update.php:12
2182
+ msgid "Live update options"
2183
+ msgstr ""
2184
+
2185
+ #: options/options-layouts/settings-live-update.php:13
2186
+ msgid ""
2187
+ "wpDiscuz live update is very light and doesn't overload your server. However "
2188
+ "we recommend to monitor your server resources if you're on a Shared hosting "
2189
+ "plan. There are some very weak hosting plans which may not be able to "
2190
+ "perform very frequently live update requests. If you found some issue you "
2191
+ "can set the option below 30 seconds or more."
2192
+ msgstr ""
2193
+
2194
+ #: options/options-layouts/settings-live-update.php:18
2195
+ msgid "Never update"
2196
+ msgstr ""
2197
+
2198
+ #: options/options-layouts/settings-live-update.php:20
2199
+ msgid "Turn off \"Live Update\" function"
2200
+ msgstr ""
2201
+
2202
+ #: options/options-layouts/settings-live-update.php:22
2203
+ msgid "Show new comment/reply buttons to update manualy"
2204
+ msgstr ""
2205
+
2206
+ #: options/options-layouts/settings-live-update.php:24
2207
+ msgid "Always check for new comments and show update buttons"
2208
+ msgstr ""
2209
+
2210
+ #: options/options-layouts/settings-live-update.php:26
2211
+ msgid "Always update"
2212
+ msgstr ""
2213
+
2214
+ #: options/options-layouts/settings-live-update.php:28
2215
+ msgid "Always check for new comments and update automatically"
2216
+ msgstr ""
2217
+
2218
+ #: options/options-layouts/settings-live-update.php:36
2219
+ msgid "Disable live update for guests"
2220
+ msgstr ""
2221
+
2222
+ #: options/options-layouts/settings-live-update.php:45
2223
+ msgid "Update comment list every"
2224
+ msgstr ""
2225
+
2226
+ #: options/options-layouts/settings-live-update.php:50
2227
+ #: options/options-layouts/settings-live-update.php:51
2228
+ #: options/options-layouts/settings-live-update.php:52
2229
+ msgid "Seconds"
2230
+ msgstr ""
2231
+
2232
+ #: options/options-layouts/settings-live-update.php:53
2233
+ #: options/phrases-layouts/phrases-datetime.php:43
2234
+ msgid "Minute"
2235
+ msgstr ""
2236
+
2237
+ #: options/options-layouts/settings-social.php:12
2238
+ msgid "User agreement prior to a social login action"
2239
+ msgstr ""
2240
+
2241
+ #: options/options-layouts/settings-social.php:13
2242
+ msgid ""
2243
+ "If this option is enabled, all Social Login buttons become not-clickable "
2244
+ "until user accept automatic account creation process based on his/her Social "
2245
+ "Network Account shared information (email, name). This checkbox and "
2246
+ "appropriate information will be displayed when user click on a social login "
2247
+ "button, prior to the login process. This extra step is added to comply with "
2248
+ "the GDPR"
2249
+ msgstr ""
2250
+
2251
+ #: options/options-layouts/settings-social.php:13
2252
+ msgid ""
2253
+ "The note text and the label of this checkbox can be managed in Comments > "
2254
+ "Phrases > Social Login tab."
2255
+ msgstr ""
2256
+
2257
+ #: options/options-layouts/settings-social.php:23
2258
+ msgid "Display social login buttons on reply forms"
2259
+ msgstr ""
2260
+
2261
+ #: options/options-layouts/settings-social.php:37
2262
+ msgid "Facebook"
2263
+ msgstr ""
2264
+
2265
+ #: options/options-layouts/settings-social.php:43
2266
+ msgid ""
2267
+ "To start using Facebook Login and Share Buttons you should get Facebook "
2268
+ "Application Key and Secret for your website. Please follow to this"
2269
+ msgstr ""
2270
+
2271
+ #: options/options-layouts/settings-social.php:43
2272
+ #: options/options-layouts/settings-social.php:102
2273
+ #: options/options-layouts/settings-social.php:150
2274
+ #: options/options-layouts/settings-social.php:190
2275
+ #: options/options-layouts/settings-social.php:237
2276
+ msgid "instruction &raquo;"
2277
+ msgstr ""
2278
+
2279
+ #: options/options-layouts/settings-social.php:44
2280
+ msgid "Valid OAuth Redirect URI"
2281
+ msgstr ""
2282
+
2283
+ #: options/options-layouts/settings-social.php:50
2284
+ #: options/options-layouts/settings-social.php:109
2285
+ #: options/options-layouts/settings-social.php:157
2286
+ #: options/options-layouts/settings-social.php:197
2287
+ #: options/options-layouts/settings-social.php:244
2288
+ msgid "Enable Login Button"
2289
+ msgstr ""
2290
+
2291
+ #: options/options-layouts/settings-social.php:60
2292
+ msgid "Use Facebook OAuth2"
2293
+ msgstr ""
2294
+
2295
+ #: options/options-layouts/settings-social.php:71
2296
+ #: options/options-layouts/settings-social.php:118
2297
+ #: options/options-layouts/settings-social.php:166
2298
+ #: options/options-layouts/settings-social.php:169
2299
+ #: options/options-layouts/settings-social.php:206
2300
+ #: options/options-layouts/settings-social.php:253
2301
+ msgid "Enable Share Button"
2302
+ msgstr ""
2303
+
2304
+ #: options/options-layouts/settings-social.php:80
2305
+ #: options/options-layouts/settings-social.php:83
2306
+ #: options/options-layouts/settings-social.php:262
2307
+ #: options/options-layouts/settings-social.php:264
2308
+ msgid "Aplication ID"
2309
+ msgstr ""
2310
+
2311
+ #: options/options-layouts/settings-social.php:87
2312
+ #: options/options-layouts/settings-social.php:90
2313
+ #: options/options-layouts/settings-social.php:274
2314
+ #: options/options-layouts/settings-social.php:276
2315
+ msgid "Aplication Secret"
2316
+ msgstr ""
2317
+
2318
+ #: options/options-layouts/settings-social.php:96
2319
+ msgid "Twitter"
2320
+ msgstr ""
2321
+
2322
+ #: options/options-layouts/settings-social.php:102
2323
+ msgid ""
2324
+ "To start using Twitter Login Button you should get Consumer Key and Secret "
2325
+ "for your website. Please follow to this"
2326
+ msgstr ""
2327
+
2328
+ #: options/options-layouts/settings-social.php:103
2329
+ msgid "Callback URL"
2330
+ msgstr ""
2331
+
2332
+ #: options/options-layouts/settings-social.php:127
2333
+ #: options/options-layouts/settings-social.php:129
2334
+ msgid "Consumer Key (API Key)"
2335
+ msgstr ""
2336
+
2337
+ #: options/options-layouts/settings-social.php:133
2338
+ #: options/options-layouts/settings-social.php:136
2339
+ msgid "Consumer Secret (API Secret)"
2340
+ msgstr ""
2341
+
2342
+ #: options/options-layouts/settings-social.php:144
2343
+ msgid "Google +"
2344
+ msgstr ""
2345
+
2346
+ #: options/options-layouts/settings-social.php:150
2347
+ msgid ""
2348
+ "To start using Google+ Login Button you should get Client ID for your "
2349
+ "website. Please follow to this"
2350
+ msgstr ""
2351
+
2352
+ #: options/options-layouts/settings-social.php:151
2353
+ msgid "Authorized JavaScript Sources / Permitted URI redirects"
2354
+ msgstr ""
2355
+
2356
+ #: options/options-layouts/settings-social.php:175
2357
+ #: options/options-layouts/settings-social.php:177
2358
+ msgid "Client ID"
2359
+ msgstr ""
2360
+
2361
+ #: options/options-layouts/settings-social.php:184
2362
+ msgid "VK"
2363
+ msgstr ""
2364
+
2365
+ #: options/options-layouts/settings-social.php:190
2366
+ msgid ""
2367
+ "To start using VK Login Button you should get Application ID and Secure Key. "
2368
+ "Please follow to this "
2369
+ msgstr ""
2370
+
2371
+ #: options/options-layouts/settings-social.php:191
2372
+ #: options/options-layouts/settings-social.php:238
2373
+ msgid "Redirect URI"
2374
+ msgstr ""
2375
+
2376
+ #: options/options-layouts/settings-social.php:215
2377
+ #: options/options-layouts/settings-social.php:217
2378
+ msgid "Application ID"
2379
+ msgstr ""
2380
+
2381
+ #: options/options-layouts/settings-social.php:221
2382
+ #: options/options-layouts/settings-social.php:223
2383
+ msgid "Secure Key"
2384
+ msgstr ""
2385
+
2386
+ #: options/options-layouts/settings-social.php:230
2387
+ msgid "OK"
2388
+ msgstr ""
2389
+
2390
+ #: options/options-layouts/settings-social.php:236
2391
+ msgid "Getting started with"
2392
+ msgstr ""
2393
+
2394
+ #: options/options-layouts/settings-social.php:237
2395
+ msgid ""
2396
+ "To get the Aplication ID, Key and Secret, you should create an app using one "
2397
+ "of the supported types (external, Android, iOS), use this"
2398
+ msgstr ""
2399
+
2400
+ #: options/options-layouts/settings-social.php:268
2401
+ #: options/options-layouts/settings-social.php:270
2402
+ msgid "Aplication Key"
2403
+ msgstr ""
2404
+
2405
+ #: options/options-layouts/settings-style.php:7
2406
+ msgid "Background and Colors"
2407
+ msgstr ""
2408
+
2409
+ #: options/options-layouts/settings-style.php:12
2410
+ msgid "Comment Form and Comment List Style"
2411
+ msgstr ""
2412
+
2413
+ #: options/options-layouts/settings-style.php:16
2414
+ msgid "Default"
2415
+ msgstr ""
2416
+
2417
+ #: options/options-layouts/settings-style.php:17
2418
+ msgid "Dark"
2419
+ msgstr ""
2420
+
2421
+ #: options/options-layouts/settings-style.php:24
2422
+ msgid "Colors"
2423
+ msgstr ""
2424
+
2425
+ #: options/options-layouts/settings-style.php:28
2426
+ #: options/options-layouts/settings-style.php:33
2427
+ #: options/options-layouts/settings-style.php:38
2428
+ #: options/options-layouts/settings-style.php:45
2429
+ #: options/options-layouts/settings-style.php:50
2430
+ #: options/options-layouts/settings-style.php:55
2431
+ #: options/options-layouts/settings-style.php:106
2432
+ #: options/options-layouts/settings-style.php:111
2433
+ #: options/options-layouts/settings-style.php:116
2434
+ #: options/options-layouts/settings-style.php:131
2435
+ msgid "Example: #00FF00"
2436
+ msgstr ""
2437
+
2438
+ #: options/options-layouts/settings-style.php:29
2439
+ msgid "Primary Color"
2440
+ msgstr ""
2441
+
2442
+ #: options/options-layouts/settings-style.php:34
2443
+ msgid "Subscription Bar Background"
2444
+ msgstr ""
2445
+
2446
+ #: options/options-layouts/settings-style.php:39
2447
+ msgid "Comment form fields border"
2448
+ msgstr ""
2449
+
2450
+ #: options/options-layouts/settings-style.php:46
2451
+ msgid "Comment Background"
2452
+ msgstr ""
2453
+
2454
+ #: options/options-layouts/settings-style.php:51
2455
+ msgid "Reply Background"
2456
+ msgstr ""
2457
+
2458
+ #: options/options-layouts/settings-style.php:56
2459
+ msgid "Unread comments background"
2460
+ msgstr ""
2461
+
2462
+ #: options/options-layouts/settings-style.php:64
2463
+ msgid "Button Colors"
2464
+ msgstr ""
2465
+
2466
+ #: options/options-layouts/settings-style.php:68
2467
+ #: options/options-layouts/settings-style.php:78
2468
+ msgid "Text Color"
2469
+ msgstr ""
2470
+
2471
+ #: options/options-layouts/settings-style.php:69
2472
+ msgid "Primary buttons text"
2473
+ msgstr ""
2474
+
2475
+ #: options/options-layouts/settings-style.php:72
2476
+ msgid "Background Color"
2477
+ msgstr ""
2478
+
2479
+ #: options/options-layouts/settings-style.php:73
2480
+ msgid "Primary buttons background"
2481
+ msgstr ""
2482
+
2483
+ #: options/options-layouts/settings-style.php:79
2484
+ msgid "Secondary buttons text"
2485
+ msgstr ""
2486
+
2487
+ #: options/options-layouts/settings-style.php:82
2488
+ msgid "Border Color"
2489
+ msgstr ""
2490
+
2491
+ #: options/options-layouts/settings-style.php:83
2492
+ msgid "Secondary buttons border"
2493
+ msgstr ""
2494
+
2495
+ #: options/options-layouts/settings-style.php:89
2496
+ msgid "Up Vote Color"
2497
+ msgstr ""
2498
+
2499
+ #: options/options-layouts/settings-style.php:90
2500
+ msgid "Up vote button"
2501
+ msgstr ""
2502
+
2503
+ #: options/options-layouts/settings-style.php:93
2504
+ msgid "Down Vote Color"
2505
+ msgstr ""
2506
+
2507
+ #: options/options-layouts/settings-style.php:94
2508
+ msgid "Down vote button"
2509
+ msgstr ""
2510
+
2511
+ #: options/options-layouts/settings-style.php:102
2512
+ msgid "Rating Star Colors"
2513
+ msgstr ""
2514
+
2515
+ #: options/options-layouts/settings-style.php:107
2516
+ msgid "Rating Stars Hover Color"
2517
+ msgstr ""
2518
+
2519
+ #: options/options-layouts/settings-style.php:112
2520
+ msgid "Rating Stars Inactive Color"
2521
+ msgstr ""
2522
+
2523
+ #: options/options-layouts/settings-style.php:117
2524
+ msgid "Rating Stars Active Color"
2525
+ msgstr ""
2526
+
2527
+ #: options/options-layouts/settings-style.php:124
2528
+ msgid "Commenter Label Colors by User Role"
2529
+ msgstr ""
2530
+
2531
+ #: options/options-layouts/settings-style.php:131
2532
+ msgid "label color"
2533
+ msgstr ""
2534
+
2535
+ #: options/options-layouts/settings-style.php:143
2536
+ msgid "Comment text size in pixels"
2537
+ msgstr ""
2538
+
2539
+ #: options/options-layouts/settings-style.php:158
2540
+ msgid "Do not load Font Awesome css lib"
2541
+ msgstr ""
2542
+
2543
+ #: options/options-layouts/settings-style.php:159
2544
+ msgid ""
2545
+ "IMPORTANT: wpDiscuz uses FontAwesome version 5. in case your theme still "
2546
+ "uses the old 4.x versions you should not disable this lib. The theme 4.x "
2547
+ "version doesn't support FontAwesome 5 icons, thus all wpDiscuz icons will be "
2548
+ "lost."
2549
+ msgstr ""
2550
+
2551
+ #: options/options-layouts/settings-style.php:169
2552
+ msgid "Custom CSS Code"
2553
+ msgstr ""
2554
+
2555
+ #: options/options-layouts/settings-subscription.php:11
2556
+ msgid "Comment Subscription"
2557
+ msgstr ""
2558
+
2559
+ #: options/options-layouts/settings-subscription.php:15
2560
+ msgid "Notify comment author once comment is approved"
2561
+ msgstr ""
2562
+
2563
+ #: options/options-layouts/settings-subscription.php:23
2564
+ msgid "Disable subscription confirmation for registered users"
2565
+ msgstr ""
2566
+
2567
+ #: options/options-layouts/settings-subscription.php:33
2568
+ msgid "Disable subscription confirmation for guests"
2569
+ msgstr ""
2570
+
2571
+ #: options/options-layouts/settings-subscription.php:43
2572
+ msgid "Show subscription types in dropdown"
2573
+ msgstr ""
2574
+
2575
+ #: options/options-layouts/settings-subscription.php:50
2576
+ msgid "Subscribe to all comments of this post"
2577
+ msgstr ""
2578
+
2579
+ #: options/options-layouts/settings-subscription.php:54
2580
+ msgid "Subscribe to all replies to my comments "
2581
+ msgstr ""
2582
+
2583
+ #: options/options-layouts/settings-subscription.php:56
2584
+ #: options/options-layouts/settings-subscription.php:58
2585
+ msgid "Both"
2586
+ msgstr ""
2587
+
2588
+ #: options/options-layouts/settings-subscription.php:67
2589
+ msgid "Show \"Notify of new replies to this comment\""
2590
+ msgstr ""
2591
+
2592
+ #: options/options-layouts/settings-subscription.php:69
2593
+ msgid ""
2594
+ "wpDiscuz is the only comment plugin which allows you to subscribe to certain "
2595
+ "comment replies. This option is located above [Post Comment] button in "
2596
+ "comment form. You can disable this subscription way by unchecking this "
2597
+ "option."
2598
+ msgstr ""
2599
+
2600
+ #: options/options-layouts/settings-subscription.php:80
2601
+ msgid "\"Notify of new replies to this comment\" checked by default"
2602
+ msgstr ""
2603
+
2604
+ #: options/options-layouts/settings-subscription.php:91
2605
+ msgid "Use Postmatic for subscriptions and commenting by email"
2606
+ msgstr ""
2607
+
2608
+ #: options/options-layouts/settings-subscription.php:92
2609
+ msgid ""
2610
+ "Postmatic allows your users subscribe to comments. Instead of just being "
2611
+ "notified, they add a reply right from their inbox."
2612
+ msgstr ""
2613
+
2614
+ #: options/options-layouts/settings-subscription.php:101
2615
+ msgid "User Subscription / Following"
2616
+ msgstr ""
2617
+
2618
+ #: options/options-layouts/settings-subscription.php:106
2619
+ msgid "Enable user following feature"
2620
+ msgstr ""
2621
+
2622
+ #: options/options-layouts/settings-subscription.php:116
2623
+ msgid "Follow users without email confirmation"
2624
+ msgstr ""
2625
+
2626
+ #: options/phrases-layouts/phrases-comment.php:7
2627
+ msgid "Comment Template Phrases"
2628
+ msgstr ""
2629
+
2630
+ #: options/phrases-layouts/phrases-comment.php:83
2631
+ msgid "Save edited comment button text"
2632
+ msgstr ""
2633
+
2634
+ #: options/phrases-layouts/phrases-comment.php:87
2635
+ msgid "Cancel comment editing button text"
2636
+ msgstr ""
2637
+
2638
+ #: options/phrases-layouts/phrases-comment.php:91
2639
+ msgid "Comment read more link text"
2640
+ msgstr ""
2641
+
2642
+ #: options/phrases-layouts/phrases-comment.php:95
2643
+ msgid "Anonymous commenter name"
2644
+ msgstr ""
2645
+
2646
+ #: options/phrases-layouts/phrases-comment.php:99
2647
+ msgid "Stick button title"
2648
+ msgstr ""
2649
+
2650
+ #: options/phrases-layouts/phrases-comment.php:111
2651
+ msgid "Sticky comment icon title"
2652
+ msgstr ""
2653
+
2654
+ #: options/phrases-layouts/phrases-comment.php:115
2655
+ msgid "Close button title"
2656
+ msgstr ""
2657
+
2658
+ #: options/phrases-layouts/phrases-comment.php:127
2659
+ msgid "Closed comment icon title"
2660
+ msgstr ""
2661
+
2662
+ #: options/phrases-layouts/phrases-datetime.php:7
2663
+ msgid "Date/Time Phrases"
2664
+ msgstr ""
2665
+
2666
+ #: options/phrases-layouts/phrases-datetime.php:11
2667
+ msgid "Year"
2668
+ msgstr ""
2669
+
2670
+ #: options/phrases-layouts/phrases-datetime.php:15
2671
+ msgid "Years (Plural Form)"
2672
+ msgstr ""
2673
+
2674
+ #: options/phrases-layouts/phrases-datetime.php:19
2675
+ msgid "Month"
2676
+ msgstr ""
2677
+
2678
+ #: options/phrases-layouts/phrases-datetime.php:23
2679
+ msgid "Months (Plural Form)"
2680
+ msgstr ""
2681
+
2682
+ #: options/phrases-layouts/phrases-datetime.php:27
2683
+ msgid "Day"
2684
+ msgstr ""
2685
+
2686
+ #: options/phrases-layouts/phrases-datetime.php:31
2687
+ msgid "Days (Plural Form)"
2688
+ msgstr ""
2689
+
2690
+ #: options/phrases-layouts/phrases-datetime.php:39
2691
+ msgid "Hours (Plural Form)"
2692
+ msgstr ""
2693
+
2694
+ #: options/phrases-layouts/phrases-datetime.php:47
2695
+ msgid "Minutes (Plural Form)"
2696
+ msgstr ""
2697
+
2698
+ #: options/phrases-layouts/phrases-datetime.php:51
2699
+ msgid "Second"
2700
+ msgstr ""
2701
+
2702
+ #: options/phrases-layouts/phrases-datetime.php:55
2703
+ msgid "Seconds (Plural Form)"
2704
+ msgstr ""
2705
+
2706
+ #: options/phrases-layouts/phrases-datetime.php:59
2707
+ msgid "Commented \"right now\" text"
2708
+ msgstr ""
2709
+
2710
+ #: options/phrases-layouts/phrases-datetime.php:63
2711
+ msgid "Ago text"
2712
+ msgstr ""
2713
+
2714
+ #: options/phrases-layouts/phrases-email.php:17
2715
+ msgid "Email Template Phrases"
2716
+ msgstr ""
2717
+
2718
+ #: options/phrases-layouts/phrases-email.php:22
2719
+ msgid "Subscription type: Post comments"
2720
+ msgstr ""
2721
+
2722
+ #: options/phrases-layouts/phrases-email.php:23
2723
+ msgid "Post comment notification subject"
2724
+ msgstr ""
2725
+
2726
+ #: options/phrases-layouts/phrases-email.php:24
2727
+ #: options/phrases-layouts/phrases-email.php:35
2728
+ #: options/phrases-layouts/phrases-email.php:55
2729
+ #: options/phrases-layouts/phrases-email.php:66
2730
+ #: options/phrases-layouts/phrases-email.php:86
2731
+ #: options/phrases-layouts/phrases-email.php:97
2732
+ #: options/phrases-layouts/phrases-email.php:115
2733
+ #: options/phrases-layouts/phrases-email.php:126
2734
+ #: options/phrases-layouts/phrases-email.php:142
2735
+ #: options/phrases-layouts/phrases-email.php:154
2736
+ #: options/phrases-layouts/phrases-follow.php:57
2737
+ #: options/phrases-layouts/phrases-follow.php:68
2738
+ #: options/phrases-layouts/phrases-follow.php:84
2739
+ #: options/phrases-layouts/phrases-follow.php:95
2740
+ #: options/phrases-layouts/phrases-user-settings.php:61
2741
+ #: options/phrases-layouts/phrases-user-settings.php:73
2742
+ #: options/phrases-layouts/phrases-user-settings.php:86
2743
+ #: options/phrases-layouts/phrases-user-settings.php:98
2744
+ #: options/phrases-layouts/phrases-user-settings.php:111
2745
+ #: options/phrases-layouts/phrases-user-settings.php:123
2746
+ msgid "Available shortcodes"
2747
+ msgstr ""
2748
+
2749
+ #: options/phrases-layouts/phrases-email.php:34
2750
+ msgid "Post comment notification content"
2751
+ msgstr ""
2752
+
2753
+ #: options/phrases-layouts/phrases-email.php:43
2754
+ #: options/phrases-layouts/phrases-email.php:74
2755
+ msgid "Shortcode above will work for registered users only"
2756
+ msgstr ""
2757
+
2758
+ #: options/phrases-layouts/phrases-email.php:53
2759
+ msgid "Subscription type: All my comments"
2760
+ msgstr ""
2761
+
2762
+ #: options/phrases-layouts/phrases-email.php:54
2763
+ #: options/phrases-layouts/phrases-email.php:85
2764
+ msgid "New reply notification subject"
2765
+ msgstr ""
2766
+
2767
+ #: options/phrases-layouts/phrases-email.php:65
2768
+ #: options/phrases-layouts/phrases-email.php:96
2769
+ msgid "New Reply notification content"
2770
+ msgstr ""
2771
+
2772
+ #: options/phrases-layouts/phrases-email.php:84
2773
+ msgid "Subscription type: Single comment"
2774
+ msgstr ""
2775
+
2776
+ #: options/phrases-layouts/phrases-email.php:114
2777
+ msgid "Subscription confirmation email subject"
2778
+ msgstr ""
2779
+
2780
+ #: options/phrases-layouts/phrases-email.php:125
2781
+ msgid "Subscription confirmation email content"
2782
+ msgstr ""
2783
+
2784
+ #: options/phrases-layouts/phrases-email.php:141
2785
+ msgid "Comment approved subject"
2786
+ msgstr ""
2787
+
2788
+ #: options/phrases-layouts/phrases-email.php:152
2789
+ msgid "Comment approved message"
2790
+ msgstr ""
2791
+
2792
+ #: options/phrases-layouts/phrases-email.php:173
2793
+ msgid "Ignore subscription"
2794
+ msgstr ""
2795
+
2796
+ #: options/phrases-layouts/phrases-error.php:7
2797
+ #: options/phrases-layouts/phrases-notification.php:7
2798
+ msgid "Notification Phrases"
2799
+ msgstr ""
2800
+
2801
+ #: options/phrases-layouts/phrases-error.php:11
2802
+ msgid "Error message for empty field"
2803
+ msgstr ""
2804
+
2805
+ #: options/phrases-layouts/phrases-error.php:15
2806
+ msgid "Error message for invalid email field"
2807
+ msgstr ""
2808
+
2809
+ #: options/phrases-layouts/phrases-error.php:19
2810
+ msgid "Error message for invalid website url field"
2811
+ msgstr ""
2812
+
2813
+ #: options/phrases-layouts/phrases-error.php:23
2814
+ msgid "You can vote only 1 time"
2815
+ msgstr ""
2816
+
2817
+ #: options/phrases-layouts/phrases-error.php:31
2818
+ msgid "You Cannot Vote On Your Comment"
2819
+ msgstr ""
2820
+
2821
+ #: options/phrases-layouts/phrases-error.php:35
2822
+ msgid "You are not allowed to vote for this comment (Voting from same IP)"
2823
+ msgstr ""
2824
+
2825
+ #: options/phrases-layouts/phrases-error.php:47
2826
+ msgid "Message if input text length is too short"
2827
+ msgstr ""
2828
+
2829
+ #: options/phrases-layouts/phrases-error.php:51
2830
+ msgid "Message if input text length is too long"
2831
+ msgstr ""
2832
+
2833
+ #: options/phrases-layouts/phrases-error.php:55
2834
+ msgid "Message if comment was not updated"
2835
+ msgstr ""
2836
+
2837
+ #: options/phrases-layouts/phrases-error.php:59
2838
+ msgid "Message if comment no longer possible to edit"
2839
+ msgstr ""
2840
+
2841
+ #: options/phrases-layouts/phrases-error.php:63
2842
+ msgid "Message if comment text not changed"
2843
+ msgstr ""
2844
+
2845
+ #: options/phrases-layouts/phrases-follow.php:7
2846
+ msgid "Follow Users Phrases"
2847
+ msgstr ""
2848
+
2849
+ #: options/phrases-layouts/phrases-follow.php:23
2850
+ msgid "You stopped following this comment author"
2851
+ msgstr ""
2852
+
2853
+ #: options/phrases-layouts/phrases-follow.php:27
2854
+ msgid "Please check your email and confirm the follow"
2855
+ msgstr ""
2856
+
2857
+ #: options/phrases-layouts/phrases-follow.php:31
2858
+ msgid "Sorry, we couldn't send confirmation email"
2859
+ msgstr ""
2860
+
2861
+ #: options/phrases-layouts/phrases-follow.php:35
2862
+ msgid "Please login to follow users"
2863
+ msgstr ""
2864
+
2865
+ #: options/phrases-layouts/phrases-follow.php:39
2866
+ msgid "We are sorry, following this user is impossible"
2867
+ msgstr ""
2868
+
2869
+ #: options/phrases-layouts/phrases-follow.php:43
2870
+ msgid "We are sorry, following failed. Please try again later."
2871
+ msgstr ""
2872
+
2873
+ #: options/phrases-layouts/phrases-follow.php:47
2874
+ msgid "Confirm following link text"
2875
+ msgstr ""
2876
+
2877
+ #: options/phrases-layouts/phrases-follow.php:51
2878
+ msgid "Cancel following link text"
2879
+ msgstr ""
2880
+
2881
+ #: options/phrases-layouts/phrases-follow.php:56
2882
+ msgid "Follow confirmation email subject"
2883
+ msgstr ""
2884
+
2885
+ #: options/phrases-layouts/phrases-follow.php:67
2886
+ msgid "Follow confirmation email content"
2887
+ msgstr ""
2888
+
2889
+ #: options/phrases-layouts/phrases-follow.php:83
2890
+ msgid "Following email subject"
2891
+ msgstr ""
2892
+
2893
+ #: options/phrases-layouts/phrases-follow.php:94
2894
+ msgid "Follow email content"
2895
+ msgstr ""
2896
+
2897
+ #: options/phrases-layouts/phrases-form.php:7
2898
+ msgid "Form Template Phrases"
2899
+ msgstr ""
2900
+
2901
+ #: options/phrases-layouts/phrases-form.php:11
2902
+ msgid "Comment Field Start"
2903
+ msgstr ""
2904
+
2905
+ #: options/phrases-layouts/phrases-form.php:15
2906
+ msgid "Comment Field Join"
2907
+ msgstr ""
2908
+
2909
+ #: options/phrases-layouts/phrases-form.php:47
2910
+ msgid "Email Field"
2911
+ msgstr ""
2912
+
2913
+ #: options/phrases-layouts/phrases-form.php:59
2914
+ msgid "Notify on new comments"
2915
+ msgstr ""
2916
+
2917
+ #: options/phrases-layouts/phrases-form.php:63
2918
+ msgid "Notify on all new replies"
2919
+ msgstr ""
2920
+
2921
+ #: options/phrases-layouts/phrases-form.php:67
2922
+ msgid "Notify on new replies to this comment"
2923
+ msgstr ""
2924
+
2925
+ #: options/phrases-layouts/phrases-form.php:87
2926
+ msgid "Subscribed on this comment replies"
2927
+ msgstr ""
2928
+
2929
+ #: options/phrases-layouts/phrases-form.php:91
2930
+ msgid "Subscribed on all your comments replies"
2931
+ msgstr ""
2932
+
2933
+ #: options/phrases-layouts/phrases-form.php:95
2934
+ msgid "Subscribed on this post"
2935
+ msgstr ""
2936
+
2937
+ #: options/phrases-layouts/phrases-form.php:99
2938
+ msgid "Form subscription button"
2939
+ msgstr ""
2940
+
2941
+ #: options/phrases-layouts/phrases-form.php:103
2942
+ msgid "Invisible Antispam Protection note"
2943
+ msgstr ""
2944
+
2945
+ #: options/phrases-layouts/phrases-general.php:7
2946
+ msgid "General Phrases"
2947
+ msgstr ""
2948
+
2949
+ #: options/phrases-layouts/phrases-general.php:11
2950
+ msgid "Be the first to comment"
2951
+ msgstr ""
2952
+
2953
+ #: options/phrases-layouts/phrases-general.php:15
2954
+ msgid "Load More Button"
2955
+ msgstr ""
2956
+
2957
+ #: options/phrases-layouts/phrases-general.php:23
2958
+ msgid "Button text if has new comment"
2959
+ msgstr ""
2960
+
2961
+ #: options/phrases-layouts/phrases-general.php:27
2962
+ msgid "Button text if has new comments (Plural Form)"
2963
+ msgstr ""
2964
+
2965
+ #: options/phrases-layouts/phrases-general.php:31
2966
+ msgid "Button text if has new reply"
2967
+ msgstr ""
2968
+
2969
+ #: options/phrases-layouts/phrases-general.php:35
2970
+ msgid "Button text if has new replies (Plural Form)"
2971
+ msgstr ""
2972
+
2973
+ #: options/phrases-layouts/phrases-notification.php:24
2974
+ msgid "Postmatic subscription label"
2975
+ msgstr ""
2976
+
2977
+ #: options/phrases-layouts/phrases-notification.php:42
2978
+ msgid "Logged In"
2979
+ msgstr ""
2980
+
2981
+ #: options/phrases-layouts/phrases-notification.php:46
2982
+ msgid "To post a comment"
2983
+ msgstr ""
2984
+
2985
+ #: options/phrases-layouts/phrases-notification.php:50
2986
+ msgid "Logged in as"
2987
+ msgstr ""
2988
+
2989
+ #: options/phrases-layouts/phrases-notification.php:62
2990
+ msgid "Login To Vote"
2991
+ msgstr ""
2992
+
2993
+ #: options/phrases-layouts/phrases-notification.php:66
2994
+ msgid "Comment waiting moderation"
2995
+ msgstr ""
2996
+
2997
+ #: options/phrases-layouts/phrases-notification.php:70
2998
+ msgid "Message if commenting disabled by user role"
2999
+ msgstr ""
3000
+
3001
+ #: options/phrases-layouts/phrases-social-login.php:15
3002
+ msgid "Social login agreement label"
3003
+ msgstr ""
3004
+
3005
+ #: options/phrases-layouts/phrases-social-login.php:19
3006
+ msgid "Social login agreement description"
3007
+ msgstr ""
3008
+
3009
+ #: options/phrases-layouts/phrases-user-settings.php:7
3010
+ msgid "User Settings Phrases"
3011
+ msgstr ""
3012
+
3013
+ #: options/phrases-layouts/phrases-user-settings.php:35
3014
+ msgid "\"Bulk management via email\" description"
3015
+ msgstr ""
3016
+
3017
+ #: options/phrases-layouts/phrases-user-settings.php:72
3018
+ msgid "Delete all comments email text"
3019
+ msgstr ""
3020
+
3021
+ #: options/phrases-layouts/phrases-user-settings.php:97
3022
+ msgid "Delete all subscriptions email text"
3023
+ msgstr ""
3024
+
3025
+ #: options/phrases-layouts/phrases-user-settings.php:122
3026
+ msgid "Delete all follows email text"
3027
+ msgstr ""
3028
+
3029
+ #: options/phrases-layouts/phrases-user-settings.php:146
3030
+ msgid "Please check your email."
3031
+ msgstr ""
3032
+
3033
+ #: options/tools-layouts/options-export.php:9
3034
+ msgid ""
3035
+ "Using this tool you can migrate or backup/restore wpDiscuz options from one "
3036
+ "WordPress to another."
3037
+ msgstr ""
3038
+
3039
+ #: options/tools-layouts/options-export.php:20
3040
+ msgid "Download Options"
3041
+ msgstr ""
3042
+
3043
+ #: options/tools-layouts/options-export.php:28
3044
+ msgid "Backup Options"
3045
+ msgstr ""
3046
+
3047
+ #: options/tools-layouts/options-import.php:9
3048
+ msgid ""
3049
+ "Here you can import and restore wpDiscuz options. You just need to choose "
3050
+ "backup file and click import options."
3051
+ msgstr ""
3052
+
3053
+ #: options/tools-layouts/options-import.php:22
3054
+ msgid "Import Options"
3055
+ msgstr ""
3056
+
3057
+ #: options/tools-layouts/subscriptions-import.php:11
3058
+ msgid ""
3059
+ "Using this tool you can import subscriptions from other plugins to wpDiscuz."
3060
+ msgstr ""
3061
+
3062
+ #: options/tools-layouts/subscriptions-import.php:19
3063
+ msgid "Import subscriptions from Subscribe To Comments Reloaded"
3064
+ msgstr ""
3065
+
3066
+ #: options/tools-layouts/subscriptions-import.php:20
3067
+ msgid "Import subscriptions from \"Subscribe To Comments Reloaded\" plugin"
3068
+ msgstr ""
3069
+
3070
+ #: options/tools-layouts/tools-other.php:16
3071
+ msgid "Update vote data"
3072
+ msgstr ""
3073
+
3074
+ #: options/tools-layouts/tools-other.php:18
3075
+ msgid ""
3076
+ "We recommend use this tool to do one way hashing of commenter IP addresses "
3077
+ "to 32 bit strings, so you'll keep less personal information of your "
3078
+ "commenters. This tool only hashes voter IP addresses. You also can stop "
3079
+ "saving of commenter IP addresses in comments database table using this "
3080
+ "instruction "
3081
+ msgstr ""
3082
+
3083
+ #: options/tools-layouts/tools-other.php:26
3084
+ msgid "Start Hashing"
3085
+ msgstr ""
3086
+
3087
+ #: options/tools-layouts/tools-other.php:27
3088
+ msgid "Hash users IP addresses"
3089
+ msgstr ""
3090
+
3091
+ #: templates/comment/comment-form.php:61
3092
+ msgid "Your comments have been deleted from database"
3093
+ msgstr ""
3094
+
3095
+ #: templates/comment/comment-form.php:72
3096
+ msgid "You cancel all your subscriptions successfully"
3097
+ msgstr ""
3098
+
3099
+ #: templates/comment/comment-form.php:82
3100
+ msgid "You cancel all your follows successfully"
3101
+ msgstr ""
3102
+
3103
+ #: templates/comment/comment-form.php:91
3104
+ msgid "Follow has been confirmed successfully"
3105
+ msgstr ""
3106
+
3107
+ #: templates/comment/comment-form.php:99
3108
+ msgid "Follow has been canceled successfully"
3109
+ msgstr ""
3110
+
3111
+ #: templates/comment/comment-form.php:127
3112
+ msgid "Unable to send an email"
3113
+ msgstr ""
3114
+
3115
+ #: templates/comment/comment-form.php:129
3116
+ msgid "Subscription Fault"
3117
+ msgstr ""
3118
+
3119
+ #: utils/layouts/pagination.php:22
3120
+ msgid "&laquo;"
3121
+ msgstr ""
3122
+
3123
+ #: utils/layouts/pagination.php:28
3124
+ msgid "&lsaquo;"
3125
+ msgstr ""
3126
+
3127
+ #: utils/layouts/pagination.php:52
3128
+ msgid "&raquo;"
3129
+ msgstr ""
3130
+
3131
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:16
3132
+ #: forms/wpdFormAttr/Field/CheckboxField.php:17
3133
+ #: forms/wpdFormAttr/Field/ColorField.php:17
3134
+ #: forms/wpdFormAttr/Field/CookiesConsent.php:18
3135
+ #: forms/wpdFormAttr/Field/DateField.php:17
3136
+ #: forms/wpdFormAttr/Field/NumberField.php:17
3137
+ #: forms/wpdFormAttr/Field/RadioField.php:17
3138
+ #: forms/wpdFormAttr/Field/RatingField.php:16
3139
+ #: forms/wpdFormAttr/Field/SelectField.php:17
3140
+ #: forms/wpdFormAttr/Field/TextAreaField.php:18
3141
+ #: forms/wpdFormAttr/Field/TextField.php:17
3142
+ #: forms/wpdFormAttr/Field/UrlField.php:17
3143
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:32
3144
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:24
3145
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:23
3146
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:23
3147
+ msgid "Description"
3148
+ msgstr ""
3149
+
3150
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:18
3151
+ #: forms/wpdFormAttr/Field/CheckboxField.php:19
3152
+ #: forms/wpdFormAttr/Field/ColorField.php:19
3153
+ #: forms/wpdFormAttr/Field/CookiesConsent.php:20
3154
+ #: forms/wpdFormAttr/Field/DateField.php:19
3155
+ #: forms/wpdFormAttr/Field/NumberField.php:19
3156
+ #: forms/wpdFormAttr/Field/NumberField.php:24
3157
+ #: forms/wpdFormAttr/Field/NumberField.php:29
3158
+ #: forms/wpdFormAttr/Field/RadioField.php:19
3159
+ #: forms/wpdFormAttr/Field/RatingField.php:18
3160
+ #: forms/wpdFormAttr/Field/SelectField.php:19
3161
+ #: forms/wpdFormAttr/Field/TextAreaField.php:20
3162
+ #: forms/wpdFormAttr/Field/TextField.php:19
3163
+ #: forms/wpdFormAttr/Field/UrlField.php:19
3164
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:34
3165
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:26
3166
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:25
3167
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:25
3168
+ msgid ""
3169
+ "Field specific short description or some rule related to inserted "
3170
+ "information."
3171
+ msgstr ""
3172
+
3173
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:21
3174
+ #: forms/wpdFormAttr/Field/CookiesConsent.php:23
3175
+ msgid "Checkbox Label"
3176
+ msgstr ""
3177
+
3178
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:22
3179
+ msgid ""
3180
+ "You can use HTML tags to add links to website Terms and Privacy Policy pages."
3181
+ " For example: "
3182
+ msgstr ""
3183
+
3184
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:28
3185
+ #: forms/wpdFormAttr/Field/CheckboxField.php:33
3186
+ #: forms/wpdFormAttr/Field/ColorField.php:29
3187
+ #: forms/wpdFormAttr/Field/DateField.php:29
3188
+ #: forms/wpdFormAttr/Field/NumberField.php:39
3189
+ #: forms/wpdFormAttr/Field/RadioField.php:33
3190
+ #: forms/wpdFormAttr/Field/RatingField.php:28
3191
+ #: forms/wpdFormAttr/Field/SelectField.php:33
3192
+ #: forms/wpdFormAttr/Field/TextAreaField.php:23
3193
+ #: forms/wpdFormAttr/Field/TextField.php:29
3194
+ #: forms/wpdFormAttr/Field/UrlField.php:29
3195
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:36
3196
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:35
3197
+ msgid "Field is required"
3198
+ msgstr ""
3199
+
3200
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:32
3201
+ #: forms/wpdFormAttr/Field/CheckboxField.php:37
3202
+ #: forms/wpdFormAttr/Field/ColorField.php:33
3203
+ #: forms/wpdFormAttr/Field/DateField.php:33
3204
+ #: forms/wpdFormAttr/Field/HTMLField.php:21
3205
+ #: forms/wpdFormAttr/Field/NumberField.php:43
3206
+ #: forms/wpdFormAttr/Field/RadioField.php:37
3207
+ #: forms/wpdFormAttr/Field/SelectField.php:37
3208
+ #: forms/wpdFormAttr/Field/TextAreaField.php:27
3209
+ #: forms/wpdFormAttr/Field/TextField.php:33
3210
+ #: forms/wpdFormAttr/Field/UrlField.php:33
3211
+ msgid "Display on reply form"
3212
+ msgstr ""
3213
+
3214
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:36
3215
+ msgid "Display for Guests"
3216
+ msgstr ""
3217
+
3218
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:40
3219
+ msgid "Display for Registered Users"
3220
+ msgstr ""
3221
+
3222
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:44
3223
+ msgid "Don't show again if the agreement is accepted once"
3224
+ msgstr ""
3225
+
3226
+ #: forms/wpdFormAttr/Field/AgreementCheckbox.php:101
3227
+ #: forms/wpdFormAttr/Field/CheckboxField.php:153
3228
+ #: forms/wpdFormAttr/Field/ColorField.php:115
3229
+ #: forms/wpdFormAttr/Field/DateField.php:115
3230
+ #: forms/wpdFormAttr/Field/NumberField.php:125
3231
+ #: forms/wpdFormAttr/Field/RadioField.php:130
3232
+ #: forms/wpdFormAttr/Field/RatingField.php:126
3233
+ #: forms/wpdFormAttr/Field/SelectField.php:125
3234
+ #: forms/wpdFormAttr/Field/TextAreaField.php:98
3235
+ #: forms/wpdFormAttr/Field/TextField.php:109
3236
+ #: forms/wpdFormAttr/Field/UrlField.php:110
3237
+ msgid "field is required!"
3238
+ msgstr ""
3239
+
3240
+ #: forms/wpdFormAttr/Field/CheckboxField.php:14
3241
+ #: forms/wpdFormAttr/Field/ColorField.php:14
3242
+ #: forms/wpdFormAttr/Field/DateField.php:14
3243
+ #: forms/wpdFormAttr/Field/NumberField.php:14
3244
+ #: forms/wpdFormAttr/Field/RadioField.php:14
3245
+ #: forms/wpdFormAttr/Field/SelectField.php:14
3246
+ #: forms/wpdFormAttr/Field/TextAreaField.php:15
3247
+ #: forms/wpdFormAttr/Field/TextField.php:14
3248
+ #: forms/wpdFormAttr/Field/UrlField.php:14
3249
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:29
3250
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:21
3251
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:20
3252
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:20
3253
+ msgid "Also used for field placeholder"
3254
+ msgstr ""
3255
+
3256
+ #: forms/wpdFormAttr/Field/CheckboxField.php:28
3257
+ #: forms/wpdFormAttr/Field/RadioField.php:28
3258
+ #: forms/wpdFormAttr/Field/SelectField.php:28
3259
+ msgid "Values"
3260
+ msgstr ""
3261
+
3262
+ #: forms/wpdFormAttr/Field/CheckboxField.php:30
3263
+ msgid "Please insert one value per line"
3264
+ msgstr ""
3265
+
3266
+ #: forms/wpdFormAttr/Field/CheckboxField.php:41
3267
+ #: forms/wpdFormAttr/Field/ColorField.php:37
3268
+ #: forms/wpdFormAttr/Field/DateField.php:37
3269
+ #: forms/wpdFormAttr/Field/NumberField.php:47
3270
+ #: forms/wpdFormAttr/Field/RadioField.php:41
3271
+ #: forms/wpdFormAttr/Field/RatingField.php:32
3272
+ #: forms/wpdFormAttr/Field/SelectField.php:41
3273
+ #: forms/wpdFormAttr/Field/TextAreaField.php:31
3274
+ #: forms/wpdFormAttr/Field/TextField.php:37
3275
+ #: forms/wpdFormAttr/Field/UrlField.php:37
3276
+ msgid "Display on comment"
3277
+ msgstr ""
3278
+
3279
+ #: forms/wpdFormAttr/Field/CheckboxField.php:45
3280
+ #: forms/wpdFormAttr/Field/ColorField.php:41
3281
+ #: forms/wpdFormAttr/Field/DateField.php:41
3282
+ #: forms/wpdFormAttr/Field/NumberField.php:51
3283
+ #: forms/wpdFormAttr/Field/RadioField.php:45
3284
+ #: forms/wpdFormAttr/Field/RatingField.php:36
3285
+ #: forms/wpdFormAttr/Field/SelectField.php:45
3286
+ #: forms/wpdFormAttr/Field/TextAreaField.php:35
3287
+ #: forms/wpdFormAttr/Field/TextField.php:41
3288
+ #: forms/wpdFormAttr/Field/UrlField.php:41
3289
+ msgid "Advanced Options"
3290
+ msgstr ""
3291
+
3292
+ #: forms/wpdFormAttr/Field/CheckboxField.php:48
3293
+ #: forms/wpdFormAttr/Field/ColorField.php:44
3294
+ #: forms/wpdFormAttr/Field/DateField.php:44
3295
+ #: forms/wpdFormAttr/Field/NumberField.php:54
3296
+ #: forms/wpdFormAttr/Field/RadioField.php:48
3297
+ #: forms/wpdFormAttr/Field/RatingField.php:39
3298
+ #: forms/wpdFormAttr/Field/SelectField.php:48
3299
+ #: forms/wpdFormAttr/Field/TextAreaField.php:38
3300
+ #: forms/wpdFormAttr/Field/TextField.php:44
3301
+ #: forms/wpdFormAttr/Field/UrlField.php:44
3302
+ msgid "Meta Key"
3303
+ msgstr ""
3304
+
3305
+ #: forms/wpdFormAttr/Field/CheckboxField.php:52
3306
+ #: forms/wpdFormAttr/Field/ColorField.php:48
3307
+ #: forms/wpdFormAttr/Field/DateField.php:48
3308
+ #: forms/wpdFormAttr/Field/NumberField.php:58
3309
+ #: forms/wpdFormAttr/Field/RadioField.php:52
3310
+ #: forms/wpdFormAttr/Field/RatingField.php:43
3311
+ #: forms/wpdFormAttr/Field/SelectField.php:52
3312
+ #: forms/wpdFormAttr/Field/TextAreaField.php:42
3313
+ #: forms/wpdFormAttr/Field/TextField.php:48
3314
+ #: forms/wpdFormAttr/Field/UrlField.php:48
3315
+ msgid "Replace old meta key"
3316
+ msgstr ""
3317
+
3318
+ #: forms/wpdFormAttr/Field/ColorField.php:23
3319
+ #: forms/wpdFormAttr/Field/DateField.php:23
3320
+ #: forms/wpdFormAttr/Field/NumberField.php:33
3321
+ #: forms/wpdFormAttr/Field/RatingField.php:22
3322
+ #: forms/wpdFormAttr/Field/TextField.php:23
3323
+ #: forms/wpdFormAttr/Field/UrlField.php:23
3324
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:30
3325
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:29
3326
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:29
3327
+ msgid "Field icon"
3328
+ msgstr ""
3329
+
3330
+ #: forms/wpdFormAttr/Field/ColorField.php:26
3331
+ #: forms/wpdFormAttr/Field/DateField.php:26
3332
+ #: forms/wpdFormAttr/Field/NumberField.php:36
3333
+ #: forms/wpdFormAttr/Field/RatingField.php:25
3334
+ #: forms/wpdFormAttr/Field/TextField.php:26
3335
+ #: forms/wpdFormAttr/Field/UrlField.php:26
3336
+ #: forms/wpdFormAttr/Field/DefaultField/Email.php:33
3337
+ #: forms/wpdFormAttr/Field/DefaultField/Name.php:32
3338
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:32
3339
+ msgid "Font-awesome icon library."
3340
+ msgstr ""
3341
+
3342
+ #: forms/wpdFormAttr/Field/Field.php:54
3343
+ msgid " (Submit Button)"
3344
+ msgstr ""
3345
+
3346
+ #: forms/wpdFormAttr/Field/Field.php:56
3347
+ msgid " (CAPTCHA)"
3348
+ msgstr ""
3349
+
3350
+ #: forms/wpdFormAttr/Field/Field.php:89
3351
+ msgid "Add To Form"
3352
+ msgstr ""
3353
+
3354
+ #: forms/wpdFormAttr/Field/HTMLField.php:17
3355
+ msgid "HTML Code"
3356
+ msgstr ""
3357
+
3358
+ #: forms/wpdFormAttr/Field/NumberField.php:22
3359
+ msgid "Min Value"
3360
+ msgstr ""
3361
+
3362
+ #: forms/wpdFormAttr/Field/NumberField.php:27
3363
+ msgid "Max Value"
3364
+ msgstr ""
3365
+
3366
+ #: forms/wpdFormAttr/Field/NumberField.php:129
3367
+ msgid "value can not be less than"
3368
+ msgstr ""
3369
+
3370
+ #: forms/wpdFormAttr/Field/NumberField.php:132
3371
+ msgid "value can not be more than"
3372
+ msgstr ""
3373
+
3374
+ #: forms/wpdFormAttr/Field/RadioField.php:30
3375
+ #: forms/wpdFormAttr/Field/SelectField.php:30
3376
+ msgid "New value new line"
3377
+ msgstr ""
3378
+
3379
+ #: forms/wpdFormAttr/html/admin-form-fields-list.php:7
3380
+ msgid "Comment Form Fields"
3381
+ msgstr ""
3382
+
3383
+ #: forms/wpdFormAttr/Login/SocialLogin.php:32
3384
+ msgid "Authentication failed."
3385
+ msgstr ""
3386
+
3387
+ #: forms/wpdFormAttr/Login/SocialLogin.php:90
3388
+ msgid "Facebook access token or user ID invalid."
3389
+ msgstr ""
3390
+
3391
+ #: forms/wpdFormAttr/Login/SocialLogin.php:94
3392
+ msgid "Facebook App Secret is required."
3393
+ msgstr ""
3394
+
3395
+ #: forms/wpdFormAttr/Login/SocialLogin.php:123
3396
+ msgid "Facebook Application ID and Application Secret required."
3397
+ msgstr ""
3398
+
3399
+ #: forms/wpdFormAttr/Login/SocialLogin.php:151
3400
+ msgid ""
3401
+ "Facebook authentication failed (OAuth <code>state</code> does not exist)."
3402
+ msgstr ""
3403
+
3404
+ #: forms/wpdFormAttr/Login/SocialLogin.php:154
3405
+ msgid ""
3406
+ "Facebook authentication failed (OAuth <code>code</code> does not exist)."
3407
+ msgstr ""
3408
+
3409
+ #: forms/wpdFormAttr/Login/SocialLogin.php:193
3410
+ msgid "Google access token invalid."
3411
+ msgstr ""
3412
+
3413
+ #: forms/wpdFormAttr/Login/SocialLogin.php:204
3414
+ msgid "Google authentication failed."
3415
+ msgstr ""
3416
+
3417
+ #: forms/wpdFormAttr/Login/SocialLogin.php:232
3418
+ msgid "Twitter Consumer Key and Consumer Secret required."
3419
+ msgstr ""
3420
+
3421
+ #: forms/wpdFormAttr/Login/SocialLogin.php:245
3422
+ msgid "Twitter authentication failed (OAuth secret does not exist)."
3423
+ msgstr ""
3424
+
3425
+ #: forms/wpdFormAttr/Login/SocialLogin.php:256
3426
+ msgid "Twitter connection failed."
3427
+ msgstr ""
3428
+
3429
+ #: forms/wpdFormAttr/Login/SocialLogin.php:266
3430
+ msgid "VK Client ID and Client Secret required."
3431
+ msgstr ""
3432
+
3433
+ #: forms/wpdFormAttr/Login/SocialLogin.php:295
3434
+ msgid "VK authentication failed (OAuth <code>state</code> does not exist)."
3435
+ msgstr ""
3436
+
3437
+ #: forms/wpdFormAttr/Login/SocialLogin.php:298
3438
+ msgid "VK authentication failed (OAuth <code>code</code> does not exist)."
3439
+ msgstr ""
3440
+
3441
+ #: forms/wpdFormAttr/Login/SocialLogin.php:316
3442
+ msgid "VK authentication failed (<code>user_id</code> does not exist)."
3443
+ msgstr ""
3444
+
3445
+ #: forms/wpdFormAttr/Login/SocialLogin.php:342
3446
+ msgid "OK Application ID, Application Key and Application Secret required."
3447
+ msgstr ""
3448
+
3449
+ #: forms/wpdFormAttr/Login/SocialLogin.php:369
3450
+ msgid "OK authentication failed (OAuth <code>state</code> does not exist)."
3451
+ msgstr ""
3452
+
3453
+ #: forms/wpdFormAttr/Login/SocialLogin.php:372
3454
+ msgid "OK authentication failed (<code>code</code> does not exist)."
3455
+ msgstr ""
3456
+
3457
+ #: forms/wpdFormAttr/Login/SocialLogin.php:391
3458
+ msgid "OK authentication failed (<code>access_token</code> does not exist)."
3459
+ msgstr ""
3460
+
3461
+ #: forms/wpdFormAttr/Tools/PersonalDataExporter.php:36
3462
+ msgid "wpDiscuz Fields Data"
3463
+ msgstr ""
3464
+
3465
+ #: options/addons/cai/title.php:7
3466
+ msgid "Comment Author"
3467
+ msgstr ""
3468
+
3469
+ #: options/addons/fem/title.php:7
3470
+ msgid "Frontend Moderation"
3471
+ msgstr ""
3472
+
3473
+ #: options/addons/more/title.php:6
3474
+ msgid "More Addons..."
3475
+ msgstr ""
3476
+
3477
+ #: options/addons/ucm/title.php:7
3478
+ msgid "Mentioning"
3479
+ msgstr ""
3480
+
3481
+ #: utils/layouts/activity/item.php:28
3482
+ msgid "Delete this comment"
3483
+ msgstr ""
3484
+
3485
+ #: utils/layouts/follows/item.php:14
3486
+ msgid "Cancel this follow"
3487
+ msgstr ""
3488
+
3489
+ #: utils/layouts/subscriptions/item.php:23
3490
+ msgid "Cancel this subscription"
3491
+ msgstr ""
3492
+
3493
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:37
3494
+ msgid ""
3495
+ "For an advanced antispam protection please check <a target=\"blank\" "
3496
+ "href=\"https://gvectors.com/product/wpdiscuz-recaptcha/\">wpDiscuz - Google "
3497
+ "reCAPTCHA</a> addon."
3498
+ msgstr ""
3499
+
3500
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:40
3501
+ msgid "Show for guests"
3502
+ msgstr ""
3503
+
3504
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:44
3505
+ msgid "Show for logged in users"
3506
+ msgstr ""
3507
+
3508
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:135
3509
+ msgid "Cannot create image file"
3510
+ msgstr ""
3511
+
3512
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:136
3513
+ msgid "Permission denied for file creation"
3514
+ msgstr ""
3515
+
3516
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:137
3517
+ msgid "PHP GD2 library is disabled"
3518
+ msgstr ""
3519
+
3520
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:138
3521
+ msgid "PNG image creation disabled"
3522
+ msgstr ""
3523
+
3524
+ #: forms/wpdFormAttr/Field/DefaultField/Captcha.php:145
3525
+ msgid "Insert the CAPTCHA code"
3526
+ msgstr ""
3527
+
3528
+ #: forms/wpdFormAttr/Field/DefaultField/Submit.php:20
3529
+ msgid "Button Text"
3530
+ msgstr ""
3531
+
3532
+ #: forms/wpdFormAttr/Field/DefaultField/Website.php:35
3533
+ msgid "Enable"
3534
+ msgstr ""
3535
+
3536
+ #. Plugin Name of the plugin/theme
3537
+ msgid "wpDiscuz"
3538
+ msgstr ""
3539
+
3540
+ #. Description of the plugin/theme
3541
+ msgid ""
3542
+ "Better comment system. Wordpress post comments and discussion plugin. Allows "
3543
+ "your visitors discuss, vote for comments and share."
3544
+ msgstr ""
3545
+
3546
+ #. Plugin URI of the plugin/theme
3547
+ msgid "http://wpdiscuz.com/"
3548
+ msgstr ""
3549
+
3550
+ #. Author of the plugin/theme
3551
+ msgid "gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
3552
+ msgstr ""
3553
+
3554
+ #. Author URI of the plugin/theme
3555
+ msgid "https://gvectors.com/"
3556
+ msgstr ""
options/class.WpdiscuzOptions.php CHANGED
@@ -125,6 +125,9 @@ class WpdiscuzOptions implements WpDiscuzConstants {
125
 
126
  $this->optionsSerialized->isFollowActive = isset($_POST['isFollowActive']) ? intval($_POST['isFollowActive']) : 0;
127
  $this->optionsSerialized->disableFollowConfirmForUsers = isset($_POST['disableFollowConfirmForUsers']) ? intval($_POST['disableFollowConfirmForUsers']) : 0;
 
 
 
128
  do_action('wpdiscuz_save_options', $_POST);
129
  $this->optionsSerialized->updateOptions();
130
  add_settings_error('wpdiscuz', 'settings_updated', __('Settings updated', 'wpdiscuz'), 'updated');
125
 
126
  $this->optionsSerialized->isFollowActive = isset($_POST['isFollowActive']) ? intval($_POST['isFollowActive']) : 0;
127
  $this->optionsSerialized->disableFollowConfirmForUsers = isset($_POST['disableFollowConfirmForUsers']) ? intval($_POST['disableFollowConfirmForUsers']) : 0;
128
+ $this->optionsSerialized->enableStickButton = isset($_POST['enableStickButton']) ? intval($_POST['enableStickButton']) : 0;
129
+ $this->optionsSerialized->enableCloseButton = isset($_POST['enableCloseButton']) ? intval($_POST['enableCloseButton']) : 0;
130
+ $this->optionsSerialized->enableDropAnimation = isset($_POST['enableDropAnimation']) ? intval($_POST['enableDropAnimation']) : 0;
131
  do_action('wpdiscuz_save_options', $_POST);
132
  $this->optionsSerialized->updateOptions();
133
  add_settings_error('wpdiscuz', 'settings_updated', __('Settings updated', 'wpdiscuz'), 'updated');
options/class.WpdiscuzOptionsSerialized.php CHANGED
@@ -581,6 +581,30 @@ class WpdiscuzOptionsSerialized implements WpDiscuzConstants {
581
  */
582
  public $displayAntispamNote;
583
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
584
  /** == SOCIAL ==* */
585
  public $socialLoginAgreementCheckbox;
586
  public $socialLoginInSecondaryForm;
@@ -753,6 +777,9 @@ class WpdiscuzOptionsSerialized implements WpDiscuzConstants {
753
 
754
  $this->isFollowActive = isset($options['isFollowActive']) ? $options['isFollowActive'] : 0;
755
  $this->disableFollowConfirmForUsers = isset($options['disableFollowConfirmForUsers']) ? $options['disableFollowConfirmForUsers'] : 0;
 
 
 
756
  do_action('wpdiscuz_init_options', $this);
757
  }
758
 
@@ -865,11 +892,11 @@ class WpdiscuzOptionsSerialized implements WpDiscuzConstants {
865
  'wc_form_subscription_submit' => __('&rsaquo;', 'wpdiscuz'),
866
  'wc_comment_approved_email_subject' => __('Your comment is approved!', 'wpdiscuz'),
867
  'wc_comment_approved_email_message' => __('Hi [COMMENT_AUTHOR],<br/><br/>your comment was approved.<br/><br/><a href="[COMMENT_URL]">[COMMENT_URL]</a><br/><br/>[COMMENT_CONTENT]', 'wpdiscuz'),
868
- 'wc_roles_cannot_comment_message' => __('Comments are closed.', 'wpdiscuz'),
869
- 'wc_stick_comment_btn_title' => __('Stick this comment', 'wpdiscuz'),
870
  'wc_stick_comment' => __('Stick', 'wpdiscuz'),
871
  'wc_unstick_comment' => __('Unstick', 'wpdiscuz'),
872
- 'wc_sticky_comment_icon_title' => __('Sticky comment thread', 'wpdiscuz'),
873
  'wc_close_comment_btn_title' => __('Close this thread', 'wpdiscuz'),
874
  'wc_close_comment' => __('Close', 'wpdiscuz'),
875
  'wc_open_comment' => __('Open', 'wpdiscuz'),
@@ -1025,6 +1052,9 @@ class WpdiscuzOptionsSerialized implements WpDiscuzConstants {
1025
  'vkAppSecret' => $this->vkAppSecret,
1026
  'isFollowActive' => $this->isFollowActive,
1027
  'disableFollowConfirmForUsers' => $this->disableFollowConfirmForUsers,
 
 
 
1028
  );
1029
  return $options;
1030
  }
@@ -1140,7 +1170,10 @@ class WpdiscuzOptionsSerialized implements WpDiscuzConstants {
1140
  'vkAppID' => '',
1141
  'vkAppSecret' => '',
1142
  'isFollowActive' => 1,
1143
- 'disableFollowConfirmForUsers' => 1
 
 
 
1144
  );
1145
  add_option(self::OPTION_SLUG_OPTIONS, serialize($options));
1146
  }
@@ -1233,6 +1266,7 @@ class WpdiscuzOptionsSerialized implements WpDiscuzConstants {
1233
  $js_options['cookiehash'] = COOKIEHASH;
1234
  $js_options['isLoadOnlyParentComments'] = $this->isLoadOnlyParentComments;
1235
  $js_options['ahk'] = $this->antispamKey;
 
1236
  return $js_options;
1237
  }
1238
 
581
  */
582
  public $displayAntispamNote;
583
 
584
+ /**
585
+ * Type - Checkbox
586
+ * Available Values - Checked / Unchecked
587
+ * Description - Hide stick comment button
588
+ * Default Value - Unchecked
589
+ */
590
+ public $enableStickButton;
591
+
592
+ /**
593
+ * Type - Checkbox
594
+ * Available Values - Checked / Unchecked
595
+ * Description - Hide close comment button
596
+ * Default Value - Unchecked
597
+ */
598
+ public $enableCloseButton;
599
+
600
+ /**
601
+ * Type - Checkbox
602
+ * Available Values - Checked/Unchecked
603
+ * Description - Enable/disable form drop animation
604
+ * Default Value - Checked
605
+ */
606
+ public $enableDropAnimation;
607
+
608
  /** == SOCIAL ==* */
609
  public $socialLoginAgreementCheckbox;
610
  public $socialLoginInSecondaryForm;
777
 
778
  $this->isFollowActive = isset($options['isFollowActive']) ? $options['isFollowActive'] : 0;
779
  $this->disableFollowConfirmForUsers = isset($options['disableFollowConfirmForUsers']) ? $options['disableFollowConfirmForUsers'] : 0;
780
+ $this->enableStickButton = isset($options['enableStickButton']) ? $options['enableStickButton'] : 0;
781
+ $this->enableCloseButton = isset($options['enableCloseButton']) ? $options['enableCloseButton'] : 0;
782
+ $this->enableDropAnimation = isset($options['enableDropAnimation']) ? $options['enableDropAnimation'] : 0;
783
  do_action('wpdiscuz_init_options', $this);
784
  }
785
 
892
  'wc_form_subscription_submit' => __('&rsaquo;', 'wpdiscuz'),
893
  'wc_comment_approved_email_subject' => __('Your comment is approved!', 'wpdiscuz'),
894
  'wc_comment_approved_email_message' => __('Hi [COMMENT_AUTHOR],<br/><br/>your comment was approved.<br/><br/><a href="[COMMENT_URL]">[COMMENT_URL]</a><br/><br/>[COMMENT_CONTENT]', 'wpdiscuz'),
895
+ 'wc_roles_cannot_comment_message' => __('Comments are closed.', 'wpdiscuz'),
896
+ 'wc_stick_comment_btn_title' => __('Stick this comment', 'wpdiscuz'),
897
  'wc_stick_comment' => __('Stick', 'wpdiscuz'),
898
  'wc_unstick_comment' => __('Unstick', 'wpdiscuz'),
899
+ 'wc_sticky_comment_icon_title' => __('Sticky comment thread', 'wpdiscuz'),
900
  'wc_close_comment_btn_title' => __('Close this thread', 'wpdiscuz'),
901
  'wc_close_comment' => __('Close', 'wpdiscuz'),
902
  'wc_open_comment' => __('Open', 'wpdiscuz'),
1052
  'vkAppSecret' => $this->vkAppSecret,
1053
  'isFollowActive' => $this->isFollowActive,
1054
  'disableFollowConfirmForUsers' => $this->disableFollowConfirmForUsers,
1055
+ 'enableStickButton' => $this->enableStickButton,
1056
+ 'enableCloseButton' => $this->enableCloseButton,
1057
+ 'enableDropAnimation' => $this->enableDropAnimation,
1058
  );
1059
  return $options;
1060
  }
1170
  'vkAppID' => '',
1171
  'vkAppSecret' => '',
1172
  'isFollowActive' => 1,
1173
+ 'disableFollowConfirmForUsers' => 1,
1174
+ 'enableStickButton' => 1,
1175
+ 'enableCloseButton' => 1,
1176
+ 'enableDropAnimation' => 1,
1177
  );
1178
  add_option(self::OPTION_SLUG_OPTIONS, serialize($options));
1179
  }
1266
  $js_options['cookiehash'] = COOKIEHASH;
1267
  $js_options['isLoadOnlyParentComments'] = $this->isLoadOnlyParentComments;
1268
  $js_options['ahk'] = $this->antispamKey;
1269
+ $js_options['enableDropAnimation'] = $this->enableDropAnimation;
1270
  return $js_options;
1271
  }
1272
 
options/options-layouts/settings-form.php CHANGED
@@ -10,184 +10,214 @@ if (!defined('ABSPATH')) {
10
  <tr valign="top">
11
  <th scope="row" style="width: 50%;">
12
  <label for="wc_header_text_show_hide"><?php _e('Hide Header Text', 'wpdiscuz'); ?></label>
13
- <p class="wpd-desc"><?php _e('This option hides "Leave Reply" header text on top of comment form. You can change this text in Comments > Forms admin page.', 'wpdiscuz'); ?></p>
14
- </th>
15
- <td>
16
- <input type="checkbox" <?php checked($this->optionsSerialized->headerTextShowHide == 1) ?> value="1" name="wc_header_text_show_hide" id="wc_header_text_show_hide" />
17
- <label for="wc_header_text_show_hide"></label>
18
- <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#hide_header_text" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
19
- </td>
20
- </tr>
21
- <tr valign="top">
22
- <th scope="row">
23
- <label for="wc_show_hide_loggedin_username"><?php _e('Show logged-in user name and logout link on top of main form', 'wpdiscuz'); ?></label>
24
- </th>
25
- <td>
26
- <input type="checkbox" <?php checked($this->optionsSerialized->showHideLoggedInUsername == 1) ?> value="1" name="wc_show_hide_loggedin_username" id="wc_show_hide_loggedin_username" />
27
- <label for="wc_show_hide_loggedin_username"></label>
28
- <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#user_name_and_logout_link" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
29
- </td>
30
- </tr>
31
- <tr valign="top">
32
- <th scope="row">
33
- <label for="comment_form_components"><?php _e('Comment Form components', 'wpdiscuz'); ?></label>
34
- <p class="wpd-desc"><?php _e('These components can be found on the main comment form. The "My Content and Settings" button is located on the top left side, under the "Leave Reply" header text. The "Discussion Statistic" and "Recent Comment Authors" sections are located under the main comment form fields ont the left and right sides accordingly.', 'wpdiscuz'); ?></p>
35
- </th>
36
- <td>
37
- <fieldset>
38
- <div class="wpd-subopt" style="float: none; padding: 5px 0px;">
39
- <div style="display: inline-block; vertical-align: middle;">
40
- <input type="checkbox" <?php checked($this->optionsSerialized->hideLoginLinkForGuests == 1) ?> value="1" name="hideLoginLinkForGuests" id="hideLoginLinkForGuests" />
41
- <label for="hideLoginLinkForGuests"></label>
42
- </div> &nbsp;
43
- <span for="hideLoginLinkForGuests"><?php _e('Hide "Please login to comment" text', 'wpdiscuz'); ?></span>
44
- </div>
45
- <div class="wpd-subopt" style="float: none; padding: 5px 0px;">
46
- <div style="display: inline-block; vertical-align: middle;">
47
- <input type="checkbox" value="1" <?php checked($this->optionsSerialized->hideUserSettingsButton == 1) ?> name="hideUserSettingsButton" id="hideUserSettingsButton" />
48
- <label for="hideUserSettingsButton"></label>
49
- </div> &nbsp;
50
- <span data-target="hideUserSettingsButton" style="display: inline-block"><?php _e('Hide "My Content and Settings" button', 'wpdiscuz'); ?></span>
51
- </div>
52
- <div class="wpd-subopt" style="float: none; padding: 5px 0px;">
53
- <div style="display: inline-block; vertical-align: middle;">
54
- <input type="checkbox" value="1" <?php checked($this->optionsSerialized->hideDiscussionStat == 1) ?> name="hideDiscussionStat" id="hideDiscussionStat" />
55
- <label for="hideDiscussionStat"></label>
56
- </div> &nbsp;
57
- <span data-target="hideDiscussionStat" style="display: inline-block"><?php _e('Hide "Discussion Statistic" section', 'wpdiscuz'); ?></span>
58
- </div>
59
- <div class="wpd-subopt" style="float: none; padding: 5px 0px;">
60
- <div style="display: inline-block; vertical-align: middle;">
61
- <input type="checkbox" value="1" <?php checked($this->optionsSerialized->hideRecentAuthors == 1) ?> name="hideRecentAuthors" id="hideRecentAuthors" />
62
- <label for="hideRecentAuthors"></label>
63
- </div> &nbsp;
64
- <span data-target="hideRecentAuthors" style="display: inline-block;"><?php _e('Hide "Recent Comment Authors" section', 'wpdiscuz'); ?></span>
65
- </div>
66
- <div style="clear: both;"></div>
67
- </fieldset>
68
- <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#components" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
69
- </td>
70
- </tr>
71
- <tr valign="top">
72
- <th scope="row">
73
- <label for="storeCommenterData"><?php _e('Keep guest commenter credentials in browser cookies for x days', 'wpdiscuz'); ?></label>
74
- <p class="wpd-desc">
75
- <?php _e('wpDiscuz uses WordPress function to keep guest Name, Email and Website information in cookies to fill according fields of comment form on next commenting time.', 'wpdiscuz'); ?><br />
76
- <?php _e('Set this option value -1 to make it unlimited.', 'wpdiscuz'); ?><br />
77
- <?php _e('Set this option value 0 to clear those data when user closes browser.', 'wpdiscuz'); ?>
78
- </p>
79
- </th>
80
- <td>
81
- <input type="number" value="<?php echo isset($this->optionsSerialized->storeCommenterData) ? $this->optionsSerialized->storeCommenterData : -1; ?>" name="storeCommenterData" id="storeCommenterData" style="width:100px;" />
82
- <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#guest_commenter_credentials" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
83
- </td>
84
- </tr>
85
- <tr valign="top">
86
- <th scope="row">
87
- <label><?php _e('Comment author name length (for guests only)', 'wpdiscuz'); ?></label>
88
- </th>
89
- <td>
90
- <span for="commenterNameMinLength">
91
- <?php _e('Min', 'wpdiscuz'); ?>: <input type="number" value="<?php echo $this->optionsSerialized->commenterNameMinLength; ?>" name="commenterNameMinLength" id="commenterNameMinLength" style="width:70px;" />
92
- </span>
93
- <span for="commenterNameMaxLength">
94
- &nbsp; <?php _e('Max', 'wpdiscuz'); ?>: <input type="number" value="<?php echo $this->optionsSerialized->commenterNameMaxLength; ?>" name="commenterNameMaxLength" id="commenterNameMaxLength" style="width:70px;" />
95
- </span>
96
- <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#comment_author_name_length" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
97
- </td>
98
- </tr>
99
- <tr valign="top">
100
- <th scope="row">
101
- <label><?php _e('Comment text length', 'wpdiscuz'); ?></label>
102
- <p class="wpd-desc"><?php _e('Allows to set minimum and maximum number of chars can be inserted in comment textarea. Leave the max value empty to remove the limit.', 'wpdiscuz'); ?></p>
103
- </th>
104
- <td>
105
- <span for="wc_comment_text_min_length">
106
- <?php _e('Min', 'wpdiscuz'); ?>: <input type="number" value="<?php echo isset($this->optionsSerialized->commentTextMinLength) ? $this->optionsSerialized->commentTextMinLength : 10; ?>" name="wc_comment_text_min_length" id="wc_comment_text_min_length" style="width:70px;" />
107
- </span>
108
- <span for="wc_comment_text_max_length">
109
- &nbsp; <?php _e('Max', 'wpdiscuz'); ?>: <input type="number" value="<?php echo isset($this->optionsSerialized->commentTextMaxLength) ? $this->optionsSerialized->commentTextMaxLength : ''; ?>" name="wc_comment_text_max_length" id="wc_comment_text_max_length" style="width:70px;" />
110
- </span>
111
- <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#comment_text_length" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
112
- </td>
113
- </tr>
114
- <tr valign="top">
115
- <th scope="row">
116
- <label><?php _e('Captcha generation type', 'wpdiscuz'); ?></label>
117
- </th>
118
- <th>
119
- <?php $isCaptchaInSession = isset($this->optionsSerialized->isCaptchaInSession) ? $this->optionsSerialized->isCaptchaInSession : 0; ?>
120
- <div class="wpd-switch-field">
121
- <input type="radio" value="0" <?php checked('0' == $isCaptchaInSession); ?> name="isCaptchaInSession" id="captchaByImageFile" /><label for="captchaByImageFile"><?php _e('File system', 'wpdiscuz') ?></label> &nbsp;
122
- <input type="radio" value="1" <?php checked('1' == $isCaptchaInSession); ?> name="isCaptchaInSession" id="captchaInSession" /><label for="captchaInSession"><?php _e('WP Session', 'wpdiscuz') ?></label>
123
- </div>
124
- <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#captcha_generation_type" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
125
- </th>
126
- </tr>
127
- <tr valign="top">
128
- <th scope="row">
129
- <label for="antispamKey"><?php _e('Invisible Spam Protection', 'wpdiscuz'); ?></label>
130
- <p class="wpd-desc">
131
- <?php _e('You should purge caches after each key generation otherwise the plugin may work not correctly', 'wpdiscuz'); ?>
132
- </p>
133
- <p class="wpd-desc">
134
- <?php _e('Leave the field empty if you don\'t want to use this feature', 'wpdiscuz'); ?>
135
- </p>
136
- </th>
137
- <th>
138
- <input type="text" value="<?php echo $this->optionsSerialized->antispamKey ?>" name="antispamKey" id="antispamKey" style="padding: 3px 5px;" size="35"/>
139
- <button type="button" id="generateAntispamKey" class="button button-secondary"><?php _e('Generate', 'wpdiscuz') ?></button>
140
- <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#invisible_spam_protection" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
141
- </th>
142
- </tr>
143
- <tr valign="top">
144
- <th scope="row" style="width:55%;">
145
- <label for="displayAntispamNote"><?php _e('Display note about Invisible Spam Protection', 'wpdiscuz'); ?></label>
146
- <p class="wpd-desc"><?php _e('wpDiscuz has built-in invisible antispam protection based on server side and front-end unique key comparation. By default wpDiscuz display a small note in simple CAPTCHA area, saying the comment form is under antispam protection. The note text can be managed in Comments > Phrases > Form tab.', 'wpdiscuz'); ?></p>
147
- </th>
148
- <td>
149
- <input type="checkbox" value="1" <?php checked($this->optionsSerialized->displayAntispamNote == 1) ?> name="displayAntispamNote" id="displayAntispamNote" />
150
- <label for="displayAntispamNote"></label>
151
- <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#note_about_spam_protection" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
152
- </td>
153
- </tr>
154
- <tr valign="top">
155
- <th scope="row" style="width:55%;">
156
- <label for="wc_quick_tags"><?php _e('Enable Quicktags', 'wpdiscuz'); ?></label>
157
- <p class="wpd-desc"><?php _e('Quicktag is a on-click button that inserts HTML in to comment textarea. For example the "b" Quicktag will insert the HTML bold tags < b > < /b >.', 'wpdiscuz'); ?></p>
158
- </th>
159
- <td>
160
- <input type="checkbox" <?php checked($this->optionsSerialized->isQuickTagsEnabled == 1) ?> value="1" name="wc_quick_tags" id="wc_quick_tags" />
161
- <label for="wc_quick_tags"></label>
162
- <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#quicktags" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
163
- </td>
164
- </tr>
165
- <tr valign="top">
166
- <th scope="row">
167
- <label for="enableImageConversion"><?php _e('Enable automatic image URL to image HTML conversion', 'wpdiscuz'); ?></label>
168
- </th>
169
- <td>
170
- <input type="checkbox" <?php checked($this->optionsSerialized->enableImageConversion == 1) ?> value="1" name="enableImageConversion" id="enableImageConversion" />
171
- <label for="enableImageConversion"></label>
172
- <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#image-embed" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
173
- </td>
174
- </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
175
  <tr valign="top">
176
  <th scope="row">
177
- <label><?php _e('Allow comment editing for', 'wpdiscuz'); ?></label>
178
  </th>
179
  <td>
180
- <select id="wc_comment_editable_time" name="wc_comment_editable_time">
181
- <?php $wc_comment_editable_time = isset($this->optionsSerialized->commentEditableTime) ? $this->optionsSerialized->commentEditableTime : 0; ?>
182
- <option value="0" <?php selected($wc_comment_editable_time, '0'); ?>><?php _e('Do not allow', 'wpdiscuz'); ?></option>
183
- <option value="900" <?php selected($wc_comment_editable_time, '900'); ?>>15 <?php _e('Minutes', 'wpdiscuz'); ?></option>
184
- <option value="1800" <?php selected($wc_comment_editable_time, '1800'); ?>>30 <?php _e('Minutes', 'wpdiscuz'); ?></option>
185
- <option value="3600" <?php selected($wc_comment_editable_time, '3600'); ?>>1 <?php _e('Hour', 'wpdiscuz'); ?></option>
186
- <option value="10800" <?php selected($wc_comment_editable_time, '10800'); ?>>3 <?php _e('Hours', 'wpdiscuz'); ?></option>
187
- <option value="86400" <?php selected($wc_comment_editable_time, '86400'); ?>>24 <?php _e('Hours', 'wpdiscuz'); ?></option>
188
- <option value="unlimit" <?php selected($wc_comment_editable_time, 'unlimit'); ?>><?php _e('Unlimit', 'wpdiscuz'); ?></option>
189
- </select>
190
- <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#allow_editing" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
191
  </td>
192
  </tr>
193
  </tbody>
10
  <tr valign="top">
11
  <th scope="row" style="width: 50%;">
12
  <label for="wc_header_text_show_hide"><?php _e('Hide Header Text', 'wpdiscuz'); ?></label>
13
+ <p class="wpd-desc"><?php _e('This option hides "Leave Reply" header text on top of comment form. You can change this text in Comments > Forms admin page.', 'wpdiscuz'); ?></p>
14
+ </th>
15
+ <td>
16
+ <input type="checkbox" <?php checked($this->optionsSerialized->headerTextShowHide == 1) ?> value="1" name="wc_header_text_show_hide" id="wc_header_text_show_hide" />
17
+ <label for="wc_header_text_show_hide"></label>
18
+ <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#hide_header_text" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
19
+ </td>
20
+ </tr>
21
+ <tr valign="top">
22
+ <th scope="row">
23
+ <label for="wc_show_hide_loggedin_username"><?php _e('Show logged-in user name and logout link on top of main form', 'wpdiscuz'); ?></label>
24
+ </th>
25
+ <td>
26
+ <input type="checkbox" <?php checked($this->optionsSerialized->showHideLoggedInUsername == 1) ?> value="1" name="wc_show_hide_loggedin_username" id="wc_show_hide_loggedin_username" />
27
+ <label for="wc_show_hide_loggedin_username"></label>
28
+ <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#user_name_and_logout_link" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
29
+ </td>
30
+ </tr>
31
+ <tr valign="top">
32
+ <th scope="row">
33
+ <label for="comment_form_components"><?php _e('Comment Form components', 'wpdiscuz'); ?></label>
34
+ <p class="wpd-desc"><?php _e('These components can be found on the main comment form. The "My Content and Settings" button is located on the top left side, under the "Leave Reply" header text. The "Discussion Statistic" and "Recent Comment Authors" sections are located under the main comment form fields ont the left and right sides accordingly.', 'wpdiscuz'); ?></p>
35
+ </th>
36
+ <td>
37
+ <fieldset>
38
+ <div class="wpd-subopt" style="float: none; padding: 5px 0px;">
39
+ <div style="display: inline-block; vertical-align: middle;">
40
+ <input type="checkbox" <?php checked($this->optionsSerialized->hideLoginLinkForGuests == 1) ?> value="1" name="hideLoginLinkForGuests" id="hideLoginLinkForGuests" />
41
+ <label for="hideLoginLinkForGuests"></label>
42
+ </div> &nbsp;
43
+ <span for="hideLoginLinkForGuests"><?php _e('Hide "Please login to comment" text', 'wpdiscuz'); ?></span>
44
+ </div>
45
+ <div class="wpd-subopt" style="float: none; padding: 5px 0px;">
46
+ <div style="display: inline-block; vertical-align: middle;">
47
+ <input type="checkbox" value="1" <?php checked($this->optionsSerialized->hideUserSettingsButton == 1) ?> name="hideUserSettingsButton" id="hideUserSettingsButton" />
48
+ <label for="hideUserSettingsButton"></label>
49
+ </div> &nbsp;
50
+ <span data-target="hideUserSettingsButton" style="display: inline-block"><?php _e('Hide "My Content and Settings" button', 'wpdiscuz'); ?></span>
51
+ </div>
52
+ <div class="wpd-subopt" style="float: none; padding: 5px 0px;">
53
+ <div style="display: inline-block; vertical-align: middle;">
54
+ <input type="checkbox" value="1" <?php checked($this->optionsSerialized->hideDiscussionStat == 1) ?> name="hideDiscussionStat" id="hideDiscussionStat" />
55
+ <label for="hideDiscussionStat"></label>
56
+ </div> &nbsp;
57
+ <span data-target="hideDiscussionStat" style="display: inline-block"><?php _e('Hide "Discussion Statistic" section', 'wpdiscuz'); ?></span>
58
+ </div>
59
+ <div class="wpd-subopt" style="float: none; padding: 5px 0px;">
60
+ <div style="display: inline-block; vertical-align: middle;">
61
+ <input type="checkbox" value="1" <?php checked($this->optionsSerialized->hideRecentAuthors == 1) ?> name="hideRecentAuthors" id="hideRecentAuthors" />
62
+ <label for="hideRecentAuthors"></label>
63
+ </div> &nbsp;
64
+ <span data-target="hideRecentAuthors" style="display: inline-block;"><?php _e('Hide "Recent Comment Authors" section', 'wpdiscuz'); ?></span>
65
+ </div>
66
+ <div style="clear: both;"></div>
67
+ </fieldset>
68
+ <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#components" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
69
+ </td>
70
+ </tr>
71
+ <tr valign="top">
72
+ <th scope="row">
73
+ <label for="storeCommenterData"><?php _e('Keep guest commenter credentials in browser cookies for x days', 'wpdiscuz'); ?></label>
74
+ <p class="wpd-desc">
75
+ <?php _e('wpDiscuz uses WordPress function to keep guest Name, Email and Website information in cookies to fill according fields of comment form on next commenting time.', 'wpdiscuz'); ?><br />
76
+ <?php _e('Set this option value -1 to make it unlimited.', 'wpdiscuz'); ?><br />
77
+ <?php _e('Set this option value 0 to clear those data when user closes browser.', 'wpdiscuz'); ?>
78
+ </p>
79
+ </th>
80
+ <td>
81
+ <input type="number" value="<?php echo isset($this->optionsSerialized->storeCommenterData) ? $this->optionsSerialized->storeCommenterData : -1; ?>" name="storeCommenterData" id="storeCommenterData" style="width:100px;" />
82
+ <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#guest_commenter_credentials" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
83
+ </td>
84
+ </tr>
85
+ <tr valign="top">
86
+ <th scope="row">
87
+ <label><?php _e('Comment author name length (for guests only)', 'wpdiscuz'); ?></label>
88
+ </th>
89
+ <td>
90
+ <span for="commenterNameMinLength">
91
+ <?php _e('Min', 'wpdiscuz'); ?>: <input type="number" value="<?php echo $this->optionsSerialized->commenterNameMinLength; ?>" name="commenterNameMinLength" id="commenterNameMinLength" style="width:70px;" />
92
+ </span>
93
+ <span for="commenterNameMaxLength">
94
+ &nbsp; <?php _e('Max', 'wpdiscuz'); ?>: <input type="number" value="<?php echo $this->optionsSerialized->commenterNameMaxLength; ?>" name="commenterNameMaxLength" id="commenterNameMaxLength" style="width:70px;" />
95
+ </span>
96
+ <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#comment_author_name_length" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
97
+ </td>
98
+ </tr>
99
+ <tr valign="top">
100
+ <th scope="row">
101
+ <label><?php _e('Comment text length', 'wpdiscuz'); ?></label>
102
+ <p class="wpd-desc"><?php _e('Allows to set minimum and maximum number of chars can be inserted in comment textarea. Leave the max value empty to remove the limit.', 'wpdiscuz'); ?></p>
103
+ </th>
104
+ <td>
105
+ <span for="wc_comment_text_min_length">
106
+ <?php _e('Min', 'wpdiscuz'); ?>: <input type="number" value="<?php echo isset($this->optionsSerialized->commentTextMinLength) ? $this->optionsSerialized->commentTextMinLength : 10; ?>" name="wc_comment_text_min_length" id="wc_comment_text_min_length" style="width:70px;" />
107
+ </span>
108
+ <span for="wc_comment_text_max_length">
109
+ &nbsp; <?php _e('Max', 'wpdiscuz'); ?>: <input type="number" value="<?php echo isset($this->optionsSerialized->commentTextMaxLength) ? $this->optionsSerialized->commentTextMaxLength : ''; ?>" name="wc_comment_text_max_length" id="wc_comment_text_max_length" style="width:70px;" />
110
+ </span>
111
+ <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#comment_text_length" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
112
+ </td>
113
+ </tr>
114
+ <tr valign="top">
115
+ <th scope="row">
116
+ <label><?php _e('Captcha generation type', 'wpdiscuz'); ?></label>
117
+ </th>
118
+ <th>
119
+ <?php $isCaptchaInSession = isset($this->optionsSerialized->isCaptchaInSession) ? $this->optionsSerialized->isCaptchaInSession : 0; ?>
120
+ <div class="wpd-switch-field">
121
+ <input type="radio" value="0" <?php checked('0' == $isCaptchaInSession); ?> name="isCaptchaInSession" id="captchaByImageFile" /><label for="captchaByImageFile"><?php _e('File system', 'wpdiscuz') ?></label> &nbsp;
122
+ <input type="radio" value="1" <?php checked('1' == $isCaptchaInSession); ?> name="isCaptchaInSession" id="captchaInSession" /><label for="captchaInSession"><?php _e('WP Session', 'wpdiscuz') ?></label>
123
+ </div>
124
+ <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#captcha_generation_type" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
125
+ </th>
126
+ </tr>
127
+ <tr valign="top">
128
+ <th scope="row">
129
+ <label for="antispamKey"><?php _e('Invisible Spam Protection', 'wpdiscuz'); ?></label>
130
+ <p class="wpd-desc">
131
+ <?php _e('You should purge caches after each key generation otherwise the plugin may work not correctly', 'wpdiscuz'); ?>
132
+ </p>
133
+ <p class="wpd-desc">
134
+ <?php _e('Leave the field empty if you don\'t want to use this feature', 'wpdiscuz'); ?>
135
+ </p>
136
+ </th>
137
+ <th>
138
+ <input type="text" value="<?php echo $this->optionsSerialized->antispamKey ?>" name="antispamKey" id="antispamKey" style="padding: 3px 5px;" size="35"/>
139
+ <button type="button" id="generateAntispamKey" class="button button-secondary"><?php _e('Generate', 'wpdiscuz') ?></button>
140
+ <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#invisible_spam_protection" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
141
+ </th>
142
+ </tr>
143
+ <tr valign="top">
144
+ <th scope="row" style="width:55%;">
145
+ <label for="displayAntispamNote"><?php _e('Display note about Invisible Spam Protection', 'wpdiscuz'); ?></label>
146
+ <p class="wpd-desc"><?php _e('wpDiscuz has built-in invisible antispam protection based on server side and front-end unique key comparation. By default wpDiscuz display a small note in simple CAPTCHA area, saying the comment form is under antispam protection. The note text can be managed in Comments > Phrases > Form tab.', 'wpdiscuz'); ?></p>
147
+ </th>
148
+ <td>
149
+ <input type="checkbox" value="1" <?php checked($this->optionsSerialized->displayAntispamNote == 1) ?> name="displayAntispamNote" id="displayAntispamNote" />
150
+ <label for="displayAntispamNote"></label>
151
+ <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#note_about_spam_protection" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
152
+ </td>
153
+ </tr>
154
+ <tr valign="top">
155
+ <th scope="row" style="width:55%;">
156
+ <label for="wc_quick_tags"><?php _e('Enable Quicktags', 'wpdiscuz'); ?></label>
157
+ <p class="wpd-desc"><?php _e('Quicktag is a on-click button that inserts HTML in to comment textarea. For example the "b" Quicktag will insert the HTML bold tags < b > < /b >.', 'wpdiscuz'); ?></p>
158
+ </th>
159
+ <td>
160
+ <input type="checkbox" <?php checked($this->optionsSerialized->isQuickTagsEnabled == 1) ?> value="1" name="wc_quick_tags" id="wc_quick_tags" />
161
+ <label for="wc_quick_tags"></label>
162
+ <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#quicktags" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
163
+ </td>
164
+ </tr>
165
+ <tr valign="top">
166
+ <th scope="row">
167
+ <label for="enableImageConversion"><?php _e('Enable automatic image URL to image HTML conversion', 'wpdiscuz'); ?></label>
168
+ </th>
169
+ <td>
170
+ <input type="checkbox" <?php checked($this->optionsSerialized->enableImageConversion == 1) ?> value="1" name="enableImageConversion" id="enableImageConversion" />
171
+ <label for="enableImageConversion"></label>
172
+ <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#image-embed" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
173
+ </td>
174
+ </tr>
175
+ <tr valign="top">
176
+ <th scope="row">
177
+ <label><?php _e('Edit Button - Allow comment editing for', 'wpdiscuz'); ?></label>
178
+ </th>
179
+ <td>
180
+ <select id="wc_comment_editable_time" name="wc_comment_editable_time">
181
+ <?php $wc_comment_editable_time = isset($this->optionsSerialized->commentEditableTime) ? $this->optionsSerialized->commentEditableTime : 0; ?>
182
+ <option value="0" <?php selected($wc_comment_editable_time, '0'); ?>><?php _e('Do not allow', 'wpdiscuz'); ?></option>
183
+ <option value="900" <?php selected($wc_comment_editable_time, '900'); ?>>15 <?php _e('Minutes', 'wpdiscuz'); ?></option>
184
+ <option value="1800" <?php selected($wc_comment_editable_time, '1800'); ?>>30 <?php _e('Minutes', 'wpdiscuz'); ?></option>
185
+ <option value="3600" <?php selected($wc_comment_editable_time, '3600'); ?>>1 <?php _e('Hour', 'wpdiscuz'); ?></option>
186
+ <option value="10800" <?php selected($wc_comment_editable_time, '10800'); ?>>3 <?php _e('Hours', 'wpdiscuz'); ?></option>
187
+ <option value="86400" <?php selected($wc_comment_editable_time, '86400'); ?>>24 <?php _e('Hours', 'wpdiscuz'); ?></option>
188
+ <option value="unlimit" <?php selected($wc_comment_editable_time, 'unlimit'); ?>><?php _e('Unlimit', 'wpdiscuz'); ?></option>
189
+ </select>
190
+ <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#allow_editing" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
191
+ </td>
192
+ </tr>
193
+ <tr valign="top">
194
+ <th scope="row" style="width: 50%;">
195
+ <label for="enableStickButton"><?php _e('Stick Button - Stick a comment thread', 'wpdiscuz'); ?></label>
196
+ </th>
197
+ <td>
198
+ <input type="checkbox" <?php checked($this->optionsSerialized->enableStickButton == 1) ?> value="1" name="enableStickButton" id="enableStickButton" />
199
+ <label for="enableStickButton"></label>
200
+ <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#stick_comment" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
201
+ </td>
202
+ </tr>
203
+ <tr valign="top">
204
+ <th scope="row" style="width: 50%;">
205
+ <label for="enableCloseButton"><?php _e('Close Button - Close a comment thread', 'wpdiscuz'); ?></label>
206
+ </th>
207
+ <td>
208
+ <input type="checkbox" <?php checked($this->optionsSerialized->enableCloseButton == 1) ?> value="1" name="enableCloseButton" id="enableCloseButton" />
209
+ <label for="enableCloseButton"></label>
210
+ <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#close_comment" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
211
+ </td>
212
+ </tr>
213
  <tr valign="top">
214
  <th scope="row">
215
+ <label for="enableDropAnimation"><?php _e('Enable drop animation for comment form and subscription bar', 'wpdiscuz'); ?></label>
216
  </th>
217
  <td>
218
+ <input type="checkbox" <?php checked($this->optionsSerialized->enableDropAnimation == 1) ?> value="1" name="enableDropAnimation" id="enableDropAnimation" />
219
+ <label for="enableDropAnimation"></label>
220
+ <a href="https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-form/#drop_animation" title="<?php _e('Read the documentation', 'wpdiscuz') ?>" target="_blank"><i class="far fa-question-circle"></i></a>
 
 
 
 
 
 
 
 
221
  </td>
222
  </tr>
223
  </tbody>
readme.txt CHANGED
@@ -3,7 +3,7 @@ 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.4
7
  Requires PHP: 5.4 and higher
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -171,10 +171,13 @@ Nothing will be lost! **Comments - wpDiscuz** will show all old comments.
171
 
172
  == Changelog ==
173
 
174
- = Comments - wpDiscuz v5.1.4 =
175
 
176
- Fixed bug : Fatal error on update
177
- Fixed bug : Follow icon is visible for non logged in users
 
 
 
178
 
179
 
180
  IMPORTANT!
@@ -189,6 +192,12 @@ IMPORTANT!
189
  - 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/)
190
 
191
 
 
 
 
 
 
 
192
  = Comments - wpDiscuz v5.1.3 =
193
 
194
  * Added: Subscribe to User / User Follow
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.5
7
  Requires PHP: 5.4 and higher
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
171
 
172
  == Changelog ==
173
 
174
+ = Comments - wpDiscuz v5.1.5 =
175
 
176
+ * Added: Option to hide/show Stick comment button
177
+ * Added: Option to hide/show Close comment button
178
+ * Added: Option to disable Drop Animation on comment form and subscription bar
179
+ * Fixed bug: Follow users table not created on <= MySQL 5.5 versions
180
+ * Fixed bug: Edit comments issue
181
 
182
 
183
  IMPORTANT!
192
  - 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/)
193
 
194
 
195
+ = Comments - wpDiscuz v5.1.4 =
196
+
197
+ * Fixed bug : Fatal error on update
198
+ * Fixed bug : Follow icon is visible for non logged in users
199
+
200
+
201
  = Comments - wpDiscuz v5.1.3 =
202
 
203
  * Added: Subscribe to User / User Follow
templates/comment/class.WpdiscuzWalker.php CHANGED
@@ -386,10 +386,14 @@ class WpdiscuzWalker extends Walker_Comment implements WpDiscuzConstants {
386
  if (!$comment->comment_parent &&
387
  ((isset($args['high_level_user']) && $args['high_level_user']) ||
388
  (isset($args['can_stick_or_close']) && $args['can_stick_or_close']))) {
389
- $stickText = $isSticky ? $this->optionsSerialized->phrases['wc_unstick_comment'] : $this->optionsSerialized->phrases['wc_stick_comment'];
390
- $closeText = $isClosed ? $this->optionsSerialized->phrases['wc_open_comment'] : $this->optionsSerialized->phrases['wc_close_comment'];
391
- $output .= '<span class="wc_stick_btn wc-cta-button"><i class="fas fa-thumbtack"></i><span class="wc_stick_text">' . $stickText . '</span></span>';
392
- $output .= '<span class="wc_close_btn wc-cta-button"><i class="far fa-comments"></i><span class="wc_close_text">' . $closeText . '</span></span>';
 
 
 
 
393
  }
394
  $output .= '</div>';
395
  $output .= '<div class="wc-footer-right">';
386
  if (!$comment->comment_parent &&
387
  ((isset($args['high_level_user']) && $args['high_level_user']) ||
388
  (isset($args['can_stick_or_close']) && $args['can_stick_or_close']))) {
389
+ if ($this->optionsSerialized->enableStickButton) {
390
+ $stickText = $isSticky ? $this->optionsSerialized->phrases['wc_unstick_comment'] : $this->optionsSerialized->phrases['wc_stick_comment'];
391
+ $output .= '<span class="wc_stick_btn wc-cta-button"><i class="fas fa-thumbtack"></i><span class="wc_stick_text">' . $stickText . '</span></span>';
392
+ }
393
+ if ($this->optionsSerialized->enableCloseButton) {
394
+ $closeText = $isClosed ? $this->optionsSerialized->phrases['wc_open_comment'] : $this->optionsSerialized->phrases['wc_close_comment'];
395
+ $output .= '<span class="wc_close_btn wc-cta-button"><i class="far fa-comments"></i><span class="wc_close_text">' . $closeText . '</span></span>';
396
+ }
397
  }
398
  $output .= '</div>';
399
  $output .= '<div class="wc-footer-right">';
utils/ajax/wpdiscuz-ajax.php ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ //mimic the actuall admin-ajax
4
+ define('DOING_AJAX', true);
5
+
6
+ if (!isset($_POST['action'])) {
7
+ die('-1');
8
+ }
9
+
10
+ require_once('../../../../../wp-load.php');
11
+
12
+ header('Content-Type: text/html');
13
+ send_nosniff_header();
14
+
15
+ header('Cache-Control: no-cache');
16
+ header('Pragma: no-cache');
17
+
18
+ $action = esc_attr(trim($_POST['action']));
19
+ $allowedActions = array('mostActiveThread', '');
20
+
21
+ add_action('wpdiscuz_wpdMostActiveThread', 'wpdMostActiveThread');
22
+ add_action('wpdiscuz_nopriv_wpdMostActiveThread', 'wpdMostActiveThread');
23
+
24
+ add_action('wpdiscuz_wpdMostReactedComment', 'wpdMostReactedComment');
25
+ add_action('wpdiscuz_nopriv_wpdMostReactedComment', 'wpdMostReactedComment');
26
+
27
+ if (in_array($ac, $allowedActions)) {
28
+ if (is_user_logged_in()) {
29
+ do_action('wpdiscuz_' . $action);
30
+ } else {
31
+ do_action('wpdiscuz_nopriv_' . $action);
32
+ }
33
+ } else {
34
+ die('-1');
35
+ }
36
+
37
+ function wpdMostActiveThread() {
38
+ $wpdiscuz = wpDiscuz();
39
+ $response = array('code' => 0);
40
+ $postId = isset($_POST['postId']) ? intval($_POST['postId']) : 0;
41
+ if ($postId) {
42
+ $parentCommentIds = $wpdiscuz->dbManager->getParentCommentsHavingReplies($postId);
43
+ $childCount = 0;
44
+ $hottestCommentId = 0;
45
+ $hottestChildren = array();
46
+ foreach ($parentCommentIds as $parentCommentId) {
47
+ $tree = array();
48
+ $children = $wpdiscuz->dbManager->getHottestTree($parentCommentId);
49
+ $tmpCount = count($children);
50
+ if ($childCount < $tmpCount) {
51
+
52
+ $childCount = $tmpCount;
53
+ $hottestCommentId = $parentCommentId;
54
+ $hottestChildren = $children;
55
+ }
56
+ }
57
+
58
+ if ($hottestCommentId && $hottestChildren) {
59
+ $currentUser = WpdiscuzHelper::getCurrentUser();
60
+ $parentComment = $wpdiscuz->helperOptimization->getCommentRoot($hottestCommentId);
61
+ $tree = $parentComment->get_children(array(
62
+ 'format' => 'flat',
63
+ 'status' => $wpdiscuz->commentsArgs['status'],
64
+ 'orderby' => $wpdiscuz->commentsArgs['orderby']
65
+ ));
66
+ $comments = array_merge(array($parentComment), $tree);
67
+ $commentListArgs = $wpdiscuz->getCommentListArgs($postId);
68
+ $commentListArgs['isSingle'] = true;
69
+ $commentListArgs['new_loaded_class'] = 'wc-new-loaded-comment';
70
+ $commentListArgs['current_user'] = $currentUser;
71
+ $wpdiscuz->form = $wpdiscuz->wpdiscuzForm->getForm($postId);
72
+ $commentListArgs['can_user_comment'] = $wpdiscuz->form ? $wpdiscuz->form->isUserCanComment($currentUser, $postId) : true;
73
+ $response['code'] = 1;
74
+ $response['message'] = wp_list_comments($commentListArgs, $comments);
75
+ $response['commentId'] = $hottestCommentId;
76
+ }
77
+ }
78
+ wp_die(json_encode($response));
79
+ }
80
+
81
+ function wpdMostReactedComment() {
82
+ $wpdiscuz = wpDiscuz();
83
+ $response = array('code' => 0);
84
+ $postId = isset($_POST['postId']) ? intval($_POST['postId']) : 0;
85
+ if ($postId) {
86
+ $commentId = $wpdiscuz->dbManager->getMostReactedCommentId($postId);
87
+ $comment = get_comment($commentId);
88
+ if ($comment && $comment->comment_post_ID == $postId) {
89
+ $currentUser = WpdiscuzHelper::getCurrentUser();
90
+ $parentComment = $wpdiscuz->helperOptimization->getCommentRoot($commentId);
91
+ $tree = $parentComment->get_children(array(
92
+ 'format' => 'flat',
93
+ 'status' => $wpdiscuz->commentsArgs['status'],
94
+ 'orderby' => $wpdiscuz->commentsArgs['orderby']
95
+ ));
96
+ $comments = array_merge(array($parentComment), $tree);
97
+ $commentListArgs = $wpdiscuz->getCommentListArgs($postId);
98
+ $commentListArgs['isSingle'] = true;
99
+ $commentListArgs['new_loaded_class'] = 'wc-new-loaded-comment';
100
+ $commentListArgs['current_user'] = $currentUser;
101
+ $wpdiscuz->form = $wpdiscuz->wpdiscuzForm->getForm($postId);
102
+ $commentListArgs['can_user_comment'] = $wpdiscuz->form ? $wpdiscuz->form->isUserCanComment($currentUser, $postId) : true;
103
+ $response['code'] = 1;
104
+ $response['message'] = wp_list_comments($commentListArgs, $comments);
105
+ $response['commentId'] = $commentId;
106
+ $response['parentCommentID'] = $parentComment->comment_ID;
107
+ }
108
+ }
109
+ wp_die(json_encode($response));
110
+ }
utils/class.WpdiscuzHelper.php CHANGED
@@ -16,6 +16,7 @@ class WpdiscuzHelper implements WpDiscuzConstants {
16
  $this->wpdiscuzForm = $wpdiscuzForm;
17
  add_filter('the_champ_login_interface_filter', array(&$this, 'wpDiscuzSuperSocializerLogin'), 15, 2);
18
  add_action('wpdiscuz_form_bottom', array(&$this, 'formBottom'), 10, 4);
 
19
  }
20
 
21
  public function filterKses() {
@@ -123,9 +124,10 @@ class WpdiscuzHelper implements WpDiscuzConstants {
123
  * check if comment is still editable or not
124
  * return boolean
125
  */
126
- public function isCommentEditable($comment) {
127
  $editableTimeLimit = isset($this->optionsSerialized->commentEditableTime) ? $this->optionsSerialized->commentEditableTime : 0;
128
- $timeDiff = (current_time('timestamp') - strtotime($comment->comment_date_gmt));
 
129
  $editableTimeLimit = ($editableTimeLimit == 'unlimit') ? $timeDiff + 1 : intval($editableTimeLimit);
130
  return $editableTimeLimit && ($timeDiff < $editableTimeLimit);
131
  }
@@ -153,6 +155,8 @@ class WpdiscuzHelper implements WpDiscuzConstants {
153
  $ip = $_SERVER['REMOTE_ADDR'];
154
  }
155
 
 
 
156
  if ($ip == '::1') {
157
  $ip = '127.0.0.1';
158
  }
@@ -576,5 +580,12 @@ class WpdiscuzHelper implements WpDiscuzConstants {
576
  return $domain;
577
  }
578
 
 
 
 
 
 
 
 
579
  }
580
 
16
  $this->wpdiscuzForm = $wpdiscuzForm;
17
  add_filter('the_champ_login_interface_filter', array(&$this, 'wpDiscuzSuperSocializerLogin'), 15, 2);
18
  add_action('wpdiscuz_form_bottom', array(&$this, 'formBottom'), 10, 4);
19
+ add_filter('pre_comment_user_ip', array(&$this, 'fixLocalhostIp'), 10);
20
  }
21
 
22
  public function filterKses() {
124
  * check if comment is still editable or not
125
  * return boolean
126
  */
127
+ public function isCommentEditable($comment) {
128
  $editableTimeLimit = isset($this->optionsSerialized->commentEditableTime) ? $this->optionsSerialized->commentEditableTime : 0;
129
+ $commentTimestamp = strtotime($comment->comment_date);
130
+ $timeDiff = (current_time('timestamp') - $commentTimestamp);
131
  $editableTimeLimit = ($editableTimeLimit == 'unlimit') ? $timeDiff + 1 : intval($editableTimeLimit);
132
  return $editableTimeLimit && ($timeDiff < $editableTimeLimit);
133
  }
155
  $ip = $_SERVER['REMOTE_ADDR'];
156
  }
157
 
158
+ $ip = apply_filters('pre_comment_user_ip', $ip);
159
+
160
  if ($ip == '::1') {
161
  $ip = '127.0.0.1';
162
  }
580
  return $domain;
581
  }
582
 
583
+ public function fixLocalhostIp($ip) {
584
+ if (trim($ip) == '::1') {
585
+ $ip = '127.0.0.1';
586
+ }
587
+ return $ip;
588
+ }
589
+
590
  }
591