Version Description
- Fixed Bug : Manage subscriptions issue
Download this release
Release Info
Developer | AdvancedCoding |
Plugin | Comments – wpDiscuz |
Version | 2.2.10 |
Comparing to | |
See all releases |
Code changes from version 2.2.9 to 2.2.10
- comment-form/form.php +1 -1
- comment-form/tpl-comment.php +2 -2
- files/js/wc-ajax.js +1 -1
- files/js/wc-ajax.min.js +1 -1
- languages/wpdiscuz-fr_FR.po +1223 -1223
- languages/wpdiscuz-pt_PT.mo +0 -0
- languages/wpdiscuz-pt_PT.po +477 -400
- languages/wpdiscuz-ru_RU.mo +0 -0
- languages/wpdiscuz-ru_RU.po +1001 -323
- languages/wpdiscuz.pot +1207 -0
- options/options-layouts/settings-general.php +40 -40
- options/options-layouts/settings-live-update.php +17 -17
- options/options-layouts/settings-show-hide.php +11 -11
- options/options-layouts/settings-social.php +10 -10
- options/options-layouts/settings-style.php +18 -18
- options/options-layouts/settings-subscription.php +9 -9
- options/phrases-layout/phrases-comment.php +19 -19
- options/phrases-layout/phrases-datetime.php +18 -18
- options/phrases-layout/phrases-email.php +18 -18
- options/phrases-layout/phrases-form.php +21 -21
- options/phrases-layout/phrases-general.php +13 -13
- options/phrases-layout/phrases-notification.php +23 -23
- options/wc-options-serialize.php +92 -92
- options/wc-options.php +19 -19
- readme.txt +12 -5
- wc.php +21 -18
comment-form/form.php
CHANGED
@@ -248,7 +248,7 @@ $wc_validate_comment_text_length = (intval($wc_core->wc_options_serialized->wc_c
|
|
248 |
type="checkbox"
|
249 |
name="wc_comment_reply_notification-<?php echo $unique_id; ?>"/> <label
|
250 |
class="wc-label-comment-notify"
|
251 |
-
for="wc_notification_new_comment-<?php echo $unique_id; ?>"><?php _e('Participate in this discussion via email',
|
252 |
<?php
|
253 |
} else {
|
254 |
if ($current_user->ID && $wc_core->wc_db_helper->wc_has_post_notification($post->ID, $current_user->user_email)) {
|
248 |
type="checkbox"
|
249 |
name="wc_comment_reply_notification-<?php echo $unique_id; ?>"/> <label
|
250 |
class="wc-label-comment-notify"
|
251 |
+
for="wc_notification_new_comment-<?php echo $unique_id; ?>"><?php _e('Participate in this discussion via email', 'wpdiscuz'); ?></label>
|
252 |
<?php
|
253 |
} else {
|
254 |
if ($current_user->ID && $wc_core->wc_db_helper->wc_has_post_notification($post->ID, $current_user->user_email)) {
|
comment-form/tpl-comment.php
CHANGED
@@ -260,7 +260,7 @@ class WC_Comment_Template_Builder {
|
|
260 |
}
|
261 |
|
262 |
if (class_exists('Prompt_Comment_Form_Handling') && $this->wc_options_serialized->wc_use_postmatic_for_comment_notification) {
|
263 |
-
$output_form .= '<input id="wc_notification_new_comment-' . $unique_id . '" class="wc_notification_new_comment" value="wc_notification_new_comment" ' . $post_sub_status . 'type="checkbox" name="wc_comment_reply_notification-' . $unique_id . '"/> <label class="wc-label-comment-notify" for="wc_notification_new_comment-' . $unique_id . '">' . __('Participate in this discussion via email',
|
264 |
} else {
|
265 |
if ($current_user->ID && $this->wc_db_helper->wc_has_post_notification($comment->comment_post_ID, $current_user->user_email)) {
|
266 |
$wc_confirmation_phrase = ($wc_is_user_subscription_confirmed == 1) ? $this->wc_options_serialized->wc_phrases['wc_subscribed_on_post'] : $this->wc_options_serialized->wc_phrases['wc_confirm_email'];
|
@@ -385,7 +385,7 @@ class WC_Comment_Template_Builder {
|
|
385 |
$author_name = get_the_author_meta( 'display_name', $comment->user_id );
|
386 |
$author_name = $author_name ? $author_name : get_the_author_meta('user_login',$comment->user_id );
|
387 |
} else {
|
388 |
-
$author_name = $comment->comment_author ? $comment->comment_author : __('Anonymous',
|
389 |
}
|
390 |
return $author_name;
|
391 |
}
|
260 |
}
|
261 |
|
262 |
if (class_exists('Prompt_Comment_Form_Handling') && $this->wc_options_serialized->wc_use_postmatic_for_comment_notification) {
|
263 |
+
$output_form .= '<input id="wc_notification_new_comment-' . $unique_id . '" class="wc_notification_new_comment" value="wc_notification_new_comment" ' . $post_sub_status . 'type="checkbox" name="wc_comment_reply_notification-' . $unique_id . '"/> <label class="wc-label-comment-notify" for="wc_notification_new_comment-' . $unique_id . '">' . __('Participate in this discussion via email', 'wpdiscuz') . '</label>';
|
264 |
} else {
|
265 |
if ($current_user->ID && $this->wc_db_helper->wc_has_post_notification($comment->comment_post_ID, $current_user->user_email)) {
|
266 |
$wc_confirmation_phrase = ($wc_is_user_subscription_confirmed == 1) ? $this->wc_options_serialized->wc_phrases['wc_subscribed_on_post'] : $this->wc_options_serialized->wc_phrases['wc_confirm_email'];
|
385 |
$author_name = get_the_author_meta( 'display_name', $comment->user_id );
|
386 |
$author_name = $author_name ? $author_name : get_the_author_meta('user_login',$comment->user_id );
|
387 |
} else {
|
388 |
+
$author_name = $comment->comment_author ? $comment->comment_author : __('Anonymous', 'wpdiscuz');
|
389 |
}
|
390 |
return $author_name;
|
391 |
}
|
files/js/wc-ajax.js
CHANGED
@@ -92,7 +92,7 @@ jQuery(document).ready(function ($) {
|
|
92 |
var notification_type = '';
|
93 |
if (notification_type_radio.length && notification_type_radio != 'wc_notification_none') {
|
94 |
if (notification_type_radio == 'wc_notification_new_reply') {
|
95 |
-
notification_type = '
|
96 |
}
|
97 |
if (notification_type_radio == 'wc_notification_all_new_reply') {
|
98 |
notification_type = 'all_comment';
|
92 |
var notification_type = '';
|
93 |
if (notification_type_radio.length && notification_type_radio != 'wc_notification_none') {
|
94 |
if (notification_type_radio == 'wc_notification_new_reply') {
|
95 |
+
notification_type = 'comment';
|
96 |
}
|
97 |
if (notification_type_radio == 'wc_notification_all_new_reply') {
|
98 |
notification_type = 'all_comment';
|
files/js/wc-ajax.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(f){var D=f("#wc_home_url").val();var t=f("#wc_plugin_dir_url").val();var v;var l;var k;var r;var C;var j;var g;var y;var h;var m;var z;var d;var o=parseInt(f("#wc_comment_list_update_type").val());var e=parseInt(f("#wc_comment_list_update_timer").val());var i;var H;f(".wc_comment").autoGrow();f(document).delegate("#wc_openModalFormAction","click",function(){f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none")});f(document).delegate("#wc_openModalFormAction .close","click",function(){f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none")});d="<img width='64' height='64' src='"+D+"/"+t+"/files/img/loader/ajax-loader-200x200.gif' />";m=f("#wc_comments_offset");m.val("1");f(document).delegate(".wc_comment","focus",function(){var I=a(f(this));f("#wc-form-footer-"+I).slideDown(700)});f(document).delegate(".wc-reply-link","click",function(){var I=a(f(this));if(f(".wc_social_plugin_wrapper .wp-social-login-provider-list").length&&!(f("#wc-secondary-forms-social-content-"+I+" .wp-social-login-provider-list").length)){f(".wc_social_plugin_wrapper .wp-social-login-provider-list").clone().prependTo("#wc-secondary-forms-social-content-"+I)}else{if(f(".wc_social_plugin_wrapper .the_champ_login_container").length&&!(f("#wc-secondary-forms-social-content-"+I+" .the_champ_login_container").length)){f(".wc_social_plugin_wrapper .the_champ_login_container").clone().prependTo("#wc-secondary-forms-social-content-"+I)}else{if(f(".wc_social_plugin_wrapper .social_connect_form").length&&!(f("#wc-secondary-forms-social-content-"+I+" .social_connect_form").length)){f(".wc_social_plugin_wrapper .social_connect_form").clone().prependTo("#wc-secondary-forms-social-content-"+I)}else{if(f(".wc_social_plugin_wrapper .oneall_social_login_providers").length&&!(f("#wc-secondary-forms-social-content-"+I+" .oneall_social_login_providers").length)){f(".wc_social_plugin_wrapper .oneall_social_login .oneall_social_login_providers").clone().prependTo("#wc-secondary-forms-social-content-"+I)}}}}f("#wc-secondary-forms-wrapper-"+I).slideToggle(700)});f(document).delegate(".wc-share-link","click",function(){var I=a(f(this));f("#share_buttons_box-"+I).slideToggle(1000)});f(document).delegate(".wc_captcha_refresh_img","click",function(){var K=a(f(this));var I=f("#wc_comment_post_ID-"+K).val();var J=f("#wc_comment_parent-"+K).val();f("#wc_captcha_img-"+K).attr("src",D+"/"+t+"/captcha/captcha.php?comm_id="+I+"-"+J+"&r="+Math.random())});f(document).delegate(".wc_comm_submit","click",function(){h=f(this).attr("id");var L=h.substring(h.lastIndexOf("-")+1);v=f("#wc_name-"+L).val();l=f("#wc_email-"+L).val();r=(f("#wc_website-"+L).length)?f("#wc_website-"+L).val():"";k=f("textarea#wc_comment-"+L).val();C=f("#wc_captcha-"+L).val();j=f("#wc_comment_post_ID-"+L).val();g=f("#wc_comment_parent-"+L).val();y=f("#wc_comm_form-"+L);var M=f("input[name='wc_comment_reply_notification-"+L+"']:checked").length?f("input[name='wc_comment_reply_notification-"+L+"']:checked").val():"";var K="";if(c(h,j)){K=1}else{K=x(f(this).parents(".wc-comment"))}var I="";if(M.length&&M!="wc_notification_none"){if(M=="wc_notification_new_reply"){I="reply"}if(M=="wc_notification_all_new_reply"){I="all_comment"}if(M=="wc_notification_new_comment"){I="post"}}var J=true;if(!wpdiscuzValidator.checkAll(y)){J=false;f("#wc_captcha-"+L).val("");f("#wc_captcha_img-"+L).attr("src",D+"/"+t+"/captcha/captcha.php?comm_id="+j+"-"+g+"&r="+Math.random())}else{f("#wc_openModalFormAction .close").css("display","none");f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction > #wc_response_info").html(d)}if(J){f.ajax({type:"POST",url:wc_ajax_obj.url,data:{name:v,email:l,website:r,comment:k,captcha:C,comment_post_ID:j,comment_parent:g,comment_depth:K,notification_type:I,action:"wc_comms_via_ajax"}}).done(function(N){f("#wc_captcha_img-"+L).attr("src",D+"/"+t+"/captcha/captcha.php?comm_id="+j+"-"+g+"&r="+Math.random());try{var Q=f.parseJSON(N);z=parseInt(Q.wc_new_comment_id);if(Q.code===-1){var O="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction > #wc_response_info").html(O+Q.message)}else{if(Q.code===-2){var O="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction > #wc_response_info").html(O+Q.message);f("#wc_comment-"+L).val("");f(".wc_comm_form textarea").css("height","46px");if(h==="wc_comm-"+j+"_0"){f("#wc-form-footer-"+L).slideToggle(700)}else{f("#wc-secondary-forms-wrapper-"+L).slideToggle(700)}f.cookie("wc_author_name",v);f.cookie("wc_author_email",l);f.cookie("wc_author_website",r)}else{i=Q.wc_all_comments_count_new;f("#wc_comment-"+L).val("");f(".wc_comm_form textarea").css("height","46px");if(h==="wc_comm-"+j+"_0"){f(".wc-thread-wrapper").prepend(Q.message);f("#wc-form-footer-"+L).slideToggle(700);f("#wc_curr_user_comment_count").val(parseInt(f("#wc_curr_user_comment_count").val())+1)}else{f("#wc-secondary-forms-wrapper-"+L).slideToggle(700);if(Q.is_in_same_container==1){f("#wc-secondary-forms-wrapper-"+L).after(Q.message)}else{f("#wc-secondary-forms-wrapper-"+L).after(Q.message.replace("wc-reply","wc-reply wc-no-left-margin"))}}f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none");f.cookie("wc_author_name",v);f.cookie("wc_author_email",l);f.cookie("wc_author_website",r);f("#wpcomm .wc_name").val(v);f("#wpcomm .wc_email").val(l);f("#wpcomm .wc_website").val(r);if(f(".wc_header_text_count").length){f(".wc_header_text_count").val(parseInt(f(".wc_header_text_count").val())+1)}f.cookie("wc_all_comments_count_new",i)}}f("#wc_captcha-"+L).val("");f(".wc_tooltipster").tooltipster({offsetY:2});f(".wc_comm_form input").css("box-shadow","0 0 4px -2px #d4d0ba");f(".wc_comm_form textarea").css("box-shadow","0 0 4px -2px #d4d0ba");b(j,z,l,I);if(Q.code==1||Q.code==-2){f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_new_comment_id:z,action:"wpdiscuz_comment_redirect"}}).done(function(S){try{var R=f.parseJSON(S);if(R.code==1){setTimeout(function(){window.location.href=R.redirect_to},5000)}}catch(T){}})}}catch(P){f("#wc_captcha-"+L).val("");f(".wc_tooltipster").tooltipster({offsetY:2});f(".wc_comm_form input").css("box-shadow","0 0 4px -2px #d4d0ba");f(".wc_comm_form textarea").css("box-shadow","0 0 4px -2px #d4d0ba");var O="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");if(N.indexOf("<")>=0&&N.indexOf(">")>=0){f("#wc_openModalFormAction > #wc_response_info").html(O+P)}else{f("#wc_openModalFormAction > #wc_response_info").html(O+N)}}})}else{return false}});f(document).delegate(".wc_vote","click",function(){var K=a(f(this));var I=F(K);var J;f("#wc_openModalFormAction > #wc_response_info").html(d);f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");if(f(this).hasClass("wc-up")){J=1}else{J=-1}f.ajax({dateType:"json",type:"POST",url:wc_ajax_obj.url,data:{comment_ID:I,vote_type:J,action:"wc_vote_via_ajax"}}).done(function(L){var N=f.parseJSON(L);if(N.code!==-1){f("#vote-count-"+K).text(parseInt(f("#vote-count-"+K).text())+J);f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none")}else{var M="<a href='#close' title='Close' class='close'> </a>";f("#wc_response_info").html(M+N.message);f("#wc_openModalFormAction .close").css("display","block")}})});f(document).delegate(".wc-load-more-submit","click",function(){f("#wc_openModalFormAction > #wc_response_info").html(d);f("#wc_openModalFormAction .close").css("display","none");f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");var L=m.val();var M=E(f(this).attr("id"));var N=parseInt(f("#wc_parent_comments_count").val());var J=parseInt(f("#wc_parent_per_page").val());var K=(f("#wc_last_comment_id_before_update").val())?f("#wc_last_comment_id_before_update").val():0;var I=f("#wc_curr_user_comment_count").val();L=parseInt(L);L++;f.ajax({type:"POST",url:wc_ajax_obj.url,data:{comments_offset:L,wc_curr_user_comment_count:I,wc_post_id:M,wc_last_comment_id:K,action:"wc_load_more_comments"}}).done(function(O){var P=f.parseJSON(O);m.val(L);if(N<=(L*J)){f(".wc-load-more-submit-wrap").remove()}f(".wc-thread-wrapper").html(P.message);f("#wc_last_comment_id").val(P.wc_last_comment_id);f("#hidden_new_comment_count").val(P.hidden_new_comment_count);f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none");f(".wc_tooltipster").tooltipster({offsetY:2});s()})});f(document).delegate(".wc_new_comment","click",function(){h=f(".wc_main_comm_form input.wc_comm_submit").attr("id");var M=h.substring(h.lastIndexOf("-")+1);j=E(M);var K=f("#wc_last_new_comment_id").val();l=f.cookie("wc_author_email");var J=f("#wc_curr_user_comment_count").val();var L=m.val();var I="";f(".wc-thread-wrapper .wc-comment").each(function(){var N=f(this).attr("id");var O=N.substring(N.lastIndexOf("-")+1);I+=F(O)+","});f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_requested_comments_type:1,wc_last_comment_id:K,wc_post_id:j,wc_author_email:l,wc_comments_offset:L,wc_curr_user_comment_count:J,wc_visible_comments_ids:I,action:"wc_list_new_comments"}}).done(function(N){try{var P=f.parseJSON(N);if(P.code!=0){f(".wc-thread-wrapper").html(P.message);f("#wc_last_new_comment_id").val(P.wc_last_comment_id);f(".wc_new_comment").hide();f(document).delegate(".wc_new_loaded_comment","mouseenter",function(){if(f(this).parent(".wc-comment").hasClass("wc-reply")){f(this,".wc-comment-right").animate({backgroundColor:"#f8f8f8"},1500)}else{f(this,".wc-comment-right").animate({backgroundColor:"#fefefe"},1500)}f(this,".wc-comment-right").removeClass("wc_new_loaded_comment")})}}catch(O){console.log(O)}})});f(document).delegate(".wc_new_reply","click",function(){h=f(".wc_main_comm_form input.wc_comm_submit").attr("id");var M=h.substring(h.lastIndexOf("-")+1);j=E(M);var K=f("#wc_last_new_reply_id").val();l=f.cookie("wc_author_email");var J=f("#wc_curr_user_comment_count").val();var L=m.val();var I="";f(".wc-thread-wrapper .wc-comment").each(function(){var N=f(this).attr("id");var O=N.substring(N.lastIndexOf("-")+1);I+=F(O)+","});f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_requested_comments_type:2,wc_last_comment_id:K,wc_comments_offset:L,wc_curr_user_comment_count:J,wc_post_id:j,wc_author_email:l,wc_visible_comments_ids:I,action:"wc_list_new_comments"}}).done(function(N){try{var P=f.parseJSON(N);if(P.code!=0){f(".wc-thread-wrapper").html(P.message);f("#wc_last_new_reply_id").val(P.wc_last_comment_id);f(".wc_new_reply").hide()}}catch(O){console.log(O)}})});function a(J){var I=J.attr("id");var K=I.substring(I.lastIndexOf("-")+1);return K}function E(J){var I=J.substring(J.lastIndexOf("-")+1);I=I.substring(0,I.lastIndexOf("_"));return I}function F(J){var I=J.substring(J.indexOf("_")+1);return I}function x(K){var J=K.attr("class");var I=J.split(" ");var L="";f.each(I,function(M,N){if("wc_comment_level"===G(N,false)){L=G(N,true)}});return parseInt(L)+1}function G(I,J){var K="";if(J){K=I.substring(I.indexOf("-")+1)}else{K=I.substring(0,I.indexOf("-"))}return K}function c(J,I){return J==="wc_comm-"+I+"_0"}function q(){var I=f.cookie("wc_all_comments_count_new")?false:true;if(o==1){if(!u(I)){p()}}else{if(o==2){if(!u(I)){B()}}}}function p(){j=f("#wpdiscuz_current_post_id").val();var O=f("#wc_last_comment_id_before_update").val();var K=f("#wc_last_new_comment_id").val();var L=f("#wc_last_new_reply_id").val();var M=f("#wc_comments_offset").length?f("#wc_comments_offset").val():1;var N=f.cookie("wc_all_comments_count_old");var I=f("#wc_curr_user_comment_count").val();var J=f.cookie("wc_author_email");f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_author_email:J,wc_curr_user_comment_count:I,wc_last_comment_id:O,wc_last_new_comment_id:K,wc_last_new_reply_id:L,wc_all_comments_count_old:N,wc_comments_offset:M,wc_comment_list_update_type:o,wc_post_id:j,action:"wc_live_update"}}).done(function(P){n(P)})}function B(){h=f(".wc_main_comm_form input.wc_comm_submit").attr("id");var N=h.substring(h.lastIndexOf("-")+1);j=E(N);g=F(N);var L=f("#wc_comments_offset").length?f("#wc_comments_offset").val():1;var I=f("#wc_curr_user_comment_count").val();var M=f("#wc_last_comment_id").val();var J=f("#wc_last_new_comment_id").val();var K=f("#wc_last_new_reply_id").val();l=f.cookie("wc_author_email");f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_last_comment_id:M,wc_last_new_comment_id:J,wc_last_new_reply_id:K,wc_comment_list_update_type:o,wc_comments_offset:L,wc_curr_user_comment_count:I,wc_post_id:j,wc_author_email:l,action:"wc_live_update"}}).done(function(O){n(O)})}function n(I){try{var K=f.parseJSON(I);if(K.code==1){f(".wc-thread-wrapper").html(K.message);if(f(".wc_header_text_count").length){f(".wc_header_text_count").html(K.wc_all_comments_count_new)}f("#wc_last_comment_id").val(K.wc_last_comment_id)}else{if(K.code==2){if(K.wc_new_comment_count){f(".wc_new_comment_button_text").html(K.wc_new_comment_count+" "+K.wc_new_comment_button_text);f(".wc_new_comment").css("display","inline-block")}else{f(".wc_new_comment").css("display","none")}if(K.wc_new_reply_count){f(".wc_new_reply_button_text").html(K.wc_new_reply_count+" "+K.wc_new_reply_button_text);f(".wc_new_reply").css("display","inline-block")}else{f(".wc_new_reply").css("display","none")}}}s()}catch(J){console.log(J)}}function u(K){var J=f(".wc_secondary_form input.wc_field_input").is(":focus");var I=f(".wc_secondary_form textarea.wc_field_input").is(":focus");var M=false;var L=false;if(K){f(".wc_secondary_form input.wc_field_input").each(function(){if(f(this).val()!=""){M=true}})}else{f(".wc_secondary_form input.wc_field_captcha").each(function(){if(f(this).val()!=""){M=true}})}f(".wc_secondary_form textarea.wc_field_input").each(function(){if(f(this).val()!=""){L=true}});return J||I||M||L}if(o!=0){setInterval(q,e*1000)}function s(){if(f.cookie("wc_author_name")&&f.cookie("wc_author_email")){f(".wc_name").val(f.cookie("wc_author_name"));f(".wc_email").val(f.cookie("wc_author_email"))}}function b(J,L,I,K){f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_post_id:J,wc_comment_id:L,wc_notifcattion_type:K,wc_email:I,action:"wc_check_notification_type"}})}f(document).delegate(".wc_editable_comment","click",function(){var J=a(f(this));var I=F(J);f.ajax({type:"POST",url:wc_ajax_obj.url,data:{comment_id:I,action:"wc_get_editable_comment_content"}}).done(function(L){try{var O=f.parseJSON(L);if(O.code==1){H=O.message;var K='<textarea required="required" name="wc_comment" class="wc_comment wc_field_input wc_edit_comment" id="wc_edit_comment-'+J+'" style="min-height: 2em;">'+O.message+"</textarea>";f("#wc-comm-"+J+" > .wc-comment-right .wc-comment-text").replaceWith(K);document.getElementById("wc_edit_comment-"+J).focus();f("#wc_save_edited_comment-"+J).show();K="";f("#wc_editable_comment-"+J).hide();f("#wc_cancel_edit-"+J).show()}else{var M="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction > #wc_response_info").html(M+O.phrase_message)}}catch(N){console.log(N)}})});f(document).delegate(".wc_save_edited_comment","click",function(){var N=a(f(this));var J=F(N);var I=f("#wc-comm-"+N+" textarea#wc_edit_comment-"+N);var K=I.val();var L=true;var M=x(f(this).parents(".wc-comment"))-1;if(f.trim(K).length<=0){L=false}if(L){f("#wc_openModalFormAction .close").css("display","none");f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction > #wc_response_info").html(d);f.ajax({type:"POST",url:wc_ajax_obj.url,data:{comment_id:J,comment_content:K,comment_depth:M,action:"wc_save_edited_comment"}}).done(function(O){try{var R=f.parseJSON(O);if(R.code==1){f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none");A(N,R.message)}else{var P="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction > #wc_response_info").html(P+R.phrase_message)}I="";K=""}catch(Q){console.log(Q)}})}});f(document).delegate(".wc_cancel_edit","click",function(){var I=a(f(this));A(I,H)});function A(K,J){f("#wc_editable_comment-"+K).show();f("#wc_cancel_edit-"+K).hide();f("#wc_save_edited_comment-"+K).hide();var I='<div class="wc-comment-text">'+w(J)+"</div>";f("#wc-comm-"+K+" #wc_edit_comment-"+K).replaceWith(I)}function w(L,K){var J=(K||typeof K==="undefined")?"<br/>":"<br>";var I=(L+"").replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g,"$1"+J+"$2");return I.replace("<br><br>","<br/>")}f(".wc_tooltipster").tooltipster({offsetY:2})});
|
1 |
+
jQuery(document).ready(function(f){var E=f("#wc_home_url").val();var u=f("#wc_plugin_dir_url").val();var w;var l;var k;var s;var D;var j;var g;var z;var h;var n;var A;var d;var p=parseInt(f("#wc_comment_list_update_type").val());var e=parseInt(f("#wc_comment_list_update_timer").val());var i;var I;var m=f(".wc_website").attr("placeholder");f(".wc_comment").autoGrow();f(document).delegate("#wc_openModalFormAction","click",function(){f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none")});f(document).delegate("#wc_openModalFormAction .close","click",function(){f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none")});d="<img width='64' height='64' src='"+E+"/"+u+"/files/img/loader/ajax-loader-200x200.gif' />";n=f("#wc_comments_offset");n.val("1");f(document).delegate(".wc_comment","focus",function(){var J=a(f(this));f("#wc-form-footer-"+J).slideDown(700)});f(document).delegate(".wc-reply-link","click",function(){var J=a(f(this));if(f(".wc_social_plugin_wrapper .wp-social-login-provider-list").length&&!(f("#wc-secondary-forms-social-content-"+J+" .wp-social-login-provider-list").length)){f(".wc_social_plugin_wrapper .wp-social-login-provider-list").clone().prependTo("#wc-secondary-forms-social-content-"+J)}else{if(f(".wc_social_plugin_wrapper .the_champ_login_container").length&&!(f("#wc-secondary-forms-social-content-"+J+" .the_champ_login_container").length)){f(".wc_social_plugin_wrapper .the_champ_login_container").clone().prependTo("#wc-secondary-forms-social-content-"+J)}else{if(f(".wc_social_plugin_wrapper .social_connect_form").length&&!(f("#wc-secondary-forms-social-content-"+J+" .social_connect_form").length)){f(".wc_social_plugin_wrapper .social_connect_form").clone().prependTo("#wc-secondary-forms-social-content-"+J)}else{if(f(".wc_social_plugin_wrapper .oneall_social_login_providers").length&&!(f("#wc-secondary-forms-social-content-"+J+" .oneall_social_login_providers").length)){f(".wc_social_plugin_wrapper .oneall_social_login .oneall_social_login_providers").clone().prependTo("#wc-secondary-forms-social-content-"+J)}}}}f("#wc-secondary-forms-wrapper-"+J).slideToggle(700)});f(document).delegate(".wc-share-link","click",function(){var J=a(f(this));f("#share_buttons_box-"+J).slideToggle(1000)});f(document).delegate(".wc_captcha_refresh_img","click",function(){var L=a(f(this));var J=f("#wc_comment_post_ID-"+L).val();var K=f("#wc_comment_parent-"+L).val();f("#wc_captcha_img-"+L).attr("src",E+"/"+u+"/captcha/captcha.php?comm_id="+J+"-"+K+"&r="+Math.random())});f(document).delegate(".wc_comm_submit","click",function(){h=f(this).attr("id");var M=h.substring(h.lastIndexOf("-")+1);w=f("#wc_name-"+M).val();l=f("#wc_email-"+M).val();s=(f("#wc_website-"+M).length)?f("#wc_website-"+M).val():"";if(m==s){s=""}k=f("textarea#wc_comment-"+M).val();D=f("#wc_captcha-"+M).val();j=f("#wc_comment_post_ID-"+M).val();g=f("#wc_comment_parent-"+M).val();z=f("#wc_comm_form-"+M);var N=f("input[name='wc_comment_reply_notification-"+M+"']:checked").length?f("input[name='wc_comment_reply_notification-"+M+"']:checked").val():"";var L="";if(c(h,j)){L=1}else{L=y(f(this).parents(".wc-comment"))}var J="";if(N.length&&N!="wc_notification_none"){if(N=="wc_notification_new_reply"){J="comment"}if(N=="wc_notification_all_new_reply"){J="all_comment"}if(N=="wc_notification_new_comment"){J="post"}}var K=true;if(!wpdiscuzValidator.checkAll(z)){K=false;f("#wc_captcha-"+M).val("");f("#wc_captcha_img-"+M).attr("src",E+"/"+u+"/captcha/captcha.php?comm_id="+j+"-"+g+"&r="+Math.random())}else{f("#wc_openModalFormAction .close").css("display","none");f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction > #wc_response_info").html(d)}if(K){f.ajax({type:"POST",url:wc_ajax_obj.url,data:{name:w,email:l,website:s,comment:k,captcha:D,comment_post_ID:j,comment_parent:g,comment_depth:L,notification_type:J,action:"wc_comms_via_ajax"}}).done(function(O){f("#wc_captcha_img-"+M).attr("src",E+"/"+u+"/captcha/captcha.php?comm_id="+j+"-"+g+"&r="+Math.random());try{var R=f.parseJSON(O);A=parseInt(R.wc_new_comment_id);if(R.code===-1){var P="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction > #wc_response_info").html(P+R.message)}else{if(R.code===-2){var P="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction > #wc_response_info").html(P+R.message);f("#wc_comment-"+M).val("");f(".wc_comm_form textarea").css("height","46px");if(h==="wc_comm-"+j+"_0"){f("#wc-form-footer-"+M).slideToggle(700)}else{f("#wc-secondary-forms-wrapper-"+M).slideToggle(700)}f.cookie("wc_author_name",w);f.cookie("wc_author_email",l);f.cookie("wc_author_website",s)}else{i=R.wc_all_comments_count_new;f("#wc_comment-"+M).val("");f(".wc_comm_form textarea").css("height","46px");if(h==="wc_comm-"+j+"_0"){f(".wc-thread-wrapper").prepend(R.message);f("#wc-form-footer-"+M).slideToggle(700);f("#wc_curr_user_comment_count").val(parseInt(f("#wc_curr_user_comment_count").val())+1)}else{f("#wc-secondary-forms-wrapper-"+M).slideToggle(700);if(R.is_in_same_container==1){f("#wc-secondary-forms-wrapper-"+M).after(R.message)}else{f("#wc-secondary-forms-wrapper-"+M).after(R.message.replace("wc-reply","wc-reply wc-no-left-margin"))}}f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none");f.cookie("wc_author_name",w);f.cookie("wc_author_email",l);f.cookie("wc_author_website",s);f("#wpcomm .wc_name").val(w);f("#wpcomm .wc_email").val(l);f("#wpcomm .wc_website").val(s);if(f(".wc_header_text_count").length){f(".wc_header_text_count").val(parseInt(f(".wc_header_text_count").val())+1)}f.cookie("wc_all_comments_count_new",i)}}f("#wc_captcha-"+M).val("");f(".wc_tooltipster").tooltipster({offsetY:2});f(".wc_comm_form input").css("box-shadow","0 0 4px -2px #d4d0ba");f(".wc_comm_form textarea").css("box-shadow","0 0 4px -2px #d4d0ba");b(j,A,l,J);if(R.code==1||R.code==-2){f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_new_comment_id:A,action:"wpdiscuz_comment_redirect"}}).done(function(T){try{var S=f.parseJSON(T);if(S.code==1){setTimeout(function(){window.location.href=S.redirect_to},5000)}}catch(U){}})}}catch(Q){f("#wc_captcha-"+M).val("");f(".wc_tooltipster").tooltipster({offsetY:2});f(".wc_comm_form input").css("box-shadow","0 0 4px -2px #d4d0ba");f(".wc_comm_form textarea").css("box-shadow","0 0 4px -2px #d4d0ba");var P="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");if(O.indexOf("<")>=0&&O.indexOf(">")>=0){f("#wc_openModalFormAction > #wc_response_info").html(P+Q)}else{f("#wc_openModalFormAction > #wc_response_info").html(P+O)}}})}else{return false}});f(document).delegate(".wc_vote","click",function(){var L=a(f(this));var J=G(L);var K;f("#wc_openModalFormAction > #wc_response_info").html(d);f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");if(f(this).hasClass("wc-up")){K=1}else{K=-1}f.ajax({dateType:"json",type:"POST",url:wc_ajax_obj.url,data:{comment_ID:J,vote_type:K,action:"wc_vote_via_ajax"}}).done(function(M){var O=f.parseJSON(M);if(O.code!==-1){f("#vote-count-"+L).text(parseInt(f("#vote-count-"+L).text())+K);f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none")}else{var N="<a href='#close' title='Close' class='close'> </a>";f("#wc_response_info").html(N+O.message);f("#wc_openModalFormAction .close").css("display","block")}})});f(document).delegate(".wc-load-more-submit","click",function(){f("#wc_openModalFormAction > #wc_response_info").html(d);f("#wc_openModalFormAction .close").css("display","none");f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");var M=n.val();var N=F(f(this).attr("id"));var O=parseInt(f("#wc_parent_comments_count").val());var K=parseInt(f("#wc_parent_per_page").val());var L=(f("#wc_last_comment_id_before_update").val())?f("#wc_last_comment_id_before_update").val():0;var J=f("#wc_curr_user_comment_count").val();M=parseInt(M);M++;f.ajax({type:"POST",url:wc_ajax_obj.url,data:{comments_offset:M,wc_curr_user_comment_count:J,wc_post_id:N,wc_last_comment_id:L,action:"wc_load_more_comments"}}).done(function(P){var Q=f.parseJSON(P);n.val(M);if(O<=(M*K)){f(".wc-load-more-submit-wrap").remove()}f(".wc-thread-wrapper").html(Q.message);f("#wc_last_comment_id").val(Q.wc_last_comment_id);f("#hidden_new_comment_count").val(Q.hidden_new_comment_count);f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none");f(".wc_tooltipster").tooltipster({offsetY:2});t()})});f(document).delegate(".wc_new_comment","click",function(){h=f(".wc_main_comm_form input.wc_comm_submit").attr("id");var N=h.substring(h.lastIndexOf("-")+1);j=F(N);var L=f("#wc_last_new_comment_id").val();l=f.cookie("wc_author_email");var K=f("#wc_curr_user_comment_count").val();var M=n.val();var J="";f(".wc-thread-wrapper .wc-comment").each(function(){var O=f(this).attr("id");var P=O.substring(O.lastIndexOf("-")+1);J+=G(P)+","});f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_requested_comments_type:1,wc_last_comment_id:L,wc_post_id:j,wc_author_email:l,wc_comments_offset:M,wc_curr_user_comment_count:K,wc_visible_comments_ids:J,action:"wc_list_new_comments"}}).done(function(O){try{var Q=f.parseJSON(O);if(Q.code!=0){f(".wc-thread-wrapper").html(Q.message);f("#wc_last_new_comment_id").val(Q.wc_last_comment_id);f(".wc_new_comment").hide();f(document).delegate(".wc_new_loaded_comment","mouseenter",function(){if(f(this).parent(".wc-comment").hasClass("wc-reply")){f(this,".wc-comment-right").animate({backgroundColor:"#f8f8f8"},1500)}else{f(this,".wc-comment-right").animate({backgroundColor:"#fefefe"},1500)}f(this,".wc-comment-right").removeClass("wc_new_loaded_comment")})}}catch(P){console.log(P)}})});f(document).delegate(".wc_new_reply","click",function(){h=f(".wc_main_comm_form input.wc_comm_submit").attr("id");var N=h.substring(h.lastIndexOf("-")+1);j=F(N);var L=f("#wc_last_new_reply_id").val();l=f.cookie("wc_author_email");var K=f("#wc_curr_user_comment_count").val();var M=n.val();var J="";f(".wc-thread-wrapper .wc-comment").each(function(){var O=f(this).attr("id");var P=O.substring(O.lastIndexOf("-")+1);J+=G(P)+","});f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_requested_comments_type:2,wc_last_comment_id:L,wc_comments_offset:M,wc_curr_user_comment_count:K,wc_post_id:j,wc_author_email:l,wc_visible_comments_ids:J,action:"wc_list_new_comments"}}).done(function(O){try{var Q=f.parseJSON(O);if(Q.code!=0){f(".wc-thread-wrapper").html(Q.message);f("#wc_last_new_reply_id").val(Q.wc_last_comment_id);f(".wc_new_reply").hide()}}catch(P){console.log(P)}})});function a(K){var J=K.attr("id");var L=J.substring(J.lastIndexOf("-")+1);return L}function F(K){var J=K.substring(K.lastIndexOf("-")+1);J=J.substring(0,J.lastIndexOf("_"));return J}function G(K){var J=K.substring(K.indexOf("_")+1);return J}function y(L){var K=L.attr("class");var J=K.split(" ");var M="";f.each(J,function(N,O){if("wc_comment_level"===H(O,false)){M=H(O,true)}});return parseInt(M)+1}function H(J,K){var L="";if(K){L=J.substring(J.indexOf("-")+1)}else{L=J.substring(0,J.indexOf("-"))}return L}function c(K,J){return K==="wc_comm-"+J+"_0"}function r(){var J=f.cookie("wc_all_comments_count_new")?false:true;if(p==1){if(!v(J)){q()}}else{if(p==2){if(!v(J)){C()}}}}function q(){j=f("#wpdiscuz_current_post_id").val();var P=f("#wc_last_comment_id_before_update").val();var L=f("#wc_last_new_comment_id").val();var M=f("#wc_last_new_reply_id").val();var N=f("#wc_comments_offset").length?f("#wc_comments_offset").val():1;var O=f.cookie("wc_all_comments_count_old");var J=f("#wc_curr_user_comment_count").val();var K=f.cookie("wc_author_email");f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_author_email:K,wc_curr_user_comment_count:J,wc_last_comment_id:P,wc_last_new_comment_id:L,wc_last_new_reply_id:M,wc_all_comments_count_old:O,wc_comments_offset:N,wc_comment_list_update_type:p,wc_post_id:j,action:"wc_live_update"}}).done(function(Q){o(Q)})}function C(){h=f(".wc_main_comm_form input.wc_comm_submit").attr("id");var O=h.substring(h.lastIndexOf("-")+1);j=F(O);g=G(O);var M=f("#wc_comments_offset").length?f("#wc_comments_offset").val():1;var J=f("#wc_curr_user_comment_count").val();var N=f("#wc_last_comment_id").val();var K=f("#wc_last_new_comment_id").val();var L=f("#wc_last_new_reply_id").val();l=f.cookie("wc_author_email");f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_last_comment_id:N,wc_last_new_comment_id:K,wc_last_new_reply_id:L,wc_comment_list_update_type:p,wc_comments_offset:M,wc_curr_user_comment_count:J,wc_post_id:j,wc_author_email:l,action:"wc_live_update"}}).done(function(P){o(P)})}function o(J){try{var L=f.parseJSON(J);if(L.code==1){f(".wc-thread-wrapper").html(L.message);if(f(".wc_header_text_count").length){f(".wc_header_text_count").html(L.wc_all_comments_count_new)}f("#wc_last_comment_id").val(L.wc_last_comment_id)}else{if(L.code==2){if(L.wc_new_comment_count){f(".wc_new_comment_button_text").html(L.wc_new_comment_count+" "+L.wc_new_comment_button_text);f(".wc_new_comment").css("display","inline-block")}else{f(".wc_new_comment").css("display","none")}if(L.wc_new_reply_count){f(".wc_new_reply_button_text").html(L.wc_new_reply_count+" "+L.wc_new_reply_button_text);f(".wc_new_reply").css("display","inline-block")}else{f(".wc_new_reply").css("display","none")}}}t()}catch(K){console.log(K)}}function v(L){var K=f(".wc_secondary_form input.wc_field_input").is(":focus");var J=f(".wc_secondary_form textarea.wc_field_input").is(":focus");var N=false;var M=false;if(L){f(".wc_secondary_form input.wc_field_input").each(function(){if(f(this).val()!=""){N=true}})}else{f(".wc_secondary_form input.wc_field_captcha").each(function(){if(f(this).val()!=""){N=true}})}f(".wc_secondary_form textarea.wc_field_input").each(function(){if(f(this).val()!=""){M=true}});return K||J||N||M}if(p!=0){setInterval(r,e*1000)}function t(){if(f.cookie("wc_author_name")&&f.cookie("wc_author_email")){f(".wc_name").val(f.cookie("wc_author_name"));f(".wc_email").val(f.cookie("wc_author_email"))}}function b(K,M,J,L){f.ajax({type:"POST",url:wc_ajax_obj.url,data:{wc_post_id:K,wc_comment_id:M,wc_notifcattion_type:L,wc_email:J,action:"wc_check_notification_type"}})}f(document).delegate(".wc_editable_comment","click",function(){var K=a(f(this));var J=G(K);f.ajax({type:"POST",url:wc_ajax_obj.url,data:{comment_id:J,action:"wc_get_editable_comment_content"}}).done(function(M){try{var P=f.parseJSON(M);if(P.code==1){I=P.message;var L='<textarea required="required" name="wc_comment" class="wc_comment wc_field_input wc_edit_comment" id="wc_edit_comment-'+K+'" style="min-height: 2em;">'+P.message+"</textarea>";f("#wc-comm-"+K+" > .wc-comment-right .wc-comment-text").replaceWith(L);document.getElementById("wc_edit_comment-"+K).focus();f("#wc_save_edited_comment-"+K).show();L="";f("#wc_editable_comment-"+K).hide();f("#wc_cancel_edit-"+K).show()}else{var N="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction > #wc_response_info").html(N+P.phrase_message)}}catch(O){console.log(O)}})});f(document).delegate(".wc_save_edited_comment","click",function(){var O=a(f(this));var K=G(O);var J=f("#wc-comm-"+O+" textarea#wc_edit_comment-"+O);var L=J.val();var M=true;var N=y(f(this).parents(".wc-comment"))-1;if(f.trim(L).length<=0){M=false}if(M){f("#wc_openModalFormAction .close").css("display","none");f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction > #wc_response_info").html(d);f.ajax({type:"POST",url:wc_ajax_obj.url,data:{comment_id:K,comment_content:L,comment_depth:N,action:"wc_save_edited_comment"}}).done(function(P){try{var S=f.parseJSON(P);if(S.code==1){f("#wc_openModalFormAction").css("opacity","0");f("#wc_openModalFormAction").css("pointer-events","none");B(O,S.message)}else{var Q="<a href='#close' title='Close' class='close'> </a>";f("#wc_openModalFormAction").css("opacity","1");f("#wc_openModalFormAction").css("pointer-events","auto");f("#wc_openModalFormAction .close").css("display","block");f("#wc_openModalFormAction > #wc_response_info").html(Q+S.phrase_message)}J="";L=""}catch(R){console.log(R)}})}});f(document).delegate(".wc_cancel_edit","click",function(){var J=a(f(this));B(J,I)});function B(L,K){f("#wc_editable_comment-"+L).show();f("#wc_cancel_edit-"+L).hide();f("#wc_save_edited_comment-"+L).hide();var J='<div class="wc-comment-text">'+x(K)+"</div>";f("#wc-comm-"+L+" #wc_edit_comment-"+L).replaceWith(J)}function x(M,L){var K=(L||typeof L==="undefined")?"<br/>":"<br>";var J=(M+"").replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g,"$1"+K+"$2");return J.replace("<br><br>","<br/>")}f(".wc_tooltipster").tooltipster({offsetY:2})});
|
languages/wpdiscuz-fr_FR.po
CHANGED
@@ -1,1223 +1,1223 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: wpDiscuz - Wordpress Comments\n"
|
4 |
-
"POT-Creation-Date: 2015-05-28 23:58+0400\n"
|
5 |
-
"PO-Revision-Date: 2015-07-31 19:26+0200\n"
|
6 |
-
"Language-Team: advancedcoding <advancedcoding@mail.ru>\n"
|
7 |
-
"MIME-Version: 1.0\n"
|
8 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
-
"Content-Transfer-Encoding: 8bit\n"
|
10 |
-
"X-Generator: Poedit 1.8.3\n"
|
11 |
-
"X-Poedit-Basepath: ..\n"
|
12 |
-
"X-Poedit-WPHeader: wc.php\n"
|
13 |
-
"Plural-Forms: nplurals=2; plural=(n > 1);\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: \n"
|
19 |
-
"Language: fr_FR\n"
|
20 |
-
"X-Poedit-SearchPath-0: .\n"
|
21 |
-
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
-
|
23 |
-
#: comment-form/form.php:185 comment-form/tpl-comment.php:263
|
24 |
-
msgid "Participate in this discussion via email"
|
25 |
-
msgstr "Participer à cette discussion par e-mail"
|
26 |
-
|
27 |
-
#: comment-form/form.php:323
|
28 |
-
msgid "Connect with"
|
29 |
-
msgstr "Se connecter avec :"
|
30 |
-
|
31 |
-
#: comment-form/tpl-comment.php:174 options/phrases-layout/phrases-comment.php:27
|
32 |
-
#: options/wc-options-serialize.php:439
|
33 |
-
msgid "Edit"
|
34 |
-
msgstr "Éditer"
|
35 |
-
|
36 |
-
#: comment-form/tpl-comment.php:385 wc.php:321
|
37 |
-
msgid "Anonymous"
|
38 |
-
msgstr "Anonyme"
|
39 |
-
|
40 |
-
#: options/options-layouts/settings-general.php:2
|
41 |
-
msgid "General Settings"
|
42 |
-
msgstr "Paramètres généraux"
|
43 |
-
|
44 |
-
#: options/options-layouts/settings-general.php:7
|
45 |
-
msgid "Display comment form for post types:"
|
46 |
-
msgstr "Afficher le formulaire de commentaires pour les contenus de type :"
|
47 |
-
|
48 |
-
#: options/options-layouts/settings-general.php:28
|
49 |
-
msgid "User Must be registered to comment"
|
50 |
-
msgstr "L'utilisateur doit être connecté pour commenter"
|
51 |
-
|
52 |
-
#: options/options-layouts/settings-general.php:34
|
53 |
-
msgid "Yes"
|
54 |
-
msgstr "Oui"
|
55 |
-
|
56 |
-
#: options/options-layouts/settings-general.php:38
|
57 |
-
msgid "No"
|
58 |
-
msgstr "Non"
|
59 |
-
|
60 |
-
#: options/options-layouts/settings-general.php:46
|
61 |
-
msgid "Comment author must fill out name"
|
62 |
-
msgstr "L'auteur du commentaire doit entrer son nom"
|
63 |
-
|
64 |
-
#: options/options-layouts/settings-general.php:57
|
65 |
-
msgid "Comment author must fill out email"
|
66 |
-
msgstr "L'auteur du commentaire doit entrer son email"
|
67 |
-
|
68 |
-
#: options/options-layouts/settings-general.php:68
|
69 |
-
msgid "Show the latest comments on"
|
70 |
-
msgstr "Montrer les derniers commentaires sur"
|
71 |
-
|
72 |
-
#: options/options-layouts/settings-general.php:72
|
73 |
-
msgid "the top of the list"
|
74 |
-
msgstr "le haut de la liste"
|
75 |
-
|
76 |
-
#: options/options-layouts/settings-general.php:74
|
77 |
-
msgid "top of the threads"
|
78 |
-
msgstr "le haut des fils de discussion"
|
79 |
-
|
80 |
-
#: options/options-layouts/settings-general.php:76
|
81 |
-
msgid "bottom of the threads"
|
82 |
-
msgstr "le bas des fils de discussion"
|
83 |
-
|
84 |
-
#: options/options-layouts/settings-general.php:78
|
85 |
-
msgid "the bottom of the list"
|
86 |
-
msgstr "le bas de la liste"
|
87 |
-
|
88 |
-
#: options/options-layouts/settings-general.php:86
|
89 |
-
msgid "Comment Threads Per Page"
|
90 |
-
msgstr "Fils de discussion par page"
|
91 |
-
|
92 |
-
#: options/options-layouts/settings-general.php:97
|
93 |
-
msgid "Comment text max length"
|
94 |
-
msgstr "Longueur maxi du texte d'un commentaire"
|
95 |
-
|
96 |
-
#: options/options-layouts/settings-general.php:108
|
97 |
-
msgid "Comments max depth"
|
98 |
-
msgstr "Profondeur maxi des commentaires"
|
99 |
-
|
100 |
-
#: options/options-layouts/settings-general.php:113
|
101 |
-
msgid "Level"
|
102 |
-
msgstr "Niveau"
|
103 |
-
|
104 |
-
#: options/options-layouts/settings-general.php:114
|
105 |
-
#: options/options-layouts/settings-general.php:115
|
106 |
-
#: options/options-layouts/settings-general.php:116
|
107 |
-
#: options/options-layouts/settings-general.php:117
|
108 |
-
msgid "Levels"
|
109 |
-
msgstr "Niveaux"
|
110 |
-
|
111 |
-
#: options/options-layouts/settings-general.php:124
|
112 |
-
msgid "Comment text size in pixels"
|
113 |
-
msgstr "Taille du texte des commentaires en pixel"
|
114 |
-
|
115 |
-
#: options/options-layouts/settings-general.php:141
|
116 |
-
msgid "Allow comment editing for"
|
117 |
-
msgstr "Autoriser l'édition de commentaire pendant"
|
118 |
-
|
119 |
-
#: options/options-layouts/settings-general.php:146
|
120 |
-
msgid "Not Allow"
|
121 |
-
msgstr "Ne pas autoriser"
|
122 |
-
|
123 |
-
#: options/options-layouts/settings-general.php:147
|
124 |
-
#: options/options-layouts/settings-general.php:148
|
125 |
-
#: options/options-layouts/settings-live-update.php:41
|
126 |
-
#: options/options-layouts/settings-live-update.php:42
|
127 |
-
#: options/options-layouts/settings-live-update.php:43
|
128 |
-
msgid "Minutes"
|
129 |
-
msgstr "Minutes"
|
130 |
-
|
131 |
-
#: options/options-layouts/settings-general.php:149
|
132 |
-
#: options/phrases-layout/phrases-datetime.php:73
|
133 |
-
msgid "Hour"
|
134 |
-
msgstr "Heure"
|
135 |
-
|
136 |
-
#: options/options-layouts/settings-general.php:150
|
137 |
-
#: options/options-layouts/settings-general.php:151
|
138 |
-
msgid "Hours"
|
139 |
-
msgstr "Heures"
|
140 |
-
|
141 |
-
#: options/options-layouts/settings-general.php:158
|
142 |
-
msgid "Redirect first commenter to"
|
143 |
-
msgstr "Rediriger le premier commentateur vers"
|
144 |
-
|
145 |
-
#: options/options-layouts/settings-general.php:165
|
146 |
-
msgid "Do not redirect"
|
147 |
-
msgstr "Ne pas rediriger"
|
148 |
-
|
149 |
-
#: options/options-layouts/settings-general.php:174
|
150 |
-
msgid "Allow guests to vote on comments"
|
151 |
-
msgstr "Autoriser les invités à voter sur les commentaires"
|
152 |
-
|
153 |
-
#: options/options-layouts/settings-general.php:184
|
154 |
-
msgid "Load rest of all comments on clicking the [Load More Comments] button"
|
155 |
-
msgstr ""
|
156 |
-
"Charger l'ensemble des commentaires restants au clic sur le bouton [Charger plus de "
|
157 |
-
"Commentaires]"
|
158 |
-
|
159 |
-
#: options/options-layouts/settings-general.php:195
|
160 |
-
msgid "Use WordPress Date/Time format"
|
161 |
-
msgstr "Utiliser le format Date/Heure WordPress"
|
162 |
-
|
163 |
-
#: options/options-layouts/settings-general.php:196
|
164 |
-
msgid ""
|
165 |
-
"wpDiscuz shows Human Readable date format. If you check this option it'll show the "
|
166 |
-
"date/time format set in WordPress General Settings."
|
167 |
-
msgstr ""
|
168 |
-
"wpDiscuz affiche en format lisible par un humain. Si vous cliquez cette option, il "
|
169 |
-
"affichera en utilisant le format Date/Heure défini dans les Paramètres Généraux de "
|
170 |
-
"WordPress."
|
171 |
-
|
172 |
-
#: options/options-layouts/settings-general.php:203
|
173 |
-
msgid "Current Wordpress date/time format"
|
174 |
-
msgstr "Format Date/Heure actuel de WordPress"
|
175 |
-
|
176 |
-
#: options/options-layouts/settings-general.php:209
|
177 |
-
msgid "Use Plugin .PO/.MO files"
|
178 |
-
msgstr "Utiliser les fichiers de plugin .PO/.MO"
|
179 |
-
|
180 |
-
#: options/options-layouts/settings-general.php:210
|
181 |
-
msgid ""
|
182 |
-
"wpDiscuz phrase system allows you to translate all front-end phrases. However if you "
|
183 |
-
"have a multi-language website it'll not allow you to add more than one language "
|
184 |
-
"translation. The only way to get it is the plugin translation files (.PO / .MO). If "
|
185 |
-
"wpDiscuz has the languages you need you should check this option to disable phrase "
|
186 |
-
"system and it'll automatically translate all phrases based on language files "
|
187 |
-
"according to current language."
|
188 |
-
msgstr ""
|
189 |
-
"wpDiscuz phrase system allows you to translate all front-end phrases. However if you "
|
190 |
-
"have a multi-language website it'll not allow you to add more than one language "
|
191 |
-
"translation. The only way to get it is the plugin translation files (.PO / .MO). If "
|
192 |
-
"wpDiscuz has the languages you need you should check this option to disable phrase "
|
193 |
-
"system and it'll automatically translate all phrases based on language files "
|
194 |
-
"according to current language."
|
195 |
-
|
196 |
-
#: options/options-layouts/settings-general.php:222
|
197 |
-
msgid "Help wpDiscuz to grow allowing people to recognize which comment plugin you use"
|
198 |
-
msgstr ""
|
199 |
-
"Help wpDiscuz to grow allowing people to recognize which comment plugin you use"
|
200 |
-
|
201 |
-
#: options/options-layouts/settings-general.php:224
|
202 |
-
msgid ""
|
203 |
-
"Please check this option on to help wpDiscuz get more popularity as your thank to "
|
204 |
-
"the hard work we do for you totally free. This option adds a very small (16x16px) "
|
205 |
-
"icon under the comment section which will allow your site visitors recognize the "
|
206 |
-
"name of comment solution you use."
|
207 |
-
msgstr ""
|
208 |
-
"Please check this option on to help wpDiscuz get more popularity as your thank to "
|
209 |
-
"the hard work we do for you totally free. This option adds a very small (16x16px) "
|
210 |
-
"icon under the comment section which will allow your site visitors recognize the "
|
211 |
-
"name of comment solution you use."
|
212 |
-
|
213 |
-
#: options/options-layouts/settings-general.php:229
|
214 |
-
msgid "Thank you!"
|
215 |
-
msgstr "Merci !"
|
216 |
-
|
217 |
-
#: options/options-layouts/settings-live-update.php:2 options/wc-options.php:180
|
218 |
-
msgid "Live Update"
|
219 |
-
msgstr "Mise à jour en temps réel"
|
220 |
-
|
221 |
-
#: options/options-layouts/settings-live-update.php:8
|
222 |
-
msgid "Live update options"
|
223 |
-
msgstr "Options de mise à jour en temps réel"
|
224 |
-
|
225 |
-
#: options/options-layouts/settings-live-update.php:9
|
226 |
-
msgid ""
|
227 |
-
"If you use Shared Web Hosting you should make sure the \"Live Update\" function "
|
228 |
-
"doesn't overload your server resources. This function is good for VPS and Dedicated "
|
229 |
-
"Hosting Plans."
|
230 |
-
msgstr ""
|
231 |
-
"If you use Shared Web Hosting you should make sure the \"Live Update\" function "
|
232 |
-
"doesn't overload your server resources. This function is good for VPS and Dedicated "
|
233 |
-
"Hosting Plans."
|
234 |
-
|
235 |
-
#: options/options-layouts/settings-live-update.php:14
|
236 |
-
msgid "Never update"
|
237 |
-
msgstr "Ne jamais mettre à jour"
|
238 |
-
|
239 |
-
#: options/options-layouts/settings-live-update.php:16
|
240 |
-
msgid "Turn off \"Live Update\" function"
|
241 |
-
msgstr "Désactiver la fonction \"Mise à jour en temps réel\""
|
242 |
-
|
243 |
-
#: options/options-layouts/settings-live-update.php:18
|
244 |
-
msgid "Show new comment/reply buttons to update manualy"
|
245 |
-
msgstr ""
|
246 |
-
"Afficher les boutons Nouveau commentaire / Répondre pour mettre à jour manuellement"
|
247 |
-
|
248 |
-
#: options/options-layouts/settings-live-update.php:20
|
249 |
-
msgid "Always check for new comments and show update buttons"
|
250 |
-
msgstr ""
|
251 |
-
"Toujours vérifier pour de nouveaux commentaires et afficher les boutons de mise à "
|
252 |
-
"jour"
|
253 |
-
|
254 |
-
#: options/options-layouts/settings-live-update.php:22
|
255 |
-
msgid "Always update"
|
256 |
-
msgstr "Toujours mettre à jour"
|
257 |
-
|
258 |
-
#: options/options-layouts/settings-live-update.php:24
|
259 |
-
msgid "Always check for new comments and update automatically"
|
260 |
-
msgstr ""
|
261 |
-
"Toujours vérifier pour de nouveaux commentaires et mettre à jour automatiquement"
|
262 |
-
|
263 |
-
#: options/options-layouts/settings-live-update.php:32
|
264 |
-
msgid "Update comment list every"
|
265 |
-
msgstr "Mettre à jour la liste des commentaires toutes les"
|
266 |
-
|
267 |
-
#: options/options-layouts/settings-live-update.php:37
|
268 |
-
#: options/options-layouts/settings-live-update.php:38
|
269 |
-
#: options/options-layouts/settings-live-update.php:39
|
270 |
-
msgid "Seconds"
|
271 |
-
msgstr "Secondes"
|
272 |
-
|
273 |
-
#: options/options-layouts/settings-live-update.php:40
|
274 |
-
#: options/phrases-layout/phrases-datetime.php:95
|
275 |
-
msgid "Minute"
|
276 |
-
msgstr "Minutes"
|
277 |
-
|
278 |
-
#: options/options-layouts/settings-show-hide.php:2 options/wc-options.php:181
|
279 |
-
msgid "Show/Hide Components"
|
280 |
-
msgstr "Afficher / Masquer les Composants"
|
281 |
-
|
282 |
-
#: options/options-layouts/settings-show-hide.php:7
|
283 |
-
msgid "Show logged-in user name and logout link on top of main form"
|
284 |
-
msgstr ""
|
285 |
-
"Afficher le nom de l'utilisateur connecté et le lien de déconnexion en haut du "
|
286 |
-
"formulaire principal"
|
287 |
-
|
288 |
-
#: options/options-layouts/settings-show-hide.php:17
|
289 |
-
msgid "Hide Reply button for Guests"
|
290 |
-
msgstr "Masquer le bouton Répondre pour les Invités"
|
291 |
-
|
292 |
-
#: options/options-layouts/settings-show-hide.php:27
|
293 |
-
msgid "Hide Reply button for Members"
|
294 |
-
msgstr "Masquer le bouton Répondre pour les Membres"
|
295 |
-
|
296 |
-
#: options/options-layouts/settings-show-hide.php:37
|
297 |
-
msgid "Hide Author Titles"
|
298 |
-
msgstr "Masquer les titres des auteurs"
|
299 |
-
|
300 |
-
#: options/options-layouts/settings-show-hide.php:47
|
301 |
-
msgid "Hide Voting buttons"
|
302 |
-
msgstr "Masquer les boutons de vote"
|
303 |
-
|
304 |
-
#: options/options-layouts/settings-show-hide.php:57
|
305 |
-
msgid "Hide Share Buttons"
|
306 |
-
msgstr "Masquer les boutons de partage"
|
307 |
-
|
308 |
-
#: options/options-layouts/settings-show-hide.php:67
|
309 |
-
msgid "Hide the CAPTCHA field"
|
310 |
-
msgstr "Masquer le champ CAPTCHA"
|
311 |
-
|
312 |
-
#: options/options-layouts/settings-show-hide.php:77
|
313 |
-
msgid "Hide the Website URL field"
|
314 |
-
msgstr "Masquer le champ URL du site Web"
|
315 |
-
|
316 |
-
#: options/options-layouts/settings-show-hide.php:87
|
317 |
-
msgid "Hide header text"
|
318 |
-
msgstr "Masquer le texte d'entête"
|
319 |
-
|
320 |
-
#: options/options-layouts/settings-show-hide.php:97
|
321 |
-
msgid "Hide user avatar"
|
322 |
-
msgstr "Masquer l'avatar utilisateur"
|
323 |
-
|
324 |
-
#: options/options-layouts/settings-social.php:10
|
325 |
-
#: options/options-layouts/settings-social.php:12
|
326 |
-
#: options/options-layouts/settings-social.php:14 wc.php:1018
|
327 |
-
msgid "Settings"
|
328 |
-
msgstr "Réglages"
|
329 |
-
|
330 |
-
#: options/options-layouts/settings-social.php:19
|
331 |
-
#: options/options-layouts/settings-social.php:29
|
332 |
-
#: options/options-layouts/settings-social.php:39
|
333 |
-
msgid "Activate"
|
334 |
-
msgstr "Activer"
|
335 |
-
|
336 |
-
#: options/options-layouts/settings-social.php:23
|
337 |
-
#: options/options-layouts/settings-social.php:33
|
338 |
-
#: options/options-layouts/settings-social.php:43
|
339 |
-
msgid "View details/Install"
|
340 |
-
msgstr "Voir les détails / Installer"
|
341 |
-
|
342 |
-
#: options/options-layouts/settings-social.php:75 options/wc-options.php:184
|
343 |
-
msgid "Social Login"
|
344 |
-
msgstr "Connexion sociale"
|
345 |
-
|
346 |
-
#: options/options-layouts/settings-social.php:76
|
347 |
-
msgid ""
|
348 |
-
"You can use one of these most popular Social Login Plugins to allow your visitors "
|
349 |
-
"login and comment with Facebook, Twitter, Google+, Wordpress, VK, OK and lots of "
|
350 |
-
"other social network service accounts. All social login buttons will be fully "
|
351 |
-
"integrated with wpDiscuz comment forms."
|
352 |
-
msgstr ""
|
353 |
-
"You can use one of these most popular Social Login Plugins to allow your visitors "
|
354 |
-
"login and comment with Facebook, Twitter, Google+, Wordpress, VK, OK and lots of "
|
355 |
-
"other social network service accounts. All social login buttons will be fully "
|
356 |
-
"integrated with wpDiscuz comment forms."
|
357 |
-
|
358 |
-
#: options/options-layouts/settings-style.php:2 options/wc-options.php:183
|
359 |
-
msgid "Background and Colors"
|
360 |
-
msgstr "Fond et couleurs"
|
361 |
-
|
362 |
-
#: options/options-layouts/settings-style.php:7
|
363 |
-
msgid "Comment Form Background Color"
|
364 |
-
msgstr "Couleur de fond du formulaire de commentaire"
|
365 |
-
|
366 |
-
#: options/options-layouts/settings-style.php:10
|
367 |
-
#: options/options-layouts/settings-style.php:34
|
368 |
-
#: options/options-layouts/settings-style.php:58
|
369 |
-
#: options/options-layouts/settings-style.php:82
|
370 |
-
#: options/options-layouts/settings-style.php:107
|
371 |
-
#: options/options-layouts/settings-style.php:132
|
372 |
-
#: options/options-layouts/settings-style.php:155
|
373 |
-
#: options/options-layouts/settings-style.php:178
|
374 |
-
msgid "Example: #00ff00"
|
375 |
-
msgstr "Exemple: #00ff00"
|
376 |
-
|
377 |
-
#: options/options-layouts/settings-style.php:31
|
378 |
-
msgid "Comment Background Color"
|
379 |
-
msgstr "Couleur de fond des commentaires"
|
380 |
-
|
381 |
-
#: options/options-layouts/settings-style.php:55
|
382 |
-
msgid "Reply Background Color"
|
383 |
-
msgstr "Couleur de fond des réponses"
|
384 |
-
|
385 |
-
#: options/options-layouts/settings-style.php:79
|
386 |
-
msgid "Comment Text Color"
|
387 |
-
msgstr "Couleur des textes des commentaires"
|
388 |
-
|
389 |
-
#: options/options-layouts/settings-style.php:104
|
390 |
-
msgid "Author title color"
|
391 |
-
msgstr "Couleur du titre de l'auteur"
|
392 |
-
|
393 |
-
#: options/options-layouts/settings-style.php:129
|
394 |
-
msgid "Vote, Reply, Share, Edit links text colors"
|
395 |
-
msgstr "Couleur des textes des liens Voter, Répondre, Partager, Editer"
|
396 |
-
|
397 |
-
#: options/options-layouts/settings-style.php:152
|
398 |
-
msgid "Comment form fields border color"
|
399 |
-
msgstr "Couleur de bordure des champs du formulaire de commentaire"
|
400 |
-
|
401 |
-
#: options/options-layouts/settings-style.php:175
|
402 |
-
msgid "New loaded comments' background color"
|
403 |
-
msgstr "Couleur de fond des nouveaux commentaires chargés"
|
404 |
-
|
405 |
-
#: options/options-layouts/settings-style.php:199
|
406 |
-
msgid "Custom CSS Code"
|
407 |
-
msgstr "Code CSS personnalisé"
|
408 |
-
|
409 |
-
#: options/options-layouts/settings-subscription.php:2
|
410 |
-
msgid "Email Subscription Settings"
|
411 |
-
msgstr "Réglages de souscription des emails"
|
412 |
-
|
413 |
-
#: options/options-layouts/settings-subscription.php:7
|
414 |
-
msgid "Show \"Notify of all new follow-up comments\""
|
415 |
-
msgstr "Afficher \"Notifier de tous les nouveaux commentaires de suivi\""
|
416 |
-
|
417 |
-
#: options/options-layouts/settings-subscription.php:8
|
418 |
-
msgid "Show \"Notify of new replies to all my comments\""
|
419 |
-
msgstr "Afficher \"Notifier des nouvelles réponses à tous mes commentaires\""
|
420 |
-
|
421 |
-
#: options/options-layouts/settings-subscription.php:9
|
422 |
-
msgid "Show \"Notify of new replies to this comment\""
|
423 |
-
msgstr "Afficher \"Notifier de toutes les réponses à ce commentaire\""
|
424 |
-
|
425 |
-
#: options/options-layouts/settings-subscription.php:11
|
426 |
-
msgid ""
|
427 |
-
"Please keep all three or at least one of those options ON, otherwise users will not "
|
428 |
-
"have any option for email notifications and they'll not get any messages."
|
429 |
-
msgstr ""
|
430 |
-
"Please keep all three or at least one of those options ON, otherwise users will not "
|
431 |
-
"have any option for email notifications and they'll not get any messages."
|
432 |
-
|
433 |
-
#: options/options-layouts/settings-subscription.php:30
|
434 |
-
msgid "Use Postmatic for subscriptions and commenting by email"
|
435 |
-
msgstr "Utiliser Postmatic pour les souscriptions et commentaires par email"
|
436 |
-
|
437 |
-
#: options/options-layouts/settings-subscription.php:31
|
438 |
-
msgid ""
|
439 |
-
"Postmatic allows your users subscribe to comments. Instead of just being notified, "
|
440 |
-
"they add a reply right from their inbox."
|
441 |
-
msgstr ""
|
442 |
-
"Postmatic allows your users subscribe to comments. Instead of just being notified, "
|
443 |
-
"they add a reply right from their inbox."
|
444 |
-
|
445 |
-
#: options/options-layouts/settings-subscription.php:42
|
446 |
-
msgid "Keep selected the email notification of all new follow-up comments by default"
|
447 |
-
msgstr ""
|
448 |
-
"Garder la notification par email de tous les nouveaux commentaires de suivi "
|
449 |
-
"sélectionné par défaut"
|
450 |
-
|
451 |
-
#: options/options-layouts/settings-subscription.php:43
|
452 |
-
msgid ""
|
453 |
-
"If this option is checked-on, in Manage Subscriptions section of comment forms will "
|
454 |
-
"only be displayed the \"Notify of all new follow-up comments\" option and this "
|
455 |
-
"option will always be selected by default."
|
456 |
-
msgstr ""
|
457 |
-
"If this option is checked-on, in Manage Subscriptions section of comment forms will "
|
458 |
-
"only be displayed the \"Notify of all new follow-up comments\" option and this "
|
459 |
-
"option will always be selected by default."
|
460 |
-
|
461 |
-
#: options/phrases-layout/phrases-comment.php:2
|
462 |
-
msgid "Comment Template Phrases"
|
463 |
-
msgstr "Phrases Modèle Commentaire"
|
464 |
-
|
465 |
-
#: options/phrases-layout/phrases-comment.php:7 options/wc-options-serialize.php:437
|
466 |
-
msgid "Reply"
|
467 |
-
msgstr "Répondre"
|
468 |
-
|
469 |
-
#: options/phrases-layout/phrases-comment.php:17 options/wc-options-serialize.php:438
|
470 |
-
msgid "Share"
|
471 |
-
msgstr "Partager"
|
472 |
-
|
473 |
-
#: options/phrases-layout/phrases-comment.php:37 options/wc-options-serialize.php:440
|
474 |
-
msgid "Share On Facebook"
|
475 |
-
msgstr "Partager sur Facebook"
|
476 |
-
|
477 |
-
#: options/phrases-layout/phrases-comment.php:47 options/wc-options-serialize.php:441
|
478 |
-
msgid "Share On Twitter"
|
479 |
-
msgstr "Partager sur Twitter"
|
480 |
-
|
481 |
-
#: options/phrases-layout/phrases-comment.php:57 options/wc-options-serialize.php:442
|
482 |
-
msgid "Share On Google"
|
483 |
-
msgstr "Partager sur Google"
|
484 |
-
|
485 |
-
#: options/phrases-layout/phrases-comment.php:67 options/wc-options-serialize.php:443
|
486 |
-
msgid "Share On VKontakte"
|
487 |
-
msgstr "Partager sur VKontakte"
|
488 |
-
|
489 |
-
#: options/phrases-layout/phrases-comment.php:77 options/wc-options-serialize.php:444
|
490 |
-
msgid "Share On Odnoklassniki"
|
491 |
-
msgstr "Partager sur Odnoklassniki"
|
492 |
-
|
493 |
-
#: options/phrases-layout/phrases-comment.php:87 options/wc-options-serialize.php:445
|
494 |
-
msgid "Hide Replies"
|
495 |
-
msgstr "Masquer les réponses"
|
496 |
-
|
497 |
-
#: options/phrases-layout/phrases-comment.php:97 options/wc-options-serialize.php:446
|
498 |
-
msgid "Show Replies"
|
499 |
-
msgstr "Afficher les réponses"
|
500 |
-
|
501 |
-
#: options/phrases-layout/phrases-comment.php:107
|
502 |
-
msgid "Title For Guests"
|
503 |
-
msgstr "Titre pour Invités"
|
504 |
-
|
505 |
-
#: options/phrases-layout/phrases-comment.php:117
|
506 |
-
msgid "Title For Members"
|
507 |
-
msgstr "Titre pour Membres"
|
508 |
-
|
509 |
-
#: options/phrases-layout/phrases-comment.php:127
|
510 |
-
msgid "Title For Authors"
|
511 |
-
msgstr "Titre pour Auteurs"
|
512 |
-
|
513 |
-
#: options/phrases-layout/phrases-comment.php:137
|
514 |
-
msgid "Title For Admins"
|
515 |
-
msgstr "Titre pour Admins"
|
516 |
-
|
517 |
-
#: options/phrases-layout/phrases-comment.php:147 options/wc-options-serialize.php:488
|
518 |
-
msgid "Vote Up"
|
519 |
-
msgstr "Vote Pour"
|
520 |
-
|
521 |
-
#: options/phrases-layout/phrases-comment.php:157 options/wc-options-serialize.php:489
|
522 |
-
msgid "Vote Down"
|
523 |
-
msgstr "Vote Contre"
|
524 |
-
|
525 |
-
#: options/phrases-layout/phrases-comment.php:167
|
526 |
-
msgid "Save edited comment button text"
|
527 |
-
msgstr "Texte du bouton Enregistrer du commentaire édité"
|
528 |
-
|
529 |
-
#: options/phrases-layout/phrases-comment.php:171 options/wc-options-serialize.php:507
|
530 |
-
msgid "Save"
|
531 |
-
msgstr "Enregistrer"
|
532 |
-
|
533 |
-
#: options/phrases-layout/phrases-comment.php:177
|
534 |
-
msgid "Cancel comment editing button text"
|
535 |
-
msgstr "Texte du bouton Annuler du commentaire édité"
|
536 |
-
|
537 |
-
#: options/phrases-layout/phrases-comment.php:181 options/wc-options-serialize.php:508
|
538 |
-
msgid "Cancel"
|
539 |
-
msgstr "Annuler"
|
540 |
-
|
541 |
-
#: options/phrases-layout/phrases-datetime.php:2
|
542 |
-
msgid "Date/Time Phrases"
|
543 |
-
msgstr "Phrases Date / Heure"
|
544 |
-
|
545 |
-
#: options/phrases-layout/phrases-datetime.php:7
|
546 |
-
msgid "Year"
|
547 |
-
msgstr "Année"
|
548 |
-
|
549 |
-
#: options/phrases-layout/phrases-datetime.php:18
|
550 |
-
msgid "Years (Plural Form)"
|
551 |
-
msgstr "Années (au pluriel)"
|
552 |
-
|
553 |
-
#: options/phrases-layout/phrases-datetime.php:22
|
554 |
-
msgid "Years"
|
555 |
-
msgstr "Années"
|
556 |
-
|
557 |
-
#: options/phrases-layout/phrases-datetime.php:29
|
558 |
-
msgid "Month"
|
559 |
-
msgstr "Mois"
|
560 |
-
|
561 |
-
#: options/phrases-layout/phrases-datetime.php:40
|
562 |
-
msgid "Months (Plural Form)"
|
563 |
-
msgstr "Mois (au pluriel)"
|
564 |
-
|
565 |
-
#: options/phrases-layout/phrases-datetime.php:51
|
566 |
-
msgid "Day"
|
567 |
-
msgstr "Jour"
|
568 |
-
|
569 |
-
#: options/phrases-layout/phrases-datetime.php:62
|
570 |
-
msgid "Days (Plural Form)"
|
571 |
-
msgstr "Jours (au pluriel)"
|
572 |
-
|
573 |
-
#: options/phrases-layout/phrases-datetime.php:84
|
574 |
-
msgid "Hours (Plural Form)"
|
575 |
-
msgstr "Heures (au pluriel)"
|
576 |
-
|
577 |
-
#: options/phrases-layout/phrases-datetime.php:106
|
578 |
-
msgid "Minutes (Plural Form)"
|
579 |
-
msgstr "Minutes (au pluriel)"
|
580 |
-
|
581 |
-
#: options/phrases-layout/phrases-datetime.php:117
|
582 |
-
msgid "Second"
|
583 |
-
msgstr "Seconde"
|
584 |
-
|
585 |
-
#: options/phrases-layout/phrases-datetime.php:128
|
586 |
-
msgid "Seconds (Plural Form)"
|
587 |
-
msgstr "Secondes (au pluriel)"
|
588 |
-
|
589 |
-
#: options/phrases-layout/phrases-datetime.php:138
|
590 |
-
msgid "Commented \"right now\" text"
|
591 |
-
msgstr "Texte commenté \"A l'instant\""
|
592 |
-
|
593 |
-
#: options/phrases-layout/phrases-datetime.php:149
|
594 |
-
msgid "Ago text"
|
595 |
-
msgstr "Texte Il y a"
|
596 |
-
|
597 |
-
#: options/phrases-layout/phrases-datetime.php:160
|
598 |
-
msgid "\"Today\" text"
|
599 |
-
msgstr "Texte \"Aujourd'hui\""
|
600 |
-
|
601 |
-
#: options/phrases-layout/phrases-datetime.php:164 options/wc-options-serialize.php:482
|
602 |
-
msgid "Today"
|
603 |
-
msgstr "Aujourd'hui"
|
604 |
-
|
605 |
-
#: options/phrases-layout/phrases-email.php:2
|
606 |
-
msgid "Email Template Phrases"
|
607 |
-
msgstr "Phrases Email Modèle"
|
608 |
-
|
609 |
-
#: options/phrases-layout/phrases-email.php:7
|
610 |
-
msgid "Email Subject"
|
611 |
-
msgstr "Sujet de l'email"
|
612 |
-
|
613 |
-
#: options/phrases-layout/phrases-email.php:18
|
614 |
-
msgid "Email Message"
|
615 |
-
msgstr "Message de l'email"
|
616 |
-
|
617 |
-
#: options/phrases-layout/phrases-email.php:29
|
618 |
-
msgid "New Reply Subject"
|
619 |
-
msgstr "Sujet nouvelle réponse"
|
620 |
-
|
621 |
-
#: options/phrases-layout/phrases-email.php:33
|
622 |
-
#: options/phrases-layout/phrases-general.php:101 options/wc-options-serialize.php:453
|
623 |
-
msgid "New Reply"
|
624 |
-
msgstr "Nouvelle réponse"
|
625 |
-
|
626 |
-
#: options/phrases-layout/phrases-email.php:40
|
627 |
-
msgid "New Reply Message"
|
628 |
-
msgstr "Message Nouvelle Réponse"
|
629 |
-
|
630 |
-
#: options/phrases-layout/phrases-email.php:50
|
631 |
-
#: options/phrases-layout/phrases-email.php:54 options/wc-options-serialize.php:458
|
632 |
-
msgid "Unsubscribe"
|
633 |
-
msgstr "Désabonner"
|
634 |
-
|
635 |
-
#: options/phrases-layout/phrases-email.php:61
|
636 |
-
#: options/phrases-layout/phrases-email.php:65 options/wc-options-serialize.php:459
|
637 |
-
msgid "Ignore Subscription"
|
638 |
-
msgstr "Ignorer l'abonnement"
|
639 |
-
|
640 |
-
#: options/phrases-layout/phrases-email.php:72
|
641 |
-
#: options/phrases-layout/phrases-email.php:76 options/wc-options-serialize.php:461
|
642 |
-
msgid "Confirm your subscription"
|
643 |
-
msgstr "Confirmer votre abonnement"
|
644 |
-
|
645 |
-
#: options/phrases-layout/phrases-email.php:82
|
646 |
-
#: options/phrases-layout/phrases-email.php:86 options/wc-options-serialize.php:462
|
647 |
-
msgid "You've successfully confirmed your subscription."
|
648 |
-
msgstr "Vous avez confirmé votre abonnement avec succès."
|
649 |
-
|
650 |
-
#: options/phrases-layout/phrases-email.php:92
|
651 |
-
msgid "Subscribe Confirmation Email Subject"
|
652 |
-
msgstr "Sujet email confirmation abonnement"
|
653 |
-
|
654 |
-
#: options/phrases-layout/phrases-email.php:96 options/wc-options-serialize.php:463
|
655 |
-
#: wc.php:941
|
656 |
-
msgid "Subscribe Confirmation"
|
657 |
-
msgstr "Confirmation d'abonnement"
|
658 |
-
|
659 |
-
#: options/phrases-layout/phrases-email.php:103
|
660 |
-
msgid "Subscribe Confirmation Email Content"
|
661 |
-
msgstr "Contenu de l'email de confirmation d'abonnement"
|
662 |
-
|
663 |
-
#: options/phrases-layout/phrases-email.php:107 options/wc-options-serialize.php:464
|
664 |
-
#: wc.php:942
|
665 |
-
msgid ""
|
666 |
-
"Hi, <br/> You just subscribed for new comments on our website. This means you will "
|
667 |
-
"receive an email when new comments are posted according to subscription option "
|
668 |
-
"you've chosen. <br/> To activate, click confirm below. If you believe this is an "
|
669 |
-
"error, ignore this message and we'll never bother you again."
|
670 |
-
msgstr ""
|
671 |
-
"Bonjour.<br/><br/> Vous venez de vous abonner au suivi des commentaires sur notre "
|
672 |
-
"site. Cela signifie que vous recevrez un email quand de nouveaux commentaires seront "
|
673 |
-
"postés en fonction de l'option de souscription que vous avez choisie. <br/><br/>Pour "
|
674 |
-
"activer, cliquer le lien de confirmation ci-dessous. <br/><br/>Si vous pensez "
|
675 |
-
"recevoir ce message par erreur, ignorer ce message et nous ne vous solliciterons "
|
676 |
-
"plus."
|
677 |
-
|
678 |
-
#: options/phrases-layout/phrases-form.php:2
|
679 |
-
msgid "Form Template Phrases"
|
680 |
-
msgstr "Phrases Modèle Formulaire"
|
681 |
-
|
682 |
-
#: options/phrases-layout/phrases-form.php:7
|
683 |
-
msgid "Comment Field Start"
|
684 |
-
msgstr "Début du Champ Commentaire"
|
685 |
-
|
686 |
-
#: options/phrases-layout/phrases-form.php:17
|
687 |
-
msgid "Comment Field Join"
|
688 |
-
msgstr "Joindre du Champ Commentaire"
|
689 |
-
|
690 |
-
#: options/phrases-layout/phrases-form.php:27
|
691 |
-
msgid "Email Field"
|
692 |
-
msgstr "Champ Email"
|
693 |
-
|
694 |
-
#: options/phrases-layout/phrases-form.php:37
|
695 |
-
msgid "Name Field"
|
696 |
-
msgstr "Champ Nom"
|
697 |
-
|
698 |
-
#: options/phrases-layout/phrases-form.php:47
|
699 |
-
msgid "WebSite URL Field"
|
700 |
-
msgstr "Champ URL du site Web"
|
701 |
-
|
702 |
-
#: options/phrases-layout/phrases-form.php:57
|
703 |
-
msgid "CAPTCHA Field"
|
704 |
-
msgstr "Champ CAPTCHA"
|
705 |
-
|
706 |
-
#: options/phrases-layout/phrases-form.php:67
|
707 |
-
msgid "Submit Button"
|
708 |
-
msgstr "Bouton Soumettre"
|
709 |
-
|
710 |
-
#: options/phrases-layout/phrases-form.php:77
|
711 |
-
#: options/phrases-layout/phrases-form.php:81 options/wc-options-serialize.php:430
|
712 |
-
msgid "Manage Subscriptions"
|
713 |
-
msgstr "Gérer les Abonnements"
|
714 |
-
|
715 |
-
#: options/phrases-layout/phrases-form.php:87
|
716 |
-
msgid "Notify \"None\""
|
717 |
-
msgstr "Notifier \"Personne\""
|
718 |
-
|
719 |
-
#: options/phrases-layout/phrases-form.php:91 options/wc-options-serialize.php:431
|
720 |
-
msgid "None"
|
721 |
-
msgstr "Aucun"
|
722 |
-
|
723 |
-
#: options/phrases-layout/phrases-form.php:97
|
724 |
-
msgid "Notify on new comments (checkbox)"
|
725 |
-
msgstr "Notifier sur les nouveaux commentaires (case à cocher)"
|
726 |
-
|
727 |
-
#: options/phrases-layout/phrases-form.php:101 options/wc-options-serialize.php:432
|
728 |
-
msgid "Notify of all new follow-up comments"
|
729 |
-
msgstr "Notifier de toutes les réponses et tous les commentaires"
|
730 |
-
|
731 |
-
#: options/phrases-layout/phrases-form.php:108
|
732 |
-
msgid "Notify on all new replies (checkbox)"
|
733 |
-
msgstr "Notifier de toutes les nouvelles réponses (case à cocher)"
|
734 |
-
|
735 |
-
#: options/phrases-layout/phrases-form.php:112 options/wc-options-serialize.php:433
|
736 |
-
msgid "Notify of new replies to all my comments"
|
737 |
-
msgstr "Notifier des nouvelles réponses à tous mes commentaires"
|
738 |
-
|
739 |
-
#: options/phrases-layout/phrases-form.php:119
|
740 |
-
msgid "Notify on new replies (checkbox)"
|
741 |
-
msgstr "Notifier des nouvelles réponses (case à cocher)"
|
742 |
-
|
743 |
-
#: options/phrases-layout/phrases-form.php:123 options/wc-options-serialize.php:434
|
744 |
-
msgid "Notify of new replies to this comment"
|
745 |
-
msgstr "Notifier des nouvelles réponses à ce commentaire"
|
746 |
-
|
747 |
-
#: options/phrases-layout/phrases-form.php:129
|
748 |
-
msgid "Subscribed on this comment replies"
|
749 |
-
msgstr "Abonné aux réponses de ce commentaire"
|
750 |
-
|
751 |
-
#: options/phrases-layout/phrases-form.php:139
|
752 |
-
msgid "Subscribed on all your comments replies"
|
753 |
-
msgstr "Abonné aux réponses à tous vos commentaires"
|
754 |
-
|
755 |
-
#: options/phrases-layout/phrases-form.php:149
|
756 |
-
msgid "Subscribed on this post"
|
757 |
-
msgstr "Abonné à cet article"
|
758 |
-
|
759 |
-
#: options/phrases-layout/phrases-general.php:2
|
760 |
-
msgid "General Phrases"
|
761 |
-
msgstr "Phrases Général"
|
762 |
-
|
763 |
-
#: options/phrases-layout/phrases-general.php:7 options/wc-options-serialize.php:418
|
764 |
-
msgid "Leave a Reply"
|
765 |
-
msgstr "Poster un Commentaire"
|
766 |
-
|
767 |
-
#: options/phrases-layout/phrases-general.php:17
|
768 |
-
msgid "Be the first to comment"
|
769 |
-
msgstr "Soyez le premier à commenter"
|
770 |
-
|
771 |
-
#: options/phrases-layout/phrases-general.php:27 options/wc-options-serialize.php:420
|
772 |
-
#: options/wc-options.php:353
|
773 |
-
msgid "Comment"
|
774 |
-
msgstr "Commentaire"
|
775 |
-
|
776 |
-
#: options/phrases-layout/phrases-general.php:37
|
777 |
-
msgid "Comment (Plural Form)"
|
778 |
-
msgstr "Commentaire (au pluriel)"
|
779 |
-
|
780 |
-
#: options/phrases-layout/phrases-general.php:47
|
781 |
-
msgid "On"
|
782 |
-
msgstr "Marche"
|
783 |
-
|
784 |
-
#: options/phrases-layout/phrases-general.php:57
|
785 |
-
msgid "Load More Button"
|
786 |
-
msgstr "Bouton Afficher plus"
|
787 |
-
|
788 |
-
#: options/phrases-layout/phrases-general.php:67 options/wc-options-serialize.php:436
|
789 |
-
msgid "Load Rest of Comments"
|
790 |
-
msgstr "Afficher le reste des Commentaires"
|
791 |
-
|
792 |
-
#: options/phrases-layout/phrases-general.php:77
|
793 |
-
msgid "Button text if has new comment"
|
794 |
-
msgstr "Bouton texte si nouveau commentaire"
|
795 |
-
|
796 |
-
#: options/phrases-layout/phrases-general.php:81 options/wc-options-serialize.php:451
|
797 |
-
msgid "New Comment"
|
798 |
-
msgstr "Nouveau Commentaire"
|
799 |
-
|
800 |
-
#: options/phrases-layout/phrases-general.php:87
|
801 |
-
msgid "Button text if has new comments (Plural Form)"
|
802 |
-
msgstr "Bouton texte si nouveau commentaire (au pluriel)"
|
803 |
-
|
804 |
-
#: options/phrases-layout/phrases-general.php:91
|
805 |
-
msgid "New Comments"
|
806 |
-
msgstr "Nouveaux Commentaires"
|
807 |
-
|
808 |
-
#: options/phrases-layout/phrases-general.php:97
|
809 |
-
msgid "Button text if has new reply"
|
810 |
-
msgstr "Bouton texte si nouvelles réponses"
|
811 |
-
|
812 |
-
#: options/phrases-layout/phrases-general.php:107
|
813 |
-
msgid "Button text if has new replies (Plural Form)"
|
814 |
-
msgstr "Bouton texte si nouvelles réponses (au pluriel)"
|
815 |
-
|
816 |
-
#: options/phrases-layout/phrases-general.php:111
|
817 |
-
msgid "New Replies"
|
818 |
-
msgstr "Nouvelles Réponses"
|
819 |
-
|
820 |
-
#: options/phrases-layout/phrases-general.php:117
|
821 |
-
msgid "Text on load more button if has new comment(s)"
|
822 |
-
msgstr "Texte bouton afficher plus si nouveaux commentaires"
|
823 |
-
|
824 |
-
#: options/phrases-layout/phrases-general.php:121 options/wc-options-serialize.php:503
|
825 |
-
msgid "New"
|
826 |
-
msgstr "Nouveau"
|
827 |
-
|
828 |
-
#: options/phrases-layout/phrases-notification.php:2
|
829 |
-
msgid "Notification Phrases"
|
830 |
-
msgstr "Phrases Notification"
|
831 |
-
|
832 |
-
#: options/phrases-layout/phrases-notification.php:7
|
833 |
-
#: options/wc-options-serialize.php:460
|
834 |
-
msgid "You've successfully unsubscribed."
|
835 |
-
msgstr "Vous vous êtes désabonné avec succès."
|
836 |
-
|
837 |
-
#: options/phrases-layout/phrases-notification.php:18
|
838 |
-
msgid "Error message for empty field"
|
839 |
-
msgstr "Message d'erreur pour champ vide"
|
840 |
-
|
841 |
-
#: options/phrases-layout/phrases-notification.php:28
|
842 |
-
msgid "Error message for invalid email field"
|
843 |
-
msgstr "Message d'erreur pour champ email invalide"
|
844 |
-
|
845 |
-
#: options/phrases-layout/phrases-notification.php:38
|
846 |
-
msgid "Error message for invalid website url field"
|
847 |
-
msgstr "Message d'erreur pour champ URL site Web invalide"
|
848 |
-
|
849 |
-
#: options/phrases-layout/phrases-notification.php:48
|
850 |
-
#: options/wc-options-serialize.php:483
|
851 |
-
msgid "You must be"
|
852 |
-
msgstr "Vous devez"
|
853 |
-
|
854 |
-
#: options/phrases-layout/phrases-notification.php:58
|
855 |
-
msgid "Logged in as"
|
856 |
-
msgstr "Connecté en tant que"
|
857 |
-
|
858 |
-
#: options/phrases-layout/phrases-notification.php:68
|
859 |
-
#: options/wc-options-serialize.php:485
|
860 |
-
msgid "Log out"
|
861 |
-
msgstr "Déconnecter"
|
862 |
-
|
863 |
-
#: options/phrases-layout/phrases-notification.php:78
|
864 |
-
msgid "Logged In"
|
865 |
-
msgstr "Connecté"
|
866 |
-
|
867 |
-
#: options/phrases-layout/phrases-notification.php:88
|
868 |
-
msgid "To post a comment"
|
869 |
-
msgstr "Pour poster un commentaire"
|
870 |
-
|
871 |
-
#: options/phrases-layout/phrases-notification.php:98
|
872 |
-
#: options/wc-options-serialize.php:490
|
873 |
-
msgid "Vote Counted"
|
874 |
-
msgstr "Votes comptabilisés"
|
875 |
-
|
876 |
-
#: options/phrases-layout/phrases-notification.php:108
|
877 |
-
msgid "You can vote only 1 time"
|
878 |
-
msgstr "Vous pouvez voter une seule fois"
|
879 |
-
|
880 |
-
#: options/phrases-layout/phrases-notification.php:118
|
881 |
-
#: options/wc-options-serialize.php:492
|
882 |
-
msgid "Voting Error"
|
883 |
-
msgstr "Erreur sur vote"
|
884 |
-
|
885 |
-
#: options/phrases-layout/phrases-notification.php:128
|
886 |
-
msgid "Login To Vote"
|
887 |
-
msgstr "Se connecter pour voter"
|
888 |
-
|
889 |
-
#: options/phrases-layout/phrases-notification.php:138
|
890 |
-
msgid "You Cannot Vote On Your Comment"
|
891 |
-
msgstr "Vous ne pouvez pas voter sur votre Commentaire"
|
892 |
-
|
893 |
-
#: options/phrases-layout/phrases-notification.php:148
|
894 |
-
msgid "You are not allowed to vote for this comment (Voting from same IP)"
|
895 |
-
msgstr "Vous n'êtes pas autorisé à voter pour ce commentaire (Vote depuis même IP)"
|
896 |
-
|
897 |
-
#: options/phrases-layout/phrases-notification.php:158
|
898 |
-
#: options/wc-options-serialize.php:496
|
899 |
-
msgid "Invalid Captcha Code"
|
900 |
-
msgstr "Code Captcha invalide"
|
901 |
-
|
902 |
-
#: options/phrases-layout/phrases-notification.php:168
|
903 |
-
#: options/wc-options-serialize.php:497
|
904 |
-
msgid "Some of field value is invalid"
|
905 |
-
msgstr "Une partie du champ est invalide"
|
906 |
-
|
907 |
-
#: options/phrases-layout/phrases-notification.php:178
|
908 |
-
msgid "Comment waiting moderation"
|
909 |
-
msgstr "Commentaire en attente de modération"
|
910 |
-
|
911 |
-
#: options/phrases-layout/phrases-notification.php:188
|
912 |
-
msgid "Message if comment content length is too long"
|
913 |
-
msgstr "Message si le contenu du commentaire est trop long"
|
914 |
-
|
915 |
-
#: options/phrases-layout/phrases-notification.php:198
|
916 |
-
msgid "Message if comment was not updated"
|
917 |
-
msgstr "Message si le commentaire n'a pas été mis à jour"
|
918 |
-
|
919 |
-
#: options/phrases-layout/phrases-notification.php:202
|
920 |
-
#: options/wc-options-serialize.php:504
|
921 |
-
msgid "Sorry, the comment was not updated"
|
922 |
-
msgstr "Désolé, le commentaire n'a pas été mis à jour"
|
923 |
-
|
924 |
-
#: options/phrases-layout/phrases-notification.php:208
|
925 |
-
msgid "Message if comment no longer possible to edit"
|
926 |
-
msgstr "Message s'il n'est plus possible d'éditer le commentaire"
|
927 |
-
|
928 |
-
#: options/phrases-layout/phrases-notification.php:212
|
929 |
-
#: options/wc-options-serialize.php:505
|
930 |
-
msgid "Sorry, this comment no longer possible to edit"
|
931 |
-
msgstr "Désolé, il n'est plus possible d'éditer ce commentaire"
|
932 |
-
|
933 |
-
#: options/phrases-layout/phrases-notification.php:219
|
934 |
-
msgid "Message if comment text not changed"
|
935 |
-
msgstr "Message si le texte du commentaire est inchangé"
|
936 |
-
|
937 |
-
#: options/phrases-layout/phrases-notification.php:223
|
938 |
-
msgid "TYou've not made any changes"
|
939 |
-
msgstr "Vous n'avez fait aucune modification"
|
940 |
-
|
941 |
-
#: options/wc-options-serialize.php:419
|
942 |
-
msgid "Be the First to Comment!"
|
943 |
-
msgstr "Soyez le premier à commenter !"
|
944 |
-
|
945 |
-
#: options/wc-options-serialize.php:421
|
946 |
-
msgid "Comments"
|
947 |
-
msgstr "Commentaires"
|
948 |
-
|
949 |
-
#: options/wc-options-serialize.php:422
|
950 |
-
msgid "on"
|
951 |
-
msgstr "sur"
|
952 |
-
|
953 |
-
#: options/wc-options-serialize.php:423
|
954 |
-
msgid "Start the discussion"
|
955 |
-
msgstr "Démarrer la discussion"
|
956 |
-
|
957 |
-
#: options/wc-options-serialize.php:424
|
958 |
-
msgid "Join the discussion"
|
959 |
-
msgstr "Rejoindre la discussion"
|
960 |
-
|
961 |
-
#: options/wc-options-serialize.php:425 options/wc-options.php:355
|
962 |
-
msgid "Email"
|
963 |
-
msgstr "Email"
|
964 |
-
|
965 |
-
#: options/wc-options-serialize.php:426
|
966 |
-
msgid "Name"
|
967 |
-
msgstr "Nom"
|
968 |
-
|
969 |
-
#: options/wc-options-serialize.php:427
|
970 |
-
msgid "WebSite URL"
|
971 |
-
msgstr "URL du site Web"
|
972 |
-
|
973 |
-
#: options/wc-options-serialize.php:428
|
974 |
-
msgid "Please insert the code above to comment"
|
975 |
-
msgstr "Merci d'insérer le code au dessus du commentaire"
|
976 |
-
|
977 |
-
#: options/wc-options-serialize.php:429
|
978 |
-
msgid "Post Comment"
|
979 |
-
msgstr "Poster le Commentaire"
|
980 |
-
|
981 |
-
#: options/wc-options-serialize.php:435
|
982 |
-
msgid "Load More Comments"
|
983 |
-
msgstr "Afficher plus de Commentaires"
|
984 |
-
|
985 |
-
#: options/wc-options-serialize.php:447
|
986 |
-
msgid "Guest"
|
987 |
-
msgstr "Invité"
|
988 |
-
|
989 |
-
#: options/wc-options-serialize.php:448
|
990 |
-
msgid "Member"
|
991 |
-
msgstr "Membre"
|
992 |
-
|
993 |
-
#: options/wc-options-serialize.php:449
|
994 |
-
msgid "Author"
|
995 |
-
msgstr "Auteur"
|
996 |
-
|
997 |
-
#: options/wc-options-serialize.php:450
|
998 |
-
msgid "Admin"
|
999 |
-
msgstr "Admin"
|
1000 |
-
|
1001 |
-
#: options/wc-options-serialize.php:452
|
1002 |
-
msgid "New comment on the discussion section you've been interested in"
|
1003 |
-
msgstr ""
|
1004 |
-
"Nouveau commentaire dans une section de la discussion à laquelle vous vous êtes "
|
1005 |
-
"intéressé"
|
1006 |
-
|
1007 |
-
#: options/wc-options-serialize.php:454
|
1008 |
-
msgid "New reply on the discussion section you've been interested in"
|
1009 |
-
msgstr ""
|
1010 |
-
"Nouvelle réponse dans une section de la discussion à laquelle vous vous êtes "
|
1011 |
-
"intéressé"
|
1012 |
-
|
1013 |
-
#: options/wc-options-serialize.php:455
|
1014 |
-
msgid "You're subscribed for new replies on this comment"
|
1015 |
-
msgstr "Vous êtes abonné aux nouvelles réponses sur ce commentaire"
|
1016 |
-
|
1017 |
-
#: options/wc-options-serialize.php:456
|
1018 |
-
msgid "You're subscribed for new replies on all your comments"
|
1019 |
-
msgstr "Vous êtes abonné aux nouvelles réponses à tous vos commentaires"
|
1020 |
-
|
1021 |
-
#: options/wc-options-serialize.php:457
|
1022 |
-
msgid "You're subscribed for new follow-up comments on this post"
|
1023 |
-
msgstr "Vous êtes abonné à tous les commentaires de cet article"
|
1024 |
-
|
1025 |
-
#: options/wc-options-serialize.php:465
|
1026 |
-
msgid "please fill out this field to comment"
|
1027 |
-
msgstr "Merci de compléter ce champ pour commenter"
|
1028 |
-
|
1029 |
-
#: options/wc-options-serialize.php:466
|
1030 |
-
msgid "email address is invalid"
|
1031 |
-
msgstr "Adresse email invalide"
|
1032 |
-
|
1033 |
-
#: options/wc-options-serialize.php:467
|
1034 |
-
msgid "url is invalid"
|
1035 |
-
msgstr "URL invalide"
|
1036 |
-
|
1037 |
-
#: options/wc-options-serialize.php:468
|
1038 |
-
msgid "year"
|
1039 |
-
msgstr "année"
|
1040 |
-
|
1041 |
-
#: options/wc-options-serialize.php:469
|
1042 |
-
msgid "years"
|
1043 |
-
msgstr "années"
|
1044 |
-
|
1045 |
-
#: options/wc-options-serialize.php:470
|
1046 |
-
msgid "month"
|
1047 |
-
msgstr "mois"
|
1048 |
-
|
1049 |
-
#: options/wc-options-serialize.php:471
|
1050 |
-
msgid "months"
|
1051 |
-
msgstr "mois"
|
1052 |
-
|
1053 |
-
#: options/wc-options-serialize.php:472
|
1054 |
-
msgid "day"
|
1055 |
-
msgstr "jour"
|
1056 |
-
|
1057 |
-
#: options/wc-options-serialize.php:473
|
1058 |
-
msgid "days"
|
1059 |
-
msgstr "jours"
|
1060 |
-
|
1061 |
-
#: options/wc-options-serialize.php:474
|
1062 |
-
msgid "hour"
|
1063 |
-
msgstr "heure"
|
1064 |
-
|
1065 |
-
#: options/wc-options-serialize.php:475
|
1066 |
-
msgid "hours"
|
1067 |
-
msgstr "heures"
|
1068 |
-
|
1069 |
-
#: options/wc-options-serialize.php:476
|
1070 |
-
msgid "minute"
|
1071 |
-
msgstr "minute"
|
1072 |
-
|
1073 |
-
#: options/wc-options-serialize.php:477
|
1074 |
-
msgid "minutes"
|
1075 |
-
msgstr "minutes"
|
1076 |
-
|
1077 |
-
#: options/wc-options-serialize.php:478
|
1078 |
-
msgid "second"
|
1079 |
-
msgstr "seconde"
|
1080 |
-
|
1081 |
-
#: options/wc-options-serialize.php:479
|
1082 |
-
msgid "seconds"
|
1083 |
-
msgstr "secondes"
|
1084 |
-
|
1085 |
-
#: options/wc-options-serialize.php:480
|
1086 |
-
msgid "right now"
|
1087 |
-
msgstr "à l'instant"
|
1088 |
-
|
1089 |
-
#: options/wc-options-serialize.php:481
|
1090 |
-
msgid "ago"
|
1091 |
-
msgstr "plus tôt"
|
1092 |
-
|
1093 |
-
#: options/wc-options-serialize.php:484
|
1094 |
-
msgid "You are logged in as"
|
1095 |
-
msgstr "Vous êtes connecté en tant que"
|
1096 |
-
|
1097 |
-
#: options/wc-options-serialize.php:486
|
1098 |
-
msgid "logged in"
|
1099 |
-
msgstr "vous connecter"
|
1100 |
-
|
1101 |
-
#: options/wc-options-serialize.php:487
|
1102 |
-
msgid "to post a comment."
|
1103 |
-
msgstr "pour poster un commentaire"
|
1104 |
-
|
1105 |
-
#: options/wc-options-serialize.php:491
|
1106 |
-
msgid "You've already voted for this comment"
|
1107 |
-
msgstr "Vous avez déjà voté pour ce commentaire"
|
1108 |
-
|
1109 |
-
#: options/wc-options-serialize.php:493
|
1110 |
-
msgid "You Must Be Logged In To Vote"
|
1111 |
-
msgstr "Vous devez être connecté pour voter"
|
1112 |
-
|
1113 |
-
#: options/wc-options-serialize.php:494
|
1114 |
-
msgid "You cannot vote for your comment"
|
1115 |
-
msgstr "Vous ne pouvez pas voter pour vos propres commentaires"
|
1116 |
-
|
1117 |
-
#: options/wc-options-serialize.php:495
|
1118 |
-
msgid "You are not allowed to vote for this comment"
|
1119 |
-
msgstr "Vous n'êtes pas autorisé à voter pour ce commentaire"
|
1120 |
-
|
1121 |
-
#: options/wc-options-serialize.php:498
|
1122 |
-
msgid "new comment"
|
1123 |
-
msgstr "nouveau commentaire"
|
1124 |
-
|
1125 |
-
#: options/wc-options-serialize.php:499
|
1126 |
-
msgid "new comments"
|
1127 |
-
msgstr "nouveaux commentaires"
|
1128 |
-
|
1129 |
-
#: options/wc-options-serialize.php:500
|
1130 |
-
msgid "Comment awaiting moderation"
|
1131 |
-
msgstr "Commentaire en attente de modération"
|
1132 |
-
|
1133 |
-
#: options/wc-options-serialize.php:501
|
1134 |
-
msgid "new reply on your comment"
|
1135 |
-
msgstr "nouvelle réponse à votre commentaire"
|
1136 |
-
|
1137 |
-
#: options/wc-options-serialize.php:502
|
1138 |
-
msgid "new replies on your comments"
|
1139 |
-
msgstr "nouvelles réponses à vos commentaires"
|
1140 |
-
|
1141 |
-
#: options/wc-options-serialize.php:506
|
1142 |
-
msgid "You've not made any changes"
|
1143 |
-
msgstr "Vous n'avez fait aucune modification"
|
1144 |
-
|
1145 |
-
#: options/wc-options-serialize.php:509
|
1146 |
-
#, php-format
|
1147 |
-
msgid "Comment text is too long (maximum %s characters allowed)"
|
1148 |
-
msgstr ""
|
1149 |
-
"Le texte du commentaire est trop long (un maximum de %s caractères est autorisé)"
|
1150 |
-
|
1151 |
-
#: options/wc-options.php:28 options/wc-options.php:232
|
1152 |
-
msgid "Hacker?"
|
1153 |
-
msgstr "Hacker ?"
|
1154 |
-
|
1155 |
-
#: options/wc-options.php:87
|
1156 |
-
msgid "wpDiscuz General Settings"
|
1157 |
-
msgstr "Paramètres Généraux wpDiscuz"
|
1158 |
-
|
1159 |
-
#: options/wc-options.php:179
|
1160 |
-
msgid "General settings"
|
1161 |
-
msgstr "Paramètres Généraux"
|
1162 |
-
|
1163 |
-
#: options/wc-options.php:182
|
1164 |
-
msgid "Email Subscription"
|
1165 |
-
msgstr "Abonnement Email"
|
1166 |
-
|
1167 |
-
#: options/wc-options.php:182
|
1168 |
-
msgid "and Postmatic"
|
1169 |
-
msgstr "et Postmatic"
|
1170 |
-
|
1171 |
-
#: options/wc-options.php:213 options/wc-options.php:383
|
1172 |
-
msgid "Save Changes"
|
1173 |
-
msgstr "Enregistrer les modifications"
|
1174 |
-
|
1175 |
-
#: options/wc-options.php:214
|
1176 |
-
msgid "Reset Options"
|
1177 |
-
msgstr "Réinitialiser les options"
|
1178 |
-
|
1179 |
-
#: options/wc-options.php:341
|
1180 |
-
msgid "WpDiscuz Front-end Phrases"
|
1181 |
-
msgstr "Phrases du front-end WpDiscuz"
|
1182 |
-
|
1183 |
-
#: options/wc-options.php:351
|
1184 |
-
msgid "General"
|
1185 |
-
msgstr "Général"
|
1186 |
-
|
1187 |
-
#: options/wc-options.php:352
|
1188 |
-
msgid "Form"
|
1189 |
-
msgstr "Formulaire"
|
1190 |
-
|
1191 |
-
#: options/wc-options.php:354
|
1192 |
-
msgid "Date/Time"
|
1193 |
-
msgstr "Date / Heure"
|
1194 |
-
|
1195 |
-
#: options/wc-options.php:356
|
1196 |
-
msgid "Notification"
|
1197 |
-
msgstr "Notification"
|
1198 |
-
|
1199 |
-
#: wc.php:1020
|
1200 |
-
msgid "Phrases"
|
1201 |
-
msgstr "Phrases"
|
1202 |
-
|
1203 |
-
#. Plugin Name of the plugin/theme
|
1204 |
-
msgid "wpDiscuz - Wordpress Comments"
|
1205 |
-
msgstr ""
|
1206 |
-
|
1207 |
-
#. Plugin URI of the plugin/theme
|
1208 |
-
msgid "http://www.gvectors.com/wpdiscuz/"
|
1209 |
-
msgstr ""
|
1210 |
-
|
1211 |
-
#. Description of the plugin/theme
|
1212 |
-
msgid ""
|
1213 |
-
"Better comment system. Wordpress post comments and discussion plugin. Allows your "
|
1214 |
-
"visitors discuss, vote for comments and share."
|
1215 |
-
msgstr ""
|
1216 |
-
|
1217 |
-
#. Author of the plugin/theme
|
1218 |
-
msgid "gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
|
1219 |
-
msgstr ""
|
1220 |
-
|
1221 |
-
#. Author URI of the plugin/theme
|
1222 |
-
msgid "http://www.gvectors.com/"
|
1223 |
-
msgstr ""
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: wpDiscuz - Wordpress Comments\n"
|
4 |
+
"POT-Creation-Date: 2015-05-28 23:58+0400\n"
|
5 |
+
"PO-Revision-Date: 2015-07-31 19:26+0200\n"
|
6 |
+
"Language-Team: advancedcoding <advancedcoding@mail.ru>\n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.3\n"
|
11 |
+
"X-Poedit-Basepath: ..\n"
|
12 |
+
"X-Poedit-WPHeader: wc.php\n"
|
13 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\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: \n"
|
19 |
+
"Language: fr_FR\n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
+
|
23 |
+
#: comment-form/form.php:185 comment-form/tpl-comment.php:263
|
24 |
+
msgid "Participate in this discussion via email"
|
25 |
+
msgstr "Participer à cette discussion par e-mail"
|
26 |
+
|
27 |
+
#: comment-form/form.php:323
|
28 |
+
msgid "Connect with"
|
29 |
+
msgstr "Se connecter avec :"
|
30 |
+
|
31 |
+
#: comment-form/tpl-comment.php:174 options/phrases-layout/phrases-comment.php:27
|
32 |
+
#: options/wc-options-serialize.php:439
|
33 |
+
msgid "Edit"
|
34 |
+
msgstr "Éditer"
|
35 |
+
|
36 |
+
#: comment-form/tpl-comment.php:385 wc.php:321
|
37 |
+
msgid "Anonymous"
|
38 |
+
msgstr "Anonyme"
|
39 |
+
|
40 |
+
#: options/options-layouts/settings-general.php:2
|
41 |
+
msgid "General Settings"
|
42 |
+
msgstr "Paramètres généraux"
|
43 |
+
|
44 |
+
#: options/options-layouts/settings-general.php:7
|
45 |
+
msgid "Display comment form for post types:"
|
46 |
+
msgstr "Afficher le formulaire de commentaires pour les contenus de type :"
|
47 |
+
|
48 |
+
#: options/options-layouts/settings-general.php:28
|
49 |
+
msgid "User Must be registered to comment"
|
50 |
+
msgstr "L'utilisateur doit être connecté pour commenter"
|
51 |
+
|
52 |
+
#: options/options-layouts/settings-general.php:34
|
53 |
+
msgid "Yes"
|
54 |
+
msgstr "Oui"
|
55 |
+
|
56 |
+
#: options/options-layouts/settings-general.php:38
|
57 |
+
msgid "No"
|
58 |
+
msgstr "Non"
|
59 |
+
|
60 |
+
#: options/options-layouts/settings-general.php:46
|
61 |
+
msgid "Comment author must fill out name"
|
62 |
+
msgstr "L'auteur du commentaire doit entrer son nom"
|
63 |
+
|
64 |
+
#: options/options-layouts/settings-general.php:57
|
65 |
+
msgid "Comment author must fill out email"
|
66 |
+
msgstr "L'auteur du commentaire doit entrer son email"
|
67 |
+
|
68 |
+
#: options/options-layouts/settings-general.php:68
|
69 |
+
msgid "Show the latest comments on"
|
70 |
+
msgstr "Montrer les derniers commentaires sur"
|
71 |
+
|
72 |
+
#: options/options-layouts/settings-general.php:72
|
73 |
+
msgid "the top of the list"
|
74 |
+
msgstr "le haut de la liste"
|
75 |
+
|
76 |
+
#: options/options-layouts/settings-general.php:74
|
77 |
+
msgid "top of the threads"
|
78 |
+
msgstr "le haut des fils de discussion"
|
79 |
+
|
80 |
+
#: options/options-layouts/settings-general.php:76
|
81 |
+
msgid "bottom of the threads"
|
82 |
+
msgstr "le bas des fils de discussion"
|
83 |
+
|
84 |
+
#: options/options-layouts/settings-general.php:78
|
85 |
+
msgid "the bottom of the list"
|
86 |
+
msgstr "le bas de la liste"
|
87 |
+
|
88 |
+
#: options/options-layouts/settings-general.php:86
|
89 |
+
msgid "Comment Threads Per Page"
|
90 |
+
msgstr "Fils de discussion par page"
|
91 |
+
|
92 |
+
#: options/options-layouts/settings-general.php:97
|
93 |
+
msgid "Comment text max length"
|
94 |
+
msgstr "Longueur maxi du texte d'un commentaire"
|
95 |
+
|
96 |
+
#: options/options-layouts/settings-general.php:108
|
97 |
+
msgid "Comments max depth"
|
98 |
+
msgstr "Profondeur maxi des commentaires"
|
99 |
+
|
100 |
+
#: options/options-layouts/settings-general.php:113
|
101 |
+
msgid "Level"
|
102 |
+
msgstr "Niveau"
|
103 |
+
|
104 |
+
#: options/options-layouts/settings-general.php:114
|
105 |
+
#: options/options-layouts/settings-general.php:115
|
106 |
+
#: options/options-layouts/settings-general.php:116
|
107 |
+
#: options/options-layouts/settings-general.php:117
|
108 |
+
msgid "Levels"
|
109 |
+
msgstr "Niveaux"
|
110 |
+
|
111 |
+
#: options/options-layouts/settings-general.php:124
|
112 |
+
msgid "Comment text size in pixels"
|
113 |
+
msgstr "Taille du texte des commentaires en pixel"
|
114 |
+
|
115 |
+
#: options/options-layouts/settings-general.php:141
|
116 |
+
msgid "Allow comment editing for"
|
117 |
+
msgstr "Autoriser l'édition de commentaire pendant"
|
118 |
+
|
119 |
+
#: options/options-layouts/settings-general.php:146
|
120 |
+
msgid "Not Allow"
|
121 |
+
msgstr "Ne pas autoriser"
|
122 |
+
|
123 |
+
#: options/options-layouts/settings-general.php:147
|
124 |
+
#: options/options-layouts/settings-general.php:148
|
125 |
+
#: options/options-layouts/settings-live-update.php:41
|
126 |
+
#: options/options-layouts/settings-live-update.php:42
|
127 |
+
#: options/options-layouts/settings-live-update.php:43
|
128 |
+
msgid "Minutes"
|
129 |
+
msgstr "Minutes"
|
130 |
+
|
131 |
+
#: options/options-layouts/settings-general.php:149
|
132 |
+
#: options/phrases-layout/phrases-datetime.php:73
|
133 |
+
msgid "Hour"
|
134 |
+
msgstr "Heure"
|
135 |
+
|
136 |
+
#: options/options-layouts/settings-general.php:150
|
137 |
+
#: options/options-layouts/settings-general.php:151
|
138 |
+
msgid "Hours"
|
139 |
+
msgstr "Heures"
|
140 |
+
|
141 |
+
#: options/options-layouts/settings-general.php:158
|
142 |
+
msgid "Redirect first commenter to"
|
143 |
+
msgstr "Rediriger le premier commentateur vers"
|
144 |
+
|
145 |
+
#: options/options-layouts/settings-general.php:165
|
146 |
+
msgid "Do not redirect"
|
147 |
+
msgstr "Ne pas rediriger"
|
148 |
+
|
149 |
+
#: options/options-layouts/settings-general.php:174
|
150 |
+
msgid "Allow guests to vote on comments"
|
151 |
+
msgstr "Autoriser les invités à voter sur les commentaires"
|
152 |
+
|
153 |
+
#: options/options-layouts/settings-general.php:184
|
154 |
+
msgid "Load rest of all comments on clicking the [Load More Comments] button"
|
155 |
+
msgstr ""
|
156 |
+
"Charger l'ensemble des commentaires restants au clic sur le bouton [Charger plus de "
|
157 |
+
"Commentaires]"
|
158 |
+
|
159 |
+
#: options/options-layouts/settings-general.php:195
|
160 |
+
msgid "Use WordPress Date/Time format"
|
161 |
+
msgstr "Utiliser le format Date/Heure WordPress"
|
162 |
+
|
163 |
+
#: options/options-layouts/settings-general.php:196
|
164 |
+
msgid ""
|
165 |
+
"wpDiscuz shows Human Readable date format. If you check this option it'll show the "
|
166 |
+
"date/time format set in WordPress General Settings."
|
167 |
+
msgstr ""
|
168 |
+
"wpDiscuz affiche en format lisible par un humain. Si vous cliquez cette option, il "
|
169 |
+
"affichera en utilisant le format Date/Heure défini dans les Paramètres Généraux de "
|
170 |
+
"WordPress."
|
171 |
+
|
172 |
+
#: options/options-layouts/settings-general.php:203
|
173 |
+
msgid "Current Wordpress date/time format"
|
174 |
+
msgstr "Format Date/Heure actuel de WordPress"
|
175 |
+
|
176 |
+
#: options/options-layouts/settings-general.php:209
|
177 |
+
msgid "Use Plugin .PO/.MO files"
|
178 |
+
msgstr "Utiliser les fichiers de plugin .PO/.MO"
|
179 |
+
|
180 |
+
#: options/options-layouts/settings-general.php:210
|
181 |
+
msgid ""
|
182 |
+
"wpDiscuz phrase system allows you to translate all front-end phrases. However if you "
|
183 |
+
"have a multi-language website it'll not allow you to add more than one language "
|
184 |
+
"translation. The only way to get it is the plugin translation files (.PO / .MO). If "
|
185 |
+
"wpDiscuz has the languages you need you should check this option to disable phrase "
|
186 |
+
"system and it'll automatically translate all phrases based on language files "
|
187 |
+
"according to current language."
|
188 |
+
msgstr ""
|
189 |
+
"wpDiscuz phrase system allows you to translate all front-end phrases. However if you "
|
190 |
+
"have a multi-language website it'll not allow you to add more than one language "
|
191 |
+
"translation. The only way to get it is the plugin translation files (.PO / .MO). If "
|
192 |
+
"wpDiscuz has the languages you need you should check this option to disable phrase "
|
193 |
+
"system and it'll automatically translate all phrases based on language files "
|
194 |
+
"according to current language."
|
195 |
+
|
196 |
+
#: options/options-layouts/settings-general.php:222
|
197 |
+
msgid "Help wpDiscuz to grow allowing people to recognize which comment plugin you use"
|
198 |
+
msgstr ""
|
199 |
+
"Help wpDiscuz to grow allowing people to recognize which comment plugin you use"
|
200 |
+
|
201 |
+
#: options/options-layouts/settings-general.php:224
|
202 |
+
msgid ""
|
203 |
+
"Please check this option on to help wpDiscuz get more popularity as your thank to "
|
204 |
+
"the hard work we do for you totally free. This option adds a very small (16x16px) "
|
205 |
+
"icon under the comment section which will allow your site visitors recognize the "
|
206 |
+
"name of comment solution you use."
|
207 |
+
msgstr ""
|
208 |
+
"Please check this option on to help wpDiscuz get more popularity as your thank to "
|
209 |
+
"the hard work we do for you totally free. This option adds a very small (16x16px) "
|
210 |
+
"icon under the comment section which will allow your site visitors recognize the "
|
211 |
+
"name of comment solution you use."
|
212 |
+
|
213 |
+
#: options/options-layouts/settings-general.php:229
|
214 |
+
msgid "Thank you!"
|
215 |
+
msgstr "Merci !"
|
216 |
+
|
217 |
+
#: options/options-layouts/settings-live-update.php:2 options/wc-options.php:180
|
218 |
+
msgid "Live Update"
|
219 |
+
msgstr "Mise à jour en temps réel"
|
220 |
+
|
221 |
+
#: options/options-layouts/settings-live-update.php:8
|
222 |
+
msgid "Live update options"
|
223 |
+
msgstr "Options de mise à jour en temps réel"
|
224 |
+
|
225 |
+
#: options/options-layouts/settings-live-update.php:9
|
226 |
+
msgid ""
|
227 |
+
"If you use Shared Web Hosting you should make sure the \"Live Update\" function "
|
228 |
+
"doesn't overload your server resources. This function is good for VPS and Dedicated "
|
229 |
+
"Hosting Plans."
|
230 |
+
msgstr ""
|
231 |
+
"If you use Shared Web Hosting you should make sure the \"Live Update\" function "
|
232 |
+
"doesn't overload your server resources. This function is good for VPS and Dedicated "
|
233 |
+
"Hosting Plans."
|
234 |
+
|
235 |
+
#: options/options-layouts/settings-live-update.php:14
|
236 |
+
msgid "Never update"
|
237 |
+
msgstr "Ne jamais mettre à jour"
|
238 |
+
|
239 |
+
#: options/options-layouts/settings-live-update.php:16
|
240 |
+
msgid "Turn off \"Live Update\" function"
|
241 |
+
msgstr "Désactiver la fonction \"Mise à jour en temps réel\""
|
242 |
+
|
243 |
+
#: options/options-layouts/settings-live-update.php:18
|
244 |
+
msgid "Show new comment/reply buttons to update manualy"
|
245 |
+
msgstr ""
|
246 |
+
"Afficher les boutons Nouveau commentaire / Répondre pour mettre à jour manuellement"
|
247 |
+
|
248 |
+
#: options/options-layouts/settings-live-update.php:20
|
249 |
+
msgid "Always check for new comments and show update buttons"
|
250 |
+
msgstr ""
|
251 |
+
"Toujours vérifier pour de nouveaux commentaires et afficher les boutons de mise à "
|
252 |
+
"jour"
|
253 |
+
|
254 |
+
#: options/options-layouts/settings-live-update.php:22
|
255 |
+
msgid "Always update"
|
256 |
+
msgstr "Toujours mettre à jour"
|
257 |
+
|
258 |
+
#: options/options-layouts/settings-live-update.php:24
|
259 |
+
msgid "Always check for new comments and update automatically"
|
260 |
+
msgstr ""
|
261 |
+
"Toujours vérifier pour de nouveaux commentaires et mettre à jour automatiquement"
|
262 |
+
|
263 |
+
#: options/options-layouts/settings-live-update.php:32
|
264 |
+
msgid "Update comment list every"
|
265 |
+
msgstr "Mettre à jour la liste des commentaires toutes les"
|
266 |
+
|
267 |
+
#: options/options-layouts/settings-live-update.php:37
|
268 |
+
#: options/options-layouts/settings-live-update.php:38
|
269 |
+
#: options/options-layouts/settings-live-update.php:39
|
270 |
+
msgid "Seconds"
|
271 |
+
msgstr "Secondes"
|
272 |
+
|
273 |
+
#: options/options-layouts/settings-live-update.php:40
|
274 |
+
#: options/phrases-layout/phrases-datetime.php:95
|
275 |
+
msgid "Minute"
|
276 |
+
msgstr "Minutes"
|
277 |
+
|
278 |
+
#: options/options-layouts/settings-show-hide.php:2 options/wc-options.php:181
|
279 |
+
msgid "Show/Hide Components"
|
280 |
+
msgstr "Afficher / Masquer les Composants"
|
281 |
+
|
282 |
+
#: options/options-layouts/settings-show-hide.php:7
|
283 |
+
msgid "Show logged-in user name and logout link on top of main form"
|
284 |
+
msgstr ""
|
285 |
+
"Afficher le nom de l'utilisateur connecté et le lien de déconnexion en haut du "
|
286 |
+
"formulaire principal"
|
287 |
+
|
288 |
+
#: options/options-layouts/settings-show-hide.php:17
|
289 |
+
msgid "Hide Reply button for Guests"
|
290 |
+
msgstr "Masquer le bouton Répondre pour les Invités"
|
291 |
+
|
292 |
+
#: options/options-layouts/settings-show-hide.php:27
|
293 |
+
msgid "Hide Reply button for Members"
|
294 |
+
msgstr "Masquer le bouton Répondre pour les Membres"
|
295 |
+
|
296 |
+
#: options/options-layouts/settings-show-hide.php:37
|
297 |
+
msgid "Hide Author Titles"
|
298 |
+
msgstr "Masquer les titres des auteurs"
|
299 |
+
|
300 |
+
#: options/options-layouts/settings-show-hide.php:47
|
301 |
+
msgid "Hide Voting buttons"
|
302 |
+
msgstr "Masquer les boutons de vote"
|
303 |
+
|
304 |
+
#: options/options-layouts/settings-show-hide.php:57
|
305 |
+
msgid "Hide Share Buttons"
|
306 |
+
msgstr "Masquer les boutons de partage"
|
307 |
+
|
308 |
+
#: options/options-layouts/settings-show-hide.php:67
|
309 |
+
msgid "Hide the CAPTCHA field"
|
310 |
+
msgstr "Masquer le champ CAPTCHA"
|
311 |
+
|
312 |
+
#: options/options-layouts/settings-show-hide.php:77
|
313 |
+
msgid "Hide the Website URL field"
|
314 |
+
msgstr "Masquer le champ URL du site Web"
|
315 |
+
|
316 |
+
#: options/options-layouts/settings-show-hide.php:87
|
317 |
+
msgid "Hide header text"
|
318 |
+
msgstr "Masquer le texte d'entête"
|
319 |
+
|
320 |
+
#: options/options-layouts/settings-show-hide.php:97
|
321 |
+
msgid "Hide user avatar"
|
322 |
+
msgstr "Masquer l'avatar utilisateur"
|
323 |
+
|
324 |
+
#: options/options-layouts/settings-social.php:10
|
325 |
+
#: options/options-layouts/settings-social.php:12
|
326 |
+
#: options/options-layouts/settings-social.php:14 wc.php:1018
|
327 |
+
msgid "Settings"
|
328 |
+
msgstr "Réglages"
|
329 |
+
|
330 |
+
#: options/options-layouts/settings-social.php:19
|
331 |
+
#: options/options-layouts/settings-social.php:29
|
332 |
+
#: options/options-layouts/settings-social.php:39
|
333 |
+
msgid "Activate"
|
334 |
+
msgstr "Activer"
|
335 |
+
|
336 |
+
#: options/options-layouts/settings-social.php:23
|
337 |
+
#: options/options-layouts/settings-social.php:33
|
338 |
+
#: options/options-layouts/settings-social.php:43
|
339 |
+
msgid "View details/Install"
|
340 |
+
msgstr "Voir les détails / Installer"
|
341 |
+
|
342 |
+
#: options/options-layouts/settings-social.php:75 options/wc-options.php:184
|
343 |
+
msgid "Social Login"
|
344 |
+
msgstr "Connexion sociale"
|
345 |
+
|
346 |
+
#: options/options-layouts/settings-social.php:76
|
347 |
+
msgid ""
|
348 |
+
"You can use one of these most popular Social Login Plugins to allow your visitors "
|
349 |
+
"login and comment with Facebook, Twitter, Google+, Wordpress, VK, OK and lots of "
|
350 |
+
"other social network service accounts. All social login buttons will be fully "
|
351 |
+
"integrated with wpDiscuz comment forms."
|
352 |
+
msgstr ""
|
353 |
+
"You can use one of these most popular Social Login Plugins to allow your visitors "
|
354 |
+
"login and comment with Facebook, Twitter, Google+, Wordpress, VK, OK and lots of "
|
355 |
+
"other social network service accounts. All social login buttons will be fully "
|
356 |
+
"integrated with wpDiscuz comment forms."
|
357 |
+
|
358 |
+
#: options/options-layouts/settings-style.php:2 options/wc-options.php:183
|
359 |
+
msgid "Background and Colors"
|
360 |
+
msgstr "Fond et couleurs"
|
361 |
+
|
362 |
+
#: options/options-layouts/settings-style.php:7
|
363 |
+
msgid "Comment Form Background Color"
|
364 |
+
msgstr "Couleur de fond du formulaire de commentaire"
|
365 |
+
|
366 |
+
#: options/options-layouts/settings-style.php:10
|
367 |
+
#: options/options-layouts/settings-style.php:34
|
368 |
+
#: options/options-layouts/settings-style.php:58
|
369 |
+
#: options/options-layouts/settings-style.php:82
|
370 |
+
#: options/options-layouts/settings-style.php:107
|
371 |
+
#: options/options-layouts/settings-style.php:132
|
372 |
+
#: options/options-layouts/settings-style.php:155
|
373 |
+
#: options/options-layouts/settings-style.php:178
|
374 |
+
msgid "Example: #00ff00"
|
375 |
+
msgstr "Exemple: #00ff00"
|
376 |
+
|
377 |
+
#: options/options-layouts/settings-style.php:31
|
378 |
+
msgid "Comment Background Color"
|
379 |
+
msgstr "Couleur de fond des commentaires"
|
380 |
+
|
381 |
+
#: options/options-layouts/settings-style.php:55
|
382 |
+
msgid "Reply Background Color"
|
383 |
+
msgstr "Couleur de fond des réponses"
|
384 |
+
|
385 |
+
#: options/options-layouts/settings-style.php:79
|
386 |
+
msgid "Comment Text Color"
|
387 |
+
msgstr "Couleur des textes des commentaires"
|
388 |
+
|
389 |
+
#: options/options-layouts/settings-style.php:104
|
390 |
+
msgid "Author title color"
|
391 |
+
msgstr "Couleur du titre de l'auteur"
|
392 |
+
|
393 |
+
#: options/options-layouts/settings-style.php:129
|
394 |
+
msgid "Vote, Reply, Share, Edit links text colors"
|
395 |
+
msgstr "Couleur des textes des liens Voter, Répondre, Partager, Editer"
|
396 |
+
|
397 |
+
#: options/options-layouts/settings-style.php:152
|
398 |
+
msgid "Comment form fields border color"
|
399 |
+
msgstr "Couleur de bordure des champs du formulaire de commentaire"
|
400 |
+
|
401 |
+
#: options/options-layouts/settings-style.php:175
|
402 |
+
msgid "New loaded comments' background color"
|
403 |
+
msgstr "Couleur de fond des nouveaux commentaires chargés"
|
404 |
+
|
405 |
+
#: options/options-layouts/settings-style.php:199
|
406 |
+
msgid "Custom CSS Code"
|
407 |
+
msgstr "Code CSS personnalisé"
|
408 |
+
|
409 |
+
#: options/options-layouts/settings-subscription.php:2
|
410 |
+
msgid "Email Subscription Settings"
|
411 |
+
msgstr "Réglages de souscription des emails"
|
412 |
+
|
413 |
+
#: options/options-layouts/settings-subscription.php:7
|
414 |
+
msgid "Show \"Notify of all new follow-up comments\""
|
415 |
+
msgstr "Afficher \"Notifier de tous les nouveaux commentaires de suivi\""
|
416 |
+
|
417 |
+
#: options/options-layouts/settings-subscription.php:8
|
418 |
+
msgid "Show \"Notify of new replies to all my comments\""
|
419 |
+
msgstr "Afficher \"Notifier des nouvelles réponses à tous mes commentaires\""
|
420 |
+
|
421 |
+
#: options/options-layouts/settings-subscription.php:9
|
422 |
+
msgid "Show \"Notify of new replies to this comment\""
|
423 |
+
msgstr "Afficher \"Notifier de toutes les réponses à ce commentaire\""
|
424 |
+
|
425 |
+
#: options/options-layouts/settings-subscription.php:11
|
426 |
+
msgid ""
|
427 |
+
"Please keep all three or at least one of those options ON, otherwise users will not "
|
428 |
+
"have any option for email notifications and they'll not get any messages."
|
429 |
+
msgstr ""
|
430 |
+
"Please keep all three or at least one of those options ON, otherwise users will not "
|
431 |
+
"have any option for email notifications and they'll not get any messages."
|
432 |
+
|
433 |
+
#: options/options-layouts/settings-subscription.php:30
|
434 |
+
msgid "Use Postmatic for subscriptions and commenting by email"
|
435 |
+
msgstr "Utiliser Postmatic pour les souscriptions et commentaires par email"
|
436 |
+
|
437 |
+
#: options/options-layouts/settings-subscription.php:31
|
438 |
+
msgid ""
|
439 |
+
"Postmatic allows your users subscribe to comments. Instead of just being notified, "
|
440 |
+
"they add a reply right from their inbox."
|
441 |
+
msgstr ""
|
442 |
+
"Postmatic allows your users subscribe to comments. Instead of just being notified, "
|
443 |
+
"they add a reply right from their inbox."
|
444 |
+
|
445 |
+
#: options/options-layouts/settings-subscription.php:42
|
446 |
+
msgid "Keep selected the email notification of all new follow-up comments by default"
|
447 |
+
msgstr ""
|
448 |
+
"Garder la notification par email de tous les nouveaux commentaires de suivi "
|
449 |
+
"sélectionné par défaut"
|
450 |
+
|
451 |
+
#: options/options-layouts/settings-subscription.php:43
|
452 |
+
msgid ""
|
453 |
+
"If this option is checked-on, in Manage Subscriptions section of comment forms will "
|
454 |
+
"only be displayed the \"Notify of all new follow-up comments\" option and this "
|
455 |
+
"option will always be selected by default."
|
456 |
+
msgstr ""
|
457 |
+
"If this option is checked-on, in Manage Subscriptions section of comment forms will "
|
458 |
+
"only be displayed the \"Notify of all new follow-up comments\" option and this "
|
459 |
+
"option will always be selected by default."
|
460 |
+
|
461 |
+
#: options/phrases-layout/phrases-comment.php:2
|
462 |
+
msgid "Comment Template Phrases"
|
463 |
+
msgstr "Phrases Modèle Commentaire"
|
464 |
+
|
465 |
+
#: options/phrases-layout/phrases-comment.php:7 options/wc-options-serialize.php:437
|
466 |
+
msgid "Reply"
|
467 |
+
msgstr "Répondre"
|
468 |
+
|
469 |
+
#: options/phrases-layout/phrases-comment.php:17 options/wc-options-serialize.php:438
|
470 |
+
msgid "Share"
|
471 |
+
msgstr "Partager"
|
472 |
+
|
473 |
+
#: options/phrases-layout/phrases-comment.php:37 options/wc-options-serialize.php:440
|
474 |
+
msgid "Share On Facebook"
|
475 |
+
msgstr "Partager sur Facebook"
|
476 |
+
|
477 |
+
#: options/phrases-layout/phrases-comment.php:47 options/wc-options-serialize.php:441
|
478 |
+
msgid "Share On Twitter"
|
479 |
+
msgstr "Partager sur Twitter"
|
480 |
+
|
481 |
+
#: options/phrases-layout/phrases-comment.php:57 options/wc-options-serialize.php:442
|
482 |
+
msgid "Share On Google"
|
483 |
+
msgstr "Partager sur Google"
|
484 |
+
|
485 |
+
#: options/phrases-layout/phrases-comment.php:67 options/wc-options-serialize.php:443
|
486 |
+
msgid "Share On VKontakte"
|
487 |
+
msgstr "Partager sur VKontakte"
|
488 |
+
|
489 |
+
#: options/phrases-layout/phrases-comment.php:77 options/wc-options-serialize.php:444
|
490 |
+
msgid "Share On Odnoklassniki"
|
491 |
+
msgstr "Partager sur Odnoklassniki"
|
492 |
+
|
493 |
+
#: options/phrases-layout/phrases-comment.php:87 options/wc-options-serialize.php:445
|
494 |
+
msgid "Hide Replies"
|
495 |
+
msgstr "Masquer les réponses"
|
496 |
+
|
497 |
+
#: options/phrases-layout/phrases-comment.php:97 options/wc-options-serialize.php:446
|
498 |
+
msgid "Show Replies"
|
499 |
+
msgstr "Afficher les réponses"
|
500 |
+
|
501 |
+
#: options/phrases-layout/phrases-comment.php:107
|
502 |
+
msgid "Title For Guests"
|
503 |
+
msgstr "Titre pour Invités"
|
504 |
+
|
505 |
+
#: options/phrases-layout/phrases-comment.php:117
|
506 |
+
msgid "Title For Members"
|
507 |
+
msgstr "Titre pour Membres"
|
508 |
+
|
509 |
+
#: options/phrases-layout/phrases-comment.php:127
|
510 |
+
msgid "Title For Authors"
|
511 |
+
msgstr "Titre pour Auteurs"
|
512 |
+
|
513 |
+
#: options/phrases-layout/phrases-comment.php:137
|
514 |
+
msgid "Title For Admins"
|
515 |
+
msgstr "Titre pour Admins"
|
516 |
+
|
517 |
+
#: options/phrases-layout/phrases-comment.php:147 options/wc-options-serialize.php:488
|
518 |
+
msgid "Vote Up"
|
519 |
+
msgstr "Vote Pour"
|
520 |
+
|
521 |
+
#: options/phrases-layout/phrases-comment.php:157 options/wc-options-serialize.php:489
|
522 |
+
msgid "Vote Down"
|
523 |
+
msgstr "Vote Contre"
|
524 |
+
|
525 |
+
#: options/phrases-layout/phrases-comment.php:167
|
526 |
+
msgid "Save edited comment button text"
|
527 |
+
msgstr "Texte du bouton Enregistrer du commentaire édité"
|
528 |
+
|
529 |
+
#: options/phrases-layout/phrases-comment.php:171 options/wc-options-serialize.php:507
|
530 |
+
msgid "Save"
|
531 |
+
msgstr "Enregistrer"
|
532 |
+
|
533 |
+
#: options/phrases-layout/phrases-comment.php:177
|
534 |
+
msgid "Cancel comment editing button text"
|
535 |
+
msgstr "Texte du bouton Annuler du commentaire édité"
|
536 |
+
|
537 |
+
#: options/phrases-layout/phrases-comment.php:181 options/wc-options-serialize.php:508
|
538 |
+
msgid "Cancel"
|
539 |
+
msgstr "Annuler"
|
540 |
+
|
541 |
+
#: options/phrases-layout/phrases-datetime.php:2
|
542 |
+
msgid "Date/Time Phrases"
|
543 |
+
msgstr "Phrases Date / Heure"
|
544 |
+
|
545 |
+
#: options/phrases-layout/phrases-datetime.php:7
|
546 |
+
msgid "Year"
|
547 |
+
msgstr "Année"
|
548 |
+
|
549 |
+
#: options/phrases-layout/phrases-datetime.php:18
|
550 |
+
msgid "Years (Plural Form)"
|
551 |
+
msgstr "Années (au pluriel)"
|
552 |
+
|
553 |
+
#: options/phrases-layout/phrases-datetime.php:22
|
554 |
+
msgid "Years"
|
555 |
+
msgstr "Années"
|
556 |
+
|
557 |
+
#: options/phrases-layout/phrases-datetime.php:29
|
558 |
+
msgid "Month"
|
559 |
+
msgstr "Mois"
|
560 |
+
|
561 |
+
#: options/phrases-layout/phrases-datetime.php:40
|
562 |
+
msgid "Months (Plural Form)"
|
563 |
+
msgstr "Mois (au pluriel)"
|
564 |
+
|
565 |
+
#: options/phrases-layout/phrases-datetime.php:51
|
566 |
+
msgid "Day"
|
567 |
+
msgstr "Jour"
|
568 |
+
|
569 |
+
#: options/phrases-layout/phrases-datetime.php:62
|
570 |
+
msgid "Days (Plural Form)"
|
571 |
+
msgstr "Jours (au pluriel)"
|
572 |
+
|
573 |
+
#: options/phrases-layout/phrases-datetime.php:84
|
574 |
+
msgid "Hours (Plural Form)"
|
575 |
+
msgstr "Heures (au pluriel)"
|
576 |
+
|
577 |
+
#: options/phrases-layout/phrases-datetime.php:106
|
578 |
+
msgid "Minutes (Plural Form)"
|
579 |
+
msgstr "Minutes (au pluriel)"
|
580 |
+
|
581 |
+
#: options/phrases-layout/phrases-datetime.php:117
|
582 |
+
msgid "Second"
|
583 |
+
msgstr "Seconde"
|
584 |
+
|
585 |
+
#: options/phrases-layout/phrases-datetime.php:128
|
586 |
+
msgid "Seconds (Plural Form)"
|
587 |
+
msgstr "Secondes (au pluriel)"
|
588 |
+
|
589 |
+
#: options/phrases-layout/phrases-datetime.php:138
|
590 |
+
msgid "Commented \"right now\" text"
|
591 |
+
msgstr "Texte commenté \"A l'instant\""
|
592 |
+
|
593 |
+
#: options/phrases-layout/phrases-datetime.php:149
|
594 |
+
msgid "Ago text"
|
595 |
+
msgstr "Texte Il y a"
|
596 |
+
|
597 |
+
#: options/phrases-layout/phrases-datetime.php:160
|
598 |
+
msgid "\"Today\" text"
|
599 |
+
msgstr "Texte \"Aujourd'hui\""
|
600 |
+
|
601 |
+
#: options/phrases-layout/phrases-datetime.php:164 options/wc-options-serialize.php:482
|
602 |
+
msgid "Today"
|
603 |
+
msgstr "Aujourd'hui"
|
604 |
+
|
605 |
+
#: options/phrases-layout/phrases-email.php:2
|
606 |
+
msgid "Email Template Phrases"
|
607 |
+
msgstr "Phrases Email Modèle"
|
608 |
+
|
609 |
+
#: options/phrases-layout/phrases-email.php:7
|
610 |
+
msgid "Email Subject"
|
611 |
+
msgstr "Sujet de l'email"
|
612 |
+
|
613 |
+
#: options/phrases-layout/phrases-email.php:18
|
614 |
+
msgid "Email Message"
|
615 |
+
msgstr "Message de l'email"
|
616 |
+
|
617 |
+
#: options/phrases-layout/phrases-email.php:29
|
618 |
+
msgid "New Reply Subject"
|
619 |
+
msgstr "Sujet nouvelle réponse"
|
620 |
+
|
621 |
+
#: options/phrases-layout/phrases-email.php:33
|
622 |
+
#: options/phrases-layout/phrases-general.php:101 options/wc-options-serialize.php:453
|
623 |
+
msgid "New Reply"
|
624 |
+
msgstr "Nouvelle réponse"
|
625 |
+
|
626 |
+
#: options/phrases-layout/phrases-email.php:40
|
627 |
+
msgid "New Reply Message"
|
628 |
+
msgstr "Message Nouvelle Réponse"
|
629 |
+
|
630 |
+
#: options/phrases-layout/phrases-email.php:50
|
631 |
+
#: options/phrases-layout/phrases-email.php:54 options/wc-options-serialize.php:458
|
632 |
+
msgid "Unsubscribe"
|
633 |
+
msgstr "Désabonner"
|
634 |
+
|
635 |
+
#: options/phrases-layout/phrases-email.php:61
|
636 |
+
#: options/phrases-layout/phrases-email.php:65 options/wc-options-serialize.php:459
|
637 |
+
msgid "Ignore Subscription"
|
638 |
+
msgstr "Ignorer l'abonnement"
|
639 |
+
|
640 |
+
#: options/phrases-layout/phrases-email.php:72
|
641 |
+
#: options/phrases-layout/phrases-email.php:76 options/wc-options-serialize.php:461
|
642 |
+
msgid "Confirm your subscription"
|
643 |
+
msgstr "Confirmer votre abonnement"
|
644 |
+
|
645 |
+
#: options/phrases-layout/phrases-email.php:82
|
646 |
+
#: options/phrases-layout/phrases-email.php:86 options/wc-options-serialize.php:462
|
647 |
+
msgid "You've successfully confirmed your subscription."
|
648 |
+
msgstr "Vous avez confirmé votre abonnement avec succès."
|
649 |
+
|
650 |
+
#: options/phrases-layout/phrases-email.php:92
|
651 |
+
msgid "Subscribe Confirmation Email Subject"
|
652 |
+
msgstr "Sujet email confirmation abonnement"
|
653 |
+
|
654 |
+
#: options/phrases-layout/phrases-email.php:96 options/wc-options-serialize.php:463
|
655 |
+
#: wc.php:941
|
656 |
+
msgid "Subscribe Confirmation"
|
657 |
+
msgstr "Confirmation d'abonnement"
|
658 |
+
|
659 |
+
#: options/phrases-layout/phrases-email.php:103
|
660 |
+
msgid "Subscribe Confirmation Email Content"
|
661 |
+
msgstr "Contenu de l'email de confirmation d'abonnement"
|
662 |
+
|
663 |
+
#: options/phrases-layout/phrases-email.php:107 options/wc-options-serialize.php:464
|
664 |
+
#: wc.php:942
|
665 |
+
msgid ""
|
666 |
+
"Hi, <br/> You just subscribed for new comments on our website. This means you will "
|
667 |
+
"receive an email when new comments are posted according to subscription option "
|
668 |
+
"you've chosen. <br/> To activate, click confirm below. If you believe this is an "
|
669 |
+
"error, ignore this message and we'll never bother you again."
|
670 |
+
msgstr ""
|
671 |
+
"Bonjour.<br/><br/> Vous venez de vous abonner au suivi des commentaires sur notre "
|
672 |
+
"site. Cela signifie que vous recevrez un email quand de nouveaux commentaires seront "
|
673 |
+
"postés en fonction de l'option de souscription que vous avez choisie. <br/><br/>Pour "
|
674 |
+
"activer, cliquer le lien de confirmation ci-dessous. <br/><br/>Si vous pensez "
|
675 |
+
"recevoir ce message par erreur, ignorer ce message et nous ne vous solliciterons "
|
676 |
+
"plus."
|
677 |
+
|
678 |
+
#: options/phrases-layout/phrases-form.php:2
|
679 |
+
msgid "Form Template Phrases"
|
680 |
+
msgstr "Phrases Modèle Formulaire"
|
681 |
+
|
682 |
+
#: options/phrases-layout/phrases-form.php:7
|
683 |
+
msgid "Comment Field Start"
|
684 |
+
msgstr "Début du Champ Commentaire"
|
685 |
+
|
686 |
+
#: options/phrases-layout/phrases-form.php:17
|
687 |
+
msgid "Comment Field Join"
|
688 |
+
msgstr "Joindre du Champ Commentaire"
|
689 |
+
|
690 |
+
#: options/phrases-layout/phrases-form.php:27
|
691 |
+
msgid "Email Field"
|
692 |
+
msgstr "Champ Email"
|
693 |
+
|
694 |
+
#: options/phrases-layout/phrases-form.php:37
|
695 |
+
msgid "Name Field"
|
696 |
+
msgstr "Champ Nom"
|
697 |
+
|
698 |
+
#: options/phrases-layout/phrases-form.php:47
|
699 |
+
msgid "WebSite URL Field"
|
700 |
+
msgstr "Champ URL du site Web"
|
701 |
+
|
702 |
+
#: options/phrases-layout/phrases-form.php:57
|
703 |
+
msgid "CAPTCHA Field"
|
704 |
+
msgstr "Champ CAPTCHA"
|
705 |
+
|
706 |
+
#: options/phrases-layout/phrases-form.php:67
|
707 |
+
msgid "Submit Button"
|
708 |
+
msgstr "Bouton Soumettre"
|
709 |
+
|
710 |
+
#: options/phrases-layout/phrases-form.php:77
|
711 |
+
#: options/phrases-layout/phrases-form.php:81 options/wc-options-serialize.php:430
|
712 |
+
msgid "Manage Subscriptions"
|
713 |
+
msgstr "Gérer les Abonnements"
|
714 |
+
|
715 |
+
#: options/phrases-layout/phrases-form.php:87
|
716 |
+
msgid "Notify \"None\""
|
717 |
+
msgstr "Notifier \"Personne\""
|
718 |
+
|
719 |
+
#: options/phrases-layout/phrases-form.php:91 options/wc-options-serialize.php:431
|
720 |
+
msgid "None"
|
721 |
+
msgstr "Aucun"
|
722 |
+
|
723 |
+
#: options/phrases-layout/phrases-form.php:97
|
724 |
+
msgid "Notify on new comments (checkbox)"
|
725 |
+
msgstr "Notifier sur les nouveaux commentaires (case à cocher)"
|
726 |
+
|
727 |
+
#: options/phrases-layout/phrases-form.php:101 options/wc-options-serialize.php:432
|
728 |
+
msgid "Notify of all new follow-up comments"
|
729 |
+
msgstr "Notifier de toutes les réponses et tous les commentaires"
|
730 |
+
|
731 |
+
#: options/phrases-layout/phrases-form.php:108
|
732 |
+
msgid "Notify on all new replies (checkbox)"
|
733 |
+
msgstr "Notifier de toutes les nouvelles réponses (case à cocher)"
|
734 |
+
|
735 |
+
#: options/phrases-layout/phrases-form.php:112 options/wc-options-serialize.php:433
|
736 |
+
msgid "Notify of new replies to all my comments"
|
737 |
+
msgstr "Notifier des nouvelles réponses à tous mes commentaires"
|
738 |
+
|
739 |
+
#: options/phrases-layout/phrases-form.php:119
|
740 |
+
msgid "Notify on new replies (checkbox)"
|
741 |
+
msgstr "Notifier des nouvelles réponses (case à cocher)"
|
742 |
+
|
743 |
+
#: options/phrases-layout/phrases-form.php:123 options/wc-options-serialize.php:434
|
744 |
+
msgid "Notify of new replies to this comment"
|
745 |
+
msgstr "Notifier des nouvelles réponses à ce commentaire"
|
746 |
+
|
747 |
+
#: options/phrases-layout/phrases-form.php:129
|
748 |
+
msgid "Subscribed on this comment replies"
|
749 |
+
msgstr "Abonné aux réponses de ce commentaire"
|
750 |
+
|
751 |
+
#: options/phrases-layout/phrases-form.php:139
|
752 |
+
msgid "Subscribed on all your comments replies"
|
753 |
+
msgstr "Abonné aux réponses à tous vos commentaires"
|
754 |
+
|
755 |
+
#: options/phrases-layout/phrases-form.php:149
|
756 |
+
msgid "Subscribed on this post"
|
757 |
+
msgstr "Abonné à cet article"
|
758 |
+
|
759 |
+
#: options/phrases-layout/phrases-general.php:2
|
760 |
+
msgid "General Phrases"
|
761 |
+
msgstr "Phrases Général"
|
762 |
+
|
763 |
+
#: options/phrases-layout/phrases-general.php:7 options/wc-options-serialize.php:418
|
764 |
+
msgid "Leave a Reply"
|
765 |
+
msgstr "Poster un Commentaire"
|
766 |
+
|
767 |
+
#: options/phrases-layout/phrases-general.php:17
|
768 |
+
msgid "Be the first to comment"
|
769 |
+
msgstr "Soyez le premier à commenter"
|
770 |
+
|
771 |
+
#: options/phrases-layout/phrases-general.php:27 options/wc-options-serialize.php:420
|
772 |
+
#: options/wc-options.php:353
|
773 |
+
msgid "Comment"
|
774 |
+
msgstr "Commentaire"
|
775 |
+
|
776 |
+
#: options/phrases-layout/phrases-general.php:37
|
777 |
+
msgid "Comment (Plural Form)"
|
778 |
+
msgstr "Commentaire (au pluriel)"
|
779 |
+
|
780 |
+
#: options/phrases-layout/phrases-general.php:47
|
781 |
+
msgid "On"
|
782 |
+
msgstr "Marche"
|
783 |
+
|
784 |
+
#: options/phrases-layout/phrases-general.php:57
|
785 |
+
msgid "Load More Button"
|
786 |
+
msgstr "Bouton Afficher plus"
|
787 |
+
|
788 |
+
#: options/phrases-layout/phrases-general.php:67 options/wc-options-serialize.php:436
|
789 |
+
msgid "Load Rest of Comments"
|
790 |
+
msgstr "Afficher le reste des Commentaires"
|
791 |
+
|
792 |
+
#: options/phrases-layout/phrases-general.php:77
|
793 |
+
msgid "Button text if has new comment"
|
794 |
+
msgstr "Bouton texte si nouveau commentaire"
|
795 |
+
|
796 |
+
#: options/phrases-layout/phrases-general.php:81 options/wc-options-serialize.php:451
|
797 |
+
msgid "New Comment"
|
798 |
+
msgstr "Nouveau Commentaire"
|
799 |
+
|
800 |
+
#: options/phrases-layout/phrases-general.php:87
|
801 |
+
msgid "Button text if has new comments (Plural Form)"
|
802 |
+
msgstr "Bouton texte si nouveau commentaire (au pluriel)"
|
803 |
+
|
804 |
+
#: options/phrases-layout/phrases-general.php:91
|
805 |
+
msgid "New Comments"
|
806 |
+
msgstr "Nouveaux Commentaires"
|
807 |
+
|
808 |
+
#: options/phrases-layout/phrases-general.php:97
|
809 |
+
msgid "Button text if has new reply"
|
810 |
+
msgstr "Bouton texte si nouvelles réponses"
|
811 |
+
|
812 |
+
#: options/phrases-layout/phrases-general.php:107
|
813 |
+
msgid "Button text if has new replies (Plural Form)"
|
814 |
+
msgstr "Bouton texte si nouvelles réponses (au pluriel)"
|
815 |
+
|
816 |
+
#: options/phrases-layout/phrases-general.php:111
|
817 |
+
msgid "New Replies"
|
818 |
+
msgstr "Nouvelles Réponses"
|
819 |
+
|
820 |
+
#: options/phrases-layout/phrases-general.php:117
|
821 |
+
msgid "Text on load more button if has new comment(s)"
|
822 |
+
msgstr "Texte bouton afficher plus si nouveaux commentaires"
|
823 |
+
|
824 |
+
#: options/phrases-layout/phrases-general.php:121 options/wc-options-serialize.php:503
|
825 |
+
msgid "New"
|
826 |
+
msgstr "Nouveau"
|
827 |
+
|
828 |
+
#: options/phrases-layout/phrases-notification.php:2
|
829 |
+
msgid "Notification Phrases"
|
830 |
+
msgstr "Phrases Notification"
|
831 |
+
|
832 |
+
#: options/phrases-layout/phrases-notification.php:7
|
833 |
+
#: options/wc-options-serialize.php:460
|
834 |
+
msgid "You've successfully unsubscribed."
|
835 |
+
msgstr "Vous vous êtes désabonné avec succès."
|
836 |
+
|
837 |
+
#: options/phrases-layout/phrases-notification.php:18
|
838 |
+
msgid "Error message for empty field"
|
839 |
+
msgstr "Message d'erreur pour champ vide"
|
840 |
+
|
841 |
+
#: options/phrases-layout/phrases-notification.php:28
|
842 |
+
msgid "Error message for invalid email field"
|
843 |
+
msgstr "Message d'erreur pour champ email invalide"
|
844 |
+
|
845 |
+
#: options/phrases-layout/phrases-notification.php:38
|
846 |
+
msgid "Error message for invalid website url field"
|
847 |
+
msgstr "Message d'erreur pour champ URL site Web invalide"
|
848 |
+
|
849 |
+
#: options/phrases-layout/phrases-notification.php:48
|
850 |
+
#: options/wc-options-serialize.php:483
|
851 |
+
msgid "You must be"
|
852 |
+
msgstr "Vous devez"
|
853 |
+
|
854 |
+
#: options/phrases-layout/phrases-notification.php:58
|
855 |
+
msgid "Logged in as"
|
856 |
+
msgstr "Connecté en tant que"
|
857 |
+
|
858 |
+
#: options/phrases-layout/phrases-notification.php:68
|
859 |
+
#: options/wc-options-serialize.php:485
|
860 |
+
msgid "Log out"
|
861 |
+
msgstr "Déconnecter"
|
862 |
+
|
863 |
+
#: options/phrases-layout/phrases-notification.php:78
|
864 |
+
msgid "Logged In"
|
865 |
+
msgstr "Connecté"
|
866 |
+
|
867 |
+
#: options/phrases-layout/phrases-notification.php:88
|
868 |
+
msgid "To post a comment"
|
869 |
+
msgstr "Pour poster un commentaire"
|
870 |
+
|
871 |
+
#: options/phrases-layout/phrases-notification.php:98
|
872 |
+
#: options/wc-options-serialize.php:490
|
873 |
+
msgid "Vote Counted"
|
874 |
+
msgstr "Votes comptabilisés"
|
875 |
+
|
876 |
+
#: options/phrases-layout/phrases-notification.php:108
|
877 |
+
msgid "You can vote only 1 time"
|
878 |
+
msgstr "Vous pouvez voter une seule fois"
|
879 |
+
|
880 |
+
#: options/phrases-layout/phrases-notification.php:118
|
881 |
+
#: options/wc-options-serialize.php:492
|
882 |
+
msgid "Voting Error"
|
883 |
+
msgstr "Erreur sur vote"
|
884 |
+
|
885 |
+
#: options/phrases-layout/phrases-notification.php:128
|
886 |
+
msgid "Login To Vote"
|
887 |
+
msgstr "Se connecter pour voter"
|
888 |
+
|
889 |
+
#: options/phrases-layout/phrases-notification.php:138
|
890 |
+
msgid "You Cannot Vote On Your Comment"
|
891 |
+
msgstr "Vous ne pouvez pas voter sur votre Commentaire"
|
892 |
+
|
893 |
+
#: options/phrases-layout/phrases-notification.php:148
|
894 |
+
msgid "You are not allowed to vote for this comment (Voting from same IP)"
|
895 |
+
msgstr "Vous n'êtes pas autorisé à voter pour ce commentaire (Vote depuis même IP)"
|
896 |
+
|
897 |
+
#: options/phrases-layout/phrases-notification.php:158
|
898 |
+
#: options/wc-options-serialize.php:496
|
899 |
+
msgid "Invalid Captcha Code"
|
900 |
+
msgstr "Code Captcha invalide"
|
901 |
+
|
902 |
+
#: options/phrases-layout/phrases-notification.php:168
|
903 |
+
#: options/wc-options-serialize.php:497
|
904 |
+
msgid "Some of field value is invalid"
|
905 |
+
msgstr "Une partie du champ est invalide"
|
906 |
+
|
907 |
+
#: options/phrases-layout/phrases-notification.php:178
|
908 |
+
msgid "Comment waiting moderation"
|
909 |
+
msgstr "Commentaire en attente de modération"
|
910 |
+
|
911 |
+
#: options/phrases-layout/phrases-notification.php:188
|
912 |
+
msgid "Message if comment content length is too long"
|
913 |
+
msgstr "Message si le contenu du commentaire est trop long"
|
914 |
+
|
915 |
+
#: options/phrases-layout/phrases-notification.php:198
|
916 |
+
msgid "Message if comment was not updated"
|
917 |
+
msgstr "Message si le commentaire n'a pas été mis à jour"
|
918 |
+
|
919 |
+
#: options/phrases-layout/phrases-notification.php:202
|
920 |
+
#: options/wc-options-serialize.php:504
|
921 |
+
msgid "Sorry, the comment was not updated"
|
922 |
+
msgstr "Désolé, le commentaire n'a pas été mis à jour"
|
923 |
+
|
924 |
+
#: options/phrases-layout/phrases-notification.php:208
|
925 |
+
msgid "Message if comment no longer possible to edit"
|
926 |
+
msgstr "Message s'il n'est plus possible d'éditer le commentaire"
|
927 |
+
|
928 |
+
#: options/phrases-layout/phrases-notification.php:212
|
929 |
+
#: options/wc-options-serialize.php:505
|
930 |
+
msgid "Sorry, this comment no longer possible to edit"
|
931 |
+
msgstr "Désolé, il n'est plus possible d'éditer ce commentaire"
|
932 |
+
|
933 |
+
#: options/phrases-layout/phrases-notification.php:219
|
934 |
+
msgid "Message if comment text not changed"
|
935 |
+
msgstr "Message si le texte du commentaire est inchangé"
|
936 |
+
|
937 |
+
#: options/phrases-layout/phrases-notification.php:223
|
938 |
+
msgid "TYou've not made any changes"
|
939 |
+
msgstr "Vous n'avez fait aucune modification"
|
940 |
+
|
941 |
+
#: options/wc-options-serialize.php:419
|
942 |
+
msgid "Be the First to Comment!"
|
943 |
+
msgstr "Soyez le premier à commenter !"
|
944 |
+
|
945 |
+
#: options/wc-options-serialize.php:421
|
946 |
+
msgid "Comments"
|
947 |
+
msgstr "Commentaires"
|
948 |
+
|
949 |
+
#: options/wc-options-serialize.php:422
|
950 |
+
msgid "on"
|
951 |
+
msgstr "sur"
|
952 |
+
|
953 |
+
#: options/wc-options-serialize.php:423
|
954 |
+
msgid "Start the discussion"
|
955 |
+
msgstr "Démarrer la discussion"
|
956 |
+
|
957 |
+
#: options/wc-options-serialize.php:424
|
958 |
+
msgid "Join the discussion"
|
959 |
+
msgstr "Rejoindre la discussion"
|
960 |
+
|
961 |
+
#: options/wc-options-serialize.php:425 options/wc-options.php:355
|
962 |
+
msgid "Email"
|
963 |
+
msgstr "Email"
|
964 |
+
|
965 |
+
#: options/wc-options-serialize.php:426
|
966 |
+
msgid "Name"
|
967 |
+
msgstr "Nom"
|
968 |
+
|
969 |
+
#: options/wc-options-serialize.php:427
|
970 |
+
msgid "WebSite URL"
|
971 |
+
msgstr "URL du site Web"
|
972 |
+
|
973 |
+
#: options/wc-options-serialize.php:428
|
974 |
+
msgid "Please insert the code above to comment"
|
975 |
+
msgstr "Merci d'insérer le code au dessus du commentaire"
|
976 |
+
|
977 |
+
#: options/wc-options-serialize.php:429
|
978 |
+
msgid "Post Comment"
|
979 |
+
msgstr "Poster le Commentaire"
|
980 |
+
|
981 |
+
#: options/wc-options-serialize.php:435
|
982 |
+
msgid "Load More Comments"
|
983 |
+
msgstr "Afficher plus de Commentaires"
|
984 |
+
|
985 |
+
#: options/wc-options-serialize.php:447
|
986 |
+
msgid "Guest"
|
987 |
+
msgstr "Invité"
|
988 |
+
|
989 |
+
#: options/wc-options-serialize.php:448
|
990 |
+
msgid "Member"
|
991 |
+
msgstr "Membre"
|
992 |
+
|
993 |
+
#: options/wc-options-serialize.php:449
|
994 |
+
msgid "Author"
|
995 |
+
msgstr "Auteur"
|
996 |
+
|
997 |
+
#: options/wc-options-serialize.php:450
|
998 |
+
msgid "Admin"
|
999 |
+
msgstr "Admin"
|
1000 |
+
|
1001 |
+
#: options/wc-options-serialize.php:452
|
1002 |
+
msgid "New comment on the discussion section you've been interested in"
|
1003 |
+
msgstr ""
|
1004 |
+
"Nouveau commentaire dans une section de la discussion à laquelle vous vous êtes "
|
1005 |
+
"intéressé"
|
1006 |
+
|
1007 |
+
#: options/wc-options-serialize.php:454
|
1008 |
+
msgid "New reply on the discussion section you've been interested in"
|
1009 |
+
msgstr ""
|
1010 |
+
"Nouvelle réponse dans une section de la discussion à laquelle vous vous êtes "
|
1011 |
+
"intéressé"
|
1012 |
+
|
1013 |
+
#: options/wc-options-serialize.php:455
|
1014 |
+
msgid "You're subscribed for new replies on this comment"
|
1015 |
+
msgstr "Vous êtes abonné aux nouvelles réponses sur ce commentaire"
|
1016 |
+
|
1017 |
+
#: options/wc-options-serialize.php:456
|
1018 |
+
msgid "You're subscribed for new replies on all your comments"
|
1019 |
+
msgstr "Vous êtes abonné aux nouvelles réponses à tous vos commentaires"
|
1020 |
+
|
1021 |
+
#: options/wc-options-serialize.php:457
|
1022 |
+
msgid "You're subscribed for new follow-up comments on this post"
|
1023 |
+
msgstr "Vous êtes abonné à tous les commentaires de cet article"
|
1024 |
+
|
1025 |
+
#: options/wc-options-serialize.php:465
|
1026 |
+
msgid "please fill out this field to comment"
|
1027 |
+
msgstr "Merci de compléter ce champ pour commenter"
|
1028 |
+
|
1029 |
+
#: options/wc-options-serialize.php:466
|
1030 |
+
msgid "email address is invalid"
|
1031 |
+
msgstr "Adresse email invalide"
|
1032 |
+
|
1033 |
+
#: options/wc-options-serialize.php:467
|
1034 |
+
msgid "url is invalid"
|
1035 |
+
msgstr "URL invalide"
|
1036 |
+
|
1037 |
+
#: options/wc-options-serialize.php:468
|
1038 |
+
msgid "year"
|
1039 |
+
msgstr "année"
|
1040 |
+
|
1041 |
+
#: options/wc-options-serialize.php:469
|
1042 |
+
msgid "years"
|
1043 |
+
msgstr "années"
|
1044 |
+
|
1045 |
+
#: options/wc-options-serialize.php:470
|
1046 |
+
msgid "month"
|
1047 |
+
msgstr "mois"
|
1048 |
+
|
1049 |
+
#: options/wc-options-serialize.php:471
|
1050 |
+
msgid "months"
|
1051 |
+
msgstr "mois"
|
1052 |
+
|
1053 |
+
#: options/wc-options-serialize.php:472
|
1054 |
+
msgid "day"
|
1055 |
+
msgstr "jour"
|
1056 |
+
|
1057 |
+
#: options/wc-options-serialize.php:473
|
1058 |
+
msgid "days"
|
1059 |
+
msgstr "jours"
|
1060 |
+
|
1061 |
+
#: options/wc-options-serialize.php:474
|
1062 |
+
msgid "hour"
|
1063 |
+
msgstr "heure"
|
1064 |
+
|
1065 |
+
#: options/wc-options-serialize.php:475
|
1066 |
+
msgid "hours"
|
1067 |
+
msgstr "heures"
|
1068 |
+
|
1069 |
+
#: options/wc-options-serialize.php:476
|
1070 |
+
msgid "minute"
|
1071 |
+
msgstr "minute"
|
1072 |
+
|
1073 |
+
#: options/wc-options-serialize.php:477
|
1074 |
+
msgid "minutes"
|
1075 |
+
msgstr "minutes"
|
1076 |
+
|
1077 |
+
#: options/wc-options-serialize.php:478
|
1078 |
+
msgid "second"
|
1079 |
+
msgstr "seconde"
|
1080 |
+
|
1081 |
+
#: options/wc-options-serialize.php:479
|
1082 |
+
msgid "seconds"
|
1083 |
+
msgstr "secondes"
|
1084 |
+
|
1085 |
+
#: options/wc-options-serialize.php:480
|
1086 |
+
msgid "right now"
|
1087 |
+
msgstr "à l'instant"
|
1088 |
+
|
1089 |
+
#: options/wc-options-serialize.php:481
|
1090 |
+
msgid "ago"
|
1091 |
+
msgstr "plus tôt"
|
1092 |
+
|
1093 |
+
#: options/wc-options-serialize.php:484
|
1094 |
+
msgid "You are logged in as"
|
1095 |
+
msgstr "Vous êtes connecté en tant que"
|
1096 |
+
|
1097 |
+
#: options/wc-options-serialize.php:486
|
1098 |
+
msgid "logged in"
|
1099 |
+
msgstr "vous connecter"
|
1100 |
+
|
1101 |
+
#: options/wc-options-serialize.php:487
|
1102 |
+
msgid "to post a comment."
|
1103 |
+
msgstr "pour poster un commentaire"
|
1104 |
+
|
1105 |
+
#: options/wc-options-serialize.php:491
|
1106 |
+
msgid "You've already voted for this comment"
|
1107 |
+
msgstr "Vous avez déjà voté pour ce commentaire"
|
1108 |
+
|
1109 |
+
#: options/wc-options-serialize.php:493
|
1110 |
+
msgid "You Must Be Logged In To Vote"
|
1111 |
+
msgstr "Vous devez être connecté pour voter"
|
1112 |
+
|
1113 |
+
#: options/wc-options-serialize.php:494
|
1114 |
+
msgid "You cannot vote for your comment"
|
1115 |
+
msgstr "Vous ne pouvez pas voter pour vos propres commentaires"
|
1116 |
+
|
1117 |
+
#: options/wc-options-serialize.php:495
|
1118 |
+
msgid "You are not allowed to vote for this comment"
|
1119 |
+
msgstr "Vous n'êtes pas autorisé à voter pour ce commentaire"
|
1120 |
+
|
1121 |
+
#: options/wc-options-serialize.php:498
|
1122 |
+
msgid "new comment"
|
1123 |
+
msgstr "nouveau commentaire"
|
1124 |
+
|
1125 |
+
#: options/wc-options-serialize.php:499
|
1126 |
+
msgid "new comments"
|
1127 |
+
msgstr "nouveaux commentaires"
|
1128 |
+
|
1129 |
+
#: options/wc-options-serialize.php:500
|
1130 |
+
msgid "Comment awaiting moderation"
|
1131 |
+
msgstr "Commentaire en attente de modération"
|
1132 |
+
|
1133 |
+
#: options/wc-options-serialize.php:501
|
1134 |
+
msgid "new reply on your comment"
|
1135 |
+
msgstr "nouvelle réponse à votre commentaire"
|
1136 |
+
|
1137 |
+
#: options/wc-options-serialize.php:502
|
1138 |
+
msgid "new replies on your comments"
|
1139 |
+
msgstr "nouvelles réponses à vos commentaires"
|
1140 |
+
|
1141 |
+
#: options/wc-options-serialize.php:506
|
1142 |
+
msgid "You've not made any changes"
|
1143 |
+
msgstr "Vous n'avez fait aucune modification"
|
1144 |
+
|
1145 |
+
#: options/wc-options-serialize.php:509
|
1146 |
+
#, php-format
|
1147 |
+
msgid "Comment text is too long (maximum %s characters allowed)"
|
1148 |
+
msgstr ""
|
1149 |
+
"Le texte du commentaire est trop long (un maximum de %s caractères est autorisé)"
|
1150 |
+
|
1151 |
+
#: options/wc-options.php:28 options/wc-options.php:232
|
1152 |
+
msgid "Hacker?"
|
1153 |
+
msgstr "Hacker ?"
|
1154 |
+
|
1155 |
+
#: options/wc-options.php:87
|
1156 |
+
msgid "wpDiscuz General Settings"
|
1157 |
+
msgstr "Paramètres Généraux wpDiscuz"
|
1158 |
+
|
1159 |
+
#: options/wc-options.php:179
|
1160 |
+
msgid "General settings"
|
1161 |
+
msgstr "Paramètres Généraux"
|
1162 |
+
|
1163 |
+
#: options/wc-options.php:182
|
1164 |
+
msgid "Email Subscription"
|
1165 |
+
msgstr "Abonnement Email"
|
1166 |
+
|
1167 |
+
#: options/wc-options.php:182
|
1168 |
+
msgid "and Postmatic"
|
1169 |
+
msgstr "et Postmatic"
|
1170 |
+
|
1171 |
+
#: options/wc-options.php:213 options/wc-options.php:383
|
1172 |
+
msgid "Save Changes"
|
1173 |
+
msgstr "Enregistrer les modifications"
|
1174 |
+
|
1175 |
+
#: options/wc-options.php:214
|
1176 |
+
msgid "Reset Options"
|
1177 |
+
msgstr "Réinitialiser les options"
|
1178 |
+
|
1179 |
+
#: options/wc-options.php:341
|
1180 |
+
msgid "WpDiscuz Front-end Phrases"
|
1181 |
+
msgstr "Phrases du front-end WpDiscuz"
|
1182 |
+
|
1183 |
+
#: options/wc-options.php:351
|
1184 |
+
msgid "General"
|
1185 |
+
msgstr "Général"
|
1186 |
+
|
1187 |
+
#: options/wc-options.php:352
|
1188 |
+
msgid "Form"
|
1189 |
+
msgstr "Formulaire"
|
1190 |
+
|
1191 |
+
#: options/wc-options.php:354
|
1192 |
+
msgid "Date/Time"
|
1193 |
+
msgstr "Date / Heure"
|
1194 |
+
|
1195 |
+
#: options/wc-options.php:356
|
1196 |
+
msgid "Notification"
|
1197 |
+
msgstr "Notification"
|
1198 |
+
|
1199 |
+
#: wc.php:1020
|
1200 |
+
msgid "Phrases"
|
1201 |
+
msgstr "Phrases"
|
1202 |
+
|
1203 |
+
#. Plugin Name of the plugin/theme
|
1204 |
+
msgid "wpDiscuz - Wordpress Comments"
|
1205 |
+
msgstr ""
|
1206 |
+
|
1207 |
+
#. Plugin URI of the plugin/theme
|
1208 |
+
msgid "http://www.gvectors.com/wpdiscuz/"
|
1209 |
+
msgstr ""
|
1210 |
+
|
1211 |
+
#. Description of the plugin/theme
|
1212 |
+
msgid ""
|
1213 |
+
"Better comment system. Wordpress post comments and discussion plugin. Allows your "
|
1214 |
+
"visitors discuss, vote for comments and share."
|
1215 |
+
msgstr ""
|
1216 |
+
|
1217 |
+
#. Author of the plugin/theme
|
1218 |
+
msgid "gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
|
1219 |
+
msgstr ""
|
1220 |
+
|
1221 |
+
#. Author URI of the plugin/theme
|
1222 |
+
msgid "http://www.gvectors.com/"
|
1223 |
+
msgstr ""
|
languages/wpdiscuz-pt_PT.mo
CHANGED
Binary file
|
languages/wpdiscuz-pt_PT.po
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wpDiscuz - Wordpress Comments\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: Celso Azevedo <mail@celsoazevedo.net>\n"
|
7 |
"Language-Team: Celso Azevedo <mail@celsoazevedo.net>\n"
|
8 |
"Language: pt_PT\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
-
"X-Poedit-Basepath:
|
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;"
|
@@ -19,138 +19,152 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
22 |
-
#:
|
23 |
-
msgid "Connect with"
|
24 |
-
msgstr "Conectar-se com"
|
25 |
-
|
26 |
-
#: pasta sem nome/wpdiscuz/comment-form/form.php:180
|
27 |
-
#: nome/wpdiscuz/comment-form/tpl-comment.php:265
|
28 |
msgid "Participate in this discussion via email"
|
29 |
msgstr "Participar nesta discussão via e-mail"
|
30 |
|
31 |
-
#:
|
32 |
-
|
33 |
-
|
34 |
-
msgstr "Anónimo"
|
35 |
|
36 |
-
#:
|
37 |
-
#:
|
38 |
-
#:
|
39 |
msgid "Edit"
|
40 |
msgstr "Editar"
|
41 |
|
42 |
-
#:
|
|
|
|
|
|
|
|
|
43 |
msgid "General Settings"
|
44 |
msgstr "Opções Gerais"
|
45 |
|
46 |
-
#:
|
47 |
msgid "Display comment form for post types:"
|
48 |
-
msgstr "
|
49 |
|
50 |
-
#:
|
51 |
msgid "User Must be registered to comment"
|
52 |
msgstr "O utilizador deve estar registado para comentar"
|
53 |
|
54 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
msgid "Comment author must fill out name"
|
56 |
-
msgstr "O autor do comentário
|
57 |
|
58 |
-
#:
|
59 |
msgid "Comment author must fill out email"
|
60 |
-
msgstr "O autor do comentário
|
61 |
|
62 |
-
#:
|
63 |
msgid "Show the latest comments on"
|
64 |
msgstr "Mostrar os últimos comentários no"
|
65 |
|
66 |
-
#:
|
67 |
msgid "the top of the list"
|
68 |
msgstr "no topo da lista de comentários"
|
69 |
|
70 |
-
#:
|
71 |
msgid "top of the threads"
|
72 |
msgstr "no topo"
|
73 |
|
74 |
-
#:
|
75 |
msgid "bottom of the threads"
|
76 |
msgstr "no fim"
|
77 |
|
78 |
-
#:
|
79 |
msgid "the bottom of the list"
|
80 |
msgstr "no fim da lista de comentários"
|
81 |
|
82 |
-
#:
|
83 |
msgid "Comment Threads Per Page"
|
84 |
msgstr "Comentários por página"
|
85 |
|
86 |
-
#:
|
|
|
|
|
|
|
|
|
87 |
msgid "Comments max depth"
|
88 |
msgstr "Níveis de respostas a comentários"
|
89 |
|
90 |
-
#:
|
91 |
msgid "Level"
|
92 |
msgstr "Nível"
|
93 |
|
94 |
-
#:
|
95 |
-
#:
|
96 |
-
#:
|
97 |
-
#:
|
98 |
msgid "Levels"
|
99 |
msgstr "Níveis"
|
100 |
|
101 |
-
#:
|
102 |
msgid "Comment text size in pixels"
|
103 |
msgstr "Tamanho do texto do comentário em pixeis"
|
104 |
|
105 |
-
#:
|
106 |
msgid "Allow comment editing for"
|
107 |
msgstr "Permitir a edição de comentários por"
|
108 |
|
109 |
-
#:
|
110 |
msgid "Not Allow"
|
111 |
-
msgstr "Não
|
112 |
|
113 |
-
#:
|
114 |
-
#:
|
115 |
-
#:
|
116 |
-
#:
|
117 |
-
#:
|
118 |
msgid "Minutes"
|
119 |
msgstr "Minutos"
|
120 |
|
121 |
-
#:
|
122 |
-
#:
|
123 |
msgid "Hour"
|
124 |
msgstr "Hora"
|
125 |
|
126 |
-
#:
|
127 |
-
#:
|
128 |
msgid "Hours"
|
129 |
msgstr "Horas"
|
130 |
|
131 |
-
#:
|
132 |
msgid "Redirect first commenter to"
|
133 |
msgstr "Redirecionar o primeiro comentador para"
|
134 |
|
135 |
-
#:
|
136 |
msgid "Do not redirect"
|
137 |
msgstr "Não redirecionar"
|
138 |
|
139 |
-
#:
|
140 |
msgid "Allow guests to vote on comments"
|
141 |
msgstr "Permitir que os visitantes votem nos comentários"
|
142 |
|
143 |
-
#:
|
|
|
|
|
|
|
|
|
144 |
msgid "Load rest of all comments on clicking the [Load More Comments] button"
|
145 |
msgstr ""
|
146 |
"Carregar o resto dos comentários ao clicar no botão [Carregar Mais "
|
147 |
"Comentários]"
|
148 |
|
149 |
-
#:
|
150 |
msgid "Use WordPress Date/Time format"
|
151 |
msgstr "Usar o formato de data e tempo do WordPress"
|
152 |
|
153 |
-
#:
|
154 |
msgid ""
|
155 |
"wpDiscuz shows Human Readable date format. If you check this option it'll "
|
156 |
"show the date/time format set in WordPress General Settings."
|
@@ -159,17 +173,38 @@ msgstr ""
|
|
159 |
"opção, o plugin vai usar o formato de data/hora definido na página de opções "
|
160 |
"do WordPress."
|
161 |
|
162 |
-
#:
|
163 |
msgid "Current Wordpress date/time format"
|
164 |
msgstr "Formato atual de data e hora do WordPress"
|
165 |
|
166 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid ""
|
168 |
"Help wpDiscuz to grow allowing people to recognize which comment plugin you "
|
169 |
"use"
|
170 |
msgstr "Ajude o wpDiscuz a crescer divulgando o plugin"
|
171 |
|
172 |
-
#:
|
173 |
msgid ""
|
174 |
"Please check this option on to help wpDiscuz get more popularity as your "
|
175 |
"thank to the hard work we do for you totally free. This option adds a very "
|
@@ -177,210 +212,239 @@ msgid ""
|
|
177 |
"visitors recognize the name of comment solution you use."
|
178 |
msgstr ""
|
179 |
"Marque esta opção para ajudar a divulgar o wpDiscuz e agradecer pelo nosso "
|
180 |
-
"trabalho
|
181 |
-
"
|
182 |
-
"
|
183 |
|
184 |
-
#:
|
185 |
msgid "Thank you!"
|
186 |
msgstr "Obrigado!"
|
187 |
|
188 |
-
#:
|
189 |
-
#:
|
190 |
msgid "Live Update"
|
191 |
msgstr "Atualização em Tempo Real"
|
192 |
|
193 |
-
#:
|
194 |
msgid "Live update options"
|
195 |
msgstr "Opções de atualização em tempo real"
|
196 |
|
197 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
msgid "Never update"
|
199 |
msgstr "Nunca atualizar"
|
200 |
|
201 |
-
#:
|
202 |
msgid "Turn off \"Live Update\" function"
|
203 |
msgstr "Desligar a opção \"Atualização em tempo real\""
|
204 |
|
205 |
-
#:
|
206 |
msgid "Show new comment/reply buttons to update manualy"
|
207 |
msgstr "Mostrar novos botões de comentário/resposta para atualizar manualmente"
|
208 |
|
209 |
-
#:
|
210 |
msgid "Always check for new comments and show update buttons"
|
211 |
msgstr "Verificar novos comentários e mostrar botões de atualização"
|
212 |
|
213 |
-
#:
|
214 |
msgid "Always update"
|
215 |
msgstr "Atualizar sempre"
|
216 |
|
217 |
-
#:
|
218 |
msgid "Always check for new comments and update automatically"
|
219 |
msgstr "Verificar novos comentários e atualizar automaticamente"
|
220 |
|
221 |
-
#:
|
222 |
msgid "Update comment list every"
|
223 |
msgstr "Atualizar a lista de comentários a cada"
|
224 |
|
225 |
-
#:
|
226 |
-
#:
|
227 |
-
#:
|
228 |
msgid "Seconds"
|
229 |
msgstr "Segundos"
|
230 |
|
231 |
-
#:
|
232 |
-
#:
|
233 |
msgid "Minute"
|
234 |
msgstr "Minuto"
|
235 |
|
236 |
-
#:
|
237 |
-
#:
|
238 |
msgid "Show/Hide Components"
|
239 |
msgstr "Mostrar/Ocultar Componentes"
|
240 |
|
241 |
-
#:
|
242 |
msgid "Show logged-in user name and logout link on top of main form"
|
243 |
msgstr ""
|
244 |
-
"
|
245 |
-
"login feito"
|
246 |
|
247 |
-
#:
|
248 |
msgid "Hide Reply button for Guests"
|
249 |
msgstr "Ocultar o botão Responder a visitantes"
|
250 |
|
251 |
-
#:
|
252 |
msgid "Hide Reply button for Members"
|
253 |
msgstr "Ocultar o botão Responder a membros"
|
254 |
|
255 |
-
#:
|
256 |
msgid "Hide Author Titles"
|
257 |
msgstr "Ocultar título do autor do comentário"
|
258 |
|
259 |
-
#:
|
260 |
msgid "Hide Voting buttons"
|
261 |
msgstr "Ocultar os botões de votação"
|
262 |
|
263 |
-
#:
|
264 |
msgid "Hide Share Buttons"
|
265 |
msgstr "Ocultar botões de partilha"
|
266 |
|
267 |
-
#:
|
268 |
msgid "Hide the CAPTCHA field"
|
269 |
msgstr "Ocultar o campo captcha"
|
270 |
|
271 |
-
#:
|
272 |
msgid "Hide the Website URL field"
|
273 |
msgstr "Ocultar o campo website"
|
274 |
|
275 |
-
#:
|
276 |
-
|
277 |
-
|
278 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
279 |
msgid "Settings"
|
280 |
msgstr "Opções"
|
281 |
|
282 |
-
#:
|
283 |
-
#:
|
284 |
-
#:
|
|
|
285 |
msgid "Activate"
|
286 |
msgstr "Ativar"
|
287 |
|
288 |
-
#:
|
289 |
-
#:
|
290 |
-
#:
|
|
|
291 |
msgid "View details/Install"
|
292 |
msgstr "Ver detalhes/instalar"
|
293 |
|
294 |
-
#:
|
295 |
-
#:
|
296 |
msgid "Social Login"
|
297 |
msgstr "Login Social"
|
298 |
|
299 |
-
#:
|
300 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
msgid "Background and Colors"
|
302 |
msgstr "Fundo e Cores"
|
303 |
|
304 |
-
#:
|
305 |
msgid "Comment Form Background Color"
|
306 |
msgstr "Cor de fundo do formulário de comentário"
|
307 |
|
308 |
-
#:
|
309 |
-
#:
|
310 |
-
#:
|
311 |
-
#:
|
312 |
-
#:
|
313 |
-
#:
|
314 |
-
#:
|
315 |
-
#:
|
316 |
msgid "Example: #00ff00"
|
317 |
msgstr "Exemplo: #00ff00"
|
318 |
|
319 |
-
#:
|
320 |
msgid "Comment Background Color"
|
321 |
msgstr "Cor de fundo do comentário"
|
322 |
|
323 |
-
#:
|
324 |
msgid "Reply Background Color"
|
325 |
msgstr "Cor de fundo da resposta"
|
326 |
|
327 |
-
#:
|
328 |
msgid "Comment Text Color"
|
329 |
msgstr "Cor do texto do comentário"
|
330 |
|
331 |
-
#:
|
332 |
msgid "Author title color"
|
333 |
msgstr "Cor do título do autor"
|
334 |
|
335 |
-
#:
|
336 |
msgid "Vote, Reply, Share, Edit links text colors"
|
337 |
msgstr "Cor dos links Votar, Responder, Partilhar e Editar"
|
338 |
|
339 |
-
#:
|
340 |
msgid "Comment form fields border color"
|
341 |
msgstr "Cor das bordas nos campos do formulário"
|
342 |
|
343 |
-
#:
|
344 |
msgid "New loaded comments' background color"
|
345 |
msgstr "Cor de fundo dos novos comentários carregados"
|
346 |
|
347 |
-
#:
|
348 |
msgid "Custom CSS Code"
|
349 |
msgstr "CSS personalizado"
|
350 |
|
351 |
-
#:
|
352 |
msgid "Email Subscription Settings"
|
353 |
-
msgstr "Opções da
|
354 |
|
355 |
-
#:
|
356 |
msgid "Show \"Notify of all new follow-up comments\""
|
357 |
msgstr "Mostrar \"Notificar-me de novos comentários\""
|
358 |
|
359 |
-
#:
|
360 |
msgid "Show \"Notify of new replies to all my comments\""
|
361 |
msgstr "Mostrar \"Notificar-me de respostas a todos os meus comentários\""
|
362 |
|
363 |
-
#:
|
364 |
msgid "Show \"Notify of new replies to this comment\""
|
365 |
msgstr "Mostrar \"Notificar-me de respostas a este comentário\""
|
366 |
|
367 |
-
#:
|
368 |
-
#: nome/wpdiscuz/options/options-layouts/settings-subscription.php:11
|
369 |
msgid ""
|
370 |
"Please keep all three or at least one of those options ON, otherwise users "
|
371 |
"will not have any option for email notifications and they'll not get any "
|
372 |
"messages."
|
373 |
msgstr ""
|
374 |
-
"Mantenha pelo menos uma destas opções ativas para exibir
|
375 |
"subscrição aos utilizadores."
|
376 |
|
377 |
-
#:
|
378 |
-
#: nome/wpdiscuz/options/options-layouts/settings-subscription.php:30
|
379 |
msgid "Use Postmatic for subscriptions and commenting by email"
|
380 |
msgstr "Usar o Postmatic para subscrições e comentários via email"
|
381 |
|
382 |
-
#:
|
383 |
-
#: nome/wpdiscuz/options/options-layouts/settings-subscription.php:31
|
384 |
msgid ""
|
385 |
"Postmatic allows your users subscribe to comments. Instead of just being "
|
386 |
"notified, they add a reply right from their inbox."
|
@@ -388,246 +452,244 @@ msgstr ""
|
|
388 |
"O Postmatic permite que os seus utilizadores subscrevam aos comentários. Em "
|
389 |
"vez de serem apenas notificados, eles podem responder diretamente via email."
|
390 |
|
391 |
-
#:
|
392 |
-
#: nome/wpdiscuz/options/options-layouts/settings-subscription.php:42
|
393 |
msgid ""
|
394 |
"Keep selected the email notification of all new follow-up comments by default"
|
395 |
-
msgstr "Deixar a opção de notificação via email ativa por
|
396 |
|
397 |
-
#:
|
398 |
-
#: nome/wpdiscuz/options/options-layouts/settings-subscription.php:43
|
399 |
msgid ""
|
400 |
"If this option is checked-on, in Manage Subscriptions section of comment "
|
401 |
"forms will only be displayed the \"Notify of all new follow-up comments\" "
|
402 |
"option and this option will always be selected by default."
|
403 |
msgstr ""
|
404 |
"Se esta opção estiver selecionada, na secção \"Gerir Subscrições\" dos "
|
405 |
-
"comentários apenas a opção \"Notificar-me de novos comentários\" será "
|
406 |
-
"exibida e
|
407 |
|
408 |
-
#:
|
409 |
msgid "Comment Template Phrases"
|
410 |
-
msgstr "Frases dos
|
411 |
|
412 |
-
#:
|
413 |
-
#:
|
414 |
msgid "Reply"
|
415 |
msgstr "Responder"
|
416 |
|
417 |
-
#:
|
418 |
-
#:
|
419 |
msgid "Share"
|
420 |
msgstr "Partilhar"
|
421 |
|
422 |
-
#:
|
423 |
-
#:
|
424 |
msgid "Share On Facebook"
|
425 |
msgstr "Partilhar no Facebook"
|
426 |
|
427 |
-
#:
|
428 |
-
#:
|
429 |
msgid "Share On Twitter"
|
430 |
msgstr "Partilhar no Twitter"
|
431 |
|
432 |
-
#:
|
433 |
-
#:
|
434 |
msgid "Share On Google"
|
435 |
msgstr "Partilhar no Google"
|
436 |
|
437 |
-
#:
|
438 |
-
#:
|
439 |
-
msgid "Share On
|
440 |
-
msgstr "Partilhar no
|
441 |
|
442 |
-
#:
|
443 |
-
#:
|
444 |
msgid "Share On Odnoklassniki"
|
445 |
msgstr "Partilhar no Odnoklassniki"
|
446 |
|
447 |
-
#:
|
448 |
-
#:
|
449 |
msgid "Hide Replies"
|
450 |
msgstr "Ocultar Respostas"
|
451 |
|
452 |
-
#:
|
453 |
-
#:
|
454 |
msgid "Show Replies"
|
455 |
msgstr "Mostrar Respostas"
|
456 |
|
457 |
-
#:
|
458 |
msgid "Title For Guests"
|
459 |
msgstr "Título para Visitantes"
|
460 |
|
461 |
-
#:
|
462 |
msgid "Title For Members"
|
463 |
msgstr "Título para Membros"
|
464 |
|
465 |
-
#:
|
466 |
msgid "Title For Authors"
|
467 |
msgstr "Título para Autores"
|
468 |
|
469 |
-
#:
|
470 |
msgid "Title For Admins"
|
471 |
msgstr "Título para Administradores"
|
472 |
|
473 |
-
#:
|
474 |
-
#:
|
475 |
msgid "Vote Up"
|
476 |
msgstr "Voto Positivo"
|
477 |
|
478 |
-
#:
|
479 |
-
#:
|
480 |
msgid "Vote Down"
|
481 |
msgstr "Voto Negativo"
|
482 |
|
483 |
-
#:
|
484 |
msgid "Save edited comment button text"
|
485 |
msgstr "Texto do botão para guardar comentário editado"
|
486 |
|
487 |
-
#:
|
488 |
-
#:
|
489 |
msgid "Save"
|
490 |
msgstr "Guardar"
|
491 |
|
492 |
-
#:
|
493 |
msgid "Cancel comment editing button text"
|
494 |
msgstr "Texto do botão para cancelar a edição do comentário"
|
495 |
|
496 |
-
#:
|
497 |
-
#:
|
498 |
msgid "Cancel"
|
499 |
msgstr "Cancelar"
|
500 |
|
501 |
-
#:
|
502 |
msgid "Date/Time Phrases"
|
503 |
-
msgstr "Frases da
|
504 |
|
505 |
-
#:
|
506 |
msgid "Year"
|
507 |
msgstr "Ano"
|
508 |
|
509 |
-
#:
|
510 |
msgid "Years (Plural Form)"
|
511 |
msgstr "Anos (plural)"
|
512 |
|
513 |
-
#:
|
514 |
msgid "Years"
|
515 |
msgstr "Anos"
|
516 |
|
517 |
-
#:
|
518 |
msgid "Month"
|
519 |
msgstr "Mês"
|
520 |
|
521 |
-
#:
|
522 |
msgid "Months (Plural Form)"
|
523 |
msgstr "Mês (plural)"
|
524 |
|
525 |
-
#:
|
526 |
msgid "Day"
|
527 |
msgstr "Dia"
|
528 |
|
529 |
-
#:
|
530 |
msgid "Days (Plural Form)"
|
531 |
msgstr "Dias (plural)"
|
532 |
|
533 |
-
#:
|
534 |
msgid "Hours (Plural Form)"
|
535 |
msgstr "Horas (plural)"
|
536 |
|
537 |
-
#:
|
538 |
msgid "Minutes (Plural Form)"
|
539 |
msgstr "Minutos (plural)"
|
540 |
|
541 |
-
#:
|
542 |
msgid "Second"
|
543 |
msgstr "Segundo"
|
544 |
|
545 |
-
#:
|
546 |
msgid "Seconds (Plural Form)"
|
547 |
msgstr "Segundos (plural)"
|
548 |
|
549 |
-
#:
|
550 |
msgid "Commented \"right now\" text"
|
551 |
msgstr "Comentário enviado \"agora mesmo\""
|
552 |
|
553 |
-
#:
|
554 |
msgid "Ago text"
|
555 |
msgstr "\"Atrás\""
|
556 |
|
557 |
-
#:
|
558 |
msgid "\"Today\" text"
|
559 |
msgstr "\"Hoje\""
|
560 |
|
561 |
-
#:
|
562 |
-
#:
|
563 |
msgid "Today"
|
564 |
msgstr "Hoje"
|
565 |
|
566 |
-
#:
|
567 |
msgid "Email Template Phrases"
|
568 |
-
msgstr "Frases dos
|
569 |
|
570 |
-
#:
|
571 |
msgid "Email Subject"
|
572 |
msgstr "Assunto do Email"
|
573 |
|
574 |
-
#:
|
575 |
msgid "Email Message"
|
576 |
msgstr "Mensagem do Email"
|
577 |
|
578 |
-
#:
|
579 |
msgid "New Reply Subject"
|
580 |
msgstr "Assunto do alerta de Nova Resposta"
|
581 |
|
582 |
-
#:
|
583 |
-
#:
|
584 |
-
#:
|
585 |
msgid "New Reply"
|
586 |
msgstr "Nova Resposta"
|
587 |
|
588 |
-
#:
|
589 |
msgid "New Reply Message"
|
590 |
msgstr "Mensagem do alerta de Nova Resposta"
|
591 |
|
592 |
-
#:
|
593 |
-
#:
|
594 |
-
#:
|
595 |
msgid "Unsubscribe"
|
596 |
msgstr "Cancelar Subscrição"
|
597 |
|
598 |
-
#:
|
599 |
-
#:
|
600 |
-
#:
|
601 |
msgid "Ignore Subscription"
|
602 |
msgstr "Ignorar Subscrição"
|
603 |
|
604 |
-
#:
|
605 |
-
#:
|
606 |
-
#:
|
607 |
-
msgid "Confirm your
|
608 |
msgstr "Confirme a sua subscrição"
|
609 |
|
610 |
-
#:
|
611 |
-
#:
|
612 |
-
#:
|
613 |
msgid "You've successfully confirmed your subscription."
|
614 |
msgstr "A sua subscrição foi confirmada com sucesso."
|
615 |
|
616 |
-
#:
|
617 |
msgid "Subscribe Confirmation Email Subject"
|
618 |
msgstr "Assunto do email de confirmação da subscrição"
|
619 |
|
620 |
-
#:
|
621 |
-
#:
|
622 |
msgid "Subscribe Confirmation"
|
623 |
msgstr "Confirmação de subscrição"
|
624 |
|
625 |
-
#:
|
626 |
msgid "Subscribe Confirmation Email Content"
|
627 |
msgstr "Conteúdo do email sobre a confirmação da subscrição"
|
628 |
|
629 |
-
#:
|
630 |
-
#:
|
631 |
msgid ""
|
632 |
"Hi, <br/> You just subscribed for new comments on our website. This means "
|
633 |
"you will receive an email when new comments are posted according to "
|
@@ -641,533 +703,548 @@ msgstr ""
|
|
641 |
"baixo. Se acha que este email foi enviado por engano, por favor ignore esta "
|
642 |
"mensagem e nunca o contactaremos de novo."
|
643 |
|
644 |
-
#:
|
645 |
msgid "Form Template Phrases"
|
646 |
-
msgstr "Frases do
|
647 |
|
648 |
-
#:
|
649 |
msgid "Comment Field Start"
|
650 |
msgstr "Mensagem de incentivo a discussão"
|
651 |
|
652 |
-
#:
|
653 |
msgid "Comment Field Join"
|
654 |
msgstr "Mensagem de incentivo no formulário"
|
655 |
|
656 |
-
#:
|
657 |
msgid "Email Field"
|
658 |
msgstr "Campo de Email"
|
659 |
|
660 |
-
#:
|
661 |
msgid "Name Field"
|
662 |
msgstr "Campo do Nome"
|
663 |
|
664 |
-
#:
|
665 |
msgid "WebSite URL Field"
|
666 |
msgstr "Campo do URL"
|
667 |
|
668 |
-
#:
|
669 |
msgid "CAPTCHA Field"
|
670 |
msgstr "Campo do Captcha"
|
671 |
|
672 |
-
#:
|
673 |
msgid "Submit Button"
|
674 |
msgstr "Botão de Submissão"
|
675 |
|
676 |
-
#:
|
677 |
-
#:
|
678 |
-
#:
|
679 |
msgid "Manage Subscriptions"
|
680 |
msgstr "Gerir Subscrições"
|
681 |
|
682 |
-
#:
|
683 |
msgid "Notify \"None\""
|
684 |
-
msgstr "
|
685 |
|
686 |
-
#:
|
687 |
-
#:
|
688 |
msgid "None"
|
689 |
-
msgstr "
|
690 |
|
691 |
-
#:
|
692 |
msgid "Notify on new comments (checkbox)"
|
693 |
-
msgstr "Notificar
|
694 |
|
695 |
-
#:
|
696 |
-
#:
|
697 |
msgid "Notify of all new follow-up comments"
|
698 |
msgstr "Notificar-me de novos comentários"
|
699 |
|
700 |
-
#:
|
701 |
msgid "Notify on all new replies (checkbox)"
|
702 |
-
msgstr "
|
|
|
|
|
703 |
|
704 |
-
#:
|
705 |
-
#:
|
706 |
msgid "Notify of new replies to all my comments"
|
707 |
msgstr "Notificar-me de respostas a todos os meus comentários"
|
708 |
|
709 |
-
#:
|
710 |
msgid "Notify on new replies (checkbox)"
|
711 |
-
msgstr "Notificar
|
712 |
|
713 |
-
#:
|
714 |
-
#:
|
715 |
msgid "Notify of new replies to this comment"
|
716 |
msgstr "Notificar-me de respostas a este comentário"
|
717 |
|
718 |
-
#:
|
719 |
msgid "Subscribed on this comment replies"
|
720 |
-
msgstr "
|
721 |
|
722 |
-
#:
|
723 |
msgid "Subscribed on all your comments replies"
|
724 |
-
msgstr "
|
725 |
|
726 |
-
#:
|
727 |
msgid "Subscribed on this post"
|
728 |
-
msgstr "
|
729 |
|
730 |
-
#:
|
731 |
msgid "General Phrases"
|
732 |
-
msgstr "Frases
|
733 |
|
734 |
-
#:
|
735 |
-
#:
|
736 |
msgid "Leave a Reply"
|
737 |
msgstr "Deixe um comentário"
|
738 |
|
739 |
-
#:
|
740 |
msgid "Be the first to comment"
|
741 |
msgstr "Seja o primeiro a comentar"
|
742 |
|
743 |
-
#:
|
744 |
-
#:
|
745 |
-
#:
|
746 |
msgid "Comment"
|
747 |
msgstr "Comentário"
|
748 |
|
749 |
-
#:
|
750 |
msgid "Comment (Plural Form)"
|
751 |
msgstr "Comentário (Plural)"
|
752 |
|
753 |
-
#:
|
754 |
msgid "On"
|
755 |
msgstr "Em"
|
756 |
|
757 |
-
#:
|
758 |
msgid "Load More Button"
|
759 |
msgstr "Botão Carregar Mais Comentários"
|
760 |
|
761 |
-
#:
|
762 |
-
#:
|
763 |
msgid "Load Rest of Comments"
|
764 |
msgstr "Carregar o resto dos comentários"
|
765 |
|
766 |
-
#:
|
767 |
msgid "Button text if has new comment"
|
768 |
msgstr "Texto do botão se houver um novo comentário"
|
769 |
|
770 |
-
#:
|
771 |
-
#:
|
772 |
msgid "New Comment"
|
773 |
msgstr "Novo Comentário"
|
774 |
|
775 |
-
#:
|
776 |
msgid "Button text if has new comments (Plural Form)"
|
777 |
msgstr "Texto do botão se tiver novos comentários (plural)"
|
778 |
|
779 |
-
#:
|
780 |
msgid "New Comments"
|
781 |
msgstr "Novos Comentários"
|
782 |
|
783 |
-
#:
|
784 |
msgid "Button text if has new reply"
|
785 |
msgstr "Texto do botão se tiver uma resposta nova"
|
786 |
|
787 |
-
#:
|
788 |
msgid "Button text if has new replies (Plural Form)"
|
789 |
msgstr "Texto do botão se tiver novas respostas (plural)"
|
790 |
|
791 |
-
#:
|
792 |
msgid "New Replies"
|
793 |
msgstr "Novas Respostas"
|
794 |
|
795 |
-
#:
|
796 |
msgid "Text on load more button if has new comment(s)"
|
797 |
msgstr ""
|
798 |
-
"Texto do botão \"
|
799 |
|
800 |
-
#:
|
801 |
-
#:
|
802 |
msgid "New"
|
803 |
msgstr "Novo"
|
804 |
|
805 |
-
#:
|
806 |
msgid "Notification Phrases"
|
807 |
-
msgstr "Frases de
|
808 |
|
809 |
-
#:
|
810 |
-
#:
|
811 |
msgid "You've successfully unsubscribed."
|
812 |
-
msgstr "A
|
813 |
|
814 |
-
#:
|
815 |
msgid "Error message for empty field"
|
816 |
msgstr "Mensagem de erro para campos vazios"
|
817 |
|
818 |
-
#:
|
819 |
msgid "Error message for invalid email field"
|
820 |
msgstr "Mensagem de erro para email inválido"
|
821 |
|
822 |
-
#:
|
823 |
msgid "Error message for invalid website url field"
|
824 |
msgstr "Mensagem de erro para website inválido"
|
825 |
|
826 |
-
#:
|
827 |
-
#:
|
828 |
msgid "You must be"
|
829 |
msgstr "Você deve"
|
830 |
|
831 |
-
#:
|
832 |
msgid "Logged in as"
|
833 |
msgstr "Autenticado como"
|
834 |
|
835 |
-
#:
|
836 |
-
#:
|
837 |
msgid "Log out"
|
838 |
msgstr "Sair"
|
839 |
|
840 |
-
#:
|
841 |
msgid "Logged In"
|
842 |
msgstr "Fazer o login"
|
843 |
|
844 |
-
#:
|
845 |
msgid "To post a comment"
|
846 |
msgstr "Para publicar um comentário"
|
847 |
|
848 |
-
#:
|
849 |
-
#:
|
850 |
msgid "Vote Counted"
|
851 |
-
msgstr "
|
852 |
|
853 |
-
#:
|
854 |
msgid "You can vote only 1 time"
|
855 |
msgstr "Apenas pode votar uma vez"
|
856 |
|
857 |
-
#:
|
858 |
-
#:
|
859 |
msgid "Voting Error"
|
860 |
msgstr "Erro ao votar"
|
861 |
|
862 |
-
#:
|
863 |
msgid "Login To Vote"
|
864 |
msgstr "Faça o login para votar"
|
865 |
|
866 |
-
#:
|
867 |
msgid "You Cannot Vote On Your Comment"
|
868 |
msgstr "Não pode votar no seu comentário"
|
869 |
|
870 |
-
#:
|
871 |
msgid "You are not allowed to vote for this comment (Voting from same IP)"
|
872 |
msgstr ""
|
873 |
-
"
|
874 |
-
"IP)"
|
875 |
|
876 |
-
#:
|
877 |
-
#:
|
878 |
msgid "Invalid Captcha Code"
|
879 |
msgstr "Captcha Inválida"
|
880 |
|
881 |
-
#:
|
882 |
-
#:
|
883 |
msgid "Some of field value is invalid"
|
884 |
msgstr "A informação de algum campo é inválida"
|
885 |
|
886 |
-
#:
|
887 |
msgid "Comment waiting moderation"
|
888 |
msgstr "O comentário aguarda moderação"
|
889 |
|
890 |
-
#:
|
|
|
|
|
|
|
|
|
891 |
msgid "Message if comment was not updated"
|
892 |
msgstr "Mensagem se o comentário não for atualizado"
|
893 |
|
894 |
-
#:
|
895 |
-
#:
|
896 |
msgid "Sorry, the comment was not updated"
|
897 |
msgstr "Lamentamos, mas o comentário não foi atualizado"
|
898 |
|
899 |
-
#:
|
900 |
msgid "Message if comment no longer possible to edit"
|
901 |
-
msgstr "Mensagem se não for mais possível editar"
|
902 |
|
903 |
-
#:
|
904 |
-
#:
|
905 |
msgid "Sorry, this comment no longer possible to edit"
|
906 |
msgstr "Lamentamos, mas já não é possível editar o comentário"
|
907 |
|
908 |
-
#:
|
909 |
msgid "Message if comment text not changed"
|
910 |
msgstr "Mensagem se o texto do comentário não for alterado"
|
911 |
|
912 |
-
#:
|
913 |
msgid "TYou've not made any changes"
|
914 |
msgstr "Você não fez nenhuma alteração"
|
915 |
|
916 |
-
#:
|
917 |
msgid "Be the First to Comment!"
|
918 |
-
msgstr "Seja o
|
919 |
|
920 |
-
#:
|
921 |
msgid "Comments"
|
922 |
msgstr "Comentários"
|
923 |
|
924 |
-
#:
|
925 |
msgid "on"
|
926 |
msgstr "em"
|
927 |
|
928 |
-
#:
|
929 |
msgid "Start the discussion"
|
930 |
msgstr "Comece a discussão"
|
931 |
|
932 |
-
#:
|
933 |
msgid "Join the discussion"
|
934 |
msgstr "Entre na discussão"
|
935 |
|
936 |
-
#:
|
937 |
-
#:
|
938 |
msgid "Email"
|
939 |
msgstr "Email"
|
940 |
|
941 |
-
#:
|
942 |
msgid "Name"
|
943 |
msgstr "Nome"
|
944 |
|
945 |
-
#:
|
946 |
msgid "WebSite URL"
|
947 |
msgstr "Website"
|
948 |
|
949 |
-
#:
|
950 |
msgid "Please insert the code above to comment"
|
951 |
msgstr "Por favor insira o código acima para comentar"
|
952 |
|
953 |
-
#:
|
954 |
msgid "Post Comment"
|
955 |
msgstr "Publicar Comentário"
|
956 |
|
957 |
-
#:
|
958 |
msgid "Load More Comments"
|
959 |
msgstr "Carregar Mais Comentários"
|
960 |
|
961 |
-
#:
|
962 |
msgid "Guest"
|
963 |
msgstr "Visitante"
|
964 |
|
965 |
-
#:
|
966 |
msgid "Member"
|
967 |
msgstr "Membro"
|
968 |
|
969 |
-
#:
|
970 |
msgid "Author"
|
971 |
msgstr "Autor"
|
972 |
|
973 |
-
#:
|
974 |
msgid "Admin"
|
975 |
msgstr "Admin"
|
976 |
|
977 |
-
#:
|
978 |
msgid "New comment on the discussion section you've been interested in"
|
979 |
-
msgstr "Novo comentário
|
980 |
|
981 |
-
#:
|
982 |
msgid "New reply on the discussion section you've been interested in"
|
983 |
-
msgstr "Nova resposta
|
984 |
|
985 |
-
#:
|
986 |
msgid "You're subscribed for new replies on this comment"
|
987 |
msgstr "Subscreveu a alertas de novas respostas a este comentário"
|
988 |
|
989 |
-
#:
|
990 |
msgid "You're subscribed for new replies on all your comments"
|
991 |
msgstr "Subscreveu a alertas de novas respostas a todos os meus comentários"
|
992 |
|
993 |
-
#:
|
994 |
msgid "You're subscribed for new follow-up comments on this post"
|
995 |
msgstr "Subscreveu a alertas de novos comentários neste artigo"
|
996 |
|
997 |
-
#:
|
998 |
msgid "please fill out this field to comment"
|
999 |
msgstr "preencha este campo para comentar"
|
1000 |
|
1001 |
-
#:
|
1002 |
msgid "email address is invalid"
|
1003 |
msgstr "o endereço de email é inválido"
|
1004 |
|
1005 |
-
#:
|
1006 |
msgid "url is invalid"
|
1007 |
msgstr "o url é inválido"
|
1008 |
|
1009 |
-
#:
|
1010 |
msgid "year"
|
1011 |
msgstr "ano"
|
1012 |
|
1013 |
-
#:
|
1014 |
msgid "years"
|
1015 |
msgstr "anos"
|
1016 |
|
1017 |
-
#:
|
1018 |
msgid "month"
|
1019 |
msgstr "mês"
|
1020 |
|
1021 |
-
#:
|
1022 |
msgid "months"
|
1023 |
msgstr "meses"
|
1024 |
|
1025 |
-
#:
|
1026 |
msgid "day"
|
1027 |
msgstr "dia"
|
1028 |
|
1029 |
-
#:
|
1030 |
msgid "days"
|
1031 |
msgstr "dias"
|
1032 |
|
1033 |
-
#:
|
1034 |
msgid "hour"
|
1035 |
msgstr "hora"
|
1036 |
|
1037 |
-
#:
|
1038 |
msgid "hours"
|
1039 |
msgstr "horas"
|
1040 |
|
1041 |
-
#:
|
1042 |
msgid "minute"
|
1043 |
msgstr "minuto"
|
1044 |
|
1045 |
-
#:
|
1046 |
msgid "minutes"
|
1047 |
msgstr "minutos"
|
1048 |
|
1049 |
-
#:
|
1050 |
msgid "second"
|
1051 |
msgstr "segundo"
|
1052 |
|
1053 |
-
#:
|
1054 |
msgid "seconds"
|
1055 |
msgstr "segundos"
|
1056 |
|
1057 |
-
#:
|
1058 |
msgid "right now"
|
1059 |
msgstr "agora mesmo"
|
1060 |
|
1061 |
-
#:
|
1062 |
msgid "ago"
|
1063 |
msgstr "atrás"
|
1064 |
|
1065 |
-
#:
|
1066 |
msgid "You are logged in as"
|
1067 |
msgstr "Autenticado como"
|
1068 |
|
1069 |
-
#:
|
1070 |
msgid "logged in"
|
1071 |
msgstr "fazer o login"
|
1072 |
|
1073 |
-
#:
|
1074 |
msgid "to post a comment."
|
1075 |
msgstr "para publicar um comentário."
|
1076 |
|
1077 |
-
#:
|
1078 |
msgid "You've already voted for this comment"
|
1079 |
-
msgstr "
|
1080 |
|
1081 |
-
#:
|
1082 |
msgid "You Must Be Logged In To Vote"
|
1083 |
msgstr "Faça o login para votar"
|
1084 |
|
1085 |
-
#:
|
1086 |
msgid "You cannot vote for your comment"
|
1087 |
-
msgstr "
|
1088 |
|
1089 |
-
#:
|
1090 |
msgid "You are not allowed to vote for this comment"
|
1091 |
-
msgstr "
|
1092 |
|
1093 |
-
#:
|
1094 |
msgid "new comment"
|
1095 |
msgstr "novo comentário"
|
1096 |
|
1097 |
-
#:
|
1098 |
msgid "new comments"
|
1099 |
msgstr "novos comentários"
|
1100 |
|
1101 |
-
#:
|
1102 |
msgid "Comment awaiting moderation"
|
1103 |
msgstr "O seu comentário aguarda moderação"
|
1104 |
|
1105 |
-
#:
|
1106 |
msgid "new reply on your comment"
|
1107 |
msgstr "nova resposta ao seu comentário"
|
1108 |
|
1109 |
-
#:
|
1110 |
msgid "new replies on your comments"
|
1111 |
msgstr "novas respostas aos seus comentários"
|
1112 |
|
1113 |
-
#:
|
1114 |
msgid "You've not made any changes"
|
1115 |
-
msgstr "Você não fez
|
|
|
|
|
|
|
|
|
|
|
|
|
1116 |
|
1117 |
-
#:
|
1118 |
-
#: nome/wpdiscuz/options/wc-options.php:228
|
1119 |
msgid "Hacker?"
|
1120 |
msgstr "Hacker?"
|
1121 |
|
1122 |
-
#:
|
1123 |
msgid "wpDiscuz General Settings"
|
1124 |
msgstr "wpDiscuz - Opções Gerais"
|
1125 |
|
1126 |
-
#:
|
1127 |
msgid "General settings"
|
1128 |
-
msgstr "Opções
|
1129 |
|
1130 |
-
#:
|
1131 |
msgid "Email Subscription"
|
1132 |
msgstr "Subscrição via Email"
|
1133 |
|
1134 |
-
#:
|
1135 |
msgid "and Postmatic"
|
1136 |
msgstr "e Postmatic"
|
1137 |
|
1138 |
-
#:
|
1139 |
-
#: nome/wpdiscuz/options/wc-options.php:380
|
1140 |
msgid "Save Changes"
|
1141 |
-
msgstr "Guardar
|
1142 |
|
1143 |
-
#:
|
1144 |
msgid "Reset Options"
|
1145 |
-
msgstr "Repor
|
1146 |
|
1147 |
-
#:
|
1148 |
msgid "WpDiscuz Front-end Phrases"
|
1149 |
-
msgstr "wpDiscuz - Frases do
|
1150 |
|
1151 |
-
#:
|
1152 |
msgid "General"
|
1153 |
msgstr "Geral"
|
1154 |
|
1155 |
-
#:
|
1156 |
msgid "Form"
|
1157 |
msgstr "Formulário"
|
1158 |
|
1159 |
-
#:
|
1160 |
msgid "Date/Time"
|
1161 |
-
msgstr "Data/
|
1162 |
|
1163 |
-
#:
|
1164 |
msgid "Notification"
|
1165 |
msgstr "Notificação"
|
1166 |
|
1167 |
-
#:
|
1168 |
msgid "Phrases"
|
1169 |
msgstr "Frases"
|
1170 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1171 |
#~ msgid "Hide Share Button"
|
1172 |
#~ msgstr "Esconder o botão de partilha"
|
1173 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wpDiscuz - Wordpress Comments\n"
|
4 |
+
"POT-Creation-Date: 2015-08-30 19:04+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-08-30 19:17+0100\n"
|
6 |
"Last-Translator: Celso Azevedo <mail@celsoazevedo.net>\n"
|
7 |
"Language-Team: Celso Azevedo <mail@celsoazevedo.net>\n"
|
8 |
"Language: pt_PT\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.4\n"
|
13 |
+
"X-Poedit-Basepath: .\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;"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
22 |
+
#: wpdiscuz/comment-form/form.php:251 wpdiscuz/comment-form/tpl-comment.php:263
|
|
|
|
|
|
|
|
|
|
|
23 |
msgid "Participate in this discussion via email"
|
24 |
msgstr "Participar nesta discussão via e-mail"
|
25 |
|
26 |
+
#: wpdiscuz/comment-form/form.php:455
|
27 |
+
msgid "Connect with"
|
28 |
+
msgstr "Conectar-se com"
|
|
|
29 |
|
30 |
+
#: wpdiscuz/comment-form/tpl-comment.php:174
|
31 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:27
|
32 |
+
#: wpdiscuz/options/wc-options-serialize.php:449
|
33 |
msgid "Edit"
|
34 |
msgstr "Editar"
|
35 |
|
36 |
+
#: wpdiscuz/comment-form/tpl-comment.php:388 wpdiscuz/wc.php:325
|
37 |
+
msgid "Anonymous"
|
38 |
+
msgstr "Anónimo"
|
39 |
+
|
40 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:2
|
41 |
msgid "General Settings"
|
42 |
msgstr "Opções Gerais"
|
43 |
|
44 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:7
|
45 |
msgid "Display comment form for post types:"
|
46 |
+
msgstr "Exibir o formulário de comentário em:"
|
47 |
|
48 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:28
|
49 |
msgid "User Must be registered to comment"
|
50 |
msgstr "O utilizador deve estar registado para comentar"
|
51 |
|
52 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:34
|
53 |
+
msgid "Yes"
|
54 |
+
msgstr "Sim"
|
55 |
+
|
56 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:38
|
57 |
+
msgid "No"
|
58 |
+
msgstr "Não"
|
59 |
+
|
60 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:46
|
61 |
msgid "Comment author must fill out name"
|
62 |
+
msgstr "O autor do comentário tem que preencher o nome"
|
63 |
|
64 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:57
|
65 |
msgid "Comment author must fill out email"
|
66 |
+
msgstr "O autor do comentário tem que preencher o email"
|
67 |
|
68 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:68
|
69 |
msgid "Show the latest comments on"
|
70 |
msgstr "Mostrar os últimos comentários no"
|
71 |
|
72 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:72
|
73 |
msgid "the top of the list"
|
74 |
msgstr "no topo da lista de comentários"
|
75 |
|
76 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:74
|
77 |
msgid "top of the threads"
|
78 |
msgstr "no topo"
|
79 |
|
80 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:76
|
81 |
msgid "bottom of the threads"
|
82 |
msgstr "no fim"
|
83 |
|
84 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:78
|
85 |
msgid "the bottom of the list"
|
86 |
msgstr "no fim da lista de comentários"
|
87 |
|
88 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:86
|
89 |
msgid "Comment Threads Per Page"
|
90 |
msgstr "Comentários por página"
|
91 |
|
92 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:97
|
93 |
+
msgid "Comment text max length"
|
94 |
+
msgstr "Comprimento máximo do comentário"
|
95 |
+
|
96 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:108
|
97 |
msgid "Comments max depth"
|
98 |
msgstr "Níveis de respostas a comentários"
|
99 |
|
100 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:113
|
101 |
msgid "Level"
|
102 |
msgstr "Nível"
|
103 |
|
104 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:114
|
105 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:115
|
106 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:116
|
107 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:117
|
108 |
msgid "Levels"
|
109 |
msgstr "Níveis"
|
110 |
|
111 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:124
|
112 |
msgid "Comment text size in pixels"
|
113 |
msgstr "Tamanho do texto do comentário em pixeis"
|
114 |
|
115 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:141
|
116 |
msgid "Allow comment editing for"
|
117 |
msgstr "Permitir a edição de comentários por"
|
118 |
|
119 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:146
|
120 |
msgid "Not Allow"
|
121 |
+
msgstr "Não permitir"
|
122 |
|
123 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:147
|
124 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:148
|
125 |
+
#: wpdiscuz/options/options-layouts/settings-live-update.php:41
|
126 |
+
#: wpdiscuz/options/options-layouts/settings-live-update.php:42
|
127 |
+
#: wpdiscuz/options/options-layouts/settings-live-update.php:43
|
128 |
msgid "Minutes"
|
129 |
msgstr "Minutos"
|
130 |
|
131 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:149
|
132 |
+
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:73
|
133 |
msgid "Hour"
|
134 |
msgstr "Hora"
|
135 |
|
136 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:150
|
137 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:151
|
138 |
msgid "Hours"
|
139 |
msgstr "Horas"
|
140 |
|
141 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:158
|
142 |
msgid "Redirect first commenter to"
|
143 |
msgstr "Redirecionar o primeiro comentador para"
|
144 |
|
145 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:165
|
146 |
msgid "Do not redirect"
|
147 |
msgstr "Não redirecionar"
|
148 |
|
149 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:174
|
150 |
msgid "Allow guests to vote on comments"
|
151 |
msgstr "Permitir que os visitantes votem nos comentários"
|
152 |
|
153 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:184
|
154 |
+
msgid "Load WpDiscuz CSS and JS on home page"
|
155 |
+
msgstr "Carregar o CSS e JS do wpDiscuz na página inicial"
|
156 |
+
|
157 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:194
|
158 |
msgid "Load rest of all comments on clicking the [Load More Comments] button"
|
159 |
msgstr ""
|
160 |
"Carregar o resto dos comentários ao clicar no botão [Carregar Mais "
|
161 |
"Comentários]"
|
162 |
|
163 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:205
|
164 |
msgid "Use WordPress Date/Time format"
|
165 |
msgstr "Usar o formato de data e tempo do WordPress"
|
166 |
|
167 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:206
|
168 |
msgid ""
|
169 |
"wpDiscuz shows Human Readable date format. If you check this option it'll "
|
170 |
"show the date/time format set in WordPress General Settings."
|
173 |
"opção, o plugin vai usar o formato de data/hora definido na página de opções "
|
174 |
"do WordPress."
|
175 |
|
176 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:213
|
177 |
msgid "Current Wordpress date/time format"
|
178 |
msgstr "Formato atual de data e hora do WordPress"
|
179 |
|
180 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:219
|
181 |
+
msgid "Use Plugin .PO/.MO files"
|
182 |
+
msgstr "Usar os ficheiros .PO/.MO do plugin"
|
183 |
+
|
184 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:220
|
185 |
+
msgid ""
|
186 |
+
"wpDiscuz phrase system allows you to translate all front-end phrases. "
|
187 |
+
"However if you have a multi-language website it'll not allow you to add more "
|
188 |
+
"than one language translation. The only way to get it is the plugin "
|
189 |
+
"translation files (.PO / .MO). If wpDiscuz has the languages you need you "
|
190 |
+
"should check this option to disable phrase system and it'll automatically "
|
191 |
+
"translate all phrases based on language files according to current language."
|
192 |
+
msgstr ""
|
193 |
+
"O sistema de frases do wpDiscuz permite a tradução de todas as frases do "
|
194 |
+
"front-end. No entanto, se o site site for multi-língua, não é possível "
|
195 |
+
"adicionar mais do que uma tradução. A única forma de resolver este problema "
|
196 |
+
"passa por utilizar os ficheiros de tradução do plugin (.PO / .MO). Se o "
|
197 |
+
"wpDiscuz tiver as traduções que você precisa, marque esta opção para "
|
198 |
+
"desativar o sistema de tradução das frases e o plugin usará automaticamente "
|
199 |
+
"os ficheiros de tradução de acordo com a língua utilizada."
|
200 |
+
|
201 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:231
|
202 |
msgid ""
|
203 |
"Help wpDiscuz to grow allowing people to recognize which comment plugin you "
|
204 |
"use"
|
205 |
msgstr "Ajude o wpDiscuz a crescer divulgando o plugin"
|
206 |
|
207 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:233
|
208 |
msgid ""
|
209 |
"Please check this option on to help wpDiscuz get more popularity as your "
|
210 |
"thank to the hard work we do for you totally free. This option adds a very "
|
212 |
"visitors recognize the name of comment solution you use."
|
213 |
msgstr ""
|
214 |
"Marque esta opção para ajudar a divulgar o wpDiscuz e agradecer pelo nosso "
|
215 |
+
"trabalho na criação deste plugin gratuito. Esta opção adiciona um pequeno "
|
216 |
+
"icon (16x16px) no fim da secção de comentários e permite que os visitantes "
|
217 |
+
"fiquem a saber o nome do plugin que você usa."
|
218 |
|
219 |
+
#: wpdiscuz/options/options-layouts/settings-general.php:238
|
220 |
msgid "Thank you!"
|
221 |
msgstr "Obrigado!"
|
222 |
|
223 |
+
#: wpdiscuz/options/options-layouts/settings-live-update.php:2
|
224 |
+
#: wpdiscuz/options/wc-options.php:181
|
225 |
msgid "Live Update"
|
226 |
msgstr "Atualização em Tempo Real"
|
227 |
|
228 |
+
#: wpdiscuz/options/options-layouts/settings-live-update.php:8
|
229 |
msgid "Live update options"
|
230 |
msgstr "Opções de atualização em tempo real"
|
231 |
|
232 |
+
#: wpdiscuz/options/options-layouts/settings-live-update.php:9
|
233 |
+
msgid ""
|
234 |
+
"If you use Shared Web Hosting you should make sure the \"Live Update\" "
|
235 |
+
"function doesn't overload your server resources. This function is good for "
|
236 |
+
"VPS and Dedicated Hosting Plans."
|
237 |
+
msgstr ""
|
238 |
+
"Se usar um alojamento partilhado, assegure-se de que a \"atualização em "
|
239 |
+
"tempo real\" não sobrecarrega os recursos do servidor. Esta opção funciona "
|
240 |
+
"melhor numa VPS ou em planos de alojamento dedicado."
|
241 |
+
|
242 |
+
#: wpdiscuz/options/options-layouts/settings-live-update.php:14
|
243 |
msgid "Never update"
|
244 |
msgstr "Nunca atualizar"
|
245 |
|
246 |
+
#: wpdiscuz/options/options-layouts/settings-live-update.php:16
|
247 |
msgid "Turn off \"Live Update\" function"
|
248 |
msgstr "Desligar a opção \"Atualização em tempo real\""
|
249 |
|
250 |
+
#: wpdiscuz/options/options-layouts/settings-live-update.php:18
|
251 |
msgid "Show new comment/reply buttons to update manualy"
|
252 |
msgstr "Mostrar novos botões de comentário/resposta para atualizar manualmente"
|
253 |
|
254 |
+
#: wpdiscuz/options/options-layouts/settings-live-update.php:20
|
255 |
msgid "Always check for new comments and show update buttons"
|
256 |
msgstr "Verificar novos comentários e mostrar botões de atualização"
|
257 |
|
258 |
+
#: wpdiscuz/options/options-layouts/settings-live-update.php:22
|
259 |
msgid "Always update"
|
260 |
msgstr "Atualizar sempre"
|
261 |
|
262 |
+
#: wpdiscuz/options/options-layouts/settings-live-update.php:24
|
263 |
msgid "Always check for new comments and update automatically"
|
264 |
msgstr "Verificar novos comentários e atualizar automaticamente"
|
265 |
|
266 |
+
#: wpdiscuz/options/options-layouts/settings-live-update.php:32
|
267 |
msgid "Update comment list every"
|
268 |
msgstr "Atualizar a lista de comentários a cada"
|
269 |
|
270 |
+
#: wpdiscuz/options/options-layouts/settings-live-update.php:37
|
271 |
+
#: wpdiscuz/options/options-layouts/settings-live-update.php:38
|
272 |
+
#: wpdiscuz/options/options-layouts/settings-live-update.php:39
|
273 |
msgid "Seconds"
|
274 |
msgstr "Segundos"
|
275 |
|
276 |
+
#: wpdiscuz/options/options-layouts/settings-live-update.php:40
|
277 |
+
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:95
|
278 |
msgid "Minute"
|
279 |
msgstr "Minuto"
|
280 |
|
281 |
+
#: wpdiscuz/options/options-layouts/settings-show-hide.php:2
|
282 |
+
#: wpdiscuz/options/wc-options.php:182
|
283 |
msgid "Show/Hide Components"
|
284 |
msgstr "Mostrar/Ocultar Componentes"
|
285 |
|
286 |
+
#: wpdiscuz/options/options-layouts/settings-show-hide.php:7
|
287 |
msgid "Show logged-in user name and logout link on top of main form"
|
288 |
msgstr ""
|
289 |
+
"Mostrar o nome de utilizador no topo do formulário principal quando o "
|
290 |
+
"utilizador tem o login feito"
|
291 |
|
292 |
+
#: wpdiscuz/options/options-layouts/settings-show-hide.php:17
|
293 |
msgid "Hide Reply button for Guests"
|
294 |
msgstr "Ocultar o botão Responder a visitantes"
|
295 |
|
296 |
+
#: wpdiscuz/options/options-layouts/settings-show-hide.php:27
|
297 |
msgid "Hide Reply button for Members"
|
298 |
msgstr "Ocultar o botão Responder a membros"
|
299 |
|
300 |
+
#: wpdiscuz/options/options-layouts/settings-show-hide.php:37
|
301 |
msgid "Hide Author Titles"
|
302 |
msgstr "Ocultar título do autor do comentário"
|
303 |
|
304 |
+
#: wpdiscuz/options/options-layouts/settings-show-hide.php:47
|
305 |
msgid "Hide Voting buttons"
|
306 |
msgstr "Ocultar os botões de votação"
|
307 |
|
308 |
+
#: wpdiscuz/options/options-layouts/settings-show-hide.php:57
|
309 |
msgid "Hide Share Buttons"
|
310 |
msgstr "Ocultar botões de partilha"
|
311 |
|
312 |
+
#: wpdiscuz/options/options-layouts/settings-show-hide.php:67
|
313 |
msgid "Hide the CAPTCHA field"
|
314 |
msgstr "Ocultar o campo captcha"
|
315 |
|
316 |
+
#: wpdiscuz/options/options-layouts/settings-show-hide.php:77
|
317 |
msgid "Hide the Website URL field"
|
318 |
msgstr "Ocultar o campo website"
|
319 |
|
320 |
+
#: wpdiscuz/options/options-layouts/settings-show-hide.php:87
|
321 |
+
msgid "Hide header text"
|
322 |
+
msgstr "Ocultar o texto do cabeçalho"
|
323 |
+
|
324 |
+
#: wpdiscuz/options/options-layouts/settings-show-hide.php:97
|
325 |
+
msgid "Hide user avatar"
|
326 |
+
msgstr "Ocultar o avatar do utilizador"
|
327 |
+
|
328 |
+
#: wpdiscuz/options/options-layouts/settings-social.php:10
|
329 |
+
#: wpdiscuz/options/options-layouts/settings-social.php:12
|
330 |
+
#: wpdiscuz/options/options-layouts/settings-social.php:14
|
331 |
+
#: wpdiscuz/options/options-layouts/settings-social.php:16 wpdiscuz/wc.php:1024
|
332 |
msgid "Settings"
|
333 |
msgstr "Opções"
|
334 |
|
335 |
+
#: wpdiscuz/options/options-layouts/settings-social.php:21
|
336 |
+
#: wpdiscuz/options/options-layouts/settings-social.php:31
|
337 |
+
#: wpdiscuz/options/options-layouts/settings-social.php:41
|
338 |
+
#: wpdiscuz/options/options-layouts/settings-social.php:52
|
339 |
msgid "Activate"
|
340 |
msgstr "Ativar"
|
341 |
|
342 |
+
#: wpdiscuz/options/options-layouts/settings-social.php:25
|
343 |
+
#: wpdiscuz/options/options-layouts/settings-social.php:35
|
344 |
+
#: wpdiscuz/options/options-layouts/settings-social.php:45
|
345 |
+
#: wpdiscuz/options/options-layouts/settings-social.php:56
|
346 |
msgid "View details/Install"
|
347 |
msgstr "Ver detalhes/instalar"
|
348 |
|
349 |
+
#: wpdiscuz/options/options-layouts/settings-social.php:89
|
350 |
+
#: wpdiscuz/options/wc-options.php:185
|
351 |
msgid "Social Login"
|
352 |
msgstr "Login Social"
|
353 |
|
354 |
+
#: wpdiscuz/options/options-layouts/settings-social.php:90
|
355 |
+
msgid ""
|
356 |
+
"You can use one of these most popular Social Login Plugins to allow your "
|
357 |
+
"visitors login and comment with Facebook, Twitter, Google+, Wordpress, VK, "
|
358 |
+
"OK and lots of other social network service accounts. All social login "
|
359 |
+
"buttons will be fully integrated with wpDiscuz comment forms."
|
360 |
+
msgstr ""
|
361 |
+
"Pode usar um dos seguintes plugins para permitir que os seus visitantes "
|
362 |
+
"façam o login e comentem usando o Facebook, Twitter, Google+, WordPress, VK, "
|
363 |
+
"OK e outros serviços. Todos os botões de login serão integrados no "
|
364 |
+
"formulário de comentário do wpDiscuz."
|
365 |
+
|
366 |
+
#: wpdiscuz/options/options-layouts/settings-style.php:2
|
367 |
+
#: wpdiscuz/options/wc-options.php:184
|
368 |
msgid "Background and Colors"
|
369 |
msgstr "Fundo e Cores"
|
370 |
|
371 |
+
#: wpdiscuz/options/options-layouts/settings-style.php:7
|
372 |
msgid "Comment Form Background Color"
|
373 |
msgstr "Cor de fundo do formulário de comentário"
|
374 |
|
375 |
+
#: wpdiscuz/options/options-layouts/settings-style.php:10
|
376 |
+
#: wpdiscuz/options/options-layouts/settings-style.php:34
|
377 |
+
#: wpdiscuz/options/options-layouts/settings-style.php:58
|
378 |
+
#: wpdiscuz/options/options-layouts/settings-style.php:82
|
379 |
+
#: wpdiscuz/options/options-layouts/settings-style.php:107
|
380 |
+
#: wpdiscuz/options/options-layouts/settings-style.php:132
|
381 |
+
#: wpdiscuz/options/options-layouts/settings-style.php:155
|
382 |
+
#: wpdiscuz/options/options-layouts/settings-style.php:178
|
383 |
msgid "Example: #00ff00"
|
384 |
msgstr "Exemplo: #00ff00"
|
385 |
|
386 |
+
#: wpdiscuz/options/options-layouts/settings-style.php:31
|
387 |
msgid "Comment Background Color"
|
388 |
msgstr "Cor de fundo do comentário"
|
389 |
|
390 |
+
#: wpdiscuz/options/options-layouts/settings-style.php:55
|
391 |
msgid "Reply Background Color"
|
392 |
msgstr "Cor de fundo da resposta"
|
393 |
|
394 |
+
#: wpdiscuz/options/options-layouts/settings-style.php:79
|
395 |
msgid "Comment Text Color"
|
396 |
msgstr "Cor do texto do comentário"
|
397 |
|
398 |
+
#: wpdiscuz/options/options-layouts/settings-style.php:104
|
399 |
msgid "Author title color"
|
400 |
msgstr "Cor do título do autor"
|
401 |
|
402 |
+
#: wpdiscuz/options/options-layouts/settings-style.php:129
|
403 |
msgid "Vote, Reply, Share, Edit links text colors"
|
404 |
msgstr "Cor dos links Votar, Responder, Partilhar e Editar"
|
405 |
|
406 |
+
#: wpdiscuz/options/options-layouts/settings-style.php:152
|
407 |
msgid "Comment form fields border color"
|
408 |
msgstr "Cor das bordas nos campos do formulário"
|
409 |
|
410 |
+
#: wpdiscuz/options/options-layouts/settings-style.php:175
|
411 |
msgid "New loaded comments' background color"
|
412 |
msgstr "Cor de fundo dos novos comentários carregados"
|
413 |
|
414 |
+
#: wpdiscuz/options/options-layouts/settings-style.php:199
|
415 |
msgid "Custom CSS Code"
|
416 |
msgstr "CSS personalizado"
|
417 |
|
418 |
+
#: wpdiscuz/options/options-layouts/settings-subscription.php:2
|
419 |
msgid "Email Subscription Settings"
|
420 |
+
msgstr "Opções da subscrição via email"
|
421 |
|
422 |
+
#: wpdiscuz/options/options-layouts/settings-subscription.php:7
|
423 |
msgid "Show \"Notify of all new follow-up comments\""
|
424 |
msgstr "Mostrar \"Notificar-me de novos comentários\""
|
425 |
|
426 |
+
#: wpdiscuz/options/options-layouts/settings-subscription.php:8
|
427 |
msgid "Show \"Notify of new replies to all my comments\""
|
428 |
msgstr "Mostrar \"Notificar-me de respostas a todos os meus comentários\""
|
429 |
|
430 |
+
#: wpdiscuz/options/options-layouts/settings-subscription.php:9
|
431 |
msgid "Show \"Notify of new replies to this comment\""
|
432 |
msgstr "Mostrar \"Notificar-me de respostas a este comentário\""
|
433 |
|
434 |
+
#: wpdiscuz/options/options-layouts/settings-subscription.php:11
|
|
|
435 |
msgid ""
|
436 |
"Please keep all three or at least one of those options ON, otherwise users "
|
437 |
"will not have any option for email notifications and they'll not get any "
|
438 |
"messages."
|
439 |
msgstr ""
|
440 |
+
"Mantenha pelo menos uma destas opções ativas para exibir a opção de "
|
441 |
"subscrição aos utilizadores."
|
442 |
|
443 |
+
#: wpdiscuz/options/options-layouts/settings-subscription.php:30
|
|
|
444 |
msgid "Use Postmatic for subscriptions and commenting by email"
|
445 |
msgstr "Usar o Postmatic para subscrições e comentários via email"
|
446 |
|
447 |
+
#: wpdiscuz/options/options-layouts/settings-subscription.php:31
|
|
|
448 |
msgid ""
|
449 |
"Postmatic allows your users subscribe to comments. Instead of just being "
|
450 |
"notified, they add a reply right from their inbox."
|
452 |
"O Postmatic permite que os seus utilizadores subscrevam aos comentários. Em "
|
453 |
"vez de serem apenas notificados, eles podem responder diretamente via email."
|
454 |
|
455 |
+
#: wpdiscuz/options/options-layouts/settings-subscription.php:42
|
|
|
456 |
msgid ""
|
457 |
"Keep selected the email notification of all new follow-up comments by default"
|
458 |
+
msgstr "Deixar a opção de notificação via email ativa por omissão"
|
459 |
|
460 |
+
#: wpdiscuz/options/options-layouts/settings-subscription.php:43
|
|
|
461 |
msgid ""
|
462 |
"If this option is checked-on, in Manage Subscriptions section of comment "
|
463 |
"forms will only be displayed the \"Notify of all new follow-up comments\" "
|
464 |
"option and this option will always be selected by default."
|
465 |
msgstr ""
|
466 |
"Se esta opção estiver selecionada, na secção \"Gerir Subscrições\" dos "
|
467 |
+
"comentários, apenas a opção \"Notificar-me de novos comentários\" será "
|
468 |
+
"exibida e estará sempre selecionada por omissão."
|
469 |
|
470 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:2
|
471 |
msgid "Comment Template Phrases"
|
472 |
+
msgstr "Frases dos comentários"
|
473 |
|
474 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:7
|
475 |
+
#: wpdiscuz/options/wc-options-serialize.php:447
|
476 |
msgid "Reply"
|
477 |
msgstr "Responder"
|
478 |
|
479 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:17
|
480 |
+
#: wpdiscuz/options/wc-options-serialize.php:448
|
481 |
msgid "Share"
|
482 |
msgstr "Partilhar"
|
483 |
|
484 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:37
|
485 |
+
#: wpdiscuz/options/wc-options-serialize.php:450
|
486 |
msgid "Share On Facebook"
|
487 |
msgstr "Partilhar no Facebook"
|
488 |
|
489 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:47
|
490 |
+
#: wpdiscuz/options/wc-options-serialize.php:451
|
491 |
msgid "Share On Twitter"
|
492 |
msgstr "Partilhar no Twitter"
|
493 |
|
494 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:57
|
495 |
+
#: wpdiscuz/options/wc-options-serialize.php:452
|
496 |
msgid "Share On Google"
|
497 |
msgstr "Partilhar no Google"
|
498 |
|
499 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:67
|
500 |
+
#: wpdiscuz/options/wc-options-serialize.php:453
|
501 |
+
msgid "Share On VKontakte"
|
502 |
+
msgstr "Partilhar no VKontakte"
|
503 |
|
504 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:77
|
505 |
+
#: wpdiscuz/options/wc-options-serialize.php:454
|
506 |
msgid "Share On Odnoklassniki"
|
507 |
msgstr "Partilhar no Odnoklassniki"
|
508 |
|
509 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:87
|
510 |
+
#: wpdiscuz/options/wc-options-serialize.php:455
|
511 |
msgid "Hide Replies"
|
512 |
msgstr "Ocultar Respostas"
|
513 |
|
514 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:97
|
515 |
+
#: wpdiscuz/options/wc-options-serialize.php:456
|
516 |
msgid "Show Replies"
|
517 |
msgstr "Mostrar Respostas"
|
518 |
|
519 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:107
|
520 |
msgid "Title For Guests"
|
521 |
msgstr "Título para Visitantes"
|
522 |
|
523 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:117
|
524 |
msgid "Title For Members"
|
525 |
msgstr "Título para Membros"
|
526 |
|
527 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:127
|
528 |
msgid "Title For Authors"
|
529 |
msgstr "Título para Autores"
|
530 |
|
531 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:137
|
532 |
msgid "Title For Admins"
|
533 |
msgstr "Título para Administradores"
|
534 |
|
535 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:147
|
536 |
+
#: wpdiscuz/options/wc-options-serialize.php:498
|
537 |
msgid "Vote Up"
|
538 |
msgstr "Voto Positivo"
|
539 |
|
540 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:157
|
541 |
+
#: wpdiscuz/options/wc-options-serialize.php:499
|
542 |
msgid "Vote Down"
|
543 |
msgstr "Voto Negativo"
|
544 |
|
545 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:167
|
546 |
msgid "Save edited comment button text"
|
547 |
msgstr "Texto do botão para guardar comentário editado"
|
548 |
|
549 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:171
|
550 |
+
#: wpdiscuz/options/wc-options-serialize.php:517
|
551 |
msgid "Save"
|
552 |
msgstr "Guardar"
|
553 |
|
554 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:177
|
555 |
msgid "Cancel comment editing button text"
|
556 |
msgstr "Texto do botão para cancelar a edição do comentário"
|
557 |
|
558 |
+
#: wpdiscuz/options/phrases-layout/phrases-comment.php:181
|
559 |
+
#: wpdiscuz/options/wc-options-serialize.php:518
|
560 |
msgid "Cancel"
|
561 |
msgstr "Cancelar"
|
562 |
|
563 |
+
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:2
|
564 |
msgid "Date/Time Phrases"
|
565 |
+
msgstr "Frases da data/hora"
|
566 |
|
567 |
+
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:7
|
568 |
msgid "Year"
|
569 |
msgstr "Ano"
|
570 |
|
571 |
+
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:18
|
572 |
msgid "Years (Plural Form)"
|
573 |
msgstr "Anos (plural)"
|
574 |
|
575 |
+
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:22
|
576 |
msgid "Years"
|
577 |
msgstr "Anos"
|
578 |
|
579 |
+
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:29
|
580 |
msgid "Month"
|
581 |
msgstr "Mês"
|
582 |
|
583 |
+
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:40
|
584 |
msgid "Months (Plural Form)"
|
585 |
msgstr "Mês (plural)"
|
586 |
|
587 |
+
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:51
|
588 |
msgid "Day"
|
589 |
msgstr "Dia"
|
590 |
|
591 |
+
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:62
|
592 |
msgid "Days (Plural Form)"
|
593 |
msgstr "Dias (plural)"
|
594 |
|
595 |
+
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:84
|
596 |
msgid "Hours (Plural Form)"
|
597 |
msgstr "Horas (plural)"
|
598 |
|
599 |
+
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:106
|
600 |
msgid "Minutes (Plural Form)"
|
601 |
msgstr "Minutos (plural)"
|
602 |
|
603 |
+
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:117
|
604 |
msgid "Second"
|
605 |
msgstr "Segundo"
|
606 |
|
607 |
+
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:128
|
608 |
msgid "Seconds (Plural Form)"
|
609 |
msgstr "Segundos (plural)"
|
610 |
|
611 |
+
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:138
|
612 |
msgid "Commented \"right now\" text"
|
613 |
msgstr "Comentário enviado \"agora mesmo\""
|
614 |
|
615 |
+
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:149
|
616 |
msgid "Ago text"
|
617 |
msgstr "\"Atrás\""
|
618 |
|
619 |
+
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:160
|
620 |
msgid "\"Today\" text"
|
621 |
msgstr "\"Hoje\""
|
622 |
|
623 |
+
#: wpdiscuz/options/phrases-layout/phrases-datetime.php:164
|
624 |
+
#: wpdiscuz/options/wc-options-serialize.php:492
|
625 |
msgid "Today"
|
626 |
msgstr "Hoje"
|
627 |
|
628 |
+
#: wpdiscuz/options/phrases-layout/phrases-email.php:2
|
629 |
msgid "Email Template Phrases"
|
630 |
+
msgstr "Frases dos emails"
|
631 |
|
632 |
+
#: wpdiscuz/options/phrases-layout/phrases-email.php:7
|
633 |
msgid "Email Subject"
|
634 |
msgstr "Assunto do Email"
|
635 |
|
636 |
+
#: wpdiscuz/options/phrases-layout/phrases-email.php:18
|
637 |
msgid "Email Message"
|
638 |
msgstr "Mensagem do Email"
|
639 |
|
640 |
+
#: wpdiscuz/options/phrases-layout/phrases-email.php:29
|
641 |
msgid "New Reply Subject"
|
642 |
msgstr "Assunto do alerta de Nova Resposta"
|
643 |
|
644 |
+
#: wpdiscuz/options/phrases-layout/phrases-email.php:33
|
645 |
+
#: wpdiscuz/options/phrases-layout/phrases-general.php:101
|
646 |
+
#: wpdiscuz/options/wc-options-serialize.php:463 wpdiscuz/wc.php:934
|
647 |
msgid "New Reply"
|
648 |
msgstr "Nova Resposta"
|
649 |
|
650 |
+
#: wpdiscuz/options/phrases-layout/phrases-email.php:40
|
651 |
msgid "New Reply Message"
|
652 |
msgstr "Mensagem do alerta de Nova Resposta"
|
653 |
|
654 |
+
#: wpdiscuz/options/phrases-layout/phrases-email.php:50
|
655 |
+
#: wpdiscuz/options/phrases-layout/phrases-email.php:54
|
656 |
+
#: wpdiscuz/options/wc-options-serialize.php:468
|
657 |
msgid "Unsubscribe"
|
658 |
msgstr "Cancelar Subscrição"
|
659 |
|
660 |
+
#: wpdiscuz/options/phrases-layout/phrases-email.php:61
|
661 |
+
#: wpdiscuz/options/phrases-layout/phrases-email.php:65
|
662 |
+
#: wpdiscuz/options/wc-options-serialize.php:469
|
663 |
msgid "Ignore Subscription"
|
664 |
msgstr "Ignorar Subscrição"
|
665 |
|
666 |
+
#: wpdiscuz/options/phrases-layout/phrases-email.php:72
|
667 |
+
#: wpdiscuz/options/phrases-layout/phrases-email.php:76
|
668 |
+
#: wpdiscuz/options/wc-options-serialize.php:471
|
669 |
+
msgid "Confirm your subscription"
|
670 |
msgstr "Confirme a sua subscrição"
|
671 |
|
672 |
+
#: wpdiscuz/options/phrases-layout/phrases-email.php:82
|
673 |
+
#: wpdiscuz/options/phrases-layout/phrases-email.php:86
|
674 |
+
#: wpdiscuz/options/wc-options-serialize.php:472
|
675 |
msgid "You've successfully confirmed your subscription."
|
676 |
msgstr "A sua subscrição foi confirmada com sucesso."
|
677 |
|
678 |
+
#: wpdiscuz/options/phrases-layout/phrases-email.php:92
|
679 |
msgid "Subscribe Confirmation Email Subject"
|
680 |
msgstr "Assunto do email de confirmação da subscrição"
|
681 |
|
682 |
+
#: wpdiscuz/options/phrases-layout/phrases-email.php:96
|
683 |
+
#: wpdiscuz/options/wc-options-serialize.php:473 wpdiscuz/wc.php:945
|
684 |
msgid "Subscribe Confirmation"
|
685 |
msgstr "Confirmação de subscrição"
|
686 |
|
687 |
+
#: wpdiscuz/options/phrases-layout/phrases-email.php:103
|
688 |
msgid "Subscribe Confirmation Email Content"
|
689 |
msgstr "Conteúdo do email sobre a confirmação da subscrição"
|
690 |
|
691 |
+
#: wpdiscuz/options/phrases-layout/phrases-email.php:107
|
692 |
+
#: wpdiscuz/options/wc-options-serialize.php:474 wpdiscuz/wc.php:946
|
693 |
msgid ""
|
694 |
"Hi, <br/> You just subscribed for new comments on our website. This means "
|
695 |
"you will receive an email when new comments are posted according to "
|
703 |
"baixo. Se acha que este email foi enviado por engano, por favor ignore esta "
|
704 |
"mensagem e nunca o contactaremos de novo."
|
705 |
|
706 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:2
|
707 |
msgid "Form Template Phrases"
|
708 |
+
msgstr "Frases do formulário de contacto"
|
709 |
|
710 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:7
|
711 |
msgid "Comment Field Start"
|
712 |
msgstr "Mensagem de incentivo a discussão"
|
713 |
|
714 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:17
|
715 |
msgid "Comment Field Join"
|
716 |
msgstr "Mensagem de incentivo no formulário"
|
717 |
|
718 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:27
|
719 |
msgid "Email Field"
|
720 |
msgstr "Campo de Email"
|
721 |
|
722 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:37
|
723 |
msgid "Name Field"
|
724 |
msgstr "Campo do Nome"
|
725 |
|
726 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:47
|
727 |
msgid "WebSite URL Field"
|
728 |
msgstr "Campo do URL"
|
729 |
|
730 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:57
|
731 |
msgid "CAPTCHA Field"
|
732 |
msgstr "Campo do Captcha"
|
733 |
|
734 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:67
|
735 |
msgid "Submit Button"
|
736 |
msgstr "Botão de Submissão"
|
737 |
|
738 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:77
|
739 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:81
|
740 |
+
#: wpdiscuz/options/wc-options-serialize.php:440
|
741 |
msgid "Manage Subscriptions"
|
742 |
msgstr "Gerir Subscrições"
|
743 |
|
744 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:87
|
745 |
msgid "Notify \"None\""
|
746 |
+
msgstr "Não notificar (checkbox)"
|
747 |
|
748 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:91
|
749 |
+
#: wpdiscuz/options/wc-options-serialize.php:441
|
750 |
msgid "None"
|
751 |
+
msgstr "Não notificar"
|
752 |
|
753 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:97
|
754 |
msgid "Notify on new comments (checkbox)"
|
755 |
+
msgstr "Notificar quando novos comentários forem publicados (checkbox)"
|
756 |
|
757 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:101
|
758 |
+
#: wpdiscuz/options/wc-options-serialize.php:442
|
759 |
msgid "Notify of all new follow-up comments"
|
760 |
msgstr "Notificar-me de novos comentários"
|
761 |
|
762 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:108
|
763 |
msgid "Notify on all new replies (checkbox)"
|
764 |
+
msgstr ""
|
765 |
+
"Notificar ao receber respostas a todos os comentários do utilizador "
|
766 |
+
"(checkbox)"
|
767 |
|
768 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:112
|
769 |
+
#: wpdiscuz/options/wc-options-serialize.php:443
|
770 |
msgid "Notify of new replies to all my comments"
|
771 |
msgstr "Notificar-me de respostas a todos os meus comentários"
|
772 |
|
773 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:119
|
774 |
msgid "Notify on new replies (checkbox)"
|
775 |
+
msgstr "Notificar ao receber respostas ao comentário (checkbox)"
|
776 |
|
777 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:123
|
778 |
+
#: wpdiscuz/options/wc-options-serialize.php:444
|
779 |
msgid "Notify of new replies to this comment"
|
780 |
msgstr "Notificar-me de respostas a este comentário"
|
781 |
|
782 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:129
|
783 |
msgid "Subscribed on this comment replies"
|
784 |
+
msgstr "Está subscrito a respostas a este comentário"
|
785 |
|
786 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:139
|
787 |
msgid "Subscribed on all your comments replies"
|
788 |
+
msgstr "Está subscrito a respostas a todos os seus comentários"
|
789 |
|
790 |
+
#: wpdiscuz/options/phrases-layout/phrases-form.php:149
|
791 |
msgid "Subscribed on this post"
|
792 |
+
msgstr "Está subscrito a novos comentários neste artigo"
|
793 |
|
794 |
+
#: wpdiscuz/options/phrases-layout/phrases-general.php:2
|
795 |
msgid "General Phrases"
|
796 |
+
msgstr "Frases gerais"
|
797 |
|
798 |
+
#: wpdiscuz/options/phrases-layout/phrases-general.php:7
|
799 |
+
#: wpdiscuz/options/wc-options-serialize.php:428
|
800 |
msgid "Leave a Reply"
|
801 |
msgstr "Deixe um comentário"
|
802 |
|
803 |
+
#: wpdiscuz/options/phrases-layout/phrases-general.php:17
|
804 |
msgid "Be the first to comment"
|
805 |
msgstr "Seja o primeiro a comentar"
|
806 |
|
807 |
+
#: wpdiscuz/options/phrases-layout/phrases-general.php:27
|
808 |
+
#: wpdiscuz/options/wc-options-serialize.php:430
|
809 |
+
#: wpdiscuz/options/wc-options.php:354
|
810 |
msgid "Comment"
|
811 |
msgstr "Comentário"
|
812 |
|
813 |
+
#: wpdiscuz/options/phrases-layout/phrases-general.php:37
|
814 |
msgid "Comment (Plural Form)"
|
815 |
msgstr "Comentário (Plural)"
|
816 |
|
817 |
+
#: wpdiscuz/options/phrases-layout/phrases-general.php:47
|
818 |
msgid "On"
|
819 |
msgstr "Em"
|
820 |
|
821 |
+
#: wpdiscuz/options/phrases-layout/phrases-general.php:57
|
822 |
msgid "Load More Button"
|
823 |
msgstr "Botão Carregar Mais Comentários"
|
824 |
|
825 |
+
#: wpdiscuz/options/phrases-layout/phrases-general.php:67
|
826 |
+
#: wpdiscuz/options/wc-options-serialize.php:446
|
827 |
msgid "Load Rest of Comments"
|
828 |
msgstr "Carregar o resto dos comentários"
|
829 |
|
830 |
+
#: wpdiscuz/options/phrases-layout/phrases-general.php:77
|
831 |
msgid "Button text if has new comment"
|
832 |
msgstr "Texto do botão se houver um novo comentário"
|
833 |
|
834 |
+
#: wpdiscuz/options/phrases-layout/phrases-general.php:81
|
835 |
+
#: wpdiscuz/options/wc-options-serialize.php:461
|
836 |
msgid "New Comment"
|
837 |
msgstr "Novo Comentário"
|
838 |
|
839 |
+
#: wpdiscuz/options/phrases-layout/phrases-general.php:87
|
840 |
msgid "Button text if has new comments (Plural Form)"
|
841 |
msgstr "Texto do botão se tiver novos comentários (plural)"
|
842 |
|
843 |
+
#: wpdiscuz/options/phrases-layout/phrases-general.php:91
|
844 |
msgid "New Comments"
|
845 |
msgstr "Novos Comentários"
|
846 |
|
847 |
+
#: wpdiscuz/options/phrases-layout/phrases-general.php:97
|
848 |
msgid "Button text if has new reply"
|
849 |
msgstr "Texto do botão se tiver uma resposta nova"
|
850 |
|
851 |
+
#: wpdiscuz/options/phrases-layout/phrases-general.php:107
|
852 |
msgid "Button text if has new replies (Plural Form)"
|
853 |
msgstr "Texto do botão se tiver novas respostas (plural)"
|
854 |
|
855 |
+
#: wpdiscuz/options/phrases-layout/phrases-general.php:111
|
856 |
msgid "New Replies"
|
857 |
msgstr "Novas Respostas"
|
858 |
|
859 |
+
#: wpdiscuz/options/phrases-layout/phrases-general.php:117
|
860 |
msgid "Text on load more button if has new comment(s)"
|
861 |
msgstr ""
|
862 |
+
"Texto do botão \"carregar novos comentários\" se existirem novos comentários"
|
863 |
|
864 |
+
#: wpdiscuz/options/phrases-layout/phrases-general.php:121
|
865 |
+
#: wpdiscuz/options/wc-options-serialize.php:513
|
866 |
msgid "New"
|
867 |
msgstr "Novo"
|
868 |
|
869 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:2
|
870 |
msgid "Notification Phrases"
|
871 |
+
msgstr "Frases de notificação"
|
872 |
|
873 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:7
|
874 |
+
#: wpdiscuz/options/wc-options-serialize.php:470
|
875 |
msgid "You've successfully unsubscribed."
|
876 |
+
msgstr "A subscrição foi cancelada com sucesso."
|
877 |
|
878 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:18
|
879 |
msgid "Error message for empty field"
|
880 |
msgstr "Mensagem de erro para campos vazios"
|
881 |
|
882 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:28
|
883 |
msgid "Error message for invalid email field"
|
884 |
msgstr "Mensagem de erro para email inválido"
|
885 |
|
886 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:38
|
887 |
msgid "Error message for invalid website url field"
|
888 |
msgstr "Mensagem de erro para website inválido"
|
889 |
|
890 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:48
|
891 |
+
#: wpdiscuz/options/wc-options-serialize.php:493
|
892 |
msgid "You must be"
|
893 |
msgstr "Você deve"
|
894 |
|
895 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:58
|
896 |
msgid "Logged in as"
|
897 |
msgstr "Autenticado como"
|
898 |
|
899 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:68
|
900 |
+
#: wpdiscuz/options/wc-options-serialize.php:495
|
901 |
msgid "Log out"
|
902 |
msgstr "Sair"
|
903 |
|
904 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:78
|
905 |
msgid "Logged In"
|
906 |
msgstr "Fazer o login"
|
907 |
|
908 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:88
|
909 |
msgid "To post a comment"
|
910 |
msgstr "Para publicar um comentário"
|
911 |
|
912 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:98
|
913 |
+
#: wpdiscuz/options/wc-options-serialize.php:500
|
914 |
msgid "Vote Counted"
|
915 |
+
msgstr "Voto contado"
|
916 |
|
917 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:108
|
918 |
msgid "You can vote only 1 time"
|
919 |
msgstr "Apenas pode votar uma vez"
|
920 |
|
921 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:118
|
922 |
+
#: wpdiscuz/options/wc-options-serialize.php:502
|
923 |
msgid "Voting Error"
|
924 |
msgstr "Erro ao votar"
|
925 |
|
926 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:128
|
927 |
msgid "Login To Vote"
|
928 |
msgstr "Faça o login para votar"
|
929 |
|
930 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:138
|
931 |
msgid "You Cannot Vote On Your Comment"
|
932 |
msgstr "Não pode votar no seu comentário"
|
933 |
|
934 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:148
|
935 |
msgid "You are not allowed to vote for this comment (Voting from same IP)"
|
936 |
msgstr ""
|
937 |
+
"Não tem permissões para votar neste comentário (votando usando o mesmo IP)"
|
|
|
938 |
|
939 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:158
|
940 |
+
#: wpdiscuz/options/wc-options-serialize.php:506
|
941 |
msgid "Invalid Captcha Code"
|
942 |
msgstr "Captcha Inválida"
|
943 |
|
944 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:168
|
945 |
+
#: wpdiscuz/options/wc-options-serialize.php:507
|
946 |
msgid "Some of field value is invalid"
|
947 |
msgstr "A informação de algum campo é inválida"
|
948 |
|
949 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:178
|
950 |
msgid "Comment waiting moderation"
|
951 |
msgstr "O comentário aguarda moderação"
|
952 |
|
953 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:188
|
954 |
+
msgid "Message if comment content length is too long"
|
955 |
+
msgstr "Mensagem se o comentário for longo de mais"
|
956 |
+
|
957 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:198
|
958 |
msgid "Message if comment was not updated"
|
959 |
msgstr "Mensagem se o comentário não for atualizado"
|
960 |
|
961 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:202
|
962 |
+
#: wpdiscuz/options/wc-options-serialize.php:514
|
963 |
msgid "Sorry, the comment was not updated"
|
964 |
msgstr "Lamentamos, mas o comentário não foi atualizado"
|
965 |
|
966 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:208
|
967 |
msgid "Message if comment no longer possible to edit"
|
968 |
+
msgstr "Mensagem se não for mais possível editar o comentário"
|
969 |
|
970 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:212
|
971 |
+
#: wpdiscuz/options/wc-options-serialize.php:515
|
972 |
msgid "Sorry, this comment no longer possible to edit"
|
973 |
msgstr "Lamentamos, mas já não é possível editar o comentário"
|
974 |
|
975 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:219
|
976 |
msgid "Message if comment text not changed"
|
977 |
msgstr "Mensagem se o texto do comentário não for alterado"
|
978 |
|
979 |
+
#: wpdiscuz/options/phrases-layout/phrases-notification.php:223
|
980 |
msgid "TYou've not made any changes"
|
981 |
msgstr "Você não fez nenhuma alteração"
|
982 |
|
983 |
+
#: wpdiscuz/options/wc-options-serialize.php:429
|
984 |
msgid "Be the First to Comment!"
|
985 |
+
msgstr "Seja o primeiro a comentar!"
|
986 |
|
987 |
+
#: wpdiscuz/options/wc-options-serialize.php:431
|
988 |
msgid "Comments"
|
989 |
msgstr "Comentários"
|
990 |
|
991 |
+
#: wpdiscuz/options/wc-options-serialize.php:432
|
992 |
msgid "on"
|
993 |
msgstr "em"
|
994 |
|
995 |
+
#: wpdiscuz/options/wc-options-serialize.php:433
|
996 |
msgid "Start the discussion"
|
997 |
msgstr "Comece a discussão"
|
998 |
|
999 |
+
#: wpdiscuz/options/wc-options-serialize.php:434
|
1000 |
msgid "Join the discussion"
|
1001 |
msgstr "Entre na discussão"
|
1002 |
|
1003 |
+
#: wpdiscuz/options/wc-options-serialize.php:435
|
1004 |
+
#: wpdiscuz/options/wc-options.php:356
|
1005 |
msgid "Email"
|
1006 |
msgstr "Email"
|
1007 |
|
1008 |
+
#: wpdiscuz/options/wc-options-serialize.php:436
|
1009 |
msgid "Name"
|
1010 |
msgstr "Nome"
|
1011 |
|
1012 |
+
#: wpdiscuz/options/wc-options-serialize.php:437
|
1013 |
msgid "WebSite URL"
|
1014 |
msgstr "Website"
|
1015 |
|
1016 |
+
#: wpdiscuz/options/wc-options-serialize.php:438
|
1017 |
msgid "Please insert the code above to comment"
|
1018 |
msgstr "Por favor insira o código acima para comentar"
|
1019 |
|
1020 |
+
#: wpdiscuz/options/wc-options-serialize.php:439
|
1021 |
msgid "Post Comment"
|
1022 |
msgstr "Publicar Comentário"
|
1023 |
|
1024 |
+
#: wpdiscuz/options/wc-options-serialize.php:445
|
1025 |
msgid "Load More Comments"
|
1026 |
msgstr "Carregar Mais Comentários"
|
1027 |
|
1028 |
+
#: wpdiscuz/options/wc-options-serialize.php:457
|
1029 |
msgid "Guest"
|
1030 |
msgstr "Visitante"
|
1031 |
|
1032 |
+
#: wpdiscuz/options/wc-options-serialize.php:458
|
1033 |
msgid "Member"
|
1034 |
msgstr "Membro"
|
1035 |
|
1036 |
+
#: wpdiscuz/options/wc-options-serialize.php:459
|
1037 |
msgid "Author"
|
1038 |
msgstr "Autor"
|
1039 |
|
1040 |
+
#: wpdiscuz/options/wc-options-serialize.php:460
|
1041 |
msgid "Admin"
|
1042 |
msgstr "Admin"
|
1043 |
|
1044 |
+
#: wpdiscuz/options/wc-options-serialize.php:462
|
1045 |
msgid "New comment on the discussion section you've been interested in"
|
1046 |
+
msgstr "Novo comentário numa discussão do seu interesse"
|
1047 |
|
1048 |
+
#: wpdiscuz/options/wc-options-serialize.php:464 wpdiscuz/wc.php:935
|
1049 |
msgid "New reply on the discussion section you've been interested in"
|
1050 |
+
msgstr "Nova resposta numa discussão do seu interesse "
|
1051 |
|
1052 |
+
#: wpdiscuz/options/wc-options-serialize.php:465
|
1053 |
msgid "You're subscribed for new replies on this comment"
|
1054 |
msgstr "Subscreveu a alertas de novas respostas a este comentário"
|
1055 |
|
1056 |
+
#: wpdiscuz/options/wc-options-serialize.php:466
|
1057 |
msgid "You're subscribed for new replies on all your comments"
|
1058 |
msgstr "Subscreveu a alertas de novas respostas a todos os meus comentários"
|
1059 |
|
1060 |
+
#: wpdiscuz/options/wc-options-serialize.php:467
|
1061 |
msgid "You're subscribed for new follow-up comments on this post"
|
1062 |
msgstr "Subscreveu a alertas de novos comentários neste artigo"
|
1063 |
|
1064 |
+
#: wpdiscuz/options/wc-options-serialize.php:475
|
1065 |
msgid "please fill out this field to comment"
|
1066 |
msgstr "preencha este campo para comentar"
|
1067 |
|
1068 |
+
#: wpdiscuz/options/wc-options-serialize.php:476
|
1069 |
msgid "email address is invalid"
|
1070 |
msgstr "o endereço de email é inválido"
|
1071 |
|
1072 |
+
#: wpdiscuz/options/wc-options-serialize.php:477
|
1073 |
msgid "url is invalid"
|
1074 |
msgstr "o url é inválido"
|
1075 |
|
1076 |
+
#: wpdiscuz/options/wc-options-serialize.php:478
|
1077 |
msgid "year"
|
1078 |
msgstr "ano"
|
1079 |
|
1080 |
+
#: wpdiscuz/options/wc-options-serialize.php:479
|
1081 |
msgid "years"
|
1082 |
msgstr "anos"
|
1083 |
|
1084 |
+
#: wpdiscuz/options/wc-options-serialize.php:480
|
1085 |
msgid "month"
|
1086 |
msgstr "mês"
|
1087 |
|
1088 |
+
#: wpdiscuz/options/wc-options-serialize.php:481
|
1089 |
msgid "months"
|
1090 |
msgstr "meses"
|
1091 |
|
1092 |
+
#: wpdiscuz/options/wc-options-serialize.php:482
|
1093 |
msgid "day"
|
1094 |
msgstr "dia"
|
1095 |
|
1096 |
+
#: wpdiscuz/options/wc-options-serialize.php:483
|
1097 |
msgid "days"
|
1098 |
msgstr "dias"
|
1099 |
|
1100 |
+
#: wpdiscuz/options/wc-options-serialize.php:484
|
1101 |
msgid "hour"
|
1102 |
msgstr "hora"
|
1103 |
|
1104 |
+
#: wpdiscuz/options/wc-options-serialize.php:485
|
1105 |
msgid "hours"
|
1106 |
msgstr "horas"
|
1107 |
|
1108 |
+
#: wpdiscuz/options/wc-options-serialize.php:486
|
1109 |
msgid "minute"
|
1110 |
msgstr "minuto"
|
1111 |
|
1112 |
+
#: wpdiscuz/options/wc-options-serialize.php:487
|
1113 |
msgid "minutes"
|
1114 |
msgstr "minutos"
|
1115 |
|
1116 |
+
#: wpdiscuz/options/wc-options-serialize.php:488
|
1117 |
msgid "second"
|
1118 |
msgstr "segundo"
|
1119 |
|
1120 |
+
#: wpdiscuz/options/wc-options-serialize.php:489
|
1121 |
msgid "seconds"
|
1122 |
msgstr "segundos"
|
1123 |
|
1124 |
+
#: wpdiscuz/options/wc-options-serialize.php:490
|
1125 |
msgid "right now"
|
1126 |
msgstr "agora mesmo"
|
1127 |
|
1128 |
+
#: wpdiscuz/options/wc-options-serialize.php:491
|
1129 |
msgid "ago"
|
1130 |
msgstr "atrás"
|
1131 |
|
1132 |
+
#: wpdiscuz/options/wc-options-serialize.php:494
|
1133 |
msgid "You are logged in as"
|
1134 |
msgstr "Autenticado como"
|
1135 |
|
1136 |
+
#: wpdiscuz/options/wc-options-serialize.php:496
|
1137 |
msgid "logged in"
|
1138 |
msgstr "fazer o login"
|
1139 |
|
1140 |
+
#: wpdiscuz/options/wc-options-serialize.php:497
|
1141 |
msgid "to post a comment."
|
1142 |
msgstr "para publicar um comentário."
|
1143 |
|
1144 |
+
#: wpdiscuz/options/wc-options-serialize.php:501
|
1145 |
msgid "You've already voted for this comment"
|
1146 |
+
msgstr "Já votou neste comentário"
|
1147 |
|
1148 |
+
#: wpdiscuz/options/wc-options-serialize.php:503
|
1149 |
msgid "You Must Be Logged In To Vote"
|
1150 |
msgstr "Faça o login para votar"
|
1151 |
|
1152 |
+
#: wpdiscuz/options/wc-options-serialize.php:504
|
1153 |
msgid "You cannot vote for your comment"
|
1154 |
+
msgstr "Não pode votar no seu comentário"
|
1155 |
|
1156 |
+
#: wpdiscuz/options/wc-options-serialize.php:505
|
1157 |
msgid "You are not allowed to vote for this comment"
|
1158 |
+
msgstr "Não tem permissão para votar neste comentário"
|
1159 |
|
1160 |
+
#: wpdiscuz/options/wc-options-serialize.php:508
|
1161 |
msgid "new comment"
|
1162 |
msgstr "novo comentário"
|
1163 |
|
1164 |
+
#: wpdiscuz/options/wc-options-serialize.php:509
|
1165 |
msgid "new comments"
|
1166 |
msgstr "novos comentários"
|
1167 |
|
1168 |
+
#: wpdiscuz/options/wc-options-serialize.php:510
|
1169 |
msgid "Comment awaiting moderation"
|
1170 |
msgstr "O seu comentário aguarda moderação"
|
1171 |
|
1172 |
+
#: wpdiscuz/options/wc-options-serialize.php:511
|
1173 |
msgid "new reply on your comment"
|
1174 |
msgstr "nova resposta ao seu comentário"
|
1175 |
|
1176 |
+
#: wpdiscuz/options/wc-options-serialize.php:512
|
1177 |
msgid "new replies on your comments"
|
1178 |
msgstr "novas respostas aos seus comentários"
|
1179 |
|
1180 |
+
#: wpdiscuz/options/wc-options-serialize.php:516
|
1181 |
msgid "You've not made any changes"
|
1182 |
+
msgstr "Você não fez nenhuma alteração"
|
1183 |
+
|
1184 |
+
#: wpdiscuz/options/wc-options-serialize.php:519
|
1185 |
+
#, php-format
|
1186 |
+
msgid "Comment text is too long (maximum %s characters allowed)"
|
1187 |
+
msgstr ""
|
1188 |
+
"Texto do comentário é muito longo (o máximo de caracteres permitidos é de %s)"
|
1189 |
|
1190 |
+
#: wpdiscuz/options/wc-options.php:28 wpdiscuz/options/wc-options.php:233
|
|
|
1191 |
msgid "Hacker?"
|
1192 |
msgstr "Hacker?"
|
1193 |
|
1194 |
+
#: wpdiscuz/options/wc-options.php:88
|
1195 |
msgid "wpDiscuz General Settings"
|
1196 |
msgstr "wpDiscuz - Opções Gerais"
|
1197 |
|
1198 |
+
#: wpdiscuz/options/wc-options.php:180
|
1199 |
msgid "General settings"
|
1200 |
+
msgstr "Opções Gerais"
|
1201 |
|
1202 |
+
#: wpdiscuz/options/wc-options.php:183
|
1203 |
msgid "Email Subscription"
|
1204 |
msgstr "Subscrição via Email"
|
1205 |
|
1206 |
+
#: wpdiscuz/options/wc-options.php:183
|
1207 |
msgid "and Postmatic"
|
1208 |
msgstr "e Postmatic"
|
1209 |
|
1210 |
+
#: wpdiscuz/options/wc-options.php:214 wpdiscuz/options/wc-options.php:384
|
|
|
1211 |
msgid "Save Changes"
|
1212 |
+
msgstr "Guardar alterações"
|
1213 |
|
1214 |
+
#: wpdiscuz/options/wc-options.php:215
|
1215 |
msgid "Reset Options"
|
1216 |
+
msgstr "Repor opções"
|
1217 |
|
1218 |
+
#: wpdiscuz/options/wc-options.php:342
|
1219 |
msgid "WpDiscuz Front-end Phrases"
|
1220 |
+
msgstr "wpDiscuz - Frases do front-end"
|
1221 |
|
1222 |
+
#: wpdiscuz/options/wc-options.php:352
|
1223 |
msgid "General"
|
1224 |
msgstr "Geral"
|
1225 |
|
1226 |
+
#: wpdiscuz/options/wc-options.php:353
|
1227 |
msgid "Form"
|
1228 |
msgstr "Formulário"
|
1229 |
|
1230 |
+
#: wpdiscuz/options/wc-options.php:355
|
1231 |
msgid "Date/Time"
|
1232 |
+
msgstr "Data/hora"
|
1233 |
|
1234 |
+
#: wpdiscuz/options/wc-options.php:357
|
1235 |
msgid "Notification"
|
1236 |
msgstr "Notificação"
|
1237 |
|
1238 |
+
#: wpdiscuz/wc.php:1026
|
1239 |
msgid "Phrases"
|
1240 |
msgstr "Frases"
|
1241 |
|
1242 |
+
#~ msgid "Share On vKontakte"
|
1243 |
+
#~ msgstr "Partilhar no vKontakte"
|
1244 |
+
|
1245 |
+
#~ msgid "Confirm your subscribtion"
|
1246 |
+
#~ msgstr "Confirme a sua subscrição"
|
1247 |
+
|
1248 |
#~ msgid "Hide Share Button"
|
1249 |
#~ msgstr "Esconder o botão de partilha"
|
1250 |
|
languages/wpdiscuz-ru_RU.mo
CHANGED
Binary file
|
languages/wpdiscuz-ru_RU.po
CHANGED
@@ -1,579 +1,1257 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wpDiscuz - Wordpress Comments\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: advancedcoding <advancedcoding@mail.ru>\n"
|
7 |
"Language-Team: advancedcoding <advancedcoding@mail.ru>\n"
|
8 |
-
"Language:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-Basepath: ..\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 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
|
22 |
-
#: comment-form/tpl-comment.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
msgid "Edit"
|
24 |
msgstr "Редактировать"
|
25 |
|
26 |
-
#:
|
27 |
-
msgid "
|
|
|
|
|
|
|
|
|
28 |
msgstr "Основные настройки"
|
29 |
|
30 |
-
#: options
|
31 |
msgid "Display comment form for post types:"
|
32 |
msgstr "Отображать форму комментариев для следующих типов записей:"
|
33 |
|
34 |
-
#: options
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
msgid "Show the latest comments on"
|
36 |
msgstr "Показывать последние комментарии"
|
37 |
|
38 |
-
#: options
|
39 |
msgid "the top of the list"
|
40 |
msgstr "наверху списка"
|
41 |
|
42 |
-
#: options
|
43 |
msgid "top of the threads"
|
44 |
-
msgstr "наверху
|
45 |
|
46 |
-
#: options
|
47 |
msgid "bottom of the threads"
|
48 |
msgstr "внизу темы"
|
49 |
|
50 |
-
#: options
|
51 |
msgid "the bottom of the list"
|
52 |
msgstr "внизу списка"
|
53 |
|
54 |
-
#: options
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
msgid "Live update options"
|
56 |
msgstr "Настройки обновления в реальном времени"
|
57 |
|
58 |
-
#: options
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
msgid "Never update"
|
60 |
msgstr "Никогда не обновлять"
|
61 |
|
62 |
-
#: options
|
63 |
msgid "Turn off \"Live Update\" function"
|
64 |
msgstr "Выключить функцию \"Обновление в реальном времени\""
|
65 |
|
66 |
-
#: options
|
67 |
msgid "Show new comment/reply buttons to update manualy"
|
68 |
msgstr "Показывать кнопки новых комментариев/ответов для обновления вручную"
|
69 |
|
70 |
-
#: options
|
71 |
msgid "Always check for new comments and show update buttons"
|
72 |
msgstr ""
|
73 |
"Всегда проверять наличие новых комментов и показывать кнопки обновления"
|
74 |
|
75 |
-
#: options
|
76 |
msgid "Always update"
|
77 |
-
msgstr "
|
78 |
|
79 |
-
#: options
|
80 |
msgid "Always check for new comments and update automatically"
|
81 |
msgstr "Всегда проверять наличие новых комментов и обновлять автоматически"
|
82 |
|
83 |
-
#: options
|
84 |
msgid "Update comment list every"
|
85 |
-
msgstr "
|
86 |
|
87 |
-
#: options
|
88 |
-
#: options
|
89 |
-
#: options
|
90 |
msgid "Seconds"
|
91 |
msgstr "секунд"
|
92 |
|
93 |
-
#: options
|
94 |
-
#: options-
|
95 |
msgid "Minute"
|
96 |
msgstr "Минута"
|
97 |
|
98 |
-
#: options
|
99 |
-
|
100 |
-
|
101 |
-
msgid "Minutes"
|
102 |
-
msgstr "минут"
|
103 |
-
|
104 |
-
#: options-templates/options-template-main.php:86
|
105 |
-
msgid "Hide Voting buttons"
|
106 |
-
msgstr "Скрыть кнопки голосования"
|
107 |
-
|
108 |
-
#: options-templates/options-template-main.php:97
|
109 |
-
msgid "Hide Share Button"
|
110 |
-
msgstr "Скрыть кнопки \"поделиться\""
|
111 |
-
|
112 |
-
#: options-templates/options-template-main.php:108
|
113 |
-
msgid "Hide the CAPTCHA field"
|
114 |
-
msgstr "Скрыть капчу (CAPTCHA)"
|
115 |
-
|
116 |
-
#: options-templates/options-template-main.php:119
|
117 |
-
msgid "User Must be registered to comment"
|
118 |
-
msgstr "Пользователь должен зарегистрироваться для комментирования"
|
119 |
|
120 |
-
#: options
|
121 |
-
msgid "Show logged-in user
|
122 |
-
msgstr "Показывать имя пользователя сверху основной формы"
|
123 |
|
124 |
-
#: options
|
125 |
-
msgid "Held new comments for moderation"
|
126 |
-
msgstr "Отправлять первые комментарии новых пользователей на модерацию"
|
127 |
-
|
128 |
-
#: options-templates/options-template-main.php:159
|
129 |
msgid "Hide Reply button for Guests"
|
130 |
msgstr "Скрыть кнопку ответа от гостей"
|
131 |
|
132 |
-
#: options
|
133 |
msgid "Hide Reply button for Members"
|
134 |
msgstr "Скрыть кнопку ответа от пользователей"
|
135 |
|
136 |
-
#: options
|
137 |
msgid "Hide Author Titles"
|
138 |
msgstr "Скрыть подписи под никами"
|
139 |
|
140 |
-
#: options
|
141 |
-
msgid "
|
142 |
-
msgstr "
|
143 |
|
144 |
-
#: options
|
145 |
-
msgid "
|
146 |
-
msgstr "
|
147 |
|
148 |
-
#: options
|
149 |
-
msgid "
|
150 |
-
msgstr "
|
151 |
|
152 |
-
#: options
|
153 |
-
|
154 |
-
|
155 |
-
#: options-templates/options-template-main.php:212
|
156 |
-
msgid "Levels"
|
157 |
-
msgstr "уровней"
|
158 |
|
159 |
-
#: options
|
160 |
-
msgid "
|
161 |
-
msgstr "
|
162 |
|
163 |
-
#: options
|
164 |
-
msgid ""
|
165 |
-
"
|
166 |
-
"show the date/time format set in WordPress General Settings."
|
167 |
-
msgstr ""
|
168 |
-
"wpDiscuz по-умолчанию показывает формат времени в своем формате, удобном для "
|
169 |
-
"чтения. При включении этой опции, дата и время будут показаны в формате, "
|
170 |
-
"указанном в основных настройках WordPress"
|
171 |
|
172 |
-
#: options
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
"пользователи могут получать большое колиество уведомлений)"
|
178 |
|
179 |
-
#: options
|
180 |
-
|
181 |
-
|
|
|
|
|
182 |
|
183 |
-
#: options
|
184 |
-
|
185 |
-
|
|
|
|
|
186 |
|
187 |
-
#: options
|
188 |
-
msgid "
|
189 |
-
msgstr "
|
190 |
|
191 |
-
#: options
|
192 |
msgid ""
|
193 |
-
"
|
194 |
-
"
|
195 |
-
"
|
|
|
196 |
msgstr ""
|
197 |
-
"
|
198 |
-
"
|
199 |
-
"
|
|
|
200 |
|
201 |
-
#: options
|
202 |
-
msgid "
|
203 |
-
msgstr "
|
204 |
|
205 |
-
#: options
|
206 |
msgid "Comment Form Background Color"
|
207 |
-
msgstr "
|
208 |
-
|
209 |
-
#: options
|
210 |
-
#: options
|
211 |
-
#: options
|
212 |
-
#: options
|
213 |
-
#: options
|
214 |
-
#: options
|
215 |
-
#: options
|
|
|
216 |
msgid "Example: #00ff00"
|
217 |
-
msgstr "
|
218 |
|
219 |
-
#: options
|
220 |
msgid "Comment Background Color"
|
221 |
msgstr "Цвет фона коментария"
|
222 |
|
223 |
-
#: options
|
224 |
msgid "Reply Background Color"
|
225 |
-
msgstr "
|
226 |
|
227 |
-
#: options
|
228 |
msgid "Comment Text Color"
|
229 |
msgstr "Цвет шрифта комментария"
|
230 |
|
231 |
-
#: options
|
232 |
msgid "Author title color"
|
233 |
msgstr "Цвет подписи автора"
|
234 |
|
235 |
-
#: options
|
236 |
msgid "Vote, Reply, Share, Edit links text colors"
|
237 |
msgstr "Цвет ссылок Голосовать, Ответить, Поделиться и Редактировать"
|
238 |
|
239 |
-
#: options
|
|
|
|
|
|
|
|
|
240 |
msgid "New loaded comments' background color"
|
241 |
msgstr "Цвет фона новых загруженных комментариев"
|
242 |
|
243 |
-
#: options
|
244 |
msgid "Custom CSS Code"
|
245 |
msgstr "Свой CSS код"
|
246 |
|
247 |
-
#: options
|
248 |
-
msgid "
|
249 |
-
msgstr "
|
250 |
-
|
251 |
-
#: options-templates/options-template-phrases.php:5
|
252 |
-
msgid "Leave a Reply"
|
253 |
-
msgstr "Оставить ответ"
|
254 |
-
|
255 |
-
#: options-templates/options-template-phrases.php:16
|
256 |
-
msgid "Be the first to comment"
|
257 |
-
msgstr "Будьте первым, кто оставит комментарий!"
|
258 |
-
|
259 |
-
#: options-templates/options-template-phrases.php:27
|
260 |
-
msgid "Comment"
|
261 |
-
msgstr "Комментариев"
|
262 |
-
|
263 |
-
#: options-templates/options-template-phrases.php:38
|
264 |
-
msgid "On"
|
265 |
-
msgstr "На"
|
266 |
-
|
267 |
-
#: options-templates/options-template-phrases.php:49
|
268 |
-
msgid "Comment Field Start"
|
269 |
-
msgstr "Фраза \"Начать обсуждение\""
|
270 |
-
|
271 |
-
#: options-templates/options-template-phrases.php:60
|
272 |
-
msgid "Comment Field Join"
|
273 |
-
msgstr "Фраза \"Присоединиться к обсуждению\""
|
274 |
-
|
275 |
-
#: options-templates/options-template-phrases.php:71
|
276 |
-
msgid "Email Field"
|
277 |
-
msgstr "Email"
|
278 |
-
|
279 |
-
#: options-templates/options-template-phrases.php:82
|
280 |
-
msgid "Name Field"
|
281 |
-
msgstr "Имя"
|
282 |
-
|
283 |
-
#: options-templates/options-template-phrases.php:93
|
284 |
-
msgid "CAPTCHA Field"
|
285 |
-
msgstr "CAPTCHA "
|
286 |
|
287 |
-
#: options
|
288 |
-
msgid "
|
289 |
-
msgstr "
|
290 |
-
|
291 |
-
#: options-templates/options-template-phrases.php:115
|
292 |
-
msgid "Manage subscribtions"
|
293 |
-
msgstr "Управление подпиской"
|
294 |
|
295 |
-
#: options
|
296 |
-
msgid "
|
297 |
-
msgstr "
|
298 |
|
299 |
-
#: options
|
300 |
-
msgid "Notify
|
301 |
-
msgstr "
|
302 |
|
303 |
-
#: options
|
304 |
-
msgid "
|
305 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
|
307 |
-
#: options
|
308 |
-
msgid "
|
309 |
-
msgstr "
|
|
|
|
|
310 |
|
311 |
-
#: options
|
312 |
-
msgid "
|
313 |
-
|
|
|
|
|
|
|
|
|
|
|
314 |
|
315 |
-
#: options
|
316 |
-
msgid "
|
317 |
-
|
|
|
|
|
|
|
318 |
|
319 |
-
#: options
|
320 |
-
msgid "
|
321 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
|
323 |
-
#: options-
|
324 |
-
msgid "
|
325 |
-
msgstr "
|
326 |
|
327 |
-
#: options-
|
|
|
328 |
msgid "Reply"
|
329 |
msgstr "Ответить "
|
330 |
|
331 |
-
#: options-
|
|
|
332 |
msgid "Share"
|
333 |
msgstr "Поделиться"
|
334 |
|
335 |
-
#: options-
|
|
|
336 |
msgid "Share On Facebook"
|
337 |
msgstr "Поделиться через Facebook"
|
338 |
|
339 |
-
#: options-
|
|
|
340 |
msgid "Share On Twitter"
|
341 |
msgstr "Поделиться через Twitter"
|
342 |
|
343 |
-
#: options-
|
|
|
344 |
msgid "Share On Google"
|
345 |
msgstr "Поделиться через Google"
|
346 |
|
347 |
-
#: options-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
msgid "Hide Replies"
|
349 |
msgstr "Спрятать ответы"
|
350 |
|
351 |
-
#: options-
|
|
|
352 |
msgid "Show Replies"
|
353 |
msgstr "Показать ответы"
|
354 |
|
355 |
-
#: options-
|
356 |
msgid "Title For Guests"
|
357 |
msgstr "Подпись для Гостей"
|
358 |
|
359 |
-
#: options-
|
360 |
msgid "Title For Members"
|
361 |
msgstr "Подпись для Пользователей"
|
362 |
|
363 |
-
#: options-
|
364 |
msgid "Title For Authors"
|
365 |
msgstr "Подпись для Авторов"
|
366 |
|
367 |
-
#: options-
|
368 |
msgid "Title For Admins"
|
369 |
msgstr "Подпись для Админов"
|
370 |
|
371 |
-
#: options-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
372 |
msgid "Email Subject"
|
373 |
-
msgstr "
|
374 |
|
375 |
-
#: options-
|
376 |
msgid "Email Message"
|
377 |
-
msgstr "
|
378 |
|
379 |
-
#: options-
|
380 |
msgid "New Reply Subject"
|
381 |
-
msgstr "
|
382 |
|
383 |
-
#: options-
|
384 |
-
#: options-
|
|
|
385 |
msgid "New Reply"
|
386 |
msgstr "Новый ответ"
|
387 |
|
388 |
-
#: options-
|
389 |
-
#: options-templates/options-template-phrases.php:371
|
390 |
msgid "New Reply Message"
|
|
|
|
|
|
|
|
|
|
|
|
|
391 |
msgstr "Отписаться"
|
392 |
|
393 |
-
#: options-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
msgid "Subscribed on this comment replies"
|
395 |
msgstr "Подписка на ответы на этот коммент"
|
396 |
|
397 |
-
#: options-
|
398 |
msgid "Subscribed on all your comments replies"
|
399 |
msgstr "Подписка на ответы на все комменты пользователя"
|
400 |
|
401 |
-
#: options-
|
402 |
msgid "Subscribed on this post"
|
403 |
msgstr "Подписка на все комменты к записи"
|
404 |
|
405 |
-
#: options-
|
406 |
-
msgid "
|
407 |
-
msgstr "
|
408 |
|
409 |
-
#: options-
|
410 |
-
|
411 |
-
|
|
|
412 |
|
413 |
-
#: options-
|
414 |
-
msgid "
|
415 |
-
msgstr "
|
416 |
|
417 |
-
#: options-
|
418 |
-
|
419 |
-
|
|
|
420 |
|
421 |
-
#: options-
|
422 |
-
msgid "
|
423 |
-
msgstr "
|
424 |
|
425 |
-
#: options-
|
426 |
-
msgid "
|
427 |
-
msgstr "
|
428 |
|
429 |
-
#: options-
|
430 |
-
msgid "
|
431 |
-
msgstr "
|
432 |
|
433 |
-
#: options-
|
434 |
-
|
435 |
-
|
|
|
436 |
|
437 |
-
#: options-
|
438 |
-
msgid "
|
439 |
-
msgstr "
|
440 |
|
441 |
-
#: options-
|
442 |
-
|
443 |
-
|
|
|
444 |
|
445 |
-
#: options-
|
446 |
-
msgid "
|
447 |
-
msgstr "Текст
|
448 |
|
449 |
-
#: options-
|
450 |
-
msgid "
|
451 |
-
msgstr "
|
452 |
|
453 |
-
#: options-
|
454 |
-
msgid "
|
455 |
-
msgstr "Текст
|
456 |
|
457 |
-
#: options-
|
458 |
-
msgid "
|
459 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
460 |
|
461 |
-
#: options-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
462 |
msgid "You must be"
|
463 |
msgstr "Вы должны быть "
|
464 |
|
465 |
-
#: options-
|
466 |
msgid "Logged in as"
|
467 |
msgstr "Вошли как"
|
468 |
|
469 |
-
#: options-
|
|
|
470 |
msgid "Log out"
|
471 |
msgstr "Выйти"
|
472 |
|
473 |
-
#: options-
|
474 |
msgid "Logged In"
|
475 |
msgstr "Зарегистрированы"
|
476 |
|
477 |
-
#: options-
|
478 |
msgid "To post a comment"
|
479 |
msgstr "Чтобы оставить комментарий"
|
480 |
|
481 |
-
#: options-
|
482 |
-
|
483 |
-
msgstr "Голос за"
|
484 |
-
|
485 |
-
#: options-templates/options-template-phrases.php:594
|
486 |
-
msgid "Vote Down"
|
487 |
-
msgstr "Голос против"
|
488 |
-
|
489 |
-
#: options-templates/options-template-phrases.php:605
|
490 |
msgid "Vote Counted"
|
491 |
msgstr "Голос учтен"
|
492 |
|
493 |
-
#: options-
|
494 |
msgid "You can vote only 1 time"
|
495 |
msgstr "Вы можете проголосовать только один раз"
|
496 |
|
497 |
-
#: options-
|
|
|
498 |
msgid "Voting Error"
|
499 |
msgstr "Ошибка голосования"
|
500 |
|
501 |
-
#: options-
|
502 |
msgid "Login To Vote"
|
503 |
msgstr "Залогиньтесь, чтобы голосовать"
|
504 |
|
505 |
-
#: options-
|
506 |
msgid "You Cannot Vote On Your Comment"
|
507 |
msgstr "Вы не можете проголосовать за свой комментарий"
|
508 |
|
509 |
-
#: options-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
510 |
msgid "Invalid Captcha Code"
|
511 |
msgstr "Неверно введен код"
|
512 |
|
513 |
-
#: options-
|
|
|
514 |
msgid "Some of field value is invalid"
|
515 |
msgstr "Некоторые поля заполнены неверно"
|
516 |
|
517 |
-
#: options-
|
518 |
msgid "Comment waiting moderation"
|
519 |
msgstr "Комментарий ожидает модерации"
|
520 |
|
521 |
-
#: options-
|
522 |
-
msgid "
|
523 |
-
msgstr "
|
524 |
|
525 |
-
#: options-
|
526 |
-
msgid "
|
527 |
-
msgstr "
|
528 |
|
529 |
-
#: options-
|
530 |
-
|
531 |
-
|
|
|
532 |
|
533 |
-
#: options-
|
534 |
-
msgid "
|
535 |
-
msgstr "
|
536 |
|
537 |
-
#: options-
|
538 |
-
|
539 |
-
|
|
|
540 |
|
541 |
-
#: options-
|
542 |
-
msgid "
|
543 |
-
msgstr "
|
544 |
|
545 |
-
#: options-
|
546 |
-
msgid "
|
547 |
-
msgstr "
|
548 |
|
549 |
-
#: options-
|
550 |
-
msgid "
|
551 |
-
msgstr "
|
552 |
|
553 |
-
#: options-
|
554 |
-
msgid "
|
555 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
556 |
|
557 |
-
#: wc-options
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
558 |
msgid "Hacker?"
|
559 |
msgstr "Хакер?"
|
560 |
|
561 |
-
#: wc-options.php:
|
562 |
msgid "wpDiscuz General Settings"
|
563 |
msgstr "Основные настройки wpDiscuz"
|
564 |
|
565 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
566 |
msgid "Save Changes"
|
567 |
msgstr "Сохранить изменения"
|
568 |
|
569 |
-
#: wc-options.php:
|
|
|
|
|
|
|
|
|
570 |
msgid "WpDiscuz Front-end Phrases"
|
571 |
msgstr "Фронт-энд фразы WpDiscuz"
|
572 |
|
573 |
-
#: wc.php:
|
574 |
-
msgid "
|
575 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
576 |
|
577 |
-
#: wc.php:
|
|
|
|
|
|
|
|
|
578 |
msgid "Phrases"
|
579 |
msgstr "Фразы"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wpDiscuz - Wordpress Comments\n"
|
4 |
+
"POT-Creation-Date: 2015-05-28 23:58+0400\n"
|
5 |
+
"PO-Revision-Date: 2015-08-18 16:14+0300\n"
|
6 |
"Last-Translator: advancedcoding <advancedcoding@mail.ru>\n"
|
7 |
"Language-Team: advancedcoding <advancedcoding@mail.ru>\n"
|
8 |
+
"Language: ru\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.4\n"
|
13 |
"X-Poedit-Basepath: ..\n"
|
14 |
+
"X-Poedit-WPHeader: wc.php\n"
|
15 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
16 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
19 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
20 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
|
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
|
24 |
+
#: comment-form/form.php:185 comment-form/tpl-comment.php:263
|
25 |
+
msgid "Participate in this discussion via email"
|
26 |
+
msgstr "Участвовать в этой дискуссии через электронную почту"
|
27 |
+
|
28 |
+
#: comment-form/form.php:323
|
29 |
+
msgid "Connect with"
|
30 |
+
msgstr "Соединить с"
|
31 |
+
|
32 |
+
#: comment-form/tpl-comment.php:174
|
33 |
+
#: options/phrases-layout/phrases-comment.php:27
|
34 |
+
#: options/wc-options-serialize.php:439
|
35 |
msgid "Edit"
|
36 |
msgstr "Редактировать"
|
37 |
|
38 |
+
#: comment-form/tpl-comment.php:385 wc.php:321
|
39 |
+
msgid "Anonymous"
|
40 |
+
msgstr "Анонимно"
|
41 |
+
|
42 |
+
#: options/options-layouts/settings-general.php:2
|
43 |
+
msgid "General Settings"
|
44 |
msgstr "Основные настройки"
|
45 |
|
46 |
+
#: options/options-layouts/settings-general.php:7
|
47 |
msgid "Display comment form for post types:"
|
48 |
msgstr "Отображать форму комментариев для следующих типов записей:"
|
49 |
|
50 |
+
#: options/options-layouts/settings-general.php:28
|
51 |
+
msgid "User Must be registered to comment"
|
52 |
+
msgstr "Пользователь должен быть зарегистрирован, чтобы комментировать"
|
53 |
+
|
54 |
+
#: options/options-layouts/settings-general.php:34
|
55 |
+
msgid "Yes"
|
56 |
+
msgstr "Да"
|
57 |
+
|
58 |
+
#: options/options-layouts/settings-general.php:38
|
59 |
+
msgid "No"
|
60 |
+
msgstr "Нет"
|
61 |
+
|
62 |
+
#: options/options-layouts/settings-general.php:46
|
63 |
+
msgid "Comment author must fill out name"
|
64 |
+
msgstr "Автору комментария необходимо указать имя"
|
65 |
+
|
66 |
+
#: options/options-layouts/settings-general.php:57
|
67 |
+
msgid "Comment author must fill out email"
|
68 |
+
msgstr "Автору комментария необходимо указать e-mail"
|
69 |
+
|
70 |
+
#: options/options-layouts/settings-general.php:68
|
71 |
msgid "Show the latest comments on"
|
72 |
msgstr "Показывать последние комментарии"
|
73 |
|
74 |
+
#: options/options-layouts/settings-general.php:72
|
75 |
msgid "the top of the list"
|
76 |
msgstr "наверху списка"
|
77 |
|
78 |
+
#: options/options-layouts/settings-general.php:74
|
79 |
msgid "top of the threads"
|
80 |
+
msgstr "наверху списка"
|
81 |
|
82 |
+
#: options/options-layouts/settings-general.php:76
|
83 |
msgid "bottom of the threads"
|
84 |
msgstr "внизу темы"
|
85 |
|
86 |
+
#: options/options-layouts/settings-general.php:78
|
87 |
msgid "the bottom of the list"
|
88 |
msgstr "внизу списка"
|
89 |
|
90 |
+
#: options/options-layouts/settings-general.php:86
|
91 |
+
msgid "Comment Threads Per Page"
|
92 |
+
msgstr "Количество веток комментариев на странице"
|
93 |
+
|
94 |
+
#: options/options-layouts/settings-general.php:97
|
95 |
+
msgid "Comment text max length"
|
96 |
+
msgstr "Максимальная длинна текста комментария"
|
97 |
+
|
98 |
+
#: options/options-layouts/settings-general.php:108
|
99 |
+
msgid "Comments max depth"
|
100 |
+
msgstr "Максимальная глубина вложенности комментов"
|
101 |
+
|
102 |
+
#: options/options-layouts/settings-general.php:113
|
103 |
+
msgid "Level"
|
104 |
+
msgstr "уровень"
|
105 |
+
|
106 |
+
#: options/options-layouts/settings-general.php:114
|
107 |
+
#: options/options-layouts/settings-general.php:115
|
108 |
+
#: options/options-layouts/settings-general.php:116
|
109 |
+
#: options/options-layouts/settings-general.php:117
|
110 |
+
msgid "Levels"
|
111 |
+
msgstr "уровней"
|
112 |
+
|
113 |
+
#: options/options-layouts/settings-general.php:124
|
114 |
+
msgid "Comment text size in pixels"
|
115 |
+
msgstr "Размер шрифта комментария в пикселях"
|
116 |
+
|
117 |
+
#: options/options-layouts/settings-general.php:141
|
118 |
+
msgid "Allow comment editing for"
|
119 |
+
msgstr "Разрешить редактирование комментария для"
|
120 |
+
|
121 |
+
#: options/options-layouts/settings-general.php:146
|
122 |
+
msgid "Not Allow"
|
123 |
+
msgstr "Не разрешать"
|
124 |
+
|
125 |
+
#: options/options-layouts/settings-general.php:147
|
126 |
+
#: options/options-layouts/settings-general.php:148
|
127 |
+
#: options/options-layouts/settings-live-update.php:41
|
128 |
+
#: options/options-layouts/settings-live-update.php:42
|
129 |
+
#: options/options-layouts/settings-live-update.php:43
|
130 |
+
msgid "Minutes"
|
131 |
+
msgstr "Минут"
|
132 |
+
|
133 |
+
#: options/options-layouts/settings-general.php:149
|
134 |
+
#: options/phrases-layout/phrases-datetime.php:73
|
135 |
+
msgid "Hour"
|
136 |
+
msgstr "Час"
|
137 |
+
|
138 |
+
#: options/options-layouts/settings-general.php:150
|
139 |
+
#: options/options-layouts/settings-general.php:151
|
140 |
+
msgid "Hours"
|
141 |
+
msgstr "Часов"
|
142 |
+
|
143 |
+
#: options/options-layouts/settings-general.php:158
|
144 |
+
msgid "Redirect first commenter to"
|
145 |
+
msgstr "Перенаправить первому комментатору"
|
146 |
+
|
147 |
+
#: options/options-layouts/settings-general.php:165
|
148 |
+
msgid "Do not redirect"
|
149 |
+
msgstr "Не перенаправлять"
|
150 |
+
|
151 |
+
#: options/options-layouts/settings-general.php:174
|
152 |
+
msgid "Allow guests to vote on comments"
|
153 |
+
msgstr "Разрешить гостям голосовать за комментарии"
|
154 |
+
|
155 |
+
#: options/options-layouts/settings-general.php:184
|
156 |
+
msgid "Load rest of all comments on clicking the [Load More Comments] button"
|
157 |
+
msgstr ""
|
158 |
+
"Загрузить остальные комментарии после нажатия кнопки [Загрузить больше "
|
159 |
+
"комментарий]"
|
160 |
+
|
161 |
+
#: options/options-layouts/settings-general.php:195
|
162 |
+
msgid "Use WordPress Date/Time format"
|
163 |
+
msgstr "Использовать формат времени и даты WordPress"
|
164 |
+
|
165 |
+
#: options/options-layouts/settings-general.php:196
|
166 |
+
msgid ""
|
167 |
+
"wpDiscuz shows Human Readable date format. If you check this option it'll "
|
168 |
+
"show the date/time format set in WordPress General Settings."
|
169 |
+
msgstr ""
|
170 |
+
"wpDiscuz по-умолчанию показывает формат времени в своем формате, удобном для "
|
171 |
+
"чтения. При включении этой опции, дата и время будут показаны в формате, "
|
172 |
+
"указанном в основных настройках WordPress"
|
173 |
+
|
174 |
+
#: options/options-layouts/settings-general.php:203
|
175 |
+
msgid "Current Wordpress date/time format"
|
176 |
+
msgstr "Текущий формат даты/времени Wordpress"
|
177 |
+
|
178 |
+
#: options/options-layouts/settings-general.php:209
|
179 |
+
msgid "Use Plugin .PO/.MO files"
|
180 |
+
msgstr "Используйте редактор PO/.MO файлов"
|
181 |
+
|
182 |
+
#: options/options-layouts/settings-general.php:210
|
183 |
+
msgid ""
|
184 |
+
"wpDiscuz phrase system allows you to translate all front-end phrases. "
|
185 |
+
"However if you have a multi-language website it'll not allow you to add more "
|
186 |
+
"than one language translation. The only way to get it is the plugin "
|
187 |
+
"translation files (.PO / .MO). If wpDiscuz has the languages you need you "
|
188 |
+
"should check this option to disable phrase system and it'll automatically "
|
189 |
+
"translate all phrases based on language files according to current language."
|
190 |
+
msgstr ""
|
191 |
+
"Система wpDiscuz позволяет переводить все интерфейсные фразы. Однако, если у "
|
192 |
+
"вас есть веб-сайт на разных языках плагин не будет позволять вам добавить "
|
193 |
+
"больше чем один язык перевода. Единственный способ певевести плагин - это "
|
194 |
+
"редактировать файлы перевода плагина (.po / .mo). Если wpDiscuz уже имеет "
|
195 |
+
"языки, которые вам нужны, вы должны отметить эту опцию, чтобы отключить "
|
196 |
+
"систему фраз, и он будет автоматически переводить все слова и предложения, "
|
197 |
+
"основанные на языковых файлов в соответствии с действующим языком."
|
198 |
+
|
199 |
+
#: options/options-layouts/settings-general.php:222
|
200 |
+
msgid ""
|
201 |
+
"Help wpDiscuz to grow allowing people to recognize which comment plugin you "
|
202 |
+
"use"
|
203 |
+
msgstr ""
|
204 |
+
"Помогите wpDiscuz развиваться, указывая каким комментатором вы пользуетесь"
|
205 |
+
|
206 |
+
#: options/options-layouts/settings-general.php:224
|
207 |
+
msgid ""
|
208 |
+
"Please check this option on to help wpDiscuz get more popularity as your "
|
209 |
+
"thank to the hard work we do for you totally free. This option adds a very "
|
210 |
+
"small (16x16px) icon under the comment section which will allow your site "
|
211 |
+
"visitors recognize the name of comment solution you use."
|
212 |
+
msgstr ""
|
213 |
+
"Пожалуйста, отметьте эту опцию, чтобы помочь на wpDiscuz получить большую "
|
214 |
+
"популярность в качестве благодарности к тяжелой работе, которую мы делаем "
|
215 |
+
"для вас совершенно бесплатно. Эта опция добавляет очень небольшой (16x16px) "
|
216 |
+
"значок под комментариями, который позволят посетителям вашего сайта увидеть "
|
217 |
+
"название плагина, который вы используете."
|
218 |
+
|
219 |
+
#: options/options-layouts/settings-general.php:229
|
220 |
+
msgid "Thank you!"
|
221 |
+
msgstr "Спасибо!"
|
222 |
+
|
223 |
+
#: options/options-layouts/settings-live-update.php:2
|
224 |
+
#: options/wc-options.php:180
|
225 |
+
msgid "Live Update"
|
226 |
+
msgstr "Настройки обновления в реальном времени"
|
227 |
+
|
228 |
+
#: options/options-layouts/settings-live-update.php:8
|
229 |
msgid "Live update options"
|
230 |
msgstr "Настройки обновления в реальном времени"
|
231 |
|
232 |
+
#: options/options-layouts/settings-live-update.php:9
|
233 |
+
msgid ""
|
234 |
+
"If you use Shared Web Hosting you should make sure the \"Live Update\" "
|
235 |
+
"function doesn't overload your server resources. This function is good for "
|
236 |
+
"VPS and Dedicated Hosting Plans."
|
237 |
+
msgstr ""
|
238 |
+
"Если вы используете виртуальный хостинг вы должны убедиться, что функция "
|
239 |
+
"\"Автоматическое обновление\" не перегружает сервер. Эта функция хорошо "
|
240 |
+
"подходит для VPS и выделенных хостингов."
|
241 |
+
|
242 |
+
#: options/options-layouts/settings-live-update.php:14
|
243 |
msgid "Never update"
|
244 |
msgstr "Никогда не обновлять"
|
245 |
|
246 |
+
#: options/options-layouts/settings-live-update.php:16
|
247 |
msgid "Turn off \"Live Update\" function"
|
248 |
msgstr "Выключить функцию \"Обновление в реальном времени\""
|
249 |
|
250 |
+
#: options/options-layouts/settings-live-update.php:18
|
251 |
msgid "Show new comment/reply buttons to update manualy"
|
252 |
msgstr "Показывать кнопки новых комментариев/ответов для обновления вручную"
|
253 |
|
254 |
+
#: options/options-layouts/settings-live-update.php:20
|
255 |
msgid "Always check for new comments and show update buttons"
|
256 |
msgstr ""
|
257 |
"Всегда проверять наличие новых комментов и показывать кнопки обновления"
|
258 |
|
259 |
+
#: options/options-layouts/settings-live-update.php:22
|
260 |
msgid "Always update"
|
261 |
+
msgstr "Всегда обновлять"
|
262 |
|
263 |
+
#: options/options-layouts/settings-live-update.php:24
|
264 |
msgid "Always check for new comments and update automatically"
|
265 |
msgstr "Всегда проверять наличие новых комментов и обновлять автоматически"
|
266 |
|
267 |
+
#: options/options-layouts/settings-live-update.php:32
|
268 |
msgid "Update comment list every"
|
269 |
+
msgstr "Всегда проверять наличие новых комментов и обновлять автоматически"
|
270 |
|
271 |
+
#: options/options-layouts/settings-live-update.php:37
|
272 |
+
#: options/options-layouts/settings-live-update.php:38
|
273 |
+
#: options/options-layouts/settings-live-update.php:39
|
274 |
msgid "Seconds"
|
275 |
msgstr "секунд"
|
276 |
|
277 |
+
#: options/options-layouts/settings-live-update.php:40
|
278 |
+
#: options/phrases-layout/phrases-datetime.php:95
|
279 |
msgid "Minute"
|
280 |
msgstr "Минута"
|
281 |
|
282 |
+
#: options/options-layouts/settings-show-hide.php:2 options/wc-options.php:181
|
283 |
+
msgid "Show/Hide Components"
|
284 |
+
msgstr "Скрыть/Показать Компоненты"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
285 |
|
286 |
+
#: options/options-layouts/settings-show-hide.php:7
|
287 |
+
msgid "Show logged-in user name and logout link on top of main form"
|
288 |
+
msgstr "Показывать имя пользователя и ссылку выхода сверху основной формы"
|
289 |
|
290 |
+
#: options/options-layouts/settings-show-hide.php:17
|
|
|
|
|
|
|
|
|
291 |
msgid "Hide Reply button for Guests"
|
292 |
msgstr "Скрыть кнопку ответа от гостей"
|
293 |
|
294 |
+
#: options/options-layouts/settings-show-hide.php:27
|
295 |
msgid "Hide Reply button for Members"
|
296 |
msgstr "Скрыть кнопку ответа от пользователей"
|
297 |
|
298 |
+
#: options/options-layouts/settings-show-hide.php:37
|
299 |
msgid "Hide Author Titles"
|
300 |
msgstr "Скрыть подписи под никами"
|
301 |
|
302 |
+
#: options/options-layouts/settings-show-hide.php:47
|
303 |
+
msgid "Hide Voting buttons"
|
304 |
+
msgstr "Скрыть кнопки голосования"
|
305 |
|
306 |
+
#: options/options-layouts/settings-show-hide.php:57
|
307 |
+
msgid "Hide Share Buttons"
|
308 |
+
msgstr "Скрыть кнопки \"поделиться\""
|
309 |
|
310 |
+
#: options/options-layouts/settings-show-hide.php:67
|
311 |
+
msgid "Hide the CAPTCHA field"
|
312 |
+
msgstr "Скрыть капчу (CAPTCHA)"
|
313 |
|
314 |
+
#: options/options-layouts/settings-show-hide.php:77
|
315 |
+
msgid "Hide the Website URL field"
|
316 |
+
msgstr "Скрыть URL вебсайта"
|
|
|
|
|
|
|
317 |
|
318 |
+
#: options/options-layouts/settings-show-hide.php:87
|
319 |
+
msgid "Hide header text"
|
320 |
+
msgstr "Скрыть заголовок"
|
321 |
|
322 |
+
#: options/options-layouts/settings-show-hide.php:97
|
323 |
+
msgid "Hide user avatar"
|
324 |
+
msgstr "Скрыть аватар"
|
|
|
|
|
|
|
|
|
|
|
325 |
|
326 |
+
#: options/options-layouts/settings-social.php:10
|
327 |
+
#: options/options-layouts/settings-social.php:12
|
328 |
+
#: options/options-layouts/settings-social.php:14 wc.php:1018
|
329 |
+
msgid "Settings"
|
330 |
+
msgstr "Настройки"
|
|
|
331 |
|
332 |
+
#: options/options-layouts/settings-social.php:19
|
333 |
+
#: options/options-layouts/settings-social.php:29
|
334 |
+
#: options/options-layouts/settings-social.php:39
|
335 |
+
msgid "Activate"
|
336 |
+
msgstr "Активировать"
|
337 |
|
338 |
+
#: options/options-layouts/settings-social.php:23
|
339 |
+
#: options/options-layouts/settings-social.php:33
|
340 |
+
#: options/options-layouts/settings-social.php:43
|
341 |
+
msgid "View details/Install"
|
342 |
+
msgstr "Показать детали/установку"
|
343 |
|
344 |
+
#: options/options-layouts/settings-social.php:75 options/wc-options.php:184
|
345 |
+
msgid "Social Login"
|
346 |
+
msgstr "Вход через социальные сети"
|
347 |
|
348 |
+
#: options/options-layouts/settings-social.php:76
|
349 |
msgid ""
|
350 |
+
"You can use one of these most popular Social Login Plugins to allow your "
|
351 |
+
"visitors login and comment with Facebook, Twitter, Google+, Wordpress, VK, "
|
352 |
+
"OK and lots of other social network service accounts. All social login "
|
353 |
+
"buttons will be fully integrated with wpDiscuz comment forms."
|
354 |
msgstr ""
|
355 |
+
"Вы можете использовать одну из наиболее популярных плагинов входа через "
|
356 |
+
"социальные сети, чтобы комментировать с учетной записи Facebook, Twitter, "
|
357 |
+
"Google+, Wordpress, Вконтакте и т.д. Все кнопки социальных сетей будут "
|
358 |
+
"интегрированы в форму комментарий."
|
359 |
|
360 |
+
#: options/options-layouts/settings-style.php:2 options/wc-options.php:183
|
361 |
+
msgid "Background and Colors"
|
362 |
+
msgstr "Фон и Цвет"
|
363 |
|
364 |
+
#: options/options-layouts/settings-style.php:7
|
365 |
msgid "Comment Form Background Color"
|
366 |
+
msgstr "Фон формы комментарий"
|
367 |
+
|
368 |
+
#: options/options-layouts/settings-style.php:10
|
369 |
+
#: options/options-layouts/settings-style.php:34
|
370 |
+
#: options/options-layouts/settings-style.php:58
|
371 |
+
#: options/options-layouts/settings-style.php:82
|
372 |
+
#: options/options-layouts/settings-style.php:107
|
373 |
+
#: options/options-layouts/settings-style.php:132
|
374 |
+
#: options/options-layouts/settings-style.php:155
|
375 |
+
#: options/options-layouts/settings-style.php:178
|
376 |
msgid "Example: #00ff00"
|
377 |
+
msgstr "Пример: #00ff00"
|
378 |
|
379 |
+
#: options/options-layouts/settings-style.php:31
|
380 |
msgid "Comment Background Color"
|
381 |
msgstr "Цвет фона коментария"
|
382 |
|
383 |
+
#: options/options-layouts/settings-style.php:55
|
384 |
msgid "Reply Background Color"
|
385 |
+
msgstr "Цвет фона ответа"
|
386 |
|
387 |
+
#: options/options-layouts/settings-style.php:79
|
388 |
msgid "Comment Text Color"
|
389 |
msgstr "Цвет шрифта комментария"
|
390 |
|
391 |
+
#: options/options-layouts/settings-style.php:104
|
392 |
msgid "Author title color"
|
393 |
msgstr "Цвет подписи автора"
|
394 |
|
395 |
+
#: options/options-layouts/settings-style.php:129
|
396 |
msgid "Vote, Reply, Share, Edit links text colors"
|
397 |
msgstr "Цвет ссылок Голосовать, Ответить, Поделиться и Редактировать"
|
398 |
|
399 |
+
#: options/options-layouts/settings-style.php:152
|
400 |
+
msgid "Comment form fields border color"
|
401 |
+
msgstr "Цвет границы формы комментарий"
|
402 |
+
|
403 |
+
#: options/options-layouts/settings-style.php:175
|
404 |
msgid "New loaded comments' background color"
|
405 |
msgstr "Цвет фона новых загруженных комментариев"
|
406 |
|
407 |
+
#: options/options-layouts/settings-style.php:199
|
408 |
msgid "Custom CSS Code"
|
409 |
msgstr "Свой CSS код"
|
410 |
|
411 |
+
#: options/options-layouts/settings-subscription.php:2
|
412 |
+
msgid "Email Subscription Settings"
|
413 |
+
msgstr "Подписка через электронную почту"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
414 |
|
415 |
+
#: options/options-layouts/settings-subscription.php:7
|
416 |
+
msgid "Show \"Notify of all new follow-up comments\""
|
417 |
+
msgstr "Показывать \"Подписаться на все последующие комментарии\""
|
|
|
|
|
|
|
|
|
418 |
|
419 |
+
#: options/options-layouts/settings-subscription.php:8
|
420 |
+
msgid "Show \"Notify of new replies to all my comments\""
|
421 |
+
msgstr "Показывать \"Подписаться на все новые ответы на мои комментарии\""
|
422 |
|
423 |
+
#: options/options-layouts/settings-subscription.php:9
|
424 |
+
msgid "Show \"Notify of new replies to this comment\""
|
425 |
+
msgstr "Показывать \"Подписаться на новые ответы на этот комментарий\""
|
426 |
|
427 |
+
#: options/options-layouts/settings-subscription.php:11
|
428 |
+
msgid ""
|
429 |
+
"Please keep all three or at least one of those options ON, otherwise users "
|
430 |
+
"will not have any option for email notifications and they'll not get any "
|
431 |
+
"messages."
|
432 |
+
msgstr ""
|
433 |
+
"Пожалуйста, выберите все три, или как минимум одну опцию, иначе пользователи "
|
434 |
+
"не смогут увидеть их на странице комментариев и не будут получать никаких "
|
435 |
+
"уведомлений."
|
436 |
|
437 |
+
#: options/options-layouts/settings-subscription.php:30
|
438 |
+
msgid "Use Postmatic for subscriptions and commenting by email"
|
439 |
+
msgstr ""
|
440 |
+
"Используйте Postmatic, чтобы подписаться и комментировать по электронной "
|
441 |
+
"почте"
|
442 |
|
443 |
+
#: options/options-layouts/settings-subscription.php:31
|
444 |
+
msgid ""
|
445 |
+
"Postmatic allows your users subscribe to comments. Instead of just being "
|
446 |
+
"notified, they add a reply right from their inbox."
|
447 |
+
msgstr ""
|
448 |
+
"Postmatic позволяет пользователям подписаться на новые комментарии. Вместо "
|
449 |
+
"того чтобы просто получать уведомление, они добавляют ответ прямо на их "
|
450 |
+
"почтовый ящик."
|
451 |
|
452 |
+
#: options/options-layouts/settings-subscription.php:42
|
453 |
+
msgid ""
|
454 |
+
"Keep selected the email notification of all new follow-up comments by default"
|
455 |
+
msgstr ""
|
456 |
+
"Выделите уведомление по электронной почте о всех новых последующих "
|
457 |
+
"комментариях по умолчанию"
|
458 |
|
459 |
+
#: options/options-layouts/settings-subscription.php:43
|
460 |
+
msgid ""
|
461 |
+
"If this option is checked-on, in Manage Subscriptions section of comment "
|
462 |
+
"forms will only be displayed the \"Notify of all new follow-up comments\" "
|
463 |
+
"option and this option will always be selected by default."
|
464 |
+
msgstr ""
|
465 |
+
"Если эта опция включена, в \"Управление Подписки\" раздела формы комментарий "
|
466 |
+
"будут отображаться только вариант \"Уведомлять о всех новых комментариях\" и "
|
467 |
+
"этот вариант всегда будет выбран по умолчанию."
|
468 |
|
469 |
+
#: options/phrases-layout/phrases-comment.php:2
|
470 |
+
msgid "Comment Template Phrases"
|
471 |
+
msgstr "Шаблон комментарий"
|
472 |
|
473 |
+
#: options/phrases-layout/phrases-comment.php:7
|
474 |
+
#: options/wc-options-serialize.php:437
|
475 |
msgid "Reply"
|
476 |
msgstr "Ответить "
|
477 |
|
478 |
+
#: options/phrases-layout/phrases-comment.php:17
|
479 |
+
#: options/wc-options-serialize.php:438
|
480 |
msgid "Share"
|
481 |
msgstr "Поделиться"
|
482 |
|
483 |
+
#: options/phrases-layout/phrases-comment.php:37
|
484 |
+
#: options/wc-options-serialize.php:440
|
485 |
msgid "Share On Facebook"
|
486 |
msgstr "Поделиться через Facebook"
|
487 |
|
488 |
+
#: options/phrases-layout/phrases-comment.php:47
|
489 |
+
#: options/wc-options-serialize.php:441
|
490 |
msgid "Share On Twitter"
|
491 |
msgstr "Поделиться через Twitter"
|
492 |
|
493 |
+
#: options/phrases-layout/phrases-comment.php:57
|
494 |
+
#: options/wc-options-serialize.php:442
|
495 |
msgid "Share On Google"
|
496 |
msgstr "Поделиться через Google"
|
497 |
|
498 |
+
#: options/phrases-layout/phrases-comment.php:67
|
499 |
+
#: options/wc-options-serialize.php:443
|
500 |
+
msgid "Share On VKontakte"
|
501 |
+
msgstr "Поделиться через Вконтакте"
|
502 |
+
|
503 |
+
#: options/phrases-layout/phrases-comment.php:77
|
504 |
+
#: options/wc-options-serialize.php:444
|
505 |
+
msgid "Share On Odnoklassniki"
|
506 |
+
msgstr "Поделиться через Одноклассники"
|
507 |
+
|
508 |
+
#: options/phrases-layout/phrases-comment.php:87
|
509 |
+
#: options/wc-options-serialize.php:445
|
510 |
msgid "Hide Replies"
|
511 |
msgstr "Спрятать ответы"
|
512 |
|
513 |
+
#: options/phrases-layout/phrases-comment.php:97
|
514 |
+
#: options/wc-options-serialize.php:446
|
515 |
msgid "Show Replies"
|
516 |
msgstr "Показать ответы"
|
517 |
|
518 |
+
#: options/phrases-layout/phrases-comment.php:107
|
519 |
msgid "Title For Guests"
|
520 |
msgstr "Подпись для Гостей"
|
521 |
|
522 |
+
#: options/phrases-layout/phrases-comment.php:117
|
523 |
msgid "Title For Members"
|
524 |
msgstr "Подпись для Пользователей"
|
525 |
|
526 |
+
#: options/phrases-layout/phrases-comment.php:127
|
527 |
msgid "Title For Authors"
|
528 |
msgstr "Подпись для Авторов"
|
529 |
|
530 |
+
#: options/phrases-layout/phrases-comment.php:137
|
531 |
msgid "Title For Admins"
|
532 |
msgstr "Подпись для Админов"
|
533 |
|
534 |
+
#: options/phrases-layout/phrases-comment.php:147
|
535 |
+
#: options/wc-options-serialize.php:488
|
536 |
+
msgid "Vote Up"
|
537 |
+
msgstr "Голос за"
|
538 |
+
|
539 |
+
#: options/phrases-layout/phrases-comment.php:157
|
540 |
+
#: options/wc-options-serialize.php:489
|
541 |
+
msgid "Vote Down"
|
542 |
+
msgstr "Голос против"
|
543 |
+
|
544 |
+
#: options/phrases-layout/phrases-comment.php:167
|
545 |
+
msgid "Save edited comment button text"
|
546 |
+
msgstr "Сохранить отредактированный текст кнопки комментария"
|
547 |
+
|
548 |
+
#: options/phrases-layout/phrases-comment.php:171
|
549 |
+
#: options/wc-options-serialize.php:507
|
550 |
+
msgid "Save"
|
551 |
+
msgstr "Сохранить"
|
552 |
+
|
553 |
+
#: options/phrases-layout/phrases-comment.php:177
|
554 |
+
msgid "Cancel comment editing button text"
|
555 |
+
msgstr "Отменить текст кнопки редактирования комментария"
|
556 |
+
|
557 |
+
#: options/phrases-layout/phrases-comment.php:181
|
558 |
+
#: options/wc-options-serialize.php:508
|
559 |
+
msgid "Cancel"
|
560 |
+
msgstr "Отменить"
|
561 |
+
|
562 |
+
#: options/phrases-layout/phrases-datetime.php:2
|
563 |
+
msgid "Date/Time Phrases"
|
564 |
+
msgstr "Дата/Время фразы"
|
565 |
+
|
566 |
+
#: options/phrases-layout/phrases-datetime.php:7
|
567 |
+
msgid "Year"
|
568 |
+
msgstr "Год"
|
569 |
+
|
570 |
+
#: options/phrases-layout/phrases-datetime.php:18
|
571 |
+
msgid "Years (Plural Form)"
|
572 |
+
msgstr "Годы (форма множественного числа)"
|
573 |
+
|
574 |
+
#: options/phrases-layout/phrases-datetime.php:22
|
575 |
+
msgid "Years"
|
576 |
+
msgstr "Лет"
|
577 |
+
|
578 |
+
#: options/phrases-layout/phrases-datetime.php:29
|
579 |
+
msgid "Month"
|
580 |
+
msgstr "Месяц"
|
581 |
+
|
582 |
+
#: options/phrases-layout/phrases-datetime.php:40
|
583 |
+
msgid "Months (Plural Form)"
|
584 |
+
msgstr "Месяцв (форма множественного числа)"
|
585 |
+
|
586 |
+
#: options/phrases-layout/phrases-datetime.php:51
|
587 |
+
msgid "Day"
|
588 |
+
msgstr "День"
|
589 |
+
|
590 |
+
#: options/phrases-layout/phrases-datetime.php:62
|
591 |
+
msgid "Days (Plural Form)"
|
592 |
+
msgstr "Дни (форма множественного числа)"
|
593 |
+
|
594 |
+
#: options/phrases-layout/phrases-datetime.php:84
|
595 |
+
msgid "Hours (Plural Form)"
|
596 |
+
msgstr "Часы (форма множественного числа)"
|
597 |
+
|
598 |
+
#: options/phrases-layout/phrases-datetime.php:106
|
599 |
+
msgid "Minutes (Plural Form)"
|
600 |
+
msgstr "Минуты (форма множественного числа)"
|
601 |
+
|
602 |
+
#: options/phrases-layout/phrases-datetime.php:117
|
603 |
+
msgid "Second"
|
604 |
+
msgstr "Секунды"
|
605 |
+
|
606 |
+
#: options/phrases-layout/phrases-datetime.php:128
|
607 |
+
msgid "Seconds (Plural Form)"
|
608 |
+
msgstr "Секунды (форма множественного числа)"
|
609 |
+
|
610 |
+
#: options/phrases-layout/phrases-datetime.php:138
|
611 |
+
msgid "Commented \"right now\" text"
|
612 |
+
msgstr "Текст \"только что\" прокомментировано"
|
613 |
+
|
614 |
+
#: options/phrases-layout/phrases-datetime.php:149
|
615 |
+
msgid "Ago text"
|
616 |
+
msgstr "Тест \"тому назад\""
|
617 |
+
|
618 |
+
#: options/phrases-layout/phrases-datetime.php:160
|
619 |
+
msgid "\"Today\" text"
|
620 |
+
msgstr "Текст \"Сегодня\""
|
621 |
+
|
622 |
+
#: options/phrases-layout/phrases-datetime.php:164
|
623 |
+
#: options/wc-options-serialize.php:482
|
624 |
+
msgid "Today"
|
625 |
+
msgstr "Сегодня"
|
626 |
+
|
627 |
+
#: options/phrases-layout/phrases-email.php:2
|
628 |
+
msgid "Email Template Phrases"
|
629 |
+
msgstr "Шаблон электронного письма"
|
630 |
+
|
631 |
+
#: options/phrases-layout/phrases-email.php:7
|
632 |
msgid "Email Subject"
|
633 |
+
msgstr "Тема электронного письма"
|
634 |
|
635 |
+
#: options/phrases-layout/phrases-email.php:18
|
636 |
msgid "Email Message"
|
637 |
+
msgstr "Сообщение электроного письма"
|
638 |
|
639 |
+
#: options/phrases-layout/phrases-email.php:29
|
640 |
msgid "New Reply Subject"
|
641 |
+
msgstr "Ответ на тему"
|
642 |
|
643 |
+
#: options/phrases-layout/phrases-email.php:33
|
644 |
+
#: options/phrases-layout/phrases-general.php:101
|
645 |
+
#: options/wc-options-serialize.php:453
|
646 |
msgid "New Reply"
|
647 |
msgstr "Новый ответ"
|
648 |
|
649 |
+
#: options/phrases-layout/phrases-email.php:40
|
|
|
650 |
msgid "New Reply Message"
|
651 |
+
msgstr "Новый ответ на сообщение"
|
652 |
+
|
653 |
+
#: options/phrases-layout/phrases-email.php:50
|
654 |
+
#: options/phrases-layout/phrases-email.php:54
|
655 |
+
#: options/wc-options-serialize.php:458
|
656 |
+
msgid "Unsubscribe"
|
657 |
msgstr "Отписаться"
|
658 |
|
659 |
+
#: options/phrases-layout/phrases-email.php:61
|
660 |
+
#: options/phrases-layout/phrases-email.php:65
|
661 |
+
#: options/wc-options-serialize.php:459
|
662 |
+
msgid "Ignore Subscription"
|
663 |
+
msgstr "Игнорировать подписку"
|
664 |
+
|
665 |
+
#: options/phrases-layout/phrases-email.php:72
|
666 |
+
#: options/phrases-layout/phrases-email.php:76
|
667 |
+
#: options/wc-options-serialize.php:461
|
668 |
+
msgid "Confirm your subscription"
|
669 |
+
msgstr "Подтвердить подписку"
|
670 |
+
|
671 |
+
#: options/phrases-layout/phrases-email.php:82
|
672 |
+
#: options/phrases-layout/phrases-email.php:86
|
673 |
+
#: options/wc-options-serialize.php:462
|
674 |
+
msgid "You've successfully confirmed your subscription."
|
675 |
+
msgstr "Вы успешпо подтвердили подписку"
|
676 |
+
|
677 |
+
#: options/phrases-layout/phrases-email.php:92
|
678 |
+
msgid "Subscribe Confirmation Email Subject"
|
679 |
+
msgstr "Тема подписки по электронной почте"
|
680 |
+
|
681 |
+
#: options/phrases-layout/phrases-email.php:96
|
682 |
+
#: options/wc-options-serialize.php:463 wc.php:941
|
683 |
+
msgid "Subscribe Confirmation"
|
684 |
+
msgstr "Подтверждение подписки"
|
685 |
+
|
686 |
+
#: options/phrases-layout/phrases-email.php:103
|
687 |
+
msgid "Subscribe Confirmation Email Content"
|
688 |
+
msgstr "Содержание формы подписки"
|
689 |
+
|
690 |
+
#: options/phrases-layout/phrases-email.php:107
|
691 |
+
#: options/wc-options-serialize.php:464 wc.php:942
|
692 |
+
msgid ""
|
693 |
+
"Hi, <br/> You just subscribed for new comments on our website. This means "
|
694 |
+
"you will receive an email when new comments are posted according to "
|
695 |
+
"subscription option you've chosen. <br/> To activate, click confirm below. "
|
696 |
+
"If you believe this is an error, ignore this message and we'll never bother "
|
697 |
+
"you again."
|
698 |
+
msgstr ""
|
699 |
+
"Здравствуйте, <br/> Вы подписались на новые комментарии на нашем сайте. Это "
|
700 |
+
"означает, что вы получите по электронной почте сообщение при появлении новых "
|
701 |
+
"комментарий в соответствии с выбранным вариантом подписки. <br/> Для "
|
702 |
+
"активации нажмите подтверждение ниже. Если вы считаете, что это ошибка, "
|
703 |
+
"проигнорируйте это сообщение, и мы никогда не будем беспокоить вас снова. "
|
704 |
+
"<br/> С уважением, команда Bowandtie.ru"
|
705 |
+
|
706 |
+
#: options/phrases-layout/phrases-form.php:2
|
707 |
+
msgid "Form Template Phrases"
|
708 |
+
msgstr "Шаблон сообщений"
|
709 |
+
|
710 |
+
#: options/phrases-layout/phrases-form.php:7
|
711 |
+
msgid "Comment Field Start"
|
712 |
+
msgstr "Фраза \"Начать обсуждение\""
|
713 |
+
|
714 |
+
#: options/phrases-layout/phrases-form.php:17
|
715 |
+
msgid "Comment Field Join"
|
716 |
+
msgstr "Фраза \"Присоединиться к обсуждению\""
|
717 |
+
|
718 |
+
#: options/phrases-layout/phrases-form.php:27
|
719 |
+
msgid "Email Field"
|
720 |
+
msgstr "Email"
|
721 |
+
|
722 |
+
#: options/phrases-layout/phrases-form.php:37
|
723 |
+
msgid "Name Field"
|
724 |
+
msgstr "Имя"
|
725 |
+
|
726 |
+
#: options/phrases-layout/phrases-form.php:47
|
727 |
+
msgid "WebSite URL Field"
|
728 |
+
msgstr "Поле URL вебсайта"
|
729 |
+
|
730 |
+
#: options/phrases-layout/phrases-form.php:57
|
731 |
+
msgid "CAPTCHA Field"
|
732 |
+
msgstr "CAPTCHA"
|
733 |
+
|
734 |
+
#: options/phrases-layout/phrases-form.php:67
|
735 |
+
msgid "Submit Button"
|
736 |
+
msgstr "Кнопка подписки"
|
737 |
+
|
738 |
+
#: options/phrases-layout/phrases-form.php:77
|
739 |
+
#: options/phrases-layout/phrases-form.php:81
|
740 |
+
#: options/wc-options-serialize.php:430
|
741 |
+
msgid "Manage Subscriptions"
|
742 |
+
msgstr "Управление Подпиской"
|
743 |
+
|
744 |
+
#: options/phrases-layout/phrases-form.php:87
|
745 |
+
msgid "Notify \"None\""
|
746 |
+
msgstr "Сообщите \"Нет\""
|
747 |
+
|
748 |
+
#: options/phrases-layout/phrases-form.php:91
|
749 |
+
#: options/wc-options-serialize.php:431
|
750 |
+
msgid "None"
|
751 |
+
msgstr "Ничего"
|
752 |
+
|
753 |
+
#: options/phrases-layout/phrases-form.php:97
|
754 |
+
msgid "Notify on new comments (checkbox)"
|
755 |
+
msgstr "Сообщать о новых ответах на этот коментарий (галочка)"
|
756 |
+
|
757 |
+
#: options/phrases-layout/phrases-form.php:101
|
758 |
+
#: options/wc-options-serialize.php:432
|
759 |
+
msgid "Notify of all new follow-up comments"
|
760 |
+
msgstr "Сообщать о всех последующих комментариях (галочка)"
|
761 |
+
|
762 |
+
#: options/phrases-layout/phrases-form.php:108
|
763 |
+
msgid "Notify on all new replies (checkbox)"
|
764 |
+
msgstr "Сообщать об ответах на все мои коментарии (галочка)"
|
765 |
+
|
766 |
+
#: options/phrases-layout/phrases-form.php:112
|
767 |
+
#: options/wc-options-serialize.php:433
|
768 |
+
msgid "Notify of new replies to all my comments"
|
769 |
+
msgstr "Сообщать о всех новых ответах на мои комментарии"
|
770 |
+
|
771 |
+
#: options/phrases-layout/phrases-form.php:119
|
772 |
+
msgid "Notify on new replies (checkbox)"
|
773 |
+
msgstr "Сообщать о новых ответах (галочка)"
|
774 |
+
|
775 |
+
#: options/phrases-layout/phrases-form.php:123
|
776 |
+
#: options/wc-options-serialize.php:434
|
777 |
+
msgid "Notify of new replies to this comment"
|
778 |
+
msgstr "Сообщать о новых ответах на этот комментарий"
|
779 |
+
|
780 |
+
#: options/phrases-layout/phrases-form.php:129
|
781 |
msgid "Subscribed on this comment replies"
|
782 |
msgstr "Подписка на ответы на этот коммент"
|
783 |
|
784 |
+
#: options/phrases-layout/phrases-form.php:139
|
785 |
msgid "Subscribed on all your comments replies"
|
786 |
msgstr "Подписка на ответы на все комменты пользователя"
|
787 |
|
788 |
+
#: options/phrases-layout/phrases-form.php:149
|
789 |
msgid "Subscribed on this post"
|
790 |
msgstr "Подписка на все комменты к записи"
|
791 |
|
792 |
+
#: options/phrases-layout/phrases-general.php:2
|
793 |
+
msgid "General Phrases"
|
794 |
+
msgstr "Общие фразы"
|
795 |
|
796 |
+
#: options/phrases-layout/phrases-general.php:7
|
797 |
+
#: options/wc-options-serialize.php:418
|
798 |
+
msgid "Leave a Reply"
|
799 |
+
msgstr "Отправить ответ"
|
800 |
|
801 |
+
#: options/phrases-layout/phrases-general.php:17
|
802 |
+
msgid "Be the first to comment"
|
803 |
+
msgstr "Оставьте первый комментарий"
|
804 |
|
805 |
+
#: options/phrases-layout/phrases-general.php:27
|
806 |
+
#: options/wc-options-serialize.php:420 options/wc-options.php:353
|
807 |
+
msgid "Comment"
|
808 |
+
msgstr "Комментарий"
|
809 |
|
810 |
+
#: options/phrases-layout/phrases-general.php:37
|
811 |
+
msgid "Comment (Plural Form)"
|
812 |
+
msgstr "Комментарий (форма множественного числа)"
|
813 |
|
814 |
+
#: options/phrases-layout/phrases-general.php:47
|
815 |
+
msgid "On"
|
816 |
+
msgstr "Включено"
|
817 |
|
818 |
+
#: options/phrases-layout/phrases-general.php:57
|
819 |
+
msgid "Load More Button"
|
820 |
+
msgstr "Кнопка \"Загрузить ещё\""
|
821 |
|
822 |
+
#: options/phrases-layout/phrases-general.php:67
|
823 |
+
#: options/wc-options-serialize.php:436
|
824 |
+
msgid "Load Rest of Comments"
|
825 |
+
msgstr "Загрузить остальные комментарии"
|
826 |
|
827 |
+
#: options/phrases-layout/phrases-general.php:77
|
828 |
+
msgid "Button text if has new comment"
|
829 |
+
msgstr "Текст кнопки, если есть новый комментарий"
|
830 |
|
831 |
+
#: options/phrases-layout/phrases-general.php:81
|
832 |
+
#: options/wc-options-serialize.php:451
|
833 |
+
msgid "New Comment"
|
834 |
+
msgstr "Новый комментарий"
|
835 |
|
836 |
+
#: options/phrases-layout/phrases-general.php:87
|
837 |
+
msgid "Button text if has new comments (Plural Form)"
|
838 |
+
msgstr "Текст кнопки, если есть новый комментарий (Форма множественного числа)"
|
839 |
|
840 |
+
#: options/phrases-layout/phrases-general.php:91
|
841 |
+
msgid "New Comments"
|
842 |
+
msgstr "Новые комментарии"
|
843 |
|
844 |
+
#: options/phrases-layout/phrases-general.php:97
|
845 |
+
msgid "Button text if has new reply"
|
846 |
+
msgstr "Текст кнопки, если есть новый ответ"
|
847 |
|
848 |
+
#: options/phrases-layout/phrases-general.php:107
|
849 |
+
msgid "Button text if has new replies (Plural Form)"
|
850 |
+
msgstr "Текст кнопки, если есть новый ответ (множественная форма числа)"
|
851 |
+
|
852 |
+
#: options/phrases-layout/phrases-general.php:111
|
853 |
+
msgid "New Replies"
|
854 |
+
msgstr "Новые ответы"
|
855 |
+
|
856 |
+
#: options/phrases-layout/phrases-general.php:117
|
857 |
+
msgid "Text on load more button if has new comment(s)"
|
858 |
+
msgstr "Текст кнопки, если нет больше комментарий для загрузки"
|
859 |
+
|
860 |
+
#: options/phrases-layout/phrases-general.php:121
|
861 |
+
#: options/wc-options-serialize.php:503
|
862 |
+
msgid "New"
|
863 |
+
msgstr "Новое"
|
864 |
+
|
865 |
+
#: options/phrases-layout/phrases-notification.php:2
|
866 |
+
msgid "Notification Phrases"
|
867 |
+
msgstr "Уведомления"
|
868 |
|
869 |
+
#: options/phrases-layout/phrases-notification.php:7
|
870 |
+
#: options/wc-options-serialize.php:460
|
871 |
+
msgid "You've successfully unsubscribed."
|
872 |
+
msgstr "Вы успешно отписались."
|
873 |
+
|
874 |
+
#: options/phrases-layout/phrases-notification.php:18
|
875 |
+
msgid "Error message for empty field"
|
876 |
+
msgstr "Сообщение об ошибке - пустое поле"
|
877 |
+
|
878 |
+
#: options/phrases-layout/phrases-notification.php:28
|
879 |
+
msgid "Error message for invalid email field"
|
880 |
+
msgstr "Сообщение об ошибке - неверный email адрес"
|
881 |
+
|
882 |
+
#: options/phrases-layout/phrases-notification.php:38
|
883 |
+
msgid "Error message for invalid website url field"
|
884 |
+
msgstr "Сообщение об ошибке - неверный URL вебсайта"
|
885 |
+
|
886 |
+
#: options/phrases-layout/phrases-notification.php:48
|
887 |
+
#: options/wc-options-serialize.php:483
|
888 |
msgid "You must be"
|
889 |
msgstr "Вы должны быть "
|
890 |
|
891 |
+
#: options/phrases-layout/phrases-notification.php:58
|
892 |
msgid "Logged in as"
|
893 |
msgstr "Вошли как"
|
894 |
|
895 |
+
#: options/phrases-layout/phrases-notification.php:68
|
896 |
+
#: options/wc-options-serialize.php:485
|
897 |
msgid "Log out"
|
898 |
msgstr "Выйти"
|
899 |
|
900 |
+
#: options/phrases-layout/phrases-notification.php:78
|
901 |
msgid "Logged In"
|
902 |
msgstr "Зарегистрированы"
|
903 |
|
904 |
+
#: options/phrases-layout/phrases-notification.php:88
|
905 |
msgid "To post a comment"
|
906 |
msgstr "Чтобы оставить комментарий"
|
907 |
|
908 |
+
#: options/phrases-layout/phrases-notification.php:98
|
909 |
+
#: options/wc-options-serialize.php:490
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
910 |
msgid "Vote Counted"
|
911 |
msgstr "Голос учтен"
|
912 |
|
913 |
+
#: options/phrases-layout/phrases-notification.php:108
|
914 |
msgid "You can vote only 1 time"
|
915 |
msgstr "Вы можете проголосовать только один раз"
|
916 |
|
917 |
+
#: options/phrases-layout/phrases-notification.php:118
|
918 |
+
#: options/wc-options-serialize.php:492
|
919 |
msgid "Voting Error"
|
920 |
msgstr "Ошибка голосования"
|
921 |
|
922 |
+
#: options/phrases-layout/phrases-notification.php:128
|
923 |
msgid "Login To Vote"
|
924 |
msgstr "Залогиньтесь, чтобы голосовать"
|
925 |
|
926 |
+
#: options/phrases-layout/phrases-notification.php:138
|
927 |
msgid "You Cannot Vote On Your Comment"
|
928 |
msgstr "Вы не можете проголосовать за свой комментарий"
|
929 |
|
930 |
+
#: options/phrases-layout/phrases-notification.php:148
|
931 |
+
msgid "You are not allowed to vote for this comment (Voting from same IP)"
|
932 |
+
msgstr ""
|
933 |
+
"Вы не можете проголосовать за этот комментарий (голосование с того же IP "
|
934 |
+
"адреса)"
|
935 |
+
|
936 |
+
#: options/phrases-layout/phrases-notification.php:158
|
937 |
+
#: options/wc-options-serialize.php:496
|
938 |
msgid "Invalid Captcha Code"
|
939 |
msgstr "Неверно введен код"
|
940 |
|
941 |
+
#: options/phrases-layout/phrases-notification.php:168
|
942 |
+
#: options/wc-options-serialize.php:497
|
943 |
msgid "Some of field value is invalid"
|
944 |
msgstr "Некоторые поля заполнены неверно"
|
945 |
|
946 |
+
#: options/phrases-layout/phrases-notification.php:178
|
947 |
msgid "Comment waiting moderation"
|
948 |
msgstr "Комментарий ожидает модерации"
|
949 |
|
950 |
+
#: options/phrases-layout/phrases-notification.php:188
|
951 |
+
msgid "Message if comment content length is too long"
|
952 |
+
msgstr "Сообщить, если длина комментария слишком большая"
|
953 |
|
954 |
+
#: options/phrases-layout/phrases-notification.php:198
|
955 |
+
msgid "Message if comment was not updated"
|
956 |
+
msgstr "Сообщить, если комментарий не был обновлен"
|
957 |
|
958 |
+
#: options/phrases-layout/phrases-notification.php:202
|
959 |
+
#: options/wc-options-serialize.php:504
|
960 |
+
msgid "Sorry, the comment was not updated"
|
961 |
+
msgstr "Извините, комментарий не был обновлен"
|
962 |
|
963 |
+
#: options/phrases-layout/phrases-notification.php:208
|
964 |
+
msgid "Message if comment no longer possible to edit"
|
965 |
+
msgstr "Сообщить, если комментарий уже нельзя обновить"
|
966 |
|
967 |
+
#: options/phrases-layout/phrases-notification.php:212
|
968 |
+
#: options/wc-options-serialize.php:505
|
969 |
+
msgid "Sorry, this comment no longer possible to edit"
|
970 |
+
msgstr "Извините, но комментарий уже нельзя обновить"
|
971 |
|
972 |
+
#: options/phrases-layout/phrases-notification.php:219
|
973 |
+
msgid "Message if comment text not changed"
|
974 |
+
msgstr "Сообщить, если комментарий не был изменён"
|
975 |
|
976 |
+
#: options/phrases-layout/phrases-notification.php:223
|
977 |
+
msgid "TYou've not made any changes"
|
978 |
+
msgstr "Вы не сделали никаких изменений"
|
979 |
|
980 |
+
#: options/wc-options-serialize.php:419
|
981 |
+
msgid "Be the First to Comment!"
|
982 |
+
msgstr "Оставьте первый комментарий!"
|
983 |
|
984 |
+
#: options/wc-options-serialize.php:421
|
985 |
+
msgid "Comments"
|
986 |
+
msgstr "Комментарий"
|
987 |
+
|
988 |
+
#: options/wc-options-serialize.php:422
|
989 |
+
msgid "on"
|
990 |
+
msgstr "на"
|
991 |
+
|
992 |
+
#: options/wc-options-serialize.php:423
|
993 |
+
msgid "Start the discussion"
|
994 |
+
msgstr "Начать обсуждение"
|
995 |
+
|
996 |
+
#: options/wc-options-serialize.php:424
|
997 |
+
msgid "Join the discussion"
|
998 |
+
msgstr "Присоединиться к обсуждению"
|
999 |
+
|
1000 |
+
#: options/wc-options-serialize.php:425 options/wc-options.php:355
|
1001 |
+
msgid "Email"
|
1002 |
+
msgstr "Email"
|
1003 |
+
|
1004 |
+
#: options/wc-options-serialize.php:426
|
1005 |
+
msgid "Name"
|
1006 |
+
msgstr "Имя"
|
1007 |
+
|
1008 |
+
#: options/wc-options-serialize.php:427
|
1009 |
+
msgid "WebSite URL"
|
1010 |
+
msgstr "URL веб-сайта"
|
1011 |
+
|
1012 |
+
#: options/wc-options-serialize.php:428
|
1013 |
+
msgid "Please insert the code above to comment"
|
1014 |
+
msgstr "Пожалуйста, введите код, указанный выше"
|
1015 |
+
|
1016 |
+
#: options/wc-options-serialize.php:429
|
1017 |
+
msgid "Post Comment"
|
1018 |
+
msgstr "Оставить комментарий"
|
1019 |
+
|
1020 |
+
#: options/wc-options-serialize.php:435
|
1021 |
+
msgid "Load More Comments"
|
1022 |
+
msgstr "Загрузить ещё комментарии"
|
1023 |
+
|
1024 |
+
#: options/wc-options-serialize.php:447
|
1025 |
+
msgid "Guest"
|
1026 |
+
msgstr "Гость"
|
1027 |
+
|
1028 |
+
#: options/wc-options-serialize.php:448
|
1029 |
+
msgid "Member"
|
1030 |
+
msgstr "Участник"
|
1031 |
+
|
1032 |
+
#: options/wc-options-serialize.php:449
|
1033 |
+
msgid "Author"
|
1034 |
+
msgstr "Автор"
|
1035 |
+
|
1036 |
+
#: options/wc-options-serialize.php:450
|
1037 |
+
msgid "Admin"
|
1038 |
+
msgstr "Администратор"
|
1039 |
+
|
1040 |
+
#: options/wc-options-serialize.php:452
|
1041 |
+
msgid "New comment on the discussion section you've been interested in"
|
1042 |
+
msgstr "Новый комментарий в обсуждении, в котором вы были заинтересованы"
|
1043 |
+
|
1044 |
+
#: options/wc-options-serialize.php:454
|
1045 |
+
msgid "New reply on the discussion section you've been interested in"
|
1046 |
+
msgstr "Новый ответ в обсуждении, в котором вы были заинтересованы"
|
1047 |
+
|
1048 |
+
#: options/wc-options-serialize.php:455
|
1049 |
+
msgid "You're subscribed for new replies on this comment"
|
1050 |
+
msgstr "Вы подписались на новые ответы на этот комментарий"
|
1051 |
+
|
1052 |
+
#: options/wc-options-serialize.php:456
|
1053 |
+
msgid "You're subscribed for new replies on all your comments"
|
1054 |
+
msgstr "Вы подписались на все новые комментарии"
|
1055 |
+
|
1056 |
+
#: options/wc-options-serialize.php:457
|
1057 |
+
msgid "You're subscribed for new follow-up comments on this post"
|
1058 |
+
msgstr "Вы подписались на новые комментарии в этой статье"
|
1059 |
+
|
1060 |
+
#: options/wc-options-serialize.php:465
|
1061 |
+
msgid "please fill out this field to comment"
|
1062 |
+
msgstr "пожалуйста, заполните это поле, чтобы комментировать"
|
1063 |
+
|
1064 |
+
#: options/wc-options-serialize.php:466
|
1065 |
+
msgid "email address is invalid"
|
1066 |
+
msgstr "Адрес электронной почты недействителен"
|
1067 |
+
|
1068 |
+
#: options/wc-options-serialize.php:467
|
1069 |
+
msgid "url is invalid"
|
1070 |
+
msgstr "Ссылка недействительна"
|
1071 |
+
|
1072 |
+
#: options/wc-options-serialize.php:468
|
1073 |
+
msgid "year"
|
1074 |
+
msgstr "год"
|
1075 |
+
|
1076 |
+
#: options/wc-options-serialize.php:469
|
1077 |
+
msgid "years"
|
1078 |
+
msgstr "лет"
|
1079 |
|
1080 |
+
#: options/wc-options-serialize.php:470
|
1081 |
+
msgid "month"
|
1082 |
+
msgstr "месяц"
|
1083 |
+
|
1084 |
+
#: options/wc-options-serialize.php:471
|
1085 |
+
msgid "months"
|
1086 |
+
msgstr "месяцев"
|
1087 |
+
|
1088 |
+
#: options/wc-options-serialize.php:472
|
1089 |
+
msgid "day"
|
1090 |
+
msgstr "день"
|
1091 |
+
|
1092 |
+
#: options/wc-options-serialize.php:473
|
1093 |
+
msgid "days"
|
1094 |
+
msgstr "дней"
|
1095 |
+
|
1096 |
+
#: options/wc-options-serialize.php:474
|
1097 |
+
msgid "hour"
|
1098 |
+
msgstr "час"
|
1099 |
+
|
1100 |
+
#: options/wc-options-serialize.php:475
|
1101 |
+
msgid "hours"
|
1102 |
+
msgstr "часов"
|
1103 |
+
|
1104 |
+
#: options/wc-options-serialize.php:476
|
1105 |
+
msgid "minute"
|
1106 |
+
msgstr "минута"
|
1107 |
+
|
1108 |
+
#: options/wc-options-serialize.php:477
|
1109 |
+
msgid "minutes"
|
1110 |
+
msgstr "минут"
|
1111 |
+
|
1112 |
+
#: options/wc-options-serialize.php:478
|
1113 |
+
msgid "second"
|
1114 |
+
msgstr "секунда"
|
1115 |
+
|
1116 |
+
#: options/wc-options-serialize.php:479
|
1117 |
+
msgid "seconds"
|
1118 |
+
msgstr "секунд"
|
1119 |
+
|
1120 |
+
#: options/wc-options-serialize.php:480
|
1121 |
+
msgid "right now"
|
1122 |
+
msgstr "прямо сейчас"
|
1123 |
+
|
1124 |
+
#: options/wc-options-serialize.php:481
|
1125 |
+
msgid "ago"
|
1126 |
+
msgstr "назад"
|
1127 |
+
|
1128 |
+
#: options/wc-options-serialize.php:484
|
1129 |
+
msgid "You are logged in as"
|
1130 |
+
msgstr "Вы вошли как"
|
1131 |
+
|
1132 |
+
#: options/wc-options-serialize.php:486
|
1133 |
+
msgid "logged in"
|
1134 |
+
msgstr "зарегистрированы"
|
1135 |
+
|
1136 |
+
#: options/wc-options-serialize.php:487
|
1137 |
+
msgid "to post a comment."
|
1138 |
+
msgstr "чтобы оставить комментарий"
|
1139 |
+
|
1140 |
+
#: options/wc-options-serialize.php:491
|
1141 |
+
msgid "You've already voted for this comment"
|
1142 |
+
msgstr "Вы уже голосовали за этот комментарий"
|
1143 |
+
|
1144 |
+
#: options/wc-options-serialize.php:493
|
1145 |
+
msgid "You Must Be Logged In To Vote"
|
1146 |
+
msgstr "Вы должны войти , чтобы проголосовать"
|
1147 |
+
|
1148 |
+
#: options/wc-options-serialize.php:494
|
1149 |
+
msgid "You cannot vote for your comment"
|
1150 |
+
msgstr "Вы не можете голосовать за свой комментарий"
|
1151 |
+
|
1152 |
+
#: options/wc-options-serialize.php:495
|
1153 |
+
msgid "You are not allowed to vote for this comment"
|
1154 |
+
msgstr "Вы не можете голосовать за этот комментарий"
|
1155 |
+
|
1156 |
+
#: options/wc-options-serialize.php:498
|
1157 |
+
msgid "new comment"
|
1158 |
+
msgstr "новый комментарий"
|
1159 |
+
|
1160 |
+
#: options/wc-options-serialize.php:499
|
1161 |
+
msgid "new comments"
|
1162 |
+
msgstr "новые комментарии"
|
1163 |
+
|
1164 |
+
#: options/wc-options-serialize.php:500
|
1165 |
+
msgid "Comment awaiting moderation"
|
1166 |
+
msgstr "Комментарий ожидает модерации"
|
1167 |
+
|
1168 |
+
#: options/wc-options-serialize.php:501
|
1169 |
+
msgid "new reply on your comment"
|
1170 |
+
msgstr "новый ответ на ваш комментарий"
|
1171 |
+
|
1172 |
+
#: options/wc-options-serialize.php:502
|
1173 |
+
msgid "new replies on your comments"
|
1174 |
+
msgstr "новые ответы на ваши комментарии"
|
1175 |
+
|
1176 |
+
#: options/wc-options-serialize.php:506
|
1177 |
+
msgid "You've not made any changes"
|
1178 |
+
msgstr "Вы не сделали никаких изменений"
|
1179 |
+
|
1180 |
+
#: options/wc-options-serialize.php:509
|
1181 |
+
#, php-format
|
1182 |
+
msgid "Comment text is too long (maximum %s characters allowed)"
|
1183 |
+
msgstr "Комментарий слишком длинный (доступно максимум %s символов)"
|
1184 |
+
|
1185 |
+
#: options/wc-options.php:28 options/wc-options.php:232
|
1186 |
msgid "Hacker?"
|
1187 |
msgstr "Хакер?"
|
1188 |
|
1189 |
+
#: options/wc-options.php:87
|
1190 |
msgid "wpDiscuz General Settings"
|
1191 |
msgstr "Основные настройки wpDiscuz"
|
1192 |
|
1193 |
+
#: options/wc-options.php:179
|
1194 |
+
msgid "General settings"
|
1195 |
+
msgstr "Основные настройки"
|
1196 |
+
|
1197 |
+
#: options/wc-options.php:182
|
1198 |
+
msgid "Email Subscription"
|
1199 |
+
msgstr "E-mail подписка"
|
1200 |
+
|
1201 |
+
#: options/wc-options.php:182
|
1202 |
+
msgid "and Postmatic"
|
1203 |
+
msgstr "и Postmatic?"
|
1204 |
+
|
1205 |
+
#: options/wc-options.php:213 options/wc-options.php:383
|
1206 |
msgid "Save Changes"
|
1207 |
msgstr "Сохранить изменения"
|
1208 |
|
1209 |
+
#: options/wc-options.php:214
|
1210 |
+
msgid "Reset Options"
|
1211 |
+
msgstr "Сбросить настройки"
|
1212 |
+
|
1213 |
+
#: options/wc-options.php:341
|
1214 |
msgid "WpDiscuz Front-end Phrases"
|
1215 |
msgstr "Фронт-энд фразы WpDiscuz"
|
1216 |
|
1217 |
+
#: options/wc-options.php:351
|
1218 |
+
msgid "General"
|
1219 |
+
msgstr "Основные"
|
1220 |
+
|
1221 |
+
#: options/wc-options.php:352
|
1222 |
+
msgid "Form"
|
1223 |
+
msgstr "Форма"
|
1224 |
+
|
1225 |
+
#: options/wc-options.php:354
|
1226 |
+
msgid "Date/Time"
|
1227 |
+
msgstr "Дата/Время"
|
1228 |
|
1229 |
+
#: options/wc-options.php:356
|
1230 |
+
msgid "Notification"
|
1231 |
+
msgstr "Уведомление"
|
1232 |
+
|
1233 |
+
#: wc.php:1020
|
1234 |
msgid "Phrases"
|
1235 |
msgstr "Фразы"
|
1236 |
+
|
1237 |
+
#. Plugin Name of the plugin/theme
|
1238 |
+
msgid "wpDiscuz - Wordpress Comments"
|
1239 |
+
msgstr ""
|
1240 |
+
|
1241 |
+
#. Plugin URI of the plugin/theme
|
1242 |
+
msgid "http://www.gvectors.com/wpdiscuz/"
|
1243 |
+
msgstr ""
|
1244 |
+
|
1245 |
+
#. Description of the plugin/theme
|
1246 |
+
msgid ""
|
1247 |
+
"Better comment system. Wordpress post comments and discussion plugin. Allows "
|
1248 |
+
"your visitors discuss, vote for comments and share."
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#. Author of the plugin/theme
|
1252 |
+
msgid "gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
+
#. Author URI of the plugin/theme
|
1256 |
+
msgid "http://www.gvectors.com/"
|
1257 |
+
msgstr ""
|
languages/wpdiscuz.pot
ADDED
@@ -0,0 +1,1207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2015 wpDiscuz - Wordpress Comments
|
2 |
+
# This file is distributed under the same license as the wpDiscuz - Wordpress Comments package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: wpDiscuz - Wordpress Comments 2.2.10\n"
|
6 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wpdiscuz\n"
|
7 |
+
"POT-Creation-Date: 2015-10-01 19:50:02+00:00\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
|
12 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
+
|
15 |
+
#: comment-form/form.php:251 comment-form/tpl-comment.php:263
|
16 |
+
msgid "Participate in this discussion via email"
|
17 |
+
msgstr ""
|
18 |
+
|
19 |
+
#: comment-form/form.php:455
|
20 |
+
msgid "Connect with"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: comment-form/tpl-comment.php:174
|
24 |
+
#: options/phrases-layout/phrases-comment.php:27
|
25 |
+
#: options/wc-options-serialize.php:449
|
26 |
+
msgid "Edit"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: comment-form/tpl-comment.php:388 wc.php:325
|
30 |
+
msgid "Anonymous"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: options/options-layouts/settings-general.php:2
|
34 |
+
msgid "General Settings"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: options/options-layouts/settings-general.php:7
|
38 |
+
msgid "Display comment form for post types:"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: options/options-layouts/settings-general.php:28
|
42 |
+
msgid "User Must be registered to comment"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: options/options-layouts/settings-general.php:34
|
46 |
+
msgid "Yes"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: options/options-layouts/settings-general.php:38
|
50 |
+
msgid "No"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: options/options-layouts/settings-general.php:46
|
54 |
+
msgid "Comment author must fill out name"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: options/options-layouts/settings-general.php:57
|
58 |
+
msgid "Comment author must fill out email"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: options/options-layouts/settings-general.php:68
|
62 |
+
msgid "Show the latest comments on"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: options/options-layouts/settings-general.php:72
|
66 |
+
msgid "the top of the list"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: options/options-layouts/settings-general.php:74
|
70 |
+
msgid "top of the threads"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: options/options-layouts/settings-general.php:76
|
74 |
+
msgid "bottom of the threads"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: options/options-layouts/settings-general.php:78
|
78 |
+
msgid "the bottom of the list"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: options/options-layouts/settings-general.php:86
|
82 |
+
msgid "Comment Threads Per Page"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: options/options-layouts/settings-general.php:97
|
86 |
+
msgid "Comment text max length"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: options/options-layouts/settings-general.php:108
|
90 |
+
msgid "Comments max depth"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: options/options-layouts/settings-general.php:113
|
94 |
+
msgid "Level"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: options/options-layouts/settings-general.php:114
|
98 |
+
#: options/options-layouts/settings-general.php:115
|
99 |
+
#: options/options-layouts/settings-general.php:116
|
100 |
+
#: options/options-layouts/settings-general.php:117
|
101 |
+
msgid "Levels"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: options/options-layouts/settings-general.php:124
|
105 |
+
msgid "Comment text size in pixels"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: options/options-layouts/settings-general.php:141
|
109 |
+
msgid "Allow comment editing for"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: options/options-layouts/settings-general.php:146
|
113 |
+
msgid "Not Allow"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: options/options-layouts/settings-general.php:147
|
117 |
+
#: options/options-layouts/settings-general.php:148
|
118 |
+
#: options/options-layouts/settings-live-update.php:41
|
119 |
+
#: options/options-layouts/settings-live-update.php:42
|
120 |
+
#: options/options-layouts/settings-live-update.php:43
|
121 |
+
msgid "Minutes"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: options/options-layouts/settings-general.php:149
|
125 |
+
#: options/phrases-layout/phrases-datetime.php:73
|
126 |
+
msgid "Hour"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: options/options-layouts/settings-general.php:150
|
130 |
+
#: options/options-layouts/settings-general.php:151
|
131 |
+
msgid "Hours"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: options/options-layouts/settings-general.php:158
|
135 |
+
msgid "Redirect first commenter to"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: options/options-layouts/settings-general.php:165
|
139 |
+
msgid "Do not redirect"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: options/options-layouts/settings-general.php:174
|
143 |
+
msgid "Allow guests to vote on comments"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: options/options-layouts/settings-general.php:184
|
147 |
+
msgid "Load WpDiscuz CSS and JS on home page"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: options/options-layouts/settings-general.php:194
|
151 |
+
msgid "Load rest of all comments on clicking the [Load More Comments] button"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: options/options-layouts/settings-general.php:205
|
155 |
+
msgid "Use WordPress Date/Time format"
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: options/options-layouts/settings-general.php:206
|
159 |
+
msgid ""
|
160 |
+
"wpDiscuz shows Human Readable date format. If you check this option it'll "
|
161 |
+
"show the date/time format set in WordPress General Settings."
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: options/options-layouts/settings-general.php:213
|
165 |
+
msgid "Current Wordpress date/time format"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: options/options-layouts/settings-general.php:219
|
169 |
+
msgid "Use Plugin .PO/.MO files"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: options/options-layouts/settings-general.php:220
|
173 |
+
msgid ""
|
174 |
+
"wpDiscuz phrase system allows you to translate all front-end phrases. "
|
175 |
+
"However if you have a multi-language website it'll not allow you to add more "
|
176 |
+
"than one language translation. The only way to get it is the plugin "
|
177 |
+
"translation files (.PO / .MO). If wpDiscuz has the languages you need you "
|
178 |
+
"should check this option to disable phrase system and it'll automatically "
|
179 |
+
"translate all phrases based on language files according to current language."
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: options/options-layouts/settings-general.php:231
|
183 |
+
msgid ""
|
184 |
+
"Help wpDiscuz to grow allowing people to recognize which comment plugin you "
|
185 |
+
"use"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: options/options-layouts/settings-general.php:233
|
189 |
+
msgid ""
|
190 |
+
"Please check this option on to help wpDiscuz get more popularity as your "
|
191 |
+
"thank to the hard work we do for you totally free. This option adds a very "
|
192 |
+
"small (16x16px) icon under the comment section which will allow your site "
|
193 |
+
"visitors recognize the name of comment solution you use."
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: options/options-layouts/settings-general.php:238
|
197 |
+
msgid "Thank you!"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: options/options-layouts/settings-live-update.php:2
|
201 |
+
#: options/wc-options.php:181
|
202 |
+
msgid "Live Update"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: options/options-layouts/settings-live-update.php:8
|
206 |
+
msgid "Live update options"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: options/options-layouts/settings-live-update.php:9
|
210 |
+
msgid ""
|
211 |
+
"If you use Shared Web Hosting you should make sure the \"Live Update\" "
|
212 |
+
"function doesn't overload your server resources. This function is good for "
|
213 |
+
"VPS and Dedicated Hosting Plans."
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: options/options-layouts/settings-live-update.php:14
|
217 |
+
msgid "Never update"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: options/options-layouts/settings-live-update.php:16
|
221 |
+
msgid "Turn off \"Live Update\" function"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: options/options-layouts/settings-live-update.php:18
|
225 |
+
msgid "Show new comment/reply buttons to update manualy"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: options/options-layouts/settings-live-update.php:20
|
229 |
+
msgid "Always check for new comments and show update buttons"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: options/options-layouts/settings-live-update.php:22
|
233 |
+
msgid "Always update"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: options/options-layouts/settings-live-update.php:24
|
237 |
+
msgid "Always check for new comments and update automatically"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: options/options-layouts/settings-live-update.php:32
|
241 |
+
msgid "Update comment list every"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: options/options-layouts/settings-live-update.php:37
|
245 |
+
#: options/options-layouts/settings-live-update.php:38
|
246 |
+
#: options/options-layouts/settings-live-update.php:39
|
247 |
+
msgid "Seconds"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: options/options-layouts/settings-live-update.php:40
|
251 |
+
#: options/phrases-layout/phrases-datetime.php:95
|
252 |
+
msgid "Minute"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: options/options-layouts/settings-show-hide.php:2 options/wc-options.php:182
|
256 |
+
msgid "Show/Hide Components"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: options/options-layouts/settings-show-hide.php:7
|
260 |
+
msgid "Show logged-in user name and logout link on top of main form"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: options/options-layouts/settings-show-hide.php:17
|
264 |
+
msgid "Hide Reply button for Guests"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: options/options-layouts/settings-show-hide.php:27
|
268 |
+
msgid "Hide Reply button for Members"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: options/options-layouts/settings-show-hide.php:37
|
272 |
+
msgid "Hide Author Titles"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: options/options-layouts/settings-show-hide.php:47
|
276 |
+
msgid "Hide Voting buttons"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: options/options-layouts/settings-show-hide.php:57
|
280 |
+
msgid "Hide Share Buttons"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: options/options-layouts/settings-show-hide.php:67
|
284 |
+
msgid "Hide the CAPTCHA field"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: options/options-layouts/settings-show-hide.php:77
|
288 |
+
msgid "Hide the Website URL field"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: options/options-layouts/settings-show-hide.php:87
|
292 |
+
msgid "Hide header text"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: options/options-layouts/settings-show-hide.php:97
|
296 |
+
msgid "Hide user avatar"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: options/options-layouts/settings-social.php:10
|
300 |
+
#: options/options-layouts/settings-social.php:12
|
301 |
+
#: options/options-layouts/settings-social.php:14
|
302 |
+
#: options/options-layouts/settings-social.php:16 wc.php:1024
|
303 |
+
msgid "Settings"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: options/options-layouts/settings-social.php:21
|
307 |
+
#: options/options-layouts/settings-social.php:31
|
308 |
+
#: options/options-layouts/settings-social.php:41
|
309 |
+
#: options/options-layouts/settings-social.php:52
|
310 |
+
msgid "Activate"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: options/options-layouts/settings-social.php:25
|
314 |
+
#: options/options-layouts/settings-social.php:35
|
315 |
+
#: options/options-layouts/settings-social.php:45
|
316 |
+
#: options/options-layouts/settings-social.php:56
|
317 |
+
msgid "View details/Install"
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: options/options-layouts/settings-social.php:89 options/wc-options.php:185
|
321 |
+
msgid "Social Login"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: options/options-layouts/settings-social.php:90
|
325 |
+
msgid ""
|
326 |
+
"You can use one of these most popular Social Login Plugins to allow your "
|
327 |
+
"visitors login and comment with Facebook, Twitter, Google+, Wordpress, VK, "
|
328 |
+
"OK and lots of other social network service accounts. All social login "
|
329 |
+
"buttons will be fully integrated with wpDiscuz comment forms."
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: options/options-layouts/settings-style.php:2 options/wc-options.php:184
|
333 |
+
msgid "Background and Colors"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
#: options/options-layouts/settings-style.php:7
|
337 |
+
msgid "Comment Form Background Color"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: options/options-layouts/settings-style.php:10
|
341 |
+
#: options/options-layouts/settings-style.php:34
|
342 |
+
#: options/options-layouts/settings-style.php:58
|
343 |
+
#: options/options-layouts/settings-style.php:82
|
344 |
+
#: options/options-layouts/settings-style.php:107
|
345 |
+
#: options/options-layouts/settings-style.php:132
|
346 |
+
#: options/options-layouts/settings-style.php:155
|
347 |
+
#: options/options-layouts/settings-style.php:178
|
348 |
+
msgid "Example: #00ff00"
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: options/options-layouts/settings-style.php:31
|
352 |
+
msgid "Comment Background Color"
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: options/options-layouts/settings-style.php:55
|
356 |
+
msgid "Reply Background Color"
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: options/options-layouts/settings-style.php:79
|
360 |
+
msgid "Comment Text Color"
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: options/options-layouts/settings-style.php:104
|
364 |
+
msgid "Author title color"
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: options/options-layouts/settings-style.php:129
|
368 |
+
msgid "Vote, Reply, Share, Edit links text colors"
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: options/options-layouts/settings-style.php:152
|
372 |
+
msgid "Comment form fields border color"
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: options/options-layouts/settings-style.php:175
|
376 |
+
msgid "New loaded comments' background color"
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: options/options-layouts/settings-style.php:199
|
380 |
+
msgid "Custom CSS Code"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: options/options-layouts/settings-subscription.php:2
|
384 |
+
msgid "Email Subscription Settings"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: options/options-layouts/settings-subscription.php:7
|
388 |
+
msgid "Show \"Notify of all new follow-up comments\""
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: options/options-layouts/settings-subscription.php:8
|
392 |
+
msgid "Show \"Notify of new replies to all my comments\""
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: options/options-layouts/settings-subscription.php:9
|
396 |
+
msgid "Show \"Notify of new replies to this comment\""
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: options/options-layouts/settings-subscription.php:11
|
400 |
+
msgid ""
|
401 |
+
"Please keep all three or at least one of those options ON, otherwise users "
|
402 |
+
"will not have any option for email notifications and they'll not get any "
|
403 |
+
"messages."
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: options/options-layouts/settings-subscription.php:30
|
407 |
+
msgid "Use Postmatic for subscriptions and commenting by email"
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: options/options-layouts/settings-subscription.php:31
|
411 |
+
msgid ""
|
412 |
+
"Postmatic allows your users subscribe to comments. Instead of just being "
|
413 |
+
"notified, they add a reply right from their inbox."
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: options/options-layouts/settings-subscription.php:42
|
417 |
+
msgid ""
|
418 |
+
"Keep selected the email notification of all new follow-up comments by default"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: options/options-layouts/settings-subscription.php:43
|
422 |
+
msgid ""
|
423 |
+
"If this option is checked-on, in Manage Subscriptions section of comment "
|
424 |
+
"forms will only be displayed the \"Notify of all new follow-up comments\" "
|
425 |
+
"option and this option will always be selected by default."
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#: options/phrases-layout/phrases-comment.php:2
|
429 |
+
msgid "Comment Template Phrases"
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
#: options/phrases-layout/phrases-comment.php:7
|
433 |
+
#: options/wc-options-serialize.php:447
|
434 |
+
msgid "Reply"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: options/phrases-layout/phrases-comment.php:17
|
438 |
+
#: options/wc-options-serialize.php:448
|
439 |
+
msgid "Share"
|
440 |
+
msgstr ""
|
441 |
+
|
442 |
+
#: options/phrases-layout/phrases-comment.php:37
|
443 |
+
#: options/wc-options-serialize.php:450
|
444 |
+
msgid "Share On Facebook"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: options/phrases-layout/phrases-comment.php:47
|
448 |
+
#: options/wc-options-serialize.php:451
|
449 |
+
msgid "Share On Twitter"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: options/phrases-layout/phrases-comment.php:57
|
453 |
+
#: options/wc-options-serialize.php:452
|
454 |
+
msgid "Share On Google"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: options/phrases-layout/phrases-comment.php:67
|
458 |
+
#: options/wc-options-serialize.php:453
|
459 |
+
msgid "Share On VKontakte"
|
460 |
+
msgstr ""
|
461 |
+
|
462 |
+
#: options/phrases-layout/phrases-comment.php:77
|
463 |
+
#: options/wc-options-serialize.php:454
|
464 |
+
msgid "Share On Odnoklassniki"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: options/phrases-layout/phrases-comment.php:87
|
468 |
+
#: options/wc-options-serialize.php:455
|
469 |
+
msgid "Hide Replies"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: options/phrases-layout/phrases-comment.php:97
|
473 |
+
#: options/wc-options-serialize.php:456
|
474 |
+
msgid "Show Replies"
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: options/phrases-layout/phrases-comment.php:107
|
478 |
+
msgid "Title For Guests"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: options/phrases-layout/phrases-comment.php:117
|
482 |
+
msgid "Title For Members"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: options/phrases-layout/phrases-comment.php:127
|
486 |
+
msgid "Title For Authors"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: options/phrases-layout/phrases-comment.php:137
|
490 |
+
msgid "Title For Admins"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: options/phrases-layout/phrases-comment.php:147
|
494 |
+
#: options/wc-options-serialize.php:498
|
495 |
+
msgid "Vote Up"
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: options/phrases-layout/phrases-comment.php:157
|
499 |
+
#: options/wc-options-serialize.php:499
|
500 |
+
msgid "Vote Down"
|
501 |
+
msgstr ""
|
502 |
+
|
503 |
+
#: options/phrases-layout/phrases-comment.php:167
|
504 |
+
msgid "Save edited comment button text"
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
+
#: options/phrases-layout/phrases-comment.php:171
|
508 |
+
#: options/wc-options-serialize.php:517
|
509 |
+
msgid "Save"
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#: options/phrases-layout/phrases-comment.php:177
|
513 |
+
msgid "Cancel comment editing button text"
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: options/phrases-layout/phrases-comment.php:181
|
517 |
+
#: options/wc-options-serialize.php:518
|
518 |
+
msgid "Cancel"
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
#: options/phrases-layout/phrases-datetime.php:2
|
522 |
+
msgid "Date/Time Phrases"
|
523 |
+
msgstr ""
|
524 |
+
|
525 |
+
#: options/phrases-layout/phrases-datetime.php:7
|
526 |
+
msgid "Year"
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: options/phrases-layout/phrases-datetime.php:18
|
530 |
+
msgid "Years (Plural Form)"
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
#: options/phrases-layout/phrases-datetime.php:22
|
534 |
+
msgid "Years"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: options/phrases-layout/phrases-datetime.php:29
|
538 |
+
msgid "Month"
|
539 |
+
msgstr ""
|
540 |
+
|
541 |
+
#: options/phrases-layout/phrases-datetime.php:40
|
542 |
+
msgid "Months (Plural Form)"
|
543 |
+
msgstr ""
|
544 |
+
|
545 |
+
#: options/phrases-layout/phrases-datetime.php:51
|
546 |
+
msgid "Day"
|
547 |
+
msgstr ""
|
548 |
+
|
549 |
+
#: options/phrases-layout/phrases-datetime.php:62
|
550 |
+
msgid "Days (Plural Form)"
|
551 |
+
msgstr ""
|
552 |
+
|
553 |
+
#: options/phrases-layout/phrases-datetime.php:84
|
554 |
+
msgid "Hours (Plural Form)"
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: options/phrases-layout/phrases-datetime.php:106
|
558 |
+
msgid "Minutes (Plural Form)"
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: options/phrases-layout/phrases-datetime.php:117
|
562 |
+
msgid "Second"
|
563 |
+
msgstr ""
|
564 |
+
|
565 |
+
#: options/phrases-layout/phrases-datetime.php:128
|
566 |
+
msgid "Seconds (Plural Form)"
|
567 |
+
msgstr ""
|
568 |
+
|
569 |
+
#: options/phrases-layout/phrases-datetime.php:138
|
570 |
+
msgid "Commented \"right now\" text"
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
+
#: options/phrases-layout/phrases-datetime.php:149
|
574 |
+
msgid "Ago text"
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: options/phrases-layout/phrases-datetime.php:160
|
578 |
+
msgid "\"Today\" text"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: options/phrases-layout/phrases-datetime.php:164
|
582 |
+
#: options/wc-options-serialize.php:492
|
583 |
+
msgid "Today"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: options/phrases-layout/phrases-email.php:2
|
587 |
+
msgid "Email Template Phrases"
|
588 |
+
msgstr ""
|
589 |
+
|
590 |
+
#: options/phrases-layout/phrases-email.php:7
|
591 |
+
msgid "Email Subject"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: options/phrases-layout/phrases-email.php:18
|
595 |
+
msgid "Email Message"
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: options/phrases-layout/phrases-email.php:29
|
599 |
+
msgid "New Reply Subject"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: options/phrases-layout/phrases-email.php:33
|
603 |
+
#: options/phrases-layout/phrases-general.php:101
|
604 |
+
#: options/wc-options-serialize.php:463 wc.php:934
|
605 |
+
msgid "New Reply"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: options/phrases-layout/phrases-email.php:40
|
609 |
+
msgid "New Reply Message"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: options/phrases-layout/phrases-email.php:50
|
613 |
+
#: options/phrases-layout/phrases-email.php:54
|
614 |
+
#: options/wc-options-serialize.php:468
|
615 |
+
msgid "Unsubscribe"
|
616 |
+
msgstr ""
|
617 |
+
|
618 |
+
#: options/phrases-layout/phrases-email.php:61
|
619 |
+
#: options/phrases-layout/phrases-email.php:65
|
620 |
+
#: options/wc-options-serialize.php:469
|
621 |
+
msgid "Ignore Subscription"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: options/phrases-layout/phrases-email.php:72
|
625 |
+
#: options/phrases-layout/phrases-email.php:76
|
626 |
+
#: options/wc-options-serialize.php:471
|
627 |
+
msgid "Confirm your subscription"
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: options/phrases-layout/phrases-email.php:82
|
631 |
+
#: options/phrases-layout/phrases-email.php:86
|
632 |
+
#: options/wc-options-serialize.php:472
|
633 |
+
msgid "You've successfully confirmed your subscription."
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: options/phrases-layout/phrases-email.php:92
|
637 |
+
msgid "Subscribe Confirmation Email Subject"
|
638 |
+
msgstr ""
|
639 |
+
|
640 |
+
#: options/phrases-layout/phrases-email.php:96
|
641 |
+
#: options/wc-options-serialize.php:473 wc.php:945
|
642 |
+
msgid "Subscribe Confirmation"
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: options/phrases-layout/phrases-email.php:103
|
646 |
+
msgid "Subscribe Confirmation Email Content"
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
+
#: options/phrases-layout/phrases-email.php:107
|
650 |
+
#: options/wc-options-serialize.php:474 wc.php:946
|
651 |
+
msgid ""
|
652 |
+
"Hi, <br/> You just subscribed for new comments on our website. This means "
|
653 |
+
"you will receive an email when new comments are posted according to "
|
654 |
+
"subscription option you've chosen. <br/> To activate, click confirm below. "
|
655 |
+
"If you believe this is an error, ignore this message and we'll never bother "
|
656 |
+
"you again."
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: options/phrases-layout/phrases-form.php:2
|
660 |
+
msgid "Form Template Phrases"
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: options/phrases-layout/phrases-form.php:7
|
664 |
+
msgid "Comment Field Start"
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: options/phrases-layout/phrases-form.php:17
|
668 |
+
msgid "Comment Field Join"
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: options/phrases-layout/phrases-form.php:27
|
672 |
+
msgid "Email Field"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: options/phrases-layout/phrases-form.php:37
|
676 |
+
msgid "Name Field"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: options/phrases-layout/phrases-form.php:47
|
680 |
+
msgid "WebSite URL Field"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: options/phrases-layout/phrases-form.php:57
|
684 |
+
msgid "CAPTCHA Field"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: options/phrases-layout/phrases-form.php:67
|
688 |
+
msgid "Submit Button"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: options/phrases-layout/phrases-form.php:77
|
692 |
+
#: options/phrases-layout/phrases-form.php:81
|
693 |
+
#: options/wc-options-serialize.php:440
|
694 |
+
msgid "Manage Subscriptions"
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: options/phrases-layout/phrases-form.php:87
|
698 |
+
msgid "Notify \"None\""
|
699 |
+
msgstr ""
|
700 |
+
|
701 |
+
#: options/phrases-layout/phrases-form.php:91
|
702 |
+
#: options/wc-options-serialize.php:441
|
703 |
+
msgid "None"
|
704 |
+
msgstr ""
|
705 |
+
|
706 |
+
#: options/phrases-layout/phrases-form.php:97
|
707 |
+
msgid "Notify on new comments (checkbox)"
|
708 |
+
msgstr ""
|
709 |
+
|
710 |
+
#: options/phrases-layout/phrases-form.php:101
|
711 |
+
#: options/wc-options-serialize.php:442
|
712 |
+
msgid "Notify of all new follow-up comments"
|
713 |
+
msgstr ""
|
714 |
+
|
715 |
+
#: options/phrases-layout/phrases-form.php:108
|
716 |
+
msgid "Notify on all new replies (checkbox)"
|
717 |
+
msgstr ""
|
718 |
+
|
719 |
+
#: options/phrases-layout/phrases-form.php:112
|
720 |
+
#: options/wc-options-serialize.php:443
|
721 |
+
msgid "Notify of new replies to all my comments"
|
722 |
+
msgstr ""
|
723 |
+
|
724 |
+
#: options/phrases-layout/phrases-form.php:119
|
725 |
+
msgid "Notify on new replies (checkbox)"
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
+
#: options/phrases-layout/phrases-form.php:123
|
729 |
+
#: options/wc-options-serialize.php:444
|
730 |
+
msgid "Notify of new replies to this comment"
|
731 |
+
msgstr ""
|
732 |
+
|
733 |
+
#: options/phrases-layout/phrases-form.php:129
|
734 |
+
msgid "Subscribed on this comment replies"
|
735 |
+
msgstr ""
|
736 |
+
|
737 |
+
#: options/phrases-layout/phrases-form.php:139
|
738 |
+
msgid "Subscribed on all your comments replies"
|
739 |
+
msgstr ""
|
740 |
+
|
741 |
+
#: options/phrases-layout/phrases-form.php:149
|
742 |
+
msgid "Subscribed on this post"
|
743 |
+
msgstr ""
|
744 |
+
|
745 |
+
#: options/phrases-layout/phrases-general.php:2
|
746 |
+
msgid "General Phrases"
|
747 |
+
msgstr ""
|
748 |
+
|
749 |
+
#: options/phrases-layout/phrases-general.php:7
|
750 |
+
#: options/wc-options-serialize.php:428
|
751 |
+
msgid "Leave a Reply"
|
752 |
+
msgstr ""
|
753 |
+
|
754 |
+
#: options/phrases-layout/phrases-general.php:17
|
755 |
+
msgid "Be the first to comment"
|
756 |
+
msgstr ""
|
757 |
+
|
758 |
+
#: options/phrases-layout/phrases-general.php:27
|
759 |
+
#: options/wc-options-serialize.php:430 options/wc-options.php:354
|
760 |
+
msgid "Comment"
|
761 |
+
msgstr ""
|
762 |
+
|
763 |
+
#: options/phrases-layout/phrases-general.php:37
|
764 |
+
msgid "Comment (Plural Form)"
|
765 |
+
msgstr ""
|
766 |
+
|
767 |
+
#: options/phrases-layout/phrases-general.php:47
|
768 |
+
msgid "On"
|
769 |
+
msgstr ""
|
770 |
+
|
771 |
+
#: options/phrases-layout/phrases-general.php:57
|
772 |
+
msgid "Load More Button"
|
773 |
+
msgstr ""
|
774 |
+
|
775 |
+
#: options/phrases-layout/phrases-general.php:67
|
776 |
+
#: options/wc-options-serialize.php:446
|
777 |
+
msgid "Load Rest of Comments"
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
#: options/phrases-layout/phrases-general.php:77
|
781 |
+
msgid "Button text if has new comment"
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#: options/phrases-layout/phrases-general.php:81
|
785 |
+
#: options/wc-options-serialize.php:461
|
786 |
+
msgid "New Comment"
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: options/phrases-layout/phrases-general.php:87
|
790 |
+
msgid "Button text if has new comments (Plural Form)"
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: options/phrases-layout/phrases-general.php:91
|
794 |
+
msgid "New Comments"
|
795 |
+
msgstr ""
|
796 |
+
|
797 |
+
#: options/phrases-layout/phrases-general.php:97
|
798 |
+
msgid "Button text if has new reply"
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: options/phrases-layout/phrases-general.php:107
|
802 |
+
msgid "Button text if has new replies (Plural Form)"
|
803 |
+
msgstr ""
|
804 |
+
|
805 |
+
#: options/phrases-layout/phrases-general.php:111
|
806 |
+
msgid "New Replies"
|
807 |
+
msgstr ""
|
808 |
+
|
809 |
+
#: options/phrases-layout/phrases-general.php:117
|
810 |
+
msgid "Text on load more button if has new comment(s)"
|
811 |
+
msgstr ""
|
812 |
+
|
813 |
+
#: options/phrases-layout/phrases-general.php:121
|
814 |
+
#: options/wc-options-serialize.php:513
|
815 |
+
msgid "New"
|
816 |
+
msgstr ""
|
817 |
+
|
818 |
+
#: options/phrases-layout/phrases-notification.php:2
|
819 |
+
msgid "Notification Phrases"
|
820 |
+
msgstr ""
|
821 |
+
|
822 |
+
#: options/phrases-layout/phrases-notification.php:7
|
823 |
+
#: options/wc-options-serialize.php:470
|
824 |
+
msgid "You've successfully unsubscribed."
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: options/phrases-layout/phrases-notification.php:18
|
828 |
+
msgid "Error message for empty field"
|
829 |
+
msgstr ""
|
830 |
+
|
831 |
+
#: options/phrases-layout/phrases-notification.php:28
|
832 |
+
msgid "Error message for invalid email field"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: options/phrases-layout/phrases-notification.php:38
|
836 |
+
msgid "Error message for invalid website url field"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: options/phrases-layout/phrases-notification.php:48
|
840 |
+
#: options/wc-options-serialize.php:493
|
841 |
+
msgid "You must be"
|
842 |
+
msgstr ""
|
843 |
+
|
844 |
+
#: options/phrases-layout/phrases-notification.php:58
|
845 |
+
msgid "Logged in as"
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: options/phrases-layout/phrases-notification.php:68
|
849 |
+
#: options/wc-options-serialize.php:495
|
850 |
+
msgid "Log out"
|
851 |
+
msgstr ""
|
852 |
+
|
853 |
+
#: options/phrases-layout/phrases-notification.php:78
|
854 |
+
msgid "Logged In"
|
855 |
+
msgstr ""
|
856 |
+
|
857 |
+
#: options/phrases-layout/phrases-notification.php:88
|
858 |
+
msgid "To post a comment"
|
859 |
+
msgstr ""
|
860 |
+
|
861 |
+
#: options/phrases-layout/phrases-notification.php:98
|
862 |
+
#: options/wc-options-serialize.php:500
|
863 |
+
msgid "Vote Counted"
|
864 |
+
msgstr ""
|
865 |
+
|
866 |
+
#: options/phrases-layout/phrases-notification.php:108
|
867 |
+
msgid "You can vote only 1 time"
|
868 |
+
msgstr ""
|
869 |
+
|
870 |
+
#: options/phrases-layout/phrases-notification.php:118
|
871 |
+
#: options/wc-options-serialize.php:502
|
872 |
+
msgid "Voting Error"
|
873 |
+
msgstr ""
|
874 |
+
|
875 |
+
#: options/phrases-layout/phrases-notification.php:128
|
876 |
+
msgid "Login To Vote"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
+
#: options/phrases-layout/phrases-notification.php:138
|
880 |
+
msgid "You Cannot Vote On Your Comment"
|
881 |
+
msgstr ""
|
882 |
+
|
883 |
+
#: options/phrases-layout/phrases-notification.php:148
|
884 |
+
msgid "You are not allowed to vote for this comment (Voting from same IP)"
|
885 |
+
msgstr ""
|
886 |
+
|
887 |
+
#: options/phrases-layout/phrases-notification.php:158
|
888 |
+
#: options/wc-options-serialize.php:506
|
889 |
+
msgid "Invalid Captcha Code"
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
+
#: options/phrases-layout/phrases-notification.php:168
|
893 |
+
#: options/wc-options-serialize.php:507
|
894 |
+
msgid "Some of field value is invalid"
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: options/phrases-layout/phrases-notification.php:178
|
898 |
+
msgid "Comment waiting moderation"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
+
#: options/phrases-layout/phrases-notification.php:188
|
902 |
+
msgid "Message if comment content length is too long"
|
903 |
+
msgstr ""
|
904 |
+
|
905 |
+
#: options/phrases-layout/phrases-notification.php:198
|
906 |
+
msgid "Message if comment was not updated"
|
907 |
+
msgstr ""
|
908 |
+
|
909 |
+
#: options/phrases-layout/phrases-notification.php:202
|
910 |
+
#: options/wc-options-serialize.php:514
|
911 |
+
msgid "Sorry, the comment was not updated"
|
912 |
+
msgstr ""
|
913 |
+
|
914 |
+
#: options/phrases-layout/phrases-notification.php:208
|
915 |
+
msgid "Message if comment no longer possible to edit"
|
916 |
+
msgstr ""
|
917 |
+
|
918 |
+
#: options/phrases-layout/phrases-notification.php:212
|
919 |
+
#: options/wc-options-serialize.php:515
|
920 |
+
msgid "Sorry, this comment no longer possible to edit"
|
921 |
+
msgstr ""
|
922 |
+
|
923 |
+
#: options/phrases-layout/phrases-notification.php:219
|
924 |
+
msgid "Message if comment text not changed"
|
925 |
+
msgstr ""
|
926 |
+
|
927 |
+
#: options/phrases-layout/phrases-notification.php:223
|
928 |
+
msgid "TYou've not made any changes"
|
929 |
+
msgstr ""
|
930 |
+
|
931 |
+
#: options/wc-options-serialize.php:429
|
932 |
+
msgid "Be the First to Comment!"
|
933 |
+
msgstr ""
|
934 |
+
|
935 |
+
#: options/wc-options-serialize.php:431
|
936 |
+
msgid "Comments"
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
#: options/wc-options-serialize.php:432
|
940 |
+
msgid "on"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#: options/wc-options-serialize.php:433
|
944 |
+
msgid "Start the discussion"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: options/wc-options-serialize.php:434
|
948 |
+
msgid "Join the discussion"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: options/wc-options-serialize.php:435 options/wc-options.php:356
|
952 |
+
msgid "Email"
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#: options/wc-options-serialize.php:436
|
956 |
+
msgid "Name"
|
957 |
+
msgstr ""
|
958 |
+
|
959 |
+
#: options/wc-options-serialize.php:437
|
960 |
+
msgid "WebSite URL"
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
#: options/wc-options-serialize.php:438
|
964 |
+
msgid "Please insert the code above to comment"
|
965 |
+
msgstr ""
|
966 |
+
|
967 |
+
#: options/wc-options-serialize.php:439
|
968 |
+
msgid "Post Comment"
|
969 |
+
msgstr ""
|
970 |
+
|
971 |
+
#: options/wc-options-serialize.php:445
|
972 |
+
msgid "Load More Comments"
|
973 |
+
msgstr ""
|
974 |
+
|
975 |
+
#: options/wc-options-serialize.php:457
|
976 |
+
msgid "Guest"
|
977 |
+
msgstr ""
|
978 |
+
|
979 |
+
#: options/wc-options-serialize.php:458
|
980 |
+
msgid "Member"
|
981 |
+
msgstr ""
|
982 |
+
|
983 |
+
#: options/wc-options-serialize.php:459
|
984 |
+
msgid "Author"
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
+
#: options/wc-options-serialize.php:460
|
988 |
+
msgid "Admin"
|
989 |
+
msgstr ""
|
990 |
+
|
991 |
+
#: options/wc-options-serialize.php:462
|
992 |
+
msgid "New comment on the discussion section you've been interested in"
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: options/wc-options-serialize.php:464 wc.php:935
|
996 |
+
msgid "New reply on the discussion section you've been interested in"
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: options/wc-options-serialize.php:465
|
1000 |
+
msgid "You're subscribed for new replies on this comment"
|
1001 |
+
msgstr ""
|
1002 |
+
|
1003 |
+
#: options/wc-options-serialize.php:466
|
1004 |
+
msgid "You're subscribed for new replies on all your comments"
|
1005 |
+
msgstr ""
|
1006 |
+
|
1007 |
+
#: options/wc-options-serialize.php:467
|
1008 |
+
msgid "You're subscribed for new follow-up comments on this post"
|
1009 |
+
msgstr ""
|
1010 |
+
|
1011 |
+
#: options/wc-options-serialize.php:475
|
1012 |
+
msgid "please fill out this field to comment"
|
1013 |
+
msgstr ""
|
1014 |
+
|
1015 |
+
#: options/wc-options-serialize.php:476
|
1016 |
+
msgid "email address is invalid"
|
1017 |
+
msgstr ""
|
1018 |
+
|
1019 |
+
#: options/wc-options-serialize.php:477
|
1020 |
+
msgid "url is invalid"
|
1021 |
+
msgstr ""
|
1022 |
+
|
1023 |
+
#: options/wc-options-serialize.php:478
|
1024 |
+
msgid "year"
|
1025 |
+
msgstr ""
|
1026 |
+
|
1027 |
+
#: options/wc-options-serialize.php:479
|
1028 |
+
msgid "years"
|
1029 |
+
msgstr ""
|
1030 |
+
|
1031 |
+
#: options/wc-options-serialize.php:480
|
1032 |
+
msgid "month"
|
1033 |
+
msgstr ""
|
1034 |
+
|
1035 |
+
#: options/wc-options-serialize.php:481
|
1036 |
+
msgid "months"
|
1037 |
+
msgstr ""
|
1038 |
+
|
1039 |
+
#: options/wc-options-serialize.php:482
|
1040 |
+
msgid "day"
|
1041 |
+
msgstr ""
|
1042 |
+
|
1043 |
+
#: options/wc-options-serialize.php:483
|
1044 |
+
msgid "days"
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: options/wc-options-serialize.php:484
|
1048 |
+
msgid "hour"
|
1049 |
+
msgstr ""
|
1050 |
+
|
1051 |
+
#: options/wc-options-serialize.php:485
|
1052 |
+
msgid "hours"
|
1053 |
+
msgstr ""
|
1054 |
+
|
1055 |
+
#: options/wc-options-serialize.php:486
|
1056 |
+
msgid "minute"
|
1057 |
+
msgstr ""
|
1058 |
+
|
1059 |
+
#: options/wc-options-serialize.php:487
|
1060 |
+
msgid "minutes"
|
1061 |
+
msgstr ""
|
1062 |
+
|
1063 |
+
#: options/wc-options-serialize.php:488
|
1064 |
+
msgid "second"
|
1065 |
+
msgstr ""
|
1066 |
+
|
1067 |
+
#: options/wc-options-serialize.php:489
|
1068 |
+
msgid "seconds"
|
1069 |
+
msgstr ""
|
1070 |
+
|
1071 |
+
#: options/wc-options-serialize.php:490
|
1072 |
+
msgid "right now"
|
1073 |
+
msgstr ""
|
1074 |
+
|
1075 |
+
#: options/wc-options-serialize.php:491
|
1076 |
+
msgid "ago"
|
1077 |
+
msgstr ""
|
1078 |
+
|
1079 |
+
#: options/wc-options-serialize.php:494
|
1080 |
+
msgid "You are logged in as"
|
1081 |
+
msgstr ""
|
1082 |
+
|
1083 |
+
#: options/wc-options-serialize.php:496
|
1084 |
+
msgid "logged in"
|
1085 |
+
msgstr ""
|
1086 |
+
|
1087 |
+
#: options/wc-options-serialize.php:497
|
1088 |
+
msgid "to post a comment."
|
1089 |
+
msgstr ""
|
1090 |
+
|
1091 |
+
#: options/wc-options-serialize.php:501
|
1092 |
+
msgid "You've already voted for this comment"
|
1093 |
+
msgstr ""
|
1094 |
+
|
1095 |
+
#: options/wc-options-serialize.php:503
|
1096 |
+
msgid "You Must Be Logged In To Vote"
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: options/wc-options-serialize.php:504
|
1100 |
+
msgid "You cannot vote for your comment"
|
1101 |
+
msgstr ""
|
1102 |
+
|
1103 |
+
#: options/wc-options-serialize.php:505
|
1104 |
+
msgid "You are not allowed to vote for this comment"
|
1105 |
+
msgstr ""
|
1106 |
+
|
1107 |
+
#: options/wc-options-serialize.php:508
|
1108 |
+
msgid "new comment"
|
1109 |
+
msgstr ""
|
1110 |
+
|
1111 |
+
#: options/wc-options-serialize.php:509
|
1112 |
+
msgid "new comments"
|
1113 |
+
msgstr ""
|
1114 |
+
|
1115 |
+
#: options/wc-options-serialize.php:510
|
1116 |
+
msgid "Comment awaiting moderation"
|
1117 |
+
msgstr ""
|
1118 |
+
|
1119 |
+
#: options/wc-options-serialize.php:511
|
1120 |
+
msgid "new reply on your comment"
|
1121 |
+
msgstr ""
|
1122 |
+
|
1123 |
+
#: options/wc-options-serialize.php:512
|
1124 |
+
msgid "new replies on your comments"
|
1125 |
+
msgstr ""
|
1126 |
+
|
1127 |
+
#: options/wc-options-serialize.php:516
|
1128 |
+
msgid "You've not made any changes"
|
1129 |
+
msgstr ""
|
1130 |
+
|
1131 |
+
#: options/wc-options-serialize.php:519
|
1132 |
+
msgid "Comment text is too long (maximum %s characters allowed)"
|
1133 |
+
msgstr ""
|
1134 |
+
|
1135 |
+
#: options/wc-options.php:28 options/wc-options.php:233
|
1136 |
+
msgid "Hacker?"
|
1137 |
+
msgstr ""
|
1138 |
+
|
1139 |
+
#: options/wc-options.php:88
|
1140 |
+
msgid "wpDiscuz General Settings"
|
1141 |
+
msgstr ""
|
1142 |
+
|
1143 |
+
#: options/wc-options.php:180
|
1144 |
+
msgid "General settings"
|
1145 |
+
msgstr ""
|
1146 |
+
|
1147 |
+
#: options/wc-options.php:183
|
1148 |
+
msgid "Email Subscription"
|
1149 |
+
msgstr ""
|
1150 |
+
|
1151 |
+
#: options/wc-options.php:183
|
1152 |
+
msgid "and Postmatic"
|
1153 |
+
msgstr ""
|
1154 |
+
|
1155 |
+
#: options/wc-options.php:214 options/wc-options.php:384
|
1156 |
+
msgid "Save Changes"
|
1157 |
+
msgstr ""
|
1158 |
+
|
1159 |
+
#: options/wc-options.php:215
|
1160 |
+
msgid "Reset Options"
|
1161 |
+
msgstr ""
|
1162 |
+
|
1163 |
+
#: options/wc-options.php:342
|
1164 |
+
msgid "WpDiscuz Front-end Phrases"
|
1165 |
+
msgstr ""
|
1166 |
+
|
1167 |
+
#: options/wc-options.php:352
|
1168 |
+
msgid "General"
|
1169 |
+
msgstr ""
|
1170 |
+
|
1171 |
+
#: options/wc-options.php:353
|
1172 |
+
msgid "Form"
|
1173 |
+
msgstr ""
|
1174 |
+
|
1175 |
+
#: options/wc-options.php:355
|
1176 |
+
msgid "Date/Time"
|
1177 |
+
msgstr ""
|
1178 |
+
|
1179 |
+
#: options/wc-options.php:357
|
1180 |
+
msgid "Notification"
|
1181 |
+
msgstr ""
|
1182 |
+
|
1183 |
+
#: wc.php:1026
|
1184 |
+
msgid "Phrases"
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#. Plugin Name of the plugin/theme
|
1188 |
+
msgid "wpDiscuz - Wordpress Comments"
|
1189 |
+
msgstr ""
|
1190 |
+
|
1191 |
+
#. Plugin URI of the plugin/theme
|
1192 |
+
msgid "http://www.gvectors.com/wpdiscuz/"
|
1193 |
+
msgstr ""
|
1194 |
+
|
1195 |
+
#. Description of the plugin/theme
|
1196 |
+
msgid ""
|
1197 |
+
"Better comment system. Wordpress post comments and discussion plugin. Allows "
|
1198 |
+
"your visitors discuss, vote for comments and share."
|
1199 |
+
msgstr ""
|
1200 |
+
|
1201 |
+
#. Author of the plugin/theme
|
1202 |
+
msgid "gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)"
|
1203 |
+
msgstr ""
|
1204 |
+
|
1205 |
+
#. Author URI of the plugin/theme
|
1206 |
+
msgid "http://www.gvectors.com/"
|
1207 |
+
msgstr ""
|
options/options-layouts/settings-general.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('General Settings',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row" style="width:55%;">
|
7 |
-
<?php _e('Display comment form for post types:',
|
8 |
</th>
|
9 |
<td>
|
10 |
<?php
|
@@ -25,17 +25,17 @@
|
|
25 |
|
26 |
<tr valign="top">
|
27 |
<th scope="row">
|
28 |
-
<?php _e('User Must be registered to comment',
|
29 |
</th>
|
30 |
<td>
|
31 |
<fieldset>
|
32 |
<label title="Yes">
|
33 |
<input type="radio" value="1" <?php checked('1' == $this->wc_options_serialized->wc_user_must_be_registered); ?> name="wc_user_must_be_registered" id="wc_user_must_be_registered_yes" />
|
34 |
-
<span><?php _e('Yes',
|
35 |
</label>
|
36 |
<label title="No">
|
37 |
<input type="radio" value="0" <?php checked('0' == $this->wc_options_serialized->wc_user_must_be_registered); ?> name="wc_user_must_be_registered" id="wc_user_must_be_registered_no" />
|
38 |
-
<span><?php _e('No',
|
39 |
</label><br>
|
40 |
</fieldset>
|
41 |
</td>
|
@@ -43,7 +43,7 @@
|
|
43 |
|
44 |
<tr valign="top">
|
45 |
<th scope="row" style="width:55%">
|
46 |
-
<?php _e('Comment author must fill out name',
|
47 |
</th>
|
48 |
<td>
|
49 |
<label for="wc_is_name_field_required">
|
@@ -54,7 +54,7 @@
|
|
54 |
|
55 |
<tr valign="top">
|
56 |
<th scope="row" style="width:55%">
|
57 |
-
<?php _e('Comment author must fill out email',
|
58 |
</th>
|
59 |
<td>
|
60 |
<label for="wc_is_email_field_required">
|
@@ -65,17 +65,17 @@
|
|
65 |
|
66 |
<tr valign="top">
|
67 |
<th scope="row">
|
68 |
-
<?php _e('Show the latest comments on',
|
69 |
</th>
|
70 |
<td>
|
71 |
<fieldset class="comment_list_order">
|
72 |
-
<label title="<?php _e('the top of the list',
|
73 |
<input type="radio" value="desc" <?php checked('desc' == $this->wc_options_serialized->wc_comment_list_order); ?> name="wc_comment_list_order" id="wc_comment_list_order" />
|
74 |
-
<span><?php _e('top of the threads',
|
75 |
</label> <br/>
|
76 |
-
<label title="<?php _e('bottom of the threads',
|
77 |
<input type="radio" value="asc" <?php checked('asc' == $this->wc_options_serialized->wc_comment_list_order); ?> name="wc_comment_list_order" id="wc_comment_list_order" />
|
78 |
-
<span><?php _e('the bottom of the list',
|
79 |
</label><br>
|
80 |
</fieldset>
|
81 |
</td>
|
@@ -83,7 +83,7 @@
|
|
83 |
|
84 |
<tr valign="top">
|
85 |
<th scope="row">
|
86 |
-
<?php _e('Comment Threads Per Page',
|
87 |
</th>
|
88 |
<td>
|
89 |
<label for="wc_comment_count">
|
@@ -94,7 +94,7 @@
|
|
94 |
|
95 |
<tr valign="top">
|
96 |
<th scope="row">
|
97 |
-
<?php _e('Comment text max length',
|
98 |
</th>
|
99 |
<td>
|
100 |
<label for="wc_comment_text_max_length">
|
@@ -105,23 +105,23 @@
|
|
105 |
|
106 |
<tr valign="top">
|
107 |
<th scope="row">
|
108 |
-
<label for="wc_comments_max_depth"><?php _e('Comments max depth',
|
109 |
</th>
|
110 |
<td colspan="3">
|
111 |
<select id="wc_comments_max_depth" name="wc_comments_max_depth">
|
112 |
<?php $wc_comments_max_depth = isset($this->wc_options_serialized->wc_comments_max_depth) ? $this->wc_options_serialized->wc_comments_max_depth : 3; ?>
|
113 |
-
<option value="1" <?php selected($wc_comments_max_depth, '1'); ?>>1 <?php _e('Level',
|
114 |
-
<option value="2" <?php selected($wc_comments_max_depth, '2'); ?>>2 <?php _e('Levels',
|
115 |
-
<option value="3" <?php selected($wc_comments_max_depth, '3'); ?>>3 <?php _e('Levels',
|
116 |
-
<option value="4" <?php selected($wc_comments_max_depth, '4'); ?>>4 <?php _e('Levels',
|
117 |
-
<option value="5" <?php selected($wc_comments_max_depth, '5'); ?>>5 <?php _e('Levels',
|
118 |
</select>
|
119 |
</td>
|
120 |
</tr>
|
121 |
|
122 |
<tr valign="top">
|
123 |
<th scope="row">
|
124 |
-
<label for="wc_comment_text_size"><?php _e('Comment text size in pixels',
|
125 |
</th>
|
126 |
<td>
|
127 |
<select id="wc_comment_text_size" name="wc_comment_text_size">
|
@@ -138,24 +138,24 @@
|
|
138 |
|
139 |
<tr valign="top">
|
140 |
<th scope="row">
|
141 |
-
<label for="wc_comment_editable_time"><?php _e('Allow comment editing for',
|
142 |
</th>
|
143 |
<td>
|
144 |
<select id="wc_comment_editable_time" name="wc_comment_editable_time">
|
145 |
<?php $wc_comment_editable_time = isset($this->wc_options_serialized->wc_comment_editable_time) ? $this->wc_options_serialized->wc_comment_editable_time : 0; ?>
|
146 |
-
<option value="0" <?php selected($wc_comment_editable_time, '0'); ?>><?php _e('Not Allow',
|
147 |
-
<option value="900" <?php selected($wc_comment_editable_time, '900'); ?>>15 <?php _e('Minutes',
|
148 |
-
<option value="1800" <?php selected($wc_comment_editable_time, '1800'); ?>>30 <?php _e('Minutes',
|
149 |
-
<option value="3600" <?php selected($wc_comment_editable_time, '3600'); ?>>1 <?php _e('Hour',
|
150 |
-
<option value="10800" <?php selected($wc_comment_editable_time, '10800'); ?>>3 <?php _e('Hours',
|
151 |
-
<option value="86400" <?php selected($wc_comment_editable_time, '86400'); ?>>24 <?php _e('Hours',
|
152 |
</select>
|
153 |
</td>
|
154 |
</tr>
|
155 |
|
156 |
<tr valign="top">
|
157 |
<th scope="row">
|
158 |
-
<?php _e('Redirect first commenter to',
|
159 |
</th>
|
160 |
<td>
|
161 |
<?php
|
@@ -171,7 +171,7 @@
|
|
171 |
|
172 |
<tr valign="top">
|
173 |
<th scope="row">
|
174 |
-
<?php _e('Allow guests to vote on comments',
|
175 |
</th>
|
176 |
<td>
|
177 |
<label for="wc_is_guest_can_vote">
|
@@ -181,7 +181,7 @@
|
|
181 |
</tr>
|
182 |
<tr valign="top">
|
183 |
<th scope="row" >
|
184 |
-
<?php _e('Load WpDiscuz CSS and JS on home page',
|
185 |
</th>
|
186 |
<td colspan="3">
|
187 |
<label for="wc_load_js_css_on_home">
|
@@ -191,7 +191,7 @@
|
|
191 |
</tr>
|
192 |
<tr valign="top">
|
193 |
<th scope="row">
|
194 |
-
<?php _e('Load rest of all comments on clicking the [Load More Comments] button',
|
195 |
</th>
|
196 |
<td>
|
197 |
<label for="wc_load_all_comments">
|
@@ -202,22 +202,22 @@
|
|
202 |
|
203 |
<tr valign="top">
|
204 |
<th scope="row">
|
205 |
-
<?php _e('Use WordPress Date/Time format',
|
206 |
-
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('wpDiscuz shows Human Readable date format. If you check this option it\'ll show the date/time format set in WordPress General Settings.',
|
207 |
</th>
|
208 |
<td>
|
209 |
<label for="wc_simple_comment_date">
|
210 |
<input type="checkbox" <?php checked($this->wc_options_serialized->wc_simple_comment_date == 1) ?> value="1" name="wc_simple_comment_date" id="wc_simple_comment_date" />
|
211 |
<span style="font-size:13px; color:#999999; padding-left:0px; margin-left:0px; line-height:15px">
|
212 |
<?php echo date(get_option('date_format')); ?> / <?php echo date(get_option('time_format')); ?><br />
|
213 |
-
<?php _e('Current Wordpress date/time format',
|
214 |
</label>
|
215 |
</td>
|
216 |
</tr>
|
217 |
<tr valign="top">
|
218 |
<th scope="row" >
|
219 |
-
<?php _e('Use Plugin .PO/.MO files',
|
220 |
-
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('wpDiscuz phrase system allows you to translate all front-end phrases. However if you have a multi-language website it\'ll not allow you to add more than one language translation. The only way to get it is the plugin translation files (.PO / .MO). If wpDiscuz has the languages you need you should check this option to disable phrase system and it\'ll automatically translate all phrases based on language files according to current language.',
|
221 |
</th>
|
222 |
<td colspan="3">
|
223 |
<label for="wc_is_use_po_mo">
|
@@ -228,14 +228,14 @@
|
|
228 |
<tr valign="top">
|
229 |
<th scope="row" >
|
230 |
<label for="wc_show_plugin_powerid_by">
|
231 |
-
<?php _e('Help wpDiscuz to grow allowing people to recognize which comment plugin you use',
|
232 |
</label>
|
233 |
-
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('Please check this option on to help wpDiscuz get more popularity as your thank to the hard work we do for you totally free. This option adds a very small (16x16px) icon under the comment section which will allow your site visitors recognize the name of comment solution you use.',
|
234 |
</th>
|
235 |
<td colspan="3">
|
236 |
<label for="wc_show_plugin_powerid_by">
|
237 |
<input type="checkbox" <?php checked($this->wc_options_serialized->wc_show_plugin_powerid_by == 1) ?> value="1" name="wc_show_plugin_powerid_by" id="wc_show_plugin_powerid_by" />
|
238 |
-
<span id="wpdiscuz_thank_you" style="color:#006600; font-size:13px;"><?php _e('Thank you!',
|
239 |
</label>
|
240 |
</td>
|
241 |
</tr>
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('General Settings', 'wpdiscuz'); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row" style="width:55%;">
|
7 |
+
<?php _e('Display comment form for post types:', 'wpdiscuz'); ?>
|
8 |
</th>
|
9 |
<td>
|
10 |
<?php
|
25 |
|
26 |
<tr valign="top">
|
27 |
<th scope="row">
|
28 |
+
<?php _e('User Must be registered to comment', 'wpdiscuz'); ?>
|
29 |
</th>
|
30 |
<td>
|
31 |
<fieldset>
|
32 |
<label title="Yes">
|
33 |
<input type="radio" value="1" <?php checked('1' == $this->wc_options_serialized->wc_user_must_be_registered); ?> name="wc_user_must_be_registered" id="wc_user_must_be_registered_yes" />
|
34 |
+
<span><?php _e('Yes', 'wpdiscuz'); ?></span>
|
35 |
</label>
|
36 |
<label title="No">
|
37 |
<input type="radio" value="0" <?php checked('0' == $this->wc_options_serialized->wc_user_must_be_registered); ?> name="wc_user_must_be_registered" id="wc_user_must_be_registered_no" />
|
38 |
+
<span><?php _e('No', 'wpdiscuz'); ?></span>
|
39 |
</label><br>
|
40 |
</fieldset>
|
41 |
</td>
|
43 |
|
44 |
<tr valign="top">
|
45 |
<th scope="row" style="width:55%">
|
46 |
+
<?php _e('Comment author must fill out name', 'wpdiscuz'); ?>
|
47 |
</th>
|
48 |
<td>
|
49 |
<label for="wc_is_name_field_required">
|
54 |
|
55 |
<tr valign="top">
|
56 |
<th scope="row" style="width:55%">
|
57 |
+
<?php _e('Comment author must fill out email', 'wpdiscuz'); ?>
|
58 |
</th>
|
59 |
<td>
|
60 |
<label for="wc_is_email_field_required">
|
65 |
|
66 |
<tr valign="top">
|
67 |
<th scope="row">
|
68 |
+
<?php _e('Show the latest comments on', 'wpdiscuz'); ?>
|
69 |
</th>
|
70 |
<td>
|
71 |
<fieldset class="comment_list_order">
|
72 |
+
<label title="<?php _e('the top of the list', 'wpdiscuz') ?>">
|
73 |
<input type="radio" value="desc" <?php checked('desc' == $this->wc_options_serialized->wc_comment_list_order); ?> name="wc_comment_list_order" id="wc_comment_list_order" />
|
74 |
+
<span><?php _e('top of the threads', 'wpdiscuz') ?></span>
|
75 |
</label> <br/>
|
76 |
+
<label title="<?php _e('bottom of the threads', 'wpdiscuz') ?>">
|
77 |
<input type="radio" value="asc" <?php checked('asc' == $this->wc_options_serialized->wc_comment_list_order); ?> name="wc_comment_list_order" id="wc_comment_list_order" />
|
78 |
+
<span><?php _e('the bottom of the list', 'wpdiscuz') ?></span>
|
79 |
</label><br>
|
80 |
</fieldset>
|
81 |
</td>
|
83 |
|
84 |
<tr valign="top">
|
85 |
<th scope="row">
|
86 |
+
<?php _e('Comment Threads Per Page', 'wpdiscuz'); ?>
|
87 |
</th>
|
88 |
<td>
|
89 |
<label for="wc_comment_count">
|
94 |
|
95 |
<tr valign="top">
|
96 |
<th scope="row">
|
97 |
+
<?php _e('Comment text max length', 'wpdiscuz'); ?>
|
98 |
</th>
|
99 |
<td>
|
100 |
<label for="wc_comment_text_max_length">
|
105 |
|
106 |
<tr valign="top">
|
107 |
<th scope="row">
|
108 |
+
<label for="wc_comments_max_depth"><?php _e('Comments max depth', 'wpdiscuz'); ?></label>
|
109 |
</th>
|
110 |
<td colspan="3">
|
111 |
<select id="wc_comments_max_depth" name="wc_comments_max_depth">
|
112 |
<?php $wc_comments_max_depth = isset($this->wc_options_serialized->wc_comments_max_depth) ? $this->wc_options_serialized->wc_comments_max_depth : 3; ?>
|
113 |
+
<option value="1" <?php selected($wc_comments_max_depth, '1'); ?>>1 <?php _e('Level', 'wpdiscuz'); ?></option>
|
114 |
+
<option value="2" <?php selected($wc_comments_max_depth, '2'); ?>>2 <?php _e('Levels', 'wpdiscuz'); ?></option>
|
115 |
+
<option value="3" <?php selected($wc_comments_max_depth, '3'); ?>>3 <?php _e('Levels', 'wpdiscuz'); ?></option>
|
116 |
+
<option value="4" <?php selected($wc_comments_max_depth, '4'); ?>>4 <?php _e('Levels', 'wpdiscuz'); ?></option>
|
117 |
+
<option value="5" <?php selected($wc_comments_max_depth, '5'); ?>>5 <?php _e('Levels', 'wpdiscuz'); ?></option>
|
118 |
</select>
|
119 |
</td>
|
120 |
</tr>
|
121 |
|
122 |
<tr valign="top">
|
123 |
<th scope="row">
|
124 |
+
<label for="wc_comment_text_size"><?php _e('Comment text size in pixels', 'wpdiscuz'); ?></label>
|
125 |
</th>
|
126 |
<td>
|
127 |
<select id="wc_comment_text_size" name="wc_comment_text_size">
|
138 |
|
139 |
<tr valign="top">
|
140 |
<th scope="row">
|
141 |
+
<label for="wc_comment_editable_time"><?php _e('Allow comment editing for', 'wpdiscuz'); ?></label>
|
142 |
</th>
|
143 |
<td>
|
144 |
<select id="wc_comment_editable_time" name="wc_comment_editable_time">
|
145 |
<?php $wc_comment_editable_time = isset($this->wc_options_serialized->wc_comment_editable_time) ? $this->wc_options_serialized->wc_comment_editable_time : 0; ?>
|
146 |
+
<option value="0" <?php selected($wc_comment_editable_time, '0'); ?>><?php _e('Not Allow', 'wpdiscuz'); ?></option>
|
147 |
+
<option value="900" <?php selected($wc_comment_editable_time, '900'); ?>>15 <?php _e('Minutes', 'wpdiscuz'); ?></option>
|
148 |
+
<option value="1800" <?php selected($wc_comment_editable_time, '1800'); ?>>30 <?php _e('Minutes', 'wpdiscuz'); ?></option>
|
149 |
+
<option value="3600" <?php selected($wc_comment_editable_time, '3600'); ?>>1 <?php _e('Hour', 'wpdiscuz'); ?></option>
|
150 |
+
<option value="10800" <?php selected($wc_comment_editable_time, '10800'); ?>>3 <?php _e('Hours', 'wpdiscuz'); ?></option>
|
151 |
+
<option value="86400" <?php selected($wc_comment_editable_time, '86400'); ?>>24 <?php _e('Hours', 'wpdiscuz'); ?></option>
|
152 |
</select>
|
153 |
</td>
|
154 |
</tr>
|
155 |
|
156 |
<tr valign="top">
|
157 |
<th scope="row">
|
158 |
+
<?php _e('Redirect first commenter to', 'wpdiscuz'); ?>
|
159 |
</th>
|
160 |
<td>
|
161 |
<?php
|
171 |
|
172 |
<tr valign="top">
|
173 |
<th scope="row">
|
174 |
+
<?php _e('Allow guests to vote on comments', 'wpdiscuz'); ?>
|
175 |
</th>
|
176 |
<td>
|
177 |
<label for="wc_is_guest_can_vote">
|
181 |
</tr>
|
182 |
<tr valign="top">
|
183 |
<th scope="row" >
|
184 |
+
<?php _e('Load WpDiscuz CSS and JS on home page', 'wpdiscuz'); ?>
|
185 |
</th>
|
186 |
<td colspan="3">
|
187 |
<label for="wc_load_js_css_on_home">
|
191 |
</tr>
|
192 |
<tr valign="top">
|
193 |
<th scope="row">
|
194 |
+
<?php _e('Load rest of all comments on clicking the [Load More Comments] button', 'wpdiscuz'); ?>
|
195 |
</th>
|
196 |
<td>
|
197 |
<label for="wc_load_all_comments">
|
202 |
|
203 |
<tr valign="top">
|
204 |
<th scope="row">
|
205 |
+
<?php _e('Use WordPress Date/Time format', 'wpdiscuz'); ?>
|
206 |
+
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('wpDiscuz shows Human Readable date format. If you check this option it\'ll show the date/time format set in WordPress General Settings.', 'wpdiscuz'); ?></p>
|
207 |
</th>
|
208 |
<td>
|
209 |
<label for="wc_simple_comment_date">
|
210 |
<input type="checkbox" <?php checked($this->wc_options_serialized->wc_simple_comment_date == 1) ?> value="1" name="wc_simple_comment_date" id="wc_simple_comment_date" />
|
211 |
<span style="font-size:13px; color:#999999; padding-left:0px; margin-left:0px; line-height:15px">
|
212 |
<?php echo date(get_option('date_format')); ?> / <?php echo date(get_option('time_format')); ?><br />
|
213 |
+
<?php _e('Current Wordpress date/time format', 'wpdiscuz'); ?></span>
|
214 |
</label>
|
215 |
</td>
|
216 |
</tr>
|
217 |
<tr valign="top">
|
218 |
<th scope="row" >
|
219 |
+
<?php _e('Use Plugin .PO/.MO files', 'wpdiscuz'); ?>
|
220 |
+
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('wpDiscuz phrase system allows you to translate all front-end phrases. However if you have a multi-language website it\'ll not allow you to add more than one language translation. The only way to get it is the plugin translation files (.PO / .MO). If wpDiscuz has the languages you need you should check this option to disable phrase system and it\'ll automatically translate all phrases based on language files according to current language.', 'wpdiscuz'); ?></p>
|
221 |
</th>
|
222 |
<td colspan="3">
|
223 |
<label for="wc_is_use_po_mo">
|
228 |
<tr valign="top">
|
229 |
<th scope="row" >
|
230 |
<label for="wc_show_plugin_powerid_by">
|
231 |
+
<?php _e('Help wpDiscuz to grow allowing people to recognize which comment plugin you use', 'wpdiscuz'); ?>
|
232 |
</label>
|
233 |
+
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('Please check this option on to help wpDiscuz get more popularity as your thank to the hard work we do for you totally free. This option adds a very small (16x16px) icon under the comment section which will allow your site visitors recognize the name of comment solution you use.', 'wpdiscuz'); ?></p>
|
234 |
</th>
|
235 |
<td colspan="3">
|
236 |
<label for="wc_show_plugin_powerid_by">
|
237 |
<input type="checkbox" <?php checked($this->wc_options_serialized->wc_show_plugin_powerid_by == 1) ?> value="1" name="wc_show_plugin_powerid_by" id="wc_show_plugin_powerid_by" />
|
238 |
+
<span id="wpdiscuz_thank_you" style="color:#006600; font-size:13px;"><?php _e('Thank you!', 'wpdiscuz'); ?></span>
|
239 |
</label>
|
240 |
</td>
|
241 |
</tr>
|
options/options-layouts/settings-live-update.php
CHANGED
@@ -1,27 +1,27 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Live Update',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
|
6 |
<tr valign="top">
|
7 |
<th scope="row" style="width:55%;">
|
8 |
-
<?php _e('Live update options',
|
9 |
-
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('If you use Shared Web Hosting you should make sure the "Live Update" function doesn\'t overload your server resources. This function is good for VPS and Dedicated Hosting Plans.',
|
10 |
</th>
|
11 |
<td>
|
12 |
<fieldset class="wc_comment_list_update_type">
|
13 |
<?php $wc_comment_list_update_type = isset($this->wc_options_serialized->wc_comment_list_update_type) ? $this->wc_options_serialized->wc_comment_list_update_type : 1; ?>
|
14 |
-
<label title="<?php _e('Never update',
|
15 |
<input type="radio" value="0" <?php checked('0' == $wc_comment_list_update_type); ?> name="wc_comment_list_update_type" id="wc_comment_list_update_never" />
|
16 |
-
<span><?php _e('Turn off "Live Update" function',
|
17 |
</label> <br/>
|
18 |
-
<label title="<?php _e('Show new comment/reply buttons to update manualy',
|
19 |
<input type="radio" value="2" <?php checked('2' == $wc_comment_list_update_type); ?> name="wc_comment_list_update_type" id="wc_comment_list_update_new" />
|
20 |
-
<span><?php _e('Always check for new comments and show update buttons',
|
21 |
</label><br>
|
22 |
-
<label title="<?php _e('Always update',
|
23 |
<input type="radio" value="1" <?php checked('1' == $wc_comment_list_update_type); ?> name="wc_comment_list_update_type" id="wc_comment_list_update_always" />
|
24 |
-
<span><?php _e('Always check for new comments and update automatically',
|
25 |
</label> <br/>
|
26 |
</fieldset>
|
27 |
</td>
|
@@ -29,18 +29,18 @@
|
|
29 |
|
30 |
<tr valign="top">
|
31 |
<th scope="row">
|
32 |
-
<label for="wc_comment_list_update_timer"><?php _e('Update comment list every',
|
33 |
</th>
|
34 |
<td>
|
35 |
<select id="wc_comment_list_update_timer" name="wc_comment_list_update_timer">
|
36 |
<?php $wc_comment_list_update_timer = isset($this->wc_options_serialized->wc_comment_list_update_timer) ? $this->wc_options_serialized->wc_comment_list_update_timer : 30; ?>
|
37 |
-
<option value="10" <?php selected($wc_comment_list_update_timer, '10'); ?>>10 <?php _e('Seconds',
|
38 |
-
<option value="20" <?php selected($wc_comment_list_update_timer, '20'); ?>>20 <?php _e('Seconds',
|
39 |
-
<option value="30" <?php selected($wc_comment_list_update_timer, '30'); ?>>30 <?php _e('Seconds',
|
40 |
-
<option value="60" <?php selected($wc_comment_list_update_timer, '60'); ?>>1 <?php _e('Minute',
|
41 |
-
<option value="180" <?php selected($wc_comment_list_update_timer, '180'); ?>>3 <?php _e('Minutes',
|
42 |
-
<option value="300" <?php selected($wc_comment_list_update_timer, '300'); ?>>5 <?php _e('Minutes',
|
43 |
-
<option value="600" <?php selected($wc_comment_list_update_timer, '600'); ?>>10 <?php _e('Minutes',
|
44 |
</select>
|
45 |
</td>
|
46 |
</tr>
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Live Update', 'wpdiscuz'); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
|
6 |
<tr valign="top">
|
7 |
<th scope="row" style="width:55%;">
|
8 |
+
<?php _e('Live update options', 'wpdiscuz'); ?>
|
9 |
+
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('If you use Shared Web Hosting you should make sure the "Live Update" function doesn\'t overload your server resources. This function is good for VPS and Dedicated Hosting Plans.', 'wpdiscuz'); ?></p>
|
10 |
</th>
|
11 |
<td>
|
12 |
<fieldset class="wc_comment_list_update_type">
|
13 |
<?php $wc_comment_list_update_type = isset($this->wc_options_serialized->wc_comment_list_update_type) ? $this->wc_options_serialized->wc_comment_list_update_type : 1; ?>
|
14 |
+
<label title="<?php _e('Never update', 'wpdiscuz') ?>">
|
15 |
<input type="radio" value="0" <?php checked('0' == $wc_comment_list_update_type); ?> name="wc_comment_list_update_type" id="wc_comment_list_update_never" />
|
16 |
+
<span><?php _e('Turn off "Live Update" function', 'wpdiscuz') ?></span>
|
17 |
</label> <br/>
|
18 |
+
<label title="<?php _e('Show new comment/reply buttons to update manualy', 'wpdiscuz') ?>">
|
19 |
<input type="radio" value="2" <?php checked('2' == $wc_comment_list_update_type); ?> name="wc_comment_list_update_type" id="wc_comment_list_update_new" />
|
20 |
+
<span><?php _e('Always check for new comments and show update buttons', 'wpdiscuz') ?></span>
|
21 |
</label><br>
|
22 |
+
<label title="<?php _e('Always update', 'wpdiscuz') ?>">
|
23 |
<input type="radio" value="1" <?php checked('1' == $wc_comment_list_update_type); ?> name="wc_comment_list_update_type" id="wc_comment_list_update_always" />
|
24 |
+
<span><?php _e('Always check for new comments and update automatically', 'wpdiscuz') ?></span>
|
25 |
</label> <br/>
|
26 |
</fieldset>
|
27 |
</td>
|
29 |
|
30 |
<tr valign="top">
|
31 |
<th scope="row">
|
32 |
+
<label for="wc_comment_list_update_timer"><?php _e('Update comment list every', 'wpdiscuz'); ?></label>
|
33 |
</th>
|
34 |
<td>
|
35 |
<select id="wc_comment_list_update_timer" name="wc_comment_list_update_timer">
|
36 |
<?php $wc_comment_list_update_timer = isset($this->wc_options_serialized->wc_comment_list_update_timer) ? $this->wc_options_serialized->wc_comment_list_update_timer : 30; ?>
|
37 |
+
<option value="10" <?php selected($wc_comment_list_update_timer, '10'); ?>>10 <?php _e('Seconds', 'wpdiscuz'); ?></option>
|
38 |
+
<option value="20" <?php selected($wc_comment_list_update_timer, '20'); ?>>20 <?php _e('Seconds', 'wpdiscuz'); ?></option>
|
39 |
+
<option value="30" <?php selected($wc_comment_list_update_timer, '30'); ?>>30 <?php _e('Seconds', 'wpdiscuz'); ?></option>
|
40 |
+
<option value="60" <?php selected($wc_comment_list_update_timer, '60'); ?>>1 <?php _e('Minute', 'wpdiscuz'); ?></option>
|
41 |
+
<option value="180" <?php selected($wc_comment_list_update_timer, '180'); ?>>3 <?php _e('Minutes', 'wpdiscuz'); ?></option>
|
42 |
+
<option value="300" <?php selected($wc_comment_list_update_timer, '300'); ?>>5 <?php _e('Minutes', 'wpdiscuz'); ?></option>
|
43 |
+
<option value="600" <?php selected($wc_comment_list_update_timer, '600'); ?>>10 <?php _e('Minutes', 'wpdiscuz'); ?></option>
|
44 |
</select>
|
45 |
</td>
|
46 |
</tr>
|
options/options-layouts/settings-show-hide.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Show/Hide Components',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row" style="width:55%">
|
7 |
-
<?php _e('Show logged-in user name and logout link on top of main form',
|
8 |
</th>
|
9 |
<td>
|
10 |
<label for="wc_show_hide_loggedin_username">
|
@@ -14,7 +14,7 @@
|
|
14 |
</tr>
|
15 |
<tr valign="top">
|
16 |
<th scope="row">
|
17 |
-
<?php _e('Hide Reply button for Guests',
|
18 |
</th>
|
19 |
<td>
|
20 |
<label for="wc_reply_button_guests_show_hide">
|
@@ -24,7 +24,7 @@
|
|
24 |
</tr>
|
25 |
<tr valign="top">
|
26 |
<th scope="row">
|
27 |
-
<?php _e('Hide Reply button for Members',
|
28 |
</th>
|
29 |
<td>
|
30 |
<label for="wc_reply_button_members_show_hide">
|
@@ -34,7 +34,7 @@
|
|
34 |
</tr>
|
35 |
<tr valign="top">
|
36 |
<th scope="row">
|
37 |
-
<?php _e('Hide Author Titles',
|
38 |
</th>
|
39 |
<td>
|
40 |
<label for="wc_author_titles_show_hide">
|
@@ -44,7 +44,7 @@
|
|
44 |
</tr>
|
45 |
<tr valign="top">
|
46 |
<th scope="row">
|
47 |
-
<?php _e('Hide Voting buttons',
|
48 |
</th>
|
49 |
<td>
|
50 |
<label for="wc_voting_buttons_show_hide">
|
@@ -54,7 +54,7 @@
|
|
54 |
</tr>
|
55 |
<tr valign="top">
|
56 |
<th scope="row">
|
57 |
-
<?php _e('Hide Share Buttons',
|
58 |
</th>
|
59 |
<td>
|
60 |
<label for="wc_share_buttons_show_hide">
|
@@ -64,7 +64,7 @@
|
|
64 |
</tr>
|
65 |
<tr valign="top">
|
66 |
<th scope="row">
|
67 |
-
<?php _e('Hide the CAPTCHA field',
|
68 |
</th>
|
69 |
<td>
|
70 |
<label for="wc_captcha_show_hide">
|
@@ -74,7 +74,7 @@
|
|
74 |
</tr>
|
75 |
<tr valign="top">
|
76 |
<th scope="row">
|
77 |
-
<?php _e('Hide the Website URL field',
|
78 |
</th>
|
79 |
<td>
|
80 |
<label for="wc_weburl_show_hide">
|
@@ -84,7 +84,7 @@
|
|
84 |
</tr>
|
85 |
<tr valign="top">
|
86 |
<th scope="row">
|
87 |
-
<?php _e('Hide header text',
|
88 |
</th>
|
89 |
<td>
|
90 |
<label for="wc_header_text_show_hide">
|
@@ -94,7 +94,7 @@
|
|
94 |
</tr>
|
95 |
<tr valign="top">
|
96 |
<th scope="row">
|
97 |
-
<?php _e('Hide user avatar',
|
98 |
</th>
|
99 |
<td>
|
100 |
<label for="wc_avatar_show_hide">
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Show/Hide Components', 'wpdiscuz'); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row" style="width:55%">
|
7 |
+
<?php _e('Show logged-in user name and logout link on top of main form', 'wpdiscuz'); ?>
|
8 |
</th>
|
9 |
<td>
|
10 |
<label for="wc_show_hide_loggedin_username">
|
14 |
</tr>
|
15 |
<tr valign="top">
|
16 |
<th scope="row">
|
17 |
+
<?php _e('Hide Reply button for Guests', 'wpdiscuz'); ?>
|
18 |
</th>
|
19 |
<td>
|
20 |
<label for="wc_reply_button_guests_show_hide">
|
24 |
</tr>
|
25 |
<tr valign="top">
|
26 |
<th scope="row">
|
27 |
+
<?php _e('Hide Reply button for Members', 'wpdiscuz'); ?>
|
28 |
</th>
|
29 |
<td>
|
30 |
<label for="wc_reply_button_members_show_hide">
|
34 |
</tr>
|
35 |
<tr valign="top">
|
36 |
<th scope="row">
|
37 |
+
<?php _e('Hide Author Titles', 'wpdiscuz'); ?>
|
38 |
</th>
|
39 |
<td>
|
40 |
<label for="wc_author_titles_show_hide">
|
44 |
</tr>
|
45 |
<tr valign="top">
|
46 |
<th scope="row">
|
47 |
+
<?php _e('Hide Voting buttons', 'wpdiscuz'); ?>
|
48 |
</th>
|
49 |
<td>
|
50 |
<label for="wc_voting_buttons_show_hide">
|
54 |
</tr>
|
55 |
<tr valign="top">
|
56 |
<th scope="row">
|
57 |
+
<?php _e('Hide Share Buttons', 'wpdiscuz'); ?>
|
58 |
</th>
|
59 |
<td>
|
60 |
<label for="wc_share_buttons_show_hide">
|
64 |
</tr>
|
65 |
<tr valign="top">
|
66 |
<th scope="row">
|
67 |
+
<?php _e('Hide the CAPTCHA field', 'wpdiscuz'); ?>
|
68 |
</th>
|
69 |
<td>
|
70 |
<label for="wc_captcha_show_hide">
|
74 |
</tr>
|
75 |
<tr valign="top">
|
76 |
<th scope="row">
|
77 |
+
<?php _e('Hide the Website URL field', 'wpdiscuz'); ?>
|
78 |
</th>
|
79 |
<td>
|
80 |
<label for="wc_weburl_show_hide">
|
84 |
</tr>
|
85 |
<tr valign="top">
|
86 |
<th scope="row">
|
87 |
+
<?php _e('Hide header text', 'wpdiscuz'); ?>
|
88 |
</th>
|
89 |
<td>
|
90 |
<label for="wc_header_text_show_hide">
|
94 |
</tr>
|
95 |
<tr valign="top">
|
96 |
<th scope="row">
|
97 |
+
<?php _e('Hide user avatar', 'wpdiscuz'); ?>
|
98 |
</th>
|
99 |
<td>
|
100 |
<label for="wc_avatar_show_hide">
|
options/options-layouts/settings-social.php
CHANGED
@@ -18,42 +18,42 @@ if (function_exists('wsl_render_auth_widget_in_comment_form')) {
|
|
18 |
$plugins_directory = ABSPATH . 'wp-content/plugins/';
|
19 |
// wordpress social login
|
20 |
if (file_exists($plugins_directory . 'wordpress-social-login/')) {
|
21 |
-
$wc_wordpress_social_login_text = __('Activate',
|
22 |
$wc_wordpress_social_login_link = 'admin.php?page=wpdiscuz_options_page&wc_social_action=wordpress-social-login';
|
23 |
$wc_wordpress_social_login_thickbox = '';
|
24 |
} else {
|
25 |
-
$wc_wordpress_social_login_text = __('View details/Install',
|
26 |
$wc_wordpress_social_login_link = 'plugin-install.php?tab=plugin-information&plugin=wordpress-social-login&TB_iframe=true&width=772&height=342';
|
27 |
$wc_wordpress_social_login_thickbox = 'thickbox';
|
28 |
}
|
29 |
// super socializer
|
30 |
if (file_exists($plugins_directory . 'super-socializer/')) {
|
31 |
-
$wc_super_socializer_text = __('Activate',
|
32 |
$wc_super_socializer_link = 'admin.php?page=wpdiscuz_options_page&wc_social_action=super-socializer';
|
33 |
$wc_super_socializer_thickbox = '';
|
34 |
} else {
|
35 |
-
$wc_super_socializer_text = __('View details/Install',
|
36 |
$wc_super_socializer_link = 'plugin-install.php?tab=plugin-information&plugin=super-socializer&TB_iframe=true&width=772&height=342';
|
37 |
$wc_super_socializer_thickbox = 'thickbox';
|
38 |
}
|
39 |
// social connect
|
40 |
if (file_exists($plugins_directory . 'social-connect/')) {
|
41 |
-
$wc_social_connect_text = __('Activate',
|
42 |
$wc_social_connect_link = 'admin.php?page=wpdiscuz_options_page&wc_social_action=social-connect';
|
43 |
$wc_social_connect_thickbox = '';
|
44 |
} else {
|
45 |
-
$wc_social_connect_text = __('View details/Install',
|
46 |
$wc_social_connect_link = 'plugin-install.php?tab=plugin-information&plugin=social-connect&TB_iframe=true&width=772&height=342';
|
47 |
$wc_social_connect_thickbox = 'thickbox';
|
48 |
}
|
49 |
|
50 |
// social login
|
51 |
if (file_exists($plugins_directory . 'oa-social-login/')) {
|
52 |
-
$wc_oa_social_login_text = __('Activate',
|
53 |
$wc_oa_social_login_link = 'admin.php?page=wpdiscuz_options_page&wc_social_action=oa-social-login';
|
54 |
$wc_oa_social_login_thickbox = '';
|
55 |
} else {
|
56 |
-
$wc_oa_social_login_text = __('View details/Install',
|
57 |
$wc_oa_social_login_link = 'plugin-install.php?tab=plugin-information&plugin=oa-social-login&TB_iframe=true&width=772&height=342';
|
58 |
$wc_oa_social_login_thickbox = 'thickbox';
|
59 |
}
|
@@ -86,8 +86,8 @@ if (isset($_GET['wc_social_action'])) {
|
|
86 |
}
|
87 |
?>
|
88 |
<div>
|
89 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Social Login',
|
90 |
-
<p style="padding-bottom:10px; padding-left:10px;"><?php _e('You can use one of these most popular Social Login Plugins to allow your visitors login and comment with Facebook, Twitter, Google+, Wordpress, VK, OK and lots of other social network service accounts. All social login buttons will be fully integrated with wpDiscuz comment forms.',
|
91 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
92 |
<tbody>
|
93 |
<?php echo $wc_social_plugin; ?>
|
18 |
$plugins_directory = ABSPATH . 'wp-content/plugins/';
|
19 |
// wordpress social login
|
20 |
if (file_exists($plugins_directory . 'wordpress-social-login/')) {
|
21 |
+
$wc_wordpress_social_login_text = __('Activate', 'wpdiscuz');
|
22 |
$wc_wordpress_social_login_link = 'admin.php?page=wpdiscuz_options_page&wc_social_action=wordpress-social-login';
|
23 |
$wc_wordpress_social_login_thickbox = '';
|
24 |
} else {
|
25 |
+
$wc_wordpress_social_login_text = __('View details/Install', 'wpdiscuz');
|
26 |
$wc_wordpress_social_login_link = 'plugin-install.php?tab=plugin-information&plugin=wordpress-social-login&TB_iframe=true&width=772&height=342';
|
27 |
$wc_wordpress_social_login_thickbox = 'thickbox';
|
28 |
}
|
29 |
// super socializer
|
30 |
if (file_exists($plugins_directory . 'super-socializer/')) {
|
31 |
+
$wc_super_socializer_text = __('Activate', 'wpdiscuz');
|
32 |
$wc_super_socializer_link = 'admin.php?page=wpdiscuz_options_page&wc_social_action=super-socializer';
|
33 |
$wc_super_socializer_thickbox = '';
|
34 |
} else {
|
35 |
+
$wc_super_socializer_text = __('View details/Install', 'wpdiscuz');
|
36 |
$wc_super_socializer_link = 'plugin-install.php?tab=plugin-information&plugin=super-socializer&TB_iframe=true&width=772&height=342';
|
37 |
$wc_super_socializer_thickbox = 'thickbox';
|
38 |
}
|
39 |
// social connect
|
40 |
if (file_exists($plugins_directory . 'social-connect/')) {
|
41 |
+
$wc_social_connect_text = __('Activate', 'wpdiscuz');
|
42 |
$wc_social_connect_link = 'admin.php?page=wpdiscuz_options_page&wc_social_action=social-connect';
|
43 |
$wc_social_connect_thickbox = '';
|
44 |
} else {
|
45 |
+
$wc_social_connect_text = __('View details/Install', 'wpdiscuz');
|
46 |
$wc_social_connect_link = 'plugin-install.php?tab=plugin-information&plugin=social-connect&TB_iframe=true&width=772&height=342';
|
47 |
$wc_social_connect_thickbox = 'thickbox';
|
48 |
}
|
49 |
|
50 |
// social login
|
51 |
if (file_exists($plugins_directory . 'oa-social-login/')) {
|
52 |
+
$wc_oa_social_login_text = __('Activate', 'wpdiscuz');
|
53 |
$wc_oa_social_login_link = 'admin.php?page=wpdiscuz_options_page&wc_social_action=oa-social-login';
|
54 |
$wc_oa_social_login_thickbox = '';
|
55 |
} else {
|
56 |
+
$wc_oa_social_login_text = __('View details/Install', 'wpdiscuz');
|
57 |
$wc_oa_social_login_link = 'plugin-install.php?tab=plugin-information&plugin=oa-social-login&TB_iframe=true&width=772&height=342';
|
58 |
$wc_oa_social_login_thickbox = 'thickbox';
|
59 |
}
|
86 |
}
|
87 |
?>
|
88 |
<div>
|
89 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Social Login', 'wpdiscuz'); ?> </h2>
|
90 |
+
<p style="padding-bottom:10px; padding-left:10px;"><?php _e('You can use one of these most popular Social Login Plugins to allow your visitors login and comment with Facebook, Twitter, Google+, Wordpress, VK, OK and lots of other social network service accounts. All social login buttons will be fully integrated with wpDiscuz comment forms.', 'wpdiscuz'); ?> </p>
|
91 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
92 |
<tbody>
|
93 |
<?php echo $wc_social_plugin; ?>
|
options/options-layouts/settings-style.php
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Background and Colors',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row" style="width:55%;">
|
7 |
-
<label for="wc_form_bg_color"><?php _e('Comment Form Background Color',
|
8 |
</th>
|
9 |
<td width="1">
|
10 |
-
<input type="text" class="regular-text" value="<?php echo isset($this->wc_options_serialized->wc_form_bg_color) ? $this->wc_options_serialized->wc_form_bg_color : '#f9f9f9'; ?>" id="wc_form_bg_color" name="wc_form_bg_color" placeholder="<?php _e('Example: #00ff00',
|
11 |
</td>
|
12 |
|
13 |
<td class="picker_img_cell">
|
@@ -28,10 +28,10 @@
|
|
28 |
|
29 |
<tr valign="top">
|
30 |
<th scope="row">
|
31 |
-
<label for="wc_comment_bg_color"><?php _e('Comment Background Color',
|
32 |
</th>
|
33 |
<td width="1">
|
34 |
-
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_comment_bg_color; ?>" id="wc_comment_bg_color" name="wc_comment_bg_color" placeholder="<?php _e('Example: #00ff00',
|
35 |
</td>
|
36 |
|
37 |
<td class="picker_img_cell">
|
@@ -52,10 +52,10 @@
|
|
52 |
|
53 |
<tr valign="top">
|
54 |
<th scope="row">
|
55 |
-
<label for="wc_reply_bg_color"><?php _e('Reply Background Color',
|
56 |
</th>
|
57 |
<td>
|
58 |
-
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_reply_bg_color; ?>" id="wc_reply_bg_color" name="wc_reply_bg_color" placeholder="<?php _e('Example: #00ff00',
|
59 |
</td>
|
60 |
|
61 |
<td class="picker_img_cell">
|
@@ -76,10 +76,10 @@
|
|
76 |
|
77 |
<tr valign="top">
|
78 |
<th scope="row">
|
79 |
-
<label for="wc_comment_text_color"><?php _e('Comment Text Color',
|
80 |
</th>
|
81 |
<td>
|
82 |
-
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_comment_text_color; ?>" id="wc_comment_text_color" name="wc_comment_text_color" placeholder="<?php _e('Example: #00ff00',
|
83 |
</td>
|
84 |
|
85 |
<td class="picker_img_cell">
|
@@ -101,10 +101,10 @@
|
|
101 |
|
102 |
<tr valign="top">
|
103 |
<th scope="row">
|
104 |
-
<label for="wc_author_title_color"><?php _e('Author title color',
|
105 |
</th>
|
106 |
<td>
|
107 |
-
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_author_title_color; ?>" id="wc_author_title_color" name="wc_author_title_color" placeholder="<?php _e('Example: #00ff00',
|
108 |
</td>
|
109 |
|
110 |
<td class="picker_img_cell">
|
@@ -126,10 +126,10 @@
|
|
126 |
|
127 |
<tr valign="top">
|
128 |
<th scope="row">
|
129 |
-
<label for="wc_vote_reply_color"><?php _e('Vote, Reply, Share, Edit links text colors',
|
130 |
</th>
|
131 |
<td>
|
132 |
-
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_vote_reply_color; ?>" id="wc_vote_reply_color" name="wc_vote_reply_color" placeholder="<?php _e('Example: #00ff00',
|
133 |
</td>
|
134 |
|
135 |
<td class="picker_img_cell">
|
@@ -149,10 +149,10 @@
|
|
149 |
</tr>
|
150 |
<tr valign="top">
|
151 |
<th scope="row">
|
152 |
-
<label for="wc_input_border_color"><?php _e('Comment form fields border color',
|
153 |
</th>
|
154 |
<td>
|
155 |
-
<input type="text" class="regular-text" value="<?php echo isset($this->wc_options_serialized->wc_input_border_color) ? $this->wc_options_serialized->wc_input_border_color : '#d9d9d9'; ?>" id="wc_input_border_color" name="wc_input_border_color" placeholder="<?php _e('Example: #00ff00',
|
156 |
</td>
|
157 |
|
158 |
<td class="picker_img_cell">
|
@@ -172,10 +172,10 @@
|
|
172 |
</tr>
|
173 |
<tr valign="top">
|
174 |
<th scope="row">
|
175 |
-
<label for="wc_new_loaded_comment_bg_color"><?php _e('New loaded comments\' background color',
|
176 |
</th>
|
177 |
<td>
|
178 |
-
<input type="text" class="regular-text" value="<?php echo isset($this->wc_options_serialized->wc_new_loaded_comment_bg_color) ? $this->wc_options_serialized->wc_new_loaded_comment_bg_color : 'rgb(254,254,254)'; ?>" id="wc_new_loaded_comment_bg_color" name="wc_new_loaded_comment_bg_color" placeholder="<?php _e('Example: #00ff00',
|
179 |
</td>
|
180 |
|
181 |
<td class="picker_img_cell">
|
@@ -196,7 +196,7 @@
|
|
196 |
|
197 |
<tr valign="top">
|
198 |
<th scope="row">
|
199 |
-
<label for="wc_custom_css"><?php _e('Custom CSS Code',
|
200 |
</th>
|
201 |
<td>
|
202 |
<textarea cols="50" rows="10" class="regular-text" id="wc_custom_css" name="wc_custom_css" placeholder=""><?php echo stripslashes($this->wc_options_serialized->wc_custom_css); ?></textarea>
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Background and Colors', 'wpdiscuz'); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row" style="width:55%;">
|
7 |
+
<label for="wc_form_bg_color"><?php _e('Comment Form Background Color', 'wpdiscuz'); ?></label>
|
8 |
</th>
|
9 |
<td width="1">
|
10 |
+
<input type="text" class="regular-text" value="<?php echo isset($this->wc_options_serialized->wc_form_bg_color) ? $this->wc_options_serialized->wc_form_bg_color : '#f9f9f9'; ?>" id="wc_form_bg_color" name="wc_form_bg_color" placeholder="<?php _e('Example: #00ff00', 'wpdiscuz'); ?>"/>
|
11 |
</td>
|
12 |
|
13 |
<td class="picker_img_cell">
|
28 |
|
29 |
<tr valign="top">
|
30 |
<th scope="row">
|
31 |
+
<label for="wc_comment_bg_color"><?php _e('Comment Background Color', 'wpdiscuz'); ?></label>
|
32 |
</th>
|
33 |
<td width="1">
|
34 |
+
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_comment_bg_color; ?>" id="wc_comment_bg_color" name="wc_comment_bg_color" placeholder="<?php _e('Example: #00ff00', 'wpdiscuz'); ?>"/>
|
35 |
</td>
|
36 |
|
37 |
<td class="picker_img_cell">
|
52 |
|
53 |
<tr valign="top">
|
54 |
<th scope="row">
|
55 |
+
<label for="wc_reply_bg_color"><?php _e('Reply Background Color', 'wpdiscuz'); ?></label>
|
56 |
</th>
|
57 |
<td>
|
58 |
+
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_reply_bg_color; ?>" id="wc_reply_bg_color" name="wc_reply_bg_color" placeholder="<?php _e('Example: #00ff00', 'wpdiscuz'); ?>"/>
|
59 |
</td>
|
60 |
|
61 |
<td class="picker_img_cell">
|
76 |
|
77 |
<tr valign="top">
|
78 |
<th scope="row">
|
79 |
+
<label for="wc_comment_text_color"><?php _e('Comment Text Color', 'wpdiscuz'); ?></label>
|
80 |
</th>
|
81 |
<td>
|
82 |
+
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_comment_text_color; ?>" id="wc_comment_text_color" name="wc_comment_text_color" placeholder="<?php _e('Example: #00ff00', 'wpdiscuz'); ?>"/>
|
83 |
</td>
|
84 |
|
85 |
<td class="picker_img_cell">
|
101 |
|
102 |
<tr valign="top">
|
103 |
<th scope="row">
|
104 |
+
<label for="wc_author_title_color"><?php _e('Author title color', 'wpdiscuz'); ?></label>
|
105 |
</th>
|
106 |
<td>
|
107 |
+
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_author_title_color; ?>" id="wc_author_title_color" name="wc_author_title_color" placeholder="<?php _e('Example: #00ff00', 'wpdiscuz'); ?>"/>
|
108 |
</td>
|
109 |
|
110 |
<td class="picker_img_cell">
|
126 |
|
127 |
<tr valign="top">
|
128 |
<th scope="row">
|
129 |
+
<label for="wc_vote_reply_color"><?php _e('Vote, Reply, Share, Edit links text colors', 'wpdiscuz'); ?></label>
|
130 |
</th>
|
131 |
<td>
|
132 |
+
<input type="text" class="regular-text" value="<?php echo $this->wc_options_serialized->wc_vote_reply_color; ?>" id="wc_vote_reply_color" name="wc_vote_reply_color" placeholder="<?php _e('Example: #00ff00', 'wpdiscuz'); ?>"/>
|
133 |
</td>
|
134 |
|
135 |
<td class="picker_img_cell">
|
149 |
</tr>
|
150 |
<tr valign="top">
|
151 |
<th scope="row">
|
152 |
+
<label for="wc_input_border_color"><?php _e('Comment form fields border color', 'wpdiscuz'); ?></label>
|
153 |
</th>
|
154 |
<td>
|
155 |
+
<input type="text" class="regular-text" value="<?php echo isset($this->wc_options_serialized->wc_input_border_color) ? $this->wc_options_serialized->wc_input_border_color : '#d9d9d9'; ?>" id="wc_input_border_color" name="wc_input_border_color" placeholder="<?php _e('Example: #00ff00', 'wpdiscuz'); ?>"/>
|
156 |
</td>
|
157 |
|
158 |
<td class="picker_img_cell">
|
172 |
</tr>
|
173 |
<tr valign="top">
|
174 |
<th scope="row">
|
175 |
+
<label for="wc_new_loaded_comment_bg_color"><?php _e('New loaded comments\' background color', 'wpdiscuz'); ?></label>
|
176 |
</th>
|
177 |
<td>
|
178 |
+
<input type="text" class="regular-text" value="<?php echo isset($this->wc_options_serialized->wc_new_loaded_comment_bg_color) ? $this->wc_options_serialized->wc_new_loaded_comment_bg_color : 'rgb(254,254,254)'; ?>" id="wc_new_loaded_comment_bg_color" name="wc_new_loaded_comment_bg_color" placeholder="<?php _e('Example: #00ff00', 'wpdiscuz'); ?>"/>
|
179 |
</td>
|
180 |
|
181 |
<td class="picker_img_cell">
|
196 |
|
197 |
<tr valign="top">
|
198 |
<th scope="row">
|
199 |
+
<label for="wc_custom_css"><?php _e('Custom CSS Code', 'wpdiscuz'); ?></label>
|
200 |
</th>
|
201 |
<td>
|
202 |
<textarea cols="50" rows="10" class="regular-text" id="wc_custom_css" name="wc_custom_css" placeholder=""><?php echo stripslashes($this->wc_options_serialized->wc_custom_css); ?></textarea>
|
options/options-layouts/settings-subscription.php
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Email Subscription Settings',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row" style="width:55%;">
|
7 |
-
<span><?php _e('Show "Notify of all new follow-up comments"',
|
8 |
-
<span style="line-height:22px;"><?php _e('Show "Notify of new replies to all my comments"',
|
9 |
-
<span style="line-height:22px;"><?php _e('Show "Notify of new replies to this comment"',
|
10 |
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;">
|
11 |
-
<?php _e('Please keep all three or at least one of those options ON, otherwise users will not have any option for email notifications and they\'ll not get any messages.',
|
12 |
</p>
|
13 |
</th>
|
14 |
<td>
|
@@ -27,8 +27,8 @@
|
|
27 |
<?php if (class_exists('Prompt_Comment_Form_Handling')) { ?>
|
28 |
<tr valign="top">
|
29 |
<th scope="row">
|
30 |
-
<?php _e('Use Postmatic for subscriptions and commenting by email',
|
31 |
-
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('Postmatic allows your users subscribe to comments. Instead of just being notified, they add a reply right from their inbox.',
|
32 |
</th>
|
33 |
<td>
|
34 |
<label for="wc_use_postmatic_for_comment_notification">
|
@@ -39,8 +39,8 @@
|
|
39 |
<?php } ?>
|
40 |
<tr valign="top">
|
41 |
<th scope="row">
|
42 |
-
<?php _e('Keep selected the email notification of all new follow-up comments by default',
|
43 |
-
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('If this option is checked-on, in Manage Subscriptions section of comment forms will only be displayed the "Notify of all new follow-up comments" option and this option will always be selected by default.',
|
44 |
</th>
|
45 |
<td>
|
46 |
<label for="wc_comment_reply_checkboxes_default_checked">
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Email Subscription Settings', 'wpdiscuz'); ?> </h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row" style="width:55%;">
|
7 |
+
<span><?php _e('Show "Notify of all new follow-up comments"', 'wpdiscuz'); ?></span><br />
|
8 |
+
<span style="line-height:22px;"><?php _e('Show "Notify of new replies to all my comments"', 'wpdiscuz'); ?></span><br />
|
9 |
+
<span style="line-height:22px;"><?php _e('Show "Notify of new replies to this comment"', 'wpdiscuz'); ?></span><br />
|
10 |
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;">
|
11 |
+
<?php _e('Please keep all three or at least one of those options ON, otherwise users will not have any option for email notifications and they\'ll not get any messages.', 'wpdiscuz') ?>
|
12 |
</p>
|
13 |
</th>
|
14 |
<td>
|
27 |
<?php if (class_exists('Prompt_Comment_Form_Handling')) { ?>
|
28 |
<tr valign="top">
|
29 |
<th scope="row">
|
30 |
+
<?php _e('Use Postmatic for subscriptions and commenting by email', 'wpdiscuz'); ?>
|
31 |
+
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('Postmatic allows your users subscribe to comments. Instead of just being notified, they add a reply right from their inbox.', 'wpdiscuz'); ?></p>
|
32 |
</th>
|
33 |
<td>
|
34 |
<label for="wc_use_postmatic_for_comment_notification">
|
39 |
<?php } ?>
|
40 |
<tr valign="top">
|
41 |
<th scope="row">
|
42 |
+
<?php _e('Keep selected the email notification of all new follow-up comments by default', 'wpdiscuz'); ?>
|
43 |
+
<p style="font-size:13px; color:#999999; width:80%; padding-left:0px; margin-left:0px;"><?php _e('If this option is checked-on, in Manage Subscriptions section of comment forms will only be displayed the "Notify of all new follow-up comments" option and this option will always be selected by default.', 'wpdiscuz'); ?> </p>
|
44 |
</th>
|
45 |
<td>
|
46 |
<label for="wc_comment_reply_checkboxes_default_checked">
|
options/phrases-layout/phrases-comment.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Comment Template Phrases',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
-
<?php _e('Reply',
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_reply_text">
|
@@ -14,7 +14,7 @@
|
|
14 |
</tr>
|
15 |
<tr valign="top">
|
16 |
<th scope="row">
|
17 |
-
<?php _e('Share',
|
18 |
</th>
|
19 |
<td colspan="3">
|
20 |
<label for="wc_share_text">
|
@@ -24,7 +24,7 @@
|
|
24 |
</tr>
|
25 |
<tr valign="top">
|
26 |
<th scope="row">
|
27 |
-
<?php _e('Edit',
|
28 |
</th>
|
29 |
<td colspan="3">
|
30 |
<label for="wc_edit_text">
|
@@ -34,7 +34,7 @@
|
|
34 |
</tr>
|
35 |
<tr valign="top">
|
36 |
<th scope="row">
|
37 |
-
<?php _e('Share On Facebook',
|
38 |
</th>
|
39 |
<td colspan="3">
|
40 |
<label for="wc_share_facebook">
|
@@ -44,7 +44,7 @@
|
|
44 |
</tr>
|
45 |
<tr valign="top" >
|
46 |
<th scope="row">
|
47 |
-
<?php _e('Share On Twitter',
|
48 |
</th>
|
49 |
<td colspan="3">
|
50 |
<label for="wc_share_twitter">
|
@@ -54,7 +54,7 @@
|
|
54 |
</tr>
|
55 |
<tr valign="top">
|
56 |
<th scope="row">
|
57 |
-
<?php _e('Share On Google',
|
58 |
</th>
|
59 |
<td colspan="3">
|
60 |
<label for="wc_share_google">
|
@@ -64,7 +64,7 @@
|
|
64 |
</tr>
|
65 |
<tr valign="top">
|
66 |
<th scope="row">
|
67 |
-
<?php _e('Share On VKontakte',
|
68 |
</th>
|
69 |
<td colspan="3">
|
70 |
<label for="wc_share_vk">
|
@@ -74,7 +74,7 @@
|
|
74 |
</tr>
|
75 |
<tr valign="top">
|
76 |
<th scope="row">
|
77 |
-
<?php _e('Share On Odnoklassniki',
|
78 |
</th>
|
79 |
<td colspan="3">
|
80 |
<label for="wc_share_ok">
|
@@ -84,7 +84,7 @@
|
|
84 |
</tr>
|
85 |
<tr valign="top" >
|
86 |
<th scope="row">
|
87 |
-
<?php _e('Hide Replies',
|
88 |
</th>
|
89 |
<td colspan="3">
|
90 |
<label for="wc_hide_replies_text">
|
@@ -94,7 +94,7 @@
|
|
94 |
</tr>
|
95 |
<tr valign="top">
|
96 |
<th scope="row">
|
97 |
-
<?php _e('Show Replies',
|
98 |
</th>
|
99 |
<td colspan="3">
|
100 |
<label for="wc_show_replies_text">
|
@@ -104,7 +104,7 @@
|
|
104 |
</tr>
|
105 |
<tr valign="top">
|
106 |
<th scope="row">
|
107 |
-
<?php _e('Title For Guests',
|
108 |
</th>
|
109 |
<td colspan="3">
|
110 |
<label for="wc_user_title_guest_text">
|
@@ -114,7 +114,7 @@
|
|
114 |
</tr>
|
115 |
<tr valign="top">
|
116 |
<th scope="row">
|
117 |
-
<?php _e('Title For Members',
|
118 |
</th>
|
119 |
<td colspan="3">
|
120 |
<label for="wc_user_title_member_text">
|
@@ -124,7 +124,7 @@
|
|
124 |
</tr>
|
125 |
<tr valign="top">
|
126 |
<th scope="row">
|
127 |
-
<?php _e('Title For Authors',
|
128 |
</th>
|
129 |
<td colspan="3">
|
130 |
<label for="wc_user_title_author_text">
|
@@ -134,7 +134,7 @@
|
|
134 |
</tr>
|
135 |
<tr valign="top">
|
136 |
<th scope="row">
|
137 |
-
<?php _e('Title For Admins',
|
138 |
</th>
|
139 |
<td colspan="3">
|
140 |
<label for="wc_user_title_admin_text">
|
@@ -144,7 +144,7 @@
|
|
144 |
</tr>
|
145 |
<tr valign="top">
|
146 |
<th scope="row">
|
147 |
-
<?php _e('Vote Up',
|
148 |
</th>
|
149 |
<td colspan="3">
|
150 |
<label for="wc_vote_up">
|
@@ -154,7 +154,7 @@
|
|
154 |
</tr>
|
155 |
<tr valign="top">
|
156 |
<th scope="row">
|
157 |
-
<?php _e('Vote Down',
|
158 |
</th>
|
159 |
<td colspan="3">
|
160 |
<label for="wc_vote_down">
|
@@ -164,7 +164,7 @@
|
|
164 |
</tr>
|
165 |
<tr valign="top">
|
166 |
<th scope="row">
|
167 |
-
<?php _e('Save edited comment button text',
|
168 |
</th>
|
169 |
<td colspan="3">
|
170 |
<label for="wc_comment_edit_save_button">
|
@@ -174,7 +174,7 @@
|
|
174 |
</tr>
|
175 |
<tr valign="top">
|
176 |
<th scope="row">
|
177 |
-
<?php _e('Cancel comment editing button text',
|
178 |
</th>
|
179 |
<td colspan="3">
|
180 |
<label for="wc_comment_edit_cancel_button">
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Comment Template Phrases', 'wpdiscuz'); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
+
<?php _e('Reply', 'wpdiscuz'); ?>
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_reply_text">
|
14 |
</tr>
|
15 |
<tr valign="top">
|
16 |
<th scope="row">
|
17 |
+
<?php _e('Share', 'wpdiscuz'); ?>
|
18 |
</th>
|
19 |
<td colspan="3">
|
20 |
<label for="wc_share_text">
|
24 |
</tr>
|
25 |
<tr valign="top">
|
26 |
<th scope="row">
|
27 |
+
<?php _e('Edit', 'wpdiscuz'); ?>
|
28 |
</th>
|
29 |
<td colspan="3">
|
30 |
<label for="wc_edit_text">
|
34 |
</tr>
|
35 |
<tr valign="top">
|
36 |
<th scope="row">
|
37 |
+
<?php _e('Share On Facebook', 'wpdiscuz'); ?>
|
38 |
</th>
|
39 |
<td colspan="3">
|
40 |
<label for="wc_share_facebook">
|
44 |
</tr>
|
45 |
<tr valign="top" >
|
46 |
<th scope="row">
|
47 |
+
<?php _e('Share On Twitter', 'wpdiscuz'); ?>
|
48 |
</th>
|
49 |
<td colspan="3">
|
50 |
<label for="wc_share_twitter">
|
54 |
</tr>
|
55 |
<tr valign="top">
|
56 |
<th scope="row">
|
57 |
+
<?php _e('Share On Google', 'wpdiscuz'); ?>
|
58 |
</th>
|
59 |
<td colspan="3">
|
60 |
<label for="wc_share_google">
|
64 |
</tr>
|
65 |
<tr valign="top">
|
66 |
<th scope="row">
|
67 |
+
<?php _e('Share On VKontakte', 'wpdiscuz'); ?>
|
68 |
</th>
|
69 |
<td colspan="3">
|
70 |
<label for="wc_share_vk">
|
74 |
</tr>
|
75 |
<tr valign="top">
|
76 |
<th scope="row">
|
77 |
+
<?php _e('Share On Odnoklassniki', 'wpdiscuz'); ?>
|
78 |
</th>
|
79 |
<td colspan="3">
|
80 |
<label for="wc_share_ok">
|
84 |
</tr>
|
85 |
<tr valign="top" >
|
86 |
<th scope="row">
|
87 |
+
<?php _e('Hide Replies', 'wpdiscuz'); ?>
|
88 |
</th>
|
89 |
<td colspan="3">
|
90 |
<label for="wc_hide_replies_text">
|
94 |
</tr>
|
95 |
<tr valign="top">
|
96 |
<th scope="row">
|
97 |
+
<?php _e('Show Replies', 'wpdiscuz'); ?>
|
98 |
</th>
|
99 |
<td colspan="3">
|
100 |
<label for="wc_show_replies_text">
|
104 |
</tr>
|
105 |
<tr valign="top">
|
106 |
<th scope="row">
|
107 |
+
<?php _e('Title For Guests', 'wpdiscuz'); ?>
|
108 |
</th>
|
109 |
<td colspan="3">
|
110 |
<label for="wc_user_title_guest_text">
|
114 |
</tr>
|
115 |
<tr valign="top">
|
116 |
<th scope="row">
|
117 |
+
<?php _e('Title For Members', 'wpdiscuz'); ?>
|
118 |
</th>
|
119 |
<td colspan="3">
|
120 |
<label for="wc_user_title_member_text">
|
124 |
</tr>
|
125 |
<tr valign="top">
|
126 |
<th scope="row">
|
127 |
+
<?php _e('Title For Authors', 'wpdiscuz'); ?>
|
128 |
</th>
|
129 |
<td colspan="3">
|
130 |
<label for="wc_user_title_author_text">
|
134 |
</tr>
|
135 |
<tr valign="top">
|
136 |
<th scope="row">
|
137 |
+
<?php _e('Title For Admins', 'wpdiscuz'); ?>
|
138 |
</th>
|
139 |
<td colspan="3">
|
140 |
<label for="wc_user_title_admin_text">
|
144 |
</tr>
|
145 |
<tr valign="top">
|
146 |
<th scope="row">
|
147 |
+
<?php _e('Vote Up', 'wpdiscuz'); ?>
|
148 |
</th>
|
149 |
<td colspan="3">
|
150 |
<label for="wc_vote_up">
|
154 |
</tr>
|
155 |
<tr valign="top">
|
156 |
<th scope="row">
|
157 |
+
<?php _e('Vote Down', 'wpdiscuz'); ?>
|
158 |
</th>
|
159 |
<td colspan="3">
|
160 |
<label for="wc_vote_down">
|
164 |
</tr>
|
165 |
<tr valign="top">
|
166 |
<th scope="row">
|
167 |
+
<?php _e('Save edited comment button text', 'wpdiscuz'); ?>
|
168 |
</th>
|
169 |
<td colspan="3">
|
170 |
<label for="wc_comment_edit_save_button">
|
174 |
</tr>
|
175 |
<tr valign="top">
|
176 |
<th scope="row">
|
177 |
+
<?php _e('Cancel comment editing button text', 'wpdiscuz'); ?>
|
178 |
</th>
|
179 |
<td colspan="3">
|
180 |
<label for="wc_comment_edit_cancel_button">
|
options/phrases-layout/phrases-datetime.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Date/Time Phrases',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
-
<?php _e('Year',
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_year_text">
|
@@ -15,18 +15,18 @@
|
|
15 |
|
16 |
<tr valign="top">
|
17 |
<th scope="row">
|
18 |
-
<?php _e('Years (Plural Form)',
|
19 |
</th>
|
20 |
<td colspan="3">
|
21 |
<label for="wc_year_text_plural">
|
22 |
-
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_year_text_plural']['datetime'][0]) ? $this->wc_options_serialized->wc_phrases['wc_year_text_plural']['datetime'][0] : __('Years',
|
23 |
</label>
|
24 |
</td>
|
25 |
</tr>
|
26 |
|
27 |
<tr valign="top">
|
28 |
<th scope="row">
|
29 |
-
<?php _e('Month',
|
30 |
</th>
|
31 |
<td colspan="3">
|
32 |
<label for="wc_month_text">
|
@@ -37,7 +37,7 @@
|
|
37 |
|
38 |
<tr valign="top">
|
39 |
<th scope="row">
|
40 |
-
<?php _e('Months (Plural Form)',
|
41 |
</th>
|
42 |
<td colspan="3">
|
43 |
<label for="wc_month_text_plural">
|
@@ -48,7 +48,7 @@
|
|
48 |
|
49 |
<tr valign="top">
|
50 |
<th scope="row">
|
51 |
-
<?php _e('Day',
|
52 |
</th>
|
53 |
<td colspan="3">
|
54 |
<label for="wc_day_text">
|
@@ -59,7 +59,7 @@
|
|
59 |
|
60 |
<tr valign="top">
|
61 |
<th scope="row">
|
62 |
-
<?php _e('Days (Plural Form)',
|
63 |
</th>
|
64 |
<td colspan="3">
|
65 |
<label for="wc_day_text_plural">
|
@@ -70,7 +70,7 @@
|
|
70 |
|
71 |
<tr valign="top">
|
72 |
<th scope="row">
|
73 |
-
<?php _e('Hour',
|
74 |
</th>
|
75 |
<td colspan="3">
|
76 |
<label for="wc_hour_text">
|
@@ -81,7 +81,7 @@
|
|
81 |
|
82 |
<tr valign="top">
|
83 |
<th scope="row">
|
84 |
-
<?php _e('Hours (Plural Form)',
|
85 |
</th>
|
86 |
<td colspan="3">
|
87 |
<label for="wc_hour_text_plural">
|
@@ -92,7 +92,7 @@
|
|
92 |
|
93 |
<tr valign="top">
|
94 |
<th scope="row">
|
95 |
-
<?php _e('Minute',
|
96 |
</th>
|
97 |
<td colspan="3">
|
98 |
<label for="wc_minute_text">
|
@@ -103,7 +103,7 @@
|
|
103 |
|
104 |
<tr valign="top">
|
105 |
<th scope="row">
|
106 |
-
<?php _e('Minutes (Plural Form)',
|
107 |
</th>
|
108 |
<td colspan="3">
|
109 |
<label for="wc_minute_text_plural">
|
@@ -114,7 +114,7 @@
|
|
114 |
|
115 |
<tr valign="top">
|
116 |
<th scope="row">
|
117 |
-
<?php _e('Second',
|
118 |
</th>
|
119 |
<td colspan="3">
|
120 |
<label for="wc_second_text">
|
@@ -125,7 +125,7 @@
|
|
125 |
|
126 |
<tr valign="top">
|
127 |
<th scope="row">
|
128 |
-
<?php _e('Seconds (Plural Form)',
|
129 |
</th>
|
130 |
<td colspan="3">
|
131 |
<label for="wc_second_text_plural">
|
@@ -135,7 +135,7 @@
|
|
135 |
</tr>
|
136 |
<tr valign="top">
|
137 |
<th scope="row">
|
138 |
-
<?php _e('Commented "right now" text',
|
139 |
</th>
|
140 |
<td colspan="3">
|
141 |
<label for="wc_right_now_text">
|
@@ -146,7 +146,7 @@
|
|
146 |
|
147 |
<tr valign="top">
|
148 |
<th scope="row">
|
149 |
-
<?php _e('Ago text',
|
150 |
</th>
|
151 |
<td colspan="3">
|
152 |
<label for="wc_ago_text">
|
@@ -157,11 +157,11 @@
|
|
157 |
|
158 |
<tr valign="top">
|
159 |
<th scope="row">
|
160 |
-
<?php _e('"Today" text',
|
161 |
</th>
|
162 |
<td colspan="3">
|
163 |
<label for="wc_posted_today_text">
|
164 |
-
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_posted_today_text']) ? $this->wc_options_serialized->wc_phrases['wc_posted_today_text'] : __('Today',
|
165 |
</label>
|
166 |
</td>
|
167 |
</tr>
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Date/Time Phrases', 'wpdiscuz'); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
+
<?php _e('Year', 'wpdiscuz'); ?>
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_year_text">
|
15 |
|
16 |
<tr valign="top">
|
17 |
<th scope="row">
|
18 |
+
<?php _e('Years (Plural Form)', 'wpdiscuz'); ?>
|
19 |
</th>
|
20 |
<td colspan="3">
|
21 |
<label for="wc_year_text_plural">
|
22 |
+
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_year_text_plural']['datetime'][0]) ? $this->wc_options_serialized->wc_phrases['wc_year_text_plural']['datetime'][0] : __('Years', 'wpdiscuz'); ?>" name="wc_year_text_plural" id="wc_year_text_plural" />
|
23 |
</label>
|
24 |
</td>
|
25 |
</tr>
|
26 |
|
27 |
<tr valign="top">
|
28 |
<th scope="row">
|
29 |
+
<?php _e('Month', 'wpdiscuz'); ?>
|
30 |
</th>
|
31 |
<td colspan="3">
|
32 |
<label for="wc_month_text">
|
37 |
|
38 |
<tr valign="top">
|
39 |
<th scope="row">
|
40 |
+
<?php _e('Months (Plural Form)', 'wpdiscuz'); ?>
|
41 |
</th>
|
42 |
<td colspan="3">
|
43 |
<label for="wc_month_text_plural">
|
48 |
|
49 |
<tr valign="top">
|
50 |
<th scope="row">
|
51 |
+
<?php _e('Day', 'wpdiscuz'); ?>
|
52 |
</th>
|
53 |
<td colspan="3">
|
54 |
<label for="wc_day_text">
|
59 |
|
60 |
<tr valign="top">
|
61 |
<th scope="row">
|
62 |
+
<?php _e('Days (Plural Form)', 'wpdiscuz'); ?>
|
63 |
</th>
|
64 |
<td colspan="3">
|
65 |
<label for="wc_day_text_plural">
|
70 |
|
71 |
<tr valign="top">
|
72 |
<th scope="row">
|
73 |
+
<?php _e('Hour', 'wpdiscuz'); ?>
|
74 |
</th>
|
75 |
<td colspan="3">
|
76 |
<label for="wc_hour_text">
|
81 |
|
82 |
<tr valign="top">
|
83 |
<th scope="row">
|
84 |
+
<?php _e('Hours (Plural Form)', 'wpdiscuz'); ?>
|
85 |
</th>
|
86 |
<td colspan="3">
|
87 |
<label for="wc_hour_text_plural">
|
92 |
|
93 |
<tr valign="top">
|
94 |
<th scope="row">
|
95 |
+
<?php _e('Minute', 'wpdiscuz'); ?>
|
96 |
</th>
|
97 |
<td colspan="3">
|
98 |
<label for="wc_minute_text">
|
103 |
|
104 |
<tr valign="top">
|
105 |
<th scope="row">
|
106 |
+
<?php _e('Minutes (Plural Form)', 'wpdiscuz'); ?>
|
107 |
</th>
|
108 |
<td colspan="3">
|
109 |
<label for="wc_minute_text_plural">
|
114 |
|
115 |
<tr valign="top">
|
116 |
<th scope="row">
|
117 |
+
<?php _e('Second', 'wpdiscuz'); ?>
|
118 |
</th>
|
119 |
<td colspan="3">
|
120 |
<label for="wc_second_text">
|
125 |
|
126 |
<tr valign="top">
|
127 |
<th scope="row">
|
128 |
+
<?php _e('Seconds (Plural Form)', 'wpdiscuz'); ?>
|
129 |
</th>
|
130 |
<td colspan="3">
|
131 |
<label for="wc_second_text_plural">
|
135 |
</tr>
|
136 |
<tr valign="top">
|
137 |
<th scope="row">
|
138 |
+
<?php _e('Commented "right now" text', 'wpdiscuz'); ?>
|
139 |
</th>
|
140 |
<td colspan="3">
|
141 |
<label for="wc_right_now_text">
|
146 |
|
147 |
<tr valign="top">
|
148 |
<th scope="row">
|
149 |
+
<?php _e('Ago text', 'wpdiscuz'); ?>
|
150 |
</th>
|
151 |
<td colspan="3">
|
152 |
<label for="wc_ago_text">
|
157 |
|
158 |
<tr valign="top">
|
159 |
<th scope="row">
|
160 |
+
<?php _e('"Today" text', 'wpdiscuz'); ?>
|
161 |
</th>
|
162 |
<td colspan="3">
|
163 |
<label for="wc_posted_today_text">
|
164 |
+
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_posted_today_text']) ? $this->wc_options_serialized->wc_phrases['wc_posted_today_text'] : __('Today', 'wpdiscuz'); ?>" name="wc_posted_today_text" id="wc_posted_today_text" placeholder="<?php _e('Today', 'wpdiscuz'); ?> 9:26 PM"/>
|
165 |
</label>
|
166 |
</td>
|
167 |
</tr>
|
options/phrases-layout/phrases-email.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Email Template Phrases',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
-
<?php _e('Email Subject',
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_email_subject">
|
@@ -15,7 +15,7 @@
|
|
15 |
|
16 |
<tr valign="top">
|
17 |
<th scope="row">
|
18 |
-
<?php _e('Email Message',
|
19 |
</th>
|
20 |
<td colspan="3">
|
21 |
<label for="wc_email_message">
|
@@ -26,18 +26,18 @@
|
|
26 |
|
27 |
<tr valign="top">
|
28 |
<th scope="row">
|
29 |
-
<?php _e('New Reply Subject',
|
30 |
</th>
|
31 |
<td colspan="3">
|
32 |
<label for="wc_new_reply_email_subject">
|
33 |
-
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_new_reply_email_subject']) ? $this->wc_options_serialized->wc_phrases['wc_new_reply_email_subject'] : _e('New Reply',
|
34 |
</label>
|
35 |
</td>
|
36 |
</tr>
|
37 |
|
38 |
<tr valign="top">
|
39 |
<th scope="row">
|
40 |
-
<?php _e('New Reply Message',
|
41 |
</th>
|
42 |
<td colspan="3">
|
43 |
<label for="wc_new_reply_email_message">
|
@@ -47,64 +47,64 @@
|
|
47 |
</tr>
|
48 |
<tr valign="top">
|
49 |
<th scope="row">
|
50 |
-
<?php _e('Unsubscribe',
|
51 |
</th>
|
52 |
<td colspan="3">
|
53 |
<label for="wc_unsubscribe">
|
54 |
-
<input type="text" name="wc_unsubscribe" id="wc_unsubscribe" class="wc_unsubscribe" value="<?php echo $this->wc_options_serialized->wc_phrases['wc_unsubscribe']; ?>" placeholder="<?php echo _e('Unsubscribe',
|
55 |
</label>
|
56 |
</td>
|
57 |
</tr>
|
58 |
|
59 |
<tr valign="top">
|
60 |
<th scope="row">
|
61 |
-
<?php _e('Ignore Subscription',
|
62 |
</th>
|
63 |
<td colspan="3">
|
64 |
<label for="wc_ignore_subscription">
|
65 |
-
<input type="text" name="wc_ignore_subscription" id="wc_ignore_subscription" class="wc_ignore_subscription" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_ignore_subscription']) ? $this->wc_options_serialized->wc_phrases['wc_ignore_subscription'] : __('Ignore Subscription', 'wpdiscuz'); ?>" placeholder="<?php echo _e('Ignore Subscription',
|
66 |
</label>
|
67 |
</td>
|
68 |
</tr>
|
69 |
|
70 |
<tr valign="top">
|
71 |
<th scope="row">
|
72 |
-
<?php _e('Confirm your subscription',
|
73 |
</th>
|
74 |
<td colspan="3">
|
75 |
<label for="wc_confirm_email">
|
76 |
-
<input type="text" name="wc_confirm_email" id="wc_confirm_email" class="wc_confirm_email" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_confirm_email']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email'] : __('Confirm your subscription',
|
77 |
</label>
|
78 |
</td>
|
79 |
</tr>
|
80 |
<tr valign="top">
|
81 |
<th scope="row">
|
82 |
-
<?php _e('You\'ve successfully confirmed your subscription.',
|
83 |
</th>
|
84 |
<td colspan="3">
|
85 |
<label for="wc_comfirm_success_message">
|
86 |
-
<textarea name="wc_comfirm_success_message" id="wc_comfirm_success_message"><?php echo isset($this->wc_options_serialized->wc_phrases['wc_comfirm_success_message']) ? $this->wc_options_serialized->wc_phrases['wc_comfirm_success_message'] : __('You\'ve successfully confirmed your subscription.',
|
87 |
</label>
|
88 |
</td>
|
89 |
</tr>
|
90 |
<tr valign="top">
|
91 |
<th scope="row">
|
92 |
-
<?php _e('Subscribe Confirmation Email Subject',
|
93 |
</th>
|
94 |
<td colspan="3">
|
95 |
<label for="wc_confirm_email_subject">
|
96 |
-
<input type="text" name="wc_confirm_email_subject" id="wc_confirm_email_subject" class="wc_confirm_email_subject" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_confirm_email_subject']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email_subject'] : __('Subscribe Confirmation',
|
97 |
</label>
|
98 |
</td>
|
99 |
</tr>
|
100 |
|
101 |
<tr valign="top">
|
102 |
<th scope="row">
|
103 |
-
<?php _e('Subscribe Confirmation Email Content',
|
104 |
</th>
|
105 |
<td colspan="3">
|
106 |
<label for="wc_confirm_email_message">
|
107 |
-
<textarea name="wc_confirm_email_message" id="wc_confirm_email_message"><?php echo isset($this->wc_options_serialized->wc_phrases['wc_confirm_email_message']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email_message'] : __('Hi, <br/> You just subscribed for new comments on our website. This means you will receive an email when new comments are posted according to subscription option you\'ve chosen. <br/> To activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.',
|
108 |
</label>
|
109 |
</td>
|
110 |
</tr>
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Email Template Phrases', 'wpdiscuz'); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
+
<?php _e('Email Subject', 'wpdiscuz'); ?>
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_email_subject">
|
15 |
|
16 |
<tr valign="top">
|
17 |
<th scope="row">
|
18 |
+
<?php _e('Email Message', 'wpdiscuz'); ?>
|
19 |
</th>
|
20 |
<td colspan="3">
|
21 |
<label for="wc_email_message">
|
26 |
|
27 |
<tr valign="top">
|
28 |
<th scope="row">
|
29 |
+
<?php _e('New Reply Subject', 'wpdiscuz'); ?>
|
30 |
</th>
|
31 |
<td colspan="3">
|
32 |
<label for="wc_new_reply_email_subject">
|
33 |
+
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_new_reply_email_subject']) ? $this->wc_options_serialized->wc_phrases['wc_new_reply_email_subject'] : _e('New Reply', 'wpdiscuz'); ?>" name="wc_new_reply_email_subject" id="wc_new_reply_email_subject" />
|
34 |
</label>
|
35 |
</td>
|
36 |
</tr>
|
37 |
|
38 |
<tr valign="top">
|
39 |
<th scope="row">
|
40 |
+
<?php _e('New Reply Message', 'wpdiscuz'); ?>
|
41 |
</th>
|
42 |
<td colspan="3">
|
43 |
<label for="wc_new_reply_email_message">
|
47 |
</tr>
|
48 |
<tr valign="top">
|
49 |
<th scope="row">
|
50 |
+
<?php _e('Unsubscribe', 'wpdiscuz'); ?>
|
51 |
</th>
|
52 |
<td colspan="3">
|
53 |
<label for="wc_unsubscribe">
|
54 |
+
<input type="text" name="wc_unsubscribe" id="wc_unsubscribe" class="wc_unsubscribe" value="<?php echo $this->wc_options_serialized->wc_phrases['wc_unsubscribe']; ?>" placeholder="<?php echo _e('Unsubscribe', 'wpdiscuz'); ?>"/>
|
55 |
</label>
|
56 |
</td>
|
57 |
</tr>
|
58 |
|
59 |
<tr valign="top">
|
60 |
<th scope="row">
|
61 |
+
<?php _e('Ignore Subscription', 'wpdiscuz'); ?>
|
62 |
</th>
|
63 |
<td colspan="3">
|
64 |
<label for="wc_ignore_subscription">
|
65 |
+
<input type="text" name="wc_ignore_subscription" id="wc_ignore_subscription" class="wc_ignore_subscription" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_ignore_subscription']) ? $this->wc_options_serialized->wc_phrases['wc_ignore_subscription'] : __('Ignore Subscription', 'wpdiscuz'); ?>" placeholder="<?php echo _e('Ignore Subscription', 'wpdiscuz'); ?>"/>
|
66 |
</label>
|
67 |
</td>
|
68 |
</tr>
|
69 |
|
70 |
<tr valign="top">
|
71 |
<th scope="row">
|
72 |
+
<?php _e('Confirm your subscription', 'wpdiscuz'); ?>
|
73 |
</th>
|
74 |
<td colspan="3">
|
75 |
<label for="wc_confirm_email">
|
76 |
+
<input type="text" name="wc_confirm_email" id="wc_confirm_email" class="wc_confirm_email" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_confirm_email']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email'] : __('Confirm your subscription', 'wpdiscuz'); ?>" placeholder="<?php echo _e('Confirm your subscription', 'wpdiscuz'); ?>"/>
|
77 |
</label>
|
78 |
</td>
|
79 |
</tr>
|
80 |
<tr valign="top">
|
81 |
<th scope="row">
|
82 |
+
<?php _e('You\'ve successfully confirmed your subscription.', 'wpdiscuz'); ?>
|
83 |
</th>
|
84 |
<td colspan="3">
|
85 |
<label for="wc_comfirm_success_message">
|
86 |
+
<textarea name="wc_comfirm_success_message" id="wc_comfirm_success_message"><?php echo isset($this->wc_options_serialized->wc_phrases['wc_comfirm_success_message']) ? $this->wc_options_serialized->wc_phrases['wc_comfirm_success_message'] : __('You\'ve successfully confirmed your subscription.', 'wpdiscuz'); ?></textarea>
|
87 |
</label>
|
88 |
</td>
|
89 |
</tr>
|
90 |
<tr valign="top">
|
91 |
<th scope="row">
|
92 |
+
<?php _e('Subscribe Confirmation Email Subject', 'wpdiscuz'); ?>
|
93 |
</th>
|
94 |
<td colspan="3">
|
95 |
<label for="wc_confirm_email_subject">
|
96 |
+
<input type="text" name="wc_confirm_email_subject" id="wc_confirm_email_subject" class="wc_confirm_email_subject" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_confirm_email_subject']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email_subject'] : __('Subscribe Confirmation', 'wpdiscuz'); ?>" placeholder="<?php echo _e('Subscribe Confirmation', 'wpdiscuz'); ?>"/>
|
97 |
</label>
|
98 |
</td>
|
99 |
</tr>
|
100 |
|
101 |
<tr valign="top">
|
102 |
<th scope="row">
|
103 |
+
<?php _e('Subscribe Confirmation Email Content', 'wpdiscuz'); ?>
|
104 |
</th>
|
105 |
<td colspan="3">
|
106 |
<label for="wc_confirm_email_message">
|
107 |
+
<textarea name="wc_confirm_email_message" id="wc_confirm_email_message"><?php echo isset($this->wc_options_serialized->wc_phrases['wc_confirm_email_message']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email_message'] : __('Hi, <br/> You just subscribed for new comments on our website. This means you will receive an email when new comments are posted according to subscription option you\'ve chosen. <br/> To activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.', 'wpdiscuz'); ?></textarea>
|
108 |
</label>
|
109 |
</td>
|
110 |
</tr>
|
options/phrases-layout/phrases-form.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Form Template Phrases',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
-
<?php _e('Comment Field Start',
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_comment_start_text">
|
@@ -14,7 +14,7 @@
|
|
14 |
</tr>
|
15 |
<tr valign="top">
|
16 |
<th scope="row">
|
17 |
-
<?php _e('Comment Field Join',
|
18 |
</th>
|
19 |
<td colspan="3">
|
20 |
<label for="wc_comment_join_text">
|
@@ -24,7 +24,7 @@
|
|
24 |
</tr>
|
25 |
<tr valign="top">
|
26 |
<th scope="row">
|
27 |
-
<?php _e('Email Field',
|
28 |
</th>
|
29 |
<td colspan="3">
|
30 |
<label for="wc_email_text">
|
@@ -34,7 +34,7 @@
|
|
34 |
</tr>
|
35 |
<tr valign="top">
|
36 |
<th scope="row">
|
37 |
-
<?php _e('Name Field',
|
38 |
</th>
|
39 |
<td colspan="3">
|
40 |
<label for="wc_name_text">
|
@@ -44,7 +44,7 @@
|
|
44 |
</tr>
|
45 |
<tr valign="top">
|
46 |
<th scope="row">
|
47 |
-
<?php _e('WebSite URL Field',
|
48 |
</th>
|
49 |
<td colspan="3">
|
50 |
<label for="wc_website_text">
|
@@ -54,7 +54,7 @@
|
|
54 |
</tr>
|
55 |
<tr valign="top">
|
56 |
<th scope="row">
|
57 |
-
<?php _e('CAPTCHA Field',
|
58 |
</th>
|
59 |
<td colspan="3">
|
60 |
<label for="wc_captcha_text">
|
@@ -64,7 +64,7 @@
|
|
64 |
</tr>
|
65 |
<tr valign="top">
|
66 |
<th scope="row">
|
67 |
-
<?php _e('Submit Button',
|
68 |
</th>
|
69 |
<td colspan="3">
|
70 |
<label for="wc_submit_text">
|
@@ -74,59 +74,59 @@
|
|
74 |
</tr>
|
75 |
<tr valign="top">
|
76 |
<th scope="row">
|
77 |
-
<?php _e('Manage Subscriptions',
|
78 |
</th>
|
79 |
<td colspan="3">
|
80 |
<label for="wc_manage_subscribtions">
|
81 |
-
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_manage_subscribtions']) ? $this->wc_options_serialized->wc_phrases['wc_manage_subscribtions'] : __('Manage Subscriptions',
|
82 |
</label>
|
83 |
</td>
|
84 |
</tr>
|
85 |
<tr valign="top">
|
86 |
<th scope="row">
|
87 |
-
<?php _e('Notify "None"',
|
88 |
</th>
|
89 |
<td colspan="3">
|
90 |
<label for="wc_notify_none">
|
91 |
-
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_notify_none']) ? $this->wc_options_serialized->wc_phrases['wc_notify_none'] : __('None',
|
92 |
</label>
|
93 |
</td>
|
94 |
</tr>
|
95 |
<tr valign="top">
|
96 |
<th scope="row">
|
97 |
-
<?php _e('Notify on new comments (checkbox)',
|
98 |
</th>
|
99 |
<td colspan="3">
|
100 |
<label for="wc_notify_on_new_comment">
|
101 |
-
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_notify_on_new_comment']) ? $this->wc_options_serialized->wc_phrases['wc_notify_on_new_comment'] : __('Notify of all new follow-up comments',
|
102 |
</label>
|
103 |
</td>
|
104 |
</tr>
|
105 |
|
106 |
<tr valign="top">
|
107 |
<th scope="row">
|
108 |
-
<?php _e('Notify on all new replies (checkbox)',
|
109 |
</th>
|
110 |
<td colspan="3">
|
111 |
<label for="wc_notify_on_all_new_reply">
|
112 |
-
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_notify_on_all_new_reply']) ? $this->wc_options_serialized->wc_phrases['wc_notify_on_all_new_reply'] : __('Notify of new replies to all my comments',
|
113 |
</label>
|
114 |
</td>
|
115 |
</tr>
|
116 |
|
117 |
<tr valign="top">
|
118 |
<th scope="row">
|
119 |
-
<?php _e('Notify on new replies (checkbox)',
|
120 |
</th>
|
121 |
<td colspan="3">
|
122 |
<label for="wc_notify_on_new_reply">
|
123 |
-
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_notify_on_new_reply']) ? $this->wc_options_serialized->wc_phrases['wc_notify_on_new_reply'] : __('Notify of new replies to this comment',
|
124 |
</label>
|
125 |
</td>
|
126 |
</tr>
|
127 |
<tr valign="top">
|
128 |
<th scope="row">
|
129 |
-
<?php _e('Subscribed on this comment replies',
|
130 |
</th>
|
131 |
<td colspan="3">
|
132 |
<label for="wc_subscribed_on_comment">
|
@@ -136,7 +136,7 @@
|
|
136 |
</tr>
|
137 |
<tr valign="top">
|
138 |
<th scope="row">
|
139 |
-
<?php _e('Subscribed on all your comments replies',
|
140 |
</th>
|
141 |
<td colspan="3">
|
142 |
<label for="wc_subscribed_on_all_comment">
|
@@ -146,7 +146,7 @@
|
|
146 |
</tr>
|
147 |
<tr valign="top">
|
148 |
<th scope="row">
|
149 |
-
<?php _e('Subscribed on this post',
|
150 |
</th>
|
151 |
<td colspan="3">
|
152 |
<label for="wc_subscribed_on_post">
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Form Template Phrases', 'wpdiscuz'); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
+
<?php _e('Comment Field Start', 'wpdiscuz'); ?>
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_comment_start_text">
|
14 |
</tr>
|
15 |
<tr valign="top">
|
16 |
<th scope="row">
|
17 |
+
<?php _e('Comment Field Join', 'wpdiscuz'); ?>
|
18 |
</th>
|
19 |
<td colspan="3">
|
20 |
<label for="wc_comment_join_text">
|
24 |
</tr>
|
25 |
<tr valign="top">
|
26 |
<th scope="row">
|
27 |
+
<?php _e('Email Field', 'wpdiscuz'); ?>
|
28 |
</th>
|
29 |
<td colspan="3">
|
30 |
<label for="wc_email_text">
|
34 |
</tr>
|
35 |
<tr valign="top">
|
36 |
<th scope="row">
|
37 |
+
<?php _e('Name Field', 'wpdiscuz'); ?>
|
38 |
</th>
|
39 |
<td colspan="3">
|
40 |
<label for="wc_name_text">
|
44 |
</tr>
|
45 |
<tr valign="top">
|
46 |
<th scope="row">
|
47 |
+
<?php _e('WebSite URL Field', 'wpdiscuz'); ?>
|
48 |
</th>
|
49 |
<td colspan="3">
|
50 |
<label for="wc_website_text">
|
54 |
</tr>
|
55 |
<tr valign="top">
|
56 |
<th scope="row">
|
57 |
+
<?php _e('CAPTCHA Field', 'wpdiscuz'); ?>
|
58 |
</th>
|
59 |
<td colspan="3">
|
60 |
<label for="wc_captcha_text">
|
64 |
</tr>
|
65 |
<tr valign="top">
|
66 |
<th scope="row">
|
67 |
+
<?php _e('Submit Button', 'wpdiscuz'); ?>
|
68 |
</th>
|
69 |
<td colspan="3">
|
70 |
<label for="wc_submit_text">
|
74 |
</tr>
|
75 |
<tr valign="top">
|
76 |
<th scope="row">
|
77 |
+
<?php _e('Manage Subscriptions', 'wpdiscuz'); ?>
|
78 |
</th>
|
79 |
<td colspan="3">
|
80 |
<label for="wc_manage_subscribtions">
|
81 |
+
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_manage_subscribtions']) ? $this->wc_options_serialized->wc_phrases['wc_manage_subscribtions'] : __('Manage Subscriptions', 'wpdiscuz'); ?>" name="wc_manage_subscribtions" id="wc_manage_subscribtions" />
|
82 |
</label>
|
83 |
</td>
|
84 |
</tr>
|
85 |
<tr valign="top">
|
86 |
<th scope="row">
|
87 |
+
<?php _e('Notify "None"', 'wpdiscuz'); ?>
|
88 |
</th>
|
89 |
<td colspan="3">
|
90 |
<label for="wc_notify_none">
|
91 |
+
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_notify_none']) ? $this->wc_options_serialized->wc_phrases['wc_notify_none'] : __('None', 'wpdiscuz'); ?>" name="wc_notify_none" id="wc_notify_none" />
|
92 |
</label>
|
93 |
</td>
|
94 |
</tr>
|
95 |
<tr valign="top">
|
96 |
<th scope="row">
|
97 |
+
<?php _e('Notify on new comments (checkbox)', 'wpdiscuz'); ?>
|
98 |
</th>
|
99 |
<td colspan="3">
|
100 |
<label for="wc_notify_on_new_comment">
|
101 |
+
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_notify_on_new_comment']) ? $this->wc_options_serialized->wc_phrases['wc_notify_on_new_comment'] : __('Notify of all new follow-up comments', 'wpdiscuz'); ?>" name="wc_notify_on_new_comment" id="wc_notify_on_new_comment" />
|
102 |
</label>
|
103 |
</td>
|
104 |
</tr>
|
105 |
|
106 |
<tr valign="top">
|
107 |
<th scope="row">
|
108 |
+
<?php _e('Notify on all new replies (checkbox)', 'wpdiscuz'); ?>
|
109 |
</th>
|
110 |
<td colspan="3">
|
111 |
<label for="wc_notify_on_all_new_reply">
|
112 |
+
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_notify_on_all_new_reply']) ? $this->wc_options_serialized->wc_phrases['wc_notify_on_all_new_reply'] : __('Notify of new replies to all my comments', 'wpdiscuz'); ?>" name="wc_notify_on_all_new_reply" id="wc_notify_on_all_new_reply" />
|
113 |
</label>
|
114 |
</td>
|
115 |
</tr>
|
116 |
|
117 |
<tr valign="top">
|
118 |
<th scope="row">
|
119 |
+
<?php _e('Notify on new replies (checkbox)', 'wpdiscuz'); ?>
|
120 |
</th>
|
121 |
<td colspan="3">
|
122 |
<label for="wc_notify_on_new_reply">
|
123 |
+
<input type="text" value="<?php echo isset($this->wc_options_serialized->wc_phrases['wc_notify_on_new_reply']) ? $this->wc_options_serialized->wc_phrases['wc_notify_on_new_reply'] : __('Notify of new replies to this comment', 'wpdiscuz'); ?>" name="wc_notify_on_new_reply" id="wc_notify_on_new_reply" />
|
124 |
</label>
|
125 |
</td>
|
126 |
</tr>
|
127 |
<tr valign="top">
|
128 |
<th scope="row">
|
129 |
+
<?php _e('Subscribed on this comment replies', 'wpdiscuz'); ?>
|
130 |
</th>
|
131 |
<td colspan="3">
|
132 |
<label for="wc_subscribed_on_comment">
|
136 |
</tr>
|
137 |
<tr valign="top">
|
138 |
<th scope="row">
|
139 |
+
<?php _e('Subscribed on all your comments replies', 'wpdiscuz'); ?>
|
140 |
</th>
|
141 |
<td colspan="3">
|
142 |
<label for="wc_subscribed_on_all_comment">
|
146 |
</tr>
|
147 |
<tr valign="top">
|
148 |
<th scope="row">
|
149 |
+
<?php _e('Subscribed on this post', 'wpdiscuz'); ?>
|
150 |
</th>
|
151 |
<td colspan="3">
|
152 |
<label for="wc_subscribed_on_post">
|
options/phrases-layout/phrases-general.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('General Phrases',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
-
<?php _e('Leave a Reply',
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_leave_a_reply_text">
|
@@ -14,7 +14,7 @@
|
|
14 |
</tr>
|
15 |
<tr valign="top">
|
16 |
<th scope="row">
|
17 |
-
<?php _e('Be the first to comment',
|
18 |
</th>
|
19 |
<td colspan="3">
|
20 |
<label for="wc_be_the_first_text">
|
@@ -24,7 +24,7 @@
|
|
24 |
</tr>
|
25 |
<tr valign="top">
|
26 |
<th scope="row">
|
27 |
-
<?php _e('Comment',
|
28 |
</th>
|
29 |
<td colspan="3">
|
30 |
<label for="wc_header_text">
|
@@ -34,7 +34,7 @@
|
|
34 |
</tr>
|
35 |
<tr valign="top">
|
36 |
<th scope="row">
|
37 |
-
<?php _e('Comment (Plural Form)',
|
38 |
</th>
|
39 |
<td colspan="3">
|
40 |
<label for="wc_header_text_plural">
|
@@ -44,7 +44,7 @@
|
|
44 |
</tr>
|
45 |
<tr valign="top">
|
46 |
<th scope="row">
|
47 |
-
<?php _e('On',
|
48 |
</th>
|
49 |
<td colspan="3">
|
50 |
<label for="wc_header_on_text">
|
@@ -54,7 +54,7 @@
|
|
54 |
</tr>
|
55 |
<tr valign="top">
|
56 |
<th scope="row">
|
57 |
-
<?php _e('Load More Button',
|
58 |
</th>
|
59 |
<td colspan="3">
|
60 |
<label for="wc_load_more_submit_text">
|
@@ -64,7 +64,7 @@
|
|
64 |
</tr>
|
65 |
<tr valign="top">
|
66 |
<th scope="row">
|
67 |
-
<?php _e('Load Rest of Comments',
|
68 |
</th>
|
69 |
<td colspan="3">
|
70 |
<label for="wc_load_rest_comments_submit_text">
|
@@ -74,7 +74,7 @@
|
|
74 |
</tr>
|
75 |
<tr valign="top">
|
76 |
<th scope="row">
|
77 |
-
<?php _e('Button text if has new comment',
|
78 |
</th>
|
79 |
<td colspan="3">
|
80 |
<label for="wc_new_comment_button_text">
|
@@ -84,7 +84,7 @@
|
|
84 |
</tr>
|
85 |
<tr valign="top">
|
86 |
<th scope="row">
|
87 |
-
<?php _e('Button text if has new comments (Plural Form)',
|
88 |
</th>
|
89 |
<td colspan="3">
|
90 |
<label for="wc_new_comments_button_text">
|
@@ -94,7 +94,7 @@
|
|
94 |
</tr>
|
95 |
<tr valign="top">
|
96 |
<th scope="row">
|
97 |
-
<?php _e('Button text if has new reply',
|
98 |
</th>
|
99 |
<td colspan="3">
|
100 |
<label for="wc_new_reply_button_text">
|
@@ -104,7 +104,7 @@
|
|
104 |
</tr>
|
105 |
<tr valign="top">
|
106 |
<th scope="row">
|
107 |
-
<?php _e('Button text if has new replies (Plural Form)',
|
108 |
</th>
|
109 |
<td colspan="3">
|
110 |
<label for="wc_new_replies_button_text">
|
@@ -114,7 +114,7 @@
|
|
114 |
</tr>
|
115 |
<tr valign="top">
|
116 |
<th scope="row">
|
117 |
-
<?php _e('Text on load more button if has new comment(s)',
|
118 |
</th>
|
119 |
<td colspan="3">
|
120 |
<label for="wc_new_comments_text">
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('General Phrases', 'wpdiscuz'); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
+
<?php _e('Leave a Reply', 'wpdiscuz'); ?>
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_leave_a_reply_text">
|
14 |
</tr>
|
15 |
<tr valign="top">
|
16 |
<th scope="row">
|
17 |
+
<?php _e('Be the first to comment', 'wpdiscuz'); ?>
|
18 |
</th>
|
19 |
<td colspan="3">
|
20 |
<label for="wc_be_the_first_text">
|
24 |
</tr>
|
25 |
<tr valign="top">
|
26 |
<th scope="row">
|
27 |
+
<?php _e('Comment', 'wpdiscuz'); ?>
|
28 |
</th>
|
29 |
<td colspan="3">
|
30 |
<label for="wc_header_text">
|
34 |
</tr>
|
35 |
<tr valign="top">
|
36 |
<th scope="row">
|
37 |
+
<?php _e('Comment (Plural Form)', 'wpdiscuz'); ?>
|
38 |
</th>
|
39 |
<td colspan="3">
|
40 |
<label for="wc_header_text_plural">
|
44 |
</tr>
|
45 |
<tr valign="top">
|
46 |
<th scope="row">
|
47 |
+
<?php _e('On', 'wpdiscuz'); ?>
|
48 |
</th>
|
49 |
<td colspan="3">
|
50 |
<label for="wc_header_on_text">
|
54 |
</tr>
|
55 |
<tr valign="top">
|
56 |
<th scope="row">
|
57 |
+
<?php _e('Load More Button', 'wpdiscuz'); ?>
|
58 |
</th>
|
59 |
<td colspan="3">
|
60 |
<label for="wc_load_more_submit_text">
|
64 |
</tr>
|
65 |
<tr valign="top">
|
66 |
<th scope="row">
|
67 |
+
<?php _e('Load Rest of Comments', 'wpdiscuz'); ?>
|
68 |
</th>
|
69 |
<td colspan="3">
|
70 |
<label for="wc_load_rest_comments_submit_text">
|
74 |
</tr>
|
75 |
<tr valign="top">
|
76 |
<th scope="row">
|
77 |
+
<?php _e('Button text if has new comment', 'wpdiscuz'); ?>
|
78 |
</th>
|
79 |
<td colspan="3">
|
80 |
<label for="wc_new_comment_button_text">
|
84 |
</tr>
|
85 |
<tr valign="top">
|
86 |
<th scope="row">
|
87 |
+
<?php _e('Button text if has new comments (Plural Form)', 'wpdiscuz'); ?>
|
88 |
</th>
|
89 |
<td colspan="3">
|
90 |
<label for="wc_new_comments_button_text">
|
94 |
</tr>
|
95 |
<tr valign="top">
|
96 |
<th scope="row">
|
97 |
+
<?php _e('Button text if has new reply', 'wpdiscuz'); ?>
|
98 |
</th>
|
99 |
<td colspan="3">
|
100 |
<label for="wc_new_reply_button_text">
|
104 |
</tr>
|
105 |
<tr valign="top">
|
106 |
<th scope="row">
|
107 |
+
<?php _e('Button text if has new replies (Plural Form)', 'wpdiscuz'); ?>
|
108 |
</th>
|
109 |
<td colspan="3">
|
110 |
<label for="wc_new_replies_button_text">
|
114 |
</tr>
|
115 |
<tr valign="top">
|
116 |
<th scope="row">
|
117 |
+
<?php _e('Text on load more button if has new comment(s)', 'wpdiscuz'); ?>
|
118 |
</th>
|
119 |
<td colspan="3">
|
120 |
<label for="wc_new_comments_text">
|
options/phrases-layout/phrases-notification.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<div>
|
2 |
-
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Notification Phrases',
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
-
<?php _e('You\'ve successfully unsubscribed.',
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_unsubscribe_message">
|
@@ -15,7 +15,7 @@
|
|
15 |
|
16 |
<tr valign="top">
|
17 |
<th scope="row">
|
18 |
-
<?php _e('Error message for empty field',
|
19 |
</th>
|
20 |
<td colspan="3">
|
21 |
<label for="wc_error_empty_text">
|
@@ -25,7 +25,7 @@
|
|
25 |
</tr>
|
26 |
<tr valign="top">
|
27 |
<th scope="row">
|
28 |
-
<?php _e('Error message for invalid email field',
|
29 |
</th>
|
30 |
<td colspan="3">
|
31 |
<label for="wc_error_email_text">
|
@@ -35,7 +35,7 @@
|
|
35 |
</tr>
|
36 |
<tr valign="top">
|
37 |
<th scope="row">
|
38 |
-
<?php _e('Error message for invalid website url field',
|
39 |
</th>
|
40 |
<td colspan="3">
|
41 |
<label for="wc_error_url_text">
|
@@ -45,7 +45,7 @@
|
|
45 |
</tr>
|
46 |
<tr valign="top">
|
47 |
<th scope="row">
|
48 |
-
<?php _e('You must be',
|
49 |
</th>
|
50 |
<td colspan="3">
|
51 |
<label for="wc_you_must_be_text">
|
@@ -55,7 +55,7 @@
|
|
55 |
</tr>
|
56 |
<tr valign="top">
|
57 |
<th scope="row">
|
58 |
-
<?php _e('Logged in as',
|
59 |
</th>
|
60 |
<td colspan="3">
|
61 |
<label for="wc_logged_in_as">
|
@@ -65,7 +65,7 @@
|
|
65 |
</tr>
|
66 |
<tr valign="top">
|
67 |
<th scope="row">
|
68 |
-
<?php _e('Log out',
|
69 |
</th>
|
70 |
<td colspan="3">
|
71 |
<label for="wc_log_out">
|
@@ -75,7 +75,7 @@
|
|
75 |
</tr>
|
76 |
<tr valign="top">
|
77 |
<th scope="row">
|
78 |
-
<?php _e('Logged In',
|
79 |
</th>
|
80 |
<td colspan="3">
|
81 |
<label for="wc_logged_in_text">
|
@@ -85,7 +85,7 @@
|
|
85 |
</tr>
|
86 |
<tr valign="top">
|
87 |
<th scope="row">
|
88 |
-
<?php _e('To post a comment',
|
89 |
</th>
|
90 |
<td colspan="3">
|
91 |
<label for="wc_to_post_comment_text">
|
@@ -95,7 +95,7 @@
|
|
95 |
</tr>
|
96 |
<tr valign="top">
|
97 |
<th scope="row">
|
98 |
-
<?php _e('Vote Counted',
|
99 |
</th>
|
100 |
<td colspan="3">
|
101 |
<label for="wc_vote_counted">
|
@@ -105,7 +105,7 @@
|
|
105 |
</tr>
|
106 |
<tr valign="top">
|
107 |
<th scope="row">
|
108 |
-
<?php _e('You can vote only 1 time',
|
109 |
</th>
|
110 |
<td colspan="3">
|
111 |
<label for="wc_vote_only_one_time">
|
@@ -115,7 +115,7 @@
|
|
115 |
</tr>
|
116 |
<tr valign="top">
|
117 |
<th scope="row">
|
118 |
-
<?php _e('Voting Error',
|
119 |
</th>
|
120 |
<td colspan="3">
|
121 |
<label for="wc_voting_error">
|
@@ -125,7 +125,7 @@
|
|
125 |
</tr>
|
126 |
<tr valign="top">
|
127 |
<th scope="row">
|
128 |
-
<?php _e('Login To Vote',
|
129 |
</th>
|
130 |
<td colspan="3">
|
131 |
<label for="wc_login_to_vote">
|
@@ -135,7 +135,7 @@
|
|
135 |
</tr>
|
136 |
<tr valign="top">
|
137 |
<th scope="row">
|
138 |
-
<?php _e('You Cannot Vote On Your Comment',
|
139 |
</th>
|
140 |
<td colspan="3">
|
141 |
<label for="wc_self_vote">
|
@@ -145,7 +145,7 @@
|
|
145 |
</tr>
|
146 |
<tr valign="top">
|
147 |
<th scope="row">
|
148 |
-
<?php _e('You are not allowed to vote for this comment (Voting from same IP)',
|
149 |
</th>
|
150 |
<td colspan="3">
|
151 |
<label for="wc_deny_voting_from_same_ip">
|
@@ -155,7 +155,7 @@
|
|
155 |
</tr>
|
156 |
<tr valign="top">
|
157 |
<th scope="row">
|
158 |
-
<?php _e('Invalid Captcha Code',
|
159 |
</th>
|
160 |
<td colspan="3">
|
161 |
<label for="wc_invalid_captcha">
|
@@ -165,7 +165,7 @@
|
|
165 |
</tr>
|
166 |
<tr valign="top">
|
167 |
<th scope="row">
|
168 |
-
<?php _e('Some of field value is invalid',
|
169 |
</th>
|
170 |
<td colspan="3">
|
171 |
<label for="wc_invalid_field">
|
@@ -175,7 +175,7 @@
|
|
175 |
</tr>
|
176 |
<tr valign="top">
|
177 |
<th scope="row">
|
178 |
-
<?php _e('Comment waiting moderation',
|
179 |
</th>
|
180 |
<td colspan="3">
|
181 |
<label for="wc_held_for_moderate">
|
@@ -185,7 +185,7 @@
|
|
185 |
</tr>
|
186 |
<tr valign="top">
|
187 |
<th scope="row">
|
188 |
-
<?php _e('Message if comment content length is too long',
|
189 |
</th>
|
190 |
<td colspan="3">
|
191 |
<label for="wc_msg_comment_text_max_length">
|
@@ -195,7 +195,7 @@
|
|
195 |
</tr>
|
196 |
<tr valign="top">
|
197 |
<th scope="row">
|
198 |
-
<?php _e('Message if comment was not updated',
|
199 |
</th>
|
200 |
<td colspan="3">
|
201 |
<label for="wc_comment_not_updated">
|
@@ -205,7 +205,7 @@
|
|
205 |
</tr>
|
206 |
<tr valign="top">
|
207 |
<th scope="row">
|
208 |
-
<?php _e('Message if comment no longer possible to edit',
|
209 |
</th>
|
210 |
<td colspan="3">
|
211 |
<label for="wc_comment_edit_not_possible">
|
@@ -216,7 +216,7 @@
|
|
216 |
|
217 |
<tr valign="top">
|
218 |
<th scope="row">
|
219 |
-
<?php _e('Message if comment text not changed',
|
220 |
</th>
|
221 |
<td colspan="3">
|
222 |
<label for="wc_comment_not_edited">
|
1 |
<div>
|
2 |
+
<h2 style="padding:5px 10px 10px 10px; margin:0px;"><?php _e('Notification Phrases', 'wpdiscuz'); ?></h2>
|
3 |
<table class="wp-list-table widefat plugins" style="margin-top:10px; border:none;">
|
4 |
<tbody>
|
5 |
<tr valign="top">
|
6 |
<th scope="row">
|
7 |
+
<?php _e('You\'ve successfully unsubscribed.', 'wpdiscuz'); ?>
|
8 |
</th>
|
9 |
<td colspan="3">
|
10 |
<label for="wc_unsubscribe_message">
|
15 |
|
16 |
<tr valign="top">
|
17 |
<th scope="row">
|
18 |
+
<?php _e('Error message for empty field', 'wpdiscuz'); ?>
|
19 |
</th>
|
20 |
<td colspan="3">
|
21 |
<label for="wc_error_empty_text">
|
25 |
</tr>
|
26 |
<tr valign="top">
|
27 |
<th scope="row">
|
28 |
+
<?php _e('Error message for invalid email field', 'wpdiscuz'); ?>
|
29 |
</th>
|
30 |
<td colspan="3">
|
31 |
<label for="wc_error_email_text">
|
35 |
</tr>
|
36 |
<tr valign="top">
|
37 |
<th scope="row">
|
38 |
+
<?php _e('Error message for invalid website url field', 'wpdiscuz'); ?>
|
39 |
</th>
|
40 |
<td colspan="3">
|
41 |
<label for="wc_error_url_text">
|
45 |
</tr>
|
46 |
<tr valign="top">
|
47 |
<th scope="row">
|
48 |
+
<?php _e('You must be', 'wpdiscuz'); ?>
|
49 |
</th>
|
50 |
<td colspan="3">
|
51 |
<label for="wc_you_must_be_text">
|
55 |
</tr>
|
56 |
<tr valign="top">
|
57 |
<th scope="row">
|
58 |
+
<?php _e('Logged in as', 'wpdiscuz'); ?>
|
59 |
</th>
|
60 |
<td colspan="3">
|
61 |
<label for="wc_logged_in_as">
|
65 |
</tr>
|
66 |
<tr valign="top">
|
67 |
<th scope="row">
|
68 |
+
<?php _e('Log out', 'wpdiscuz'); ?>
|
69 |
</th>
|
70 |
<td colspan="3">
|
71 |
<label for="wc_log_out">
|
75 |
</tr>
|
76 |
<tr valign="top">
|
77 |
<th scope="row">
|
78 |
+
<?php _e('Logged In', 'wpdiscuz'); ?>
|
79 |
</th>
|
80 |
<td colspan="3">
|
81 |
<label for="wc_logged_in_text">
|
85 |
</tr>
|
86 |
<tr valign="top">
|
87 |
<th scope="row">
|
88 |
+
<?php _e('To post a comment', 'wpdiscuz'); ?>
|
89 |
</th>
|
90 |
<td colspan="3">
|
91 |
<label for="wc_to_post_comment_text">
|
95 |
</tr>
|
96 |
<tr valign="top">
|
97 |
<th scope="row">
|
98 |
+
<?php _e('Vote Counted', 'wpdiscuz'); ?>
|
99 |
</th>
|
100 |
<td colspan="3">
|
101 |
<label for="wc_vote_counted">
|
105 |
</tr>
|
106 |
<tr valign="top">
|
107 |
<th scope="row">
|
108 |
+
<?php _e('You can vote only 1 time', 'wpdiscuz'); ?>
|
109 |
</th>
|
110 |
<td colspan="3">
|
111 |
<label for="wc_vote_only_one_time">
|
115 |
</tr>
|
116 |
<tr valign="top">
|
117 |
<th scope="row">
|
118 |
+
<?php _e('Voting Error', 'wpdiscuz'); ?>
|
119 |
</th>
|
120 |
<td colspan="3">
|
121 |
<label for="wc_voting_error">
|
125 |
</tr>
|
126 |
<tr valign="top">
|
127 |
<th scope="row">
|
128 |
+
<?php _e('Login To Vote', 'wpdiscuz'); ?>
|
129 |
</th>
|
130 |
<td colspan="3">
|
131 |
<label for="wc_login_to_vote">
|
135 |
</tr>
|
136 |
<tr valign="top">
|
137 |
<th scope="row">
|
138 |
+
<?php _e('You Cannot Vote On Your Comment', 'wpdiscuz'); ?>
|
139 |
</th>
|
140 |
<td colspan="3">
|
141 |
<label for="wc_self_vote">
|
145 |
</tr>
|
146 |
<tr valign="top">
|
147 |
<th scope="row">
|
148 |
+
<?php _e('You are not allowed to vote for this comment (Voting from same IP)', 'wpdiscuz'); ?>
|
149 |
</th>
|
150 |
<td colspan="3">
|
151 |
<label for="wc_deny_voting_from_same_ip">
|
155 |
</tr>
|
156 |
<tr valign="top">
|
157 |
<th scope="row">
|
158 |
+
<?php _e('Invalid Captcha Code', 'wpdiscuz'); ?>
|
159 |
</th>
|
160 |
<td colspan="3">
|
161 |
<label for="wc_invalid_captcha">
|
165 |
</tr>
|
166 |
<tr valign="top">
|
167 |
<th scope="row">
|
168 |
+
<?php _e('Some of field value is invalid', 'wpdiscuz'); ?>
|
169 |
</th>
|
170 |
<td colspan="3">
|
171 |
<label for="wc_invalid_field">
|
175 |
</tr>
|
176 |
<tr valign="top">
|
177 |
<th scope="row">
|
178 |
+
<?php _e('Comment waiting moderation', 'wpdiscuz'); ?>
|
179 |
</th>
|
180 |
<td colspan="3">
|
181 |
<label for="wc_held_for_moderate">
|
185 |
</tr>
|
186 |
<tr valign="top">
|
187 |
<th scope="row">
|
188 |
+
<?php _e('Message if comment content length is too long', 'wpdiscuz'); ?>
|
189 |
</th>
|
190 |
<td colspan="3">
|
191 |
<label for="wc_msg_comment_text_max_length">
|
195 |
</tr>
|
196 |
<tr valign="top">
|
197 |
<th scope="row">
|
198 |
+
<?php _e('Message if comment was not updated', 'wpdiscuz'); ?>
|
199 |
</th>
|
200 |
<td colspan="3">
|
201 |
<label for="wc_comment_not_updated">
|
205 |
</tr>
|
206 |
<tr valign="top">
|
207 |
<th scope="row">
|
208 |
+
<?php _e('Message if comment no longer possible to edit', 'wpdiscuz'); ?>
|
209 |
</th>
|
210 |
<td colspan="3">
|
211 |
<label for="wc_comment_edit_not_possible">
|
216 |
|
217 |
<tr valign="top">
|
218 |
<th scope="row">
|
219 |
+
<?php _e('Message if comment text not changed', 'wpdiscuz'); ?>
|
220 |
</th>
|
221 |
<td colspan="3">
|
222 |
<label for="wc_comment_not_edited">
|
options/wc-options-serialize.php
CHANGED
@@ -425,98 +425,98 @@ class WC_Options_Serialize {
|
|
425 |
*/
|
426 |
public function init_phrases() {
|
427 |
$this->wc_phrases = array(
|
428 |
-
'wc_leave_a_reply_text' => __('Leave a Reply',
|
429 |
-
'wc_be_the_first_text' => __('Be the First to Comment!',
|
430 |
-
'wc_header_text' => __('Comment',
|
431 |
-
'wc_header_text_plural' => __('Comments',
|
432 |
-
'wc_header_on_text' => __('on',
|
433 |
-
'wc_comment_start_text' => __('Start the discussion',
|
434 |
-
'wc_comment_join_text' => __('Join the discussion',
|
435 |
-
'wc_email_text' => __('Email',
|
436 |
-
'wc_name_text' => __('Name',
|
437 |
-
'wc_website_text' => __('WebSite URL',
|
438 |
-
'wc_captcha_text' => __('Please insert the code above to comment',
|
439 |
-
'wc_submit_text' => __('Post Comment',
|
440 |
-
'wc_manage_subscribtions' => __('Manage Subscriptions',
|
441 |
-
'wc_notify_none' => __('None',
|
442 |
-
'wc_notify_on_new_comment' => __('Notify of all new follow-up comments',
|
443 |
-
'wc_notify_on_all_new_reply' => __('Notify of new replies to all my comments',
|
444 |
-
'wc_notify_on_new_reply' => __('Notify of new replies to this comment',
|
445 |
-
'wc_load_more_submit_text' => __('Load More Comments',
|
446 |
-
'wc_load_rest_comments_submit_text' => __('Load Rest of Comments',
|
447 |
-
'wc_reply_text' => __('Reply',
|
448 |
-
'wc_share_text' => __('Share',
|
449 |
-
'wc_edit_text' => __('Edit',
|
450 |
-
'wc_share_facebook' => __('Share On Facebook',
|
451 |
-
'wc_share_twitter' => __('Share On Twitter',
|
452 |
-
'wc_share_google' => __('Share On Google',
|
453 |
-
'wc_share_vk' => __('Share On VKontakte',
|
454 |
-
'wc_share_ok' => __('Share On Odnoklassniki',
|
455 |
-
'wc_hide_replies_text' => __('Hide Replies',
|
456 |
-
'wc_show_replies_text' => __('Show Replies',
|
457 |
-
'wc_user_title_guest_text' => __('Guest',
|
458 |
-
'wc_user_title_member_text' => __('Member',
|
459 |
-
'wc_user_title_author_text' => __('Author',
|
460 |
-
'wc_user_title_admin_text' => __('Admin',
|
461 |
-
'wc_email_subject' => __('New Comment',
|
462 |
-
'wc_email_message' => __('New comment on the discussion section you\'ve been interested in',
|
463 |
-
'wc_new_reply_email_subject' => __('New Reply',
|
464 |
-
'wc_new_reply_email_message' => __('New reply on the discussion section you\'ve been interested in',
|
465 |
-
'wc_subscribed_on_comment' => __('You\'re subscribed for new replies on this comment',
|
466 |
-
'wc_subscribed_on_all_comment' => __('You\'re subscribed for new replies on all your comments',
|
467 |
-
'wc_subscribed_on_post' => __('You\'re subscribed for new follow-up comments on this post',
|
468 |
-
'wc_unsubscribe' => __('Unsubscribe',
|
469 |
-
'wc_ignore_subscription' => __('Ignore Subscription',
|
470 |
-
'wc_unsubscribe_message' => __('You\'ve successfully unsubscribed.',
|
471 |
-
'wc_confirm_email' => __('Confirm your subscription',
|
472 |
-
'wc_comfirm_success_message' => __('You\'ve successfully confirmed your subscription.',
|
473 |
-
'wc_confirm_email_subject' => __('Subscribe Confirmation',
|
474 |
-
'wc_confirm_email_message' => __('Hi, <br/> You just subscribed for new comments on our website. This means you will receive an email when new comments are posted according to subscription option you\'ve chosen. <br/> To activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.',
|
475 |
-
'wc_error_empty_text' => __('please fill out this field to comment',
|
476 |
-
'wc_error_email_text' => __('email address is invalid',
|
477 |
-
'wc_error_url_text' => __('url is invalid',
|
478 |
-
'wc_year_text' => array('datetime' => array(__('year',
|
479 |
-
'wc_year_text_plural' => array('datetime' => array(__('years',
|
480 |
-
'wc_month_text' => array('datetime' => array(__('month',
|
481 |
-
'wc_month_text_plural' => array('datetime' => array(__('months',
|
482 |
-
'wc_day_text' => array('datetime' => array(__('day',
|
483 |
-
'wc_day_text_plural' => array('datetime' => array(__('days',
|
484 |
-
'wc_hour_text' => array('datetime' => array(__('hour',
|
485 |
-
'wc_hour_text_plural' => array('datetime' => array(__('hours',
|
486 |
-
'wc_minute_text' => array('datetime' => array(__('minute',
|
487 |
-
'wc_minute_text_plural' => array('datetime' => array(__('minutes',
|
488 |
-
'wc_second_text' => array('datetime' => array(__('second',
|
489 |
-
'wc_second_text_plural' => array('datetime' => array(__('seconds',
|
490 |
-
'wc_right_now_text' => __('right now',
|
491 |
-
'wc_ago_text' => __('ago',
|
492 |
-
'wc_posted_today_text' => __('Today',
|
493 |
-
'wc_you_must_be_text' => __('You must be',
|
494 |
-
'wc_logged_in_as' => __('You are logged in as',
|
495 |
-
'wc_log_out' => __('Log out',
|
496 |
-
'wc_logged_in_text' => __('logged in',
|
497 |
-
'wc_to_post_comment_text' => __('to post a comment.',
|
498 |
-
'wc_vote_up' => __('Vote Up',
|
499 |
-
'wc_vote_down' => __('Vote Down',
|
500 |
-
'wc_vote_counted' => __('Vote Counted',
|
501 |
-
'wc_vote_only_one_time' => __("You've already voted for this comment",
|
502 |
-
'wc_voting_error' => __('Voting Error',
|
503 |
-
'wc_login_to_vote' => __('You Must Be Logged In To Vote',
|
504 |
-
'wc_self_vote' => __('You cannot vote for your comment',
|
505 |
-
'wc_deny_voting_from_same_ip' => __('You are not allowed to vote for this comment',
|
506 |
-
'wc_invalid_captcha' => __('Invalid Captcha Code',
|
507 |
-
'wc_invalid_field' => __('Some of field value is invalid',
|
508 |
-
'wc_new_comment_button_text' => __('new comment',
|
509 |
-
'wc_new_comments_button_text' => __('new comments',
|
510 |
-
'wc_held_for_moderate' => __('Comment awaiting moderation',
|
511 |
-
'wc_new_reply_button_text' => __('new reply on your comment',
|
512 |
-
'wc_new_replies_button_text' => __('new replies on your comments',
|
513 |
-
'wc_new_comments_text' => __('New',
|
514 |
-
'wc_comment_not_updated' => __('Sorry, the comment was not updated',
|
515 |
-
'wc_comment_edit_not_possible' => __('Sorry, this comment no longer possible to edit',
|
516 |
-
'wc_comment_not_edited' => __('You\'ve not made any changes',
|
517 |
-
'wc_comment_edit_save_button' => __('Save',
|
518 |
-
'wc_comment_edit_cancel_button' => __('Cancel',
|
519 |
-
'wc_msg_comment_text_max_length' => __('Comment text is too long (maximum %s characters allowed)',
|
520 |
);
|
521 |
}
|
522 |
|
425 |
*/
|
426 |
public function init_phrases() {
|
427 |
$this->wc_phrases = array(
|
428 |
+
'wc_leave_a_reply_text' => __('Leave a Reply', 'wpdiscuz'),
|
429 |
+
'wc_be_the_first_text' => __('Be the First to Comment!', 'wpdiscuz'),
|
430 |
+
'wc_header_text' => __('Comment', 'wpdiscuz'),
|
431 |
+
'wc_header_text_plural' => __('Comments', 'wpdiscuz'), // PLURAL
|
432 |
+
'wc_header_on_text' => __('on', 'wpdiscuz'),
|
433 |
+
'wc_comment_start_text' => __('Start the discussion', 'wpdiscuz'),
|
434 |
+
'wc_comment_join_text' => __('Join the discussion', 'wpdiscuz'),
|
435 |
+
'wc_email_text' => __('Email', 'wpdiscuz'),
|
436 |
+
'wc_name_text' => __('Name', 'wpdiscuz'),
|
437 |
+
'wc_website_text' => __('WebSite URL', 'wpdiscuz'),
|
438 |
+
'wc_captcha_text' => __('Please insert the code above to comment', 'wpdiscuz'),
|
439 |
+
'wc_submit_text' => __('Post Comment', 'wpdiscuz'),
|
440 |
+
'wc_manage_subscribtions' => __('Manage Subscriptions', 'wpdiscuz'),
|
441 |
+
'wc_notify_none' => __('None', 'wpdiscuz'),
|
442 |
+
'wc_notify_on_new_comment' => __('Notify of all new follow-up comments', 'wpdiscuz'),
|
443 |
+
'wc_notify_on_all_new_reply' => __('Notify of new replies to all my comments', 'wpdiscuz'),
|
444 |
+
'wc_notify_on_new_reply' => __('Notify of new replies to this comment', 'wpdiscuz'),
|
445 |
+
'wc_load_more_submit_text' => __('Load More Comments', 'wpdiscuz'),
|
446 |
+
'wc_load_rest_comments_submit_text' => __('Load Rest of Comments', 'wpdiscuz'),
|
447 |
+
'wc_reply_text' => __('Reply', 'wpdiscuz'),
|
448 |
+
'wc_share_text' => __('Share', 'wpdiscuz'),
|
449 |
+
'wc_edit_text' => __('Edit', 'wpdiscuz'),
|
450 |
+
'wc_share_facebook' => __('Share On Facebook', 'wpdiscuz'),
|
451 |
+
'wc_share_twitter' => __('Share On Twitter', 'wpdiscuz'),
|
452 |
+
'wc_share_google' => __('Share On Google', 'wpdiscuz'),
|
453 |
+
'wc_share_vk' => __('Share On VKontakte', 'wpdiscuz'),
|
454 |
+
'wc_share_ok' => __('Share On Odnoklassniki', 'wpdiscuz'),
|
455 |
+
'wc_hide_replies_text' => __('Hide Replies', 'wpdiscuz'),
|
456 |
+
'wc_show_replies_text' => __('Show Replies', 'wpdiscuz'),
|
457 |
+
'wc_user_title_guest_text' => __('Guest', 'wpdiscuz'),
|
458 |
+
'wc_user_title_member_text' => __('Member', 'wpdiscuz'),
|
459 |
+
'wc_user_title_author_text' => __('Author', 'wpdiscuz'),
|
460 |
+
'wc_user_title_admin_text' => __('Admin', 'wpdiscuz'),
|
461 |
+
'wc_email_subject' => __('New Comment', 'wpdiscuz'),
|
462 |
+
'wc_email_message' => __('New comment on the discussion section you\'ve been interested in', 'wpdiscuz'),
|
463 |
+
'wc_new_reply_email_subject' => __('New Reply', 'wpdiscuz'),
|
464 |
+
'wc_new_reply_email_message' => __('New reply on the discussion section you\'ve been interested in', 'wpdiscuz'),
|
465 |
+
'wc_subscribed_on_comment' => __('You\'re subscribed for new replies on this comment', 'wpdiscuz'),
|
466 |
+
'wc_subscribed_on_all_comment' => __('You\'re subscribed for new replies on all your comments', 'wpdiscuz'),
|
467 |
+
'wc_subscribed_on_post' => __('You\'re subscribed for new follow-up comments on this post', 'wpdiscuz'),
|
468 |
+
'wc_unsubscribe' => __('Unsubscribe', 'wpdiscuz'),
|
469 |
+
'wc_ignore_subscription' => __('Ignore Subscription', 'wpdiscuz'),
|
470 |
+
'wc_unsubscribe_message' => __('You\'ve successfully unsubscribed.', 'wpdiscuz'),
|
471 |
+
'wc_confirm_email' => __('Confirm your subscription', 'wpdiscuz'),
|
472 |
+
'wc_comfirm_success_message' => __('You\'ve successfully confirmed your subscription.', 'wpdiscuz'),
|
473 |
+
'wc_confirm_email_subject' => __('Subscribe Confirmation', 'wpdiscuz'),
|
474 |
+
'wc_confirm_email_message' => __('Hi, <br/> You just subscribed for new comments on our website. This means you will receive an email when new comments are posted according to subscription option you\'ve chosen. <br/> To activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.', 'wpdiscuz'),
|
475 |
+
'wc_error_empty_text' => __('please fill out this field to comment', 'wpdiscuz'),
|
476 |
+
'wc_error_email_text' => __('email address is invalid', 'wpdiscuz'),
|
477 |
+
'wc_error_url_text' => __('url is invalid', 'wpdiscuz'),
|
478 |
+
'wc_year_text' => array('datetime' => array(__('year', 'wpdiscuz'), 1)),
|
479 |
+
'wc_year_text_plural' => array('datetime' => array(__('years', 'wpdiscuz'), 1)), // PLURAL
|
480 |
+
'wc_month_text' => array('datetime' => array(__('month', 'wpdiscuz'), 2)),
|
481 |
+
'wc_month_text_plural' => array('datetime' => array(__('months', 'wpdiscuz'), 2)), // PLURAL
|
482 |
+
'wc_day_text' => array('datetime' => array(__('day', 'wpdiscuz'), 3)),
|
483 |
+
'wc_day_text_plural' => array('datetime' => array(__('days', 'wpdiscuz'), 3)), // PLURAL
|
484 |
+
'wc_hour_text' => array('datetime' => array(__('hour', 'wpdiscuz'), 4)),
|
485 |
+
'wc_hour_text_plural' => array('datetime' => array(__('hours', 'wpdiscuz'), 4)), // PLURAL
|
486 |
+
'wc_minute_text' => array('datetime' => array(__('minute', 'wpdiscuz'), 5)),
|
487 |
+
'wc_minute_text_plural' => array('datetime' => array(__('minutes', 'wpdiscuz'), 5)), // PLURAL
|
488 |
+
'wc_second_text' => array('datetime' => array(__('second', 'wpdiscuz'), 6)),
|
489 |
+
'wc_second_text_plural' => array('datetime' => array(__('seconds', 'wpdiscuz'), 6)), // PLURAL
|
490 |
+
'wc_right_now_text' => __('right now', 'wpdiscuz'),
|
491 |
+
'wc_ago_text' => __('ago', 'wpdiscuz'),
|
492 |
+
'wc_posted_today_text' => __('Today', 'wpdiscuz'),
|
493 |
+
'wc_you_must_be_text' => __('You must be', 'wpdiscuz'),
|
494 |
+
'wc_logged_in_as' => __('You are logged in as', 'wpdiscuz'),
|
495 |
+
'wc_log_out' => __('Log out', 'wpdiscuz'),
|
496 |
+
'wc_logged_in_text' => __('logged in', 'wpdiscuz'),
|
497 |
+
'wc_to_post_comment_text' => __('to post a comment.', 'wpdiscuz'),
|
498 |
+
'wc_vote_up' => __('Vote Up', 'wpdiscuz'),
|
499 |
+
'wc_vote_down' => __('Vote Down', 'wpdiscuz'),
|
500 |
+
'wc_vote_counted' => __('Vote Counted', 'wpdiscuz'),
|
501 |
+
'wc_vote_only_one_time' => __("You've already voted for this comment", 'wpdiscuz'),
|
502 |
+
'wc_voting_error' => __('Voting Error', 'wpdiscuz'),
|
503 |
+
'wc_login_to_vote' => __('You Must Be Logged In To Vote', 'wpdiscuz'),
|
504 |
+
'wc_self_vote' => __('You cannot vote for your comment', 'wpdiscuz'),
|
505 |
+
'wc_deny_voting_from_same_ip' => __('You are not allowed to vote for this comment', 'wpdiscuz'),
|
506 |
+
'wc_invalid_captcha' => __('Invalid Captcha Code', 'wpdiscuz'),
|
507 |
+
'wc_invalid_field' => __('Some of field value is invalid', 'wpdiscuz'),
|
508 |
+
'wc_new_comment_button_text' => __('new comment', 'wpdiscuz'),
|
509 |
+
'wc_new_comments_button_text' => __('new comments', 'wpdiscuz'), // PLURAL
|
510 |
+
'wc_held_for_moderate' => __('Comment awaiting moderation', 'wpdiscuz'),
|
511 |
+
'wc_new_reply_button_text' => __('new reply on your comment', 'wpdiscuz'),
|
512 |
+
'wc_new_replies_button_text' => __('new replies on your comments', 'wpdiscuz'), // PLURAL
|
513 |
+
'wc_new_comments_text' => __('New', 'wpdiscuz'),
|
514 |
+
'wc_comment_not_updated' => __('Sorry, the comment was not updated', 'wpdiscuz'),
|
515 |
+
'wc_comment_edit_not_possible' => __('Sorry, this comment no longer possible to edit', 'wpdiscuz'),
|
516 |
+
'wc_comment_not_edited' => __('You\'ve not made any changes', 'wpdiscuz'),
|
517 |
+
'wc_comment_edit_save_button' => __('Save', 'wpdiscuz'),
|
518 |
+
'wc_comment_edit_cancel_button' => __('Cancel', 'wpdiscuz'),
|
519 |
+
'wc_msg_comment_text_max_length' => __('Comment text is too long (maximum %s characters allowed)', 'wpdiscuz')
|
520 |
);
|
521 |
}
|
522 |
|
options/wc-options.php
CHANGED
@@ -25,7 +25,7 @@ class WC_Options {
|
|
25 |
if (isset($_POST['wc_submit_options'])) {
|
26 |
|
27 |
if (function_exists('current_user_can') && !current_user_can('manage_options')) {
|
28 |
-
die(_e('Hacker?',
|
29 |
}
|
30 |
|
31 |
if (function_exists('check_admin_referer')) {
|
@@ -85,7 +85,7 @@ class WC_Options {
|
|
85 |
<div style="float:left; width:50px; height:55px; margin:10px 10px 20px 0px;">
|
86 |
<img src="<?php echo plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/img/plugin-icon/plugin-icon-48.png'); ?>"/>
|
87 |
</div>
|
88 |
-
<h2 style="padding-bottom:20px; padding-top:15px;"><?php _e('wpDiscuz General Settings',
|
89 |
<br style="clear:both" />
|
90 |
|
91 |
|
@@ -177,12 +177,12 @@ class WC_Options {
|
|
177 |
|
178 |
<div id="parentHorizontalTab">
|
179 |
<ul class="resp-tabs-list hor_1">
|
180 |
-
<li><?php _e('General settings',
|
181 |
-
<li><?php _e('Live Update',
|
182 |
-
<li><?php _e('Show/Hide Components',
|
183 |
-
<li><?php _e('Email Subscription',
|
184 |
-
<li><?php _e('Background and Colors',
|
185 |
-
<li><?php _e('Social Login',
|
186 |
</ul>
|
187 |
<div class="resp-tabs-container hor_1">
|
188 |
<?php
|
@@ -211,8 +211,8 @@ class WC_Options {
|
|
211 |
<tr valign="top">
|
212 |
<td colspan="4">
|
213 |
<p class="submit">
|
214 |
-
<input type="submit" class="button button-primary" name="wc_submit_options" value="<?php _e('Save Changes',
|
215 |
-
<a style="float: right;" class="button button-secondary" href="<?php echo admin_url(); ?>admin.php?page=wpdiscuz_options_page&wpdiscuz_reset_options=1"><?php _e('Reset Options',
|
216 |
</p>
|
217 |
</td>
|
218 |
</tr>
|
@@ -230,7 +230,7 @@ class WC_Options {
|
|
230 |
if (isset($_POST['wc_submit_phrases'])) {
|
231 |
|
232 |
if (function_exists('current_user_can') && !current_user_can('manage_options')) {
|
233 |
-
die(_e('Hacker?',
|
234 |
}
|
235 |
|
236 |
if (function_exists('check_admin_referer')) {
|
@@ -339,7 +339,7 @@ class WC_Options {
|
|
339 |
<div style="float:left; width:50px; height:55px; margin:10px 10px 20px 0px;">
|
340 |
<img src="<?php echo plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/img/plugin-icon/plugin-icon-48.png'); ?>" style="height:43px;"/>
|
341 |
</div>
|
342 |
-
<h2 style="padding-bottom:20px; padding-top:15px;"><?php _e('WpDiscuz Front-end Phrases',
|
343 |
<br style="clear:both" />
|
344 |
<form action="<?php echo admin_url(); ?>admin.php?page=wpdiscuz_phrases_page&updated=true" method="post" name="wpdiscuz_phrases_page" class="wc-phrases-settings-form wc-form">
|
345 |
<?php
|
@@ -349,12 +349,12 @@ class WC_Options {
|
|
349 |
?>
|
350 |
<div id="parentHorizontalTab1">
|
351 |
<ul class="resp-tabs-list hor_2">
|
352 |
-
<li><?php _e('General',
|
353 |
-
<li><?php _e('Form',
|
354 |
-
<li><?php _e('Comment',
|
355 |
-
<li><?php _e('Date/Time',
|
356 |
-
<li><?php _e('Email',
|
357 |
-
<li><?php _e('Notification',
|
358 |
</ul>
|
359 |
<div class="resp-tabs-container hor_2">
|
360 |
<?php include 'phrases-layout/phrases-general.php'; ?>
|
@@ -381,7 +381,7 @@ class WC_Options {
|
|
381 |
<tr valign="top">
|
382 |
<td colspan="4">
|
383 |
<p class="submit">
|
384 |
-
<input type="submit" class="button button-primary" name="wc_submit_phrases" value="<?php _e('Save Changes',
|
385 |
</p>
|
386 |
</td>
|
387 |
</tr>
|
25 |
if (isset($_POST['wc_submit_options'])) {
|
26 |
|
27 |
if (function_exists('current_user_can') && !current_user_can('manage_options')) {
|
28 |
+
die(_e('Hacker?', 'wpdiscuz'));
|
29 |
}
|
30 |
|
31 |
if (function_exists('check_admin_referer')) {
|
85 |
<div style="float:left; width:50px; height:55px; margin:10px 10px 20px 0px;">
|
86 |
<img src="<?php echo plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/img/plugin-icon/plugin-icon-48.png'); ?>"/>
|
87 |
</div>
|
88 |
+
<h2 style="padding-bottom:20px; padding-top:15px;"><?php _e('wpDiscuz General Settings', 'wpdiscuz'); ?></h2>
|
89 |
<br style="clear:both" />
|
90 |
|
91 |
|
177 |
|
178 |
<div id="parentHorizontalTab">
|
179 |
<ul class="resp-tabs-list hor_1">
|
180 |
+
<li><?php _e('General settings', 'wpdiscuz'); ?></li>
|
181 |
+
<li><?php _e('Live Update', 'wpdiscuz'); ?></li>
|
182 |
+
<li><?php _e('Show/Hide Components', 'wpdiscuz'); ?></li>
|
183 |
+
<li><?php _e('Email Subscription', 'wpdiscuz'); ?> <?php if (class_exists('Prompt_Comment_Form_Handling')): ?> <?php _e('and Postmatic', 'wpdiscuz'); ?> <?php endif; ?></li>
|
184 |
+
<li><?php _e('Background and Colors', 'wpdiscuz'); ?></li>
|
185 |
+
<li><?php _e('Social Login', 'wpdiscuz'); ?></li>
|
186 |
</ul>
|
187 |
<div class="resp-tabs-container hor_1">
|
188 |
<?php
|
211 |
<tr valign="top">
|
212 |
<td colspan="4">
|
213 |
<p class="submit">
|
214 |
+
<input type="submit" class="button button-primary" name="wc_submit_options" value="<?php _e('Save Changes', 'wpdiscuz'); ?>" />
|
215 |
+
<a style="float: right;" class="button button-secondary" href="<?php echo admin_url(); ?>admin.php?page=wpdiscuz_options_page&wpdiscuz_reset_options=1"><?php _e('Reset Options', 'wpdiscuz'); ?></a>
|
216 |
</p>
|
217 |
</td>
|
218 |
</tr>
|
230 |
if (isset($_POST['wc_submit_phrases'])) {
|
231 |
|
232 |
if (function_exists('current_user_can') && !current_user_can('manage_options')) {
|
233 |
+
die(_e('Hacker?', 'wpdiscuz'));
|
234 |
}
|
235 |
|
236 |
if (function_exists('check_admin_referer')) {
|
339 |
<div style="float:left; width:50px; height:55px; margin:10px 10px 20px 0px;">
|
340 |
<img src="<?php echo plugins_url(WC_Core::$PLUGIN_DIRECTORY . '/files/img/plugin-icon/plugin-icon-48.png'); ?>" style="height:43px;"/>
|
341 |
</div>
|
342 |
+
<h2 style="padding-bottom:20px; padding-top:15px;"><?php _e('WpDiscuz Front-end Phrases', 'wpdiscuz'); ?></h2>
|
343 |
<br style="clear:both" />
|
344 |
<form action="<?php echo admin_url(); ?>admin.php?page=wpdiscuz_phrases_page&updated=true" method="post" name="wpdiscuz_phrases_page" class="wc-phrases-settings-form wc-form">
|
345 |
<?php
|
349 |
?>
|
350 |
<div id="parentHorizontalTab1">
|
351 |
<ul class="resp-tabs-list hor_2">
|
352 |
+
<li><?php _e('General', 'wpdiscuz'); ?></li>
|
353 |
+
<li><?php _e('Form', 'wpdiscuz'); ?></li>
|
354 |
+
<li><?php _e('Comment', 'wpdiscuz'); ?></li>
|
355 |
+
<li><?php _e('Date/Time', 'wpdiscuz'); ?></li>
|
356 |
+
<li><?php _e('Email', 'wpdiscuz'); ?></li>
|
357 |
+
<li><?php _e('Notification', 'wpdiscuz'); ?></li>
|
358 |
</ul>
|
359 |
<div class="resp-tabs-container hor_2">
|
360 |
<?php include 'phrases-layout/phrases-general.php'; ?>
|
381 |
<tr valign="top">
|
382 |
<td colspan="4">
|
383 |
<p class="submit">
|
384 |
+
<input type="submit" class="button button-primary" name="wc_submit_phrases" value="<?php _e('Save Changes', 'wpdiscuz'); ?>" />
|
385 |
</p>
|
386 |
</td>
|
387 |
</tr>
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: gVectors Team
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=UC44WQM5XJFPA
|
4 |
Tags: wordpress comments, ajax comments, ajax, live update, theme, post comments, comments box, community, discussion, discuss, comment form, reply, comments, discussions, comment template, activity, comment author, comment system, redirect, comment redirect, first commenter, social login
|
5 |
Requires at least: 2.7
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 2.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -130,13 +130,20 @@ http://www.gvectors.com/questions/wpdiscuz-comment-form-is-missing/
|
|
130 |
|
131 |
== Changelog ==
|
132 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
= 2.2.9 =
|
134 |
* Fixed Bug : RTL issues
|
135 |
* Added : Compatibility with Super Socializer social comments (tabbed comment systems)
|
136 |
* Added : Option to turn on/off loading of wpDiscuz JS and CSS files on home page
|
137 |
|
138 |
-
IMPORTANT: If you have a Cache Plugin, please delete all caches after wpDiscuz update.
|
139 |
-
|
140 |
= 2.2.8 =
|
141 |
* Added : French (fr_FR) translation, thanks to Eric Malalel
|
142 |
* Fixed Bug : You do not have sufficient permissions to access WP Super Socializer setting page
|
@@ -245,7 +252,7 @@ Integrated with WordPress Social Login, Super Socializer and Social Connect plug
|
|
245 |
* Added : Integration with UserPro - User badges under comment author avatar
|
246 |
* Added : Integration with Postmatic for subscriptions and commenting by email
|
247 |
* Added : Persian (fa_IR) language, thanks to Vahid (VSG24)
|
248 |
-
* Added : Russian (ru_RU) language, thanks to OlafKS
|
249 |
* Added : Close pop-up messages by clicking outside of message-box
|
250 |
* Added : Scroll-down to comment are on clicking comments/replies link
|
251 |
* Added : Filter hooks on email fields
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=UC44WQM5XJFPA
|
4 |
Tags: wordpress comments, ajax comments, ajax, live update, theme, post comments, comments box, community, discussion, discuss, comment form, reply, comments, discussions, comment template, activity, comment author, comment system, redirect, comment redirect, first commenter, social login
|
5 |
Requires at least: 2.7
|
6 |
+
Tested up to: 4.3
|
7 |
+
Stable tag: 2.2.10
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
130 |
|
131 |
== Changelog ==
|
132 |
|
133 |
+
= NEXT =
|
134 |
+
|
135 |
+
Updated: Portuguese (pt_PT) translation, thanks again to Celso Azevedo
|
136 |
+
|
137 |
+
IMPORTANT: If you have a Cache Plugin, please delete all caches after wpDiscuz update.
|
138 |
+
|
139 |
+
= 2.2.10 =
|
140 |
+
* Fixed Bug : Manage subscriptions issue
|
141 |
+
|
142 |
= 2.2.9 =
|
143 |
* Fixed Bug : RTL issues
|
144 |
* Added : Compatibility with Super Socializer social comments (tabbed comment systems)
|
145 |
* Added : Option to turn on/off loading of wpDiscuz JS and CSS files on home page
|
146 |
|
|
|
|
|
147 |
= 2.2.8 =
|
148 |
* Added : French (fr_FR) translation, thanks to Eric Malalel
|
149 |
* Fixed Bug : You do not have sufficient permissions to access WP Super Socializer setting page
|
252 |
* Added : Integration with UserPro - User badges under comment author avatar
|
253 |
* Added : Integration with Postmatic for subscriptions and commenting by email
|
254 |
* Added : Persian (fa_IR) language, thanks to Vahid (VSG24)
|
255 |
+
* Added : Russian (ru_RU) language, thanks to OlafKS and Stanislav
|
256 |
* Added : Close pop-up messages by clicking outside of message-box
|
257 |
* Added : Scroll-down to comment are on clicking comments/replies link
|
258 |
* Added : Filter hooks on email fields
|
wc.php
CHANGED
@@ -1,12 +1,14 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
|
|
|
|
10 |
*/
|
11 |
|
12 |
include_once 'options/wc-options.php';
|
@@ -30,7 +32,6 @@ class WC_Core {
|
|
30 |
public $commetns_count = 0;
|
31 |
public $comment_count_text;
|
32 |
public static $PLUGIN_DIRECTORY;
|
33 |
-
public static $TEXT_DOMAIN = 'wpdiscuz';
|
34 |
public $post_type;
|
35 |
public $wc_version_slug = 'wc_plugin_version';
|
36 |
public $wc_user_agent = '';
|
@@ -322,7 +323,7 @@ class WC_Core {
|
|
322 |
if ($this->wc_options_serialized->wc_is_name_field_required) {
|
323 |
$name = filter_input(INPUT_POST, 'name');
|
324 |
} else {
|
325 |
-
$name = !(filter_input(INPUT_POST, 'name')) ? __('Anonymous',
|
326 |
}
|
327 |
if ($this->wc_options_serialized->wc_is_email_field_required) {
|
328 |
$email = filter_input(INPUT_POST, 'email');
|
@@ -385,7 +386,7 @@ class WC_Core {
|
|
385 |
}
|
386 |
} else if ($notification_type == 'all_comment' && !$this->wc_db_helper->wc_has_all_comments_notification($comment_post_ID, $email)) {
|
387 |
$wc_notification_inserted_id = $this->wc_db_helper->wc_add_email_notification($comment_post_ID, $comment_post_ID, $email, 2);
|
388 |
-
} else if ($notification_type == '
|
389 |
$wc_notification_inserted_id = $this->wc_db_helper->wc_add_email_notification($new_comment_id, $comment_post_ID, $email, 3);
|
390 |
}
|
391 |
|
@@ -931,8 +932,8 @@ class WC_Core {
|
|
931 |
*/
|
932 |
public function wc_notify_on_new_reply($parent_comment_id, $new_comment_id, $email) {
|
933 |
$emails_array = $this->wc_db_helper->wc_get_post_new_reply_notification($parent_comment_id, $email);
|
934 |
-
$subject = ($this->wc_options_serialized->wc_phrases['wc_new_reply_email_subject']) ? $this->wc_options_serialized->wc_phrases['wc_new_reply_email_subject'] : __('New Reply',
|
935 |
-
$message = ($this->wc_options_serialized->wc_phrases['wc_new_reply_email_message']) ? $this->wc_options_serialized->wc_phrases['wc_new_reply_email_message'] : __('New reply on the discussion section you\'ve been interested in',
|
936 |
foreach ($emails_array as $e_row) {
|
937 |
$this->wc_email_sender($e_row, $new_comment_id, $subject, $message);
|
938 |
}
|
@@ -942,10 +943,10 @@ class WC_Core {
|
|
942 |
$curr_post = get_post($post_id);
|
943 |
$curr_post_author = get_userdata($curr_post->post_author);
|
944 |
|
945 |
-
$subject = isset($this->wc_options_serialized->wc_phrases['wc_confirm_email_subject']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email_subject'] : __('Subscribe Confirmation',
|
946 |
-
$message = isset($this->wc_options_serialized->wc_phrases['wc_confirm_email_message']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email_message'] : __('Hi, <br/> You just subscribed for new comments on our website. This means you will receive an email when new comments are posted according to subscription option you\'ve chosen. <br/> To activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.',
|
947 |
|
948 |
-
if ($subscribtion_type == 'post' || $subscribtion_type
|
949 |
$comment_or_post_subscrib_id = $post_id;
|
950 |
} else {
|
951 |
$comment_or_post_subscrib_id = $new_comment_id;
|
@@ -968,6 +969,7 @@ class WC_Core {
|
|
968 |
* send email
|
969 |
*/
|
970 |
public function wc_email_sender($email_data, $wc_new_comment_id, $subject, $message) {
|
|
|
971 |
$comment = get_comment($wc_new_comment_id);
|
972 |
$curr_post = get_post($comment->comment_post_ID);
|
973 |
$curr_post_author = get_userdata($curr_post->post_author);
|
@@ -982,7 +984,8 @@ class WC_Core {
|
|
982 |
|
983 |
$wc_new_comment_content = $comment->comment_content;
|
984 |
$permalink = get_comment_link($wc_new_comment_id);
|
985 |
-
$unsubscribe_url = get_permalink($comment->comment_post_ID) . "
|
|
|
986 |
$message .= "<br/><br/><a href='$permalink'>$permalink</a>";
|
987 |
$message .= "<br/><br/>$wc_new_comment_content";
|
988 |
$message .= "<br/><br/><a href='$unsubscribe_url'>" . $this->wc_options_serialized->wc_phrases['wc_unsubscribe'] . "</a>";
|
@@ -1019,9 +1022,9 @@ class WC_Core {
|
|
1019 |
|
1020 |
// Add settings link on plugin page
|
1021 |
public function wc_add_plugin_settings_link($links) {
|
1022 |
-
$settings_link = '<a href="' . admin_url() . 'admin.php?page=wpdiscuz_options_page">' . __('Settings',
|
1023 |
if (!$this->wc_options_serialized->wc_is_use_po_mo) {
|
1024 |
-
$settings_link .= ' | <a href="' . admin_url() . 'admin.php?page=wpdiscuz_phrases_page">' . __('Phrases',
|
1025 |
}
|
1026 |
array_unshift($links, $settings_link);
|
1027 |
return $links;
|
1 |
<?php
|
2 |
|
3 |
+
/**
|
4 |
+
* Plugin Name: wpDiscuz - Wordpress Comments
|
5 |
+
* Plugin URI: http://www.gvectors.com/wpdiscuz/
|
6 |
+
* Description: Better comment system. Wordpress post comments and discussion plugin. Allows your visitors discuss, vote for comments and share.
|
7 |
+
* Author: gVectors Team (A. Chakhoyan, G. Zakaryan, H. Martirosyan)
|
8 |
+
* Author URI: http://www.gvectors.com/
|
9 |
+
* Version: 2.2.10
|
10 |
+
* Text Domain: wpdiscuz
|
11 |
+
* Domain Path: /languages/
|
12 |
*/
|
13 |
|
14 |
include_once 'options/wc-options.php';
|
32 |
public $commetns_count = 0;
|
33 |
public $comment_count_text;
|
34 |
public static $PLUGIN_DIRECTORY;
|
|
|
35 |
public $post_type;
|
36 |
public $wc_version_slug = 'wc_plugin_version';
|
37 |
public $wc_user_agent = '';
|
323 |
if ($this->wc_options_serialized->wc_is_name_field_required) {
|
324 |
$name = filter_input(INPUT_POST, 'name');
|
325 |
} else {
|
326 |
+
$name = !(filter_input(INPUT_POST, 'name')) ? __('Anonymous', 'wpdiscuz') : filter_input(INPUT_POST, 'name');
|
327 |
}
|
328 |
if ($this->wc_options_serialized->wc_is_email_field_required) {
|
329 |
$email = filter_input(INPUT_POST, 'email');
|
386 |
}
|
387 |
} else if ($notification_type == 'all_comment' && !$this->wc_db_helper->wc_has_all_comments_notification($comment_post_ID, $email)) {
|
388 |
$wc_notification_inserted_id = $this->wc_db_helper->wc_add_email_notification($comment_post_ID, $comment_post_ID, $email, 2);
|
389 |
+
} else if ($notification_type == 'comment' && !$this->wc_db_helper->wc_has_comment_notification($comment_post_ID, $new_comment_id, $email)) {
|
390 |
$wc_notification_inserted_id = $this->wc_db_helper->wc_add_email_notification($new_comment_id, $comment_post_ID, $email, 3);
|
391 |
}
|
392 |
|
932 |
*/
|
933 |
public function wc_notify_on_new_reply($parent_comment_id, $new_comment_id, $email) {
|
934 |
$emails_array = $this->wc_db_helper->wc_get_post_new_reply_notification($parent_comment_id, $email);
|
935 |
+
$subject = ($this->wc_options_serialized->wc_phrases['wc_new_reply_email_subject']) ? $this->wc_options_serialized->wc_phrases['wc_new_reply_email_subject'] : __('New Reply','wpdiscuz');
|
936 |
+
$message = ($this->wc_options_serialized->wc_phrases['wc_new_reply_email_message']) ? $this->wc_options_serialized->wc_phrases['wc_new_reply_email_message'] : __('New reply on the discussion section you\'ve been interested in','wpdiscuz');
|
937 |
foreach ($emails_array as $e_row) {
|
938 |
$this->wc_email_sender($e_row, $new_comment_id, $subject, $message);
|
939 |
}
|
943 |
$curr_post = get_post($post_id);
|
944 |
$curr_post_author = get_userdata($curr_post->post_author);
|
945 |
|
946 |
+
$subject = isset($this->wc_options_serialized->wc_phrases['wc_confirm_email_subject']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email_subject'] : __('Subscribe Confirmation', 'wpdiscuz');
|
947 |
+
$message = isset($this->wc_options_serialized->wc_phrases['wc_confirm_email_message']) ? $this->wc_options_serialized->wc_phrases['wc_confirm_email_message'] : __('Hi, <br/> You just subscribed for new comments on our website. This means you will receive an email when new comments are posted according to subscription option you\'ve chosen. <br/> To activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.', 'wpdiscuz');
|
948 |
|
949 |
+
if ($subscribtion_type == 'post' || $subscribtion_type == 'all_comment') {
|
950 |
$comment_or_post_subscrib_id = $post_id;
|
951 |
} else {
|
952 |
$comment_or_post_subscrib_id = $new_comment_id;
|
969 |
* send email
|
970 |
*/
|
971 |
public function wc_email_sender($email_data, $wc_new_comment_id, $subject, $message) {
|
972 |
+
global $wp_rewrite;
|
973 |
$comment = get_comment($wc_new_comment_id);
|
974 |
$curr_post = get_post($comment->comment_post_ID);
|
975 |
$curr_post_author = get_userdata($curr_post->post_author);
|
984 |
|
985 |
$wc_new_comment_content = $comment->comment_content;
|
986 |
$permalink = get_comment_link($wc_new_comment_id);
|
987 |
+
$unsubscribe_url = !$wp_rewrite->using_permalinks() ? get_permalink($comment->comment_post_ID) . "&" : get_permalink($comment->comment_post_ID) . "?" ;
|
988 |
+
$unsubscribe_url .= "wpdiscuzSubscribeID=" . $email_data['id'] . "&key=" . $email_data['activation_key'] . '&#wc_unsubscribe_message';
|
989 |
$message .= "<br/><br/><a href='$permalink'>$permalink</a>";
|
990 |
$message .= "<br/><br/>$wc_new_comment_content";
|
991 |
$message .= "<br/><br/><a href='$unsubscribe_url'>" . $this->wc_options_serialized->wc_phrases['wc_unsubscribe'] . "</a>";
|
1022 |
|
1023 |
// Add settings link on plugin page
|
1024 |
public function wc_add_plugin_settings_link($links) {
|
1025 |
+
$settings_link = '<a href="' . admin_url() . 'admin.php?page=wpdiscuz_options_page">' . __('Settings', 'wpdiscuz') . '</a>';
|
1026 |
if (!$this->wc_options_serialized->wc_is_use_po_mo) {
|
1027 |
+
$settings_link .= ' | <a href="' . admin_url() . 'admin.php?page=wpdiscuz_phrases_page">' . __('Phrases', 'wpdiscuz') . '</a>';
|
1028 |
}
|
1029 |
array_unshift($links, $settings_link);
|
1030 |
return $links;
|