Version Description
Download this release
Release Info
Developer | businessdirectoryplugin |
Plugin | Business Directory Plugin |
Version | 5.3 |
Comparing to | |
See all releases |
Code changes from version 5.2.2.1 to 5.3
- README.TXT +9 -3
- assets/js/admin.js +39 -0
- assets/js/admin.min.js +1 -1
- business-directory-plugin.php +1 -1
- includes/class-recaptcha.php +64 -32
- includes/class-shortcodes.php +5 -1
- includes/class-wpbdp.php +1 -1
- includes/compatibility/class-acf-compat.php +0 -20
- includes/compatibility/class-compat.php +0 -5
- includes/fields/class-fieldtypes-image.php +1 -1
- includes/fields/class-fieldtypes-textarea.php +1 -0
- includes/fields/class-fieldtypes-textfield.php +27 -10
- includes/fields/class-form-field.php +229 -137
- includes/form-fields.php +19 -1
- includes/helpers/class-listing-display-helper.php +13 -2
- includes/views/submit_listing.php +11 -4
- languages/WPBDM-ar.mo +0 -0
- languages/WPBDM-ar.po +156 -97
- languages/WPBDM-de_DE.mo +0 -0
- languages/WPBDM-de_DE.po +156 -98
- languages/WPBDM-en_US.mo +0 -0
- languages/WPBDM-en_US.po +148 -93
- languages/WPBDM-es_ES.mo +0 -0
- languages/WPBDM-es_ES.po +150 -95
- languages/WPBDM-fr_FR.mo +0 -0
- languages/WPBDM-fr_FR.po +158 -97
- languages/WPBDM-nl_NL.mo +0 -0
- languages/WPBDM-nl_NL.po +151 -93
- languages/WPBDM-pl_PL.mo +0 -0
- languages/WPBDM-pl_PL.po +162 -93
- languages/WPBDM-ru_RU.mo +0 -0
- languages/WPBDM-ru_RU.po +155 -93
- languages/WPBDM-sv_SE.mo +0 -0
- languages/WPBDM-sv_SE.po +157 -93
- languages/WPBDM.pot +149 -94
- templates/admin/form-fields-addoredit.tpl.php +103 -36
README.TXT
CHANGED
@@ -2,11 +2,11 @@
|
|
2 |
Contributors: businessdirectoryplugin
|
3 |
Donate link: https://businessdirectoryplugin.com/premium-modules/
|
4 |
Tags: business directory, directory plugin, company business directory, chamber of commerce business directory, church directory, address book, contact directory, custom business directory, local business directory, listings directory, link directory, member directory, staff directory
|
5 |
-
Requires at least: 4.
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 4.9
|
8 |
-
Last Updated: 2018-Jun-
|
9 |
-
Stable tag: 5.
|
10 |
License: GPLv2 or later
|
11 |
|
12 |
Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory and much more!
|
@@ -143,6 +143,12 @@ If you are having problems please visit [support forum](http://www.businessdirec
|
|
143 |
|
144 |
== Changelog ==
|
145 |
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
= Version 5.2.2.1 =
|
147 |
* Fixed fatal error specific to PHP 5.6.
|
148 |
|
2 |
Contributors: businessdirectoryplugin
|
3 |
Donate link: https://businessdirectoryplugin.com/premium-modules/
|
4 |
Tags: business directory, directory plugin, company business directory, chamber of commerce business directory, church directory, address book, contact directory, custom business directory, local business directory, listings directory, link directory, member directory, staff directory
|
5 |
+
Requires at least: 4.4
|
6 |
Requires PHP: 5.6
|
7 |
Tested up to: 4.9
|
8 |
+
Last Updated: 2018-Jun-22
|
9 |
+
Stable tag: 5.3
|
10 |
License: GPLv2 or later
|
11 |
|
12 |
Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory and much more!
|
143 |
|
144 |
== Changelog ==
|
145 |
|
146 |
+
= Version 5.3 =
|
147 |
+
* Add enabled class for reCaptcha container in submit listing view.
|
148 |
+
* Include validator for number of words in textfield and textarea fieldtypes.
|
149 |
+
* Revert ACF compatibility, it could cause incompatibility with Yoast.
|
150 |
+
* Add support for category specific fields in submit listing.
|
151 |
+
|
152 |
= Version 5.2.2.1 =
|
153 |
* Fixed fatal error specific to PHP 5.6.
|
154 |
|
assets/js/admin.js
CHANGED
@@ -14,6 +14,9 @@ var WPBDP_associations_fieldtypes = {};
|
|
14 |
WPBDPAdmin_FormFields.$f_fieldtype = $('form#wpbdp-formfield-form select#field-type');
|
15 |
WPBDPAdmin_FormFields.$f_fieldtype.change( WPBDPAdmin_FormFields.onFieldTypeChange );
|
16 |
|
|
|
|
|
|
|
17 |
$( '#wpbdp-fieldsettings .iframe-confirm a' ).click(function(e) {
|
18 |
e.preventDefault();
|
19 |
|
@@ -53,6 +56,15 @@ var WPBDP_associations_fieldtypes = {};
|
|
53 |
$.post( ajaxurl, { 'action': 'wpbdp-formfields-reorder', 'order': sorted_items } );
|
54 |
}
|
55 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
},
|
57 |
|
58 |
onFieldTypeChange: function() {
|
@@ -94,6 +106,8 @@ var WPBDP_associations_fieldtypes = {};
|
|
94 |
$('#wpbdp-fieldsettings').hide();
|
95 |
}
|
96 |
}, 'json' );
|
|
|
|
|
97 |
},
|
98 |
|
99 |
onAssociationChange: function() {
|
@@ -120,6 +134,31 @@ var WPBDP_associations_fieldtypes = {};
|
|
120 |
private_option.find( 'input' ).prop( 'disabled', false );
|
121 |
private_option.show();
|
122 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
}
|
124 |
};
|
125 |
|
14 |
WPBDPAdmin_FormFields.$f_fieldtype = $('form#wpbdp-formfield-form select#field-type');
|
15 |
WPBDPAdmin_FormFields.$f_fieldtype.change( WPBDPAdmin_FormFields.onFieldTypeChange );
|
16 |
|
17 |
+
WPBDPAdmin_FormFields.$f_validator = $( 'form#wpbdp-formfield-form select#field-validator' );
|
18 |
+
WPBDPAdmin_FormFields.$f_validator.change( WPBDPAdmin_FormFields.onFieldValidatorChange );
|
19 |
+
|
20 |
$( '#wpbdp-fieldsettings .iframe-confirm a' ).click(function(e) {
|
21 |
e.preventDefault();
|
22 |
|
56 |
$.post( ajaxurl, { 'action': 'wpbdp-formfields-reorder', 'order': sorted_items } );
|
57 |
}
|
58 |
});
|
59 |
+
|
60 |
+
$( '#wpbdp-formfield-form select[name="limit_categories"]' ).change( function(){
|
61 |
+
var form = $( this ).parents( 'form' ).find( '#limit-categories-list' );
|
62 |
+
if ( $( this ).val() === "1" ) {
|
63 |
+
form.removeClass( 'hidden' );
|
64 |
+
} else {
|
65 |
+
form.addClass( 'hidden' );
|
66 |
+
}
|
67 |
+
});
|
68 |
},
|
69 |
|
70 |
onFieldTypeChange: function() {
|
106 |
$('#wpbdp-fieldsettings').hide();
|
107 |
}
|
108 |
}, 'json' );
|
109 |
+
|
110 |
+
WPBDPAdmin_FormFields.onFieldValidatorChange();
|
111 |
},
|
112 |
|
113 |
onAssociationChange: function() {
|
134 |
private_option.find( 'input' ).prop( 'disabled', false );
|
135 |
private_option.show();
|
136 |
}
|
137 |
+
|
138 |
+
var form = $(this).parents('form').find( '.limit-categories' );
|
139 |
+
|
140 |
+
if ( 0 <= ['title', 'category'].indexOf( association ) ) {
|
141 |
+
form.addClass( 'hidden' );
|
142 |
+
} else {
|
143 |
+
form.removeClass( 'hidden' );
|
144 |
+
}
|
145 |
+
},
|
146 |
+
|
147 |
+
onFieldValidatorChange: function() {
|
148 |
+
var $field_validator = $(this).find('option:selected');
|
149 |
+
var field_type = WPBDPAdmin_FormFields.$f_fieldtype.find( 'option:selected' ).val();
|
150 |
+
|
151 |
+
if ('textfield' === field_type || 'textarea' === field_type) {
|
152 |
+
if ( 'word_number' === $field_validator.val() ) {
|
153 |
+
$('#wpbdp_word_count').show();
|
154 |
+
$('select#field-validator option[value="word_number"]').removeAttr('disabled');
|
155 |
+
} else {
|
156 |
+
$('#wpbdp_word_count').hide();
|
157 |
+
}
|
158 |
+
} else {
|
159 |
+
$('#wpbdp_word_count').hide();
|
160 |
+
$('select#field-validator option[value="word_number"]').attr('disabled', 'disabled').removeAttr('selected');
|
161 |
+
}
|
162 |
}
|
163 |
};
|
164 |
|
assets/js/admin.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
function wpbdp_load_placeholder($v){var action=$v.attr("data-action"),post_id=$v.attr("data-post_id"),baseurl=$v.attr("data-baseurl");$v.load(ajaxurl,{action:action,post_id:post_id,baseurl:baseurl})}var WPBDP_associations_fieldtypes={};!function($){var WPBDPAdmin_FormFields={$f_association:null,$f_fieldtype:null,init:function(){WPBDPAdmin_FormFields.$f_association=$("form#wpbdp-formfield-form select#field-association"),WPBDPAdmin_FormFields.$f_association.change(WPBDPAdmin_FormFields.onAssociationChange),WPBDPAdmin_FormFields.$f_fieldtype=$("form#wpbdp-formfield-form select#field-type"),WPBDPAdmin_FormFields.$f_fieldtype.change(WPBDPAdmin_FormFields.onFieldTypeChange),$("#wpbdp-fieldsettings .iframe-confirm a").click(function(e){e.preventDefault(),$(this).hasClass("yes")?$(this).parents(".iframe-confirm").hide():($('#wpbdp-fieldsettings input[name="field[allow_iframes]"]').removeAttr("checked"),$(this).parents(".iframe-confirm").hide())}),$('#wpbdp-fieldsettings input[name="field[allow_iframes]"]').change(function(){$(this).is(":checked")?$(".iframe-confirm").show():$(".iframe-confirm").hide()}),$('#wpbdp-formfield-form input[name="field[display_flags][]"][value="search"]').change(function(){$(".if-display-in-search").toggle($(this).is(":checked"))}),$("table.formfields tbody").sortable({placeholder:"wpbdp-draggable-highlight",handle:".wpbdp-drag-handle",axis:"y",cursor:"move",opacity:.9,update:function(event,ui){var sorted_items=[];$(this).find(".wpbdp-drag-handle").each(function(i,v){sorted_items.push($(v).attr("data-field-id"))}),sorted_items&&$.post(ajaxurl,{action:"wpbdp-formfields-reorder",order:sorted_items})}})},onFieldTypeChange:function(){var $field_type=$(this).find("option:selected");if($field_type.length){var field_type=$field_type.val();$("select#field-validator").prop("disabled",!1),"url"==field_type?($("select#field-validator option").not('[value="url"]').attr("disabled","disabled").removeAttr("selected"),$('select#field-validator option[value="url"]').attr("selected","selected")):$("select#field-validator option").removeAttr("disabled"),"social-twitter"==field_type&&$("select#field-validator").prop("disabled",!0);var request_data={action:"wpbdp-renderfieldsettings",association:WPBDPAdmin_FormFields.$f_association.find("option:selected").val(),field_type:field_type,field_id:$('#wpbdp-formfield-form input[name="field[id]"]').val()};$.post(ajaxurl,request_data,function(response){response.ok&&response.html?($("#wpbdp-fieldsettings-html").html(response.html),$("#wpbdp-fieldsettings").show()):($("#wpbdp-fieldsettings-html").empty(),$("#wpbdp-fieldsettings").hide())},"json")}},onAssociationChange:function(){$f_fieldtype=WPBDPAdmin_FormFields.$f_fieldtype;var association=$(this).val(),valid_types=WPBDP_associations_fieldtypes[association],private_option=$("#wpbdp_private_field");$f_fieldtype.find("option").prop("disabled",!1),$f_fieldtype.find("option").each(function(i,v){$.inArray($(v).val(),valid_types)<0&&$(v).prop("disabled",!0)}),$f_fieldtype.change(),0<=["title","content","category"].indexOf(association)?(private_option.find("input").prop("disabled",!0),private_option.hide()):(private_option.find("input").prop("disabled",!1),private_option.show())}};$(document).ready(function(){WPBDPAdmin_FormFields.init()})}(jQuery),jQuery(document).ready(function($){$(".wpbdp-admin-page-fees .wp-list-table.fees tbody").sortable({placeholder:"wpbdp-draggable-highlight",handle:".wpbdp-drag-handle",axis:"y",cursor:"move",opacity:.9,update:function(event,ui){var rel_rows=$(".free-fee-related-tr").remove();$("tr.free-fee").after(rel_rows);var sorted_items=[];$(this).find(".wpbdp-drag-handle").each(function(i,v){sorted_items.push($(v).attr("data-fee-id"))}),sorted_items&&$.post(ajaxurl,{action:"wpbdp-admin-fees-reorder",order:sorted_items})}}),$('select[name="fee_order[method]"], select[name="fee_order[order]"]').change(function(e){$.ajax({url:ajaxurl,data:$(this).parent("form").serialize(),dataType:"json",type:"POST",success:function(res){res.success&&location.reload()}})}),"custom"==$('select[name="fee_order[method]"]').val()&&$(".wpbdp-admin-page-fees .wp-list-table .wpbdp-drag-handle").show(),$(".wpbdp-ajax-placeholder").each(function(i,v){wpbdp_load_placeholder($(v))}),$("input#doaction, input#doaction2").click(function(e){var action_name="doaction"==$(this).attr("id")?"action":"action2",$selected_option=$('select[name="'+action_name+'"] option:selected'),action_val=$selected_option.val();if("listing"==action_val.split("-")[0]){var action=action_val.split("-")[1];if("sep0"!=action&&"sep1"!=action&&"sep2"!=action){var $checked_posts=$('input[name="post[]"]:checked'),uri=$selected_option.attr("data-uri");return $checked_posts.each(function(i,v){uri+="&post[]="+$(v).val()}),window.location.href=uri,!1}}return!0}),$('.wpbdp-admin.wpbdp-page-formfields-preview form input[type="submit"]').click(function(e){e.preventDefault(),alert("This form is just a preview. It doesn't work.")}),$("#wpbdp-admin-debug-info-page a.nav-tab").click(function(e){e.preventDefault(),$("#wpbdp-admin-debug-info-page a.nav-tab").not(this).removeClass("nav-tab-active");var $selected_tab=$(this);$selected_tab.addClass("nav-tab-active"),$(".wpbdp-debug-section").hide(),$('.wpbdp-debug-section[data-id="'+$(this).attr("href")+'"]').show()}),$("#wpbdp-admin-debug-info-page a.nav-tab").length>0&&$("#wpbdp-admin-debug-info-page a.nav-tab").get(0).click(),$(".wpbdp-page-admin-transactions .column-actions a.details-link").click(function(e){e.preventDefault();var $tr=$(this).parents("tr"),$details=$tr.find("div.more-details"),$tr_details=$tr.next("tr.more-details-row");return $tr_details.length>0?($tr_details.remove(),void $(this).text($(this).text().replace("-","+"))):($(this).text($(this).text().replace("+","-")),void $tr.after('<tr class="more-details-row"><td colspan="7">'+$details.html()+"</td></tr>").show())})});var WPBDP_Admin={};WPBDP_Admin.payments={},WPBDP_Admin.ProgressBar=function($item,settings){$item.empty(),$item.html('<div class="wpbdp-progress-bar"><span class="progress-text">0%</span><div class="progress-bar"><div class="progress-bar-outer"><div class="progress-bar-inner" style="width: 0%;"></div></div></div>'),this.$item=$item,this.$text=$item.find(".progress-text"),this.$bar=$item.find(".progress-bar"),this.set=function(completed,total){var pcg=Math.round(100*parseInt(completed)/parseInt(total));this.$text.text(pcg+"%"),this.$bar.find(".progress-bar-inner").attr("style","width: "+pcg+"%;")}},function($){WPBDP_Admin.dialog={};WPBDP_Admin.dialog}(jQuery),function($){var payments=WPBDP_Admin.payments;payments._initialize=function(){$("#BusinessDirectory_listinginfo a.payment-details-link").click(function(e){e.preventDefault(),payments.viewPaymentDetails($(this).attr("data-id"))}),0==$("#wpbdp-modal-dialog").length&&$("body").append($('<div id="wpbdp-modal-dialog"></div>'))},payments.viewPaymentDetails=function(id){$.get(ajaxurl,{action:"wpbdp-payment-details",id:id},function(res){res&&res.success&&(0==$("#wpbdp-modal-dialog").length&&$("body").append($('<div id="wpbdp-modal-dialog"></div>')),$("#wpbdp-modal-dialog").html(res.data.html),tb_show("","#TB_inline?inlineId=wpbdp-modal-dialog"),$("#TB_window").width($("#TB_ajaxContent").outerWidth()),$("#TB_window").height()>$("#TB_ajaxContent").outerHeight()&&$("#TB_ajaxContent").height($("#TB_window").height()),$("#wpbdp-modal-dialog").remove())},"json")},$(document).ready(function(){payments._initialize()})}(jQuery),function($){var s=WPBDP_Admin.settings={init:function(){$("#wpbdp-settings-quick-search-fields").on("change",":checkbox",function(){var $container=$("#wpbdp-settings-quick-search-fields"),text_fields=$container.data("text-fields"),selected=$container.find(":checkbox:checked").map(function(){return parseInt($(this).val())}).get(),show_warning=!1;if(selected.length>0&&text_fields.length>0)for(var i=0;i<text_fields.length;i++)if($.inArray(text_fields[i],selected)>-1){show_warning=!0;break}show_warning?$("#wpbdp-settings-quick-search-fields .text-fields-warning").fadeIn("fast"):$("#wpbdp-settings-quick-search-fields .text-fields-warning").fadeOut("fast")})}};$(document).ready(function(){$("#wpbdp-admin-page-settings").length>0&&s.init()})}(jQuery),jQuery(function($){if(0!=$(".wpbdp-admin-page-uninstall").length){var $warnings=$("#wpbdp-uninstall-messages"),$form=($("#wpbdp-uninstall-proceed-btn"),$("#wpbdp-uninstall-capture-form"));$("#wpbdp-uninstall-proceed-btn").click(function(e){e.preventDefault(),$warnings.fadeOut("fast",function(){$form.fadeIn("fast")})}),$("#wpbdp-uninstall-capture-form").submit(function(){var $no_reason_error=$(".wpbdp-validation-error.no-reason").hide(),$no_text_error=$(".wpbdp-validation-error.no-reason-text").hide(),$reason_checked=$('input[name="uninstall[reason_id]"]:checked');if(0==$reason_checked.length)return $no_reason_error.show(),!1;if("0"==$reason_checked.val()){var $reason_text=$('textarea[name="uninstall[reason_text]"]'),reason_text=$.trim($reason_text.val());if($reason_text.removeClass("invalid"),!reason_text)return $no_text_error.show(),$reason_text.addClass("invalid"),!1}return!0}),$('form#wpbdp-uninstall-capture-form input[name="uninstall[reason_id]"]').change(function(e){var val=$(this).val();"0"==val?$("form#wpbdp-uninstall-capture-form .custom-reason").fadeIn():$("form#wpbdp-uninstall-capture-form .custom-reason").fadeOut("fast",function(){$(this).val("")})})}}),function($){$(document).ready(function(){0!=$("body.wp-admin.widgets-php").length&&$("body.wp-admin.widgets-php").on("change","input.wpbdp-toggle-images",function(){var checked=$(this).is(":checked");checked?$(this).parents(".widget").find(".thumbnail-width-config, .thumbnail-height-config").fadeIn("fast"):$(this).parents(".widget").find(".thumbnail-width-config, .thumbnail-height-config").fadeOut("fast")})})}(jQuery),function($){$(document).ready(function(){$("a.wpbdp-create-main-page-button").click(function(e){e.preventDefault();var $msg=$(this).parents("div.error");$.ajax({url:ajaxurl,data:{action:"wpbdp-create-main-page",_wpnonce:$(this).attr("data-nonce")},dataType:"json",success:function(res){res.success&&$msg.fadeOut("fast",function(){$(this).html("<p>"+res.message+"</p>"),$(this).removeClass("error"),$(this).addClass("updated"),$(this).fadeIn("fast")})}})})})}(jQuery),function($){$(function(){var dismissNotice=function($notice,notice_id,nonce){$.post(ajaxurl,{action:"wpbdp_dismiss_notification",id:notice_id,nonce:nonce},function(){$notice.fadeOut("fast",function(){$notice.remove()})})};$("#wpbody-content").on("click",".wpbdp-notice.dismissible > .notice-dismiss",function(e){e.preventDefault();var $notice=$(this).parent(".wpbdp-notice"),dismissible_id=$(this).data("dismissible-id"),nonce=$(this).data("nonce");dismissNotice($notice,dismissible_id,nonce)}).on("click",".wpbdp-notice.is-dismissible > .notice-dismiss",function(e){e.preventDefault();var $notice=$(this).parent(".wpbdp-notice"),dismissible_id=$notice.data("dismissible-id"),nonce=$notice.data("nonce");dismissNotice($notice,dismissible_id,nonce)})})}(jQuery),jQuery(function($){$(".wpbdp-js-toggle").change(function(){var name=$(this).attr("name"),value=$(this).val(),is_checkbox=$(this).is(":checkbox"),is_radio=$(this).is(":radio"),is_select=$(this).is("select"),toggles=$(this).attr("data-toggles");if(is_select){var $option=$(this).find(":selected"),toggles=$option.attr("data-toggles");toggles&&"undefined"!=typeof toggles||(toggles="")}if(toggles){var $dest=$(toggles.startsWith("#")||toggles.startsWith("-")?toggles:"#"+toggles+", ."+toggles);if(0==$dest.length||!is_radio&&!is_checkbox&&!is_select)return;if(is_checkbox&&$(this).is(":checked"))return void $dest.toggleClass("hidden")}if(is_select)var other_opts=$(this).find("option").not('[value="'+value+'"]');else var other_opts=$('input[name="'+name+'"]').not('[value="'+value+'"]');other_opts.each(function(){var toggles_i=$(this).attr("data-toggles");if(toggles_i){var $dest_i=$(toggles_i.startsWith("#")||toggles_i.startsWith("-")?toggles_i:"#"+toggles_i+", ."+toggles_i);$dest_i.addClass("hidden")}}),toggles&&$dest.toggleClass("hidden")})}),jQuery(function($){$(".wpbdp-admin-tab-nav a").click(function(e){e.preventDefault();var $others=$(this).parents("ul").find("li a"),$selected=$others.filter(".current");$others.removeClass("current"),$(this).addClass("current");var href=$(this).attr("href"),$content=$(href);$selected.length>0&&$($selected.attr("href")).hide(),$content.show().focus()}),$(".wpbdp-admin-tab-nav").each(function(i,v){$(this).find("a:first").click()})}),jQuery(function($){$(document).on("click",".wpbdp-admin-confirm",function(e){var message=$(this).data("confirm");message&&"undefined"!=typeof message||(message="Are you sure you want to do this?");var confirm=window.confirm(message);return!!confirm||(e.stopImmediatePropagation(),!1)})});
|
1 |
+
function wpbdp_load_placeholder($v){var action=$v.attr("data-action"),post_id=$v.attr("data-post_id"),baseurl=$v.attr("data-baseurl");$v.load(ajaxurl,{action:action,post_id:post_id,baseurl:baseurl})}var WPBDP_associations_fieldtypes={};!function($){var WPBDPAdmin_FormFields={$f_association:null,$f_fieldtype:null,init:function(){WPBDPAdmin_FormFields.$f_association=$("form#wpbdp-formfield-form select#field-association"),WPBDPAdmin_FormFields.$f_association.change(WPBDPAdmin_FormFields.onAssociationChange),WPBDPAdmin_FormFields.$f_fieldtype=$("form#wpbdp-formfield-form select#field-type"),WPBDPAdmin_FormFields.$f_fieldtype.change(WPBDPAdmin_FormFields.onFieldTypeChange),WPBDPAdmin_FormFields.$f_validator=$("form#wpbdp-formfield-form select#field-validator"),WPBDPAdmin_FormFields.$f_validator.change(WPBDPAdmin_FormFields.onFieldValidatorChange),$("#wpbdp-fieldsettings .iframe-confirm a").click(function(e){e.preventDefault(),$(this).hasClass("yes")?$(this).parents(".iframe-confirm").hide():($('#wpbdp-fieldsettings input[name="field[allow_iframes]"]').removeAttr("checked"),$(this).parents(".iframe-confirm").hide())}),$('#wpbdp-fieldsettings input[name="field[allow_iframes]"]').change(function(){$(this).is(":checked")?$(".iframe-confirm").show():$(".iframe-confirm").hide()}),$('#wpbdp-formfield-form input[name="field[display_flags][]"][value="search"]').change(function(){$(".if-display-in-search").toggle($(this).is(":checked"))}),$("table.formfields tbody").sortable({placeholder:"wpbdp-draggable-highlight",handle:".wpbdp-drag-handle",axis:"y",cursor:"move",opacity:.9,update:function(event,ui){var sorted_items=[];$(this).find(".wpbdp-drag-handle").each(function(i,v){sorted_items.push($(v).attr("data-field-id"))}),sorted_items&&$.post(ajaxurl,{action:"wpbdp-formfields-reorder",order:sorted_items})}}),$('#wpbdp-formfield-form select[name="limit_categories"]').change(function(){var form=$(this).parents("form").find("#limit-categories-list");"1"===$(this).val()?form.removeClass("hidden"):form.addClass("hidden")})},onFieldTypeChange:function(){var $field_type=$(this).find("option:selected");if($field_type.length){var field_type=$field_type.val();$("select#field-validator").prop("disabled",!1),"url"==field_type?($("select#field-validator option").not('[value="url"]').attr("disabled","disabled").removeAttr("selected"),$('select#field-validator option[value="url"]').attr("selected","selected")):$("select#field-validator option").removeAttr("disabled"),"social-twitter"==field_type&&$("select#field-validator").prop("disabled",!0);var request_data={action:"wpbdp-renderfieldsettings",association:WPBDPAdmin_FormFields.$f_association.find("option:selected").val(),field_type:field_type,field_id:$('#wpbdp-formfield-form input[name="field[id]"]').val()};$.post(ajaxurl,request_data,function(response){response.ok&&response.html?($("#wpbdp-fieldsettings-html").html(response.html),$("#wpbdp-fieldsettings").show()):($("#wpbdp-fieldsettings-html").empty(),$("#wpbdp-fieldsettings").hide())},"json"),WPBDPAdmin_FormFields.onFieldValidatorChange()}},onAssociationChange:function(){$f_fieldtype=WPBDPAdmin_FormFields.$f_fieldtype;var association=$(this).val(),valid_types=WPBDP_associations_fieldtypes[association],private_option=$("#wpbdp_private_field");$f_fieldtype.find("option").prop("disabled",!1),$f_fieldtype.find("option").each(function(i,v){$.inArray($(v).val(),valid_types)<0&&$(v).prop("disabled",!0)}),$f_fieldtype.change(),0<=["title","content","category"].indexOf(association)?(private_option.find("input").prop("disabled",!0),private_option.hide()):(private_option.find("input").prop("disabled",!1),private_option.show());var form=$(this).parents("form").find(".limit-categories");0<=["title","category"].indexOf(association)?form.addClass("hidden"):form.removeClass("hidden")},onFieldValidatorChange:function(){var $field_validator=$(this).find("option:selected"),field_type=WPBDPAdmin_FormFields.$f_fieldtype.find("option:selected").val();"textfield"===field_type||"textarea"===field_type?"word_number"===$field_validator.val()?($("#wpbdp_word_count").show(),$('select#field-validator option[value="word_number"]').removeAttr("disabled")):$("#wpbdp_word_count").hide():($("#wpbdp_word_count").hide(),$('select#field-validator option[value="word_number"]').attr("disabled","disabled").removeAttr("selected"))}};$(document).ready(function(){WPBDPAdmin_FormFields.init()})}(jQuery),jQuery(document).ready(function($){$(".wpbdp-admin-page-fees .wp-list-table.fees tbody").sortable({placeholder:"wpbdp-draggable-highlight",handle:".wpbdp-drag-handle",axis:"y",cursor:"move",opacity:.9,update:function(event,ui){var rel_rows=$(".free-fee-related-tr").remove();$("tr.free-fee").after(rel_rows);var sorted_items=[];$(this).find(".wpbdp-drag-handle").each(function(i,v){sorted_items.push($(v).attr("data-fee-id"))}),sorted_items&&$.post(ajaxurl,{action:"wpbdp-admin-fees-reorder",order:sorted_items})}}),$('select[name="fee_order[method]"], select[name="fee_order[order]"]').change(function(e){$.ajax({url:ajaxurl,data:$(this).parent("form").serialize(),dataType:"json",type:"POST",success:function(res){res.success&&location.reload()}})}),"custom"==$('select[name="fee_order[method]"]').val()&&$(".wpbdp-admin-page-fees .wp-list-table .wpbdp-drag-handle").show(),$(".wpbdp-ajax-placeholder").each(function(i,v){wpbdp_load_placeholder($(v))}),$("input#doaction, input#doaction2").click(function(e){var action_name="doaction"==$(this).attr("id")?"action":"action2",$selected_option=$('select[name="'+action_name+'"] option:selected'),action_val=$selected_option.val();if("listing"==action_val.split("-")[0]){var action=action_val.split("-")[1];if("sep0"!=action&&"sep1"!=action&&"sep2"!=action){var $checked_posts=$('input[name="post[]"]:checked'),uri=$selected_option.attr("data-uri");return $checked_posts.each(function(i,v){uri+="&post[]="+$(v).val()}),window.location.href=uri,!1}}return!0}),$('.wpbdp-admin.wpbdp-page-formfields-preview form input[type="submit"]').click(function(e){e.preventDefault(),alert("This form is just a preview. It doesn't work.")}),$("#wpbdp-admin-debug-info-page a.nav-tab").click(function(e){e.preventDefault(),$("#wpbdp-admin-debug-info-page a.nav-tab").not(this).removeClass("nav-tab-active");var $selected_tab=$(this);$selected_tab.addClass("nav-tab-active"),$(".wpbdp-debug-section").hide(),$('.wpbdp-debug-section[data-id="'+$(this).attr("href")+'"]').show()}),$("#wpbdp-admin-debug-info-page a.nav-tab").length>0&&$("#wpbdp-admin-debug-info-page a.nav-tab").get(0).click(),$(".wpbdp-page-admin-transactions .column-actions a.details-link").click(function(e){e.preventDefault();var $tr=$(this).parents("tr"),$details=$tr.find("div.more-details"),$tr_details=$tr.next("tr.more-details-row");return $tr_details.length>0?($tr_details.remove(),void $(this).text($(this).text().replace("-","+"))):($(this).text($(this).text().replace("+","-")),void $tr.after('<tr class="more-details-row"><td colspan="7">'+$details.html()+"</td></tr>").show())})});var WPBDP_Admin={};WPBDP_Admin.payments={},WPBDP_Admin.ProgressBar=function($item,settings){$item.empty(),$item.html('<div class="wpbdp-progress-bar"><span class="progress-text">0%</span><div class="progress-bar"><div class="progress-bar-outer"><div class="progress-bar-inner" style="width: 0%;"></div></div></div>'),this.$item=$item,this.$text=$item.find(".progress-text"),this.$bar=$item.find(".progress-bar"),this.set=function(completed,total){var pcg=Math.round(100*parseInt(completed)/parseInt(total));this.$text.text(pcg+"%"),this.$bar.find(".progress-bar-inner").attr("style","width: "+pcg+"%;")}},function($){WPBDP_Admin.dialog={};WPBDP_Admin.dialog}(jQuery),function($){var payments=WPBDP_Admin.payments;payments._initialize=function(){$("#BusinessDirectory_listinginfo a.payment-details-link").click(function(e){e.preventDefault(),payments.viewPaymentDetails($(this).attr("data-id"))}),0==$("#wpbdp-modal-dialog").length&&$("body").append($('<div id="wpbdp-modal-dialog"></div>'))},payments.viewPaymentDetails=function(id){$.get(ajaxurl,{action:"wpbdp-payment-details",id:id},function(res){res&&res.success&&(0==$("#wpbdp-modal-dialog").length&&$("body").append($('<div id="wpbdp-modal-dialog"></div>')),$("#wpbdp-modal-dialog").html(res.data.html),tb_show("","#TB_inline?inlineId=wpbdp-modal-dialog"),$("#TB_window").width($("#TB_ajaxContent").outerWidth()),$("#TB_window").height()>$("#TB_ajaxContent").outerHeight()&&$("#TB_ajaxContent").height($("#TB_window").height()),$("#wpbdp-modal-dialog").remove())},"json")},$(document).ready(function(){payments._initialize()})}(jQuery),function($){var s=WPBDP_Admin.settings={init:function(){$("#wpbdp-settings-quick-search-fields").on("change",":checkbox",function(){var $container=$("#wpbdp-settings-quick-search-fields"),text_fields=$container.data("text-fields"),selected=$container.find(":checkbox:checked").map(function(){return parseInt($(this).val())}).get(),show_warning=!1;if(selected.length>0&&text_fields.length>0)for(var i=0;i<text_fields.length;i++)if($.inArray(text_fields[i],selected)>-1){show_warning=!0;break}show_warning?$("#wpbdp-settings-quick-search-fields .text-fields-warning").fadeIn("fast"):$("#wpbdp-settings-quick-search-fields .text-fields-warning").fadeOut("fast")})}};$(document).ready(function(){$("#wpbdp-admin-page-settings").length>0&&s.init()})}(jQuery),jQuery(function($){if(0!=$(".wpbdp-admin-page-uninstall").length){var $warnings=$("#wpbdp-uninstall-messages"),$form=($("#wpbdp-uninstall-proceed-btn"),$("#wpbdp-uninstall-capture-form"));$("#wpbdp-uninstall-proceed-btn").click(function(e){e.preventDefault(),$warnings.fadeOut("fast",function(){$form.fadeIn("fast")})}),$("#wpbdp-uninstall-capture-form").submit(function(){var $no_reason_error=$(".wpbdp-validation-error.no-reason").hide(),$no_text_error=$(".wpbdp-validation-error.no-reason-text").hide(),$reason_checked=$('input[name="uninstall[reason_id]"]:checked');if(0==$reason_checked.length)return $no_reason_error.show(),!1;if("0"==$reason_checked.val()){var $reason_text=$('textarea[name="uninstall[reason_text]"]'),reason_text=$.trim($reason_text.val());if($reason_text.removeClass("invalid"),!reason_text)return $no_text_error.show(),$reason_text.addClass("invalid"),!1}return!0}),$('form#wpbdp-uninstall-capture-form input[name="uninstall[reason_id]"]').change(function(e){var val=$(this).val();"0"==val?$("form#wpbdp-uninstall-capture-form .custom-reason").fadeIn():$("form#wpbdp-uninstall-capture-form .custom-reason").fadeOut("fast",function(){$(this).val("")})})}}),function($){$(document).ready(function(){0!=$("body.wp-admin.widgets-php").length&&$("body.wp-admin.widgets-php").on("change","input.wpbdp-toggle-images",function(){var checked=$(this).is(":checked");checked?$(this).parents(".widget").find(".thumbnail-width-config, .thumbnail-height-config").fadeIn("fast"):$(this).parents(".widget").find(".thumbnail-width-config, .thumbnail-height-config").fadeOut("fast")})})}(jQuery),function($){$(document).ready(function(){$("a.wpbdp-create-main-page-button").click(function(e){e.preventDefault();var $msg=$(this).parents("div.error");$.ajax({url:ajaxurl,data:{action:"wpbdp-create-main-page",_wpnonce:$(this).attr("data-nonce")},dataType:"json",success:function(res){res.success&&$msg.fadeOut("fast",function(){$(this).html("<p>"+res.message+"</p>"),$(this).removeClass("error"),$(this).addClass("updated"),$(this).fadeIn("fast")})}})})})}(jQuery),function($){$(function(){var dismissNotice=function($notice,notice_id,nonce){$.post(ajaxurl,{action:"wpbdp_dismiss_notification",id:notice_id,nonce:nonce},function(){$notice.fadeOut("fast",function(){$notice.remove()})})};$("#wpbody-content").on("click",".wpbdp-notice.dismissible > .notice-dismiss",function(e){e.preventDefault();var $notice=$(this).parent(".wpbdp-notice"),dismissible_id=$(this).data("dismissible-id"),nonce=$(this).data("nonce");dismissNotice($notice,dismissible_id,nonce)}).on("click",".wpbdp-notice.is-dismissible > .notice-dismiss",function(e){e.preventDefault();var $notice=$(this).parent(".wpbdp-notice"),dismissible_id=$notice.data("dismissible-id"),nonce=$notice.data("nonce");dismissNotice($notice,dismissible_id,nonce)})})}(jQuery),jQuery(function($){$(".wpbdp-js-toggle").change(function(){var name=$(this).attr("name"),value=$(this).val(),is_checkbox=$(this).is(":checkbox"),is_radio=$(this).is(":radio"),is_select=$(this).is("select"),toggles=$(this).attr("data-toggles");if(is_select){var $option=$(this).find(":selected"),toggles=$option.attr("data-toggles");toggles&&"undefined"!=typeof toggles||(toggles="")}if(toggles){var $dest=$(toggles.startsWith("#")||toggles.startsWith("-")?toggles:"#"+toggles+", ."+toggles);if(0==$dest.length||!is_radio&&!is_checkbox&&!is_select)return;if(is_checkbox&&$(this).is(":checked"))return void $dest.toggleClass("hidden")}if(is_select)var other_opts=$(this).find("option").not('[value="'+value+'"]');else var other_opts=$('input[name="'+name+'"]').not('[value="'+value+'"]');other_opts.each(function(){var toggles_i=$(this).attr("data-toggles");if(toggles_i){var $dest_i=$(toggles_i.startsWith("#")||toggles_i.startsWith("-")?toggles_i:"#"+toggles_i+", ."+toggles_i);$dest_i.addClass("hidden")}}),toggles&&$dest.toggleClass("hidden")})}),jQuery(function($){$(".wpbdp-admin-tab-nav a").click(function(e){e.preventDefault();var $others=$(this).parents("ul").find("li a"),$selected=$others.filter(".current");$others.removeClass("current"),$(this).addClass("current");var href=$(this).attr("href"),$content=$(href);$selected.length>0&&$($selected.attr("href")).hide(),$content.show().focus()}),$(".wpbdp-admin-tab-nav").each(function(i,v){$(this).find("a:first").click()})}),jQuery(function($){$(document).on("click",".wpbdp-admin-confirm",function(e){var message=$(this).data("confirm");message&&"undefined"!=typeof message||(message="Are you sure you want to do this?");var confirm=window.confirm(message);return!!confirm||(e.stopImmediatePropagation(),!1)})});
|
business-directory-plugin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Business Directory Plugin
|
4 |
* Plugin URI: https://www.businessdirectoryplugin.com
|
5 |
* Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
|
6 |
-
* Version: 5.
|
7 |
* Author: D. Rodenbaugh
|
8 |
* Author URI: https://businessdirectoryplugin.com
|
9 |
* Text Domain: WPBDM
|
3 |
* Plugin Name: Business Directory Plugin
|
4 |
* Plugin URI: https://www.businessdirectoryplugin.com
|
5 |
* Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
|
6 |
+
* Version: 5.3
|
7 |
* Author: D. Rodenbaugh
|
8 |
* Author URI: https://businessdirectoryplugin.com
|
9 |
* Text Domain: WPBDM
|
includes/class-recaptcha.php
CHANGED
@@ -1,10 +1,18 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
/**
|
3 |
* @since 3.6.8
|
|
|
|
|
4 |
*/
|
5 |
class WPBDP_reCAPTCHA {
|
6 |
|
7 |
-
private $public_key
|
8 |
private $private_key = '';
|
9 |
|
10 |
private $current_id = 1;
|
@@ -13,11 +21,12 @@ class WPBDP_reCAPTCHA {
|
|
13 |
|
14 |
|
15 |
function __construct() {
|
16 |
-
$this->public_key
|
17 |
$this->private_key = trim( wpbdp_get_option( 'recaptcha-private-key' ) );
|
18 |
|
19 |
-
if ( empty( $this->public_key ) || empty( $this->private_key ) )
|
20 |
return;
|
|
|
21 |
|
22 |
add_action( 'wp_enqueue_scripts', array( &$this, '_enqueue_js_api' ) );
|
23 |
|
@@ -36,8 +45,9 @@ class WPBDP_reCAPTCHA {
|
|
36 |
function _enqueue_js_api() {
|
37 |
global $wpbdp;
|
38 |
|
39 |
-
if ( ! $wpbdp->is_plugin_page() )
|
40 |
return;
|
|
|
41 |
|
42 |
wp_enqueue_script(
|
43 |
'wpbdp-recaptcha',
|
@@ -47,30 +57,37 @@ class WPBDP_reCAPTCHA {
|
|
47 |
true
|
48 |
);
|
49 |
|
50 |
-
wp_enqueue_script(
|
51 |
-
|
|
|
|
|
52 |
}
|
53 |
|
54 |
function render( $name = '' ) {
|
55 |
-
if ( empty( $this->public_key ) || empty( $this->private_key ) )
|
56 |
return '';
|
|
|
57 |
|
58 |
-
$hide_recaptcha
|
59 |
-
if( is_user_logged_in() && $hide_recaptcha ){
|
60 |
return '';
|
61 |
}
|
62 |
|
63 |
-
$html
|
64 |
|
65 |
-
if ( $name )
|
66 |
$html .= '<div id="' . $name . '">';
|
|
|
67 |
|
68 |
-
$html .= sprintf(
|
69 |
-
|
70 |
-
|
|
|
|
|
71 |
|
72 |
-
if ( $name )
|
73 |
$html .= '</div>';
|
|
|
74 |
|
75 |
$this->current_id++;
|
76 |
|
@@ -80,11 +97,12 @@ class WPBDP_reCAPTCHA {
|
|
80 |
public function verify( &$error_msg = null ) {
|
81 |
global $wpbdp;
|
82 |
|
83 |
-
if ( empty( $this->public_key ) || empty( $this->private_key ) )
|
84 |
return true;
|
|
|
85 |
|
86 |
-
$hide_recaptcha
|
87 |
-
if( is_user_logged_in() && $hide_recaptcha ){
|
88 |
return true;
|
89 |
}
|
90 |
|
@@ -95,17 +113,23 @@ class WPBDP_reCAPTCHA {
|
|
95 |
}
|
96 |
|
97 |
$url = 'https://www.google.com/recaptcha/api/siteverify';
|
98 |
-
$res = wp_remote_post(
|
99 |
-
|
100 |
-
|
101 |
-
|
|
|
|
|
|
|
|
|
|
|
102 |
);
|
103 |
|
104 |
if ( ! is_wp_error( $res ) ) {
|
105 |
$js = json_decode( $res['body'] );
|
106 |
|
107 |
-
if ( $js && isset( $js->success ) && $js->success )
|
108 |
return true;
|
|
|
109 |
}
|
110 |
|
111 |
return false;
|
@@ -114,8 +138,9 @@ class WPBDP_reCAPTCHA {
|
|
114 |
function _recaptcha_in_comments( $field ) {
|
115 |
global $wpbdp;
|
116 |
|
117 |
-
if ( ! wpbdp_current_view() )
|
118 |
return $field;
|
|
|
119 |
|
120 |
$html = '';
|
121 |
$html .= $field;
|
@@ -135,8 +160,9 @@ class WPBDP_reCAPTCHA {
|
|
135 |
function _check_comment_recaptcha( $comment_data ) {
|
136 |
$post_id = isset( $comment_data['comment_post_ID'] ) ? $comment_data['comment_post_ID'] : 0;
|
137 |
|
138 |
-
if ( WPBDP_POST_TYPE != get_post_type( $post_id ) )
|
139 |
return $comment_data;
|
|
|
140 |
|
141 |
if ( ! $this->verify() ) {
|
142 |
$this->comment_error = true;
|
@@ -147,11 +173,12 @@ class WPBDP_reCAPTCHA {
|
|
147 |
}
|
148 |
|
149 |
function _comment_relative_redirect( $location, $comment ) {
|
150 |
-
if ( is_null( $this->comment_error ) )
|
151 |
return $location;
|
|
|
152 |
|
153 |
-
$location
|
154 |
-
$location
|
155 |
$location .= '#commentform';
|
156 |
|
157 |
return $location;
|
@@ -160,12 +187,14 @@ class WPBDP_reCAPTCHA {
|
|
160 |
function _restore_comment_fields() {
|
161 |
$comment_id = isset( $_GET['wre'] ) ? absint( base64_decode( urldecode( $_GET['wre'] ) ) ) : 0;
|
162 |
|
163 |
-
if ( ! $comment_id )
|
164 |
return;
|
|
|
165 |
|
166 |
$comment = get_comment( $comment_id );
|
167 |
-
if ( ! $comment )
|
168 |
return;
|
|
|
169 |
|
170 |
echo <<<JS
|
171 |
<script type="text/javascript">//<![CDATA[
|
@@ -193,9 +222,10 @@ JS;
|
|
193 |
$submit->prevent_save();
|
194 |
}
|
195 |
}
|
196 |
-
|
197 |
if ( $recaptcha = $this->render() ) {
|
198 |
-
$section['html']
|
|
|
199 |
} else {
|
200 |
$section['flags'][] = 'hidden';
|
201 |
}
|
@@ -208,6 +238,7 @@ JS;
|
|
208 |
|
209 |
/**
|
210 |
* Displays a reCAPTCHA field using the configured settings.
|
|
|
211 |
* @return string HTML for the reCAPTCHA field.
|
212 |
* @since 3.4.2
|
213 |
*/
|
@@ -217,6 +248,7 @@ function wpbdp_recaptcha( $name = '' ) {
|
|
217 |
|
218 |
/**
|
219 |
* Validates reCAPTCHA input.
|
|
|
220 |
* @return boolean TRUE if validation succeeded, FALSE otherwise.
|
221 |
* @since 3.4.2
|
222 |
*/
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* @package WPBDP/includes/Recaptcha
|
4 |
+
*/
|
5 |
+
|
6 |
+
// phpcs:disable
|
7 |
+
|
8 |
/**
|
9 |
* @since 3.6.8
|
10 |
+
*
|
11 |
+
* @SuppressWarnings(PHPMD)
|
12 |
*/
|
13 |
class WPBDP_reCAPTCHA {
|
14 |
|
15 |
+
private $public_key = '';
|
16 |
private $private_key = '';
|
17 |
|
18 |
private $current_id = 1;
|
21 |
|
22 |
|
23 |
function __construct() {
|
24 |
+
$this->public_key = trim( wpbdp_get_option( 'recaptcha-public-key' ) );
|
25 |
$this->private_key = trim( wpbdp_get_option( 'recaptcha-private-key' ) );
|
26 |
|
27 |
+
if ( empty( $this->public_key ) || empty( $this->private_key ) ) {
|
28 |
return;
|
29 |
+
}
|
30 |
|
31 |
add_action( 'wp_enqueue_scripts', array( &$this, '_enqueue_js_api' ) );
|
32 |
|
45 |
function _enqueue_js_api() {
|
46 |
global $wpbdp;
|
47 |
|
48 |
+
if ( ! $wpbdp->is_plugin_page() ) {
|
49 |
return;
|
50 |
+
}
|
51 |
|
52 |
wp_enqueue_script(
|
53 |
'wpbdp-recaptcha',
|
57 |
true
|
58 |
);
|
59 |
|
60 |
+
wp_enqueue_script(
|
61 |
+
'google-recaptcha',
|
62 |
+
'https://www.google.com/recaptcha/api.js?onload=wpbdp_recaptcha_callback&render=explicit'
|
63 |
+
);
|
64 |
}
|
65 |
|
66 |
function render( $name = '' ) {
|
67 |
+
if ( empty( $this->public_key ) || empty( $this->private_key ) ) {
|
68 |
return '';
|
69 |
+
}
|
70 |
|
71 |
+
$hide_recaptcha = wpbdp_get_option( 'hide-recaptcha-loggedin' );
|
72 |
+
if ( is_user_logged_in() && $hide_recaptcha ) {
|
73 |
return '';
|
74 |
}
|
75 |
|
76 |
+
$html = '';
|
77 |
|
78 |
+
if ( $name ) {
|
79 |
$html .= '<div id="' . $name . '">';
|
80 |
+
}
|
81 |
|
82 |
+
$html .= sprintf(
|
83 |
+
'<div id="wpbdp_recaptcha_%d" class="wpbdp-recaptcha" data-key="%s"></div>',
|
84 |
+
$this->current_id,
|
85 |
+
$this->public_key
|
86 |
+
);
|
87 |
|
88 |
+
if ( $name ) {
|
89 |
$html .= '</div>';
|
90 |
+
}
|
91 |
|
92 |
$this->current_id++;
|
93 |
|
97 |
public function verify( &$error_msg = null ) {
|
98 |
global $wpbdp;
|
99 |
|
100 |
+
if ( empty( $this->public_key ) || empty( $this->private_key ) ) {
|
101 |
return true;
|
102 |
+
}
|
103 |
|
104 |
+
$hide_recaptcha = wpbdp_get_option( 'hide-recaptcha-loggedin' );
|
105 |
+
if ( is_user_logged_in() && $hide_recaptcha ) {
|
106 |
return true;
|
107 |
}
|
108 |
|
113 |
}
|
114 |
|
115 |
$url = 'https://www.google.com/recaptcha/api/siteverify';
|
116 |
+
$res = wp_remote_post(
|
117 |
+
$url,
|
118 |
+
array(
|
119 |
+
'body' => array(
|
120 |
+
'secret' => $this->private_key,
|
121 |
+
'response' => $_REQUEST['g-recaptcha-response'],
|
122 |
+
'remoteip' => $_SERVER['REMOTE_ADDR'],
|
123 |
+
),
|
124 |
+
)
|
125 |
);
|
126 |
|
127 |
if ( ! is_wp_error( $res ) ) {
|
128 |
$js = json_decode( $res['body'] );
|
129 |
|
130 |
+
if ( $js && isset( $js->success ) && $js->success ) {
|
131 |
return true;
|
132 |
+
}
|
133 |
}
|
134 |
|
135 |
return false;
|
138 |
function _recaptcha_in_comments( $field ) {
|
139 |
global $wpbdp;
|
140 |
|
141 |
+
if ( ! wpbdp_current_view() ) {
|
142 |
return $field;
|
143 |
+
}
|
144 |
|
145 |
$html = '';
|
146 |
$html .= $field;
|
160 |
function _check_comment_recaptcha( $comment_data ) {
|
161 |
$post_id = isset( $comment_data['comment_post_ID'] ) ? $comment_data['comment_post_ID'] : 0;
|
162 |
|
163 |
+
if ( WPBDP_POST_TYPE != get_post_type( $post_id ) ) {
|
164 |
return $comment_data;
|
165 |
+
}
|
166 |
|
167 |
if ( ! $this->verify() ) {
|
168 |
$this->comment_error = true;
|
173 |
}
|
174 |
|
175 |
function _comment_relative_redirect( $location, $comment ) {
|
176 |
+
if ( is_null( $this->comment_error ) ) {
|
177 |
return $location;
|
178 |
+
}
|
179 |
|
180 |
+
$location = substr( $location, 0, strpos( $location, '#' ) );
|
181 |
+
$location = add_query_arg( 'wre', urlencode( base64_encode( $comment->comment_ID ) ), $location );
|
182 |
$location .= '#commentform';
|
183 |
|
184 |
return $location;
|
187 |
function _restore_comment_fields() {
|
188 |
$comment_id = isset( $_GET['wre'] ) ? absint( base64_decode( urldecode( $_GET['wre'] ) ) ) : 0;
|
189 |
|
190 |
+
if ( ! $comment_id ) {
|
191 |
return;
|
192 |
+
}
|
193 |
|
194 |
$comment = get_comment( $comment_id );
|
195 |
+
if ( ! $comment ) {
|
196 |
return;
|
197 |
+
}
|
198 |
|
199 |
echo <<<JS
|
200 |
<script type="text/javascript">//<![CDATA[
|
222 |
$submit->prevent_save();
|
223 |
}
|
224 |
}
|
225 |
+
|
226 |
if ( $recaptcha = $this->render() ) {
|
227 |
+
$section['html'] = $recaptcha;
|
228 |
+
$section['state'] = 'enabled';
|
229 |
} else {
|
230 |
$section['flags'][] = 'hidden';
|
231 |
}
|
238 |
|
239 |
/**
|
240 |
* Displays a reCAPTCHA field using the configured settings.
|
241 |
+
*
|
242 |
* @return string HTML for the reCAPTCHA field.
|
243 |
* @since 3.4.2
|
244 |
*/
|
248 |
|
249 |
/**
|
250 |
* Validates reCAPTCHA input.
|
251 |
+
*
|
252 |
* @return boolean TRUE if validation succeeded, FALSE otherwise.
|
253 |
* @since 3.4.2
|
254 |
*/
|
includes/class-shortcodes.php
CHANGED
@@ -87,7 +87,7 @@ class WPBDP__Shortcodes {
|
|
87 |
* Good for displaying listings in a single category or from a single tag.
|
88 |
* Parameters:
|
89 |
* - tag Shows the listings with a certain tag name. (Allowed Values: Any valid tag name within the directory. Can be a comma separated list too (eg. "New, Hot").)
|
90 |
-
* - category Shows the listings with a certain category. (Allowed Values: Any valid category
|
91 |
* - title Adds a title to the page of listings to indicate what they are for. (Allowed Values: Any non-blank string.)
|
92 |
* - items_per_page The number of listings to show per page. If not present value will be set to "Listings per page" setting (Allowed Values: A positive integer)
|
93 |
* - pagination Enable pagination for shortcode. Default to 0. (Allowed values: To disable: 0, false, no. To enable: 1, true, yes)
|
@@ -684,6 +684,10 @@ class WPBDP__Shortcodes {
|
|
684 |
$sc_atts['items_per_page'] = ! isset( $sc_atts['pagination'] ) ? ( wpbdp_get_option( 'listings-per-page' ) > 0 ? wpbdp_get_option( 'listings-per-page' ) : -1 ) : -1;
|
685 |
}
|
686 |
|
|
|
|
|
|
|
|
|
687 |
if ( isset( $sc_atts['pagination'] ) && ! $sc_atts['pagination'] ) {
|
688 |
$sc_atts['items_per_page'] = -1;
|
689 |
}
|
87 |
* Good for displaying listings in a single category or from a single tag.
|
88 |
* Parameters:
|
89 |
* - tag Shows the listings with a certain tag name. (Allowed Values: Any valid tag name within the directory. Can be a comma separated list too (eg. "New, Hot").)
|
90 |
+
* - category Shows the listings with a certain category. (Allowed Values: Any valid category slug or ID you have configured under Directory -> Directory Categories. Can be a comma separated list too (e.g. "Dentists, Doctors" or 1,2,56).)
|
91 |
* - title Adds a title to the page of listings to indicate what they are for. (Allowed Values: Any non-blank string.)
|
92 |
* - items_per_page The number of listings to show per page. If not present value will be set to "Listings per page" setting (Allowed Values: A positive integer)
|
93 |
* - pagination Enable pagination for shortcode. Default to 0. (Allowed values: To disable: 0, false, no. To enable: 1, true, yes)
|
684 |
$sc_atts['items_per_page'] = ! isset( $sc_atts['pagination'] ) ? ( wpbdp_get_option( 'listings-per-page' ) > 0 ? wpbdp_get_option( 'listings-per-page' ) : -1 ) : -1;
|
685 |
}
|
686 |
|
687 |
+
if ( ! empty( $sc_atts['pagination'] ) && 0 > intval( $sc_atts['items_per_page'] ) ) {
|
688 |
+
$sc_atts['items_per_page'] = wpbdp_get_option( 'listings-per-page' ) > 0 ? wpbdp_get_option( 'listings-per-page' ) : -1;
|
689 |
+
}
|
690 |
+
|
691 |
if ( isset( $sc_atts['pagination'] ) && ! $sc_atts['pagination'] ) {
|
692 |
$sc_atts['items_per_page'] = -1;
|
693 |
}
|
includes/class-wpbdp.php
CHANGED
@@ -19,7 +19,7 @@ final class WPBDP {
|
|
19 |
}
|
20 |
|
21 |
private function setup_constants() {
|
22 |
-
define( 'WPBDP_VERSION', '5.
|
23 |
|
24 |
define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
|
25 |
define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
|
19 |
}
|
20 |
|
21 |
private function setup_constants() {
|
22 |
+
define( 'WPBDP_VERSION', '5.3' );
|
23 |
|
24 |
define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
|
25 |
define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
|
includes/compatibility/class-acf-compat.php
DELETED
@@ -1,20 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* @package WPBDP/Compatibility/ACF Compat
|
4 |
-
*/
|
5 |
-
|
6 |
-
// phpcs:disable Squiz,PEAR,Generic,WordPress,PSR2
|
7 |
-
|
8 |
-
/**
|
9 |
-
* @SuppressWarnings(PHPMD)
|
10 |
-
*/
|
11 |
-
class WPBDP_ACF_Compat {
|
12 |
-
|
13 |
-
public function __construct() {
|
14 |
-
add_filter( 'wpbdp_get_option_disable-cpt', array( $this, 'disable_cpt') );
|
15 |
-
}
|
16 |
-
|
17 |
-
public function disable_cpt( ){
|
18 |
-
return true;
|
19 |
-
}
|
20 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/compatibility/class-compat.php
CHANGED
@@ -48,11 +48,6 @@ class WPBDP_Compat {
|
|
48 |
require_once WPBDP_PATH . 'includes/compatibility/class-custom-permalinks-integration.php';
|
49 |
$custom_permalinks_integration = new WPBDP_Custom_Permalink_Integration();
|
50 |
}
|
51 |
-
|
52 |
-
if ( class_exists( 'acf' ) ) {
|
53 |
-
require_once WPBDP_PATH . 'includes/compatibility/class-acf-compat.php';
|
54 |
-
$advanced_custom_fields = new WPBDP_ACF_Compat();
|
55 |
-
}
|
56 |
}
|
57 |
|
58 |
function cpt_compat_mode() {
|
48 |
require_once WPBDP_PATH . 'includes/compatibility/class-custom-permalinks-integration.php';
|
49 |
$custom_permalinks_integration = new WPBDP_Custom_Permalink_Integration();
|
50 |
}
|
|
|
|
|
|
|
|
|
|
|
51 |
}
|
52 |
|
53 |
function cpt_compat_mode() {
|
includes/fields/class-fieldtypes-image.php
CHANGED
@@ -27,7 +27,6 @@ class WPBDP_FieldTypes_Image extends WPBDP_Form_Field_Type {
|
|
27 |
|
28 |
public function setup_field( &$field ) {
|
29 |
$field->remove_display_flag( 'search' ); // image fields are not searchable
|
30 |
-
$field->add_validator( 'caption_' );
|
31 |
}
|
32 |
|
33 |
public function setup_validation( $field, $validator, $value ) {
|
@@ -71,6 +70,7 @@ class WPBDP_FieldTypes_Image extends WPBDP_Form_Field_Type {
|
|
71 |
if ( array_key_exists( 'x_caption_required', $_POST['field'] ) ) {
|
72 |
$caption_required = (bool) intval( $_POST['field']['x_caption_required'] );
|
73 |
$field->set_data( 'caption_required', $caption_required );
|
|
|
74 |
}
|
75 |
}
|
76 |
|
27 |
|
28 |
public function setup_field( &$field ) {
|
29 |
$field->remove_display_flag( 'search' ); // image fields are not searchable
|
|
|
30 |
}
|
31 |
|
32 |
public function setup_validation( $field, $validator, $value ) {
|
70 |
if ( array_key_exists( 'x_caption_required', $_POST['field'] ) ) {
|
71 |
$caption_required = (bool) intval( $_POST['field']['x_caption_required'] );
|
72 |
$field->set_data( 'caption_required', $caption_required );
|
73 |
+
$field->add_validator( 'caption_' );
|
74 |
}
|
75 |
}
|
76 |
|
includes/fields/class-fieldtypes-textarea.php
CHANGED
@@ -248,6 +248,7 @@ class WPBDP_FieldTypes_TextArea extends WPBDP_Form_Field_Type {
|
|
248 |
$field->set_data( 'wysiwyg_images', isset( $_POST['field']['wysiwyg_images'] ) ? (bool) intval( $_POST['field']['wysiwyg_images'] ) : false );
|
249 |
$field->set_data( 'excerpt_override', isset( $_POST['field']['excerpt_override'] ) ? intval( $_POST['field']['excerpt_override'] ) : 0 ); // Input var okay.
|
250 |
$field->set_data( 'auto_excerpt', isset( $_POST['field']['auto_excerpt'] ) ? (bool) intval( $_POST['field']['auto_excerpt'] ) : false );
|
|
|
251 |
}
|
252 |
|
253 |
public function store_field_value( &$field, $post_id, $value ) {
|
248 |
$field->set_data( 'wysiwyg_images', isset( $_POST['field']['wysiwyg_images'] ) ? (bool) intval( $_POST['field']['wysiwyg_images'] ) : false );
|
249 |
$field->set_data( 'excerpt_override', isset( $_POST['field']['excerpt_override'] ) ? intval( $_POST['field']['excerpt_override'] ) : 0 ); // Input var okay.
|
250 |
$field->set_data( 'auto_excerpt', isset( $_POST['field']['auto_excerpt'] ) ? (bool) intval( $_POST['field']['auto_excerpt'] ) : false );
|
251 |
+
$field->set_data( 'word_count', ( in_array( 'word_number', $field->get_validators() ) && isset( $_POST['field']['word_count'] ) ) ? intval( $_POST['field']['word_count'] ) : 0 );
|
252 |
}
|
253 |
|
254 |
public function store_field_value( &$field, $post_id, $value ) {
|
includes/fields/class-fieldtypes-textfield.php
CHANGED
@@ -1,8 +1,16 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class WPBDP_FieldTypes_TextField extends WPBDP_Form_Field_Type {
|
3 |
|
4 |
public function __construct() {
|
5 |
-
parent::__construct( _x('Textfield', 'form-fields api', 'WPBDM') );
|
6 |
}
|
7 |
|
8 |
public function get_id() {
|
@@ -31,23 +39,28 @@ class WPBDP_FieldTypes_TextField extends WPBDP_Form_Field_Type {
|
|
31 |
return $value;
|
32 |
}
|
33 |
|
34 |
-
public function render_field_inner( &$field, $value, $context, &$extra=null, $field_settings = array() ) {
|
35 |
-
if ( is_array( $value ) )
|
36 |
$value = implode( ',', $value );
|
|
|
37 |
|
38 |
$html = '';
|
39 |
|
40 |
-
if ( $field->has_validator( 'date' ) )
|
41 |
$html .= _x( 'Format 01/31/1969', 'form-fields api', 'WPBDM' );
|
|
|
42 |
|
43 |
-
if ( isset( $field_settings['html_before'] ) )
|
44 |
$html .= $field_settings['html_before'];
|
|
|
45 |
|
46 |
-
$html .= sprintf(
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
|
|
|
|
51 |
|
52 |
return $html;
|
53 |
}
|
@@ -56,4 +69,8 @@ class WPBDP_FieldTypes_TextField extends WPBDP_Form_Field_Type {
|
|
56 |
return array( 'title', 'excerpt', 'tags', 'meta' );
|
57 |
}
|
58 |
|
|
|
|
|
|
|
|
|
59 |
}
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* @package WPBDP\FieldTypes\Textfield
|
4 |
+
*/
|
5 |
+
|
6 |
+
// phpcs:disable
|
7 |
+
/**
|
8 |
+
* @SuppressWarnings(PHPMD)
|
9 |
+
*/
|
10 |
class WPBDP_FieldTypes_TextField extends WPBDP_Form_Field_Type {
|
11 |
|
12 |
public function __construct() {
|
13 |
+
parent::__construct( _x( 'Textfield', 'form-fields api', 'WPBDM' ) );
|
14 |
}
|
15 |
|
16 |
public function get_id() {
|
39 |
return $value;
|
40 |
}
|
41 |
|
42 |
+
public function render_field_inner( &$field, $value, $context, &$extra = null, $field_settings = array() ) {
|
43 |
+
if ( is_array( $value ) ) {
|
44 |
$value = implode( ',', $value );
|
45 |
+
}
|
46 |
|
47 |
$html = '';
|
48 |
|
49 |
+
if ( $field->has_validator( 'date' ) ) {
|
50 |
$html .= _x( 'Format 01/31/1969', 'form-fields api', 'WPBDM' );
|
51 |
+
}
|
52 |
|
53 |
+
if ( isset( $field_settings['html_before'] ) ) {
|
54 |
$html .= $field_settings['html_before'];
|
55 |
+
}
|
56 |
|
57 |
+
$html .= sprintf(
|
58 |
+
'<input type="text" id="%s" name="%s" value="%s" %s />',
|
59 |
+
'wpbdp-field-' . $field->get_id(),
|
60 |
+
'listingfields[' . $field->get_id() . ']',
|
61 |
+
esc_attr( $value ),
|
62 |
+
( isset( $field_settings['placeholder'] ) ? sprintf( 'placeholder="%s"', esc_attr( $field_settings['placeholder'] ) ) : '' )
|
63 |
+
);
|
64 |
|
65 |
return $html;
|
66 |
}
|
69 |
return array( 'title', 'excerpt', 'tags', 'meta' );
|
70 |
}
|
71 |
|
72 |
+
public function process_field_settings( &$field ) {
|
73 |
+
$field->set_data( 'word_count', ( in_array( 'word_number', $field->get_validators() ) && isset( $_POST['field']['word_count'] ) ) ? intval( $_POST['field']['word_count'] ) : 0 );
|
74 |
+
}
|
75 |
+
|
76 |
}
|
includes/fields/class-form-field.php
CHANGED
@@ -3,6 +3,15 @@
|
|
3 |
* Represents a single field from the database. This class can not be instantiated directly.
|
4 |
*
|
5 |
* @since 2.3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
*/
|
7 |
class WPBDP_Form_Field {
|
8 |
|
@@ -20,26 +29,26 @@ class WPBDP_Form_Field {
|
|
20 |
private $validators = array();
|
21 |
|
22 |
private $display_flags = array();
|
23 |
-
private $field_data
|
24 |
|
25 |
-
public $css_classes
|
26 |
public $html_attributes = array();
|
27 |
|
28 |
|
29 |
-
public function __construct( $attrs=array() ) {
|
30 |
$defaults = array(
|
31 |
-
'id'
|
32 |
-
'shortname'
|
33 |
-
'label'
|
34 |
-
'tag'
|
35 |
-
'description'
|
36 |
-
'field_type'
|
37 |
-
'association'
|
38 |
-
'weight'
|
39 |
-
'validators'
|
40 |
'display_flags' => array(),
|
41 |
/*'display_flags' => array( 'excerpt', 'listing', 'search' ),*/
|
42 |
-
'field_data'
|
43 |
);
|
44 |
|
45 |
$attrs = wp_parse_args( $attrs, $defaults );
|
@@ -47,58 +56,60 @@ class WPBDP_Form_Field {
|
|
47 |
|
48 |
$formfields = WPBDP_FormFields::instance();
|
49 |
|
50 |
-
$this->id
|
51 |
-
$this->shortname
|
52 |
-
$this->label
|
53 |
$this->description = $attrs['description'];
|
54 |
-
$this->type
|
55 |
|
56 |
-
if (
|
57 |
throw new Exception( _x( 'Invalid form field type', 'form-fields-api', 'WPBDM' ) );
|
|
|
58 |
|
59 |
-
/*
|
|
|
60 |
$this->type = WPBDP_FormFields::instance()->get_field_type( 'textfield' );*/
|
61 |
|
62 |
$this->association = $attrs['association'];
|
63 |
-
$this->weight
|
64 |
|
65 |
/* Validators */
|
66 |
if ( is_array( $attrs['validators'] ) ) {
|
67 |
foreach ( $attrs['validators'] as $validator ) {
|
68 |
-
if ( $validator && !in_array( $validator, $this->validators, true ) )
|
69 |
$this->validators[] = $validator;
|
|
|
70 |
}
|
71 |
}
|
72 |
|
73 |
/* display_options */
|
74 |
$this->display_flags = $attrs['display_flags'];
|
75 |
-
$this->field_data
|
76 |
-
$this->tag
|
77 |
|
78 |
if ( $this->association == 'category' ) {
|
79 |
$this->field_data['options'] = array();
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
// $this->field_data['options'] = $options;
|
91 |
} else {
|
92 |
// handle some special extra data from previous BD versions
|
93 |
// TODO: this is not needed anymore since the 3.2 upgrade routine
|
94 |
-
if ( isset( $attrs['field_data'] ) && isset( $attrs['field_data']['options'] )
|
95 |
$options = array();
|
96 |
|
97 |
foreach ( $attrs['field_data']['options'] as $option_value ) {
|
98 |
-
if ( is_array( $option_value ) )
|
99 |
$options[ $option_value[0] ] = $option_value[1];
|
100 |
-
else
|
101 |
-
|
|
|
102 |
}
|
103 |
|
104 |
$this->field_data['options'] = $options;
|
@@ -139,8 +150,9 @@ class WPBDP_Form_Field {
|
|
139 |
public function get_shortname() {
|
140 |
static $protected_shortnames = array( 'images', 'image', 'username', 'featured_level', 'expires_on', 'sequence_id' );
|
141 |
|
142 |
-
if ( $this->shortname )
|
143 |
return $this->shortname;
|
|
|
144 |
|
145 |
// $name = $name . '-' . $field->get_id();
|
146 |
if ( ! $this->label ) {
|
@@ -148,8 +160,9 @@ class WPBDP_Form_Field {
|
|
148 |
} else {
|
149 |
$shortname = WPBDP_Form_Field_Type::normalize_name( $this->label );
|
150 |
|
151 |
-
if ( in_array( $shortname, $protected_shortnames, true ) )
|
152 |
$shortname .= '__' . $this->id;
|
|
|
153 |
}
|
154 |
|
155 |
$this->shortname = $shortname;
|
@@ -170,13 +183,15 @@ class WPBDP_Form_Field {
|
|
170 |
|
171 |
$in_use = false;
|
172 |
|
173 |
-
if ( ! $this->id )
|
174 |
$in_use = (bool) $wpdb->get_var( $wpdb->prepare( "SELECT 1 AS x FROM {$wpdb->prefix}wpbdp_form_fields WHERE shortname = %s LIMIT 1", $shortname ) );
|
175 |
-
else
|
176 |
-
|
|
|
177 |
|
178 |
-
if ( ! $in_use )
|
179 |
return $shortname;
|
|
|
180 |
|
181 |
$n = 1;
|
182 |
|
@@ -219,8 +234,9 @@ class WPBDP_Form_Field {
|
|
219 |
}
|
220 |
|
221 |
public function add_validator( $validator ) {
|
222 |
-
if (
|
223 |
$this->validators[] = $validator;
|
|
|
224 |
}
|
225 |
|
226 |
/**
|
@@ -239,24 +255,25 @@ class WPBDP_Form_Field {
|
|
239 |
return current_user_can( 'administrator' );
|
240 |
}
|
241 |
|
242 |
-
return in_array( $context, $this->display_flags, true);
|
243 |
}
|
244 |
|
245 |
public function add_display_flag( $flagorflags ) {
|
246 |
$flagorflags = is_array( $flagorflags ) ? $flagorflags : array( $flagorflags );
|
247 |
|
248 |
foreach ( $flagorflags as $flag ) {
|
249 |
-
if (
|
250 |
-
$this->display_flags[] = $flag;
|
251 |
}
|
252 |
}
|
253 |
}
|
254 |
|
255 |
public function remove_display_flag( $flagorflags ) {
|
256 |
$flagorflags = is_array( $flagorflags ) ? $flagorflags : array( $flagorflags );
|
257 |
-
|
258 |
-
foreach ( $flagorflags as $flag )
|
259 |
wpbdp_array_remove_value( $this->display_flags, $flag );
|
|
|
260 |
}
|
261 |
|
262 |
public function has_display_flag( $flag ) {
|
@@ -275,21 +292,24 @@ class WPBDP_Form_Field {
|
|
275 |
* @since 3.5.3
|
276 |
*/
|
277 |
public function get_css_classes( $render_context = '' ) {
|
278 |
-
$css_classes
|
279 |
$css_classes[] = 'wpbdp-form-field';
|
280 |
$css_classes[] = 'wpbdp-form-field-id-' . $this->get_id();
|
281 |
$css_classes[] = 'wpbdp-form-field-type-' . $this->get_field_type()->get_id();
|
282 |
$css_classes[] = 'wpbdp-form-field-label-' . WPBDP_Form_Field_Type::normalize_name( $this->get_label() );
|
283 |
$css_classes[] = 'wpbdp-form-field-association-' . $this->get_association();
|
284 |
|
285 |
-
if ( $this->get_description() )
|
286 |
$css_classes[] = 'wpbdp-form-field-has-description';
|
|
|
287 |
|
288 |
-
foreach ( $this->get_validators() as $validator )
|
289 |
$css_classes[] = 'wpbdp-form-field-validate-' . $validator;
|
|
|
290 |
|
291 |
-
if ( $render_context )
|
292 |
$css_classes[] = 'wpbdp-form-field-in-' . $render_context;
|
|
|
293 |
|
294 |
// Add own custom CSS classes.
|
295 |
$css_classes = array_merge( $css_classes, $this->css_classes );
|
@@ -300,6 +320,7 @@ class WPBDP_Form_Field {
|
|
300 |
/**
|
301 |
* TODO: dodoc.
|
302 |
* Valid behavior (override default behavior) flags: display-only, no-delete, no-validation
|
|
|
303 |
* @since 3.4
|
304 |
*/
|
305 |
public function get_behavior_flags() {
|
@@ -308,6 +329,7 @@ class WPBDP_Form_Field {
|
|
308 |
|
309 |
/**
|
310 |
* TODO: dodoc.
|
|
|
311 |
* @since 3.4
|
312 |
*/
|
313 |
public function has_behavior_flag( $flag ) {
|
@@ -316,24 +338,27 @@ class WPBDP_Form_Field {
|
|
316 |
|
317 |
/**
|
318 |
* Returns field-type specific configuration options for this field.
|
|
|
319 |
* @param string $key configuration key name
|
320 |
* @return mixed|array if $key is ommitted an array of all key/values will be returned
|
321 |
*/
|
322 |
-
public function data( $key=null, $default=null ) {
|
323 |
-
if (
|
324 |
return $this->field_data;
|
|
|
325 |
|
326 |
-
$res = isset( $this->field_data[$key] ) ? $this->field_data[ $key ] : $default;
|
327 |
return apply_filters( 'wpbdp_form_field_data', $res, $key, $this );
|
328 |
}
|
329 |
|
330 |
/**
|
331 |
* Saves field-type specific configuration options for this field.
|
|
|
332 |
* @param string $key configuration key name.
|
333 |
-
* @param mixed
|
334 |
* @return mixed data value.
|
335 |
*/
|
336 |
-
public function set_data( $key, $value=null ) {
|
337 |
$this->field_data[ $key ] = $value;
|
338 |
}
|
339 |
|
@@ -346,49 +371,55 @@ class WPBDP_Form_Field {
|
|
346 |
|
347 |
/**
|
348 |
* Returns this field's raw value for the given post.
|
|
|
349 |
* @param int|object $post_id post ID or object.
|
350 |
* @return mixed
|
351 |
*/
|
352 |
public function value( $post_id, $raw = false ) {
|
353 |
-
if ( !get_post_type( $post_id ) == WPBDP_POST_TYPE )
|
354 |
-
return null;
|
|
|
355 |
|
356 |
$value = $this->type->get_field_value( $this, $post_id );
|
357 |
|
358 |
-
if ( ! $raw )
|
359 |
$value = apply_filters( 'wpbdp_form_field_value', $value, $post_id, $this );
|
|
|
360 |
|
361 |
return $value;
|
362 |
}
|
363 |
|
364 |
/**
|
365 |
* Returns this field's HTML value for the given post. Useful for display.
|
|
|
366 |
* @param int|object $post_id post ID or object.
|
367 |
-
* @param string
|
368 |
* @return string valid HTML.
|
369 |
*/
|
370 |
public function html_value( $post_id, $display_context = 'listing' ) {
|
371 |
$value = $this->type->get_field_html_value( $this, $post_id );
|
372 |
|
373 |
-
if ( $value && in_array( 'email', $this->validators, true ) && wpbdp_get_option('override-email-blocking') ) {
|
374 |
// At least obfuscate the address if we're going to show it.
|
375 |
$out = '';
|
376 |
|
377 |
for ( $i = 0; $i < strlen( $value ); $i++ ) {
|
378 |
-
if ( '.' == $value[ $i ] || '@' == $value[ $i ] )
|
379 |
$out .= $value [ $i ];
|
380 |
-
else
|
381 |
-
|
|
|
382 |
}
|
383 |
|
384 |
$value = sprintf( '<a href="mailto:%s">%s</a>', $out, $out );
|
385 |
}
|
386 |
|
387 |
-
return apply_filters( 'wpbdp_form_field_html_value', $value
|
388 |
}
|
389 |
|
390 |
/**
|
391 |
* Returns this field's value as plain text. Useful for emails or cooperation between modules.
|
|
|
392 |
* @param int|object $post_id post ID or object.
|
393 |
* @return string
|
394 |
*/
|
@@ -407,14 +438,16 @@ class WPBDP_Form_Field {
|
|
407 |
|
408 |
/**
|
409 |
* Converts input from forms to a value useful for this field.
|
|
|
410 |
* @param mixed $input form input.
|
411 |
* @return mixed
|
412 |
*/
|
413 |
-
public function convert_input( $input=null ) {
|
414 |
$val = apply_filters( 'wpbdp_form_field_pre_convert_input', null, $input, $this );
|
415 |
|
416 |
-
if ( ! is_null( $val ) )
|
417 |
return $val;
|
|
|
418 |
|
419 |
return $this->type->convert_input( $this, $input );
|
420 |
}
|
@@ -435,13 +468,14 @@ class WPBDP_Form_Field {
|
|
435 |
return apply_filters( 'wpbdp_form_field_is_empty_value', $this->type->is_empty_value( $value ), $value, $this );
|
436 |
}
|
437 |
|
438 |
-
public function validate( $value, &$errors=null ) {
|
439 |
-
$errors = !is_array( $errors ) ? array() : $errors;
|
440 |
|
441 |
$validation_api = WPBDP_FieldValidation::instance();
|
442 |
|
443 |
-
if (
|
444 |
return true;
|
|
|
445 |
|
446 |
foreach ( $this->validators as $validator ) {
|
447 |
if ( 'required-in-search' == $validator ) {
|
@@ -458,26 +492,47 @@ class WPBDP_Form_Field {
|
|
458 |
}
|
459 |
}
|
460 |
|
461 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
462 |
return true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
463 |
|
464 |
return false;
|
465 |
}
|
466 |
|
467 |
/**
|
468 |
* Returns HTML apt for display of this field's value.
|
|
|
469 |
* @param int|object $post_id post ID or object
|
470 |
-
* @param string
|
471 |
* @return string
|
472 |
*/
|
473 |
-
public function display( $post_id, $display_context='listing' ) {
|
474 |
if ( in_array( 'email', $this->validators, true ) ) {
|
475 |
-
if ( ! wpbdp_get_option('override-email-blocking') )
|
476 |
return '';
|
|
|
477 |
}
|
478 |
|
479 |
-
if ( $this->type->is_empty_value( $this->value( $post_id ) ) )
|
480 |
return '';
|
|
|
481 |
|
482 |
$html = $this->type->display_field( $this, $post_id, $display_context );
|
483 |
$html = apply_filters_ref_array( 'wpbdp_form_field_display', array( $html, $this, $display_context, $post_id ) );
|
@@ -493,18 +548,21 @@ class WPBDP_Form_Field {
|
|
493 |
|
494 |
/**
|
495 |
* Returns HTML apt for displaying this field in forms.
|
496 |
-
*
|
|
|
497 |
* @param string $display_context the rendering context. defaults to 'submit'.
|
498 |
* @return string
|
499 |
*/
|
500 |
public function render( $value = null, $display_context = 'submit', &$extra = null, $field_settings = array() ) {
|
501 |
do_action_ref_array( 'wpbdp_form_field_pre_render', array( &$this, $value, $display_context ) );
|
502 |
|
503 |
-
if ( $this->has_behavior_flag( 'display-only' ) )
|
504 |
return '';
|
|
|
505 |
|
506 |
-
if ( 'submit' == $display_context && $this->has_behavior_flag( 'no-submit' ) )
|
507 |
return '';
|
|
|
508 |
|
509 |
if ( $this->has_display_flag( 'private' ) && ! current_user_can( 'administrator' ) ) {
|
510 |
return '';
|
@@ -515,6 +573,7 @@ class WPBDP_Form_Field {
|
|
515 |
|
516 |
/**
|
517 |
* Tries to save this field to the database. If successfully, sets the new id too.
|
|
|
518 |
* @return mixed True if successfully created, WP_Error in the other case
|
519 |
*/
|
520 |
public function save() {
|
@@ -522,20 +581,21 @@ class WPBDP_Form_Field {
|
|
522 |
|
523 |
$api = wpbdp_formfields_api();
|
524 |
|
525 |
-
if (
|
526 |
-
return new WP_Error( 'wpbdp-save-error', _x('Field label is required.', 'form-fields-api', 'WPBDM') );
|
|
|
527 |
|
528 |
// If performing a field conversion, make sure the types are compatible.
|
529 |
if ( $this->id ) {
|
530 |
$orig_type = $wpdb->get_var( $wpdb->prepare( "SELECT field_type FROM {$wpdb->prefix}wpbdp_form_fields WHERE id = %d", $this->id ) );
|
531 |
-
$new_type
|
532 |
|
533 |
if ( $orig_type != $new_type ) {
|
534 |
if ( 'url' == $new_type || 'image' == $new_type || 'url' == $orig_type || 'image' == $orig_type ) {
|
535 |
$this->type = WPBDP_FormFields::instance()->get_field_type( $orig_type );
|
536 |
-
$error_msg
|
537 |
|
538 |
-
if( WPBDP_Listing::count_listings() ) {
|
539 |
$error_msg .= '<br/><br/>' . _x( '<strong>WARNING</strong>: If you delete this field, the data from it in existing listings will be deleted as well.', 'form-fields-api', 'WPBDM' );
|
540 |
}
|
541 |
|
@@ -550,14 +610,23 @@ class WPBDP_Form_Field {
|
|
550 |
$res = $this->type->process_field_settings( $this );
|
551 |
do_action_ref_array( 'wpbdp_form_field_settings_process', array( &$this ) );
|
552 |
|
553 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
554 |
return $res;
|
|
|
555 |
}
|
556 |
|
557 |
// enforce association constraints
|
558 |
global $wpbdp;
|
559 |
$flags = $wpbdp->formfields->get_association_flags( $this->association );
|
560 |
-
|
561 |
if ( in_array( 'unique', $flags ) ) {
|
562 |
if ( $otherfields = wpbdp_get_form_fields( 'association=' . $this->association ) ) {
|
563 |
if ( ( count( $otherfields ) > 1 ) || ( $otherfields[0]->get_id() != $this->id ) ) {
|
@@ -570,11 +639,11 @@ class WPBDP_Form_Field {
|
|
570 |
$this->add_validator( 'required' );
|
571 |
}
|
572 |
|
573 |
-
|
574 |
return new WP_Error( 'wpbdp-field-error', sprintf( _x( '"%s" is an invalid field type for this association.', 'form-fields-api', 'WPBDM' ), $this->type->get_name() ) );
|
575 |
-
|
576 |
|
577 |
-
if( in_array( 'private', $this->display_flags ) ) {
|
578 |
if ( ! in_array( $this->association, array( 'title', 'content', 'category' ), true ) ) {
|
579 |
$this->set_display_flags( array( 'private' ) );
|
580 |
$this->set_validators();
|
@@ -590,19 +659,19 @@ class WPBDP_Form_Field {
|
|
590 |
|
591 |
$data = array();
|
592 |
|
593 |
-
$data['label']
|
594 |
-
$data['shortname']
|
595 |
-
$data['description']
|
596 |
-
$data['field_type']
|
597 |
-
$data['association']
|
598 |
-
$data['validators']
|
599 |
-
$data['weight']
|
600 |
$data['display_flags'] = implode( ',', $this->display_flags );
|
601 |
-
$data['field_data']
|
602 |
|
603 |
if ( in_array( $this->association, array( 'title', 'excerpt', 'content', 'category', 'tags' ), true ) ) {
|
604 |
$data['tag'] = $this->association;
|
605 |
-
}
|
606 |
$data['tag'] = 'ratings';
|
607 |
} else {
|
608 |
$data['tag'] = in_array( $this->tag, array( 'title', 'excerpt', 'content', 'category', 'tags' ), true ) ? '' : $this->tag;
|
@@ -620,11 +689,13 @@ class WPBDP_Form_Field {
|
|
620 |
|
621 |
/**
|
622 |
* Tries to delete this field from the database.
|
|
|
623 |
* @return mixed True if successfully deleted, WP_Error in the other case
|
624 |
*/
|
625 |
public function delete() {
|
626 |
-
if (
|
627 |
return new WP_Error( 'wpbdp-delete-error', _x( 'Invalid field ID', 'form-fields-api', 'WPBDM' ) );
|
|
|
628 |
|
629 |
global $wpbdp;
|
630 |
$flags = $wpbdp->formfields->get_association_flags( $this->association );
|
@@ -632,8 +703,9 @@ class WPBDP_Form_Field {
|
|
632 |
if ( in_array( 'required', $flags ) ) {
|
633 |
$otherfields = wpbdp_get_form_fields( array( 'association' => $this->association ) );
|
634 |
|
635 |
-
if (
|
636 |
-
|
|
|
637 |
}
|
638 |
|
639 |
global $wpdb;
|
@@ -653,30 +725,33 @@ class WPBDP_Form_Field {
|
|
653 |
|
654 |
/**
|
655 |
* Reorders this field within the list of fields.
|
|
|
656 |
* @param int $delta if positive, field is moved up. else is moved down.
|
657 |
*/
|
658 |
-
public function reorder( $delta=0 ) {
|
659 |
global $wpdb;
|
660 |
|
661 |
$delta = intval( $delta );
|
662 |
|
663 |
-
if (
|
664 |
return;
|
|
|
665 |
|
666 |
if ( $delta > 0 ) {
|
667 |
$fields = $wpdb->get_results( $wpdb->prepare( "SELECT id, weight FROM {$wpdb->prefix}wpbdp_form_fields WHERE weight >= %d ORDER BY weight ASC", $this->weight ) );
|
668 |
|
669 |
-
if ( $fields[count($fields) - 1]->id == $this->id )
|
670 |
return;
|
|
|
671 |
|
672 |
for ( $i = 0; $i < count( $fields ); $i++ ) {
|
673 |
$fields[ $i ]->weight = intval( $this->weight ) + $i;
|
674 |
|
675 |
-
if ($fields[ $i ]->id == $this->id ) {
|
676 |
-
$fields[ $i ]->weight
|
677 |
-
$fields[ $i+1 ]->weight -= 1;
|
678 |
-
$i
|
679 |
-
}
|
680 |
}
|
681 |
|
682 |
foreach ( $fields as &$f ) {
|
@@ -685,25 +760,26 @@ class WPBDP_Form_Field {
|
|
685 |
} else {
|
686 |
$fields = $wpdb->get_results( $wpdb->prepare( "SELECT id, weight FROM {$wpdb->prefix}wpbdp_form_fields WHERE weight <= %d ORDER BY weight ASC", $this->weight ) );
|
687 |
|
688 |
-
if ( $fields[0]->id == $this->id )
|
689 |
return;
|
|
|
690 |
|
691 |
foreach ( $fields as $i => $f ) {
|
692 |
if ( $f->id == $this->id ) {
|
693 |
-
self::get( $fields[ $i-1 ]->id )->reorder( 1 );
|
694 |
return;
|
695 |
}
|
696 |
}
|
697 |
-
|
698 |
-
}
|
699 |
}
|
700 |
|
701 |
/**
|
702 |
* @since 5.0
|
703 |
*/
|
704 |
public function value_from_POST( $key = 'listingfields' ) {
|
705 |
-
if ( ! $_POST || ! isset( $_POST[ $key ][ $this->id ] ) )
|
706 |
return null;
|
|
|
707 |
|
708 |
$value = stripslashes_deep( $_POST[ $key ][ $this->id ] );
|
709 |
$value = $this->convert_input( $value );
|
@@ -733,8 +809,9 @@ class WPBDP_Form_Field {
|
|
733 |
|
734 |
// Check if the search has been short-circuited.
|
735 |
$res = apply_filters_ref_array( 'wpbdp_pre_configure_search', array( false, $this, $query, $search ) );
|
736 |
-
if ( is_array( $res ) )
|
737 |
return apply_filters_ref_array( 'wpbdp_configure_search', array( $res, $this, $query, $search ) );
|
|
|
738 |
|
739 |
// If there's a field type specific handling, use it.
|
740 |
$search_res = $this->type->configure_search( $this, $query, $search );
|
@@ -751,8 +828,9 @@ class WPBDP_Form_Field {
|
|
751 |
case 'title':
|
752 |
case 'excerpt':
|
753 |
case 'content':
|
754 |
-
if ( ! $query )
|
755 |
break;
|
|
|
756 |
|
757 |
$search_res['where'] = $wpdb->prepare( "{$wpdb->posts}.post_{$this->get_association()} LIKE '%%%s%%'", $query );
|
758 |
break;
|
@@ -762,11 +840,12 @@ class WPBDP_Form_Field {
|
|
762 |
$query = is_array( $query ) ? $query : array( $query );
|
763 |
$query = array_diff( array_map( 'trim', $query ), array( -1, 0, '' ) );
|
764 |
|
765 |
-
$tax
|
766 |
$tt_ids = array();
|
767 |
|
768 |
-
if ( ! $query )
|
769 |
break;
|
|
|
770 |
|
771 |
$charset = get_option( 'blog_charset' );
|
772 |
|
@@ -774,34 +853,43 @@ class WPBDP_Form_Field {
|
|
774 |
if ( is_numeric( $term_ ) ) {
|
775 |
$term = get_term( intval( $term_ ), $tax );
|
776 |
|
777 |
-
if ( ! $term )
|
778 |
continue;
|
|
|
779 |
|
780 |
-
$t_ids
|
781 |
-
$tt_ids = array_merge(
|
782 |
-
|
|
|
|
|
783 |
} elseif ( is_string( $term_ ) ) {
|
784 |
-
$tt_ids = $wpdb->get_col(
|
785 |
-
|
786 |
-
|
|
|
|
|
|
|
|
|
787 |
}
|
788 |
}
|
789 |
|
790 |
if ( $tt_ids ) {
|
791 |
list( $alias, $reused ) = $search->join_alias( $wpdb->term_relationships );
|
792 |
|
793 |
-
if ( ! $reused )
|
794 |
$search_res['join'] = " LEFT JOIN {$wpdb->term_relationships} AS {$alias} ON {$wpdb->posts}.ID = {$alias}.object_id";
|
|
|
795 |
|
796 |
-
$search_res['where'] = "{$alias}.term_taxonomy_id IN (" . implode( ',', $tt_ids ) .
|
797 |
} else {
|
798 |
$search_res['where'] = '1=0';
|
799 |
}
|
800 |
|
801 |
break;
|
802 |
case 'meta':
|
803 |
-
if ( ! $query )
|
804 |
break;
|
|
|
805 |
|
806 |
list( $alias, $reused ) = $search->join_alias( $wpdb->postmeta, false );
|
807 |
|
@@ -828,6 +916,7 @@ class WPBDP_Form_Field {
|
|
828 |
|
829 |
/**
|
830 |
* Creates a WPBDP_FormField from a database record.
|
|
|
831 |
* @param int $id the database record ID.
|
832 |
* @return WPBDP_FormField a valid WPBDP_FormField if the record exists or null if not.
|
833 |
*/
|
@@ -836,29 +925,31 @@ class WPBDP_Form_Field {
|
|
836 |
|
837 |
$id = absint( $id );
|
838 |
|
839 |
-
if ( ! $id )
|
840 |
return null;
|
|
|
841 |
|
842 |
$_field = wp_cache_get( $id, 'wpbdp formfields' );
|
843 |
|
844 |
if ( ! $_field ) {
|
845 |
$_field = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}wpbdp_form_fields WHERE id = %d", $id ) );
|
846 |
|
847 |
-
if ( ! $_field )
|
848 |
return null;
|
|
|
849 |
|
850 |
$_field = (array) $_field;
|
851 |
|
852 |
-
$_field['display_flags'] = explode( ',', $_field['display_flags'] );
|
853 |
-
$_field['validators']
|
854 |
-
$_field['field_data']
|
855 |
|
856 |
wp_cache_set( $id, $_field, 'wpbdp formfields' );
|
857 |
}
|
858 |
|
859 |
try {
|
860 |
return new WPBDP_FormField( $_field );
|
861 |
-
} catch (Exception $e ) {
|
862 |
return null;
|
863 |
}
|
864 |
}
|
@@ -868,8 +959,9 @@ class WPBDP_Form_Field {
|
|
868 |
|
869 |
$field_id = absint( $wpdb->get_var( $wpdb->prepare( "SELECT id FROM {$wpdb->prefix}wpbdp_form_fields WHERE tag = %s LIMIT 1", $tag ) ) );
|
870 |
|
871 |
-
if ( ! $field_id )
|
872 |
return null;
|
|
|
873 |
|
874 |
return self::get( $field_id );
|
875 |
}
|
3 |
* Represents a single field from the database. This class can not be instantiated directly.
|
4 |
*
|
5 |
* @since 2.3
|
6 |
+
* @package WPBDP/Views/Includes/Fields/Form Field
|
7 |
+
*/
|
8 |
+
|
9 |
+
// phpcs:disable
|
10 |
+
|
11 |
+
/**
|
12 |
+
* Class WPBDP_Form_Field
|
13 |
+
*
|
14 |
+
* @SuppressWarnings(PHPMD)
|
15 |
*/
|
16 |
class WPBDP_Form_Field {
|
17 |
|
29 |
private $validators = array();
|
30 |
|
31 |
private $display_flags = array();
|
32 |
+
private $field_data = array();
|
33 |
|
34 |
+
public $css_classes = array();
|
35 |
public $html_attributes = array();
|
36 |
|
37 |
|
38 |
+
public function __construct( $attrs = array() ) {
|
39 |
$defaults = array(
|
40 |
+
'id' => 0,
|
41 |
+
'shortname' => '',
|
42 |
+
'label' => '',
|
43 |
+
'tag' => '',
|
44 |
+
'description' => '',
|
45 |
+
'field_type' => 'textfield',
|
46 |
+
'association' => 'meta',
|
47 |
+
'weight' => 0,
|
48 |
+
'validators' => array(),
|
49 |
'display_flags' => array(),
|
50 |
/*'display_flags' => array( 'excerpt', 'listing', 'search' ),*/
|
51 |
+
'field_data' => array(),
|
52 |
);
|
53 |
|
54 |
$attrs = wp_parse_args( $attrs, $defaults );
|
56 |
|
57 |
$formfields = WPBDP_FormFields::instance();
|
58 |
|
59 |
+
$this->id = intval( $attrs['id'] );
|
60 |
+
$this->shortname = $attrs['shortname'];
|
61 |
+
$this->label = $attrs['label'];
|
62 |
$this->description = $attrs['description'];
|
63 |
+
$this->type = is_object( $attrs['field_type'] ) ? $attrs['field_type'] : WPBDP_FormFields::instance()->get_field_type( $attrs['field_type'] );
|
64 |
|
65 |
+
if ( ! $this->type ) {
|
66 |
throw new Exception( _x( 'Invalid form field type', 'form-fields-api', 'WPBDM' ) );
|
67 |
+
}
|
68 |
|
69 |
+
/*
|
70 |
+
if ( !$this->type ) // temporary workaround related to 3.0 upgrade issues (issue #365)
|
71 |
$this->type = WPBDP_FormFields::instance()->get_field_type( 'textfield' );*/
|
72 |
|
73 |
$this->association = $attrs['association'];
|
74 |
+
$this->weight = intval( $attrs['weight'] );
|
75 |
|
76 |
/* Validators */
|
77 |
if ( is_array( $attrs['validators'] ) ) {
|
78 |
foreach ( $attrs['validators'] as $validator ) {
|
79 |
+
if ( $validator && ! in_array( $validator, $this->validators, true ) ) {
|
80 |
$this->validators[] = $validator;
|
81 |
+
}
|
82 |
}
|
83 |
}
|
84 |
|
85 |
/* display_options */
|
86 |
$this->display_flags = $attrs['display_flags'];
|
87 |
+
$this->field_data = $attrs['field_data'];
|
88 |
+
$this->tag = trim( $attrs['tag'] );
|
89 |
|
90 |
if ( $this->association == 'category' ) {
|
91 |
$this->field_data['options'] = array();
|
92 |
+
// } elseif ( $this->association == 'category' ) {
|
93 |
+
// TODO: make this hierarchical (see https://codex.wordpress.org/Function_Reference/Walker_Class)
|
94 |
+
// $terms = get_terms( $this->association == 'tags' ? WPBDP_TAGS_TAX : wpbdp_categories_taxonomy(), 'hide_empty=0&hierarchical=1' );
|
95 |
+
// $options = array();
|
96 |
+
// foreach ( $terms as &$term ) {
|
97 |
+
// $k = $this->association == 'tags' ? $term->slug : $term->term_id;
|
98 |
+
// $options [ $k ] = $term->name;
|
99 |
+
// }
|
100 |
+
// $this->field_data['options'] = $options;
|
|
|
|
|
101 |
} else {
|
102 |
// handle some special extra data from previous BD versions
|
103 |
// TODO: this is not needed anymore since the 3.2 upgrade routine
|
104 |
+
if ( isset( $attrs['field_data'] ) && isset( $attrs['field_data']['options'] ) ) {
|
105 |
$options = array();
|
106 |
|
107 |
foreach ( $attrs['field_data']['options'] as $option_value ) {
|
108 |
+
if ( is_array( $option_value ) ) {
|
109 |
$options[ $option_value[0] ] = $option_value[1];
|
110 |
+
} else {
|
111 |
+
$options[ $option_value ] = $option_value;
|
112 |
+
}
|
113 |
}
|
114 |
|
115 |
$this->field_data['options'] = $options;
|
150 |
public function get_shortname() {
|
151 |
static $protected_shortnames = array( 'images', 'image', 'username', 'featured_level', 'expires_on', 'sequence_id' );
|
152 |
|
153 |
+
if ( $this->shortname ) {
|
154 |
return $this->shortname;
|
155 |
+
}
|
156 |
|
157 |
// $name = $name . '-' . $field->get_id();
|
158 |
if ( ! $this->label ) {
|
160 |
} else {
|
161 |
$shortname = WPBDP_Form_Field_Type::normalize_name( $this->label );
|
162 |
|
163 |
+
if ( in_array( $shortname, $protected_shortnames, true ) ) {
|
164 |
$shortname .= '__' . $this->id;
|
165 |
+
}
|
166 |
}
|
167 |
|
168 |
$this->shortname = $shortname;
|
183 |
|
184 |
$in_use = false;
|
185 |
|
186 |
+
if ( ! $this->id ) {
|
187 |
$in_use = (bool) $wpdb->get_var( $wpdb->prepare( "SELECT 1 AS x FROM {$wpdb->prefix}wpbdp_form_fields WHERE shortname = %s LIMIT 1", $shortname ) );
|
188 |
+
} else {
|
189 |
+
$in_use = (bool) $wpdb->get_var( $wpdb->prepare( "SELECT 1 AS x FROM {$wpdb->prefix}wpbdp_form_fields WHERE shortname = %s AND id != %d LIMIT 1", $shortname, $this->id ) );
|
190 |
+
}
|
191 |
|
192 |
+
if ( ! $in_use ) {
|
193 |
return $shortname;
|
194 |
+
}
|
195 |
|
196 |
$n = 1;
|
197 |
|
234 |
}
|
235 |
|
236 |
public function add_validator( $validator ) {
|
237 |
+
if ( ! $this->has_validator( $validator ) ) {
|
238 |
$this->validators[] = $validator;
|
239 |
+
}
|
240 |
}
|
241 |
|
242 |
/**
|
255 |
return current_user_can( 'administrator' );
|
256 |
}
|
257 |
|
258 |
+
return in_array( $context, $this->display_flags, true );
|
259 |
}
|
260 |
|
261 |
public function add_display_flag( $flagorflags ) {
|
262 |
$flagorflags = is_array( $flagorflags ) ? $flagorflags : array( $flagorflags );
|
263 |
|
264 |
foreach ( $flagorflags as $flag ) {
|
265 |
+
if ( ! $this->has_display_flag( $flag ) ) {
|
266 |
+
$this->display_flags[] = $flag;
|
267 |
}
|
268 |
}
|
269 |
}
|
270 |
|
271 |
public function remove_display_flag( $flagorflags ) {
|
272 |
$flagorflags = is_array( $flagorflags ) ? $flagorflags : array( $flagorflags );
|
273 |
+
|
274 |
+
foreach ( $flagorflags as $flag ) {
|
275 |
wpbdp_array_remove_value( $this->display_flags, $flag );
|
276 |
+
}
|
277 |
}
|
278 |
|
279 |
public function has_display_flag( $flag ) {
|
292 |
* @since 3.5.3
|
293 |
*/
|
294 |
public function get_css_classes( $render_context = '' ) {
|
295 |
+
$css_classes = array();
|
296 |
$css_classes[] = 'wpbdp-form-field';
|
297 |
$css_classes[] = 'wpbdp-form-field-id-' . $this->get_id();
|
298 |
$css_classes[] = 'wpbdp-form-field-type-' . $this->get_field_type()->get_id();
|
299 |
$css_classes[] = 'wpbdp-form-field-label-' . WPBDP_Form_Field_Type::normalize_name( $this->get_label() );
|
300 |
$css_classes[] = 'wpbdp-form-field-association-' . $this->get_association();
|
301 |
|
302 |
+
if ( $this->get_description() ) {
|
303 |
$css_classes[] = 'wpbdp-form-field-has-description';
|
304 |
+
}
|
305 |
|
306 |
+
foreach ( $this->get_validators() as $validator ) {
|
307 |
$css_classes[] = 'wpbdp-form-field-validate-' . $validator;
|
308 |
+
}
|
309 |
|
310 |
+
if ( $render_context ) {
|
311 |
$css_classes[] = 'wpbdp-form-field-in-' . $render_context;
|
312 |
+
}
|
313 |
|
314 |
// Add own custom CSS classes.
|
315 |
$css_classes = array_merge( $css_classes, $this->css_classes );
|
320 |
/**
|
321 |
* TODO: dodoc.
|
322 |
* Valid behavior (override default behavior) flags: display-only, no-delete, no-validation
|
323 |
+
*
|
324 |
* @since 3.4
|
325 |
*/
|
326 |
public function get_behavior_flags() {
|
329 |
|
330 |
/**
|
331 |
* TODO: dodoc.
|
332 |
+
*
|
333 |
* @since 3.4
|
334 |
*/
|
335 |
public function has_behavior_flag( $flag ) {
|
338 |
|
339 |
/**
|
340 |
* Returns field-type specific configuration options for this field.
|
341 |
+
*
|
342 |
* @param string $key configuration key name
|
343 |
* @return mixed|array if $key is ommitted an array of all key/values will be returned
|
344 |
*/
|
345 |
+
public function data( $key = null, $default = null ) {
|
346 |
+
if ( ! $key ) {
|
347 |
return $this->field_data;
|
348 |
+
}
|
349 |
|
350 |
+
$res = isset( $this->field_data[ $key ] ) ? $this->field_data[ $key ] : $default;
|
351 |
return apply_filters( 'wpbdp_form_field_data', $res, $key, $this );
|
352 |
}
|
353 |
|
354 |
/**
|
355 |
* Saves field-type specific configuration options for this field.
|
356 |
+
*
|
357 |
* @param string $key configuration key name.
|
358 |
+
* @param mixed $value data value.
|
359 |
* @return mixed data value.
|
360 |
*/
|
361 |
+
public function set_data( $key, $value = null ) {
|
362 |
$this->field_data[ $key ] = $value;
|
363 |
}
|
364 |
|
371 |
|
372 |
/**
|
373 |
* Returns this field's raw value for the given post.
|
374 |
+
*
|
375 |
* @param int|object $post_id post ID or object.
|
376 |
* @return mixed
|
377 |
*/
|
378 |
public function value( $post_id, $raw = false ) {
|
379 |
+
if ( ! get_post_type( $post_id ) == WPBDP_POST_TYPE ) {
|
380 |
+
return null;
|
381 |
+
}
|
382 |
|
383 |
$value = $this->type->get_field_value( $this, $post_id );
|
384 |
|
385 |
+
if ( ! $raw ) {
|
386 |
$value = apply_filters( 'wpbdp_form_field_value', $value, $post_id, $this );
|
387 |
+
}
|
388 |
|
389 |
return $value;
|
390 |
}
|
391 |
|
392 |
/**
|
393 |
* Returns this field's HTML value for the given post. Useful for display.
|
394 |
+
*
|
395 |
* @param int|object $post_id post ID or object.
|
396 |
+
* @param string $display_context The display context. Defaults to 'listing'.
|
397 |
* @return string valid HTML.
|
398 |
*/
|
399 |
public function html_value( $post_id, $display_context = 'listing' ) {
|
400 |
$value = $this->type->get_field_html_value( $this, $post_id );
|
401 |
|
402 |
+
if ( $value && in_array( 'email', $this->validators, true ) && wpbdp_get_option( 'override-email-blocking' ) ) {
|
403 |
// At least obfuscate the address if we're going to show it.
|
404 |
$out = '';
|
405 |
|
406 |
for ( $i = 0; $i < strlen( $value ); $i++ ) {
|
407 |
+
if ( '.' == $value[ $i ] || '@' == $value[ $i ] ) {
|
408 |
$out .= $value [ $i ];
|
409 |
+
} else {
|
410 |
+
$out .= '&#' . ord( $value[ $i ] ) . ';';
|
411 |
+
}
|
412 |
}
|
413 |
|
414 |
$value = sprintf( '<a href="mailto:%s">%s</a>', $out, $out );
|
415 |
}
|
416 |
|
417 |
+
return apply_filters( 'wpbdp_form_field_html_value', $value, $post_id, $this, $display_context );
|
418 |
}
|
419 |
|
420 |
/**
|
421 |
* Returns this field's value as plain text. Useful for emails or cooperation between modules.
|
422 |
+
*
|
423 |
* @param int|object $post_id post ID or object.
|
424 |
* @return string
|
425 |
*/
|
438 |
|
439 |
/**
|
440 |
* Converts input from forms to a value useful for this field.
|
441 |
+
*
|
442 |
* @param mixed $input form input.
|
443 |
* @return mixed
|
444 |
*/
|
445 |
+
public function convert_input( $input = null ) {
|
446 |
$val = apply_filters( 'wpbdp_form_field_pre_convert_input', null, $input, $this );
|
447 |
|
448 |
+
if ( ! is_null( $val ) ) {
|
449 |
return $val;
|
450 |
+
}
|
451 |
|
452 |
return $this->type->convert_input( $this, $input );
|
453 |
}
|
468 |
return apply_filters( 'wpbdp_form_field_is_empty_value', $this->type->is_empty_value( $value ), $value, $this );
|
469 |
}
|
470 |
|
471 |
+
public function validate( $value, &$errors = null ) {
|
472 |
+
$errors = ! is_array( $errors ) ? array() : $errors;
|
473 |
|
474 |
$validation_api = WPBDP_FieldValidation::instance();
|
475 |
|
476 |
+
if ( ! $this->is_required() && $this->type->is_empty_value( $value ) ) {
|
477 |
return true;
|
478 |
+
}
|
479 |
|
480 |
foreach ( $this->validators as $validator ) {
|
481 |
if ( 'required-in-search' == $validator ) {
|
492 |
}
|
493 |
}
|
494 |
|
495 |
+
if ( ! $errors ) {
|
496 |
+
return true;
|
497 |
+
}
|
498 |
+
|
499 |
+
return false;
|
500 |
+
}
|
501 |
+
|
502 |
+
public function validate_categories( $categories = array() ) {
|
503 |
+
$supported_cats = $this->data( 'supported_categories', 'all' );
|
504 |
+
if ( 'all' === $supported_cats ) {
|
505 |
return true;
|
506 |
+
}
|
507 |
+
|
508 |
+
$categories = is_array( $categories ) ? $categories : array( $categories );
|
509 |
+
|
510 |
+
foreach ( $categories as $c ) {
|
511 |
+
if ( in_array( $c, $supported_cats ) ) {
|
512 |
+
return true;
|
513 |
+
}
|
514 |
+
}
|
515 |
|
516 |
return false;
|
517 |
}
|
518 |
|
519 |
/**
|
520 |
* Returns HTML apt for display of this field's value.
|
521 |
+
*
|
522 |
* @param int|object $post_id post ID or object
|
523 |
+
* @param string $display_context the display context. defaults to 'listing'.
|
524 |
* @return string
|
525 |
*/
|
526 |
+
public function display( $post_id, $display_context = 'listing' ) {
|
527 |
if ( in_array( 'email', $this->validators, true ) ) {
|
528 |
+
if ( ! wpbdp_get_option( 'override-email-blocking' ) ) {
|
529 |
return '';
|
530 |
+
}
|
531 |
}
|
532 |
|
533 |
+
if ( $this->type->is_empty_value( $this->value( $post_id ) ) ) {
|
534 |
return '';
|
535 |
+
}
|
536 |
|
537 |
$html = $this->type->display_field( $this, $post_id, $display_context );
|
538 |
$html = apply_filters_ref_array( 'wpbdp_form_field_display', array( $html, $this, $display_context, $post_id ) );
|
548 |
|
549 |
/**
|
550 |
* Returns HTML apt for displaying this field in forms.
|
551 |
+
*
|
552 |
+
* @param mixed $value the value to be displayed. defaults to null.
|
553 |
* @param string $display_context the rendering context. defaults to 'submit'.
|
554 |
* @return string
|
555 |
*/
|
556 |
public function render( $value = null, $display_context = 'submit', &$extra = null, $field_settings = array() ) {
|
557 |
do_action_ref_array( 'wpbdp_form_field_pre_render', array( &$this, $value, $display_context ) );
|
558 |
|
559 |
+
if ( $this->has_behavior_flag( 'display-only' ) ) {
|
560 |
return '';
|
561 |
+
}
|
562 |
|
563 |
+
if ( 'submit' == $display_context && $this->has_behavior_flag( 'no-submit' ) ) {
|
564 |
return '';
|
565 |
+
}
|
566 |
|
567 |
if ( $this->has_display_flag( 'private' ) && ! current_user_can( 'administrator' ) ) {
|
568 |
return '';
|
573 |
|
574 |
/**
|
575 |
* Tries to save this field to the database. If successfully, sets the new id too.
|
576 |
+
*
|
577 |
* @return mixed True if successfully created, WP_Error in the other case
|
578 |
*/
|
579 |
public function save() {
|
581 |
|
582 |
$api = wpbdp_formfields_api();
|
583 |
|
584 |
+
if ( ! $this->label || trim( $this->label ) == '' ) {
|
585 |
+
return new WP_Error( 'wpbdp-save-error', _x( 'Field label is required.', 'form-fields-api', 'WPBDM' ) );
|
586 |
+
}
|
587 |
|
588 |
// If performing a field conversion, make sure the types are compatible.
|
589 |
if ( $this->id ) {
|
590 |
$orig_type = $wpdb->get_var( $wpdb->prepare( "SELECT field_type FROM {$wpdb->prefix}wpbdp_form_fields WHERE id = %d", $this->id ) );
|
591 |
+
$new_type = $this->type->get_id();
|
592 |
|
593 |
if ( $orig_type != $new_type ) {
|
594 |
if ( 'url' == $new_type || 'image' == $new_type || 'url' == $orig_type || 'image' == $orig_type ) {
|
595 |
$this->type = WPBDP_FormFields::instance()->get_field_type( $orig_type );
|
596 |
+
$error_msg = _x( 'You can\'t change from %2$s field type to the one you wanted--the types are incompatible internally. If you want to switch to a field of type %1$s, delete this current field and create a NEW field of type %1$s instead.', 'form-fields-api', 'WPBDM' );
|
597 |
|
598 |
+
if ( WPBDP_Listing::count_listings() ) {
|
599 |
$error_msg .= '<br/><br/>' . _x( '<strong>WARNING</strong>: If you delete this field, the data from it in existing listings will be deleted as well.', 'form-fields-api', 'WPBDM' );
|
600 |
}
|
601 |
|
610 |
$res = $this->type->process_field_settings( $this );
|
611 |
do_action_ref_array( 'wpbdp_form_field_settings_process', array( &$this ) );
|
612 |
|
613 |
+
$supported_cats = ! empty( $_POST['limit_categories'] ) && ! empty( $_POST['field']['supported_categories'] ) ? $_POST['field']['supported_categories'] : 'all';
|
614 |
+
|
615 |
+
if ( in_array( $this->get_association(), array( 'title', 'category') ) ) {
|
616 |
+
$supported_cats = 'all';
|
617 |
+
}
|
618 |
+
|
619 |
+
$this->set_data( 'supported_categories', $supported_cats );
|
620 |
+
|
621 |
+
if ( is_wp_error( $res ) ) {
|
622 |
return $res;
|
623 |
+
}
|
624 |
}
|
625 |
|
626 |
// enforce association constraints
|
627 |
global $wpbdp;
|
628 |
$flags = $wpbdp->formfields->get_association_flags( $this->association );
|
629 |
+
|
630 |
if ( in_array( 'unique', $flags ) ) {
|
631 |
if ( $otherfields = wpbdp_get_form_fields( 'association=' . $this->association ) ) {
|
632 |
if ( ( count( $otherfields ) > 1 ) || ( $otherfields[0]->get_id() != $this->id ) ) {
|
639 |
$this->add_validator( 'required' );
|
640 |
}
|
641 |
|
642 |
+
if ( ! in_array( $this->type->get_id(), (array) $wpbdp->formfields->get_association_field_types( $this->association ) ) ) {
|
643 |
return new WP_Error( 'wpbdp-field-error', sprintf( _x( '"%s" is an invalid field type for this association.', 'form-fields-api', 'WPBDM' ), $this->type->get_name() ) );
|
644 |
+
}
|
645 |
|
646 |
+
if ( in_array( 'private', $this->display_flags ) ) {
|
647 |
if ( ! in_array( $this->association, array( 'title', 'content', 'category' ), true ) ) {
|
648 |
$this->set_display_flags( array( 'private' ) );
|
649 |
$this->set_validators();
|
659 |
|
660 |
$data = array();
|
661 |
|
662 |
+
$data['label'] = $this->label;
|
663 |
+
$data['shortname'] = $this->shortname_noconflict( $this->get_shortname() );
|
664 |
+
$data['description'] = trim( $this->description );
|
665 |
+
$data['field_type'] = $this->type->get_id();
|
666 |
+
$data['association'] = $this->association;
|
667 |
+
$data['validators'] = implode( ',', $this->validators );
|
668 |
+
$data['weight'] = $this->weight;
|
669 |
$data['display_flags'] = implode( ',', $this->display_flags );
|
670 |
+
$data['field_data'] = serialize( $this->field_data );
|
671 |
|
672 |
if ( in_array( $this->association, array( 'title', 'excerpt', 'content', 'category', 'tags' ), true ) ) {
|
673 |
$data['tag'] = $this->association;
|
674 |
+
} elseif ( 'ratings' == $this->type->get_id() ) {
|
675 |
$data['tag'] = 'ratings';
|
676 |
} else {
|
677 |
$data['tag'] = in_array( $this->tag, array( 'title', 'excerpt', 'content', 'category', 'tags' ), true ) ? '' : $this->tag;
|
689 |
|
690 |
/**
|
691 |
* Tries to delete this field from the database.
|
692 |
+
*
|
693 |
* @return mixed True if successfully deleted, WP_Error in the other case
|
694 |
*/
|
695 |
public function delete() {
|
696 |
+
if ( ! $this->id ) {
|
697 |
return new WP_Error( 'wpbdp-delete-error', _x( 'Invalid field ID', 'form-fields-api', 'WPBDM' ) );
|
698 |
+
}
|
699 |
|
700 |
global $wpbdp;
|
701 |
$flags = $wpbdp->formfields->get_association_flags( $this->association );
|
703 |
if ( in_array( 'required', $flags ) ) {
|
704 |
$otherfields = wpbdp_get_form_fields( array( 'association' => $this->association ) );
|
705 |
|
706 |
+
if ( ! $otherfields || ( $otherfields[0]->get_id() == $this->id ) ) {
|
707 |
+
return new WP_Error( 'wpbdp-delete-error', _x( "This form field can't be deleted because it is required for the plugin to work.", 'form-fields api', 'WPBDM' ) );
|
708 |
+
}
|
709 |
}
|
710 |
|
711 |
global $wpdb;
|
725 |
|
726 |
/**
|
727 |
* Reorders this field within the list of fields.
|
728 |
+
*
|
729 |
* @param int $delta if positive, field is moved up. else is moved down.
|
730 |
*/
|
731 |
+
public function reorder( $delta = 0 ) {
|
732 |
global $wpdb;
|
733 |
|
734 |
$delta = intval( $delta );
|
735 |
|
736 |
+
if ( ! $delta ) {
|
737 |
return;
|
738 |
+
}
|
739 |
|
740 |
if ( $delta > 0 ) {
|
741 |
$fields = $wpdb->get_results( $wpdb->prepare( "SELECT id, weight FROM {$wpdb->prefix}wpbdp_form_fields WHERE weight >= %d ORDER BY weight ASC", $this->weight ) );
|
742 |
|
743 |
+
if ( $fields[ count( $fields ) - 1 ]->id == $this->id ) {
|
744 |
return;
|
745 |
+
}
|
746 |
|
747 |
for ( $i = 0; $i < count( $fields ); $i++ ) {
|
748 |
$fields[ $i ]->weight = intval( $this->weight ) + $i;
|
749 |
|
750 |
+
if ( $fields[ $i ]->id == $this->id ) {
|
751 |
+
$fields[ $i ]->weight += 1;
|
752 |
+
$fields[ $i + 1 ]->weight -= 1;
|
753 |
+
$i += 1;
|
754 |
+
}
|
755 |
}
|
756 |
|
757 |
foreach ( $fields as &$f ) {
|
760 |
} else {
|
761 |
$fields = $wpdb->get_results( $wpdb->prepare( "SELECT id, weight FROM {$wpdb->prefix}wpbdp_form_fields WHERE weight <= %d ORDER BY weight ASC", $this->weight ) );
|
762 |
|
763 |
+
if ( $fields[0]->id == $this->id ) {
|
764 |
return;
|
765 |
+
}
|
766 |
|
767 |
foreach ( $fields as $i => $f ) {
|
768 |
if ( $f->id == $this->id ) {
|
769 |
+
self::get( $fields[ $i - 1 ]->id )->reorder( 1 );
|
770 |
return;
|
771 |
}
|
772 |
}
|
773 |
+
}
|
|
|
774 |
}
|
775 |
|
776 |
/**
|
777 |
* @since 5.0
|
778 |
*/
|
779 |
public function value_from_POST( $key = 'listingfields' ) {
|
780 |
+
if ( ! $_POST || ! isset( $_POST[ $key ][ $this->id ] ) ) {
|
781 |
return null;
|
782 |
+
}
|
783 |
|
784 |
$value = stripslashes_deep( $_POST[ $key ][ $this->id ] );
|
785 |
$value = $this->convert_input( $value );
|
809 |
|
810 |
// Check if the search has been short-circuited.
|
811 |
$res = apply_filters_ref_array( 'wpbdp_pre_configure_search', array( false, $this, $query, $search ) );
|
812 |
+
if ( is_array( $res ) ) {
|
813 |
return apply_filters_ref_array( 'wpbdp_configure_search', array( $res, $this, $query, $search ) );
|
814 |
+
}
|
815 |
|
816 |
// If there's a field type specific handling, use it.
|
817 |
$search_res = $this->type->configure_search( $this, $query, $search );
|
828 |
case 'title':
|
829 |
case 'excerpt':
|
830 |
case 'content':
|
831 |
+
if ( ! $query ) {
|
832 |
break;
|
833 |
+
}
|
834 |
|
835 |
$search_res['where'] = $wpdb->prepare( "{$wpdb->posts}.post_{$this->get_association()} LIKE '%%%s%%'", $query );
|
836 |
break;
|
840 |
$query = is_array( $query ) ? $query : array( $query );
|
841 |
$query = array_diff( array_map( 'trim', $query ), array( -1, 0, '' ) );
|
842 |
|
843 |
+
$tax = ( 'tags' == $this->get_association() ? WPBDP_TAGS_TAX : WPBDP_CATEGORY_TAX );
|
844 |
$tt_ids = array();
|
845 |
|
846 |
+
if ( ! $query ) {
|
847 |
break;
|
848 |
+
}
|
849 |
|
850 |
$charset = get_option( 'blog_charset' );
|
851 |
|
853 |
if ( is_numeric( $term_ ) ) {
|
854 |
$term = get_term( intval( $term_ ), $tax );
|
855 |
|
856 |
+
if ( ! $term ) {
|
857 |
continue;
|
858 |
+
}
|
859 |
|
860 |
+
$t_ids = array_merge( array( $term->term_id ), get_term_children( $term->term_id, $tax ) );
|
861 |
+
$tt_ids = array_merge(
|
862 |
+
$tt_ids,
|
863 |
+
$wpdb->get_col( "SELECT DISTINCT tt.term_taxonomy_id FROM {$wpdb->term_taxonomy} tt WHERE tt.taxonomy = '{$tax}' AND tt.term_id IN (" . implode( ',', $t_ids ) . ')' )
|
864 |
+
);
|
865 |
} elseif ( is_string( $term_ ) ) {
|
866 |
+
$tt_ids = $wpdb->get_col(
|
867 |
+
$wpdb->prepare(
|
868 |
+
"SELECT DISTINCT tt.term_taxonomy_id FROM {$wpdb->term_taxonomy} tt JOIN {$wpdb->terms} t ON t.term_id = tt.term_id WHERE tt.taxonomy = %s AND t.name LIKE '%%%s%%'",
|
869 |
+
$tax,
|
870 |
+
htmlspecialchars( $term_, ENT_QUOTES, $charset )
|
871 |
+
)
|
872 |
+
);
|
873 |
}
|
874 |
}
|
875 |
|
876 |
if ( $tt_ids ) {
|
877 |
list( $alias, $reused ) = $search->join_alias( $wpdb->term_relationships );
|
878 |
|
879 |
+
if ( ! $reused ) {
|
880 |
$search_res['join'] = " LEFT JOIN {$wpdb->term_relationships} AS {$alias} ON {$wpdb->posts}.ID = {$alias}.object_id";
|
881 |
+
}
|
882 |
|
883 |
+
$search_res['where'] = "{$alias}.term_taxonomy_id IN (" . implode( ',', $tt_ids ) . ')';
|
884 |
} else {
|
885 |
$search_res['where'] = '1=0';
|
886 |
}
|
887 |
|
888 |
break;
|
889 |
case 'meta':
|
890 |
+
if ( ! $query ) {
|
891 |
break;
|
892 |
+
}
|
893 |
|
894 |
list( $alias, $reused ) = $search->join_alias( $wpdb->postmeta, false );
|
895 |
|
916 |
|
917 |
/**
|
918 |
* Creates a WPBDP_FormField from a database record.
|
919 |
+
*
|
920 |
* @param int $id the database record ID.
|
921 |
* @return WPBDP_FormField a valid WPBDP_FormField if the record exists or null if not.
|
922 |
*/
|
925 |
|
926 |
$id = absint( $id );
|
927 |
|
928 |
+
if ( ! $id ) {
|
929 |
return null;
|
930 |
+
}
|
931 |
|
932 |
$_field = wp_cache_get( $id, 'wpbdp formfields' );
|
933 |
|
934 |
if ( ! $_field ) {
|
935 |
$_field = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}wpbdp_form_fields WHERE id = %d", $id ) );
|
936 |
|
937 |
+
if ( ! $_field ) {
|
938 |
return null;
|
939 |
+
}
|
940 |
|
941 |
$_field = (array) $_field;
|
942 |
|
943 |
+
$_field['display_flags'] = explode( ',', $_field['display_flags'] );
|
944 |
+
$_field['validators'] = explode( ',', $_field['validators'] );
|
945 |
+
$_field['field_data'] = unserialize( $_field['field_data'] );
|
946 |
|
947 |
wp_cache_set( $id, $_field, 'wpbdp formfields' );
|
948 |
}
|
949 |
|
950 |
try {
|
951 |
return new WPBDP_FormField( $_field );
|
952 |
+
} catch ( Exception $e ) {
|
953 |
return null;
|
954 |
}
|
955 |
}
|
959 |
|
960 |
$field_id = absint( $wpdb->get_var( $wpdb->prepare( "SELECT id FROM {$wpdb->prefix}wpbdp_form_fields WHERE tag = %s LIMIT 1", $tag ) ) );
|
961 |
|
962 |
+
if ( ! $field_id ) {
|
963 |
return null;
|
964 |
+
}
|
965 |
|
966 |
return self::get( $field_id );
|
967 |
}
|
includes/form-fields.php
CHANGED
@@ -571,6 +571,7 @@ if ( ! class_exists( 'WPBDP_FieldValidation' ) ) {
|
|
571 |
'integer_number' => _x( 'Whole Number Validator', 'form-fields-api', 'WPBDM' ),
|
572 |
'decimal_number' => _x( 'Decimal Number Validator', 'form-fields-api', 'WPBDM' ),
|
573 |
'date_' => _x( 'Date Validator', 'form-fields-api', 'WPBDM' ),
|
|
|
574 |
);
|
575 |
|
576 |
return $validators;
|
@@ -715,10 +716,27 @@ if ( ! class_exists( 'WPBDP_FieldValidation' ) ) {
|
|
715 |
/* Image Caption Validator */
|
716 |
private function caption_( $value, $args = array() ) {
|
717 |
if ( $args['caption_required'] && empty( $value[1] ) ) {
|
718 |
-
return WPBDP_ValidationError( ! empty( $args['messages']['caption_required'] ) ? $args['messages']['caption_required'] : sprintf( _x( 'Caption for %s is required.', '
|
719 |
}
|
720 |
}
|
721 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
722 |
private function any_of( $value, $args = array() ) {
|
723 |
$args = wp_parse_args(
|
724 |
$args, array(
|
571 |
'integer_number' => _x( 'Whole Number Validator', 'form-fields-api', 'WPBDM' ),
|
572 |
'decimal_number' => _x( 'Decimal Number Validator', 'form-fields-api', 'WPBDM' ),
|
573 |
'date_' => _x( 'Date Validator', 'form-fields-api', 'WPBDM' ),
|
574 |
+
'word_number' => _x( 'Word Count Validator', 'form-fields-api', 'WPBDM' ),
|
575 |
);
|
576 |
|
577 |
return $validators;
|
716 |
/* Image Caption Validator */
|
717 |
private function caption_( $value, $args = array() ) {
|
718 |
if ( $args['caption_required'] && empty( $value[1] ) ) {
|
719 |
+
return WPBDP_ValidationError( ! empty( $args['messages']['caption_required'] ) ? $args['messages']['caption_required'] : sprintf( _x( 'Caption for %s is required.', 'image field', 'WPBDM' ), esc_attr( $args['field-label'] ) ) );
|
720 |
}
|
721 |
}
|
722 |
|
723 |
+
/* Word Number Validator */
|
724 |
+
private function word_number( $value, $args = array() ) {
|
725 |
+
$word_count = $args['field']->data( 'word_count' );
|
726 |
+
|
727 |
+
if( empty( $word_count ) ) {
|
728 |
+
return;
|
729 |
+
}
|
730 |
+
|
731 |
+
$no_html_text = preg_replace( '/(<[^>]+>)/i', '', $value );
|
732 |
+
$input_array = preg_split("/[\s,]+/", $no_html_text );
|
733 |
+
|
734 |
+
if( $word_count < count( $input_array ) ) {
|
735 |
+
return WPBDP_ValidationError( sprintf( _x( '%s must have less than %d words.', 'form-fields-api validation', 'WPBDM' ), esc_attr( $args['field-label'] ), $word_count ) );
|
736 |
+
}
|
737 |
+
|
738 |
+
}
|
739 |
+
|
740 |
private function any_of( $value, $args = array() ) {
|
741 |
$args = wp_parse_args(
|
742 |
$args, array(
|
includes/helpers/class-listing-display-helper.php
CHANGED
@@ -136,8 +136,19 @@ class WPBDP_Listing_Display_Helper {
|
|
136 |
}
|
137 |
|
138 |
private static function fields_vars( $listing_id, $display ) {
|
139 |
-
$all_fields
|
140 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
|
142 |
$list = new WPBDP_Field_Display_List( $listing_id, $display, $fields );
|
143 |
$list->freeze();
|
136 |
}
|
137 |
|
138 |
private static function fields_vars( $listing_id, $display ) {
|
139 |
+
$all_fields = wpbdp_get_form_fields();
|
140 |
+
$display_fields = apply_filters_ref_array( 'wpbdp_render_listing_fields', array( &$all_fields, $listing_id, $display ) );
|
141 |
+
$fields = array();
|
142 |
+
|
143 |
+
$listing_cats = WPBDP_Listing::get( $listing_id )->get_categories( 'ids' );
|
144 |
+
|
145 |
+
foreach ( $display_fields as $field ) {
|
146 |
+
if ( ! $field->validate_categories( $listing_cats ) ) {
|
147 |
+
continue;
|
148 |
+
}
|
149 |
+
|
150 |
+
$fields[] = $field;
|
151 |
+
}
|
152 |
|
153 |
$list = new WPBDP_Field_Display_List( $listing_id, $display, $fields );
|
154 |
$list->freeze();
|
includes/views/submit_listing.php
CHANGED
@@ -559,14 +559,19 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
|
|
559 |
* 'listing_fields'.
|
560 |
*/
|
561 |
private function listing_fields() {
|
562 |
-
$
|
563 |
-
$
|
564 |
$saved_listingfields = get_post_meta( $this->listing->get_id(), '_wpbdp_temp_listingfields', true );
|
565 |
$field_values = ! empty( $saved_listingfields ) ? $saved_listingfields : array();
|
566 |
|
567 |
$validation_errors = array();
|
|
|
|
|
|
|
|
|
|
|
|
|
568 |
|
569 |
-
foreach ( $fields as $field ) {
|
570 |
$value = ! empty( $field_values[ $field->get_id() ] ) ? $field_values[ $field->get_id() ] : $field->value( $this->listing->get_id() );
|
571 |
|
572 |
if ( 'title' == $field->get_association() && '(no title)' == $value ) {
|
@@ -596,6 +601,8 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
|
|
596 |
$field->store_value( $this->listing->get_id(), $value );
|
597 |
}
|
598 |
}
|
|
|
|
|
599 |
}
|
600 |
|
601 |
// FIXME: fake this (for compatibility with modules) until we move everything to wpbdp_save_listing() and
|
@@ -903,7 +910,7 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
|
|
903 |
}
|
904 |
|
905 |
$listing_status = get_post_status( $this->listing->get_id() );
|
906 |
-
$this->listing->set_post_status( $this->editing ? ( '
|
907 |
$this->listing->_after_save( 'submit-' . ( $this->editing ? 'edit' : 'new' ) );
|
908 |
|
909 |
if ( ! $this->editing && 'completed' != $payment->status ) {
|
559 |
* 'listing_fields'.
|
560 |
*/
|
561 |
private function listing_fields() {
|
562 |
+
$form_fields = wpbdp_get_form_fields( array( 'association' => '-category' ) );
|
563 |
+
$form_fields = apply_filters_ref_array( 'wpbdp_listing_submit_fields', array( &$form_fields, &$this->listing ) );
|
564 |
$saved_listingfields = get_post_meta( $this->listing->get_id(), '_wpbdp_temp_listingfields', true );
|
565 |
$field_values = ! empty( $saved_listingfields ) ? $saved_listingfields : array();
|
566 |
|
567 |
$validation_errors = array();
|
568 |
+
$fields = array();
|
569 |
+
|
570 |
+
foreach ( $form_fields as $field ) {
|
571 |
+
if ( ! $field->validate_categories( $this->listing->get_categories( 'ids' ) ) ) {
|
572 |
+
continue;
|
573 |
+
}
|
574 |
|
|
|
575 |
$value = ! empty( $field_values[ $field->get_id() ] ) ? $field_values[ $field->get_id() ] : $field->value( $this->listing->get_id() );
|
576 |
|
577 |
if ( 'title' == $field->get_association() && '(no title)' == $value ) {
|
601 |
$field->store_value( $this->listing->get_id(), $value );
|
602 |
}
|
603 |
}
|
604 |
+
|
605 |
+
$fields[] = $field;
|
606 |
}
|
607 |
|
608 |
// FIXME: fake this (for compatibility with modules) until we move everything to wpbdp_save_listing() and
|
910 |
}
|
911 |
|
912 |
$listing_status = get_post_status( $this->listing->get_id() );
|
913 |
+
$this->listing->set_post_status( $this->editing ? ( 'publish' !== $listing_status ? $listing_status : wpbdp_get_option( 'edit-post-status' ) ) : wpbdp_get_option( 'new-post-status' ) );
|
914 |
$this->listing->_after_save( 'submit-' . ( $this->editing ? 'edit' : 'new' ) );
|
915 |
|
916 |
if ( ! $this->editing && 'completed' != $payment->status ) {
|
languages/WPBDM-ar.mo
CHANGED
Binary file
|
languages/WPBDM-ar.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin 4.0.8\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2018-06-
|
9 |
"PO-Revision-Date: 2017-01-16 17:47-0500\n"
|
10 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
@@ -2680,13 +2680,13 @@ msgctxt "form-fields admin"
|
|
2680 |
msgid "Field list of options is required."
|
2681 |
msgstr "قائمة خيارات الحقل مطلوبة."
|
2682 |
|
2683 |
-
#: includes/fields/class-fieldtypes-image.php:
|
2684 |
#, fuzzy
|
2685 |
msgctxt "form-fields admin"
|
2686 |
msgid "Display caption?"
|
2687 |
msgstr "خيارات عرض الحقل"
|
2688 |
|
2689 |
-
#: includes/fields/class-fieldtypes-image.php:
|
2690 |
#, fuzzy
|
2691 |
msgctxt "form-fields admin"
|
2692 |
msgid "Field Caption required?"
|
@@ -2808,147 +2808,181 @@ msgctxt "form-fields admin"
|
|
2808 |
msgid "Use rel=\"nofollow\" when displaying the link?"
|
2809 |
msgstr "إستخدام rel = \"nofollow\" عند عرض الارتباط؟"
|
2810 |
|
2811 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2812 |
msgctxt "form-fields admin"
|
2813 |
msgid "Add Form Field"
|
2814 |
msgstr "أضف حقل الاستمارة"
|
2815 |
|
2816 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2817 |
msgctxt "form-fields admin"
|
2818 |
msgid "Field Association"
|
2819 |
msgstr "رابطة الحقل"
|
2820 |
|
2821 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2822 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2823 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2824 |
msgctxt "form-fields admin"
|
2825 |
msgid "required"
|
2826 |
msgstr "مطلوب"
|
2827 |
|
2828 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2829 |
msgctxt "form-fields admin"
|
2830 |
msgid "Field Type"
|
2831 |
msgstr "نوع الحقل"
|
2832 |
|
2833 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2834 |
msgctxt "form-fields admin"
|
2835 |
msgid "Field Label"
|
2836 |
msgstr "تسمية الحقل"
|
2837 |
|
2838 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2839 |
msgctxt "form-fields admin"
|
2840 |
msgid "Field description"
|
2841 |
msgstr "وصف الحقل"
|
2842 |
|
2843 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2844 |
msgctxt "form-fields admin"
|
2845 |
msgid "optional"
|
2846 |
msgstr "إختياري"
|
2847 |
|
2848 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2849 |
msgctxt "form-fields admin"
|
2850 |
msgid "Field-specific settings"
|
2851 |
msgstr "إعدادات حقل خاص"
|
2852 |
|
2853 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2854 |
msgctxt "form-fields admin"
|
2855 |
msgid "Field validation options"
|
2856 |
msgstr "خيارات التحقق من صحة الحقل"
|
2857 |
|
2858 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2859 |
msgctxt "form-fields admin"
|
2860 |
msgid "Field Validator"
|
2861 |
msgstr "مصادقة الحقول"
|
2862 |
|
2863 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2864 |
msgctxt "form-fields admin"
|
2865 |
msgid "No validation"
|
2866 |
msgstr "لا يوجد تحقق من الصحة"
|
2867 |
|
2868 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2869 |
msgctxt "form-fields admin"
|
2870 |
msgid "Is field required?"
|
2871 |
msgstr "هل هذا الحقل مطلوب؟"
|
2872 |
|
2873 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2874 |
msgctxt "form-fields admin"
|
2875 |
msgid "This field is required."
|
2876 |
msgstr "هذا الحقل مطلوب."
|
2877 |
|
2878 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2879 |
msgctxt "form-fields admin"
|
2880 |
msgid "Field display options"
|
2881 |
msgstr "خيارات عرض الحقل"
|
2882 |
|
2883 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2884 |
msgctxt "form-fields admin"
|
2885 |
msgid "Show this field to admin users only?"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2889 |
#, fuzzy
|
2890 |
msgctxt "form-fields admin"
|
2891 |
msgid "Display this field to admin users only in the edit listing view."
|
2892 |
msgstr "عرض هذه القيمة في مشاهدة الإعلان."
|
2893 |
|
2894 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2895 |
msgctxt "form-fields admin"
|
2896 |
msgid "Show this value in excerpt view?"
|
2897 |
msgstr "إظهار هذه القيمة في مشاهدة المقتطفات؟"
|
2898 |
|
2899 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2900 |
msgctxt "form-fields admin"
|
2901 |
msgid "Display this value in post excerpt view."
|
2902 |
msgstr "عرض هذه القيمة في مشاهدة مقتطفات المقالة."
|
2903 |
|
2904 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2905 |
msgctxt "form-fields admin"
|
2906 |
msgid "Show this value in listing view?"
|
2907 |
msgstr "إظهار هذه القيمة في مشاهدة الإعلان؟"
|
2908 |
|
2909 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2910 |
msgctxt "form-fields admin"
|
2911 |
msgid "Display this value in the listing view."
|
2912 |
msgstr "عرض هذه القيمة في مشاهدة الإعلان."
|
2913 |
|
2914 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2915 |
msgctxt "form-fields admin"
|
2916 |
msgid "Include this field in the search form?"
|
2917 |
msgstr "تضمين هذا الحقل في نموذج البحث؟"
|
2918 |
|
2919 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2920 |
msgctxt "form-fields admin"
|
2921 |
msgid "Include this field in the search form."
|
2922 |
msgstr "تضمين هذا الحقل في نموذج البحث."
|
2923 |
|
2924 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2925 |
#, fuzzy
|
2926 |
msgctxt "form-fields admin"
|
2927 |
msgid "Is this field required for searching?"
|
2928 |
msgstr "هل هذا الحقل مطلوب؟"
|
2929 |
|
2930 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2931 |
msgctxt "form-fields admin"
|
2932 |
msgid ""
|
2933 |
"Make this fields required during searches on the Advanced Search screen."
|
2934 |
msgstr ""
|
2935 |
|
2936 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2937 |
msgctxt "form-fields admin"
|
2938 |
msgid "Hide this field's label?"
|
2939 |
msgstr "إخفاء تسمية هذا الحقل؟"
|
2940 |
|
2941 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2942 |
msgctxt "form-fields admin"
|
2943 |
msgid "Hide this field's label when displaying it."
|
2944 |
msgstr "إخفاء تسمية هذا الحقل عند عرضه."
|
2945 |
|
2946 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2947 |
msgctxt "form-fields admin"
|
2948 |
msgid "Update Field"
|
2949 |
msgstr "تحديث الحقل"
|
2950 |
|
2951 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2952 |
msgctxt "form-fields admin"
|
2953 |
msgid "Add Field"
|
2954 |
msgstr "إضافة حقل"
|
@@ -6119,57 +6153,57 @@ msgctxt "submit listing"
|
|
6119 |
msgid "Please choose a valid fee plan for your category selection."
|
6120 |
msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
|
6121 |
|
6122 |
-
#: includes/views/submit_listing.php:
|
6123 |
#, fuzzy
|
6124 |
msgctxt "submit listing"
|
6125 |
msgid "Please enter your desired username."
|
6126 |
msgstr "يرجى إدخال إسمك."
|
6127 |
|
6128 |
-
#: includes/views/submit_listing.php:
|
6129 |
#, fuzzy
|
6130 |
msgctxt "submit listing"
|
6131 |
msgid "Please enter the e-mail for your new account."
|
6132 |
msgstr "يرجى إدخال إسمك."
|
6133 |
|
6134 |
-
#: includes/views/submit_listing.php:
|
6135 |
msgctxt "submit listing"
|
6136 |
msgid "Please enter the password for your new account."
|
6137 |
msgstr ""
|
6138 |
|
6139 |
-
#: includes/views/submit_listing.php:
|
6140 |
msgctxt "submit listing"
|
6141 |
msgid "The username you chose is already in use. Please use a different one."
|
6142 |
msgstr ""
|
6143 |
|
6144 |
-
#: includes/views/submit_listing.php:
|
6145 |
msgctxt "submit listing"
|
6146 |
msgid "The e-mail address you chose for your account is already in use."
|
6147 |
msgstr ""
|
6148 |
|
6149 |
-
#: includes/views/submit_listing.php:
|
6150 |
msgctxt "submit listing"
|
6151 |
msgid "Create a user account on this site"
|
6152 |
msgstr ""
|
6153 |
|
6154 |
-
#: includes/views/submit_listing.php:
|
6155 |
msgctxt "submit listing"
|
6156 |
msgid ""
|
6157 |
"You need to create an account on the site. Please fill out the form below."
|
6158 |
msgstr ""
|
6159 |
|
6160 |
-
#: includes/views/submit_listing.php:
|
6161 |
#, fuzzy
|
6162 |
msgctxt "submit listing"
|
6163 |
msgid "Username:"
|
6164 |
msgstr "عضو"
|
6165 |
|
6166 |
-
#: includes/views/submit_listing.php:
|
6167 |
#, fuzzy
|
6168 |
msgctxt "submit listing"
|
6169 |
msgid "Email:"
|
6170 |
msgstr "البريد الإلكتروني: %s"
|
6171 |
|
6172 |
-
#: includes/views/submit_listing.php:
|
6173 |
msgctxt "submit listing"
|
6174 |
msgid "Password:"
|
6175 |
msgstr ""
|
@@ -6203,12 +6237,12 @@ msgctxt "submit listing"
|
|
6203 |
msgid "Save Changes"
|
6204 |
msgstr "حفظ التعديلات"
|
6205 |
|
6206 |
-
#: includes/class-recaptcha.php:
|
6207 |
msgctxt "recaptcha"
|
6208 |
msgid "The reCAPTCHA wasn't entered correctly."
|
6209 |
msgstr "لم يتم إدخال reCAPTCHA بشكل صحيح."
|
6210 |
|
6211 |
-
#: includes/class-recaptcha.php:
|
6212 |
#, fuzzy
|
6213 |
msgctxt "recaptcha"
|
6214 |
msgid "reCAPTCHA"
|
@@ -6315,12 +6349,12 @@ msgctxt "form-fields api"
|
|
6315 |
msgid "Textarea"
|
6316 |
msgstr "مربع النص"
|
6317 |
|
6318 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
6319 |
msgctxt "form-fields api"
|
6320 |
msgid "Textfield"
|
6321 |
msgstr "حقل النص"
|
6322 |
|
6323 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
6324 |
msgctxt "form-fields api"
|
6325 |
msgid "Format 01/31/1969"
|
6326 |
msgstr "تنسيق 31/01/1969"
|
@@ -6345,7 +6379,7 @@ msgctxt "form-fields api"
|
|
6345 |
msgid "Link Text (optional):"
|
6346 |
msgstr "رابط نصي (اختياري):"
|
6347 |
|
6348 |
-
#: includes/fields/class-form-field.php:
|
6349 |
msgctxt "form-fields api"
|
6350 |
msgid ""
|
6351 |
"This form field can't be deleted because it is required for the plugin to "
|
@@ -6403,7 +6437,7 @@ msgctxt "date field"
|
|
6403 |
msgid "%s must be a valid date."
|
6404 |
msgstr "%s يجب أن يكون تاريخاً صالحاً."
|
6405 |
|
6406 |
-
#: includes/fields/class-fieldtypes-image.php:
|
6407 |
#, fuzzy
|
6408 |
msgctxt "date field"
|
6409 |
msgid "Caption for %s is required."
|
@@ -6414,17 +6448,17 @@ msgctxt "form-fields-api"
|
|
6414 |
msgid "Remove"
|
6415 |
msgstr "إزالة"
|
6416 |
|
6417 |
-
#: includes/fields/class-form-field.php:
|
6418 |
msgctxt "form-fields-api"
|
6419 |
msgid "Invalid form field type"
|
6420 |
msgstr "نوع حقل استمارة غير صحيح"
|
6421 |
|
6422 |
-
#: includes/fields/class-form-field.php:
|
6423 |
msgctxt "form-fields-api"
|
6424 |
msgid "Field label is required."
|
6425 |
msgstr "تسمية الحقل مطلوب."
|
6426 |
|
6427 |
-
#: includes/fields/class-form-field.php:
|
6428 |
msgctxt "form-fields-api"
|
6429 |
msgid ""
|
6430 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
@@ -6432,31 +6466,31 @@ msgid ""
|
|
6432 |
"delete this current field and create a NEW field of type %1$s instead."
|
6433 |
msgstr ""
|
6434 |
|
6435 |
-
#: includes/fields/class-form-field.php:
|
6436 |
msgctxt "form-fields-api"
|
6437 |
msgid ""
|
6438 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
6439 |
"existing listings will be deleted as well."
|
6440 |
msgstr ""
|
6441 |
|
6442 |
-
#: includes/fields/class-form-field.php:
|
6443 |
msgctxt "form-fields-api"
|
6444 |
msgid ""
|
6445 |
"There can only be one field with association \"%s\". Please select another "
|
6446 |
"association."
|
6447 |
msgstr "يمكن أن يكون هناك حقل واحد مع رابطة \"%s\". المرجو تحديد رابطة أخرى."
|
6448 |
|
6449 |
-
#: includes/fields/class-form-field.php:
|
6450 |
msgctxt "form-fields-api"
|
6451 |
msgid "\"%s\" is an invalid field type for this association."
|
6452 |
msgstr "\"%s\" نوع حقل غير صالح لهذه الرابطة."
|
6453 |
|
6454 |
-
#: includes/fields/class-form-field.php:
|
6455 |
msgctxt "form-fields-api"
|
6456 |
msgid "Invalid field ID"
|
6457 |
msgstr "معرف حقل غير صالح"
|
6458 |
|
6459 |
-
#: includes/fields/class-form-field.php:
|
6460 |
msgctxt "form-fields-api"
|
6461 |
msgid "An error occurred while trying to delete this field."
|
6462 |
msgstr "حدث خطأ أثناء محاولة حذف هذا الحقل."
|
@@ -6486,6 +6520,12 @@ msgctxt "form-fields-api"
|
|
6486 |
msgid "Date Validator"
|
6487 |
msgstr "المصادقة على التاريخ"
|
6488 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6489 |
#: includes/fields/class-fieldtypes-image.php:121
|
6490 |
msgctxt "form fields"
|
6491 |
msgid "Field unavailable at the moment."
|
@@ -6538,53 +6578,64 @@ msgstr ""
|
|
6538 |
"باستخدام هذا الإعداد إلا إذا كنت تقوم بإضافة الإعلانات بنفسك وأنت الوحيد من "
|
6539 |
"يتحكم في المحتوى. هل أنت متأكد من أنك تريد تمكين هذا؟"
|
6540 |
|
6541 |
-
#: includes/form-fields.php:
|
6542 |
msgctxt "form-fields-api validation"
|
6543 |
msgid "Field"
|
6544 |
msgstr "حقل"
|
6545 |
|
6546 |
-
#: includes/form-fields.php:
|
6547 |
msgctxt "form-fields-api validation"
|
6548 |
msgid "%s is required."
|
6549 |
msgstr "%s مطلوب."
|
6550 |
|
6551 |
-
#: includes/form-fields.php:
|
6552 |
msgctxt "form-fields-api validation"
|
6553 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
6554 |
msgstr "%s مهيأ بشكل سيئ. المطلوب تنسيق URL صالح. يتضمن http://"
|
6555 |
|
6556 |
-
#: includes/form-fields.php:
|
6557 |
msgctxt "form-fields-api validation"
|
6558 |
msgid "%s is badly formatted. Valid Email format required."
|
6559 |
msgstr "%s مهيأ بشكل سيئ. المطلوب تنسيق بريد إلكتروني صالح."
|
6560 |
|
6561 |
-
#: includes/form-fields.php:
|
6562 |
msgctxt "form-fields-api validation"
|
6563 |
msgid "%s must be a number. Decimal values are not allowed."
|
6564 |
msgstr "%s يجب أن تكون عددا. لا يسمح بالقيم العشرية."
|
6565 |
|
6566 |
-
#: includes/form-fields.php:
|
6567 |
msgctxt "form-fields-api validation"
|
6568 |
msgid "%s must be a number."
|
6569 |
msgstr "%s يجب أن تكون عددا."
|
6570 |
|
6571 |
-
#: includes/form-fields.php:
|
6572 |
#, fuzzy
|
6573 |
msgctxt "form-fields-api validation"
|
6574 |
msgid "%1$s must be in the format %2$s."
|
6575 |
msgstr "%s يجب أن يكون بتنسيق %s."
|
6576 |
|
6577 |
-
#: includes/form-fields.php:
|
6578 |
msgctxt "form-fields-api validation"
|
6579 |
msgid "%s must be a valid date."
|
6580 |
msgstr "%s يجب أن يكون تاريخاً صالحاً."
|
6581 |
|
6582 |
-
#: includes/form-fields.php:
|
|
|
|
|
|
|
|
|
|
|
6583 |
#, fuzzy
|
6584 |
msgctxt "form-fields-api validation"
|
6585 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
6586 |
msgstr "%s غير صالح. يجب أن تكون القيمة واحدة من %s."
|
6587 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6588 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
6589 |
#, fuzzy
|
6590 |
msgctxt "authorize-net"
|
@@ -7353,17 +7404,17 @@ msgctxt "templates"
|
|
7353 |
msgid "View not available."
|
7354 |
msgstr "المشاهدة غير متوفرة."
|
7355 |
|
7356 |
-
#: includes/views/submit_listing.php:
|
7357 |
msgctxt "templates"
|
7358 |
msgid "Please agree to the Terms and Conditions."
|
7359 |
msgstr "يرجى الموافقة على الشروط والأحكام."
|
7360 |
|
7361 |
-
#: includes/views/submit_listing.php:
|
7362 |
msgctxt "templates"
|
7363 |
msgid "Terms and Conditions:"
|
7364 |
msgstr "شروط وأحكام:"
|
7365 |
|
7366 |
-
#: includes/views/submit_listing.php:
|
7367 |
#, fuzzy
|
7368 |
msgctxt "templates"
|
7369 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
@@ -8040,14 +8091,14 @@ msgstr ""
|
|
8040 |
"Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
|
8041 |
"publiée."
|
8042 |
|
8043 |
-
#: includes/views/submit_listing.php:
|
8044 |
msgctxt "listing submit"
|
8045 |
msgid ""
|
8046 |
"Something went wrong. Please check the form for errors, correct them and "
|
8047 |
"submit again."
|
8048 |
msgstr ""
|
8049 |
|
8050 |
-
#: includes/views/submit_listing.php:
|
8051 |
msgctxt "listing submit"
|
8052 |
msgid ""
|
8053 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -8290,112 +8341,124 @@ msgctxt "admin sidebar"
|
|
8290 |
msgid "Elegant Business Theme"
|
8291 |
msgstr "قالب Elegant Business"
|
8292 |
|
8293 |
-
#: templates/admin/sidebar.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8294 |
msgctxt "admin sidebar"
|
8295 |
msgid "Like this plugin?"
|
8296 |
msgstr "هل أحببت هذه الإضافة؟"
|
8297 |
|
8298 |
-
#: templates/admin/sidebar.tpl.php:
|
8299 |
msgctxt "admin sidebar"
|
8300 |
msgid "Why not do any or all of the following:"
|
8301 |
msgstr "لماذا لا تفعل واحدة أو الكل مما يلي:"
|
8302 |
|
8303 |
-
#: templates/admin/sidebar.tpl.php:
|
8304 |
msgctxt "admin sidebar"
|
8305 |
msgid "Give it a good rating on WordPress.org."
|
8306 |
msgstr "إعطها تقييم جيد على WordPress.org."
|
8307 |
|
8308 |
-
#: templates/admin/sidebar.tpl.php:
|
8309 |
msgctxt "admin sidebar"
|
8310 |
msgid "Let other people know that it works with your WordPress setup."
|
8311 |
msgstr "دع الآخرين يعرفون أنه يعمل مع إعداد ووردبريس الخاص بك."
|
8312 |
|
8313 |
-
#: templates/admin/sidebar.tpl.php:
|
8314 |
msgctxt "admin sidebar"
|
8315 |
msgid "Buy a Premium Module"
|
8316 |
msgstr "شراء وحدة ممتازة (Premium)"
|
8317 |
|
8318 |
-
#: templates/admin/sidebar.tpl.php:
|
8319 |
msgctxt "admin sidebar"
|
8320 |
msgid "Get a Premium Module"
|
8321 |
msgstr "الحصول على وحدة ممتازة (Premium) "
|
8322 |
|
8323 |
-
#: templates/admin/sidebar.tpl.php:
|
8324 |
msgctxt "admin sidebar"
|
8325 |
msgid "best deal"
|
8326 |
msgstr "أفضل صفقة"
|
8327 |
|
8328 |
-
#: templates/admin/sidebar.tpl.php:
|
8329 |
msgctxt "admin sidebar"
|
8330 |
msgid "Combo Pack"
|
8331 |
msgstr "حزمة Combo"
|
8332 |
|
8333 |
-
#: templates/admin/sidebar.tpl.php:
|
8334 |
msgctxt "admin sidebar"
|
8335 |
msgid "(All Modules)"
|
8336 |
msgstr "(جميع الوحدات)"
|
8337 |
|
8338 |
-
#: templates/admin/sidebar.tpl.php:
|
8339 |
msgctxt "admin sidebar"
|
8340 |
msgid "new"
|
8341 |
msgstr "جديد"
|
8342 |
|
8343 |
-
#: templates/admin/sidebar.tpl.php:
|
8344 |
msgctxt "admin sidebar"
|
8345 |
msgid "Get a Directory Theme"
|
8346 |
msgstr "أحصل على قالب الدليل"
|
8347 |
|
8348 |
-
#: templates/admin/sidebar.tpl.php:
|
8349 |
msgctxt "admin sidebar"
|
8350 |
msgid "Theme Pack"
|
8351 |
msgstr "حزمة القوالب"
|
8352 |
|
8353 |
-
#: templates/admin/sidebar.tpl.php:
|
8354 |
msgctxt "admin sidebar"
|
8355 |
msgid "(All Themes)"
|
8356 |
msgstr "(جميع القوالب)"
|
8357 |
|
8358 |
-
#: templates/admin/sidebar.tpl.php:
|
8359 |
msgctxt "admin sidebar"
|
8360 |
msgid "Found a bug? Need support?"
|
8361 |
msgstr "العثور على خطأ؟ تحتاج إلى دعم؟"
|
8362 |
|
8363 |
-
#: templates/admin/sidebar.tpl.php:
|
8364 |
msgctxt "admin sidebar"
|
8365 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
8366 |
msgstr "إذا كنت قد وجدت خطأ أو بحاجة إلى دعم <a>قم بزيارة المنتديات!</a>"
|
8367 |
|
8368 |
-
#: templates/admin/sidebar.tpl.php:
|
8369 |
msgctxt "admin sidebar"
|
8370 |
msgid "Full plugin documentation"
|
8371 |
msgstr "الوثائق الكاملة المساعدة للإضافة"
|
8372 |
|
8373 |
-
#: templates/admin/sidebar.tpl.php:
|
8374 |
msgctxt "admin sidebar"
|
8375 |
msgid "Quick Start Guide"
|
8376 |
msgstr "دليل بدء التشغيل السريع"
|
8377 |
|
8378 |
-
#: templates/admin/sidebar.tpl.php:
|
8379 |
msgctxt "admin sidebar"
|
8380 |
msgid "Video Tutorials"
|
8381 |
msgstr "دروس الفيديو التعليمية"
|
8382 |
|
8383 |
-
#: templates/admin/sidebar.tpl.php:
|
8384 |
msgctxt "admin sidebar"
|
8385 |
msgid "Installed Modules"
|
8386 |
msgstr "الوحدات المثبتة"
|
8387 |
|
8388 |
-
#: templates/admin/sidebar.tpl.php:
|
8389 |
msgctxt "admin sidebar"
|
8390 |
msgid "Installed"
|
8391 |
msgstr "تم التنصيب"
|
8392 |
|
8393 |
-
#: templates/admin/sidebar.tpl.php:
|
8394 |
msgctxt "admin sidebar"
|
8395 |
msgid "Not Installed"
|
8396 |
msgstr "غير منصب"
|
8397 |
|
8398 |
-
#: templates/admin/sidebar.tpl.php:
|
8399 |
msgctxt "admin sidebar"
|
8400 |
msgid "Enhanced Categories Module"
|
8401 |
msgstr "وحدة التصنيفات المحسنة"
|
@@ -11408,10 +11471,6 @@ msgstr "العنوان"
|
|
11408 |
#~ msgid "Delete theme"
|
11409 |
#~ msgstr "Effacer les thème"
|
11410 |
|
11411 |
-
#~ msgctxt "themes admin"
|
11412 |
-
#~ msgid "Delete Theme"
|
11413 |
-
#~ msgstr "Effacer le thème"
|
11414 |
-
|
11415 |
#~ msgctxt "admin settings"
|
11416 |
#~ msgid "Display search form when displaying search results?"
|
11417 |
#~ msgstr ""
|
5 |
"Project-Id-Version: Business Directory Plugin 4.0.8\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2018-06-27 21:14:25+00:00\n"
|
9 |
"PO-Revision-Date: 2017-01-16 17:47-0500\n"
|
10 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
2680 |
msgid "Field list of options is required."
|
2681 |
msgstr "قائمة خيارات الحقل مطلوبة."
|
2682 |
|
2683 |
+
#: includes/fields/class-fieldtypes-image.php:55
|
2684 |
#, fuzzy
|
2685 |
msgctxt "form-fields admin"
|
2686 |
msgid "Display caption?"
|
2687 |
msgstr "خيارات عرض الحقل"
|
2688 |
|
2689 |
+
#: includes/fields/class-fieldtypes-image.php:58
|
2690 |
#, fuzzy
|
2691 |
msgctxt "form-fields admin"
|
2692 |
msgid "Field Caption required?"
|
2808 |
msgid "Use rel=\"nofollow\" when displaying the link?"
|
2809 |
msgstr "إستخدام rel = \"nofollow\" عند عرض الارتباط؟"
|
2810 |
|
2811 |
+
#: templates/admin/form-fields-addoredit.tpl.php:8
|
2812 |
msgctxt "form-fields admin"
|
2813 |
msgid "Add Form Field"
|
2814 |
msgstr "أضف حقل الاستمارة"
|
2815 |
|
2816 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
2817 |
msgctxt "form-fields admin"
|
2818 |
msgid "Field Association"
|
2819 |
msgstr "رابطة الحقل"
|
2820 |
|
2821 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
2822 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
2823 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
2824 |
msgctxt "form-fields admin"
|
2825 |
msgid "required"
|
2826 |
msgstr "مطلوب"
|
2827 |
|
2828 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
2829 |
msgctxt "form-fields admin"
|
2830 |
msgid "Field Type"
|
2831 |
msgstr "نوع الحقل"
|
2832 |
|
2833 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
2834 |
msgctxt "form-fields admin"
|
2835 |
msgid "Field Label"
|
2836 |
msgstr "تسمية الحقل"
|
2837 |
|
2838 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
2839 |
msgctxt "form-fields admin"
|
2840 |
msgid "Field description"
|
2841 |
msgstr "وصف الحقل"
|
2842 |
|
2843 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
2844 |
msgctxt "form-fields admin"
|
2845 |
msgid "optional"
|
2846 |
msgstr "إختياري"
|
2847 |
|
2848 |
+
#: templates/admin/form-fields-addoredit.tpl.php:97
|
2849 |
msgctxt "form-fields admin"
|
2850 |
msgid "Field-specific settings"
|
2851 |
msgstr "إعدادات حقل خاص"
|
2852 |
|
2853 |
+
#: templates/admin/form-fields-addoredit.tpl.php:106
|
2854 |
msgctxt "form-fields admin"
|
2855 |
msgid "Field validation options"
|
2856 |
msgstr "خيارات التحقق من صحة الحقل"
|
2857 |
|
2858 |
+
#: templates/admin/form-fields-addoredit.tpl.php:110
|
2859 |
msgctxt "form-fields admin"
|
2860 |
msgid "Field Validator"
|
2861 |
msgstr "مصادقة الحقول"
|
2862 |
|
2863 |
+
#: templates/admin/form-fields-addoredit.tpl.php:114
|
2864 |
msgctxt "form-fields admin"
|
2865 |
msgid "No validation"
|
2866 |
msgstr "لا يوجد تحقق من الصحة"
|
2867 |
|
2868 |
+
#: templates/admin/form-fields-addoredit.tpl.php:126
|
2869 |
+
#, fuzzy
|
2870 |
+
msgctxt "form-fields admin"
|
2871 |
+
msgid "Number of words"
|
2872 |
+
msgstr "عدد الصور:"
|
2873 |
+
|
2874 |
+
#: templates/admin/form-fields-addoredit.tpl.php:136
|
2875 |
msgctxt "form-fields admin"
|
2876 |
msgid "Is field required?"
|
2877 |
msgstr "هل هذا الحقل مطلوب؟"
|
2878 |
|
2879 |
+
#: templates/admin/form-fields-addoredit.tpl.php:142
|
2880 |
msgctxt "form-fields admin"
|
2881 |
msgid "This field is required."
|
2882 |
msgstr "هذا الحقل مطلوب."
|
2883 |
|
2884 |
+
#: templates/admin/form-fields-addoredit.tpl.php:150
|
2885 |
msgctxt "form-fields admin"
|
2886 |
msgid "Field display options"
|
2887 |
msgstr "خيارات عرض الحقل"
|
2888 |
|
2889 |
+
#: templates/admin/form-fields-addoredit.tpl.php:154
|
2890 |
+
msgctxt "form-fields admin"
|
2891 |
+
msgid "Field Category Policy:"
|
2892 |
+
msgstr ""
|
2893 |
+
|
2894 |
+
#: templates/admin/form-fields-addoredit.tpl.php:159
|
2895 |
+
#, fuzzy
|
2896 |
+
msgctxt "form-fields admin"
|
2897 |
+
msgid "Field applies to all categories"
|
2898 |
+
msgstr "تجديد قائمة في جميع فئات منتهية الصلاحية"
|
2899 |
+
|
2900 |
+
#: templates/admin/form-fields-addoredit.tpl.php:160
|
2901 |
+
#, fuzzy
|
2902 |
+
msgctxt "form-fields admin"
|
2903 |
+
msgid "Field applies to only certain categories"
|
2904 |
+
msgstr "تجديد قائمة في جميع فئات منتهية الصلاحية"
|
2905 |
+
|
2906 |
+
#: templates/admin/form-fields-addoredit.tpl.php:164
|
2907 |
+
#, fuzzy
|
2908 |
+
msgctxt "form-fields admin"
|
2909 |
+
msgid "Limit field to the following categories:"
|
2910 |
+
msgstr "يمكنك استخدام العناصر النائبة التالية:"
|
2911 |
+
|
2912 |
+
#: templates/admin/form-fields-addoredit.tpl.php:188
|
2913 |
+
msgctxt "form-fields admin"
|
2914 |
+
msgid "Click to add categories to the selection."
|
2915 |
+
msgstr ""
|
2916 |
+
|
2917 |
+
#: templates/admin/form-fields-addoredit.tpl.php:201
|
2918 |
msgctxt "form-fields admin"
|
2919 |
msgid "Show this field to admin users only?"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
+
#: templates/admin/form-fields-addoredit.tpl.php:207
|
2923 |
#, fuzzy
|
2924 |
msgctxt "form-fields admin"
|
2925 |
msgid "Display this field to admin users only in the edit listing view."
|
2926 |
msgstr "عرض هذه القيمة في مشاهدة الإعلان."
|
2927 |
|
2928 |
+
#: templates/admin/form-fields-addoredit.tpl.php:213
|
2929 |
msgctxt "form-fields admin"
|
2930 |
msgid "Show this value in excerpt view?"
|
2931 |
msgstr "إظهار هذه القيمة في مشاهدة المقتطفات؟"
|
2932 |
|
2933 |
+
#: templates/admin/form-fields-addoredit.tpl.php:219
|
2934 |
msgctxt "form-fields admin"
|
2935 |
msgid "Display this value in post excerpt view."
|
2936 |
msgstr "عرض هذه القيمة في مشاهدة مقتطفات المقالة."
|
2937 |
|
2938 |
+
#: templates/admin/form-fields-addoredit.tpl.php:225
|
2939 |
msgctxt "form-fields admin"
|
2940 |
msgid "Show this value in listing view?"
|
2941 |
msgstr "إظهار هذه القيمة في مشاهدة الإعلان؟"
|
2942 |
|
2943 |
+
#: templates/admin/form-fields-addoredit.tpl.php:231
|
2944 |
msgctxt "form-fields admin"
|
2945 |
msgid "Display this value in the listing view."
|
2946 |
msgstr "عرض هذه القيمة في مشاهدة الإعلان."
|
2947 |
|
2948 |
+
#: templates/admin/form-fields-addoredit.tpl.php:237
|
2949 |
msgctxt "form-fields admin"
|
2950 |
msgid "Include this field in the search form?"
|
2951 |
msgstr "تضمين هذا الحقل في نموذج البحث؟"
|
2952 |
|
2953 |
+
#: templates/admin/form-fields-addoredit.tpl.php:243
|
2954 |
msgctxt "form-fields admin"
|
2955 |
msgid "Include this field in the search form."
|
2956 |
msgstr "تضمين هذا الحقل في نموذج البحث."
|
2957 |
|
2958 |
+
#: templates/admin/form-fields-addoredit.tpl.php:249
|
2959 |
#, fuzzy
|
2960 |
msgctxt "form-fields admin"
|
2961 |
msgid "Is this field required for searching?"
|
2962 |
msgstr "هل هذا الحقل مطلوب؟"
|
2963 |
|
2964 |
+
#: templates/admin/form-fields-addoredit.tpl.php:255
|
2965 |
msgctxt "form-fields admin"
|
2966 |
msgid ""
|
2967 |
"Make this fields required during searches on the Advanced Search screen."
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: templates/admin/form-fields-addoredit.tpl.php:261
|
2971 |
msgctxt "form-fields admin"
|
2972 |
msgid "Hide this field's label?"
|
2973 |
msgstr "إخفاء تسمية هذا الحقل؟"
|
2974 |
|
2975 |
+
#: templates/admin/form-fields-addoredit.tpl.php:267
|
2976 |
msgctxt "form-fields admin"
|
2977 |
msgid "Hide this field's label when displaying it."
|
2978 |
msgstr "إخفاء تسمية هذا الحقل عند عرضه."
|
2979 |
|
2980 |
+
#: templates/admin/form-fields-addoredit.tpl.php:274
|
2981 |
msgctxt "form-fields admin"
|
2982 |
msgid "Update Field"
|
2983 |
msgstr "تحديث الحقل"
|
2984 |
|
2985 |
+
#: templates/admin/form-fields-addoredit.tpl.php:276
|
2986 |
msgctxt "form-fields admin"
|
2987 |
msgid "Add Field"
|
2988 |
msgstr "إضافة حقل"
|
6153 |
msgid "Please choose a valid fee plan for your category selection."
|
6154 |
msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
|
6155 |
|
6156 |
+
#: includes/views/submit_listing.php:743
|
6157 |
#, fuzzy
|
6158 |
msgctxt "submit listing"
|
6159 |
msgid "Please enter your desired username."
|
6160 |
msgstr "يرجى إدخال إسمك."
|
6161 |
|
6162 |
+
#: includes/views/submit_listing.php:748
|
6163 |
#, fuzzy
|
6164 |
msgctxt "submit listing"
|
6165 |
msgid "Please enter the e-mail for your new account."
|
6166 |
msgstr "يرجى إدخال إسمك."
|
6167 |
|
6168 |
+
#: includes/views/submit_listing.php:753
|
6169 |
msgctxt "submit listing"
|
6170 |
msgid "Please enter the password for your new account."
|
6171 |
msgstr ""
|
6172 |
|
6173 |
+
#: includes/views/submit_listing.php:763
|
6174 |
msgctxt "submit listing"
|
6175 |
msgid "The username you chose is already in use. Please use a different one."
|
6176 |
msgstr ""
|
6177 |
|
6178 |
+
#: includes/views/submit_listing.php:768
|
6179 |
msgctxt "submit listing"
|
6180 |
msgid "The e-mail address you chose for your account is already in use."
|
6181 |
msgstr ""
|
6182 |
|
6183 |
+
#: includes/views/submit_listing.php:783
|
6184 |
msgctxt "submit listing"
|
6185 |
msgid "Create a user account on this site"
|
6186 |
msgstr ""
|
6187 |
|
6188 |
+
#: includes/views/submit_listing.php:790
|
6189 |
msgctxt "submit listing"
|
6190 |
msgid ""
|
6191 |
"You need to create an account on the site. Please fill out the form below."
|
6192 |
msgstr ""
|
6193 |
|
6194 |
+
#: includes/views/submit_listing.php:796
|
6195 |
#, fuzzy
|
6196 |
msgctxt "submit listing"
|
6197 |
msgid "Username:"
|
6198 |
msgstr "عضو"
|
6199 |
|
6200 |
+
#: includes/views/submit_listing.php:805
|
6201 |
#, fuzzy
|
6202 |
msgctxt "submit listing"
|
6203 |
msgid "Email:"
|
6204 |
msgstr "البريد الإلكتروني: %s"
|
6205 |
|
6206 |
+
#: includes/views/submit_listing.php:814
|
6207 |
msgctxt "submit listing"
|
6208 |
msgid "Password:"
|
6209 |
msgstr ""
|
6237 |
msgid "Save Changes"
|
6238 |
msgstr "حفظ التعديلات"
|
6239 |
|
6240 |
+
#: includes/class-recaptcha.php:109 includes/class-recaptcha.php:150
|
6241 |
msgctxt "recaptcha"
|
6242 |
msgid "The reCAPTCHA wasn't entered correctly."
|
6243 |
msgstr "لم يتم إدخال reCAPTCHA بشكل صحيح."
|
6244 |
|
6245 |
+
#: includes/class-recaptcha.php:211
|
6246 |
#, fuzzy
|
6247 |
msgctxt "recaptcha"
|
6248 |
msgid "reCAPTCHA"
|
6349 |
msgid "Textarea"
|
6350 |
msgstr "مربع النص"
|
6351 |
|
6352 |
+
#: includes/fields/class-fieldtypes-textfield.php:13
|
6353 |
msgctxt "form-fields api"
|
6354 |
msgid "Textfield"
|
6355 |
msgstr "حقل النص"
|
6356 |
|
6357 |
+
#: includes/fields/class-fieldtypes-textfield.php:50
|
6358 |
msgctxt "form-fields api"
|
6359 |
msgid "Format 01/31/1969"
|
6360 |
msgstr "تنسيق 31/01/1969"
|
6379 |
msgid "Link Text (optional):"
|
6380 |
msgstr "رابط نصي (اختياري):"
|
6381 |
|
6382 |
+
#: includes/fields/class-form-field.php:707
|
6383 |
msgctxt "form-fields api"
|
6384 |
msgid ""
|
6385 |
"This form field can't be deleted because it is required for the plugin to "
|
6437 |
msgid "%s must be a valid date."
|
6438 |
msgstr "%s يجب أن يكون تاريخاً صالحاً."
|
6439 |
|
6440 |
+
#: includes/fields/class-fieldtypes-image.php:41
|
6441 |
#, fuzzy
|
6442 |
msgctxt "date field"
|
6443 |
msgid "Caption for %s is required."
|
6448 |
msgid "Remove"
|
6449 |
msgstr "إزالة"
|
6450 |
|
6451 |
+
#: includes/fields/class-form-field.php:66
|
6452 |
msgctxt "form-fields-api"
|
6453 |
msgid "Invalid form field type"
|
6454 |
msgstr "نوع حقل استمارة غير صحيح"
|
6455 |
|
6456 |
+
#: includes/fields/class-form-field.php:585
|
6457 |
msgctxt "form-fields-api"
|
6458 |
msgid "Field label is required."
|
6459 |
msgstr "تسمية الحقل مطلوب."
|
6460 |
|
6461 |
+
#: includes/fields/class-form-field.php:596
|
6462 |
msgctxt "form-fields-api"
|
6463 |
msgid ""
|
6464 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
6466 |
"delete this current field and create a NEW field of type %1$s instead."
|
6467 |
msgstr ""
|
6468 |
|
6469 |
+
#: includes/fields/class-form-field.php:599
|
6470 |
msgctxt "form-fields-api"
|
6471 |
msgid ""
|
6472 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
6473 |
"existing listings will be deleted as well."
|
6474 |
msgstr ""
|
6475 |
|
6476 |
+
#: includes/fields/class-form-field.php:633
|
6477 |
msgctxt "form-fields-api"
|
6478 |
msgid ""
|
6479 |
"There can only be one field with association \"%s\". Please select another "
|
6480 |
"association."
|
6481 |
msgstr "يمكن أن يكون هناك حقل واحد مع رابطة \"%s\". المرجو تحديد رابطة أخرى."
|
6482 |
|
6483 |
+
#: includes/fields/class-form-field.php:643
|
6484 |
msgctxt "form-fields-api"
|
6485 |
msgid "\"%s\" is an invalid field type for this association."
|
6486 |
msgstr "\"%s\" نوع حقل غير صالح لهذه الرابطة."
|
6487 |
|
6488 |
+
#: includes/fields/class-form-field.php:697
|
6489 |
msgctxt "form-fields-api"
|
6490 |
msgid "Invalid field ID"
|
6491 |
msgstr "معرف حقل غير صالح"
|
6492 |
|
6493 |
+
#: includes/fields/class-form-field.php:720
|
6494 |
msgctxt "form-fields-api"
|
6495 |
msgid "An error occurred while trying to delete this field."
|
6496 |
msgstr "حدث خطأ أثناء محاولة حذف هذا الحقل."
|
6520 |
msgid "Date Validator"
|
6521 |
msgstr "المصادقة على التاريخ"
|
6522 |
|
6523 |
+
#: includes/form-fields.php:574
|
6524 |
+
#, fuzzy
|
6525 |
+
msgctxt "form-fields-api"
|
6526 |
+
msgid "Word Count Validator"
|
6527 |
+
msgstr "المصادقة على رقم صحيح"
|
6528 |
+
|
6529 |
#: includes/fields/class-fieldtypes-image.php:121
|
6530 |
msgctxt "form fields"
|
6531 |
msgid "Field unavailable at the moment."
|
6578 |
"باستخدام هذا الإعداد إلا إذا كنت تقوم بإضافة الإعلانات بنفسك وأنت الوحيد من "
|
6579 |
"يتحكم في المحتوى. هل أنت متأكد من أنك تريد تمكين هذا؟"
|
6580 |
|
6581 |
+
#: includes/form-fields.php:581
|
6582 |
msgctxt "form-fields-api validation"
|
6583 |
msgid "Field"
|
6584 |
msgstr "حقل"
|
6585 |
|
6586 |
+
#: includes/form-fields.php:602 includes/form-fields.php:607
|
6587 |
msgctxt "form-fields-api validation"
|
6588 |
msgid "%s is required."
|
6589 |
msgstr "%s مطلوب."
|
6590 |
|
6591 |
+
#: includes/form-fields.php:619 includes/form-fields.php:626
|
6592 |
msgctxt "form-fields-api validation"
|
6593 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
6594 |
msgstr "%s مهيأ بشكل سيئ. المطلوب تنسيق URL صالح. يتضمن http://"
|
6595 |
|
6596 |
+
#: includes/form-fields.php:641
|
6597 |
msgctxt "form-fields-api validation"
|
6598 |
msgid "%s is badly formatted. Valid Email format required."
|
6599 |
msgstr "%s مهيأ بشكل سيئ. المطلوب تنسيق بريد إلكتروني صالح."
|
6600 |
|
6601 |
+
#: includes/form-fields.php:648
|
6602 |
msgctxt "form-fields-api validation"
|
6603 |
msgid "%s must be a number. Decimal values are not allowed."
|
6604 |
msgstr "%s يجب أن تكون عددا. لا يسمح بالقيم العشرية."
|
6605 |
|
6606 |
+
#: includes/form-fields.php:655
|
6607 |
msgctxt "form-fields-api validation"
|
6608 |
msgid "%s must be a number."
|
6609 |
msgstr "%s يجب أن تكون عددا."
|
6610 |
|
6611 |
+
#: includes/form-fields.php:674
|
6612 |
#, fuzzy
|
6613 |
msgctxt "form-fields-api validation"
|
6614 |
msgid "%1$s must be in the format %2$s."
|
6615 |
msgstr "%s يجب أن يكون بتنسيق %s."
|
6616 |
|
6617 |
+
#: includes/form-fields.php:712
|
6618 |
msgctxt "form-fields-api validation"
|
6619 |
msgid "%s must be a valid date."
|
6620 |
msgstr "%s يجب أن يكون تاريخاً صالحاً."
|
6621 |
|
6622 |
+
#: includes/form-fields.php:735
|
6623 |
+
msgctxt "form-fields-api validation"
|
6624 |
+
msgid "%s must have less than %d words."
|
6625 |
+
msgstr ""
|
6626 |
+
|
6627 |
+
#: includes/form-fields.php:754
|
6628 |
#, fuzzy
|
6629 |
msgctxt "form-fields-api validation"
|
6630 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
6631 |
msgstr "%s غير صالح. يجب أن تكون القيمة واحدة من %s."
|
6632 |
|
6633 |
+
#: includes/form-fields.php:719
|
6634 |
+
#, fuzzy
|
6635 |
+
msgctxt "image field"
|
6636 |
+
msgid "Caption for %s is required."
|
6637 |
+
msgstr "البلد المطلوب."
|
6638 |
+
|
6639 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
6640 |
#, fuzzy
|
6641 |
msgctxt "authorize-net"
|
7404 |
msgid "View not available."
|
7405 |
msgstr "المشاهدة غير متوفرة."
|
7406 |
|
7407 |
+
#: includes/views/submit_listing.php:852
|
7408 |
msgctxt "templates"
|
7409 |
msgid "Please agree to the Terms and Conditions."
|
7410 |
msgstr "يرجى الموافقة على الشروط والأحكام."
|
7411 |
|
7412 |
+
#: includes/views/submit_listing.php:860
|
7413 |
msgctxt "templates"
|
7414 |
msgid "Terms and Conditions:"
|
7415 |
msgstr "شروط وأحكام:"
|
7416 |
|
7417 |
+
#: includes/views/submit_listing.php:869
|
7418 |
#, fuzzy
|
7419 |
msgctxt "templates"
|
7420 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
8091 |
"Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
|
8092 |
"publiée."
|
8093 |
|
8094 |
+
#: includes/views/submit_listing.php:613
|
8095 |
msgctxt "listing submit"
|
8096 |
msgid ""
|
8097 |
"Something went wrong. Please check the form for errors, correct them and "
|
8098 |
"submit again."
|
8099 |
msgstr ""
|
8100 |
|
8101 |
+
#: includes/views/submit_listing.php:695
|
8102 |
msgctxt "listing submit"
|
8103 |
msgid ""
|
8104 |
"Image upload is required, please provide at least one image and submit again."
|
8341 |
msgid "Elegant Business Theme"
|
8342 |
msgstr "قالب Elegant Business"
|
8343 |
|
8344 |
+
#: templates/admin/sidebar.tpl.php:23
|
8345 |
+
#, fuzzy
|
8346 |
+
msgctxt "admin sidebar"
|
8347 |
+
msgid "Modern Business Theme"
|
8348 |
+
msgstr "قالب Elegant Business"
|
8349 |
+
|
8350 |
+
#: templates/admin/sidebar.tpl.php:24
|
8351 |
+
#, fuzzy
|
8352 |
+
msgctxt "admin sidebar"
|
8353 |
+
msgid "Modern Filtered Theme"
|
8354 |
+
msgstr "Effacer le thème"
|
8355 |
+
|
8356 |
+
#: templates/admin/sidebar.tpl.php:31
|
8357 |
msgctxt "admin sidebar"
|
8358 |
msgid "Like this plugin?"
|
8359 |
msgstr "هل أحببت هذه الإضافة؟"
|
8360 |
|
8361 |
+
#: templates/admin/sidebar.tpl.php:33
|
8362 |
msgctxt "admin sidebar"
|
8363 |
msgid "Why not do any or all of the following:"
|
8364 |
msgstr "لماذا لا تفعل واحدة أو الكل مما يلي:"
|
8365 |
|
8366 |
+
#: templates/admin/sidebar.tpl.php:35
|
8367 |
msgctxt "admin sidebar"
|
8368 |
msgid "Give it a good rating on WordPress.org."
|
8369 |
msgstr "إعطها تقييم جيد على WordPress.org."
|
8370 |
|
8371 |
+
#: templates/admin/sidebar.tpl.php:36
|
8372 |
msgctxt "admin sidebar"
|
8373 |
msgid "Let other people know that it works with your WordPress setup."
|
8374 |
msgstr "دع الآخرين يعرفون أنه يعمل مع إعداد ووردبريس الخاص بك."
|
8375 |
|
8376 |
+
#: templates/admin/sidebar.tpl.php:37
|
8377 |
msgctxt "admin sidebar"
|
8378 |
msgid "Buy a Premium Module"
|
8379 |
msgstr "شراء وحدة ممتازة (Premium)"
|
8380 |
|
8381 |
+
#: templates/admin/sidebar.tpl.php:44
|
8382 |
msgctxt "admin sidebar"
|
8383 |
msgid "Get a Premium Module"
|
8384 |
msgstr "الحصول على وحدة ممتازة (Premium) "
|
8385 |
|
8386 |
+
#: templates/admin/sidebar.tpl.php:47 templates/admin/sidebar.tpl.php:63
|
8387 |
msgctxt "admin sidebar"
|
8388 |
msgid "best deal"
|
8389 |
msgstr "أفضل صفقة"
|
8390 |
|
8391 |
+
#: templates/admin/sidebar.tpl.php:47
|
8392 |
msgctxt "admin sidebar"
|
8393 |
msgid "Combo Pack"
|
8394 |
msgstr "حزمة Combo"
|
8395 |
|
8396 |
+
#: templates/admin/sidebar.tpl.php:47
|
8397 |
msgctxt "admin sidebar"
|
8398 |
msgid "(All Modules)"
|
8399 |
msgstr "(جميع الوحدات)"
|
8400 |
|
8401 |
+
#: templates/admin/sidebar.tpl.php:50 templates/admin/sidebar.tpl.php:66
|
8402 |
msgctxt "admin sidebar"
|
8403 |
msgid "new"
|
8404 |
msgstr "جديد"
|
8405 |
|
8406 |
+
#: templates/admin/sidebar.tpl.php:60
|
8407 |
msgctxt "admin sidebar"
|
8408 |
msgid "Get a Directory Theme"
|
8409 |
msgstr "أحصل على قالب الدليل"
|
8410 |
|
8411 |
+
#: templates/admin/sidebar.tpl.php:63
|
8412 |
msgctxt "admin sidebar"
|
8413 |
msgid "Theme Pack"
|
8414 |
msgstr "حزمة القوالب"
|
8415 |
|
8416 |
+
#: templates/admin/sidebar.tpl.php:63
|
8417 |
msgctxt "admin sidebar"
|
8418 |
msgid "(All Themes)"
|
8419 |
msgstr "(جميع القوالب)"
|
8420 |
|
8421 |
+
#: templates/admin/sidebar.tpl.php:76
|
8422 |
msgctxt "admin sidebar"
|
8423 |
msgid "Found a bug? Need support?"
|
8424 |
msgstr "العثور على خطأ؟ تحتاج إلى دعم؟"
|
8425 |
|
8426 |
+
#: templates/admin/sidebar.tpl.php:81
|
8427 |
msgctxt "admin sidebar"
|
8428 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
8429 |
msgstr "إذا كنت قد وجدت خطأ أو بحاجة إلى دعم <a>قم بزيارة المنتديات!</a>"
|
8430 |
|
8431 |
+
#: templates/admin/sidebar.tpl.php:84
|
8432 |
msgctxt "admin sidebar"
|
8433 |
msgid "Full plugin documentation"
|
8434 |
msgstr "الوثائق الكاملة المساعدة للإضافة"
|
8435 |
|
8436 |
+
#: templates/admin/sidebar.tpl.php:85
|
8437 |
msgctxt "admin sidebar"
|
8438 |
msgid "Quick Start Guide"
|
8439 |
msgstr "دليل بدء التشغيل السريع"
|
8440 |
|
8441 |
+
#: templates/admin/sidebar.tpl.php:86
|
8442 |
msgctxt "admin sidebar"
|
8443 |
msgid "Video Tutorials"
|
8444 |
msgstr "دروس الفيديو التعليمية"
|
8445 |
|
8446 |
+
#: templates/admin/sidebar.tpl.php:94
|
8447 |
msgctxt "admin sidebar"
|
8448 |
msgid "Installed Modules"
|
8449 |
msgstr "الوحدات المثبتة"
|
8450 |
|
8451 |
+
#: templates/admin/sidebar.tpl.php:105 templates/admin/sidebar.tpl.php:114
|
8452 |
msgctxt "admin sidebar"
|
8453 |
msgid "Installed"
|
8454 |
msgstr "تم التنصيب"
|
8455 |
|
8456 |
+
#: templates/admin/sidebar.tpl.php:107 templates/admin/sidebar.tpl.php:114
|
8457 |
msgctxt "admin sidebar"
|
8458 |
msgid "Not Installed"
|
8459 |
msgstr "غير منصب"
|
8460 |
|
8461 |
+
#: templates/admin/sidebar.tpl.php:113
|
8462 |
msgctxt "admin sidebar"
|
8463 |
msgid "Enhanced Categories Module"
|
8464 |
msgstr "وحدة التصنيفات المحسنة"
|
11471 |
#~ msgid "Delete theme"
|
11472 |
#~ msgstr "Effacer les thème"
|
11473 |
|
|
|
|
|
|
|
|
|
11474 |
#~ msgctxt "admin settings"
|
11475 |
#~ msgid "Display search form when displaying search results?"
|
11476 |
#~ msgstr ""
|
languages/WPBDM-de_DE.mo
CHANGED
Binary file
|
languages/WPBDM-de_DE.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin 3.5.4\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2018-06-
|
9 |
"PO-Revision-Date: 2018-03-02 08:40-0500\n"
|
10 |
"Last-Translator: Axel J. Metayer <axel@kfz.net>\n"
|
11 |
"Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
|
@@ -2720,13 +2720,13 @@ msgctxt "form-fields admin"
|
|
2720 |
msgid "Field list of options is required."
|
2721 |
msgstr "Feldliste von Optionen wird benötigt."
|
2722 |
|
2723 |
-
#: includes/fields/class-fieldtypes-image.php:
|
2724 |
#, fuzzy
|
2725 |
msgctxt "form-fields admin"
|
2726 |
msgid "Display caption?"
|
2727 |
msgstr "Feld Anzeigeoptionen"
|
2728 |
|
2729 |
-
#: includes/fields/class-fieldtypes-image.php:
|
2730 |
#, fuzzy
|
2731 |
msgctxt "form-fields admin"
|
2732 |
msgid "Field Caption required?"
|
@@ -2846,148 +2846,182 @@ msgctxt "form-fields admin"
|
|
2846 |
msgid "Use rel=\"nofollow\" when displaying the link?"
|
2847 |
msgstr "Benutze rel=\"nofollow\" wenn der link angezeigt wird?"
|
2848 |
|
2849 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2850 |
msgctxt "form-fields admin"
|
2851 |
msgid "Add Form Field"
|
2852 |
msgstr "Formularfeld hinzufügen"
|
2853 |
|
2854 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2855 |
msgctxt "form-fields admin"
|
2856 |
msgid "Field Association"
|
2857 |
msgstr "Feldverbindung"
|
2858 |
|
2859 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2860 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2861 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2862 |
msgctxt "form-fields admin"
|
2863 |
msgid "required"
|
2864 |
msgstr "Pflichtfeld"
|
2865 |
|
2866 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2867 |
msgctxt "form-fields admin"
|
2868 |
msgid "Field Type"
|
2869 |
msgstr "Feldtyp"
|
2870 |
|
2871 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2872 |
msgctxt "form-fields admin"
|
2873 |
msgid "Field Label"
|
2874 |
msgstr "Feldbezeichnung"
|
2875 |
|
2876 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2877 |
msgctxt "form-fields admin"
|
2878 |
msgid "Field description"
|
2879 |
msgstr "Feldbeschreibung"
|
2880 |
|
2881 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2882 |
msgctxt "form-fields admin"
|
2883 |
msgid "optional"
|
2884 |
msgstr "Optional"
|
2885 |
|
2886 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2887 |
msgctxt "form-fields admin"
|
2888 |
msgid "Field-specific settings"
|
2889 |
msgstr "Feld spezifische Einstellungen"
|
2890 |
|
2891 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2892 |
msgctxt "form-fields admin"
|
2893 |
msgid "Field validation options"
|
2894 |
msgstr "Optionen Feldvalidierung"
|
2895 |
|
2896 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2897 |
msgctxt "form-fields admin"
|
2898 |
msgid "Field Validator"
|
2899 |
msgstr "Feldvalidator"
|
2900 |
|
2901 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2902 |
msgctxt "form-fields admin"
|
2903 |
msgid "No validation"
|
2904 |
msgstr "Keine Validierung"
|
2905 |
|
2906 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2907 |
msgctxt "form-fields admin"
|
2908 |
msgid "Is field required?"
|
2909 |
msgstr "Ist das Feld ein Pflichtfeld?"
|
2910 |
|
2911 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2912 |
msgctxt "form-fields admin"
|
2913 |
msgid "This field is required."
|
2914 |
msgstr "Dieses Feld ist ein Pflichtfeld."
|
2915 |
|
2916 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2917 |
msgctxt "form-fields admin"
|
2918 |
msgid "Field display options"
|
2919 |
msgstr "Feld Anzeigeoptionen"
|
2920 |
|
2921 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2922 |
msgctxt "form-fields admin"
|
2923 |
msgid "Show this field to admin users only?"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2927 |
#, fuzzy
|
2928 |
msgctxt "form-fields admin"
|
2929 |
msgid "Display this field to admin users only in the edit listing view."
|
2930 |
msgstr "Diesen Wert in der Detailansicht anzeigen."
|
2931 |
|
2932 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2933 |
msgctxt "form-fields admin"
|
2934 |
msgid "Show this value in excerpt view?"
|
2935 |
msgstr "In der Vorschau anzeigen?"
|
2936 |
|
2937 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2938 |
msgctxt "form-fields admin"
|
2939 |
msgid "Display this value in post excerpt view."
|
2940 |
msgstr "Der Wert wird in der Vorschau des Eintrags angezeigt (Exzerpt)."
|
2941 |
|
2942 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2943 |
msgctxt "form-fields admin"
|
2944 |
msgid "Show this value in listing view?"
|
2945 |
msgstr "In Detailansicht anzeigen?"
|
2946 |
|
2947 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2948 |
msgctxt "form-fields admin"
|
2949 |
msgid "Display this value in the listing view."
|
2950 |
msgstr "Diesen Wert in der Detailansicht anzeigen."
|
2951 |
|
2952 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2953 |
msgctxt "form-fields admin"
|
2954 |
msgid "Include this field in the search form?"
|
2955 |
msgstr "In Suchform integrieren?"
|
2956 |
|
2957 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2958 |
msgctxt "form-fields admin"
|
2959 |
msgid "Include this field in the search form."
|
2960 |
msgstr "Zeige das Feld im Suchformular."
|
2961 |
|
2962 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2963 |
#, fuzzy
|
2964 |
msgctxt "form-fields admin"
|
2965 |
msgid "Is this field required for searching?"
|
2966 |
msgstr "Ist das Feld ein Pflichtfeld?"
|
2967 |
|
2968 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2969 |
msgctxt "form-fields admin"
|
2970 |
msgid ""
|
2971 |
"Make this fields required during searches on the Advanced Search screen."
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2975 |
msgctxt "form-fields admin"
|
2976 |
msgid "Hide this field's label?"
|
2977 |
msgstr "Feldbezeichnung verbergen?"
|
2978 |
|
2979 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2980 |
msgctxt "form-fields admin"
|
2981 |
msgid "Hide this field's label when displaying it."
|
2982 |
msgstr ""
|
2983 |
"Die Feldbezeichnung wird dann nicht mehr angezeigt (nur der Inhalt an sich)."
|
2984 |
|
2985 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2986 |
msgctxt "form-fields admin"
|
2987 |
msgid "Update Field"
|
2988 |
msgstr "Feld aktualisieren"
|
2989 |
|
2990 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2991 |
msgctxt "form-fields admin"
|
2992 |
msgid "Add Field"
|
2993 |
msgstr "Feld erstellen"
|
@@ -6104,57 +6138,57 @@ msgctxt "submit listing"
|
|
6104 |
msgid "Please choose a valid fee plan for your category selection."
|
6105 |
msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
|
6106 |
|
6107 |
-
#: includes/views/submit_listing.php:
|
6108 |
#, fuzzy
|
6109 |
msgctxt "submit listing"
|
6110 |
msgid "Please enter your desired username."
|
6111 |
msgstr "Bitte geben Sie einen Namen ein."
|
6112 |
|
6113 |
-
#: includes/views/submit_listing.php:
|
6114 |
#, fuzzy
|
6115 |
msgctxt "submit listing"
|
6116 |
msgid "Please enter the e-mail for your new account."
|
6117 |
msgstr "Bitte geben Sie einen Namen ein."
|
6118 |
|
6119 |
-
#: includes/views/submit_listing.php:
|
6120 |
msgctxt "submit listing"
|
6121 |
msgid "Please enter the password for your new account."
|
6122 |
msgstr ""
|
6123 |
|
6124 |
-
#: includes/views/submit_listing.php:
|
6125 |
msgctxt "submit listing"
|
6126 |
msgid "The username you chose is already in use. Please use a different one."
|
6127 |
msgstr ""
|
6128 |
|
6129 |
-
#: includes/views/submit_listing.php:
|
6130 |
msgctxt "submit listing"
|
6131 |
msgid "The e-mail address you chose for your account is already in use."
|
6132 |
msgstr ""
|
6133 |
|
6134 |
-
#: includes/views/submit_listing.php:
|
6135 |
msgctxt "submit listing"
|
6136 |
msgid "Create a user account on this site"
|
6137 |
msgstr ""
|
6138 |
|
6139 |
-
#: includes/views/submit_listing.php:
|
6140 |
msgctxt "submit listing"
|
6141 |
msgid ""
|
6142 |
"You need to create an account on the site. Please fill out the form below."
|
6143 |
msgstr ""
|
6144 |
|
6145 |
-
#: includes/views/submit_listing.php:
|
6146 |
#, fuzzy
|
6147 |
msgctxt "submit listing"
|
6148 |
msgid "Username:"
|
6149 |
msgstr "Benutzer"
|
6150 |
|
6151 |
-
#: includes/views/submit_listing.php:
|
6152 |
#, fuzzy
|
6153 |
msgctxt "submit listing"
|
6154 |
msgid "Email:"
|
6155 |
msgstr "E-mail: %s"
|
6156 |
|
6157 |
-
#: includes/views/submit_listing.php:
|
6158 |
msgctxt "submit listing"
|
6159 |
msgid "Password:"
|
6160 |
msgstr ""
|
@@ -6188,12 +6222,12 @@ msgctxt "submit listing"
|
|
6188 |
msgid "Save Changes"
|
6189 |
msgstr "Änderungen sichern"
|
6190 |
|
6191 |
-
#: includes/class-recaptcha.php:
|
6192 |
msgctxt "recaptcha"
|
6193 |
msgid "The reCAPTCHA wasn't entered correctly."
|
6194 |
msgstr "Das reCAPTCHA wurde nicht korrekt eingegeben."
|
6195 |
|
6196 |
-
#: includes/class-recaptcha.php:
|
6197 |
#, fuzzy
|
6198 |
msgctxt "recaptcha"
|
6199 |
msgid "reCAPTCHA"
|
@@ -6296,12 +6330,12 @@ msgctxt "form-fields api"
|
|
6296 |
msgid "Textarea"
|
6297 |
msgstr "Textbereich"
|
6298 |
|
6299 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
6300 |
msgctxt "form-fields api"
|
6301 |
msgid "Textfield"
|
6302 |
msgstr "Textfeld"
|
6303 |
|
6304 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
6305 |
msgctxt "form-fields api"
|
6306 |
msgid "Format 01/31/1969"
|
6307 |
msgstr "Format 01/31/1969"
|
@@ -6326,7 +6360,7 @@ msgctxt "form-fields api"
|
|
6326 |
msgid "Link Text (optional):"
|
6327 |
msgstr "Link Text (optional):"
|
6328 |
|
6329 |
-
#: includes/fields/class-form-field.php:
|
6330 |
msgctxt "form-fields api"
|
6331 |
msgid ""
|
6332 |
"This form field can't be deleted because it is required for the plugin to "
|
@@ -6386,7 +6420,7 @@ msgctxt "date field"
|
|
6386 |
msgid "%s must be a valid date."
|
6387 |
msgstr "%s muss eine Nummer sein."
|
6388 |
|
6389 |
-
#: includes/fields/class-fieldtypes-image.php:
|
6390 |
#, fuzzy
|
6391 |
msgctxt "date field"
|
6392 |
msgid "Caption for %s is required."
|
@@ -6397,17 +6431,17 @@ msgctxt "form-fields-api"
|
|
6397 |
msgid "Remove"
|
6398 |
msgstr "Entfernen"
|
6399 |
|
6400 |
-
#: includes/fields/class-form-field.php:
|
6401 |
msgctxt "form-fields-api"
|
6402 |
msgid "Invalid form field type"
|
6403 |
msgstr "Ungültiger Formularfeld Typ"
|
6404 |
|
6405 |
-
#: includes/fields/class-form-field.php:
|
6406 |
msgctxt "form-fields-api"
|
6407 |
msgid "Field label is required."
|
6408 |
msgstr "Feldbezeichnung ist Pflichtfeld."
|
6409 |
|
6410 |
-
#: includes/fields/class-form-field.php:
|
6411 |
msgctxt "form-fields-api"
|
6412 |
msgid ""
|
6413 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
@@ -6415,14 +6449,14 @@ msgid ""
|
|
6415 |
"delete this current field and create a NEW field of type %1$s instead."
|
6416 |
msgstr ""
|
6417 |
|
6418 |
-
#: includes/fields/class-form-field.php:
|
6419 |
msgctxt "form-fields-api"
|
6420 |
msgid ""
|
6421 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
6422 |
"existing listings will be deleted as well."
|
6423 |
msgstr ""
|
6424 |
|
6425 |
-
#: includes/fields/class-form-field.php:
|
6426 |
msgctxt "form-fields-api"
|
6427 |
msgid ""
|
6428 |
"There can only be one field with association \"%s\". Please select another "
|
@@ -6431,17 +6465,17 @@ msgstr ""
|
|
6431 |
"Es kann nur ein Feld mit \"%s\" verbunden werden. Bitte wähle eine andere "
|
6432 |
"Verbindung."
|
6433 |
|
6434 |
-
#: includes/fields/class-form-field.php:
|
6435 |
msgctxt "form-fields-api"
|
6436 |
msgid "\"%s\" is an invalid field type for this association."
|
6437 |
msgstr "\"%s\" ist ein ungültiger Feldtyp für diese Verbindung."
|
6438 |
|
6439 |
-
#: includes/fields/class-form-field.php:
|
6440 |
msgctxt "form-fields-api"
|
6441 |
msgid "Invalid field ID"
|
6442 |
msgstr "Ungültige Feld ID"
|
6443 |
|
6444 |
-
#: includes/fields/class-form-field.php:
|
6445 |
msgctxt "form-fields-api"
|
6446 |
msgid "An error occurred while trying to delete this field."
|
6447 |
msgstr "Während der Löschung des Feldes ist ein Fehler aufgetreten."
|
@@ -6471,6 +6505,12 @@ msgctxt "form-fields-api"
|
|
6471 |
msgid "Date Validator"
|
6472 |
msgstr "Datum Validierung"
|
6473 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6474 |
#: includes/fields/class-fieldtypes-image.php:121
|
6475 |
msgctxt "form fields"
|
6476 |
msgid "Field unavailable at the moment."
|
@@ -6519,55 +6559,66 @@ msgid ""
|
|
6519 |
"you sure you want to enable this?"
|
6520 |
msgstr ""
|
6521 |
|
6522 |
-
#: includes/form-fields.php:
|
6523 |
msgctxt "form-fields-api validation"
|
6524 |
msgid "Field"
|
6525 |
msgstr "Feld"
|
6526 |
|
6527 |
-
#: includes/form-fields.php:
|
6528 |
msgctxt "form-fields-api validation"
|
6529 |
msgid "%s is required."
|
6530 |
msgstr "%s ist ein Pflichtfeld."
|
6531 |
|
6532 |
-
#: includes/form-fields.php:
|
6533 |
msgctxt "form-fields-api validation"
|
6534 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
6535 |
msgstr ""
|
6536 |
"%s ist falsch formatiert. Gültiges URL Format eingeben. Benutze http://"
|
6537 |
|
6538 |
-
#: includes/form-fields.php:
|
6539 |
msgctxt "form-fields-api validation"
|
6540 |
msgid "%s is badly formatted. Valid Email format required."
|
6541 |
msgstr ""
|
6542 |
"%s ist falsch formatiert. Bitte geben Sie Ihre E-mailadresse richtig ein."
|
6543 |
|
6544 |
-
#: includes/form-fields.php:
|
6545 |
msgctxt "form-fields-api validation"
|
6546 |
msgid "%s must be a number. Decimal values are not allowed."
|
6547 |
msgstr "%s muss eine Nummer sein. Dezimalwerte sind nicht erlaubt."
|
6548 |
|
6549 |
-
#: includes/form-fields.php:
|
6550 |
msgctxt "form-fields-api validation"
|
6551 |
msgid "%s must be a number."
|
6552 |
msgstr "%s muss eine Nummer sein."
|
6553 |
|
6554 |
-
#: includes/form-fields.php:
|
6555 |
#, fuzzy
|
6556 |
msgctxt "form-fields-api validation"
|
6557 |
msgid "%1$s must be in the format %2$s."
|
6558 |
msgstr "%s muss im Format MM/DD/YYYY eingetragen werden."
|
6559 |
|
6560 |
-
#: includes/form-fields.php:
|
6561 |
msgctxt "form-fields-api validation"
|
6562 |
msgid "%s must be a valid date."
|
6563 |
msgstr "%s muss eine Nummer sein."
|
6564 |
|
6565 |
-
#: includes/form-fields.php:
|
|
|
|
|
|
|
|
|
|
|
6566 |
#, fuzzy
|
6567 |
msgctxt "form-fields-api validation"
|
6568 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
6569 |
msgstr "%s ist ungültig. Wert meistens einer von %s"
|
6570 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6571 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
6572 |
#, fuzzy
|
6573 |
msgctxt "authorize-net"
|
@@ -7342,17 +7393,17 @@ msgctxt "templates"
|
|
7342 |
msgid "View not available."
|
7343 |
msgstr "verfügbare Bilder:"
|
7344 |
|
7345 |
-
#: includes/views/submit_listing.php:
|
7346 |
msgctxt "templates"
|
7347 |
msgid "Please agree to the Terms and Conditions."
|
7348 |
msgstr "Bitte akzeptieren Sie die Allgemeinen Geschäftsbedingungen."
|
7349 |
|
7350 |
-
#: includes/views/submit_listing.php:
|
7351 |
msgctxt "templates"
|
7352 |
msgid "Terms and Conditions:"
|
7353 |
msgstr "AGBs:"
|
7354 |
|
7355 |
-
#: includes/views/submit_listing.php:
|
7356 |
msgctxt "templates"
|
7357 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7358 |
msgstr "Ich akzeptiere die <a>AGB</a>s"
|
@@ -8039,14 +8090,14 @@ msgctxt "preview"
|
|
8039 |
msgid "This is just a preview. The listing has not been published yet."
|
8040 |
msgstr "Dies ist nur eine Vorschau. Der Eintrag wurde bisher nicht publiziert."
|
8041 |
|
8042 |
-
#: includes/views/submit_listing.php:
|
8043 |
msgctxt "listing submit"
|
8044 |
msgid ""
|
8045 |
"Something went wrong. Please check the form for errors, correct them and "
|
8046 |
"submit again."
|
8047 |
msgstr ""
|
8048 |
|
8049 |
-
#: includes/views/submit_listing.php:
|
8050 |
msgctxt "listing submit"
|
8051 |
msgid ""
|
8052 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -8291,115 +8342,127 @@ msgctxt "admin sidebar"
|
|
8291 |
msgid "Elegant Business Theme"
|
8292 |
msgstr "Elegant Business Theme"
|
8293 |
|
8294 |
-
#: templates/admin/sidebar.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8295 |
msgctxt "admin sidebar"
|
8296 |
msgid "Like this plugin?"
|
8297 |
msgstr "Mögen Sie diese Erweiterung?"
|
8298 |
|
8299 |
-
#: templates/admin/sidebar.tpl.php:
|
8300 |
msgctxt "admin sidebar"
|
8301 |
msgid "Why not do any or all of the following:"
|
8302 |
msgstr "Wieso nicht eine oder alle der folgenden Dinge tun:"
|
8303 |
|
8304 |
-
#: templates/admin/sidebar.tpl.php:
|
8305 |
msgctxt "admin sidebar"
|
8306 |
msgid "Give it a good rating on WordPress.org."
|
8307 |
msgstr "Gebe bitte eine gute Bewertung ab auf Wordpress.org"
|
8308 |
|
8309 |
-
#: templates/admin/sidebar.tpl.php:
|
8310 |
msgctxt "admin sidebar"
|
8311 |
msgid "Let other people know that it works with your WordPress setup."
|
8312 |
msgstr ""
|
8313 |
"Lass andere Leute wissen, dass die Installation bei dir funktioniert hat."
|
8314 |
|
8315 |
-
#: templates/admin/sidebar.tpl.php:
|
8316 |
msgctxt "admin sidebar"
|
8317 |
msgid "Buy a Premium Module"
|
8318 |
msgstr "Kaufe ein Premium Modul"
|
8319 |
|
8320 |
-
#: templates/admin/sidebar.tpl.php:
|
8321 |
msgctxt "admin sidebar"
|
8322 |
msgid "Get a Premium Module"
|
8323 |
msgstr "Bekomme ein Premium Modul"
|
8324 |
|
8325 |
-
#: templates/admin/sidebar.tpl.php:
|
8326 |
msgctxt "admin sidebar"
|
8327 |
msgid "best deal"
|
8328 |
msgstr "Bester Deal"
|
8329 |
|
8330 |
-
#: templates/admin/sidebar.tpl.php:
|
8331 |
msgctxt "admin sidebar"
|
8332 |
msgid "Combo Pack"
|
8333 |
msgstr "Combo Pack"
|
8334 |
|
8335 |
-
#: templates/admin/sidebar.tpl.php:
|
8336 |
msgctxt "admin sidebar"
|
8337 |
msgid "(All Modules)"
|
8338 |
msgstr "Installierte Module"
|
8339 |
|
8340 |
-
#: templates/admin/sidebar.tpl.php:
|
8341 |
msgctxt "admin sidebar"
|
8342 |
msgid "new"
|
8343 |
msgstr "neu"
|
8344 |
|
8345 |
-
#: templates/admin/sidebar.tpl.php:
|
8346 |
msgctxt "admin sidebar"
|
8347 |
msgid "Get a Directory Theme"
|
8348 |
msgstr "Verzeichnis Theme holen"
|
8349 |
|
8350 |
-
#: templates/admin/sidebar.tpl.php:
|
8351 |
msgctxt "admin sidebar"
|
8352 |
msgid "Theme Pack"
|
8353 |
msgstr "Theme Pack"
|
8354 |
|
8355 |
-
#: templates/admin/sidebar.tpl.php:
|
8356 |
msgctxt "admin sidebar"
|
8357 |
msgid "(All Themes)"
|
8358 |
msgstr "verfügbare Bilder:"
|
8359 |
|
8360 |
-
#: templates/admin/sidebar.tpl.php:
|
8361 |
msgctxt "admin sidebar"
|
8362 |
msgid "Found a bug? Need support?"
|
8363 |
msgstr "Fehler gefunden? Brauchst du Unterstützung?"
|
8364 |
|
8365 |
-
#: templates/admin/sidebar.tpl.php:
|
8366 |
msgctxt "admin sidebar"
|
8367 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
8368 |
msgstr ""
|
8369 |
"Wenn du einen Fehler gefunden hast oder Hilfe brauchst <a>schaue ins Forum!</"
|
8370 |
"a>"
|
8371 |
|
8372 |
-
#: templates/admin/sidebar.tpl.php:
|
8373 |
msgctxt "admin sidebar"
|
8374 |
msgid "Full plugin documentation"
|
8375 |
msgstr "Vollständige Moduldokumentation"
|
8376 |
|
8377 |
-
#: templates/admin/sidebar.tpl.php:
|
8378 |
msgctxt "admin sidebar"
|
8379 |
msgid "Quick Start Guide"
|
8380 |
msgstr "Schnellstart Anleitung"
|
8381 |
|
8382 |
-
#: templates/admin/sidebar.tpl.php:
|
8383 |
msgctxt "admin sidebar"
|
8384 |
msgid "Video Tutorials"
|
8385 |
msgstr "Video Anleitungen"
|
8386 |
|
8387 |
-
#: templates/admin/sidebar.tpl.php:
|
8388 |
msgctxt "admin sidebar"
|
8389 |
msgid "Installed Modules"
|
8390 |
msgstr "Installierte Module"
|
8391 |
|
8392 |
-
#: templates/admin/sidebar.tpl.php:
|
8393 |
msgctxt "admin sidebar"
|
8394 |
msgid "Installed"
|
8395 |
msgstr "Installiert"
|
8396 |
|
8397 |
-
#: templates/admin/sidebar.tpl.php:
|
8398 |
msgctxt "admin sidebar"
|
8399 |
msgid "Not Installed"
|
8400 |
msgstr "Nicht installiert "
|
8401 |
|
8402 |
-
#: templates/admin/sidebar.tpl.php:
|
8403 |
msgctxt "admin sidebar"
|
8404 |
msgid "Enhanced Categories Module"
|
8405 |
msgstr "Enhanced Categories Modul"
|
@@ -11305,11 +11368,6 @@ msgstr "Adresse"
|
|
11305 |
#~ msgid "Delete theme"
|
11306 |
#~ msgstr "Preis löschen"
|
11307 |
|
11308 |
-
#, fuzzy
|
11309 |
-
#~ msgctxt "themes admin"
|
11310 |
-
#~ msgid "Delete Theme"
|
11311 |
-
#~ msgstr "Preis löschen"
|
11312 |
-
|
11313 |
#~ msgctxt "admin settings"
|
11314 |
#~ msgid "Display search form when displaying search results?"
|
11315 |
#~ msgstr "Suchform anzeigen wenn die Suchergebnisse angezeigt werden?"
|
5 |
"Project-Id-Version: Business Directory Plugin 3.5.4\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2018-06-27 21:14:25+00:00\n"
|
9 |
"PO-Revision-Date: 2018-03-02 08:40-0500\n"
|
10 |
"Last-Translator: Axel J. Metayer <axel@kfz.net>\n"
|
11 |
"Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
|
2720 |
msgid "Field list of options is required."
|
2721 |
msgstr "Feldliste von Optionen wird benötigt."
|
2722 |
|
2723 |
+
#: includes/fields/class-fieldtypes-image.php:55
|
2724 |
#, fuzzy
|
2725 |
msgctxt "form-fields admin"
|
2726 |
msgid "Display caption?"
|
2727 |
msgstr "Feld Anzeigeoptionen"
|
2728 |
|
2729 |
+
#: includes/fields/class-fieldtypes-image.php:58
|
2730 |
#, fuzzy
|
2731 |
msgctxt "form-fields admin"
|
2732 |
msgid "Field Caption required?"
|
2846 |
msgid "Use rel=\"nofollow\" when displaying the link?"
|
2847 |
msgstr "Benutze rel=\"nofollow\" wenn der link angezeigt wird?"
|
2848 |
|
2849 |
+
#: templates/admin/form-fields-addoredit.tpl.php:8
|
2850 |
msgctxt "form-fields admin"
|
2851 |
msgid "Add Form Field"
|
2852 |
msgstr "Formularfeld hinzufügen"
|
2853 |
|
2854 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
2855 |
msgctxt "form-fields admin"
|
2856 |
msgid "Field Association"
|
2857 |
msgstr "Feldverbindung"
|
2858 |
|
2859 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
2860 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
2861 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
2862 |
msgctxt "form-fields admin"
|
2863 |
msgid "required"
|
2864 |
msgstr "Pflichtfeld"
|
2865 |
|
2866 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
2867 |
msgctxt "form-fields admin"
|
2868 |
msgid "Field Type"
|
2869 |
msgstr "Feldtyp"
|
2870 |
|
2871 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
2872 |
msgctxt "form-fields admin"
|
2873 |
msgid "Field Label"
|
2874 |
msgstr "Feldbezeichnung"
|
2875 |
|
2876 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
2877 |
msgctxt "form-fields admin"
|
2878 |
msgid "Field description"
|
2879 |
msgstr "Feldbeschreibung"
|
2880 |
|
2881 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
2882 |
msgctxt "form-fields admin"
|
2883 |
msgid "optional"
|
2884 |
msgstr "Optional"
|
2885 |
|
2886 |
+
#: templates/admin/form-fields-addoredit.tpl.php:97
|
2887 |
msgctxt "form-fields admin"
|
2888 |
msgid "Field-specific settings"
|
2889 |
msgstr "Feld spezifische Einstellungen"
|
2890 |
|
2891 |
+
#: templates/admin/form-fields-addoredit.tpl.php:106
|
2892 |
msgctxt "form-fields admin"
|
2893 |
msgid "Field validation options"
|
2894 |
msgstr "Optionen Feldvalidierung"
|
2895 |
|
2896 |
+
#: templates/admin/form-fields-addoredit.tpl.php:110
|
2897 |
msgctxt "form-fields admin"
|
2898 |
msgid "Field Validator"
|
2899 |
msgstr "Feldvalidator"
|
2900 |
|
2901 |
+
#: templates/admin/form-fields-addoredit.tpl.php:114
|
2902 |
msgctxt "form-fields admin"
|
2903 |
msgid "No validation"
|
2904 |
msgstr "Keine Validierung"
|
2905 |
|
2906 |
+
#: templates/admin/form-fields-addoredit.tpl.php:126
|
2907 |
+
#, fuzzy
|
2908 |
+
msgctxt "form-fields admin"
|
2909 |
+
msgid "Number of words"
|
2910 |
+
msgstr "Anzahl der Bilder:"
|
2911 |
+
|
2912 |
+
#: templates/admin/form-fields-addoredit.tpl.php:136
|
2913 |
msgctxt "form-fields admin"
|
2914 |
msgid "Is field required?"
|
2915 |
msgstr "Ist das Feld ein Pflichtfeld?"
|
2916 |
|
2917 |
+
#: templates/admin/form-fields-addoredit.tpl.php:142
|
2918 |
msgctxt "form-fields admin"
|
2919 |
msgid "This field is required."
|
2920 |
msgstr "Dieses Feld ist ein Pflichtfeld."
|
2921 |
|
2922 |
+
#: templates/admin/form-fields-addoredit.tpl.php:150
|
2923 |
msgctxt "form-fields admin"
|
2924 |
msgid "Field display options"
|
2925 |
msgstr "Feld Anzeigeoptionen"
|
2926 |
|
2927 |
+
#: templates/admin/form-fields-addoredit.tpl.php:154
|
2928 |
+
msgctxt "form-fields admin"
|
2929 |
+
msgid "Field Category Policy:"
|
2930 |
+
msgstr ""
|
2931 |
+
|
2932 |
+
#: templates/admin/form-fields-addoredit.tpl.php:159
|
2933 |
+
#, fuzzy
|
2934 |
+
msgctxt "form-fields admin"
|
2935 |
+
msgid "Field applies to all categories"
|
2936 |
+
msgstr "Erneuere alle Einträge in abgelaufenen Kategorien"
|
2937 |
+
|
2938 |
+
#: templates/admin/form-fields-addoredit.tpl.php:160
|
2939 |
+
#, fuzzy
|
2940 |
+
msgctxt "form-fields admin"
|
2941 |
+
msgid "Field applies to only certain categories"
|
2942 |
+
msgstr "Erneuere alle Einträge in abgelaufenen Kategorien"
|
2943 |
+
|
2944 |
+
#: templates/admin/form-fields-addoredit.tpl.php:164
|
2945 |
+
#, fuzzy
|
2946 |
+
msgctxt "form-fields admin"
|
2947 |
+
msgid "Limit field to the following categories:"
|
2948 |
+
msgstr "Du kannst folgende Platzhalter verwenden:"
|
2949 |
+
|
2950 |
+
#: templates/admin/form-fields-addoredit.tpl.php:188
|
2951 |
+
msgctxt "form-fields admin"
|
2952 |
+
msgid "Click to add categories to the selection."
|
2953 |
+
msgstr ""
|
2954 |
+
|
2955 |
+
#: templates/admin/form-fields-addoredit.tpl.php:201
|
2956 |
msgctxt "form-fields admin"
|
2957 |
msgid "Show this field to admin users only?"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
+
#: templates/admin/form-fields-addoredit.tpl.php:207
|
2961 |
#, fuzzy
|
2962 |
msgctxt "form-fields admin"
|
2963 |
msgid "Display this field to admin users only in the edit listing view."
|
2964 |
msgstr "Diesen Wert in der Detailansicht anzeigen."
|
2965 |
|
2966 |
+
#: templates/admin/form-fields-addoredit.tpl.php:213
|
2967 |
msgctxt "form-fields admin"
|
2968 |
msgid "Show this value in excerpt view?"
|
2969 |
msgstr "In der Vorschau anzeigen?"
|
2970 |
|
2971 |
+
#: templates/admin/form-fields-addoredit.tpl.php:219
|
2972 |
msgctxt "form-fields admin"
|
2973 |
msgid "Display this value in post excerpt view."
|
2974 |
msgstr "Der Wert wird in der Vorschau des Eintrags angezeigt (Exzerpt)."
|
2975 |
|
2976 |
+
#: templates/admin/form-fields-addoredit.tpl.php:225
|
2977 |
msgctxt "form-fields admin"
|
2978 |
msgid "Show this value in listing view?"
|
2979 |
msgstr "In Detailansicht anzeigen?"
|
2980 |
|
2981 |
+
#: templates/admin/form-fields-addoredit.tpl.php:231
|
2982 |
msgctxt "form-fields admin"
|
2983 |
msgid "Display this value in the listing view."
|
2984 |
msgstr "Diesen Wert in der Detailansicht anzeigen."
|
2985 |
|
2986 |
+
#: templates/admin/form-fields-addoredit.tpl.php:237
|
2987 |
msgctxt "form-fields admin"
|
2988 |
msgid "Include this field in the search form?"
|
2989 |
msgstr "In Suchform integrieren?"
|
2990 |
|
2991 |
+
#: templates/admin/form-fields-addoredit.tpl.php:243
|
2992 |
msgctxt "form-fields admin"
|
2993 |
msgid "Include this field in the search form."
|
2994 |
msgstr "Zeige das Feld im Suchformular."
|
2995 |
|
2996 |
+
#: templates/admin/form-fields-addoredit.tpl.php:249
|
2997 |
#, fuzzy
|
2998 |
msgctxt "form-fields admin"
|
2999 |
msgid "Is this field required for searching?"
|
3000 |
msgstr "Ist das Feld ein Pflichtfeld?"
|
3001 |
|
3002 |
+
#: templates/admin/form-fields-addoredit.tpl.php:255
|
3003 |
msgctxt "form-fields admin"
|
3004 |
msgid ""
|
3005 |
"Make this fields required during searches on the Advanced Search screen."
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: templates/admin/form-fields-addoredit.tpl.php:261
|
3009 |
msgctxt "form-fields admin"
|
3010 |
msgid "Hide this field's label?"
|
3011 |
msgstr "Feldbezeichnung verbergen?"
|
3012 |
|
3013 |
+
#: templates/admin/form-fields-addoredit.tpl.php:267
|
3014 |
msgctxt "form-fields admin"
|
3015 |
msgid "Hide this field's label when displaying it."
|
3016 |
msgstr ""
|
3017 |
"Die Feldbezeichnung wird dann nicht mehr angezeigt (nur der Inhalt an sich)."
|
3018 |
|
3019 |
+
#: templates/admin/form-fields-addoredit.tpl.php:274
|
3020 |
msgctxt "form-fields admin"
|
3021 |
msgid "Update Field"
|
3022 |
msgstr "Feld aktualisieren"
|
3023 |
|
3024 |
+
#: templates/admin/form-fields-addoredit.tpl.php:276
|
3025 |
msgctxt "form-fields admin"
|
3026 |
msgid "Add Field"
|
3027 |
msgstr "Feld erstellen"
|
6138 |
msgid "Please choose a valid fee plan for your category selection."
|
6139 |
msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
|
6140 |
|
6141 |
+
#: includes/views/submit_listing.php:743
|
6142 |
#, fuzzy
|
6143 |
msgctxt "submit listing"
|
6144 |
msgid "Please enter your desired username."
|
6145 |
msgstr "Bitte geben Sie einen Namen ein."
|
6146 |
|
6147 |
+
#: includes/views/submit_listing.php:748
|
6148 |
#, fuzzy
|
6149 |
msgctxt "submit listing"
|
6150 |
msgid "Please enter the e-mail for your new account."
|
6151 |
msgstr "Bitte geben Sie einen Namen ein."
|
6152 |
|
6153 |
+
#: includes/views/submit_listing.php:753
|
6154 |
msgctxt "submit listing"
|
6155 |
msgid "Please enter the password for your new account."
|
6156 |
msgstr ""
|
6157 |
|
6158 |
+
#: includes/views/submit_listing.php:763
|
6159 |
msgctxt "submit listing"
|
6160 |
msgid "The username you chose is already in use. Please use a different one."
|
6161 |
msgstr ""
|
6162 |
|
6163 |
+
#: includes/views/submit_listing.php:768
|
6164 |
msgctxt "submit listing"
|
6165 |
msgid "The e-mail address you chose for your account is already in use."
|
6166 |
msgstr ""
|
6167 |
|
6168 |
+
#: includes/views/submit_listing.php:783
|
6169 |
msgctxt "submit listing"
|
6170 |
msgid "Create a user account on this site"
|
6171 |
msgstr ""
|
6172 |
|
6173 |
+
#: includes/views/submit_listing.php:790
|
6174 |
msgctxt "submit listing"
|
6175 |
msgid ""
|
6176 |
"You need to create an account on the site. Please fill out the form below."
|
6177 |
msgstr ""
|
6178 |
|
6179 |
+
#: includes/views/submit_listing.php:796
|
6180 |
#, fuzzy
|
6181 |
msgctxt "submit listing"
|
6182 |
msgid "Username:"
|
6183 |
msgstr "Benutzer"
|
6184 |
|
6185 |
+
#: includes/views/submit_listing.php:805
|
6186 |
#, fuzzy
|
6187 |
msgctxt "submit listing"
|
6188 |
msgid "Email:"
|
6189 |
msgstr "E-mail: %s"
|
6190 |
|
6191 |
+
#: includes/views/submit_listing.php:814
|
6192 |
msgctxt "submit listing"
|
6193 |
msgid "Password:"
|
6194 |
msgstr ""
|
6222 |
msgid "Save Changes"
|
6223 |
msgstr "Änderungen sichern"
|
6224 |
|
6225 |
+
#: includes/class-recaptcha.php:109 includes/class-recaptcha.php:150
|
6226 |
msgctxt "recaptcha"
|
6227 |
msgid "The reCAPTCHA wasn't entered correctly."
|
6228 |
msgstr "Das reCAPTCHA wurde nicht korrekt eingegeben."
|
6229 |
|
6230 |
+
#: includes/class-recaptcha.php:211
|
6231 |
#, fuzzy
|
6232 |
msgctxt "recaptcha"
|
6233 |
msgid "reCAPTCHA"
|
6330 |
msgid "Textarea"
|
6331 |
msgstr "Textbereich"
|
6332 |
|
6333 |
+
#: includes/fields/class-fieldtypes-textfield.php:13
|
6334 |
msgctxt "form-fields api"
|
6335 |
msgid "Textfield"
|
6336 |
msgstr "Textfeld"
|
6337 |
|
6338 |
+
#: includes/fields/class-fieldtypes-textfield.php:50
|
6339 |
msgctxt "form-fields api"
|
6340 |
msgid "Format 01/31/1969"
|
6341 |
msgstr "Format 01/31/1969"
|
6360 |
msgid "Link Text (optional):"
|
6361 |
msgstr "Link Text (optional):"
|
6362 |
|
6363 |
+
#: includes/fields/class-form-field.php:707
|
6364 |
msgctxt "form-fields api"
|
6365 |
msgid ""
|
6366 |
"This form field can't be deleted because it is required for the plugin to "
|
6420 |
msgid "%s must be a valid date."
|
6421 |
msgstr "%s muss eine Nummer sein."
|
6422 |
|
6423 |
+
#: includes/fields/class-fieldtypes-image.php:41
|
6424 |
#, fuzzy
|
6425 |
msgctxt "date field"
|
6426 |
msgid "Caption for %s is required."
|
6431 |
msgid "Remove"
|
6432 |
msgstr "Entfernen"
|
6433 |
|
6434 |
+
#: includes/fields/class-form-field.php:66
|
6435 |
msgctxt "form-fields-api"
|
6436 |
msgid "Invalid form field type"
|
6437 |
msgstr "Ungültiger Formularfeld Typ"
|
6438 |
|
6439 |
+
#: includes/fields/class-form-field.php:585
|
6440 |
msgctxt "form-fields-api"
|
6441 |
msgid "Field label is required."
|
6442 |
msgstr "Feldbezeichnung ist Pflichtfeld."
|
6443 |
|
6444 |
+
#: includes/fields/class-form-field.php:596
|
6445 |
msgctxt "form-fields-api"
|
6446 |
msgid ""
|
6447 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
6449 |
"delete this current field and create a NEW field of type %1$s instead."
|
6450 |
msgstr ""
|
6451 |
|
6452 |
+
#: includes/fields/class-form-field.php:599
|
6453 |
msgctxt "form-fields-api"
|
6454 |
msgid ""
|
6455 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
6456 |
"existing listings will be deleted as well."
|
6457 |
msgstr ""
|
6458 |
|
6459 |
+
#: includes/fields/class-form-field.php:633
|
6460 |
msgctxt "form-fields-api"
|
6461 |
msgid ""
|
6462 |
"There can only be one field with association \"%s\". Please select another "
|
6465 |
"Es kann nur ein Feld mit \"%s\" verbunden werden. Bitte wähle eine andere "
|
6466 |
"Verbindung."
|
6467 |
|
6468 |
+
#: includes/fields/class-form-field.php:643
|
6469 |
msgctxt "form-fields-api"
|
6470 |
msgid "\"%s\" is an invalid field type for this association."
|
6471 |
msgstr "\"%s\" ist ein ungültiger Feldtyp für diese Verbindung."
|
6472 |
|
6473 |
+
#: includes/fields/class-form-field.php:697
|
6474 |
msgctxt "form-fields-api"
|
6475 |
msgid "Invalid field ID"
|
6476 |
msgstr "Ungültige Feld ID"
|
6477 |
|
6478 |
+
#: includes/fields/class-form-field.php:720
|
6479 |
msgctxt "form-fields-api"
|
6480 |
msgid "An error occurred while trying to delete this field."
|
6481 |
msgstr "Während der Löschung des Feldes ist ein Fehler aufgetreten."
|
6505 |
msgid "Date Validator"
|
6506 |
msgstr "Datum Validierung"
|
6507 |
|
6508 |
+
#: includes/form-fields.php:574
|
6509 |
+
#, fuzzy
|
6510 |
+
msgctxt "form-fields-api"
|
6511 |
+
msgid "Word Count Validator"
|
6512 |
+
msgstr "Ganze Nummern Validierung"
|
6513 |
+
|
6514 |
#: includes/fields/class-fieldtypes-image.php:121
|
6515 |
msgctxt "form fields"
|
6516 |
msgid "Field unavailable at the moment."
|
6559 |
"you sure you want to enable this?"
|
6560 |
msgstr ""
|
6561 |
|
6562 |
+
#: includes/form-fields.php:581
|
6563 |
msgctxt "form-fields-api validation"
|
6564 |
msgid "Field"
|
6565 |
msgstr "Feld"
|
6566 |
|
6567 |
+
#: includes/form-fields.php:602 includes/form-fields.php:607
|
6568 |
msgctxt "form-fields-api validation"
|
6569 |
msgid "%s is required."
|
6570 |
msgstr "%s ist ein Pflichtfeld."
|
6571 |
|
6572 |
+
#: includes/form-fields.php:619 includes/form-fields.php:626
|
6573 |
msgctxt "form-fields-api validation"
|
6574 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
6575 |
msgstr ""
|
6576 |
"%s ist falsch formatiert. Gültiges URL Format eingeben. Benutze http://"
|
6577 |
|
6578 |
+
#: includes/form-fields.php:641
|
6579 |
msgctxt "form-fields-api validation"
|
6580 |
msgid "%s is badly formatted. Valid Email format required."
|
6581 |
msgstr ""
|
6582 |
"%s ist falsch formatiert. Bitte geben Sie Ihre E-mailadresse richtig ein."
|
6583 |
|
6584 |
+
#: includes/form-fields.php:648
|
6585 |
msgctxt "form-fields-api validation"
|
6586 |
msgid "%s must be a number. Decimal values are not allowed."
|
6587 |
msgstr "%s muss eine Nummer sein. Dezimalwerte sind nicht erlaubt."
|
6588 |
|
6589 |
+
#: includes/form-fields.php:655
|
6590 |
msgctxt "form-fields-api validation"
|
6591 |
msgid "%s must be a number."
|
6592 |
msgstr "%s muss eine Nummer sein."
|
6593 |
|
6594 |
+
#: includes/form-fields.php:674
|
6595 |
#, fuzzy
|
6596 |
msgctxt "form-fields-api validation"
|
6597 |
msgid "%1$s must be in the format %2$s."
|
6598 |
msgstr "%s muss im Format MM/DD/YYYY eingetragen werden."
|
6599 |
|
6600 |
+
#: includes/form-fields.php:712
|
6601 |
msgctxt "form-fields-api validation"
|
6602 |
msgid "%s must be a valid date."
|
6603 |
msgstr "%s muss eine Nummer sein."
|
6604 |
|
6605 |
+
#: includes/form-fields.php:735
|
6606 |
+
msgctxt "form-fields-api validation"
|
6607 |
+
msgid "%s must have less than %d words."
|
6608 |
+
msgstr ""
|
6609 |
+
|
6610 |
+
#: includes/form-fields.php:754
|
6611 |
#, fuzzy
|
6612 |
msgctxt "form-fields-api validation"
|
6613 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
6614 |
msgstr "%s ist ungültig. Wert meistens einer von %s"
|
6615 |
|
6616 |
+
#: includes/form-fields.php:719
|
6617 |
+
#, fuzzy
|
6618 |
+
msgctxt "image field"
|
6619 |
+
msgid "Caption for %s is required."
|
6620 |
+
msgstr "%s ist ein Pflichtfeld."
|
6621 |
+
|
6622 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
6623 |
#, fuzzy
|
6624 |
msgctxt "authorize-net"
|
7393 |
msgid "View not available."
|
7394 |
msgstr "verfügbare Bilder:"
|
7395 |
|
7396 |
+
#: includes/views/submit_listing.php:852
|
7397 |
msgctxt "templates"
|
7398 |
msgid "Please agree to the Terms and Conditions."
|
7399 |
msgstr "Bitte akzeptieren Sie die Allgemeinen Geschäftsbedingungen."
|
7400 |
|
7401 |
+
#: includes/views/submit_listing.php:860
|
7402 |
msgctxt "templates"
|
7403 |
msgid "Terms and Conditions:"
|
7404 |
msgstr "AGBs:"
|
7405 |
|
7406 |
+
#: includes/views/submit_listing.php:869
|
7407 |
msgctxt "templates"
|
7408 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7409 |
msgstr "Ich akzeptiere die <a>AGB</a>s"
|
8090 |
msgid "This is just a preview. The listing has not been published yet."
|
8091 |
msgstr "Dies ist nur eine Vorschau. Der Eintrag wurde bisher nicht publiziert."
|
8092 |
|
8093 |
+
#: includes/views/submit_listing.php:613
|
8094 |
msgctxt "listing submit"
|
8095 |
msgid ""
|
8096 |
"Something went wrong. Please check the form for errors, correct them and "
|
8097 |
"submit again."
|
8098 |
msgstr ""
|
8099 |
|
8100 |
+
#: includes/views/submit_listing.php:695
|
8101 |
msgctxt "listing submit"
|
8102 |
msgid ""
|
8103 |
"Image upload is required, please provide at least one image and submit again."
|
8342 |
msgid "Elegant Business Theme"
|
8343 |
msgstr "Elegant Business Theme"
|
8344 |
|
8345 |
+
#: templates/admin/sidebar.tpl.php:23
|
8346 |
+
#, fuzzy
|
8347 |
+
msgctxt "admin sidebar"
|
8348 |
+
msgid "Modern Business Theme"
|
8349 |
+
msgstr "Elegant Business Theme"
|
8350 |
+
|
8351 |
+
#: templates/admin/sidebar.tpl.php:24
|
8352 |
+
#, fuzzy
|
8353 |
+
msgctxt "admin sidebar"
|
8354 |
+
msgid "Modern Filtered Theme"
|
8355 |
+
msgstr "Preis löschen"
|
8356 |
+
|
8357 |
+
#: templates/admin/sidebar.tpl.php:31
|
8358 |
msgctxt "admin sidebar"
|
8359 |
msgid "Like this plugin?"
|
8360 |
msgstr "Mögen Sie diese Erweiterung?"
|
8361 |
|
8362 |
+
#: templates/admin/sidebar.tpl.php:33
|
8363 |
msgctxt "admin sidebar"
|
8364 |
msgid "Why not do any or all of the following:"
|
8365 |
msgstr "Wieso nicht eine oder alle der folgenden Dinge tun:"
|
8366 |
|
8367 |
+
#: templates/admin/sidebar.tpl.php:35
|
8368 |
msgctxt "admin sidebar"
|
8369 |
msgid "Give it a good rating on WordPress.org."
|
8370 |
msgstr "Gebe bitte eine gute Bewertung ab auf Wordpress.org"
|
8371 |
|
8372 |
+
#: templates/admin/sidebar.tpl.php:36
|
8373 |
msgctxt "admin sidebar"
|
8374 |
msgid "Let other people know that it works with your WordPress setup."
|
8375 |
msgstr ""
|
8376 |
"Lass andere Leute wissen, dass die Installation bei dir funktioniert hat."
|
8377 |
|
8378 |
+
#: templates/admin/sidebar.tpl.php:37
|
8379 |
msgctxt "admin sidebar"
|
8380 |
msgid "Buy a Premium Module"
|
8381 |
msgstr "Kaufe ein Premium Modul"
|
8382 |
|
8383 |
+
#: templates/admin/sidebar.tpl.php:44
|
8384 |
msgctxt "admin sidebar"
|
8385 |
msgid "Get a Premium Module"
|
8386 |
msgstr "Bekomme ein Premium Modul"
|
8387 |
|
8388 |
+
#: templates/admin/sidebar.tpl.php:47 templates/admin/sidebar.tpl.php:63
|
8389 |
msgctxt "admin sidebar"
|
8390 |
msgid "best deal"
|
8391 |
msgstr "Bester Deal"
|
8392 |
|
8393 |
+
#: templates/admin/sidebar.tpl.php:47
|
8394 |
msgctxt "admin sidebar"
|
8395 |
msgid "Combo Pack"
|
8396 |
msgstr "Combo Pack"
|
8397 |
|
8398 |
+
#: templates/admin/sidebar.tpl.php:47
|
8399 |
msgctxt "admin sidebar"
|
8400 |
msgid "(All Modules)"
|
8401 |
msgstr "Installierte Module"
|
8402 |
|
8403 |
+
#: templates/admin/sidebar.tpl.php:50 templates/admin/sidebar.tpl.php:66
|
8404 |
msgctxt "admin sidebar"
|
8405 |
msgid "new"
|
8406 |
msgstr "neu"
|
8407 |
|
8408 |
+
#: templates/admin/sidebar.tpl.php:60
|
8409 |
msgctxt "admin sidebar"
|
8410 |
msgid "Get a Directory Theme"
|
8411 |
msgstr "Verzeichnis Theme holen"
|
8412 |
|
8413 |
+
#: templates/admin/sidebar.tpl.php:63
|
8414 |
msgctxt "admin sidebar"
|
8415 |
msgid "Theme Pack"
|
8416 |
msgstr "Theme Pack"
|
8417 |
|
8418 |
+
#: templates/admin/sidebar.tpl.php:63
|
8419 |
msgctxt "admin sidebar"
|
8420 |
msgid "(All Themes)"
|
8421 |
msgstr "verfügbare Bilder:"
|
8422 |
|
8423 |
+
#: templates/admin/sidebar.tpl.php:76
|
8424 |
msgctxt "admin sidebar"
|
8425 |
msgid "Found a bug? Need support?"
|
8426 |
msgstr "Fehler gefunden? Brauchst du Unterstützung?"
|
8427 |
|
8428 |
+
#: templates/admin/sidebar.tpl.php:81
|
8429 |
msgctxt "admin sidebar"
|
8430 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
8431 |
msgstr ""
|
8432 |
"Wenn du einen Fehler gefunden hast oder Hilfe brauchst <a>schaue ins Forum!</"
|
8433 |
"a>"
|
8434 |
|
8435 |
+
#: templates/admin/sidebar.tpl.php:84
|
8436 |
msgctxt "admin sidebar"
|
8437 |
msgid "Full plugin documentation"
|
8438 |
msgstr "Vollständige Moduldokumentation"
|
8439 |
|
8440 |
+
#: templates/admin/sidebar.tpl.php:85
|
8441 |
msgctxt "admin sidebar"
|
8442 |
msgid "Quick Start Guide"
|
8443 |
msgstr "Schnellstart Anleitung"
|
8444 |
|
8445 |
+
#: templates/admin/sidebar.tpl.php:86
|
8446 |
msgctxt "admin sidebar"
|
8447 |
msgid "Video Tutorials"
|
8448 |
msgstr "Video Anleitungen"
|
8449 |
|
8450 |
+
#: templates/admin/sidebar.tpl.php:94
|
8451 |
msgctxt "admin sidebar"
|
8452 |
msgid "Installed Modules"
|
8453 |
msgstr "Installierte Module"
|
8454 |
|
8455 |
+
#: templates/admin/sidebar.tpl.php:105 templates/admin/sidebar.tpl.php:114
|
8456 |
msgctxt "admin sidebar"
|
8457 |
msgid "Installed"
|
8458 |
msgstr "Installiert"
|
8459 |
|
8460 |
+
#: templates/admin/sidebar.tpl.php:107 templates/admin/sidebar.tpl.php:114
|
8461 |
msgctxt "admin sidebar"
|
8462 |
msgid "Not Installed"
|
8463 |
msgstr "Nicht installiert "
|
8464 |
|
8465 |
+
#: templates/admin/sidebar.tpl.php:113
|
8466 |
msgctxt "admin sidebar"
|
8467 |
msgid "Enhanced Categories Module"
|
8468 |
msgstr "Enhanced Categories Modul"
|
11368 |
#~ msgid "Delete theme"
|
11369 |
#~ msgstr "Preis löschen"
|
11370 |
|
|
|
|
|
|
|
|
|
|
|
11371 |
#~ msgctxt "admin settings"
|
11372 |
#~ msgid "Display search form when displaying search results?"
|
11373 |
#~ msgstr "Suchform anzeigen wenn die Suchergebnisse angezeigt werden?"
|
languages/WPBDM-en_US.mo
CHANGED
Binary file
|
languages/WPBDM-en_US.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin 3.6\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2018-06-
|
9 |
"PO-Revision-Date: 2017-01-16 17:47-0500\n"
|
10 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
@@ -2464,12 +2464,12 @@ msgctxt "form-fields admin"
|
|
2464 |
msgid "Field list of options is required."
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#: includes/fields/class-fieldtypes-image.php:
|
2468 |
msgctxt "form-fields admin"
|
2469 |
msgid "Display caption?"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
-
#: includes/fields/class-fieldtypes-image.php:
|
2473 |
msgctxt "form-fields admin"
|
2474 |
msgid "Field Caption required?"
|
2475 |
msgstr ""
|
@@ -2586,145 +2586,175 @@ msgctxt "form-fields admin"
|
|
2586 |
msgid "Use rel=\"nofollow\" when displaying the link?"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2590 |
msgctxt "form-fields admin"
|
2591 |
msgid "Add Form Field"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2595 |
msgctxt "form-fields admin"
|
2596 |
msgid "Field Association"
|
2597 |
msgstr ""
|
2598 |
|
2599 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2600 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2601 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2602 |
msgctxt "form-fields admin"
|
2603 |
msgid "required"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2607 |
msgctxt "form-fields admin"
|
2608 |
msgid "Field Type"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2612 |
msgctxt "form-fields admin"
|
2613 |
msgid "Field Label"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2617 |
msgctxt "form-fields admin"
|
2618 |
msgid "Field description"
|
2619 |
msgstr ""
|
2620 |
|
2621 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2622 |
msgctxt "form-fields admin"
|
2623 |
msgid "optional"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2627 |
msgctxt "form-fields admin"
|
2628 |
msgid "Field-specific settings"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2632 |
msgctxt "form-fields admin"
|
2633 |
msgid "Field validation options"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2637 |
msgctxt "form-fields admin"
|
2638 |
msgid "Field Validator"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2642 |
msgctxt "form-fields admin"
|
2643 |
msgid "No validation"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
2647 |
msgctxt "form-fields admin"
|
2648 |
msgid "Is field required?"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2652 |
msgctxt "form-fields admin"
|
2653 |
msgid "This field is required."
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2657 |
msgctxt "form-fields admin"
|
2658 |
msgid "Field display options"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2662 |
msgctxt "form-fields admin"
|
2663 |
msgid "Show this field to admin users only?"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2667 |
msgctxt "form-fields admin"
|
2668 |
msgid "Display this field to admin users only in the edit listing view."
|
2669 |
msgstr ""
|
2670 |
|
2671 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2672 |
msgctxt "form-fields admin"
|
2673 |
msgid "Show this value in excerpt view?"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2677 |
msgctxt "form-fields admin"
|
2678 |
msgid "Display this value in post excerpt view."
|
2679 |
msgstr ""
|
2680 |
|
2681 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2682 |
msgctxt "form-fields admin"
|
2683 |
msgid "Show this value in listing view?"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2687 |
msgctxt "form-fields admin"
|
2688 |
msgid "Display this value in the listing view."
|
2689 |
msgstr ""
|
2690 |
|
2691 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2692 |
msgctxt "form-fields admin"
|
2693 |
msgid "Include this field in the search form?"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2697 |
msgctxt "form-fields admin"
|
2698 |
msgid "Include this field in the search form."
|
2699 |
msgstr ""
|
2700 |
|
2701 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2702 |
msgctxt "form-fields admin"
|
2703 |
msgid "Is this field required for searching?"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2707 |
msgctxt "form-fields admin"
|
2708 |
msgid ""
|
2709 |
"Make this fields required during searches on the Advanced Search screen."
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2713 |
msgctxt "form-fields admin"
|
2714 |
msgid "Hide this field's label?"
|
2715 |
msgstr ""
|
2716 |
|
2717 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2718 |
msgctxt "form-fields admin"
|
2719 |
msgid "Hide this field's label when displaying it."
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2723 |
msgctxt "form-fields admin"
|
2724 |
msgid "Update Field"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2728 |
msgctxt "form-fields admin"
|
2729 |
msgid "Add Field"
|
2730 |
msgstr ""
|
@@ -5486,53 +5516,53 @@ msgctxt "submit listing"
|
|
5486 |
msgid "Please choose a valid fee plan for your category selection."
|
5487 |
msgstr ""
|
5488 |
|
5489 |
-
#: includes/views/submit_listing.php:
|
5490 |
msgctxt "submit listing"
|
5491 |
msgid "Please enter your desired username."
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: includes/views/submit_listing.php:
|
5495 |
msgctxt "submit listing"
|
5496 |
msgid "Please enter the e-mail for your new account."
|
5497 |
msgstr ""
|
5498 |
|
5499 |
-
#: includes/views/submit_listing.php:
|
5500 |
msgctxt "submit listing"
|
5501 |
msgid "Please enter the password for your new account."
|
5502 |
msgstr ""
|
5503 |
|
5504 |
-
#: includes/views/submit_listing.php:
|
5505 |
msgctxt "submit listing"
|
5506 |
msgid "The username you chose is already in use. Please use a different one."
|
5507 |
msgstr ""
|
5508 |
|
5509 |
-
#: includes/views/submit_listing.php:
|
5510 |
msgctxt "submit listing"
|
5511 |
msgid "The e-mail address you chose for your account is already in use."
|
5512 |
msgstr ""
|
5513 |
|
5514 |
-
#: includes/views/submit_listing.php:
|
5515 |
msgctxt "submit listing"
|
5516 |
msgid "Create a user account on this site"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#: includes/views/submit_listing.php:
|
5520 |
msgctxt "submit listing"
|
5521 |
msgid ""
|
5522 |
"You need to create an account on the site. Please fill out the form below."
|
5523 |
msgstr ""
|
5524 |
|
5525 |
-
#: includes/views/submit_listing.php:
|
5526 |
msgctxt "submit listing"
|
5527 |
msgid "Username:"
|
5528 |
msgstr ""
|
5529 |
|
5530 |
-
#: includes/views/submit_listing.php:
|
5531 |
msgctxt "submit listing"
|
5532 |
msgid "Email:"
|
5533 |
msgstr ""
|
5534 |
|
5535 |
-
#: includes/views/submit_listing.php:
|
5536 |
msgctxt "submit listing"
|
5537 |
msgid "Password:"
|
5538 |
msgstr ""
|
@@ -5562,12 +5592,12 @@ msgctxt "submit listing"
|
|
5562 |
msgid "Save Changes"
|
5563 |
msgstr ""
|
5564 |
|
5565 |
-
#: includes/class-recaptcha.php:
|
5566 |
msgctxt "recaptcha"
|
5567 |
msgid "The reCAPTCHA wasn't entered correctly."
|
5568 |
msgstr ""
|
5569 |
|
5570 |
-
#: includes/class-recaptcha.php:
|
5571 |
msgctxt "recaptcha"
|
5572 |
msgid "reCAPTCHA"
|
5573 |
msgstr ""
|
@@ -5668,12 +5698,12 @@ msgctxt "form-fields api"
|
|
5668 |
msgid "Textarea"
|
5669 |
msgstr ""
|
5670 |
|
5671 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
5672 |
msgctxt "form-fields api"
|
5673 |
msgid "Textfield"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
5677 |
msgctxt "form-fields api"
|
5678 |
msgid "Format 01/31/1969"
|
5679 |
msgstr ""
|
@@ -5698,7 +5728,7 @@ msgctxt "form-fields api"
|
|
5698 |
msgid "Link Text (optional):"
|
5699 |
msgstr ""
|
5700 |
|
5701 |
-
#: includes/fields/class-form-field.php:
|
5702 |
msgctxt "form-fields api"
|
5703 |
msgid ""
|
5704 |
"This form field can't be deleted because it is required for the plugin to "
|
@@ -5755,7 +5785,7 @@ msgctxt "date field"
|
|
5755 |
msgid "%s must be a valid date."
|
5756 |
msgstr ""
|
5757 |
|
5758 |
-
#: includes/fields/class-fieldtypes-image.php:
|
5759 |
msgctxt "date field"
|
5760 |
msgid "Caption for %s is required."
|
5761 |
msgstr ""
|
@@ -5765,17 +5795,17 @@ msgctxt "form-fields-api"
|
|
5765 |
msgid "Remove"
|
5766 |
msgstr ""
|
5767 |
|
5768 |
-
#: includes/fields/class-form-field.php:
|
5769 |
msgctxt "form-fields-api"
|
5770 |
msgid "Invalid form field type"
|
5771 |
msgstr ""
|
5772 |
|
5773 |
-
#: includes/fields/class-form-field.php:
|
5774 |
msgctxt "form-fields-api"
|
5775 |
msgid "Field label is required."
|
5776 |
msgstr ""
|
5777 |
|
5778 |
-
#: includes/fields/class-form-field.php:
|
5779 |
msgctxt "form-fields-api"
|
5780 |
msgid ""
|
5781 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
@@ -5783,31 +5813,31 @@ msgid ""
|
|
5783 |
"delete this current field and create a NEW field of type %1$s instead."
|
5784 |
msgstr ""
|
5785 |
|
5786 |
-
#: includes/fields/class-form-field.php:
|
5787 |
msgctxt "form-fields-api"
|
5788 |
msgid ""
|
5789 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
5790 |
"existing listings will be deleted as well."
|
5791 |
msgstr ""
|
5792 |
|
5793 |
-
#: includes/fields/class-form-field.php:
|
5794 |
msgctxt "form-fields-api"
|
5795 |
msgid ""
|
5796 |
"There can only be one field with association \"%s\". Please select another "
|
5797 |
"association."
|
5798 |
msgstr ""
|
5799 |
|
5800 |
-
#: includes/fields/class-form-field.php:
|
5801 |
msgctxt "form-fields-api"
|
5802 |
msgid "\"%s\" is an invalid field type for this association."
|
5803 |
msgstr ""
|
5804 |
|
5805 |
-
#: includes/fields/class-form-field.php:
|
5806 |
msgctxt "form-fields-api"
|
5807 |
msgid "Invalid field ID"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
-
#: includes/fields/class-form-field.php:
|
5811 |
msgctxt "form-fields-api"
|
5812 |
msgid "An error occurred while trying to delete this field."
|
5813 |
msgstr ""
|
@@ -5837,6 +5867,11 @@ msgctxt "form-fields-api"
|
|
5837 |
msgid "Date Validator"
|
5838 |
msgstr ""
|
5839 |
|
|
|
|
|
|
|
|
|
|
|
5840 |
#: includes/fields/class-fieldtypes-image.php:121
|
5841 |
msgctxt "form fields"
|
5842 |
msgid "Field unavailable at the moment."
|
@@ -5885,51 +5920,61 @@ msgid ""
|
|
5885 |
"you sure you want to enable this?"
|
5886 |
msgstr ""
|
5887 |
|
5888 |
-
#: includes/form-fields.php:
|
5889 |
msgctxt "form-fields-api validation"
|
5890 |
msgid "Field"
|
5891 |
msgstr ""
|
5892 |
|
5893 |
-
#: includes/form-fields.php:
|
5894 |
msgctxt "form-fields-api validation"
|
5895 |
msgid "%s is required."
|
5896 |
msgstr ""
|
5897 |
|
5898 |
-
#: includes/form-fields.php:
|
5899 |
msgctxt "form-fields-api validation"
|
5900 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
5901 |
msgstr ""
|
5902 |
|
5903 |
-
#: includes/form-fields.php:
|
5904 |
msgctxt "form-fields-api validation"
|
5905 |
msgid "%s is badly formatted. Valid Email format required."
|
5906 |
msgstr ""
|
5907 |
|
5908 |
-
#: includes/form-fields.php:
|
5909 |
msgctxt "form-fields-api validation"
|
5910 |
msgid "%s must be a number. Decimal values are not allowed."
|
5911 |
msgstr ""
|
5912 |
|
5913 |
-
#: includes/form-fields.php:
|
5914 |
msgctxt "form-fields-api validation"
|
5915 |
msgid "%s must be a number."
|
5916 |
msgstr ""
|
5917 |
|
5918 |
-
#: includes/form-fields.php:
|
5919 |
msgctxt "form-fields-api validation"
|
5920 |
msgid "%1$s must be in the format %2$s."
|
5921 |
msgstr ""
|
5922 |
|
5923 |
-
#: includes/form-fields.php:
|
5924 |
msgctxt "form-fields-api validation"
|
5925 |
msgid "%s must be a valid date."
|
5926 |
msgstr ""
|
5927 |
|
5928 |
-
#: includes/form-fields.php:
|
|
|
|
|
|
|
|
|
|
|
5929 |
msgctxt "form-fields-api validation"
|
5930 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
5931 |
msgstr ""
|
5932 |
|
|
|
|
|
|
|
|
|
|
|
5933 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
5934 |
msgctxt "authorize-net"
|
5935 |
msgid "Authorize.net"
|
@@ -6608,17 +6653,17 @@ msgctxt "templates"
|
|
6608 |
msgid "View not available."
|
6609 |
msgstr ""
|
6610 |
|
6611 |
-
#: includes/views/submit_listing.php:
|
6612 |
msgctxt "templates"
|
6613 |
msgid "Please agree to the Terms and Conditions."
|
6614 |
msgstr ""
|
6615 |
|
6616 |
-
#: includes/views/submit_listing.php:
|
6617 |
msgctxt "templates"
|
6618 |
msgid "Terms and Conditions:"
|
6619 |
msgstr ""
|
6620 |
|
6621 |
-
#: includes/views/submit_listing.php:
|
6622 |
msgctxt "templates"
|
6623 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
6624 |
msgstr ""
|
@@ -7249,14 +7294,14 @@ msgctxt "preview"
|
|
7249 |
msgid "This is just a preview. The listing has not been published yet."
|
7250 |
msgstr ""
|
7251 |
|
7252 |
-
#: includes/views/submit_listing.php:
|
7253 |
msgctxt "listing submit"
|
7254 |
msgid ""
|
7255 |
"Something went wrong. Please check the form for errors, correct them and "
|
7256 |
"submit again."
|
7257 |
msgstr ""
|
7258 |
|
7259 |
-
#: includes/views/submit_listing.php:
|
7260 |
msgctxt "listing submit"
|
7261 |
msgid ""
|
7262 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -7498,112 +7543,122 @@ msgctxt "admin sidebar"
|
|
7498 |
msgid "Elegant Business Theme"
|
7499 |
msgstr ""
|
7500 |
|
7501 |
-
#: templates/admin/sidebar.tpl.php:
|
7502 |
msgctxt "admin sidebar"
|
7503 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
7504 |
msgstr ""
|
7505 |
|
7506 |
#: templates/admin/sidebar.tpl.php:31
|
7507 |
msgctxt "admin sidebar"
|
7508 |
-
msgid "
|
7509 |
msgstr ""
|
7510 |
|
7511 |
#: templates/admin/sidebar.tpl.php:33
|
7512 |
msgctxt "admin sidebar"
|
|
|
|
|
|
|
|
|
|
|
7513 |
msgid "Give it a good rating on WordPress.org."
|
7514 |
msgstr ""
|
7515 |
|
7516 |
-
#: templates/admin/sidebar.tpl.php:
|
7517 |
msgctxt "admin sidebar"
|
7518 |
msgid "Let other people know that it works with your WordPress setup."
|
7519 |
msgstr ""
|
7520 |
|
7521 |
-
#: templates/admin/sidebar.tpl.php:
|
7522 |
msgctxt "admin sidebar"
|
7523 |
msgid "Buy a Premium Module"
|
7524 |
msgstr ""
|
7525 |
|
7526 |
-
#: templates/admin/sidebar.tpl.php:
|
7527 |
msgctxt "admin sidebar"
|
7528 |
msgid "Get a Premium Module"
|
7529 |
msgstr ""
|
7530 |
|
7531 |
-
#: templates/admin/sidebar.tpl.php:
|
7532 |
msgctxt "admin sidebar"
|
7533 |
msgid "best deal"
|
7534 |
msgstr ""
|
7535 |
|
7536 |
-
#: templates/admin/sidebar.tpl.php:
|
7537 |
msgctxt "admin sidebar"
|
7538 |
msgid "Combo Pack"
|
7539 |
msgstr ""
|
7540 |
|
7541 |
-
#: templates/admin/sidebar.tpl.php:
|
7542 |
msgctxt "admin sidebar"
|
7543 |
msgid "(All Modules)"
|
7544 |
msgstr ""
|
7545 |
|
7546 |
-
#: templates/admin/sidebar.tpl.php:
|
7547 |
msgctxt "admin sidebar"
|
7548 |
msgid "new"
|
7549 |
msgstr ""
|
7550 |
|
7551 |
-
#: templates/admin/sidebar.tpl.php:
|
7552 |
msgctxt "admin sidebar"
|
7553 |
msgid "Get a Directory Theme"
|
7554 |
msgstr ""
|
7555 |
|
7556 |
-
#: templates/admin/sidebar.tpl.php:
|
7557 |
msgctxt "admin sidebar"
|
7558 |
msgid "Theme Pack"
|
7559 |
msgstr ""
|
7560 |
|
7561 |
-
#: templates/admin/sidebar.tpl.php:
|
7562 |
msgctxt "admin sidebar"
|
7563 |
msgid "(All Themes)"
|
7564 |
msgstr ""
|
7565 |
|
7566 |
-
#: templates/admin/sidebar.tpl.php:
|
7567 |
msgctxt "admin sidebar"
|
7568 |
msgid "Found a bug? Need support?"
|
7569 |
msgstr ""
|
7570 |
|
7571 |
-
#: templates/admin/sidebar.tpl.php:
|
7572 |
msgctxt "admin sidebar"
|
7573 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
7574 |
msgstr ""
|
7575 |
|
7576 |
-
#: templates/admin/sidebar.tpl.php:
|
7577 |
msgctxt "admin sidebar"
|
7578 |
msgid "Full plugin documentation"
|
7579 |
msgstr ""
|
7580 |
|
7581 |
-
#: templates/admin/sidebar.tpl.php:
|
7582 |
msgctxt "admin sidebar"
|
7583 |
msgid "Quick Start Guide"
|
7584 |
msgstr ""
|
7585 |
|
7586 |
-
#: templates/admin/sidebar.tpl.php:
|
7587 |
msgctxt "admin sidebar"
|
7588 |
msgid "Video Tutorials"
|
7589 |
msgstr ""
|
7590 |
|
7591 |
-
#: templates/admin/sidebar.tpl.php:
|
7592 |
msgctxt "admin sidebar"
|
7593 |
msgid "Installed Modules"
|
7594 |
msgstr ""
|
7595 |
|
7596 |
-
#: templates/admin/sidebar.tpl.php:
|
7597 |
msgctxt "admin sidebar"
|
7598 |
msgid "Installed"
|
7599 |
msgstr ""
|
7600 |
|
7601 |
-
#: templates/admin/sidebar.tpl.php:
|
7602 |
msgctxt "admin sidebar"
|
7603 |
msgid "Not Installed"
|
7604 |
msgstr ""
|
7605 |
|
7606 |
-
#: templates/admin/sidebar.tpl.php:
|
7607 |
msgctxt "admin sidebar"
|
7608 |
msgid "Enhanced Categories Module"
|
7609 |
msgstr ""
|
5 |
"Project-Id-Version: Business Directory Plugin 3.6\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2018-06-27 21:14:25+00:00\n"
|
9 |
"PO-Revision-Date: 2017-01-16 17:47-0500\n"
|
10 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
2464 |
msgid "Field list of options is required."
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
#: includes/fields/class-fieldtypes-image.php:55
|
2468 |
msgctxt "form-fields admin"
|
2469 |
msgid "Display caption?"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: includes/fields/class-fieldtypes-image.php:58
|
2473 |
msgctxt "form-fields admin"
|
2474 |
msgid "Field Caption required?"
|
2475 |
msgstr ""
|
2586 |
msgid "Use rel=\"nofollow\" when displaying the link?"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
+
#: templates/admin/form-fields-addoredit.tpl.php:8
|
2590 |
msgctxt "form-fields admin"
|
2591 |
msgid "Add Form Field"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
2595 |
msgctxt "form-fields admin"
|
2596 |
msgid "Field Association"
|
2597 |
msgstr ""
|
2598 |
|
2599 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
2600 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
2601 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
2602 |
msgctxt "form-fields admin"
|
2603 |
msgid "required"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
2607 |
msgctxt "form-fields admin"
|
2608 |
msgid "Field Type"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
2612 |
msgctxt "form-fields admin"
|
2613 |
msgid "Field Label"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
2617 |
msgctxt "form-fields admin"
|
2618 |
msgid "Field description"
|
2619 |
msgstr ""
|
2620 |
|
2621 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
2622 |
msgctxt "form-fields admin"
|
2623 |
msgid "optional"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: templates/admin/form-fields-addoredit.tpl.php:97
|
2627 |
msgctxt "form-fields admin"
|
2628 |
msgid "Field-specific settings"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
+
#: templates/admin/form-fields-addoredit.tpl.php:106
|
2632 |
msgctxt "form-fields admin"
|
2633 |
msgid "Field validation options"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: templates/admin/form-fields-addoredit.tpl.php:110
|
2637 |
msgctxt "form-fields admin"
|
2638 |
msgid "Field Validator"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
+
#: templates/admin/form-fields-addoredit.tpl.php:114
|
2642 |
msgctxt "form-fields admin"
|
2643 |
msgid "No validation"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: templates/admin/form-fields-addoredit.tpl.php:126
|
2647 |
+
msgctxt "form-fields admin"
|
2648 |
+
msgid "Number of words"
|
2649 |
+
msgstr ""
|
2650 |
+
|
2651 |
+
#: templates/admin/form-fields-addoredit.tpl.php:136
|
2652 |
msgctxt "form-fields admin"
|
2653 |
msgid "Is field required?"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: templates/admin/form-fields-addoredit.tpl.php:142
|
2657 |
msgctxt "form-fields admin"
|
2658 |
msgid "This field is required."
|
2659 |
msgstr ""
|
2660 |
|
2661 |
+
#: templates/admin/form-fields-addoredit.tpl.php:150
|
2662 |
msgctxt "form-fields admin"
|
2663 |
msgid "Field display options"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: templates/admin/form-fields-addoredit.tpl.php:154
|
2667 |
+
msgctxt "form-fields admin"
|
2668 |
+
msgid "Field Category Policy:"
|
2669 |
+
msgstr ""
|
2670 |
+
|
2671 |
+
#: templates/admin/form-fields-addoredit.tpl.php:159
|
2672 |
+
msgctxt "form-fields admin"
|
2673 |
+
msgid "Field applies to all categories"
|
2674 |
+
msgstr ""
|
2675 |
+
|
2676 |
+
#: templates/admin/form-fields-addoredit.tpl.php:160
|
2677 |
+
msgctxt "form-fields admin"
|
2678 |
+
msgid "Field applies to only certain categories"
|
2679 |
+
msgstr ""
|
2680 |
+
|
2681 |
+
#: templates/admin/form-fields-addoredit.tpl.php:164
|
2682 |
+
msgctxt "form-fields admin"
|
2683 |
+
msgid "Limit field to the following categories:"
|
2684 |
+
msgstr ""
|
2685 |
+
|
2686 |
+
#: templates/admin/form-fields-addoredit.tpl.php:188
|
2687 |
+
msgctxt "form-fields admin"
|
2688 |
+
msgid "Click to add categories to the selection."
|
2689 |
+
msgstr ""
|
2690 |
+
|
2691 |
+
#: templates/admin/form-fields-addoredit.tpl.php:201
|
2692 |
msgctxt "form-fields admin"
|
2693 |
msgid "Show this field to admin users only?"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
+
#: templates/admin/form-fields-addoredit.tpl.php:207
|
2697 |
msgctxt "form-fields admin"
|
2698 |
msgid "Display this field to admin users only in the edit listing view."
|
2699 |
msgstr ""
|
2700 |
|
2701 |
+
#: templates/admin/form-fields-addoredit.tpl.php:213
|
2702 |
msgctxt "form-fields admin"
|
2703 |
msgid "Show this value in excerpt view?"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
+
#: templates/admin/form-fields-addoredit.tpl.php:219
|
2707 |
msgctxt "form-fields admin"
|
2708 |
msgid "Display this value in post excerpt view."
|
2709 |
msgstr ""
|
2710 |
|
2711 |
+
#: templates/admin/form-fields-addoredit.tpl.php:225
|
2712 |
msgctxt "form-fields admin"
|
2713 |
msgid "Show this value in listing view?"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
+
#: templates/admin/form-fields-addoredit.tpl.php:231
|
2717 |
msgctxt "form-fields admin"
|
2718 |
msgid "Display this value in the listing view."
|
2719 |
msgstr ""
|
2720 |
|
2721 |
+
#: templates/admin/form-fields-addoredit.tpl.php:237
|
2722 |
msgctxt "form-fields admin"
|
2723 |
msgid "Include this field in the search form?"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
+
#: templates/admin/form-fields-addoredit.tpl.php:243
|
2727 |
msgctxt "form-fields admin"
|
2728 |
msgid "Include this field in the search form."
|
2729 |
msgstr ""
|
2730 |
|
2731 |
+
#: templates/admin/form-fields-addoredit.tpl.php:249
|
2732 |
msgctxt "form-fields admin"
|
2733 |
msgid "Is this field required for searching?"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
+
#: templates/admin/form-fields-addoredit.tpl.php:255
|
2737 |
msgctxt "form-fields admin"
|
2738 |
msgid ""
|
2739 |
"Make this fields required during searches on the Advanced Search screen."
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#: templates/admin/form-fields-addoredit.tpl.php:261
|
2743 |
msgctxt "form-fields admin"
|
2744 |
msgid "Hide this field's label?"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
+
#: templates/admin/form-fields-addoredit.tpl.php:267
|
2748 |
msgctxt "form-fields admin"
|
2749 |
msgid "Hide this field's label when displaying it."
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: templates/admin/form-fields-addoredit.tpl.php:274
|
2753 |
msgctxt "form-fields admin"
|
2754 |
msgid "Update Field"
|
2755 |
msgstr ""
|
2756 |
|
2757 |
+
#: templates/admin/form-fields-addoredit.tpl.php:276
|
2758 |
msgctxt "form-fields admin"
|
2759 |
msgid "Add Field"
|
2760 |
msgstr ""
|
5516 |
msgid "Please choose a valid fee plan for your category selection."
|
5517 |
msgstr ""
|
5518 |
|
5519 |
+
#: includes/views/submit_listing.php:743
|
5520 |
msgctxt "submit listing"
|
5521 |
msgid "Please enter your desired username."
|
5522 |
msgstr ""
|
5523 |
|
5524 |
+
#: includes/views/submit_listing.php:748
|
5525 |
msgctxt "submit listing"
|
5526 |
msgid "Please enter the e-mail for your new account."
|
5527 |
msgstr ""
|
5528 |
|
5529 |
+
#: includes/views/submit_listing.php:753
|
5530 |
msgctxt "submit listing"
|
5531 |
msgid "Please enter the password for your new account."
|
5532 |
msgstr ""
|
5533 |
|
5534 |
+
#: includes/views/submit_listing.php:763
|
5535 |
msgctxt "submit listing"
|
5536 |
msgid "The username you chose is already in use. Please use a different one."
|
5537 |
msgstr ""
|
5538 |
|
5539 |
+
#: includes/views/submit_listing.php:768
|
5540 |
msgctxt "submit listing"
|
5541 |
msgid "The e-mail address you chose for your account is already in use."
|
5542 |
msgstr ""
|
5543 |
|
5544 |
+
#: includes/views/submit_listing.php:783
|
5545 |
msgctxt "submit listing"
|
5546 |
msgid "Create a user account on this site"
|
5547 |
msgstr ""
|
5548 |
|
5549 |
+
#: includes/views/submit_listing.php:790
|
5550 |
msgctxt "submit listing"
|
5551 |
msgid ""
|
5552 |
"You need to create an account on the site. Please fill out the form below."
|
5553 |
msgstr ""
|
5554 |
|
5555 |
+
#: includes/views/submit_listing.php:796
|
5556 |
msgctxt "submit listing"
|
5557 |
msgid "Username:"
|
5558 |
msgstr ""
|
5559 |
|
5560 |
+
#: includes/views/submit_listing.php:805
|
5561 |
msgctxt "submit listing"
|
5562 |
msgid "Email:"
|
5563 |
msgstr ""
|
5564 |
|
5565 |
+
#: includes/views/submit_listing.php:814
|
5566 |
msgctxt "submit listing"
|
5567 |
msgid "Password:"
|
5568 |
msgstr ""
|
5592 |
msgid "Save Changes"
|
5593 |
msgstr ""
|
5594 |
|
5595 |
+
#: includes/class-recaptcha.php:109 includes/class-recaptcha.php:150
|
5596 |
msgctxt "recaptcha"
|
5597 |
msgid "The reCAPTCHA wasn't entered correctly."
|
5598 |
msgstr ""
|
5599 |
|
5600 |
+
#: includes/class-recaptcha.php:211
|
5601 |
msgctxt "recaptcha"
|
5602 |
msgid "reCAPTCHA"
|
5603 |
msgstr ""
|
5698 |
msgid "Textarea"
|
5699 |
msgstr ""
|
5700 |
|
5701 |
+
#: includes/fields/class-fieldtypes-textfield.php:13
|
5702 |
msgctxt "form-fields api"
|
5703 |
msgid "Textfield"
|
5704 |
msgstr ""
|
5705 |
|
5706 |
+
#: includes/fields/class-fieldtypes-textfield.php:50
|
5707 |
msgctxt "form-fields api"
|
5708 |
msgid "Format 01/31/1969"
|
5709 |
msgstr ""
|
5728 |
msgid "Link Text (optional):"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
+
#: includes/fields/class-form-field.php:707
|
5732 |
msgctxt "form-fields api"
|
5733 |
msgid ""
|
5734 |
"This form field can't be deleted because it is required for the plugin to "
|
5785 |
msgid "%s must be a valid date."
|
5786 |
msgstr ""
|
5787 |
|
5788 |
+
#: includes/fields/class-fieldtypes-image.php:41
|
5789 |
msgctxt "date field"
|
5790 |
msgid "Caption for %s is required."
|
5791 |
msgstr ""
|
5795 |
msgid "Remove"
|
5796 |
msgstr ""
|
5797 |
|
5798 |
+
#: includes/fields/class-form-field.php:66
|
5799 |
msgctxt "form-fields-api"
|
5800 |
msgid "Invalid form field type"
|
5801 |
msgstr ""
|
5802 |
|
5803 |
+
#: includes/fields/class-form-field.php:585
|
5804 |
msgctxt "form-fields-api"
|
5805 |
msgid "Field label is required."
|
5806 |
msgstr ""
|
5807 |
|
5808 |
+
#: includes/fields/class-form-field.php:596
|
5809 |
msgctxt "form-fields-api"
|
5810 |
msgid ""
|
5811 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
5813 |
"delete this current field and create a NEW field of type %1$s instead."
|
5814 |
msgstr ""
|
5815 |
|
5816 |
+
#: includes/fields/class-form-field.php:599
|
5817 |
msgctxt "form-fields-api"
|
5818 |
msgid ""
|
5819 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
5820 |
"existing listings will be deleted as well."
|
5821 |
msgstr ""
|
5822 |
|
5823 |
+
#: includes/fields/class-form-field.php:633
|
5824 |
msgctxt "form-fields-api"
|
5825 |
msgid ""
|
5826 |
"There can only be one field with association \"%s\". Please select another "
|
5827 |
"association."
|
5828 |
msgstr ""
|
5829 |
|
5830 |
+
#: includes/fields/class-form-field.php:643
|
5831 |
msgctxt "form-fields-api"
|
5832 |
msgid "\"%s\" is an invalid field type for this association."
|
5833 |
msgstr ""
|
5834 |
|
5835 |
+
#: includes/fields/class-form-field.php:697
|
5836 |
msgctxt "form-fields-api"
|
5837 |
msgid "Invalid field ID"
|
5838 |
msgstr ""
|
5839 |
|
5840 |
+
#: includes/fields/class-form-field.php:720
|
5841 |
msgctxt "form-fields-api"
|
5842 |
msgid "An error occurred while trying to delete this field."
|
5843 |
msgstr ""
|
5867 |
msgid "Date Validator"
|
5868 |
msgstr ""
|
5869 |
|
5870 |
+
#: includes/form-fields.php:574
|
5871 |
+
msgctxt "form-fields-api"
|
5872 |
+
msgid "Word Count Validator"
|
5873 |
+
msgstr ""
|
5874 |
+
|
5875 |
#: includes/fields/class-fieldtypes-image.php:121
|
5876 |
msgctxt "form fields"
|
5877 |
msgid "Field unavailable at the moment."
|
5920 |
"you sure you want to enable this?"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
+
#: includes/form-fields.php:581
|
5924 |
msgctxt "form-fields-api validation"
|
5925 |
msgid "Field"
|
5926 |
msgstr ""
|
5927 |
|
5928 |
+
#: includes/form-fields.php:602 includes/form-fields.php:607
|
5929 |
msgctxt "form-fields-api validation"
|
5930 |
msgid "%s is required."
|
5931 |
msgstr ""
|
5932 |
|
5933 |
+
#: includes/form-fields.php:619 includes/form-fields.php:626
|
5934 |
msgctxt "form-fields-api validation"
|
5935 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
5936 |
msgstr ""
|
5937 |
|
5938 |
+
#: includes/form-fields.php:641
|
5939 |
msgctxt "form-fields-api validation"
|
5940 |
msgid "%s is badly formatted. Valid Email format required."
|
5941 |
msgstr ""
|
5942 |
|
5943 |
+
#: includes/form-fields.php:648
|
5944 |
msgctxt "form-fields-api validation"
|
5945 |
msgid "%s must be a number. Decimal values are not allowed."
|
5946 |
msgstr ""
|
5947 |
|
5948 |
+
#: includes/form-fields.php:655
|
5949 |
msgctxt "form-fields-api validation"
|
5950 |
msgid "%s must be a number."
|
5951 |
msgstr ""
|
5952 |
|
5953 |
+
#: includes/form-fields.php:674
|
5954 |
msgctxt "form-fields-api validation"
|
5955 |
msgid "%1$s must be in the format %2$s."
|
5956 |
msgstr ""
|
5957 |
|
5958 |
+
#: includes/form-fields.php:712
|
5959 |
msgctxt "form-fields-api validation"
|
5960 |
msgid "%s must be a valid date."
|
5961 |
msgstr ""
|
5962 |
|
5963 |
+
#: includes/form-fields.php:735
|
5964 |
+
msgctxt "form-fields-api validation"
|
5965 |
+
msgid "%s must have less than %d words."
|
5966 |
+
msgstr ""
|
5967 |
+
|
5968 |
+
#: includes/form-fields.php:754
|
5969 |
msgctxt "form-fields-api validation"
|
5970 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
5971 |
msgstr ""
|
5972 |
|
5973 |
+
#: includes/form-fields.php:719
|
5974 |
+
msgctxt "image field"
|
5975 |
+
msgid "Caption for %s is required."
|
5976 |
+
msgstr ""
|
5977 |
+
|
5978 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
5979 |
msgctxt "authorize-net"
|
5980 |
msgid "Authorize.net"
|
6653 |
msgid "View not available."
|
6654 |
msgstr ""
|
6655 |
|
6656 |
+
#: includes/views/submit_listing.php:852
|
6657 |
msgctxt "templates"
|
6658 |
msgid "Please agree to the Terms and Conditions."
|
6659 |
msgstr ""
|
6660 |
|
6661 |
+
#: includes/views/submit_listing.php:860
|
6662 |
msgctxt "templates"
|
6663 |
msgid "Terms and Conditions:"
|
6664 |
msgstr ""
|
6665 |
|
6666 |
+
#: includes/views/submit_listing.php:869
|
6667 |
msgctxt "templates"
|
6668 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
6669 |
msgstr ""
|
7294 |
msgid "This is just a preview. The listing has not been published yet."
|
7295 |
msgstr ""
|
7296 |
|
7297 |
+
#: includes/views/submit_listing.php:613
|
7298 |
msgctxt "listing submit"
|
7299 |
msgid ""
|
7300 |
"Something went wrong. Please check the form for errors, correct them and "
|
7301 |
"submit again."
|
7302 |
msgstr ""
|
7303 |
|
7304 |
+
#: includes/views/submit_listing.php:695
|
7305 |
msgctxt "listing submit"
|
7306 |
msgid ""
|
7307 |
"Image upload is required, please provide at least one image and submit again."
|
7543 |
msgid "Elegant Business Theme"
|
7544 |
msgstr ""
|
7545 |
|
7546 |
+
#: templates/admin/sidebar.tpl.php:23
|
7547 |
msgctxt "admin sidebar"
|
7548 |
+
msgid "Modern Business Theme"
|
7549 |
+
msgstr ""
|
7550 |
+
|
7551 |
+
#: templates/admin/sidebar.tpl.php:24
|
7552 |
+
msgctxt "admin sidebar"
|
7553 |
+
msgid "Modern Filtered Theme"
|
7554 |
msgstr ""
|
7555 |
|
7556 |
#: templates/admin/sidebar.tpl.php:31
|
7557 |
msgctxt "admin sidebar"
|
7558 |
+
msgid "Like this plugin?"
|
7559 |
msgstr ""
|
7560 |
|
7561 |
#: templates/admin/sidebar.tpl.php:33
|
7562 |
msgctxt "admin sidebar"
|
7563 |
+
msgid "Why not do any or all of the following:"
|
7564 |
+
msgstr ""
|
7565 |
+
|
7566 |
+
#: templates/admin/sidebar.tpl.php:35
|
7567 |
+
msgctxt "admin sidebar"
|
7568 |
msgid "Give it a good rating on WordPress.org."
|
7569 |
msgstr ""
|
7570 |
|
7571 |
+
#: templates/admin/sidebar.tpl.php:36
|
7572 |
msgctxt "admin sidebar"
|
7573 |
msgid "Let other people know that it works with your WordPress setup."
|
7574 |
msgstr ""
|
7575 |
|
7576 |
+
#: templates/admin/sidebar.tpl.php:37
|
7577 |
msgctxt "admin sidebar"
|
7578 |
msgid "Buy a Premium Module"
|
7579 |
msgstr ""
|
7580 |
|
7581 |
+
#: templates/admin/sidebar.tpl.php:44
|
7582 |
msgctxt "admin sidebar"
|
7583 |
msgid "Get a Premium Module"
|
7584 |
msgstr ""
|
7585 |
|
7586 |
+
#: templates/admin/sidebar.tpl.php:47 templates/admin/sidebar.tpl.php:63
|
7587 |
msgctxt "admin sidebar"
|
7588 |
msgid "best deal"
|
7589 |
msgstr ""
|
7590 |
|
7591 |
+
#: templates/admin/sidebar.tpl.php:47
|
7592 |
msgctxt "admin sidebar"
|
7593 |
msgid "Combo Pack"
|
7594 |
msgstr ""
|
7595 |
|
7596 |
+
#: templates/admin/sidebar.tpl.php:47
|
7597 |
msgctxt "admin sidebar"
|
7598 |
msgid "(All Modules)"
|
7599 |
msgstr ""
|
7600 |
|
7601 |
+
#: templates/admin/sidebar.tpl.php:50 templates/admin/sidebar.tpl.php:66
|
7602 |
msgctxt "admin sidebar"
|
7603 |
msgid "new"
|
7604 |
msgstr ""
|
7605 |
|
7606 |
+
#: templates/admin/sidebar.tpl.php:60
|
7607 |
msgctxt "admin sidebar"
|
7608 |
msgid "Get a Directory Theme"
|
7609 |
msgstr ""
|
7610 |
|
7611 |
+
#: templates/admin/sidebar.tpl.php:63
|
7612 |
msgctxt "admin sidebar"
|
7613 |
msgid "Theme Pack"
|
7614 |
msgstr ""
|
7615 |
|
7616 |
+
#: templates/admin/sidebar.tpl.php:63
|
7617 |
msgctxt "admin sidebar"
|
7618 |
msgid "(All Themes)"
|
7619 |
msgstr ""
|
7620 |
|
7621 |
+
#: templates/admin/sidebar.tpl.php:76
|
7622 |
msgctxt "admin sidebar"
|
7623 |
msgid "Found a bug? Need support?"
|
7624 |
msgstr ""
|
7625 |
|
7626 |
+
#: templates/admin/sidebar.tpl.php:81
|
7627 |
msgctxt "admin sidebar"
|
7628 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
7629 |
msgstr ""
|
7630 |
|
7631 |
+
#: templates/admin/sidebar.tpl.php:84
|
7632 |
msgctxt "admin sidebar"
|
7633 |
msgid "Full plugin documentation"
|
7634 |
msgstr ""
|
7635 |
|
7636 |
+
#: templates/admin/sidebar.tpl.php:85
|
7637 |
msgctxt "admin sidebar"
|
7638 |
msgid "Quick Start Guide"
|
7639 |
msgstr ""
|
7640 |
|
7641 |
+
#: templates/admin/sidebar.tpl.php:86
|
7642 |
msgctxt "admin sidebar"
|
7643 |
msgid "Video Tutorials"
|
7644 |
msgstr ""
|
7645 |
|
7646 |
+
#: templates/admin/sidebar.tpl.php:94
|
7647 |
msgctxt "admin sidebar"
|
7648 |
msgid "Installed Modules"
|
7649 |
msgstr ""
|
7650 |
|
7651 |
+
#: templates/admin/sidebar.tpl.php:105 templates/admin/sidebar.tpl.php:114
|
7652 |
msgctxt "admin sidebar"
|
7653 |
msgid "Installed"
|
7654 |
msgstr ""
|
7655 |
|
7656 |
+
#: templates/admin/sidebar.tpl.php:107 templates/admin/sidebar.tpl.php:114
|
7657 |
msgctxt "admin sidebar"
|
7658 |
msgid "Not Installed"
|
7659 |
msgstr ""
|
7660 |
|
7661 |
+
#: templates/admin/sidebar.tpl.php:113
|
7662 |
msgctxt "admin sidebar"
|
7663 |
msgid "Enhanced Categories Module"
|
7664 |
msgstr ""
|
languages/WPBDM-es_ES.mo
CHANGED
Binary file
|
languages/WPBDM-es_ES.po
CHANGED
@@ -5,15 +5,15 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin 4.0.6\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2018-06-
|
9 |
-
"PO-Revision-Date: 2018-
|
10 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
12 |
"Language: es_ES\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
-
"X-Generator: Poedit 2.0.
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-Bookmarks: -1,-1,-1,-1,-1,-1,-1,-1,-1,543\n"
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
@@ -2628,12 +2628,12 @@ msgctxt "form-fields admin"
|
|
2628 |
msgid "Field list of options is required."
|
2629 |
msgstr "La lista de opciones del campo es requerida."
|
2630 |
|
2631 |
-
#: includes/fields/class-fieldtypes-image.php:
|
2632 |
msgctxt "form-fields admin"
|
2633 |
msgid "Display caption?"
|
2634 |
msgstr "Mostrar leyenda?"
|
2635 |
|
2636 |
-
#: includes/fields/class-fieldtypes-image.php:
|
2637 |
msgctxt "form-fields admin"
|
2638 |
msgid "Field Caption required?"
|
2639 |
msgstr "Es requerida la leyenda del campo?"
|
@@ -2764,125 +2764,155 @@ msgctxt "form-fields admin"
|
|
2764 |
msgid "Use rel=\"nofollow\" when displaying the link?"
|
2765 |
msgstr "Utilizar rel=\"nofollow\" cuando se muestre este enlace?"
|
2766 |
|
2767 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2768 |
msgctxt "form-fields admin"
|
2769 |
msgid "Add Form Field"
|
2770 |
msgstr "Agregar Campo de Formulario"
|
2771 |
|
2772 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2773 |
msgctxt "form-fields admin"
|
2774 |
msgid "Field Association"
|
2775 |
msgstr "Asociación del Campo"
|
2776 |
|
2777 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2778 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2779 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2780 |
msgctxt "form-fields admin"
|
2781 |
msgid "required"
|
2782 |
msgstr "requerido"
|
2783 |
|
2784 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2785 |
msgctxt "form-fields admin"
|
2786 |
msgid "Field Type"
|
2787 |
msgstr "Tipo del Campo"
|
2788 |
|
2789 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2790 |
msgctxt "form-fields admin"
|
2791 |
msgid "Field Label"
|
2792 |
msgstr "Nombre del Campo"
|
2793 |
|
2794 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2795 |
msgctxt "form-fields admin"
|
2796 |
msgid "Field description"
|
2797 |
msgstr "Descripción del Campo"
|
2798 |
|
2799 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2800 |
msgctxt "form-fields admin"
|
2801 |
msgid "optional"
|
2802 |
msgstr "opcional"
|
2803 |
|
2804 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2805 |
msgctxt "form-fields admin"
|
2806 |
msgid "Field-specific settings"
|
2807 |
msgstr "Configuración específica del campo"
|
2808 |
|
2809 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2810 |
msgctxt "form-fields admin"
|
2811 |
msgid "Field validation options"
|
2812 |
msgstr "Opciones de validación del campo"
|
2813 |
|
2814 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2815 |
msgctxt "form-fields admin"
|
2816 |
msgid "Field Validator"
|
2817 |
msgstr "Validador del Campo"
|
2818 |
|
2819 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2820 |
msgctxt "form-fields admin"
|
2821 |
msgid "No validation"
|
2822 |
msgstr "Ninguna validación"
|
2823 |
|
2824 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
2825 |
msgctxt "form-fields admin"
|
2826 |
msgid "Is field required?"
|
2827 |
msgstr "Es este campo requerido?"
|
2828 |
|
2829 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2830 |
msgctxt "form-fields admin"
|
2831 |
msgid "This field is required."
|
2832 |
msgstr "Este campo es requerido."
|
2833 |
|
2834 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2835 |
msgctxt "form-fields admin"
|
2836 |
msgid "Field display options"
|
2837 |
msgstr "Opciones de presentación del Campo"
|
2838 |
|
2839 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2840 |
msgctxt "form-fields admin"
|
2841 |
msgid "Show this field to admin users only?"
|
2842 |
msgstr "¿Mostrar este campo solo para usuarios administradores?"
|
2843 |
|
2844 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2845 |
msgctxt "form-fields admin"
|
2846 |
msgid "Display this field to admin users only in the edit listing view."
|
2847 |
msgstr ""
|
2848 |
"Mostrar este campo solo para usuarios administradores en vista de edición."
|
2849 |
|
2850 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2851 |
msgctxt "form-fields admin"
|
2852 |
msgid "Show this value in excerpt view?"
|
2853 |
msgstr "Mostrar este valor en la vista de resumen?"
|
2854 |
|
2855 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2856 |
msgctxt "form-fields admin"
|
2857 |
msgid "Display this value in post excerpt view."
|
2858 |
msgstr "Mostrar este valor en la vista de resumen de un listado."
|
2859 |
|
2860 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2861 |
msgctxt "form-fields admin"
|
2862 |
msgid "Show this value in listing view?"
|
2863 |
msgstr "Mostrar este valor en la vista individual?"
|
2864 |
|
2865 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2866 |
msgctxt "form-fields admin"
|
2867 |
msgid "Display this value in the listing view."
|
2868 |
msgstr "Mostrar este valor en la vista individual de un listado."
|
2869 |
|
2870 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2871 |
msgctxt "form-fields admin"
|
2872 |
msgid "Include this field in the search form?"
|
2873 |
msgstr "Incluir este campo en el formulario de búsqueda?"
|
2874 |
|
2875 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2876 |
msgctxt "form-fields admin"
|
2877 |
msgid "Include this field in the search form."
|
2878 |
msgstr "Incluir este campo en el formulario de búsqueda."
|
2879 |
|
2880 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2881 |
msgctxt "form-fields admin"
|
2882 |
msgid "Is this field required for searching?"
|
2883 |
msgstr "¿Este campo es necesario para buscar?"
|
2884 |
|
2885 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2886 |
msgctxt "form-fields admin"
|
2887 |
msgid ""
|
2888 |
"Make this fields required during searches on the Advanced Search screen."
|
@@ -2890,22 +2920,22 @@ msgstr ""
|
|
2890 |
"Es necesario ingresar un valor para este campo en el formulario de búsqueda "
|
2891 |
"avanzada."
|
2892 |
|
2893 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2894 |
msgctxt "form-fields admin"
|
2895 |
msgid "Hide this field's label?"
|
2896 |
msgstr "Ocultar el nombre de este campo?"
|
2897 |
|
2898 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2899 |
msgctxt "form-fields admin"
|
2900 |
msgid "Hide this field's label when displaying it."
|
2901 |
msgstr "Ocultar el nombre de este campo cuando se esté mostrando."
|
2902 |
|
2903 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2904 |
msgctxt "form-fields admin"
|
2905 |
msgid "Update Field"
|
2906 |
msgstr "Actualizar Campo"
|
2907 |
|
2908 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2909 |
msgctxt "form-fields admin"
|
2910 |
msgid "Add Field"
|
2911 |
msgstr "Agregar Campo"
|
@@ -5865,42 +5895,42 @@ msgctxt "submit listing"
|
|
5865 |
msgid "Please choose a valid fee plan for your category selection."
|
5866 |
msgstr "Por favor elija una comisión válida para la categoría seleccionada."
|
5867 |
|
5868 |
-
#: includes/views/submit_listing.php:
|
5869 |
msgctxt "submit listing"
|
5870 |
msgid "Please enter your desired username."
|
5871 |
msgstr "Por favor ingrese su nombre de usuario."
|
5872 |
|
5873 |
-
#: includes/views/submit_listing.php:
|
5874 |
msgctxt "submit listing"
|
5875 |
msgid "Please enter the e-mail for your new account."
|
5876 |
msgstr ""
|
5877 |
"Por favor ingrese la dirección de correo electrónico para su nueva cuenta."
|
5878 |
|
5879 |
-
#: includes/views/submit_listing.php:
|
5880 |
msgctxt "submit listing"
|
5881 |
msgid "Please enter the password for your new account."
|
5882 |
msgstr "Por favor ingrese la contraseña para su nueva cuenta."
|
5883 |
|
5884 |
-
#: includes/views/submit_listing.php:
|
5885 |
msgctxt "submit listing"
|
5886 |
msgid "The username you chose is already in use. Please use a different one."
|
5887 |
msgstr ""
|
5888 |
"El nombre de usuario que eligió ya está en uso. Por favor elija un nombre de "
|
5889 |
"usuario diferente."
|
5890 |
|
5891 |
-
#: includes/views/submit_listing.php:
|
5892 |
msgctxt "submit listing"
|
5893 |
msgid "The e-mail address you chose for your account is already in use."
|
5894 |
msgstr ""
|
5895 |
"La dirección de correo electrónico que eligió para su cuenta ya está siendo "
|
5896 |
"utilizada."
|
5897 |
|
5898 |
-
#: includes/views/submit_listing.php:
|
5899 |
msgctxt "submit listing"
|
5900 |
msgid "Create a user account on this site"
|
5901 |
msgstr "Crear una cuenta de usuario en este sitio"
|
5902 |
|
5903 |
-
#: includes/views/submit_listing.php:
|
5904 |
msgctxt "submit listing"
|
5905 |
msgid ""
|
5906 |
"You need to create an account on the site. Please fill out the form below."
|
@@ -5908,17 +5938,17 @@ msgstr ""
|
|
5908 |
"Debe crear una cuenta de usuario en este sitio. Por favor ingrese los datos "
|
5909 |
"requeridos en el formulario que está debajo."
|
5910 |
|
5911 |
-
#: includes/views/submit_listing.php:
|
5912 |
msgctxt "submit listing"
|
5913 |
msgid "Username:"
|
5914 |
msgstr "Nombre de usuario:"
|
5915 |
|
5916 |
-
#: includes/views/submit_listing.php:
|
5917 |
msgctxt "submit listing"
|
5918 |
msgid "Email:"
|
5919 |
msgstr "Correo electrónico:"
|
5920 |
|
5921 |
-
#: includes/views/submit_listing.php:
|
5922 |
msgctxt "submit listing"
|
5923 |
msgid "Password:"
|
5924 |
msgstr "Contraseña:"
|
@@ -5948,12 +5978,12 @@ msgctxt "submit listing"
|
|
5948 |
msgid "Save Changes"
|
5949 |
msgstr "Guardar cambios"
|
5950 |
|
5951 |
-
#: includes/class-recaptcha.php:
|
5952 |
msgctxt "recaptcha"
|
5953 |
msgid "The reCAPTCHA wasn't entered correctly."
|
5954 |
msgstr "El reCAPTCHA no fue ingresado correctamente."
|
5955 |
|
5956 |
-
#: includes/class-recaptcha.php:
|
5957 |
msgctxt "recaptcha"
|
5958 |
msgid "reCAPTCHA"
|
5959 |
msgstr "reCAPTCHA"
|
@@ -6058,12 +6088,12 @@ msgctxt "form-fields api"
|
|
6058 |
msgid "Textarea"
|
6059 |
msgstr "Área de texto"
|
6060 |
|
6061 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
6062 |
msgctxt "form-fields api"
|
6063 |
msgid "Textfield"
|
6064 |
msgstr "Campo de texto"
|
6065 |
|
6066 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
6067 |
msgctxt "form-fields api"
|
6068 |
msgid "Format 01/31/1969"
|
6069 |
msgstr "Formato 01/31/1969"
|
@@ -6088,7 +6118,7 @@ msgctxt "form-fields api"
|
|
6088 |
msgid "Link Text (optional):"
|
6089 |
msgstr "Texto del enlace (opcional):"
|
6090 |
|
6091 |
-
#: includes/fields/class-form-field.php:
|
6092 |
msgctxt "form-fields api"
|
6093 |
msgid ""
|
6094 |
"This form field can't be deleted because it is required for the plugin to "
|
@@ -6147,7 +6177,7 @@ msgctxt "date field"
|
|
6147 |
msgid "%s must be a valid date."
|
6148 |
msgstr "%s debe ser una fecha válida."
|
6149 |
|
6150 |
-
#: includes/fields/class-fieldtypes-image.php:
|
6151 |
msgctxt "date field"
|
6152 |
msgid "Caption for %s is required."
|
6153 |
msgstr "Se requiere leyenda para %s."
|
@@ -6157,17 +6187,17 @@ msgctxt "form-fields-api"
|
|
6157 |
msgid "Remove"
|
6158 |
msgstr "Eliminar"
|
6159 |
|
6160 |
-
#: includes/fields/class-form-field.php:
|
6161 |
msgctxt "form-fields-api"
|
6162 |
msgid "Invalid form field type"
|
6163 |
msgstr "Tipo de campo inválido"
|
6164 |
|
6165 |
-
#: includes/fields/class-form-field.php:
|
6166 |
msgctxt "form-fields-api"
|
6167 |
msgid "Field label is required."
|
6168 |
msgstr "El nombre del campo es requerido."
|
6169 |
|
6170 |
-
#: includes/fields/class-form-field.php:
|
6171 |
msgctxt "form-fields-api"
|
6172 |
msgid ""
|
6173 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
@@ -6179,7 +6209,7 @@ msgstr ""
|
|
6179 |
"debe eliminar el campo actual y crear un nuevo campo de tipo %1$s en su "
|
6180 |
"lugar."
|
6181 |
|
6182 |
-
#: includes/fields/class-form-field.php:
|
6183 |
msgctxt "form-fields-api"
|
6184 |
msgid ""
|
6185 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
@@ -6188,7 +6218,7 @@ msgstr ""
|
|
6188 |
"<strong>ADVERTENCIA</strong>: si se elimina este campo, también se "
|
6189 |
"eliminarán los datos de éste en los listados existentes."
|
6190 |
|
6191 |
-
#: includes/fields/class-form-field.php:
|
6192 |
msgctxt "form-fields-api"
|
6193 |
msgid ""
|
6194 |
"There can only be one field with association \"%s\". Please select another "
|
@@ -6197,17 +6227,17 @@ msgstr ""
|
|
6197 |
"Solo puede haber un campo con asociación \"%s\". Por favor elija otra "
|
6198 |
"asociación."
|
6199 |
|
6200 |
-
#: includes/fields/class-form-field.php:
|
6201 |
msgctxt "form-fields-api"
|
6202 |
msgid "\"%s\" is an invalid field type for this association."
|
6203 |
msgstr "\"%s\" es un tipo de campo inválido para esta asociación."
|
6204 |
|
6205 |
-
#: includes/fields/class-form-field.php:
|
6206 |
msgctxt "form-fields-api"
|
6207 |
msgid "Invalid field ID"
|
6208 |
msgstr "ID de campo inválido"
|
6209 |
|
6210 |
-
#: includes/fields/class-form-field.php:
|
6211 |
msgctxt "form-fields-api"
|
6212 |
msgid "An error occurred while trying to delete this field."
|
6213 |
msgstr "Un error ocurrió mientras se trataba de eliminar este campo."
|
@@ -6237,6 +6267,11 @@ msgctxt "form-fields-api"
|
|
6237 |
msgid "Date Validator"
|
6238 |
msgstr "Validador de fechas"
|
6239 |
|
|
|
|
|
|
|
|
|
|
|
6240 |
#: includes/fields/class-fieldtypes-image.php:121
|
6241 |
msgctxt "form fields"
|
6242 |
msgid "Field unavailable at the moment."
|
@@ -6292,51 +6327,61 @@ msgstr ""
|
|
6292 |
"completo sobre el contenido de los listados. ¿Está seguro de que desea "
|
6293 |
"habilitar esta opción?"
|
6294 |
|
6295 |
-
#: includes/form-fields.php:
|
6296 |
msgctxt "form-fields-api validation"
|
6297 |
msgid "Field"
|
6298 |
msgstr "Campo"
|
6299 |
|
6300 |
-
#: includes/form-fields.php:
|
6301 |
msgctxt "form-fields-api validation"
|
6302 |
msgid "%s is required."
|
6303 |
msgstr "%s es requerido."
|
6304 |
|
6305 |
-
#: includes/form-fields.php:
|
6306 |
msgctxt "form-fields-api validation"
|
6307 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
6308 |
msgstr "%s está mal escrita. Una URL válida es requerida. Incluya http://"
|
6309 |
|
6310 |
-
#: includes/form-fields.php:
|
6311 |
msgctxt "form-fields-api validation"
|
6312 |
msgid "%s is badly formatted. Valid Email format required."
|
6313 |
msgstr "%s está mal escrito. Un correo electrónico válido es requerido."
|
6314 |
|
6315 |
-
#: includes/form-fields.php:
|
6316 |
msgctxt "form-fields-api validation"
|
6317 |
msgid "%s must be a number. Decimal values are not allowed."
|
6318 |
msgstr "%s debe ser un número entero. Valores decimales no están permitidos."
|
6319 |
|
6320 |
-
#: includes/form-fields.php:
|
6321 |
msgctxt "form-fields-api validation"
|
6322 |
msgid "%s must be a number."
|
6323 |
msgstr "%s debe ser un número."
|
6324 |
|
6325 |
-
#: includes/form-fields.php:
|
6326 |
msgctxt "form-fields-api validation"
|
6327 |
msgid "%1$s must be in the format %2$s."
|
6328 |
msgstr "%1$s debe estar en el formato MM/DD/YYYY."
|
6329 |
|
6330 |
-
#: includes/form-fields.php:
|
6331 |
msgctxt "form-fields-api validation"
|
6332 |
msgid "%s must be a valid date."
|
6333 |
msgstr "%s debe ser una fecha válida."
|
6334 |
|
6335 |
-
#: includes/form-fields.php:
|
|
|
|
|
|
|
|
|
|
|
6336 |
msgctxt "form-fields-api validation"
|
6337 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
6338 |
msgstr "%1$s es inválido. El valor debe ser uno de %s."
|
6339 |
|
|
|
|
|
|
|
|
|
|
|
6340 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
6341 |
msgctxt "authorize-net"
|
6342 |
msgid "Authorize.net"
|
@@ -7086,17 +7131,17 @@ msgctxt "templates"
|
|
7086 |
msgid "View not available."
|
7087 |
msgstr "Vista no disponible."
|
7088 |
|
7089 |
-
#: includes/views/submit_listing.php:
|
7090 |
msgctxt "templates"
|
7091 |
msgid "Please agree to the Terms and Conditions."
|
7092 |
msgstr "Por favor acepte los Términos y Condiciones."
|
7093 |
|
7094 |
-
#: includes/views/submit_listing.php:
|
7095 |
msgctxt "templates"
|
7096 |
msgid "Terms and Conditions:"
|
7097 |
msgstr "Términos y Condiciones:"
|
7098 |
|
7099 |
-
#: includes/views/submit_listing.php:
|
7100 |
msgctxt "templates"
|
7101 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7102 |
msgstr "Acepto los <a>Términos y Condiciones</a>"
|
@@ -7765,7 +7810,7 @@ msgid "This is just a preview. The listing has not been published yet."
|
|
7765 |
msgstr ""
|
7766 |
"Esta es tan solo una previsualización. El listado no ha sido publicado aún."
|
7767 |
|
7768 |
-
#: includes/views/submit_listing.php:
|
7769 |
msgctxt "listing submit"
|
7770 |
msgid ""
|
7771 |
"Something went wrong. Please check the form for errors, correct them and "
|
@@ -7774,7 +7819,7 @@ msgstr ""
|
|
7774 |
"Algo salió mal. Por favor verifique que el formulario no contiene errores y "
|
7775 |
"envíelo de nuevo."
|
7776 |
|
7777 |
-
#: includes/views/submit_listing.php:
|
7778 |
msgctxt "listing submit"
|
7779 |
msgid ""
|
7780 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -8018,113 +8063,123 @@ msgctxt "admin sidebar"
|
|
8018 |
msgid "Elegant Business Theme"
|
8019 |
msgstr "Elegant Business Theme"
|
8020 |
|
8021 |
-
#: templates/admin/sidebar.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8022 |
msgctxt "admin sidebar"
|
8023 |
msgid "Like this plugin?"
|
8024 |
msgstr "Le gusta este plugin?"
|
8025 |
|
8026 |
-
#: templates/admin/sidebar.tpl.php:
|
8027 |
msgctxt "admin sidebar"
|
8028 |
msgid "Why not do any or all of the following:"
|
8029 |
msgstr "Por qué no hace alguna o todas de las siguientes cosas:"
|
8030 |
|
8031 |
-
#: templates/admin/sidebar.tpl.php:
|
8032 |
msgctxt "admin sidebar"
|
8033 |
msgid "Give it a good rating on WordPress.org."
|
8034 |
msgstr "Darle una buena calificación en WordPress.org."
|
8035 |
|
8036 |
-
#: templates/admin/sidebar.tpl.php:
|
8037 |
msgctxt "admin sidebar"
|
8038 |
msgid "Let other people know that it works with your WordPress setup."
|
8039 |
msgstr ""
|
8040 |
"Contarle a otras personas que funciona con su instalación de WordPress."
|
8041 |
|
8042 |
-
#: templates/admin/sidebar.tpl.php:
|
8043 |
msgctxt "admin sidebar"
|
8044 |
msgid "Buy a Premium Module"
|
8045 |
msgstr "Comprar un Módulo Premium"
|
8046 |
|
8047 |
-
#: templates/admin/sidebar.tpl.php:
|
8048 |
msgctxt "admin sidebar"
|
8049 |
msgid "Get a Premium Module"
|
8050 |
msgstr "Obtener un Módulo Premium"
|
8051 |
|
8052 |
-
#: templates/admin/sidebar.tpl.php:
|
8053 |
msgctxt "admin sidebar"
|
8054 |
msgid "best deal"
|
8055 |
msgstr "mejor precio"
|
8056 |
|
8057 |
-
#: templates/admin/sidebar.tpl.php:
|
8058 |
msgctxt "admin sidebar"
|
8059 |
msgid "Combo Pack"
|
8060 |
msgstr "Paquete de plugins"
|
8061 |
|
8062 |
-
#: templates/admin/sidebar.tpl.php:
|
8063 |
msgctxt "admin sidebar"
|
8064 |
msgid "(All Modules)"
|
8065 |
msgstr "(Todos los módulos)"
|
8066 |
|
8067 |
-
#: templates/admin/sidebar.tpl.php:
|
8068 |
msgctxt "admin sidebar"
|
8069 |
msgid "new"
|
8070 |
msgstr "nuevo"
|
8071 |
|
8072 |
-
#: templates/admin/sidebar.tpl.php:
|
8073 |
msgctxt "admin sidebar"
|
8074 |
msgid "Get a Directory Theme"
|
8075 |
msgstr "Obtener un tema del Directorio"
|
8076 |
|
8077 |
-
#: templates/admin/sidebar.tpl.php:
|
8078 |
msgctxt "admin sidebar"
|
8079 |
msgid "Theme Pack"
|
8080 |
msgstr "Paquete de temas"
|
8081 |
|
8082 |
-
#: templates/admin/sidebar.tpl.php:
|
8083 |
msgctxt "admin sidebar"
|
8084 |
msgid "(All Themes)"
|
8085 |
msgstr "(Todos los temas)"
|
8086 |
|
8087 |
-
#: templates/admin/sidebar.tpl.php:
|
8088 |
msgctxt "admin sidebar"
|
8089 |
msgid "Found a bug? Need support?"
|
8090 |
msgstr "Encontró un error? Necesita soporte?"
|
8091 |
|
8092 |
-
#: templates/admin/sidebar.tpl.php:
|
8093 |
msgctxt "admin sidebar"
|
8094 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
8095 |
msgstr "Si ha encontrado un error o necesita soporte <a>¡visite los foros!</a>"
|
8096 |
|
8097 |
-
#: templates/admin/sidebar.tpl.php:
|
8098 |
msgctxt "admin sidebar"
|
8099 |
msgid "Full plugin documentation"
|
8100 |
msgstr "Documentación completa del plugin"
|
8101 |
|
8102 |
-
#: templates/admin/sidebar.tpl.php:
|
8103 |
msgctxt "admin sidebar"
|
8104 |
msgid "Quick Start Guide"
|
8105 |
msgstr "Guía de Inicio Rápido"
|
8106 |
|
8107 |
-
#: templates/admin/sidebar.tpl.php:
|
8108 |
msgctxt "admin sidebar"
|
8109 |
msgid "Video Tutorials"
|
8110 |
msgstr "Videotutoriales"
|
8111 |
|
8112 |
-
#: templates/admin/sidebar.tpl.php:
|
8113 |
msgctxt "admin sidebar"
|
8114 |
msgid "Installed Modules"
|
8115 |
msgstr "Módulos Instalados"
|
8116 |
|
8117 |
-
#: templates/admin/sidebar.tpl.php:
|
8118 |
msgctxt "admin sidebar"
|
8119 |
msgid "Installed"
|
8120 |
msgstr "Instalado"
|
8121 |
|
8122 |
-
#: templates/admin/sidebar.tpl.php:
|
8123 |
msgctxt "admin sidebar"
|
8124 |
msgid "Not Installed"
|
8125 |
msgstr "No Instalado"
|
8126 |
|
8127 |
-
#: templates/admin/sidebar.tpl.php:
|
8128 |
msgctxt "admin sidebar"
|
8129 |
msgid "Enhanced Categories Module"
|
8130 |
msgstr "Enhanced Categories Module"
|
5 |
"Project-Id-Version: Business Directory Plugin 4.0.6\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2018-06-27 21:14:25+00:00\n"
|
9 |
+
"PO-Revision-Date: 2018-06-27 16:17-0500\n"
|
10 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
12 |
"Language: es_ES\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"X-Generator: Poedit 2.0.8\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-Bookmarks: -1,-1,-1,-1,-1,-1,-1,-1,-1,543\n"
|
19 |
"X-Poedit-SourceCharset: UTF-8\n"
|
2628 |
msgid "Field list of options is required."
|
2629 |
msgstr "La lista de opciones del campo es requerida."
|
2630 |
|
2631 |
+
#: includes/fields/class-fieldtypes-image.php:55
|
2632 |
msgctxt "form-fields admin"
|
2633 |
msgid "Display caption?"
|
2634 |
msgstr "Mostrar leyenda?"
|
2635 |
|
2636 |
+
#: includes/fields/class-fieldtypes-image.php:58
|
2637 |
msgctxt "form-fields admin"
|
2638 |
msgid "Field Caption required?"
|
2639 |
msgstr "Es requerida la leyenda del campo?"
|
2764 |
msgid "Use rel=\"nofollow\" when displaying the link?"
|
2765 |
msgstr "Utilizar rel=\"nofollow\" cuando se muestre este enlace?"
|
2766 |
|
2767 |
+
#: templates/admin/form-fields-addoredit.tpl.php:8
|
2768 |
msgctxt "form-fields admin"
|
2769 |
msgid "Add Form Field"
|
2770 |
msgstr "Agregar Campo de Formulario"
|
2771 |
|
2772 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
2773 |
msgctxt "form-fields admin"
|
2774 |
msgid "Field Association"
|
2775 |
msgstr "Asociación del Campo"
|
2776 |
|
2777 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
2778 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
2779 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
2780 |
msgctxt "form-fields admin"
|
2781 |
msgid "required"
|
2782 |
msgstr "requerido"
|
2783 |
|
2784 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
2785 |
msgctxt "form-fields admin"
|
2786 |
msgid "Field Type"
|
2787 |
msgstr "Tipo del Campo"
|
2788 |
|
2789 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
2790 |
msgctxt "form-fields admin"
|
2791 |
msgid "Field Label"
|
2792 |
msgstr "Nombre del Campo"
|
2793 |
|
2794 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
2795 |
msgctxt "form-fields admin"
|
2796 |
msgid "Field description"
|
2797 |
msgstr "Descripción del Campo"
|
2798 |
|
2799 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
2800 |
msgctxt "form-fields admin"
|
2801 |
msgid "optional"
|
2802 |
msgstr "opcional"
|
2803 |
|
2804 |
+
#: templates/admin/form-fields-addoredit.tpl.php:97
|
2805 |
msgctxt "form-fields admin"
|
2806 |
msgid "Field-specific settings"
|
2807 |
msgstr "Configuración específica del campo"
|
2808 |
|
2809 |
+
#: templates/admin/form-fields-addoredit.tpl.php:106
|
2810 |
msgctxt "form-fields admin"
|
2811 |
msgid "Field validation options"
|
2812 |
msgstr "Opciones de validación del campo"
|
2813 |
|
2814 |
+
#: templates/admin/form-fields-addoredit.tpl.php:110
|
2815 |
msgctxt "form-fields admin"
|
2816 |
msgid "Field Validator"
|
2817 |
msgstr "Validador del Campo"
|
2818 |
|
2819 |
+
#: templates/admin/form-fields-addoredit.tpl.php:114
|
2820 |
msgctxt "form-fields admin"
|
2821 |
msgid "No validation"
|
2822 |
msgstr "Ninguna validación"
|
2823 |
|
2824 |
+
#: templates/admin/form-fields-addoredit.tpl.php:126
|
2825 |
+
msgctxt "form-fields admin"
|
2826 |
+
msgid "Number of words"
|
2827 |
+
msgstr "Número de palabras:"
|
2828 |
+
|
2829 |
+
#: templates/admin/form-fields-addoredit.tpl.php:136
|
2830 |
msgctxt "form-fields admin"
|
2831 |
msgid "Is field required?"
|
2832 |
msgstr "Es este campo requerido?"
|
2833 |
|
2834 |
+
#: templates/admin/form-fields-addoredit.tpl.php:142
|
2835 |
msgctxt "form-fields admin"
|
2836 |
msgid "This field is required."
|
2837 |
msgstr "Este campo es requerido."
|
2838 |
|
2839 |
+
#: templates/admin/form-fields-addoredit.tpl.php:150
|
2840 |
msgctxt "form-fields admin"
|
2841 |
msgid "Field display options"
|
2842 |
msgstr "Opciones de presentación del Campo"
|
2843 |
|
2844 |
+
#: templates/admin/form-fields-addoredit.tpl.php:154
|
2845 |
+
msgctxt "form-fields admin"
|
2846 |
+
msgid "Field Category Policy:"
|
2847 |
+
msgstr "Política de categoría de campo:"
|
2848 |
+
|
2849 |
+
#: templates/admin/form-fields-addoredit.tpl.php:159
|
2850 |
+
msgctxt "form-fields admin"
|
2851 |
+
msgid "Field applies to all categories"
|
2852 |
+
msgstr "El campo aplica para todas las categorías"
|
2853 |
+
|
2854 |
+
#: templates/admin/form-fields-addoredit.tpl.php:160
|
2855 |
+
msgctxt "form-fields admin"
|
2856 |
+
msgid "Field applies to only certain categories"
|
2857 |
+
msgstr "El campo se aplica a algunas categorías"
|
2858 |
+
|
2859 |
+
#: templates/admin/form-fields-addoredit.tpl.php:164
|
2860 |
+
msgctxt "form-fields admin"
|
2861 |
+
msgid "Limit field to the following categories:"
|
2862 |
+
msgstr "Limitar el campo a las siguientes categorías:"
|
2863 |
+
|
2864 |
+
#: templates/admin/form-fields-addoredit.tpl.php:188
|
2865 |
+
msgctxt "form-fields admin"
|
2866 |
+
msgid "Click to add categories to the selection."
|
2867 |
+
msgstr "Haga click para agregar categorías a la selección."
|
2868 |
+
|
2869 |
+
#: templates/admin/form-fields-addoredit.tpl.php:201
|
2870 |
msgctxt "form-fields admin"
|
2871 |
msgid "Show this field to admin users only?"
|
2872 |
msgstr "¿Mostrar este campo solo para usuarios administradores?"
|
2873 |
|
2874 |
+
#: templates/admin/form-fields-addoredit.tpl.php:207
|
2875 |
msgctxt "form-fields admin"
|
2876 |
msgid "Display this field to admin users only in the edit listing view."
|
2877 |
msgstr ""
|
2878 |
"Mostrar este campo solo para usuarios administradores en vista de edición."
|
2879 |
|
2880 |
+
#: templates/admin/form-fields-addoredit.tpl.php:213
|
2881 |
msgctxt "form-fields admin"
|
2882 |
msgid "Show this value in excerpt view?"
|
2883 |
msgstr "Mostrar este valor en la vista de resumen?"
|
2884 |
|
2885 |
+
#: templates/admin/form-fields-addoredit.tpl.php:219
|
2886 |
msgctxt "form-fields admin"
|
2887 |
msgid "Display this value in post excerpt view."
|
2888 |
msgstr "Mostrar este valor en la vista de resumen de un listado."
|
2889 |
|
2890 |
+
#: templates/admin/form-fields-addoredit.tpl.php:225
|
2891 |
msgctxt "form-fields admin"
|
2892 |
msgid "Show this value in listing view?"
|
2893 |
msgstr "Mostrar este valor en la vista individual?"
|
2894 |
|
2895 |
+
#: templates/admin/form-fields-addoredit.tpl.php:231
|
2896 |
msgctxt "form-fields admin"
|
2897 |
msgid "Display this value in the listing view."
|
2898 |
msgstr "Mostrar este valor en la vista individual de un listado."
|
2899 |
|
2900 |
+
#: templates/admin/form-fields-addoredit.tpl.php:237
|
2901 |
msgctxt "form-fields admin"
|
2902 |
msgid "Include this field in the search form?"
|
2903 |
msgstr "Incluir este campo en el formulario de búsqueda?"
|
2904 |
|
2905 |
+
#: templates/admin/form-fields-addoredit.tpl.php:243
|
2906 |
msgctxt "form-fields admin"
|
2907 |
msgid "Include this field in the search form."
|
2908 |
msgstr "Incluir este campo en el formulario de búsqueda."
|
2909 |
|
2910 |
+
#: templates/admin/form-fields-addoredit.tpl.php:249
|
2911 |
msgctxt "form-fields admin"
|
2912 |
msgid "Is this field required for searching?"
|
2913 |
msgstr "¿Este campo es necesario para buscar?"
|
2914 |
|
2915 |
+
#: templates/admin/form-fields-addoredit.tpl.php:255
|
2916 |
msgctxt "form-fields admin"
|
2917 |
msgid ""
|
2918 |
"Make this fields required during searches on the Advanced Search screen."
|
2920 |
"Es necesario ingresar un valor para este campo en el formulario de búsqueda "
|
2921 |
"avanzada."
|
2922 |
|
2923 |
+
#: templates/admin/form-fields-addoredit.tpl.php:261
|
2924 |
msgctxt "form-fields admin"
|
2925 |
msgid "Hide this field's label?"
|
2926 |
msgstr "Ocultar el nombre de este campo?"
|
2927 |
|
2928 |
+
#: templates/admin/form-fields-addoredit.tpl.php:267
|
2929 |
msgctxt "form-fields admin"
|
2930 |
msgid "Hide this field's label when displaying it."
|
2931 |
msgstr "Ocultar el nombre de este campo cuando se esté mostrando."
|
2932 |
|
2933 |
+
#: templates/admin/form-fields-addoredit.tpl.php:274
|
2934 |
msgctxt "form-fields admin"
|
2935 |
msgid "Update Field"
|
2936 |
msgstr "Actualizar Campo"
|
2937 |
|
2938 |
+
#: templates/admin/form-fields-addoredit.tpl.php:276
|
2939 |
msgctxt "form-fields admin"
|
2940 |
msgid "Add Field"
|
2941 |
msgstr "Agregar Campo"
|
5895 |
msgid "Please choose a valid fee plan for your category selection."
|
5896 |
msgstr "Por favor elija una comisión válida para la categoría seleccionada."
|
5897 |
|
5898 |
+
#: includes/views/submit_listing.php:743
|
5899 |
msgctxt "submit listing"
|
5900 |
msgid "Please enter your desired username."
|
5901 |
msgstr "Por favor ingrese su nombre de usuario."
|
5902 |
|
5903 |
+
#: includes/views/submit_listing.php:748
|
5904 |
msgctxt "submit listing"
|
5905 |
msgid "Please enter the e-mail for your new account."
|
5906 |
msgstr ""
|
5907 |
"Por favor ingrese la dirección de correo electrónico para su nueva cuenta."
|
5908 |
|
5909 |
+
#: includes/views/submit_listing.php:753
|
5910 |
msgctxt "submit listing"
|
5911 |
msgid "Please enter the password for your new account."
|
5912 |
msgstr "Por favor ingrese la contraseña para su nueva cuenta."
|
5913 |
|
5914 |
+
#: includes/views/submit_listing.php:763
|
5915 |
msgctxt "submit listing"
|
5916 |
msgid "The username you chose is already in use. Please use a different one."
|
5917 |
msgstr ""
|
5918 |
"El nombre de usuario que eligió ya está en uso. Por favor elija un nombre de "
|
5919 |
"usuario diferente."
|
5920 |
|
5921 |
+
#: includes/views/submit_listing.php:768
|
5922 |
msgctxt "submit listing"
|
5923 |
msgid "The e-mail address you chose for your account is already in use."
|
5924 |
msgstr ""
|
5925 |
"La dirección de correo electrónico que eligió para su cuenta ya está siendo "
|
5926 |
"utilizada."
|
5927 |
|
5928 |
+
#: includes/views/submit_listing.php:783
|
5929 |
msgctxt "submit listing"
|
5930 |
msgid "Create a user account on this site"
|
5931 |
msgstr "Crear una cuenta de usuario en este sitio"
|
5932 |
|
5933 |
+
#: includes/views/submit_listing.php:790
|
5934 |
msgctxt "submit listing"
|
5935 |
msgid ""
|
5936 |
"You need to create an account on the site. Please fill out the form below."
|
5938 |
"Debe crear una cuenta de usuario en este sitio. Por favor ingrese los datos "
|
5939 |
"requeridos en el formulario que está debajo."
|
5940 |
|
5941 |
+
#: includes/views/submit_listing.php:796
|
5942 |
msgctxt "submit listing"
|
5943 |
msgid "Username:"
|
5944 |
msgstr "Nombre de usuario:"
|
5945 |
|
5946 |
+
#: includes/views/submit_listing.php:805
|
5947 |
msgctxt "submit listing"
|
5948 |
msgid "Email:"
|
5949 |
msgstr "Correo electrónico:"
|
5950 |
|
5951 |
+
#: includes/views/submit_listing.php:814
|
5952 |
msgctxt "submit listing"
|
5953 |
msgid "Password:"
|
5954 |
msgstr "Contraseña:"
|
5978 |
msgid "Save Changes"
|
5979 |
msgstr "Guardar cambios"
|
5980 |
|
5981 |
+
#: includes/class-recaptcha.php:109 includes/class-recaptcha.php:150
|
5982 |
msgctxt "recaptcha"
|
5983 |
msgid "The reCAPTCHA wasn't entered correctly."
|
5984 |
msgstr "El reCAPTCHA no fue ingresado correctamente."
|
5985 |
|
5986 |
+
#: includes/class-recaptcha.php:211
|
5987 |
msgctxt "recaptcha"
|
5988 |
msgid "reCAPTCHA"
|
5989 |
msgstr "reCAPTCHA"
|
6088 |
msgid "Textarea"
|
6089 |
msgstr "Área de texto"
|
6090 |
|
6091 |
+
#: includes/fields/class-fieldtypes-textfield.php:13
|
6092 |
msgctxt "form-fields api"
|
6093 |
msgid "Textfield"
|
6094 |
msgstr "Campo de texto"
|
6095 |
|
6096 |
+
#: includes/fields/class-fieldtypes-textfield.php:50
|
6097 |
msgctxt "form-fields api"
|
6098 |
msgid "Format 01/31/1969"
|
6099 |
msgstr "Formato 01/31/1969"
|
6118 |
msgid "Link Text (optional):"
|
6119 |
msgstr "Texto del enlace (opcional):"
|
6120 |
|
6121 |
+
#: includes/fields/class-form-field.php:707
|
6122 |
msgctxt "form-fields api"
|
6123 |
msgid ""
|
6124 |
"This form field can't be deleted because it is required for the plugin to "
|
6177 |
msgid "%s must be a valid date."
|
6178 |
msgstr "%s debe ser una fecha válida."
|
6179 |
|
6180 |
+
#: includes/fields/class-fieldtypes-image.php:41
|
6181 |
msgctxt "date field"
|
6182 |
msgid "Caption for %s is required."
|
6183 |
msgstr "Se requiere leyenda para %s."
|
6187 |
msgid "Remove"
|
6188 |
msgstr "Eliminar"
|
6189 |
|
6190 |
+
#: includes/fields/class-form-field.php:66
|
6191 |
msgctxt "form-fields-api"
|
6192 |
msgid "Invalid form field type"
|
6193 |
msgstr "Tipo de campo inválido"
|
6194 |
|
6195 |
+
#: includes/fields/class-form-field.php:585
|
6196 |
msgctxt "form-fields-api"
|
6197 |
msgid "Field label is required."
|
6198 |
msgstr "El nombre del campo es requerido."
|
6199 |
|
6200 |
+
#: includes/fields/class-form-field.php:596
|
6201 |
msgctxt "form-fields-api"
|
6202 |
msgid ""
|
6203 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
6209 |
"debe eliminar el campo actual y crear un nuevo campo de tipo %1$s en su "
|
6210 |
"lugar."
|
6211 |
|
6212 |
+
#: includes/fields/class-form-field.php:599
|
6213 |
msgctxt "form-fields-api"
|
6214 |
msgid ""
|
6215 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
6218 |
"<strong>ADVERTENCIA</strong>: si se elimina este campo, también se "
|
6219 |
"eliminarán los datos de éste en los listados existentes."
|
6220 |
|
6221 |
+
#: includes/fields/class-form-field.php:633
|
6222 |
msgctxt "form-fields-api"
|
6223 |
msgid ""
|
6224 |
"There can only be one field with association \"%s\". Please select another "
|
6227 |
"Solo puede haber un campo con asociación \"%s\". Por favor elija otra "
|
6228 |
"asociación."
|
6229 |
|
6230 |
+
#: includes/fields/class-form-field.php:643
|
6231 |
msgctxt "form-fields-api"
|
6232 |
msgid "\"%s\" is an invalid field type for this association."
|
6233 |
msgstr "\"%s\" es un tipo de campo inválido para esta asociación."
|
6234 |
|
6235 |
+
#: includes/fields/class-form-field.php:697
|
6236 |
msgctxt "form-fields-api"
|
6237 |
msgid "Invalid field ID"
|
6238 |
msgstr "ID de campo inválido"
|
6239 |
|
6240 |
+
#: includes/fields/class-form-field.php:720
|
6241 |
msgctxt "form-fields-api"
|
6242 |
msgid "An error occurred while trying to delete this field."
|
6243 |
msgstr "Un error ocurrió mientras se trataba de eliminar este campo."
|
6267 |
msgid "Date Validator"
|
6268 |
msgstr "Validador de fechas"
|
6269 |
|
6270 |
+
#: includes/form-fields.php:574
|
6271 |
+
msgctxt "form-fields-api"
|
6272 |
+
msgid "Word Count Validator"
|
6273 |
+
msgstr "Validador número de palabras"
|
6274 |
+
|
6275 |
#: includes/fields/class-fieldtypes-image.php:121
|
6276 |
msgctxt "form fields"
|
6277 |
msgid "Field unavailable at the moment."
|
6327 |
"completo sobre el contenido de los listados. ¿Está seguro de que desea "
|
6328 |
"habilitar esta opción?"
|
6329 |
|
6330 |
+
#: includes/form-fields.php:581
|
6331 |
msgctxt "form-fields-api validation"
|
6332 |
msgid "Field"
|
6333 |
msgstr "Campo"
|
6334 |
|
6335 |
+
#: includes/form-fields.php:602 includes/form-fields.php:607
|
6336 |
msgctxt "form-fields-api validation"
|
6337 |
msgid "%s is required."
|
6338 |
msgstr "%s es requerido."
|
6339 |
|
6340 |
+
#: includes/form-fields.php:619 includes/form-fields.php:626
|
6341 |
msgctxt "form-fields-api validation"
|
6342 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
6343 |
msgstr "%s está mal escrita. Una URL válida es requerida. Incluya http://"
|
6344 |
|
6345 |
+
#: includes/form-fields.php:641
|
6346 |
msgctxt "form-fields-api validation"
|
6347 |
msgid "%s is badly formatted. Valid Email format required."
|
6348 |
msgstr "%s está mal escrito. Un correo electrónico válido es requerido."
|
6349 |
|
6350 |
+
#: includes/form-fields.php:648
|
6351 |
msgctxt "form-fields-api validation"
|
6352 |
msgid "%s must be a number. Decimal values are not allowed."
|
6353 |
msgstr "%s debe ser un número entero. Valores decimales no están permitidos."
|
6354 |
|
6355 |
+
#: includes/form-fields.php:655
|
6356 |
msgctxt "form-fields-api validation"
|
6357 |
msgid "%s must be a number."
|
6358 |
msgstr "%s debe ser un número."
|
6359 |
|
6360 |
+
#: includes/form-fields.php:674
|
6361 |
msgctxt "form-fields-api validation"
|
6362 |
msgid "%1$s must be in the format %2$s."
|
6363 |
msgstr "%1$s debe estar en el formato MM/DD/YYYY."
|
6364 |
|
6365 |
+
#: includes/form-fields.php:712
|
6366 |
msgctxt "form-fields-api validation"
|
6367 |
msgid "%s must be a valid date."
|
6368 |
msgstr "%s debe ser una fecha válida."
|
6369 |
|
6370 |
+
#: includes/form-fields.php:735
|
6371 |
+
msgctxt "form-fields-api validation"
|
6372 |
+
msgid "%s must have less than %d words."
|
6373 |
+
msgstr "%s debe tener menos de %d palabras."
|
6374 |
+
|
6375 |
+
#: includes/form-fields.php:754
|
6376 |
msgctxt "form-fields-api validation"
|
6377 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
6378 |
msgstr "%1$s es inválido. El valor debe ser uno de %s."
|
6379 |
|
6380 |
+
#: includes/form-fields.php:719
|
6381 |
+
msgctxt "image field"
|
6382 |
+
msgid "Caption for %s is required."
|
6383 |
+
msgstr "Se requiere leyenda para %s."
|
6384 |
+
|
6385 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
6386 |
msgctxt "authorize-net"
|
6387 |
msgid "Authorize.net"
|
7131 |
msgid "View not available."
|
7132 |
msgstr "Vista no disponible."
|
7133 |
|
7134 |
+
#: includes/views/submit_listing.php:852
|
7135 |
msgctxt "templates"
|
7136 |
msgid "Please agree to the Terms and Conditions."
|
7137 |
msgstr "Por favor acepte los Términos y Condiciones."
|
7138 |
|
7139 |
+
#: includes/views/submit_listing.php:860
|
7140 |
msgctxt "templates"
|
7141 |
msgid "Terms and Conditions:"
|
7142 |
msgstr "Términos y Condiciones:"
|
7143 |
|
7144 |
+
#: includes/views/submit_listing.php:869
|
7145 |
msgctxt "templates"
|
7146 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7147 |
msgstr "Acepto los <a>Términos y Condiciones</a>"
|
7810 |
msgstr ""
|
7811 |
"Esta es tan solo una previsualización. El listado no ha sido publicado aún."
|
7812 |
|
7813 |
+
#: includes/views/submit_listing.php:613
|
7814 |
msgctxt "listing submit"
|
7815 |
msgid ""
|
7816 |
"Something went wrong. Please check the form for errors, correct them and "
|
7819 |
"Algo salió mal. Por favor verifique que el formulario no contiene errores y "
|
7820 |
"envíelo de nuevo."
|
7821 |
|
7822 |
+
#: includes/views/submit_listing.php:695
|
7823 |
msgctxt "listing submit"
|
7824 |
msgid ""
|
7825 |
"Image upload is required, please provide at least one image and submit again."
|
8063 |
msgid "Elegant Business Theme"
|
8064 |
msgstr "Elegant Business Theme"
|
8065 |
|
8066 |
+
#: templates/admin/sidebar.tpl.php:23
|
8067 |
+
msgctxt "admin sidebar"
|
8068 |
+
msgid "Modern Business Theme"
|
8069 |
+
msgstr "Modern Business Theme"
|
8070 |
+
|
8071 |
+
#: templates/admin/sidebar.tpl.php:24
|
8072 |
+
msgctxt "admin sidebar"
|
8073 |
+
msgid "Modern Filtered Theme"
|
8074 |
+
msgstr "Modern Filtered Theme"
|
8075 |
+
|
8076 |
+
#: templates/admin/sidebar.tpl.php:31
|
8077 |
msgctxt "admin sidebar"
|
8078 |
msgid "Like this plugin?"
|
8079 |
msgstr "Le gusta este plugin?"
|
8080 |
|
8081 |
+
#: templates/admin/sidebar.tpl.php:33
|
8082 |
msgctxt "admin sidebar"
|
8083 |
msgid "Why not do any or all of the following:"
|
8084 |
msgstr "Por qué no hace alguna o todas de las siguientes cosas:"
|
8085 |
|
8086 |
+
#: templates/admin/sidebar.tpl.php:35
|
8087 |
msgctxt "admin sidebar"
|
8088 |
msgid "Give it a good rating on WordPress.org."
|
8089 |
msgstr "Darle una buena calificación en WordPress.org."
|
8090 |
|
8091 |
+
#: templates/admin/sidebar.tpl.php:36
|
8092 |
msgctxt "admin sidebar"
|
8093 |
msgid "Let other people know that it works with your WordPress setup."
|
8094 |
msgstr ""
|
8095 |
"Contarle a otras personas que funciona con su instalación de WordPress."
|
8096 |
|
8097 |
+
#: templates/admin/sidebar.tpl.php:37
|
8098 |
msgctxt "admin sidebar"
|
8099 |
msgid "Buy a Premium Module"
|
8100 |
msgstr "Comprar un Módulo Premium"
|
8101 |
|
8102 |
+
#: templates/admin/sidebar.tpl.php:44
|
8103 |
msgctxt "admin sidebar"
|
8104 |
msgid "Get a Premium Module"
|
8105 |
msgstr "Obtener un Módulo Premium"
|
8106 |
|
8107 |
+
#: templates/admin/sidebar.tpl.php:47 templates/admin/sidebar.tpl.php:63
|
8108 |
msgctxt "admin sidebar"
|
8109 |
msgid "best deal"
|
8110 |
msgstr "mejor precio"
|
8111 |
|
8112 |
+
#: templates/admin/sidebar.tpl.php:47
|
8113 |
msgctxt "admin sidebar"
|
8114 |
msgid "Combo Pack"
|
8115 |
msgstr "Paquete de plugins"
|
8116 |
|
8117 |
+
#: templates/admin/sidebar.tpl.php:47
|
8118 |
msgctxt "admin sidebar"
|
8119 |
msgid "(All Modules)"
|
8120 |
msgstr "(Todos los módulos)"
|
8121 |
|
8122 |
+
#: templates/admin/sidebar.tpl.php:50 templates/admin/sidebar.tpl.php:66
|
8123 |
msgctxt "admin sidebar"
|
8124 |
msgid "new"
|
8125 |
msgstr "nuevo"
|
8126 |
|
8127 |
+
#: templates/admin/sidebar.tpl.php:60
|
8128 |
msgctxt "admin sidebar"
|
8129 |
msgid "Get a Directory Theme"
|
8130 |
msgstr "Obtener un tema del Directorio"
|
8131 |
|
8132 |
+
#: templates/admin/sidebar.tpl.php:63
|
8133 |
msgctxt "admin sidebar"
|
8134 |
msgid "Theme Pack"
|
8135 |
msgstr "Paquete de temas"
|
8136 |
|
8137 |
+
#: templates/admin/sidebar.tpl.php:63
|
8138 |
msgctxt "admin sidebar"
|
8139 |
msgid "(All Themes)"
|
8140 |
msgstr "(Todos los temas)"
|
8141 |
|
8142 |
+
#: templates/admin/sidebar.tpl.php:76
|
8143 |
msgctxt "admin sidebar"
|
8144 |
msgid "Found a bug? Need support?"
|
8145 |
msgstr "Encontró un error? Necesita soporte?"
|
8146 |
|
8147 |
+
#: templates/admin/sidebar.tpl.php:81
|
8148 |
msgctxt "admin sidebar"
|
8149 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
8150 |
msgstr "Si ha encontrado un error o necesita soporte <a>¡visite los foros!</a>"
|
8151 |
|
8152 |
+
#: templates/admin/sidebar.tpl.php:84
|
8153 |
msgctxt "admin sidebar"
|
8154 |
msgid "Full plugin documentation"
|
8155 |
msgstr "Documentación completa del plugin"
|
8156 |
|
8157 |
+
#: templates/admin/sidebar.tpl.php:85
|
8158 |
msgctxt "admin sidebar"
|
8159 |
msgid "Quick Start Guide"
|
8160 |
msgstr "Guía de Inicio Rápido"
|
8161 |
|
8162 |
+
#: templates/admin/sidebar.tpl.php:86
|
8163 |
msgctxt "admin sidebar"
|
8164 |
msgid "Video Tutorials"
|
8165 |
msgstr "Videotutoriales"
|
8166 |
|
8167 |
+
#: templates/admin/sidebar.tpl.php:94
|
8168 |
msgctxt "admin sidebar"
|
8169 |
msgid "Installed Modules"
|
8170 |
msgstr "Módulos Instalados"
|
8171 |
|
8172 |
+
#: templates/admin/sidebar.tpl.php:105 templates/admin/sidebar.tpl.php:114
|
8173 |
msgctxt "admin sidebar"
|
8174 |
msgid "Installed"
|
8175 |
msgstr "Instalado"
|
8176 |
|
8177 |
+
#: templates/admin/sidebar.tpl.php:107 templates/admin/sidebar.tpl.php:114
|
8178 |
msgctxt "admin sidebar"
|
8179 |
msgid "Not Installed"
|
8180 |
msgstr "No Instalado"
|
8181 |
|
8182 |
+
#: templates/admin/sidebar.tpl.php:113
|
8183 |
msgctxt "admin sidebar"
|
8184 |
msgid "Enhanced Categories Module"
|
8185 |
msgstr "Enhanced Categories Module"
|
languages/WPBDM-fr_FR.mo
CHANGED
Binary file
|
languages/WPBDM-fr_FR.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin 3.6\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2018-06-
|
9 |
"PO-Revision-Date: 2017-11-13 00:48+0100\n"
|
10 |
"Last-Translator: Laurent Provin <lprovin@yahoo.fr>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
@@ -2655,13 +2655,13 @@ msgctxt "form-fields admin"
|
|
2655 |
msgid "Field list of options is required."
|
2656 |
msgstr "La liste des options est obligatoire."
|
2657 |
|
2658 |
-
#: includes/fields/class-fieldtypes-image.php:
|
2659 |
#, fuzzy
|
2660 |
msgctxt "form-fields admin"
|
2661 |
msgid "Display caption?"
|
2662 |
msgstr "Champ d'options d'affichage"
|
2663 |
|
2664 |
-
#: includes/fields/class-fieldtypes-image.php:
|
2665 |
#, fuzzy
|
2666 |
msgctxt "form-fields admin"
|
2667 |
msgid "Field Caption required?"
|
@@ -2783,146 +2783,182 @@ msgctxt "form-fields admin"
|
|
2783 |
msgid "Use rel=\"nofollow\" when displaying the link?"
|
2784 |
msgstr "Utiliser rel=\"nofollow\" lors de l'affichage du lien?"
|
2785 |
|
2786 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2787 |
msgctxt "form-fields admin"
|
2788 |
msgid "Add Form Field"
|
2789 |
msgstr "Ajouter un champ de formulaire"
|
2790 |
|
2791 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2792 |
msgctxt "form-fields admin"
|
2793 |
msgid "Field Association"
|
2794 |
msgstr "Association de champ"
|
2795 |
|
2796 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2797 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2798 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2799 |
msgctxt "form-fields admin"
|
2800 |
msgid "required"
|
2801 |
msgstr "requis"
|
2802 |
|
2803 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2804 |
msgctxt "form-fields admin"
|
2805 |
msgid "Field Type"
|
2806 |
msgstr "Type de champ"
|
2807 |
|
2808 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2809 |
msgctxt "form-fields admin"
|
2810 |
msgid "Field Label"
|
2811 |
msgstr "Etiquette du champ"
|
2812 |
|
2813 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2814 |
msgctxt "form-fields admin"
|
2815 |
msgid "Field description"
|
2816 |
msgstr "Description du champ"
|
2817 |
|
2818 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2819 |
msgctxt "form-fields admin"
|
2820 |
msgid "optional"
|
2821 |
msgstr "optionnel"
|
2822 |
|
2823 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2824 |
msgctxt "form-fields admin"
|
2825 |
msgid "Field-specific settings"
|
2826 |
msgstr "Paramètre d'un champ spécifique"
|
2827 |
|
2828 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2829 |
msgctxt "form-fields admin"
|
2830 |
msgid "Field validation options"
|
2831 |
msgstr "Options de validation d'un champ"
|
2832 |
|
2833 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2834 |
msgctxt "form-fields admin"
|
2835 |
msgid "Field Validator"
|
2836 |
msgstr "Validateur de champs"
|
2837 |
|
2838 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2839 |
msgctxt "form-fields admin"
|
2840 |
msgid "No validation"
|
2841 |
msgstr "Pas de validation"
|
2842 |
|
2843 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2844 |
msgctxt "form-fields admin"
|
2845 |
msgid "Is field required?"
|
2846 |
msgstr "Ce champ est-il requis ?"
|
2847 |
|
2848 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2849 |
msgctxt "form-fields admin"
|
2850 |
msgid "This field is required."
|
2851 |
msgstr "Ce champ est requis."
|
2852 |
|
2853 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2854 |
msgctxt "form-fields admin"
|
2855 |
msgid "Field display options"
|
2856 |
msgstr "Champ d'options d'affichage"
|
2857 |
|
2858 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2859 |
msgctxt "form-fields admin"
|
2860 |
msgid "Show this field to admin users only?"
|
2861 |
msgstr ""
|
2862 |
|
2863 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2864 |
#, fuzzy
|
2865 |
msgctxt "form-fields admin"
|
2866 |
msgid "Display this field to admin users only in the edit listing view."
|
2867 |
msgstr "Afficher cette valeur dans la vue de l'annonce."
|
2868 |
|
2869 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2870 |
msgctxt "form-fields admin"
|
2871 |
msgid "Show this value in excerpt view?"
|
2872 |
msgstr "Montrer un extrait de cette valeur ?"
|
2873 |
|
2874 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2875 |
msgctxt "form-fields admin"
|
2876 |
msgid "Display this value in post excerpt view."
|
2877 |
msgstr "Afficher dans un message un extrait de cette valeur."
|
2878 |
|
2879 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2880 |
msgctxt "form-fields admin"
|
2881 |
msgid "Show this value in listing view?"
|
2882 |
msgstr "Montrer cette valeur dans la vue de l'annonce ?"
|
2883 |
|
2884 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2885 |
msgctxt "form-fields admin"
|
2886 |
msgid "Display this value in the listing view."
|
2887 |
msgstr "Afficher cette valeur dans la vue de l'annonce."
|
2888 |
|
2889 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2890 |
msgctxt "form-fields admin"
|
2891 |
msgid "Include this field in the search form?"
|
2892 |
msgstr "Inclure ce champ dans la recherche de formulaire ?"
|
2893 |
|
2894 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2895 |
msgctxt "form-fields admin"
|
2896 |
msgid "Include this field in the search form."
|
2897 |
msgstr "Inclure ce champ dans la recherche de formulaire."
|
2898 |
|
2899 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2900 |
msgctxt "form-fields admin"
|
2901 |
msgid "Is this field required for searching?"
|
2902 |
msgstr "Ce champ est-il requis ?"
|
2903 |
|
2904 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2905 |
msgctxt "form-fields admin"
|
2906 |
msgid ""
|
2907 |
"Make this fields required during searches on the Advanced Search screen."
|
2908 |
msgstr "Indiquez les champs obligatoires lors de recherches avancée."
|
2909 |
|
2910 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2911 |
msgctxt "form-fields admin"
|
2912 |
msgid "Hide this field's label?"
|
2913 |
msgstr "Cacher l'étiquette de ce champ ?"
|
2914 |
|
2915 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2916 |
msgctxt "form-fields admin"
|
2917 |
msgid "Hide this field's label when displaying it."
|
2918 |
msgstr "Cacher l'étiquette de ce champ lorsqu'il est affiché."
|
2919 |
|
2920 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2921 |
msgctxt "form-fields admin"
|
2922 |
msgid "Update Field"
|
2923 |
msgstr "Mettre à jour le champ"
|
2924 |
|
2925 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2926 |
msgctxt "form-fields admin"
|
2927 |
msgid "Add Field"
|
2928 |
msgstr "Ajouter un champ"
|
@@ -5912,40 +5948,40 @@ msgstr ""
|
|
5912 |
"S'il vous plaît choisir un plan tarifaire valable pour votre sélection de "
|
5913 |
"catégorie."
|
5914 |
|
5915 |
-
#: includes/views/submit_listing.php:
|
5916 |
msgctxt "submit listing"
|
5917 |
msgid "Please enter your desired username."
|
5918 |
msgstr "S'il vous plaît entrer votre nom d'utilisateur souhaité."
|
5919 |
|
5920 |
-
#: includes/views/submit_listing.php:
|
5921 |
msgctxt "submit listing"
|
5922 |
msgid "Please enter the e-mail for your new account."
|
5923 |
msgstr "S'il vous plaît entrer votre e-mail pour votre nouveau compte."
|
5924 |
|
5925 |
-
#: includes/views/submit_listing.php:
|
5926 |
msgctxt "submit listing"
|
5927 |
msgid "Please enter the password for your new account."
|
5928 |
msgstr "Veuillez entrer le mot de passe de votre nouveau compte."
|
5929 |
|
5930 |
-
#: includes/views/submit_listing.php:
|
5931 |
msgctxt "submit listing"
|
5932 |
msgid "The username you chose is already in use. Please use a different one."
|
5933 |
msgstr ""
|
5934 |
"Le nom d'utilisateur que vous avez choisi est déjà utilisé. Veuillez en "
|
5935 |
"utiliser un autre."
|
5936 |
|
5937 |
-
#: includes/views/submit_listing.php:
|
5938 |
msgctxt "submit listing"
|
5939 |
msgid "The e-mail address you chose for your account is already in use."
|
5940 |
msgstr ""
|
5941 |
"L'adresse e-mail que vous avez choisie pour votre compte est déjà utilisée."
|
5942 |
|
5943 |
-
#: includes/views/submit_listing.php:
|
5944 |
msgctxt "submit listing"
|
5945 |
msgid "Create a user account on this site"
|
5946 |
msgstr "Créer un compte utilisateur sur ce site"
|
5947 |
|
5948 |
-
#: includes/views/submit_listing.php:
|
5949 |
msgctxt "submit listing"
|
5950 |
msgid ""
|
5951 |
"You need to create an account on the site. Please fill out the form below."
|
@@ -5953,17 +5989,17 @@ msgstr ""
|
|
5953 |
"Vous devez créer un compte sur le site. Veuillez remplir le formulaire ci-"
|
5954 |
"dessous."
|
5955 |
|
5956 |
-
#: includes/views/submit_listing.php:
|
5957 |
msgctxt "submit listing"
|
5958 |
msgid "Username:"
|
5959 |
msgstr "Nom d'utilisateur (login) :"
|
5960 |
|
5961 |
-
#: includes/views/submit_listing.php:
|
5962 |
msgctxt "submit listing"
|
5963 |
msgid "Email:"
|
5964 |
msgstr "E-Mail:"
|
5965 |
|
5966 |
-
#: includes/views/submit_listing.php:
|
5967 |
msgctxt "submit listing"
|
5968 |
msgid "Password:"
|
5969 |
msgstr "Mot de passe :"
|
@@ -5993,12 +6029,12 @@ msgctxt "submit listing"
|
|
5993 |
msgid "Save Changes"
|
5994 |
msgstr "Sauvegarder les changements"
|
5995 |
|
5996 |
-
#: includes/class-recaptcha.php:
|
5997 |
msgctxt "recaptcha"
|
5998 |
msgid "The reCAPTCHA wasn't entered correctly."
|
5999 |
msgstr "Le code CAPTCHA n'a pas été rentré correctement."
|
6000 |
|
6001 |
-
#: includes/class-recaptcha.php:
|
6002 |
#, fuzzy
|
6003 |
msgctxt "recaptcha"
|
6004 |
msgid "reCAPTCHA"
|
@@ -6106,12 +6142,12 @@ msgctxt "form-fields api"
|
|
6106 |
msgid "Textarea"
|
6107 |
msgstr "Zone de texte"
|
6108 |
|
6109 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
6110 |
msgctxt "form-fields api"
|
6111 |
msgid "Textfield"
|
6112 |
msgstr "Champ texte"
|
6113 |
|
6114 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
6115 |
msgctxt "form-fields api"
|
6116 |
msgid "Format 01/31/1969"
|
6117 |
msgstr "Format 01/31/1969"
|
@@ -6136,7 +6172,7 @@ msgctxt "form-fields api"
|
|
6136 |
msgid "Link Text (optional):"
|
6137 |
msgstr "Lien texte (facultatif):"
|
6138 |
|
6139 |
-
#: includes/fields/class-form-field.php:
|
6140 |
msgctxt "form-fields api"
|
6141 |
msgid ""
|
6142 |
"This form field can't be deleted because it is required for the plugin to "
|
@@ -6196,7 +6232,7 @@ msgctxt "date field"
|
|
6196 |
msgid "%s must be a valid date."
|
6197 |
msgstr "%s doit être une date valide."
|
6198 |
|
6199 |
-
#: includes/fields/class-fieldtypes-image.php:
|
6200 |
#, fuzzy
|
6201 |
msgctxt "date field"
|
6202 |
msgid "Caption for %s is required."
|
@@ -6207,17 +6243,17 @@ msgctxt "form-fields-api"
|
|
6207 |
msgid "Remove"
|
6208 |
msgstr "Supprimer"
|
6209 |
|
6210 |
-
#: includes/fields/class-form-field.php:
|
6211 |
msgctxt "form-fields-api"
|
6212 |
msgid "Invalid form field type"
|
6213 |
msgstr "Type de champ de formulaire invalide"
|
6214 |
|
6215 |
-
#: includes/fields/class-form-field.php:
|
6216 |
msgctxt "form-fields-api"
|
6217 |
msgid "Field label is required."
|
6218 |
msgstr "Ce champ est requis."
|
6219 |
|
6220 |
-
#: includes/fields/class-form-field.php:
|
6221 |
msgctxt "form-fields-api"
|
6222 |
msgid ""
|
6223 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
@@ -6225,14 +6261,14 @@ msgid ""
|
|
6225 |
"delete this current field and create a NEW field of type %1$s instead."
|
6226 |
msgstr ""
|
6227 |
|
6228 |
-
#: includes/fields/class-form-field.php:
|
6229 |
msgctxt "form-fields-api"
|
6230 |
msgid ""
|
6231 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
6232 |
"existing listings will be deleted as well."
|
6233 |
msgstr ""
|
6234 |
|
6235 |
-
#: includes/fields/class-form-field.php:
|
6236 |
msgctxt "form-fields-api"
|
6237 |
msgid ""
|
6238 |
"There can only be one field with association \"%s\". Please select another "
|
@@ -6241,17 +6277,17 @@ msgstr ""
|
|
6241 |
"Il ne peut y avoir qu'un champ avec l'association \"% s \". Veuillez "
|
6242 |
"sélectionner une autre association."
|
6243 |
|
6244 |
-
#: includes/fields/class-form-field.php:
|
6245 |
msgctxt "form-fields-api"
|
6246 |
msgid "\"%s\" is an invalid field type for this association."
|
6247 |
msgstr "\" est un type de champ invalide pour cette association."
|
6248 |
|
6249 |
-
#: includes/fields/class-form-field.php:
|
6250 |
msgctxt "form-fields-api"
|
6251 |
msgid "Invalid field ID"
|
6252 |
msgstr "ID de champ invalide"
|
6253 |
|
6254 |
-
#: includes/fields/class-form-field.php:
|
6255 |
msgctxt "form-fields-api"
|
6256 |
msgid "An error occurred while trying to delete this field."
|
6257 |
msgstr "Une erreur est survenue en essayant de supprimer ce champ."
|
@@ -6281,6 +6317,12 @@ msgctxt "form-fields-api"
|
|
6281 |
msgid "Date Validator"
|
6282 |
msgstr "Validateur de date"
|
6283 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6284 |
#: includes/fields/class-fieldtypes-image.php:121
|
6285 |
msgctxt "form fields"
|
6286 |
msgid "Field unavailable at the moment."
|
@@ -6337,53 +6379,64 @@ msgstr ""
|
|
6337 |
"paramètre, SAUF si vous publiez les annonces vous-même et avez le contrôle "
|
6338 |
"exclusif du contenu. Êtes-vous sûr de vouloir l'activer?"
|
6339 |
|
6340 |
-
#: includes/form-fields.php:
|
6341 |
msgctxt "form-fields-api validation"
|
6342 |
msgid "Field"
|
6343 |
msgstr "Champ"
|
6344 |
|
6345 |
-
#: includes/form-fields.php:
|
6346 |
msgctxt "form-fields-api validation"
|
6347 |
msgid "%s is required."
|
6348 |
msgstr "%s est requis."
|
6349 |
|
6350 |
-
#: includes/form-fields.php:
|
6351 |
msgctxt "form-fields-api validation"
|
6352 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
6353 |
msgstr "%s est mal formaté. format URL valide requis. Inclure http: //"
|
6354 |
|
6355 |
-
#: includes/form-fields.php:
|
6356 |
msgctxt "form-fields-api validation"
|
6357 |
msgid "%s is badly formatted. Valid Email format required."
|
6358 |
msgstr "%s est mal formaté. Un format valide d'email est requis."
|
6359 |
|
6360 |
-
#: includes/form-fields.php:
|
6361 |
msgctxt "form-fields-api validation"
|
6362 |
msgid "%s must be a number. Decimal values are not allowed."
|
6363 |
msgstr "%s doit être un nombre. Les valeurs décimales ne sont pas autorisées."
|
6364 |
|
6365 |
-
#: includes/form-fields.php:
|
6366 |
msgctxt "form-fields-api validation"
|
6367 |
msgid "%s must be a number."
|
6368 |
msgstr "%s doit être un nombre."
|
6369 |
|
6370 |
-
#: includes/form-fields.php:
|
6371 |
#, fuzzy
|
6372 |
msgctxt "form-fields-api validation"
|
6373 |
msgid "%1$s must be in the format %2$s."
|
6374 |
msgstr "%s doit être au format %s."
|
6375 |
|
6376 |
-
#: includes/form-fields.php:
|
6377 |
msgctxt "form-fields-api validation"
|
6378 |
msgid "%s must be a valid date."
|
6379 |
msgstr "%s doit être une date valide."
|
6380 |
|
6381 |
-
#: includes/form-fields.php:
|
|
|
|
|
|
|
|
|
|
|
6382 |
#, fuzzy
|
6383 |
msgctxt "form-fields-api validation"
|
6384 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
6385 |
msgstr "%s est invalide. La valeur doit être l'un des %s."
|
6386 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6387 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
6388 |
msgctxt "authorize-net"
|
6389 |
msgid "Authorize.net"
|
@@ -7151,17 +7204,17 @@ msgctxt "templates"
|
|
7151 |
msgid "View not available."
|
7152 |
msgstr "Emplacements d'image disponibles."
|
7153 |
|
7154 |
-
#: includes/views/submit_listing.php:
|
7155 |
msgctxt "templates"
|
7156 |
msgid "Please agree to the Terms and Conditions."
|
7157 |
msgstr "Veuillez accepter les conditions d'utilisation."
|
7158 |
|
7159 |
-
#: includes/views/submit_listing.php:
|
7160 |
msgctxt "templates"
|
7161 |
msgid "Terms and Conditions:"
|
7162 |
msgstr "Conditions d'utilisation:"
|
7163 |
|
7164 |
-
#: includes/views/submit_listing.php:
|
7165 |
msgctxt "templates"
|
7166 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7167 |
msgstr "J'accepte <a> Conditions générales </a>"
|
@@ -7850,7 +7903,7 @@ msgstr ""
|
|
7850 |
"Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
|
7851 |
"publiée."
|
7852 |
|
7853 |
-
#: includes/views/submit_listing.php:
|
7854 |
msgctxt "listing submit"
|
7855 |
msgid ""
|
7856 |
"Something went wrong. Please check the form for errors, correct them and "
|
@@ -7859,7 +7912,7 @@ msgstr ""
|
|
7859 |
"Quelque chose s'est mal passé. Veuillez vérifier le formulaire, corriger les "
|
7860 |
"erreurs et soumettre à nouveau."
|
7861 |
|
7862 |
-
#: includes/views/submit_listing.php:
|
7863 |
msgctxt "listing submit"
|
7864 |
msgid ""
|
7865 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -8104,116 +8157,128 @@ msgctxt "admin sidebar"
|
|
8104 |
msgid "Elegant Business Theme"
|
8105 |
msgstr "Nom de l'entreprise"
|
8106 |
|
8107 |
-
#: templates/admin/sidebar.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8108 |
msgctxt "admin sidebar"
|
8109 |
msgid "Like this plugin?"
|
8110 |
msgstr "Vous aimez ce plugin ?"
|
8111 |
|
8112 |
-
#: templates/admin/sidebar.tpl.php:
|
8113 |
msgctxt "admin sidebar"
|
8114 |
msgid "Why not do any or all of the following:"
|
8115 |
msgstr "Pourquoi ne pas faire l'une des actions suivantes:"
|
8116 |
|
8117 |
-
#: templates/admin/sidebar.tpl.php:
|
8118 |
msgctxt "admin sidebar"
|
8119 |
msgid "Give it a good rating on WordPress.org."
|
8120 |
msgstr "Donnez lui une bonne note sur Wordpress.org."
|
8121 |
|
8122 |
-
#: templates/admin/sidebar.tpl.php:
|
8123 |
msgctxt "admin sidebar"
|
8124 |
msgid "Let other people know that it works with your WordPress setup."
|
8125 |
msgstr ""
|
8126 |
"Faites savoir à d'autres personnes qu'il fonctionne avec votre version de "
|
8127 |
"Wordpress."
|
8128 |
|
8129 |
-
#: templates/admin/sidebar.tpl.php:
|
8130 |
msgctxt "admin sidebar"
|
8131 |
msgid "Buy a Premium Module"
|
8132 |
msgstr "Acheter un module Premium"
|
8133 |
|
8134 |
-
#: templates/admin/sidebar.tpl.php:
|
8135 |
msgctxt "admin sidebar"
|
8136 |
msgid "Get a Premium Module"
|
8137 |
msgstr "Avoir un module Premium"
|
8138 |
|
8139 |
-
#: templates/admin/sidebar.tpl.php:
|
8140 |
msgctxt "admin sidebar"
|
8141 |
msgid "best deal"
|
8142 |
msgstr "meilleure offre"
|
8143 |
|
8144 |
-
#: templates/admin/sidebar.tpl.php:
|
8145 |
msgctxt "admin sidebar"
|
8146 |
msgid "Combo Pack"
|
8147 |
msgstr "Thèmes"
|
8148 |
|
8149 |
-
#: templates/admin/sidebar.tpl.php:
|
8150 |
msgctxt "admin sidebar"
|
8151 |
msgid "(All Modules)"
|
8152 |
msgstr "Tous les (modules installés)"
|
8153 |
|
8154 |
-
#: templates/admin/sidebar.tpl.php:
|
8155 |
msgctxt "admin sidebar"
|
8156 |
msgid "new"
|
8157 |
msgstr "nouveau"
|
8158 |
|
8159 |
-
#: templates/admin/sidebar.tpl.php:
|
8160 |
msgctxt "admin sidebar"
|
8161 |
msgid "Get a Directory Theme"
|
8162 |
msgstr "Catégories de l'annuaire"
|
8163 |
|
8164 |
-
#: templates/admin/sidebar.tpl.php:
|
8165 |
msgctxt "admin sidebar"
|
8166 |
msgid "Theme Pack"
|
8167 |
msgstr "Thèmes"
|
8168 |
|
8169 |
-
#: templates/admin/sidebar.tpl.php:
|
8170 |
msgctxt "admin sidebar"
|
8171 |
msgid "(All Themes)"
|
8172 |
msgstr "(Tous les thèmes)"
|
8173 |
|
8174 |
-
#: templates/admin/sidebar.tpl.php:
|
8175 |
msgctxt "admin sidebar"
|
8176 |
msgid "Found a bug? Need support?"
|
8177 |
msgstr "Vous avez trouvé un bug ? Besoin d'assistance ?"
|
8178 |
|
8179 |
-
#: templates/admin/sidebar.tpl.php:
|
8180 |
msgctxt "admin sidebar"
|
8181 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
8182 |
msgstr ""
|
8183 |
"Si vous avez trouvé un bug ou si vous avez besoin d'assistance, <a>visitez "
|
8184 |
"le forum!</a>"
|
8185 |
|
8186 |
-
#: templates/admin/sidebar.tpl.php:
|
8187 |
msgctxt "admin sidebar"
|
8188 |
msgid "Full plugin documentation"
|
8189 |
msgstr "Documentation complète du plugin"
|
8190 |
|
8191 |
-
#: templates/admin/sidebar.tpl.php:
|
8192 |
msgctxt "admin sidebar"
|
8193 |
msgid "Quick Start Guide"
|
8194 |
msgstr "Guide rapide de lancement"
|
8195 |
|
8196 |
-
#: templates/admin/sidebar.tpl.php:
|
8197 |
msgctxt "admin sidebar"
|
8198 |
msgid "Video Tutorials"
|
8199 |
msgstr "Vidéo tutoriels"
|
8200 |
|
8201 |
-
#: templates/admin/sidebar.tpl.php:
|
8202 |
msgctxt "admin sidebar"
|
8203 |
msgid "Installed Modules"
|
8204 |
msgstr "Modules installés"
|
8205 |
|
8206 |
-
#: templates/admin/sidebar.tpl.php:
|
8207 |
msgctxt "admin sidebar"
|
8208 |
msgid "Installed"
|
8209 |
msgstr "Installé"
|
8210 |
|
8211 |
-
#: templates/admin/sidebar.tpl.php:
|
8212 |
msgctxt "admin sidebar"
|
8213 |
msgid "Not Installed"
|
8214 |
msgstr "Non installé"
|
8215 |
|
8216 |
-
#: templates/admin/sidebar.tpl.php:
|
8217 |
msgctxt "admin sidebar"
|
8218 |
msgid "Enhanced Categories Module"
|
8219 |
msgstr "Module d'amélioration des catégories"
|
@@ -11190,10 +11255,6 @@ msgstr "Adresse"
|
|
11190 |
#~ msgid "Delete theme"
|
11191 |
#~ msgstr "Effacer les thème"
|
11192 |
|
11193 |
-
#~ msgctxt "themes admin"
|
11194 |
-
#~ msgid "Delete Theme"
|
11195 |
-
#~ msgstr "Effacer le thème"
|
11196 |
-
|
11197 |
#~ msgctxt "admin settings"
|
11198 |
#~ msgid "Display search form when displaying search results?"
|
11199 |
#~ msgstr ""
|
5 |
"Project-Id-Version: Business Directory Plugin 3.6\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2018-06-27 21:14:25+00:00\n"
|
9 |
"PO-Revision-Date: 2017-11-13 00:48+0100\n"
|
10 |
"Last-Translator: Laurent Provin <lprovin@yahoo.fr>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
2655 |
msgid "Field list of options is required."
|
2656 |
msgstr "La liste des options est obligatoire."
|
2657 |
|
2658 |
+
#: includes/fields/class-fieldtypes-image.php:55
|
2659 |
#, fuzzy
|
2660 |
msgctxt "form-fields admin"
|
2661 |
msgid "Display caption?"
|
2662 |
msgstr "Champ d'options d'affichage"
|
2663 |
|
2664 |
+
#: includes/fields/class-fieldtypes-image.php:58
|
2665 |
#, fuzzy
|
2666 |
msgctxt "form-fields admin"
|
2667 |
msgid "Field Caption required?"
|
2783 |
msgid "Use rel=\"nofollow\" when displaying the link?"
|
2784 |
msgstr "Utiliser rel=\"nofollow\" lors de l'affichage du lien?"
|
2785 |
|
2786 |
+
#: templates/admin/form-fields-addoredit.tpl.php:8
|
2787 |
msgctxt "form-fields admin"
|
2788 |
msgid "Add Form Field"
|
2789 |
msgstr "Ajouter un champ de formulaire"
|
2790 |
|
2791 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
2792 |
msgctxt "form-fields admin"
|
2793 |
msgid "Field Association"
|
2794 |
msgstr "Association de champ"
|
2795 |
|
2796 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
2797 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
2798 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
2799 |
msgctxt "form-fields admin"
|
2800 |
msgid "required"
|
2801 |
msgstr "requis"
|
2802 |
|
2803 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
2804 |
msgctxt "form-fields admin"
|
2805 |
msgid "Field Type"
|
2806 |
msgstr "Type de champ"
|
2807 |
|
2808 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
2809 |
msgctxt "form-fields admin"
|
2810 |
msgid "Field Label"
|
2811 |
msgstr "Etiquette du champ"
|
2812 |
|
2813 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
2814 |
msgctxt "form-fields admin"
|
2815 |
msgid "Field description"
|
2816 |
msgstr "Description du champ"
|
2817 |
|
2818 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
2819 |
msgctxt "form-fields admin"
|
2820 |
msgid "optional"
|
2821 |
msgstr "optionnel"
|
2822 |
|
2823 |
+
#: templates/admin/form-fields-addoredit.tpl.php:97
|
2824 |
msgctxt "form-fields admin"
|
2825 |
msgid "Field-specific settings"
|
2826 |
msgstr "Paramètre d'un champ spécifique"
|
2827 |
|
2828 |
+
#: templates/admin/form-fields-addoredit.tpl.php:106
|
2829 |
msgctxt "form-fields admin"
|
2830 |
msgid "Field validation options"
|
2831 |
msgstr "Options de validation d'un champ"
|
2832 |
|
2833 |
+
#: templates/admin/form-fields-addoredit.tpl.php:110
|
2834 |
msgctxt "form-fields admin"
|
2835 |
msgid "Field Validator"
|
2836 |
msgstr "Validateur de champs"
|
2837 |
|
2838 |
+
#: templates/admin/form-fields-addoredit.tpl.php:114
|
2839 |
msgctxt "form-fields admin"
|
2840 |
msgid "No validation"
|
2841 |
msgstr "Pas de validation"
|
2842 |
|
2843 |
+
#: templates/admin/form-fields-addoredit.tpl.php:126
|
2844 |
+
#, fuzzy
|
2845 |
+
msgctxt "form-fields admin"
|
2846 |
+
msgid "Number of words"
|
2847 |
+
msgstr "Nombre d'images:"
|
2848 |
+
|
2849 |
+
#: templates/admin/form-fields-addoredit.tpl.php:136
|
2850 |
msgctxt "form-fields admin"
|
2851 |
msgid "Is field required?"
|
2852 |
msgstr "Ce champ est-il requis ?"
|
2853 |
|
2854 |
+
#: templates/admin/form-fields-addoredit.tpl.php:142
|
2855 |
msgctxt "form-fields admin"
|
2856 |
msgid "This field is required."
|
2857 |
msgstr "Ce champ est requis."
|
2858 |
|
2859 |
+
#: templates/admin/form-fields-addoredit.tpl.php:150
|
2860 |
msgctxt "form-fields admin"
|
2861 |
msgid "Field display options"
|
2862 |
msgstr "Champ d'options d'affichage"
|
2863 |
|
2864 |
+
#: templates/admin/form-fields-addoredit.tpl.php:154
|
2865 |
+
#, fuzzy
|
2866 |
+
msgctxt "form-fields admin"
|
2867 |
+
msgid "Field Category Policy:"
|
2868 |
+
msgstr "Politique de catégorie de plan :"
|
2869 |
+
|
2870 |
+
#: templates/admin/form-fields-addoredit.tpl.php:159
|
2871 |
+
#, fuzzy
|
2872 |
+
msgctxt "form-fields admin"
|
2873 |
+
msgid "Field applies to all categories"
|
2874 |
+
msgstr "Le plan s'applique à toutes les catégories"
|
2875 |
+
|
2876 |
+
#: templates/admin/form-fields-addoredit.tpl.php:160
|
2877 |
+
#, fuzzy
|
2878 |
+
msgctxt "form-fields admin"
|
2879 |
+
msgid "Field applies to only certain categories"
|
2880 |
+
msgstr "Le plan ne s'applique qu'à certaines catégories"
|
2881 |
+
|
2882 |
+
#: templates/admin/form-fields-addoredit.tpl.php:164
|
2883 |
+
#, fuzzy
|
2884 |
+
msgctxt "form-fields admin"
|
2885 |
+
msgid "Limit field to the following categories:"
|
2886 |
+
msgstr "Limite plan pour les catégories suivantes:"
|
2887 |
+
|
2888 |
+
#: templates/admin/form-fields-addoredit.tpl.php:188
|
2889 |
+
#, fuzzy
|
2890 |
+
msgctxt "form-fields admin"
|
2891 |
+
msgid "Click to add categories to the selection."
|
2892 |
+
msgstr "Cliquez pour ajouter des catégories à la sélection."
|
2893 |
+
|
2894 |
+
#: templates/admin/form-fields-addoredit.tpl.php:201
|
2895 |
msgctxt "form-fields admin"
|
2896 |
msgid "Show this field to admin users only?"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
+
#: templates/admin/form-fields-addoredit.tpl.php:207
|
2900 |
#, fuzzy
|
2901 |
msgctxt "form-fields admin"
|
2902 |
msgid "Display this field to admin users only in the edit listing view."
|
2903 |
msgstr "Afficher cette valeur dans la vue de l'annonce."
|
2904 |
|
2905 |
+
#: templates/admin/form-fields-addoredit.tpl.php:213
|
2906 |
msgctxt "form-fields admin"
|
2907 |
msgid "Show this value in excerpt view?"
|
2908 |
msgstr "Montrer un extrait de cette valeur ?"
|
2909 |
|
2910 |
+
#: templates/admin/form-fields-addoredit.tpl.php:219
|
2911 |
msgctxt "form-fields admin"
|
2912 |
msgid "Display this value in post excerpt view."
|
2913 |
msgstr "Afficher dans un message un extrait de cette valeur."
|
2914 |
|
2915 |
+
#: templates/admin/form-fields-addoredit.tpl.php:225
|
2916 |
msgctxt "form-fields admin"
|
2917 |
msgid "Show this value in listing view?"
|
2918 |
msgstr "Montrer cette valeur dans la vue de l'annonce ?"
|
2919 |
|
2920 |
+
#: templates/admin/form-fields-addoredit.tpl.php:231
|
2921 |
msgctxt "form-fields admin"
|
2922 |
msgid "Display this value in the listing view."
|
2923 |
msgstr "Afficher cette valeur dans la vue de l'annonce."
|
2924 |
|
2925 |
+
#: templates/admin/form-fields-addoredit.tpl.php:237
|
2926 |
msgctxt "form-fields admin"
|
2927 |
msgid "Include this field in the search form?"
|
2928 |
msgstr "Inclure ce champ dans la recherche de formulaire ?"
|
2929 |
|
2930 |
+
#: templates/admin/form-fields-addoredit.tpl.php:243
|
2931 |
msgctxt "form-fields admin"
|
2932 |
msgid "Include this field in the search form."
|
2933 |
msgstr "Inclure ce champ dans la recherche de formulaire."
|
2934 |
|
2935 |
+
#: templates/admin/form-fields-addoredit.tpl.php:249
|
2936 |
msgctxt "form-fields admin"
|
2937 |
msgid "Is this field required for searching?"
|
2938 |
msgstr "Ce champ est-il requis ?"
|
2939 |
|
2940 |
+
#: templates/admin/form-fields-addoredit.tpl.php:255
|
2941 |
msgctxt "form-fields admin"
|
2942 |
msgid ""
|
2943 |
"Make this fields required during searches on the Advanced Search screen."
|
2944 |
msgstr "Indiquez les champs obligatoires lors de recherches avancée."
|
2945 |
|
2946 |
+
#: templates/admin/form-fields-addoredit.tpl.php:261
|
2947 |
msgctxt "form-fields admin"
|
2948 |
msgid "Hide this field's label?"
|
2949 |
msgstr "Cacher l'étiquette de ce champ ?"
|
2950 |
|
2951 |
+
#: templates/admin/form-fields-addoredit.tpl.php:267
|
2952 |
msgctxt "form-fields admin"
|
2953 |
msgid "Hide this field's label when displaying it."
|
2954 |
msgstr "Cacher l'étiquette de ce champ lorsqu'il est affiché."
|
2955 |
|
2956 |
+
#: templates/admin/form-fields-addoredit.tpl.php:274
|
2957 |
msgctxt "form-fields admin"
|
2958 |
msgid "Update Field"
|
2959 |
msgstr "Mettre à jour le champ"
|
2960 |
|
2961 |
+
#: templates/admin/form-fields-addoredit.tpl.php:276
|
2962 |
msgctxt "form-fields admin"
|
2963 |
msgid "Add Field"
|
2964 |
msgstr "Ajouter un champ"
|
5948 |
"S'il vous plaît choisir un plan tarifaire valable pour votre sélection de "
|
5949 |
"catégorie."
|
5950 |
|
5951 |
+
#: includes/views/submit_listing.php:743
|
5952 |
msgctxt "submit listing"
|
5953 |
msgid "Please enter your desired username."
|
5954 |
msgstr "S'il vous plaît entrer votre nom d'utilisateur souhaité."
|
5955 |
|
5956 |
+
#: includes/views/submit_listing.php:748
|
5957 |
msgctxt "submit listing"
|
5958 |
msgid "Please enter the e-mail for your new account."
|
5959 |
msgstr "S'il vous plaît entrer votre e-mail pour votre nouveau compte."
|
5960 |
|
5961 |
+
#: includes/views/submit_listing.php:753
|
5962 |
msgctxt "submit listing"
|
5963 |
msgid "Please enter the password for your new account."
|
5964 |
msgstr "Veuillez entrer le mot de passe de votre nouveau compte."
|
5965 |
|
5966 |
+
#: includes/views/submit_listing.php:763
|
5967 |
msgctxt "submit listing"
|
5968 |
msgid "The username you chose is already in use. Please use a different one."
|
5969 |
msgstr ""
|
5970 |
"Le nom d'utilisateur que vous avez choisi est déjà utilisé. Veuillez en "
|
5971 |
"utiliser un autre."
|
5972 |
|
5973 |
+
#: includes/views/submit_listing.php:768
|
5974 |
msgctxt "submit listing"
|
5975 |
msgid "The e-mail address you chose for your account is already in use."
|
5976 |
msgstr ""
|
5977 |
"L'adresse e-mail que vous avez choisie pour votre compte est déjà utilisée."
|
5978 |
|
5979 |
+
#: includes/views/submit_listing.php:783
|
5980 |
msgctxt "submit listing"
|
5981 |
msgid "Create a user account on this site"
|
5982 |
msgstr "Créer un compte utilisateur sur ce site"
|
5983 |
|
5984 |
+
#: includes/views/submit_listing.php:790
|
5985 |
msgctxt "submit listing"
|
5986 |
msgid ""
|
5987 |
"You need to create an account on the site. Please fill out the form below."
|
5989 |
"Vous devez créer un compte sur le site. Veuillez remplir le formulaire ci-"
|
5990 |
"dessous."
|
5991 |
|
5992 |
+
#: includes/views/submit_listing.php:796
|
5993 |
msgctxt "submit listing"
|
5994 |
msgid "Username:"
|
5995 |
msgstr "Nom d'utilisateur (login) :"
|
5996 |
|
5997 |
+
#: includes/views/submit_listing.php:805
|
5998 |
msgctxt "submit listing"
|
5999 |
msgid "Email:"
|
6000 |
msgstr "E-Mail:"
|
6001 |
|
6002 |
+
#: includes/views/submit_listing.php:814
|
6003 |
msgctxt "submit listing"
|
6004 |
msgid "Password:"
|
6005 |
msgstr "Mot de passe :"
|
6029 |
msgid "Save Changes"
|
6030 |
msgstr "Sauvegarder les changements"
|
6031 |
|
6032 |
+
#: includes/class-recaptcha.php:109 includes/class-recaptcha.php:150
|
6033 |
msgctxt "recaptcha"
|
6034 |
msgid "The reCAPTCHA wasn't entered correctly."
|
6035 |
msgstr "Le code CAPTCHA n'a pas été rentré correctement."
|
6036 |
|
6037 |
+
#: includes/class-recaptcha.php:211
|
6038 |
#, fuzzy
|
6039 |
msgctxt "recaptcha"
|
6040 |
msgid "reCAPTCHA"
|
6142 |
msgid "Textarea"
|
6143 |
msgstr "Zone de texte"
|
6144 |
|
6145 |
+
#: includes/fields/class-fieldtypes-textfield.php:13
|
6146 |
msgctxt "form-fields api"
|
6147 |
msgid "Textfield"
|
6148 |
msgstr "Champ texte"
|
6149 |
|
6150 |
+
#: includes/fields/class-fieldtypes-textfield.php:50
|
6151 |
msgctxt "form-fields api"
|
6152 |
msgid "Format 01/31/1969"
|
6153 |
msgstr "Format 01/31/1969"
|
6172 |
msgid "Link Text (optional):"
|
6173 |
msgstr "Lien texte (facultatif):"
|
6174 |
|
6175 |
+
#: includes/fields/class-form-field.php:707
|
6176 |
msgctxt "form-fields api"
|
6177 |
msgid ""
|
6178 |
"This form field can't be deleted because it is required for the plugin to "
|
6232 |
msgid "%s must be a valid date."
|
6233 |
msgstr "%s doit être une date valide."
|
6234 |
|
6235 |
+
#: includes/fields/class-fieldtypes-image.php:41
|
6236 |
#, fuzzy
|
6237 |
msgctxt "date field"
|
6238 |
msgid "Caption for %s is required."
|
6243 |
msgid "Remove"
|
6244 |
msgstr "Supprimer"
|
6245 |
|
6246 |
+
#: includes/fields/class-form-field.php:66
|
6247 |
msgctxt "form-fields-api"
|
6248 |
msgid "Invalid form field type"
|
6249 |
msgstr "Type de champ de formulaire invalide"
|
6250 |
|
6251 |
+
#: includes/fields/class-form-field.php:585
|
6252 |
msgctxt "form-fields-api"
|
6253 |
msgid "Field label is required."
|
6254 |
msgstr "Ce champ est requis."
|
6255 |
|
6256 |
+
#: includes/fields/class-form-field.php:596
|
6257 |
msgctxt "form-fields-api"
|
6258 |
msgid ""
|
6259 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
6261 |
"delete this current field and create a NEW field of type %1$s instead."
|
6262 |
msgstr ""
|
6263 |
|
6264 |
+
#: includes/fields/class-form-field.php:599
|
6265 |
msgctxt "form-fields-api"
|
6266 |
msgid ""
|
6267 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
6268 |
"existing listings will be deleted as well."
|
6269 |
msgstr ""
|
6270 |
|
6271 |
+
#: includes/fields/class-form-field.php:633
|
6272 |
msgctxt "form-fields-api"
|
6273 |
msgid ""
|
6274 |
"There can only be one field with association \"%s\". Please select another "
|
6277 |
"Il ne peut y avoir qu'un champ avec l'association \"% s \". Veuillez "
|
6278 |
"sélectionner une autre association."
|
6279 |
|
6280 |
+
#: includes/fields/class-form-field.php:643
|
6281 |
msgctxt "form-fields-api"
|
6282 |
msgid "\"%s\" is an invalid field type for this association."
|
6283 |
msgstr "\" est un type de champ invalide pour cette association."
|
6284 |
|
6285 |
+
#: includes/fields/class-form-field.php:697
|
6286 |
msgctxt "form-fields-api"
|
6287 |
msgid "Invalid field ID"
|
6288 |
msgstr "ID de champ invalide"
|
6289 |
|
6290 |
+
#: includes/fields/class-form-field.php:720
|
6291 |
msgctxt "form-fields-api"
|
6292 |
msgid "An error occurred while trying to delete this field."
|
6293 |
msgstr "Une erreur est survenue en essayant de supprimer ce champ."
|
6317 |
msgid "Date Validator"
|
6318 |
msgstr "Validateur de date"
|
6319 |
|
6320 |
+
#: includes/form-fields.php:574
|
6321 |
+
#, fuzzy
|
6322 |
+
msgctxt "form-fields-api"
|
6323 |
+
msgid "Word Count Validator"
|
6324 |
+
msgstr "Validateur de nombre entier"
|
6325 |
+
|
6326 |
#: includes/fields/class-fieldtypes-image.php:121
|
6327 |
msgctxt "form fields"
|
6328 |
msgid "Field unavailable at the moment."
|
6379 |
"paramètre, SAUF si vous publiez les annonces vous-même et avez le contrôle "
|
6380 |
"exclusif du contenu. Êtes-vous sûr de vouloir l'activer?"
|
6381 |
|
6382 |
+
#: includes/form-fields.php:581
|
6383 |
msgctxt "form-fields-api validation"
|
6384 |
msgid "Field"
|
6385 |
msgstr "Champ"
|
6386 |
|
6387 |
+
#: includes/form-fields.php:602 includes/form-fields.php:607
|
6388 |
msgctxt "form-fields-api validation"
|
6389 |
msgid "%s is required."
|
6390 |
msgstr "%s est requis."
|
6391 |
|
6392 |
+
#: includes/form-fields.php:619 includes/form-fields.php:626
|
6393 |
msgctxt "form-fields-api validation"
|
6394 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
6395 |
msgstr "%s est mal formaté. format URL valide requis. Inclure http: //"
|
6396 |
|
6397 |
+
#: includes/form-fields.php:641
|
6398 |
msgctxt "form-fields-api validation"
|
6399 |
msgid "%s is badly formatted. Valid Email format required."
|
6400 |
msgstr "%s est mal formaté. Un format valide d'email est requis."
|
6401 |
|
6402 |
+
#: includes/form-fields.php:648
|
6403 |
msgctxt "form-fields-api validation"
|
6404 |
msgid "%s must be a number. Decimal values are not allowed."
|
6405 |
msgstr "%s doit être un nombre. Les valeurs décimales ne sont pas autorisées."
|
6406 |
|
6407 |
+
#: includes/form-fields.php:655
|
6408 |
msgctxt "form-fields-api validation"
|
6409 |
msgid "%s must be a number."
|
6410 |
msgstr "%s doit être un nombre."
|
6411 |
|
6412 |
+
#: includes/form-fields.php:674
|
6413 |
#, fuzzy
|
6414 |
msgctxt "form-fields-api validation"
|
6415 |
msgid "%1$s must be in the format %2$s."
|
6416 |
msgstr "%s doit être au format %s."
|
6417 |
|
6418 |
+
#: includes/form-fields.php:712
|
6419 |
msgctxt "form-fields-api validation"
|
6420 |
msgid "%s must be a valid date."
|
6421 |
msgstr "%s doit être une date valide."
|
6422 |
|
6423 |
+
#: includes/form-fields.php:735
|
6424 |
+
msgctxt "form-fields-api validation"
|
6425 |
+
msgid "%s must have less than %d words."
|
6426 |
+
msgstr ""
|
6427 |
+
|
6428 |
+
#: includes/form-fields.php:754
|
6429 |
#, fuzzy
|
6430 |
msgctxt "form-fields-api validation"
|
6431 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
6432 |
msgstr "%s est invalide. La valeur doit être l'un des %s."
|
6433 |
|
6434 |
+
#: includes/form-fields.php:719
|
6435 |
+
#, fuzzy
|
6436 |
+
msgctxt "image field"
|
6437 |
+
msgid "Caption for %s is required."
|
6438 |
+
msgstr "Le pays est requis"
|
6439 |
+
|
6440 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
6441 |
msgctxt "authorize-net"
|
6442 |
msgid "Authorize.net"
|
7204 |
msgid "View not available."
|
7205 |
msgstr "Emplacements d'image disponibles."
|
7206 |
|
7207 |
+
#: includes/views/submit_listing.php:852
|
7208 |
msgctxt "templates"
|
7209 |
msgid "Please agree to the Terms and Conditions."
|
7210 |
msgstr "Veuillez accepter les conditions d'utilisation."
|
7211 |
|
7212 |
+
#: includes/views/submit_listing.php:860
|
7213 |
msgctxt "templates"
|
7214 |
msgid "Terms and Conditions:"
|
7215 |
msgstr "Conditions d'utilisation:"
|
7216 |
|
7217 |
+
#: includes/views/submit_listing.php:869
|
7218 |
msgctxt "templates"
|
7219 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7220 |
msgstr "J'accepte <a> Conditions générales </a>"
|
7903 |
"Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
|
7904 |
"publiée."
|
7905 |
|
7906 |
+
#: includes/views/submit_listing.php:613
|
7907 |
msgctxt "listing submit"
|
7908 |
msgid ""
|
7909 |
"Something went wrong. Please check the form for errors, correct them and "
|
7912 |
"Quelque chose s'est mal passé. Veuillez vérifier le formulaire, corriger les "
|
7913 |
"erreurs et soumettre à nouveau."
|
7914 |
|
7915 |
+
#: includes/views/submit_listing.php:695
|
7916 |
msgctxt "listing submit"
|
7917 |
msgid ""
|
7918 |
"Image upload is required, please provide at least one image and submit again."
|
8157 |
msgid "Elegant Business Theme"
|
8158 |
msgstr "Nom de l'entreprise"
|
8159 |
|
8160 |
+
#: templates/admin/sidebar.tpl.php:23
|
8161 |
+
#, fuzzy
|
8162 |
+
msgctxt "admin sidebar"
|
8163 |
+
msgid "Modern Business Theme"
|
8164 |
+
msgstr "Nom de l'entreprise"
|
8165 |
+
|
8166 |
+
#: templates/admin/sidebar.tpl.php:24
|
8167 |
+
#, fuzzy
|
8168 |
+
msgctxt "admin sidebar"
|
8169 |
+
msgid "Modern Filtered Theme"
|
8170 |
+
msgstr "Effacer le thème"
|
8171 |
+
|
8172 |
+
#: templates/admin/sidebar.tpl.php:31
|
8173 |
msgctxt "admin sidebar"
|
8174 |
msgid "Like this plugin?"
|
8175 |
msgstr "Vous aimez ce plugin ?"
|
8176 |
|
8177 |
+
#: templates/admin/sidebar.tpl.php:33
|
8178 |
msgctxt "admin sidebar"
|
8179 |
msgid "Why not do any or all of the following:"
|
8180 |
msgstr "Pourquoi ne pas faire l'une des actions suivantes:"
|
8181 |
|
8182 |
+
#: templates/admin/sidebar.tpl.php:35
|
8183 |
msgctxt "admin sidebar"
|
8184 |
msgid "Give it a good rating on WordPress.org."
|
8185 |
msgstr "Donnez lui une bonne note sur Wordpress.org."
|
8186 |
|
8187 |
+
#: templates/admin/sidebar.tpl.php:36
|
8188 |
msgctxt "admin sidebar"
|
8189 |
msgid "Let other people know that it works with your WordPress setup."
|
8190 |
msgstr ""
|
8191 |
"Faites savoir à d'autres personnes qu'il fonctionne avec votre version de "
|
8192 |
"Wordpress."
|
8193 |
|
8194 |
+
#: templates/admin/sidebar.tpl.php:37
|
8195 |
msgctxt "admin sidebar"
|
8196 |
msgid "Buy a Premium Module"
|
8197 |
msgstr "Acheter un module Premium"
|
8198 |
|
8199 |
+
#: templates/admin/sidebar.tpl.php:44
|
8200 |
msgctxt "admin sidebar"
|
8201 |
msgid "Get a Premium Module"
|
8202 |
msgstr "Avoir un module Premium"
|
8203 |
|
8204 |
+
#: templates/admin/sidebar.tpl.php:47 templates/admin/sidebar.tpl.php:63
|
8205 |
msgctxt "admin sidebar"
|
8206 |
msgid "best deal"
|
8207 |
msgstr "meilleure offre"
|
8208 |
|
8209 |
+
#: templates/admin/sidebar.tpl.php:47
|
8210 |
msgctxt "admin sidebar"
|
8211 |
msgid "Combo Pack"
|
8212 |
msgstr "Thèmes"
|
8213 |
|
8214 |
+
#: templates/admin/sidebar.tpl.php:47
|
8215 |
msgctxt "admin sidebar"
|
8216 |
msgid "(All Modules)"
|
8217 |
msgstr "Tous les (modules installés)"
|
8218 |
|
8219 |
+
#: templates/admin/sidebar.tpl.php:50 templates/admin/sidebar.tpl.php:66
|
8220 |
msgctxt "admin sidebar"
|
8221 |
msgid "new"
|
8222 |
msgstr "nouveau"
|
8223 |
|
8224 |
+
#: templates/admin/sidebar.tpl.php:60
|
8225 |
msgctxt "admin sidebar"
|
8226 |
msgid "Get a Directory Theme"
|
8227 |
msgstr "Catégories de l'annuaire"
|
8228 |
|
8229 |
+
#: templates/admin/sidebar.tpl.php:63
|
8230 |
msgctxt "admin sidebar"
|
8231 |
msgid "Theme Pack"
|
8232 |
msgstr "Thèmes"
|
8233 |
|
8234 |
+
#: templates/admin/sidebar.tpl.php:63
|
8235 |
msgctxt "admin sidebar"
|
8236 |
msgid "(All Themes)"
|
8237 |
msgstr "(Tous les thèmes)"
|
8238 |
|
8239 |
+
#: templates/admin/sidebar.tpl.php:76
|
8240 |
msgctxt "admin sidebar"
|
8241 |
msgid "Found a bug? Need support?"
|
8242 |
msgstr "Vous avez trouvé un bug ? Besoin d'assistance ?"
|
8243 |
|
8244 |
+
#: templates/admin/sidebar.tpl.php:81
|
8245 |
msgctxt "admin sidebar"
|
8246 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
8247 |
msgstr ""
|
8248 |
"Si vous avez trouvé un bug ou si vous avez besoin d'assistance, <a>visitez "
|
8249 |
"le forum!</a>"
|
8250 |
|
8251 |
+
#: templates/admin/sidebar.tpl.php:84
|
8252 |
msgctxt "admin sidebar"
|
8253 |
msgid "Full plugin documentation"
|
8254 |
msgstr "Documentation complète du plugin"
|
8255 |
|
8256 |
+
#: templates/admin/sidebar.tpl.php:85
|
8257 |
msgctxt "admin sidebar"
|
8258 |
msgid "Quick Start Guide"
|
8259 |
msgstr "Guide rapide de lancement"
|
8260 |
|
8261 |
+
#: templates/admin/sidebar.tpl.php:86
|
8262 |
msgctxt "admin sidebar"
|
8263 |
msgid "Video Tutorials"
|
8264 |
msgstr "Vidéo tutoriels"
|
8265 |
|
8266 |
+
#: templates/admin/sidebar.tpl.php:94
|
8267 |
msgctxt "admin sidebar"
|
8268 |
msgid "Installed Modules"
|
8269 |
msgstr "Modules installés"
|
8270 |
|
8271 |
+
#: templates/admin/sidebar.tpl.php:105 templates/admin/sidebar.tpl.php:114
|
8272 |
msgctxt "admin sidebar"
|
8273 |
msgid "Installed"
|
8274 |
msgstr "Installé"
|
8275 |
|
8276 |
+
#: templates/admin/sidebar.tpl.php:107 templates/admin/sidebar.tpl.php:114
|
8277 |
msgctxt "admin sidebar"
|
8278 |
msgid "Not Installed"
|
8279 |
msgstr "Non installé"
|
8280 |
|
8281 |
+
#: templates/admin/sidebar.tpl.php:113
|
8282 |
msgctxt "admin sidebar"
|
8283 |
msgid "Enhanced Categories Module"
|
8284 |
msgstr "Module d'amélioration des catégories"
|
11255 |
#~ msgid "Delete theme"
|
11256 |
#~ msgstr "Effacer les thème"
|
11257 |
|
|
|
|
|
|
|
|
|
11258 |
#~ msgctxt "admin settings"
|
11259 |
#~ msgid "Display search form when displaying search results?"
|
11260 |
#~ msgstr ""
|
languages/WPBDM-nl_NL.mo
CHANGED
Binary file
|
languages/WPBDM-nl_NL.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Business Directory Plugin 4.1.12.1\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
-
"POT-Creation-Date: 2018-06-
|
7 |
"PO-Revision-Date: 2017-07-04 12:37+0000\n"
|
8 |
"Last-Translator: admin <info@nederlofcentrum.nl>\n"
|
9 |
"Language-Team: Dutch\n"
|
@@ -2527,13 +2527,13 @@ msgctxt "form-fields admin"
|
|
2527 |
msgid "Field list of options is required."
|
2528 |
msgstr ""
|
2529 |
|
2530 |
-
#: includes/fields/class-fieldtypes-image.php:
|
2531 |
#, fuzzy
|
2532 |
msgctxt "form-fields admin"
|
2533 |
msgid "Display caption?"
|
2534 |
msgstr "Register vertoning opties"
|
2535 |
|
2536 |
-
#: includes/fields/class-fieldtypes-image.php:
|
2537 |
#, fuzzy
|
2538 |
msgctxt "form-fields admin"
|
2539 |
msgid "Field Caption required?"
|
@@ -2651,146 +2651,178 @@ msgctxt "form-fields admin"
|
|
2651 |
msgid "Use rel=\"nofollow\" when displaying the link?"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2655 |
msgctxt "form-fields admin"
|
2656 |
msgid "Add Form Field"
|
2657 |
msgstr "Formulier veld toevoegen"
|
2658 |
|
2659 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2660 |
msgctxt "form-fields admin"
|
2661 |
msgid "Field Association"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2665 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2666 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2667 |
msgctxt "form-fields admin"
|
2668 |
msgid "required"
|
2669 |
msgstr "vereist"
|
2670 |
|
2671 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2672 |
msgctxt "form-fields admin"
|
2673 |
msgid "Field Type"
|
2674 |
msgstr "Veld type"
|
2675 |
|
2676 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2677 |
msgctxt "form-fields admin"
|
2678 |
msgid "Field Label"
|
2679 |
msgstr "Veld label"
|
2680 |
|
2681 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2682 |
msgctxt "form-fields admin"
|
2683 |
msgid "Field description"
|
2684 |
msgstr "Veld omschrijving"
|
2685 |
|
2686 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2687 |
msgctxt "form-fields admin"
|
2688 |
msgid "optional"
|
2689 |
msgstr "optioneel"
|
2690 |
|
2691 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2692 |
msgctxt "form-fields admin"
|
2693 |
msgid "Field-specific settings"
|
2694 |
msgstr "Veld specifieke instelling"
|
2695 |
|
2696 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2697 |
msgctxt "form-fields admin"
|
2698 |
msgid "Field validation options"
|
2699 |
msgstr ""
|
2700 |
|
2701 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2702 |
msgctxt "form-fields admin"
|
2703 |
msgid "Field Validator"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2707 |
msgctxt "form-fields admin"
|
2708 |
msgid "No validation"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2712 |
msgctxt "form-fields admin"
|
2713 |
msgid "Is field required?"
|
2714 |
msgstr "Is veld vereist?"
|
2715 |
|
2716 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2717 |
msgctxt "form-fields admin"
|
2718 |
msgid "This field is required."
|
2719 |
msgstr "Dit veld is vereist."
|
2720 |
|
2721 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2722 |
msgctxt "form-fields admin"
|
2723 |
msgid "Field display options"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2727 |
msgctxt "form-fields admin"
|
2728 |
msgid "Show this field to admin users only?"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2732 |
msgctxt "form-fields admin"
|
2733 |
msgid "Display this field to admin users only in the edit listing view."
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2737 |
msgctxt "form-fields admin"
|
2738 |
msgid "Show this value in excerpt view?"
|
2739 |
msgstr ""
|
2740 |
|
2741 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2742 |
msgctxt "form-fields admin"
|
2743 |
msgid "Display this value in post excerpt view."
|
2744 |
msgstr ""
|
2745 |
|
2746 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2747 |
msgctxt "form-fields admin"
|
2748 |
msgid "Show this value in listing view?"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2752 |
msgctxt "form-fields admin"
|
2753 |
msgid "Display this value in the listing view."
|
2754 |
msgstr ""
|
2755 |
|
2756 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2757 |
msgctxt "form-fields admin"
|
2758 |
msgid "Include this field in the search form?"
|
2759 |
msgstr ""
|
2760 |
|
2761 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2762 |
msgctxt "form-fields admin"
|
2763 |
msgid "Include this field in the search form."
|
2764 |
msgstr ""
|
2765 |
|
2766 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2767 |
#, fuzzy
|
2768 |
msgctxt "form-fields admin"
|
2769 |
msgid "Is this field required for searching?"
|
2770 |
msgstr "Is veld vereist?"
|
2771 |
|
2772 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2773 |
msgctxt "form-fields admin"
|
2774 |
msgid ""
|
2775 |
"Make this fields required during searches on the Advanced Search screen."
|
2776 |
msgstr ""
|
2777 |
|
2778 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2779 |
msgctxt "form-fields admin"
|
2780 |
msgid "Hide this field's label?"
|
2781 |
msgstr ""
|
2782 |
|
2783 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2784 |
msgctxt "form-fields admin"
|
2785 |
msgid "Hide this field's label when displaying it."
|
2786 |
msgstr ""
|
2787 |
|
2788 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2789 |
msgctxt "form-fields admin"
|
2790 |
msgid "Update Field"
|
2791 |
msgstr "Veld bijwerken"
|
2792 |
|
2793 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2794 |
msgctxt "form-fields admin"
|
2795 |
msgid "Add Field"
|
2796 |
msgstr "Veld toevoegen "
|
@@ -5829,55 +5861,55 @@ msgctxt "submit listing"
|
|
5829 |
msgid "Please choose a valid fee plan for your category selection."
|
5830 |
msgstr ""
|
5831 |
|
5832 |
-
#: includes/views/submit_listing.php:
|
5833 |
msgctxt "submit listing"
|
5834 |
msgid "Please enter your desired username."
|
5835 |
msgstr ""
|
5836 |
|
5837 |
-
#: includes/views/submit_listing.php:
|
5838 |
msgctxt "submit listing"
|
5839 |
msgid "Please enter the e-mail for your new account."
|
5840 |
msgstr ""
|
5841 |
|
5842 |
-
#: includes/views/submit_listing.php:
|
5843 |
msgctxt "submit listing"
|
5844 |
msgid "Please enter the password for your new account."
|
5845 |
msgstr ""
|
5846 |
|
5847 |
-
#: includes/views/submit_listing.php:
|
5848 |
msgctxt "submit listing"
|
5849 |
msgid "The username you chose is already in use. Please use a different one."
|
5850 |
msgstr ""
|
5851 |
|
5852 |
-
#: includes/views/submit_listing.php:
|
5853 |
msgctxt "submit listing"
|
5854 |
msgid "The e-mail address you chose for your account is already in use."
|
5855 |
msgstr ""
|
5856 |
|
5857 |
-
#: includes/views/submit_listing.php:
|
5858 |
msgctxt "submit listing"
|
5859 |
msgid "Create a user account on this site"
|
5860 |
msgstr ""
|
5861 |
|
5862 |
-
#: includes/views/submit_listing.php:
|
5863 |
msgctxt "submit listing"
|
5864 |
msgid ""
|
5865 |
"You need to create an account on the site. Please fill out the form below."
|
5866 |
msgstr ""
|
5867 |
|
5868 |
-
#: includes/views/submit_listing.php:
|
5869 |
#, fuzzy
|
5870 |
msgctxt "submit listing"
|
5871 |
msgid "Username:"
|
5872 |
msgstr "Gebruiker"
|
5873 |
|
5874 |
-
#: includes/views/submit_listing.php:
|
5875 |
#, fuzzy
|
5876 |
msgctxt "submit listing"
|
5877 |
msgid "Email:"
|
5878 |
msgstr "Jouw email"
|
5879 |
|
5880 |
-
#: includes/views/submit_listing.php:
|
5881 |
msgctxt "submit listing"
|
5882 |
msgid "Password:"
|
5883 |
msgstr ""
|
@@ -5911,12 +5943,12 @@ msgctxt "submit listing"
|
|
5911 |
msgid "Save Changes"
|
5912 |
msgstr "Bewaar veranderingen"
|
5913 |
|
5914 |
-
#: includes/class-recaptcha.php:
|
5915 |
msgctxt "recaptcha"
|
5916 |
msgid "The reCAPTCHA wasn't entered correctly."
|
5917 |
msgstr ""
|
5918 |
|
5919 |
-
#: includes/class-recaptcha.php:
|
5920 |
#, fuzzy
|
5921 |
msgctxt "recaptcha"
|
5922 |
msgid "reCAPTCHA"
|
@@ -6018,12 +6050,12 @@ msgctxt "form-fields api"
|
|
6018 |
msgid "Textarea"
|
6019 |
msgstr "Tekst gebied"
|
6020 |
|
6021 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
6022 |
msgctxt "form-fields api"
|
6023 |
msgid "Textfield"
|
6024 |
msgstr "Tekst veld"
|
6025 |
|
6026 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
6027 |
msgctxt "form-fields api"
|
6028 |
msgid "Format 01/31/1969"
|
6029 |
msgstr ""
|
@@ -6048,7 +6080,7 @@ msgctxt "form-fields api"
|
|
6048 |
msgid "Link Text (optional):"
|
6049 |
msgstr "Link tekst (optioneel)"
|
6050 |
|
6051 |
-
#: includes/fields/class-form-field.php:
|
6052 |
msgctxt "form-fields api"
|
6053 |
msgid ""
|
6054 |
"This form field can't be deleted because it is required for the plugin to "
|
@@ -6106,7 +6138,7 @@ msgctxt "date field"
|
|
6106 |
msgid "%s must be a valid date."
|
6107 |
msgstr ""
|
6108 |
|
6109 |
-
#: includes/fields/class-fieldtypes-image.php:
|
6110 |
#, fuzzy
|
6111 |
msgctxt "date field"
|
6112 |
msgid "Caption for %s is required."
|
@@ -6117,17 +6149,17 @@ msgctxt "form-fields-api"
|
|
6117 |
msgid "Remove"
|
6118 |
msgstr "Verwijder"
|
6119 |
|
6120 |
-
#: includes/fields/class-form-field.php:
|
6121 |
msgctxt "form-fields-api"
|
6122 |
msgid "Invalid form field type"
|
6123 |
msgstr ""
|
6124 |
|
6125 |
-
#: includes/fields/class-form-field.php:
|
6126 |
msgctxt "form-fields-api"
|
6127 |
msgid "Field label is required."
|
6128 |
msgstr ""
|
6129 |
|
6130 |
-
#: includes/fields/class-form-field.php:
|
6131 |
msgctxt "form-fields-api"
|
6132 |
msgid ""
|
6133 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
@@ -6135,31 +6167,31 @@ msgid ""
|
|
6135 |
"delete this current field and create a NEW field of type %1$s instead."
|
6136 |
msgstr ""
|
6137 |
|
6138 |
-
#: includes/fields/class-form-field.php:
|
6139 |
msgctxt "form-fields-api"
|
6140 |
msgid ""
|
6141 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
6142 |
"existing listings will be deleted as well."
|
6143 |
msgstr ""
|
6144 |
|
6145 |
-
#: includes/fields/class-form-field.php:
|
6146 |
msgctxt "form-fields-api"
|
6147 |
msgid ""
|
6148 |
"There can only be one field with association \"%s\". Please select another "
|
6149 |
"association."
|
6150 |
msgstr ""
|
6151 |
|
6152 |
-
#: includes/fields/class-form-field.php:
|
6153 |
msgctxt "form-fields-api"
|
6154 |
msgid "\"%s\" is an invalid field type for this association."
|
6155 |
msgstr ""
|
6156 |
|
6157 |
-
#: includes/fields/class-form-field.php:
|
6158 |
msgctxt "form-fields-api"
|
6159 |
msgid "Invalid field ID"
|
6160 |
msgstr ""
|
6161 |
|
6162 |
-
#: includes/fields/class-form-field.php:
|
6163 |
msgctxt "form-fields-api"
|
6164 |
msgid "An error occurred while trying to delete this field."
|
6165 |
msgstr ""
|
@@ -6189,6 +6221,11 @@ msgctxt "form-fields-api"
|
|
6189 |
msgid "Date Validator"
|
6190 |
msgstr ""
|
6191 |
|
|
|
|
|
|
|
|
|
|
|
6192 |
#: includes/fields/class-fieldtypes-image.php:121
|
6193 |
msgctxt "form fields"
|
6194 |
msgid "Field unavailable at the moment."
|
@@ -6237,52 +6274,63 @@ msgid ""
|
|
6237 |
"you sure you want to enable this?"
|
6238 |
msgstr ""
|
6239 |
|
6240 |
-
#: includes/form-fields.php:
|
6241 |
msgctxt "form-fields-api validation"
|
6242 |
msgid "Field"
|
6243 |
msgstr ""
|
6244 |
|
6245 |
-
#: includes/form-fields.php:
|
6246 |
msgctxt "form-fields-api validation"
|
6247 |
msgid "%s is required."
|
6248 |
msgstr "%s is vereist."
|
6249 |
|
6250 |
-
#: includes/form-fields.php:
|
6251 |
msgctxt "form-fields-api validation"
|
6252 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
6253 |
msgstr ""
|
6254 |
"%s is niet correct ingegeven. Geldig URL (site) vereist, inclusief http://"
|
6255 |
|
6256 |
-
#: includes/form-fields.php:
|
6257 |
msgctxt "form-fields-api validation"
|
6258 |
msgid "%s is badly formatted. Valid Email format required."
|
6259 |
msgstr "%s niet correct ingegeven. Geldige email schrijfwijze vereist."
|
6260 |
|
6261 |
-
#: includes/form-fields.php:
|
6262 |
msgctxt "form-fields-api validation"
|
6263 |
msgid "%s must be a number. Decimal values are not allowed."
|
6264 |
msgstr ""
|
6265 |
|
6266 |
-
#: includes/form-fields.php:
|
6267 |
msgctxt "form-fields-api validation"
|
6268 |
msgid "%s must be a number."
|
6269 |
msgstr ""
|
6270 |
|
6271 |
-
#: includes/form-fields.php:
|
6272 |
msgctxt "form-fields-api validation"
|
6273 |
msgid "%1$s must be in the format %2$s."
|
6274 |
msgstr ""
|
6275 |
|
6276 |
-
#: includes/form-fields.php:
|
6277 |
msgctxt "form-fields-api validation"
|
6278 |
msgid "%s must be a valid date."
|
6279 |
msgstr ""
|
6280 |
|
6281 |
-
#: includes/form-fields.php:
|
|
|
|
|
|
|
|
|
|
|
6282 |
msgctxt "form-fields-api validation"
|
6283 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
6284 |
msgstr ""
|
6285 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6286 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
6287 |
#, fuzzy
|
6288 |
msgctxt "authorize-net"
|
@@ -6992,17 +7040,17 @@ msgctxt "templates"
|
|
6992 |
msgid "View not available."
|
6993 |
msgstr ""
|
6994 |
|
6995 |
-
#: includes/views/submit_listing.php:
|
6996 |
msgctxt "templates"
|
6997 |
msgid "Please agree to the Terms and Conditions."
|
6998 |
msgstr "Ga s.v.p. akkoord met de voorwaarden"
|
6999 |
|
7000 |
-
#: includes/views/submit_listing.php:
|
7001 |
msgctxt "templates"
|
7002 |
msgid "Terms and Conditions:"
|
7003 |
msgstr "Voorwaarden"
|
7004 |
|
7005 |
-
#: includes/views/submit_listing.php:
|
7006 |
#, fuzzy
|
7007 |
msgctxt "templates"
|
7008 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
@@ -7652,14 +7700,14 @@ msgid "This is just a preview. The listing has not been published yet."
|
|
7652 |
msgstr ""
|
7653 |
"Dit is alleen een voorvertoning. De registratie is nog niet gepubliceerd."
|
7654 |
|
7655 |
-
#: includes/views/submit_listing.php:
|
7656 |
msgctxt "listing submit"
|
7657 |
msgid ""
|
7658 |
"Something went wrong. Please check the form for errors, correct them and "
|
7659 |
"submit again."
|
7660 |
msgstr ""
|
7661 |
|
7662 |
-
#: includes/views/submit_listing.php:
|
7663 |
msgctxt "listing submit"
|
7664 |
msgid ""
|
7665 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -7902,112 +7950,122 @@ msgctxt "admin sidebar"
|
|
7902 |
msgid "Elegant Business Theme"
|
7903 |
msgstr ""
|
7904 |
|
7905 |
-
#: templates/admin/sidebar.tpl.php:
|
7906 |
msgctxt "admin sidebar"
|
7907 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
7908 |
msgstr ""
|
7909 |
|
7910 |
#: templates/admin/sidebar.tpl.php:31
|
7911 |
msgctxt "admin sidebar"
|
7912 |
-
msgid "
|
7913 |
msgstr ""
|
7914 |
|
7915 |
#: templates/admin/sidebar.tpl.php:33
|
7916 |
msgctxt "admin sidebar"
|
|
|
|
|
|
|
|
|
|
|
7917 |
msgid "Give it a good rating on WordPress.org."
|
7918 |
msgstr ""
|
7919 |
|
7920 |
-
#: templates/admin/sidebar.tpl.php:
|
7921 |
msgctxt "admin sidebar"
|
7922 |
msgid "Let other people know that it works with your WordPress setup."
|
7923 |
msgstr ""
|
7924 |
|
7925 |
-
#: templates/admin/sidebar.tpl.php:
|
7926 |
msgctxt "admin sidebar"
|
7927 |
msgid "Buy a Premium Module"
|
7928 |
msgstr ""
|
7929 |
|
7930 |
-
#: templates/admin/sidebar.tpl.php:
|
7931 |
msgctxt "admin sidebar"
|
7932 |
msgid "Get a Premium Module"
|
7933 |
msgstr "Koop een Premium module"
|
7934 |
|
7935 |
-
#: templates/admin/sidebar.tpl.php:
|
7936 |
msgctxt "admin sidebar"
|
7937 |
msgid "best deal"
|
7938 |
msgstr ""
|
7939 |
|
7940 |
-
#: templates/admin/sidebar.tpl.php:
|
7941 |
msgctxt "admin sidebar"
|
7942 |
msgid "Combo Pack"
|
7943 |
msgstr ""
|
7944 |
|
7945 |
-
#: templates/admin/sidebar.tpl.php:
|
7946 |
msgctxt "admin sidebar"
|
7947 |
msgid "(All Modules)"
|
7948 |
msgstr ""
|
7949 |
|
7950 |
-
#: templates/admin/sidebar.tpl.php:
|
7951 |
msgctxt "admin sidebar"
|
7952 |
msgid "new"
|
7953 |
msgstr ""
|
7954 |
|
7955 |
-
#: templates/admin/sidebar.tpl.php:
|
7956 |
msgctxt "admin sidebar"
|
7957 |
msgid "Get a Directory Theme"
|
7958 |
msgstr "Koop een Directory thema"
|
7959 |
|
7960 |
-
#: templates/admin/sidebar.tpl.php:
|
7961 |
msgctxt "admin sidebar"
|
7962 |
msgid "Theme Pack"
|
7963 |
msgstr ""
|
7964 |
|
7965 |
-
#: templates/admin/sidebar.tpl.php:
|
7966 |
msgctxt "admin sidebar"
|
7967 |
msgid "(All Themes)"
|
7968 |
msgstr ""
|
7969 |
|
7970 |
-
#: templates/admin/sidebar.tpl.php:
|
7971 |
msgctxt "admin sidebar"
|
7972 |
msgid "Found a bug? Need support?"
|
7973 |
msgstr ""
|
7974 |
|
7975 |
-
#: templates/admin/sidebar.tpl.php:
|
7976 |
msgctxt "admin sidebar"
|
7977 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
7978 |
msgstr ""
|
7979 |
|
7980 |
-
#: templates/admin/sidebar.tpl.php:
|
7981 |
msgctxt "admin sidebar"
|
7982 |
msgid "Full plugin documentation"
|
7983 |
msgstr ""
|
7984 |
|
7985 |
-
#: templates/admin/sidebar.tpl.php:
|
7986 |
msgctxt "admin sidebar"
|
7987 |
msgid "Quick Start Guide"
|
7988 |
msgstr ""
|
7989 |
|
7990 |
-
#: templates/admin/sidebar.tpl.php:
|
7991 |
msgctxt "admin sidebar"
|
7992 |
msgid "Video Tutorials"
|
7993 |
msgstr ""
|
7994 |
|
7995 |
-
#: templates/admin/sidebar.tpl.php:
|
7996 |
msgctxt "admin sidebar"
|
7997 |
msgid "Installed Modules"
|
7998 |
msgstr "Geïnstalleerde modules"
|
7999 |
|
8000 |
-
#: templates/admin/sidebar.tpl.php:
|
8001 |
msgctxt "admin sidebar"
|
8002 |
msgid "Installed"
|
8003 |
msgstr ""
|
8004 |
|
8005 |
-
#: templates/admin/sidebar.tpl.php:
|
8006 |
msgctxt "admin sidebar"
|
8007 |
msgid "Not Installed"
|
8008 |
msgstr ""
|
8009 |
|
8010 |
-
#: templates/admin/sidebar.tpl.php:
|
8011 |
msgctxt "admin sidebar"
|
8012 |
msgid "Enhanced Categories Module"
|
8013 |
msgstr ""
|
3 |
"Project-Id-Version: Business Directory Plugin 4.1.12.1\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
+
"POT-Creation-Date: 2018-06-27 21:14:25+00:00\n"
|
7 |
"PO-Revision-Date: 2017-07-04 12:37+0000\n"
|
8 |
"Last-Translator: admin <info@nederlofcentrum.nl>\n"
|
9 |
"Language-Team: Dutch\n"
|
2527 |
msgid "Field list of options is required."
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: includes/fields/class-fieldtypes-image.php:55
|
2531 |
#, fuzzy
|
2532 |
msgctxt "form-fields admin"
|
2533 |
msgid "Display caption?"
|
2534 |
msgstr "Register vertoning opties"
|
2535 |
|
2536 |
+
#: includes/fields/class-fieldtypes-image.php:58
|
2537 |
#, fuzzy
|
2538 |
msgctxt "form-fields admin"
|
2539 |
msgid "Field Caption required?"
|
2651 |
msgid "Use rel=\"nofollow\" when displaying the link?"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: templates/admin/form-fields-addoredit.tpl.php:8
|
2655 |
msgctxt "form-fields admin"
|
2656 |
msgid "Add Form Field"
|
2657 |
msgstr "Formulier veld toevoegen"
|
2658 |
|
2659 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
2660 |
msgctxt "form-fields admin"
|
2661 |
msgid "Field Association"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
2665 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
2666 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
2667 |
msgctxt "form-fields admin"
|
2668 |
msgid "required"
|
2669 |
msgstr "vereist"
|
2670 |
|
2671 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
2672 |
msgctxt "form-fields admin"
|
2673 |
msgid "Field Type"
|
2674 |
msgstr "Veld type"
|
2675 |
|
2676 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
2677 |
msgctxt "form-fields admin"
|
2678 |
msgid "Field Label"
|
2679 |
msgstr "Veld label"
|
2680 |
|
2681 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
2682 |
msgctxt "form-fields admin"
|
2683 |
msgid "Field description"
|
2684 |
msgstr "Veld omschrijving"
|
2685 |
|
2686 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
2687 |
msgctxt "form-fields admin"
|
2688 |
msgid "optional"
|
2689 |
msgstr "optioneel"
|
2690 |
|
2691 |
+
#: templates/admin/form-fields-addoredit.tpl.php:97
|
2692 |
msgctxt "form-fields admin"
|
2693 |
msgid "Field-specific settings"
|
2694 |
msgstr "Veld specifieke instelling"
|
2695 |
|
2696 |
+
#: templates/admin/form-fields-addoredit.tpl.php:106
|
2697 |
msgctxt "form-fields admin"
|
2698 |
msgid "Field validation options"
|
2699 |
msgstr ""
|
2700 |
|
2701 |
+
#: templates/admin/form-fields-addoredit.tpl.php:110
|
2702 |
msgctxt "form-fields admin"
|
2703 |
msgid "Field Validator"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
+
#: templates/admin/form-fields-addoredit.tpl.php:114
|
2707 |
msgctxt "form-fields admin"
|
2708 |
msgid "No validation"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
+
#: templates/admin/form-fields-addoredit.tpl.php:126
|
2712 |
+
#, fuzzy
|
2713 |
+
msgctxt "form-fields admin"
|
2714 |
+
msgid "Number of words"
|
2715 |
+
msgstr "Aantal gratis beelden"
|
2716 |
+
|
2717 |
+
#: templates/admin/form-fields-addoredit.tpl.php:136
|
2718 |
msgctxt "form-fields admin"
|
2719 |
msgid "Is field required?"
|
2720 |
msgstr "Is veld vereist?"
|
2721 |
|
2722 |
+
#: templates/admin/form-fields-addoredit.tpl.php:142
|
2723 |
msgctxt "form-fields admin"
|
2724 |
msgid "This field is required."
|
2725 |
msgstr "Dit veld is vereist."
|
2726 |
|
2727 |
+
#: templates/admin/form-fields-addoredit.tpl.php:150
|
2728 |
msgctxt "form-fields admin"
|
2729 |
msgid "Field display options"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
+
#: templates/admin/form-fields-addoredit.tpl.php:154
|
2733 |
+
msgctxt "form-fields admin"
|
2734 |
+
msgid "Field Category Policy:"
|
2735 |
+
msgstr ""
|
2736 |
+
|
2737 |
+
#: templates/admin/form-fields-addoredit.tpl.php:159
|
2738 |
+
#, fuzzy
|
2739 |
+
msgctxt "form-fields admin"
|
2740 |
+
msgid "Field applies to all categories"
|
2741 |
+
msgstr "Verberg lege categorieën"
|
2742 |
+
|
2743 |
+
#: templates/admin/form-fields-addoredit.tpl.php:160
|
2744 |
+
msgctxt "form-fields admin"
|
2745 |
+
msgid "Field applies to only certain categories"
|
2746 |
+
msgstr ""
|
2747 |
+
|
2748 |
+
#: templates/admin/form-fields-addoredit.tpl.php:164
|
2749 |
+
msgctxt "form-fields admin"
|
2750 |
+
msgid "Limit field to the following categories:"
|
2751 |
+
msgstr ""
|
2752 |
+
|
2753 |
+
#: templates/admin/form-fields-addoredit.tpl.php:188
|
2754 |
+
msgctxt "form-fields admin"
|
2755 |
+
msgid "Click to add categories to the selection."
|
2756 |
+
msgstr ""
|
2757 |
+
|
2758 |
+
#: templates/admin/form-fields-addoredit.tpl.php:201
|
2759 |
msgctxt "form-fields admin"
|
2760 |
msgid "Show this field to admin users only?"
|
2761 |
msgstr ""
|
2762 |
|
2763 |
+
#: templates/admin/form-fields-addoredit.tpl.php:207
|
2764 |
msgctxt "form-fields admin"
|
2765 |
msgid "Display this field to admin users only in the edit listing view."
|
2766 |
msgstr ""
|
2767 |
|
2768 |
+
#: templates/admin/form-fields-addoredit.tpl.php:213
|
2769 |
msgctxt "form-fields admin"
|
2770 |
msgid "Show this value in excerpt view?"
|
2771 |
msgstr ""
|
2772 |
|
2773 |
+
#: templates/admin/form-fields-addoredit.tpl.php:219
|
2774 |
msgctxt "form-fields admin"
|
2775 |
msgid "Display this value in post excerpt view."
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: templates/admin/form-fields-addoredit.tpl.php:225
|
2779 |
msgctxt "form-fields admin"
|
2780 |
msgid "Show this value in listing view?"
|
2781 |
msgstr ""
|
2782 |
|
2783 |
+
#: templates/admin/form-fields-addoredit.tpl.php:231
|
2784 |
msgctxt "form-fields admin"
|
2785 |
msgid "Display this value in the listing view."
|
2786 |
msgstr ""
|
2787 |
|
2788 |
+
#: templates/admin/form-fields-addoredit.tpl.php:237
|
2789 |
msgctxt "form-fields admin"
|
2790 |
msgid "Include this field in the search form?"
|
2791 |
msgstr ""
|
2792 |
|
2793 |
+
#: templates/admin/form-fields-addoredit.tpl.php:243
|
2794 |
msgctxt "form-fields admin"
|
2795 |
msgid "Include this field in the search form."
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: templates/admin/form-fields-addoredit.tpl.php:249
|
2799 |
#, fuzzy
|
2800 |
msgctxt "form-fields admin"
|
2801 |
msgid "Is this field required for searching?"
|
2802 |
msgstr "Is veld vereist?"
|
2803 |
|
2804 |
+
#: templates/admin/form-fields-addoredit.tpl.php:255
|
2805 |
msgctxt "form-fields admin"
|
2806 |
msgid ""
|
2807 |
"Make this fields required during searches on the Advanced Search screen."
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: templates/admin/form-fields-addoredit.tpl.php:261
|
2811 |
msgctxt "form-fields admin"
|
2812 |
msgid "Hide this field's label?"
|
2813 |
msgstr ""
|
2814 |
|
2815 |
+
#: templates/admin/form-fields-addoredit.tpl.php:267
|
2816 |
msgctxt "form-fields admin"
|
2817 |
msgid "Hide this field's label when displaying it."
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: templates/admin/form-fields-addoredit.tpl.php:274
|
2821 |
msgctxt "form-fields admin"
|
2822 |
msgid "Update Field"
|
2823 |
msgstr "Veld bijwerken"
|
2824 |
|
2825 |
+
#: templates/admin/form-fields-addoredit.tpl.php:276
|
2826 |
msgctxt "form-fields admin"
|
2827 |
msgid "Add Field"
|
2828 |
msgstr "Veld toevoegen "
|
5861 |
msgid "Please choose a valid fee plan for your category selection."
|
5862 |
msgstr ""
|
5863 |
|
5864 |
+
#: includes/views/submit_listing.php:743
|
5865 |
msgctxt "submit listing"
|
5866 |
msgid "Please enter your desired username."
|
5867 |
msgstr ""
|
5868 |
|
5869 |
+
#: includes/views/submit_listing.php:748
|
5870 |
msgctxt "submit listing"
|
5871 |
msgid "Please enter the e-mail for your new account."
|
5872 |
msgstr ""
|
5873 |
|
5874 |
+
#: includes/views/submit_listing.php:753
|
5875 |
msgctxt "submit listing"
|
5876 |
msgid "Please enter the password for your new account."
|
5877 |
msgstr ""
|
5878 |
|
5879 |
+
#: includes/views/submit_listing.php:763
|
5880 |
msgctxt "submit listing"
|
5881 |
msgid "The username you chose is already in use. Please use a different one."
|
5882 |
msgstr ""
|
5883 |
|
5884 |
+
#: includes/views/submit_listing.php:768
|
5885 |
msgctxt "submit listing"
|
5886 |
msgid "The e-mail address you chose for your account is already in use."
|
5887 |
msgstr ""
|
5888 |
|
5889 |
+
#: includes/views/submit_listing.php:783
|
5890 |
msgctxt "submit listing"
|
5891 |
msgid "Create a user account on this site"
|
5892 |
msgstr ""
|
5893 |
|
5894 |
+
#: includes/views/submit_listing.php:790
|
5895 |
msgctxt "submit listing"
|
5896 |
msgid ""
|
5897 |
"You need to create an account on the site. Please fill out the form below."
|
5898 |
msgstr ""
|
5899 |
|
5900 |
+
#: includes/views/submit_listing.php:796
|
5901 |
#, fuzzy
|
5902 |
msgctxt "submit listing"
|
5903 |
msgid "Username:"
|
5904 |
msgstr "Gebruiker"
|
5905 |
|
5906 |
+
#: includes/views/submit_listing.php:805
|
5907 |
#, fuzzy
|
5908 |
msgctxt "submit listing"
|
5909 |
msgid "Email:"
|
5910 |
msgstr "Jouw email"
|
5911 |
|
5912 |
+
#: includes/views/submit_listing.php:814
|
5913 |
msgctxt "submit listing"
|
5914 |
msgid "Password:"
|
5915 |
msgstr ""
|
5943 |
msgid "Save Changes"
|
5944 |
msgstr "Bewaar veranderingen"
|
5945 |
|
5946 |
+
#: includes/class-recaptcha.php:109 includes/class-recaptcha.php:150
|
5947 |
msgctxt "recaptcha"
|
5948 |
msgid "The reCAPTCHA wasn't entered correctly."
|
5949 |
msgstr ""
|
5950 |
|
5951 |
+
#: includes/class-recaptcha.php:211
|
5952 |
#, fuzzy
|
5953 |
msgctxt "recaptcha"
|
5954 |
msgid "reCAPTCHA"
|
6050 |
msgid "Textarea"
|
6051 |
msgstr "Tekst gebied"
|
6052 |
|
6053 |
+
#: includes/fields/class-fieldtypes-textfield.php:13
|
6054 |
msgctxt "form-fields api"
|
6055 |
msgid "Textfield"
|
6056 |
msgstr "Tekst veld"
|
6057 |
|
6058 |
+
#: includes/fields/class-fieldtypes-textfield.php:50
|
6059 |
msgctxt "form-fields api"
|
6060 |
msgid "Format 01/31/1969"
|
6061 |
msgstr ""
|
6080 |
msgid "Link Text (optional):"
|
6081 |
msgstr "Link tekst (optioneel)"
|
6082 |
|
6083 |
+
#: includes/fields/class-form-field.php:707
|
6084 |
msgctxt "form-fields api"
|
6085 |
msgid ""
|
6086 |
"This form field can't be deleted because it is required for the plugin to "
|
6138 |
msgid "%s must be a valid date."
|
6139 |
msgstr ""
|
6140 |
|
6141 |
+
#: includes/fields/class-fieldtypes-image.php:41
|
6142 |
#, fuzzy
|
6143 |
msgctxt "date field"
|
6144 |
msgid "Caption for %s is required."
|
6149 |
msgid "Remove"
|
6150 |
msgstr "Verwijder"
|
6151 |
|
6152 |
+
#: includes/fields/class-form-field.php:66
|
6153 |
msgctxt "form-fields-api"
|
6154 |
msgid "Invalid form field type"
|
6155 |
msgstr ""
|
6156 |
|
6157 |
+
#: includes/fields/class-form-field.php:585
|
6158 |
msgctxt "form-fields-api"
|
6159 |
msgid "Field label is required."
|
6160 |
msgstr ""
|
6161 |
|
6162 |
+
#: includes/fields/class-form-field.php:596
|
6163 |
msgctxt "form-fields-api"
|
6164 |
msgid ""
|
6165 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
6167 |
"delete this current field and create a NEW field of type %1$s instead."
|
6168 |
msgstr ""
|
6169 |
|
6170 |
+
#: includes/fields/class-form-field.php:599
|
6171 |
msgctxt "form-fields-api"
|
6172 |
msgid ""
|
6173 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
6174 |
"existing listings will be deleted as well."
|
6175 |
msgstr ""
|
6176 |
|
6177 |
+
#: includes/fields/class-form-field.php:633
|
6178 |
msgctxt "form-fields-api"
|
6179 |
msgid ""
|
6180 |
"There can only be one field with association \"%s\". Please select another "
|
6181 |
"association."
|
6182 |
msgstr ""
|
6183 |
|
6184 |
+
#: includes/fields/class-form-field.php:643
|
6185 |
msgctxt "form-fields-api"
|
6186 |
msgid "\"%s\" is an invalid field type for this association."
|
6187 |
msgstr ""
|
6188 |
|
6189 |
+
#: includes/fields/class-form-field.php:697
|
6190 |
msgctxt "form-fields-api"
|
6191 |
msgid "Invalid field ID"
|
6192 |
msgstr ""
|
6193 |
|
6194 |
+
#: includes/fields/class-form-field.php:720
|
6195 |
msgctxt "form-fields-api"
|
6196 |
msgid "An error occurred while trying to delete this field."
|
6197 |
msgstr ""
|
6221 |
msgid "Date Validator"
|
6222 |
msgstr ""
|
6223 |
|
6224 |
+
#: includes/form-fields.php:574
|
6225 |
+
msgctxt "form-fields-api"
|
6226 |
+
msgid "Word Count Validator"
|
6227 |
+
msgstr ""
|
6228 |
+
|
6229 |
#: includes/fields/class-fieldtypes-image.php:121
|
6230 |
msgctxt "form fields"
|
6231 |
msgid "Field unavailable at the moment."
|
6274 |
"you sure you want to enable this?"
|
6275 |
msgstr ""
|
6276 |
|
6277 |
+
#: includes/form-fields.php:581
|
6278 |
msgctxt "form-fields-api validation"
|
6279 |
msgid "Field"
|
6280 |
msgstr ""
|
6281 |
|
6282 |
+
#: includes/form-fields.php:602 includes/form-fields.php:607
|
6283 |
msgctxt "form-fields-api validation"
|
6284 |
msgid "%s is required."
|
6285 |
msgstr "%s is vereist."
|
6286 |
|
6287 |
+
#: includes/form-fields.php:619 includes/form-fields.php:626
|
6288 |
msgctxt "form-fields-api validation"
|
6289 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
6290 |
msgstr ""
|
6291 |
"%s is niet correct ingegeven. Geldig URL (site) vereist, inclusief http://"
|
6292 |
|
6293 |
+
#: includes/form-fields.php:641
|
6294 |
msgctxt "form-fields-api validation"
|
6295 |
msgid "%s is badly formatted. Valid Email format required."
|
6296 |
msgstr "%s niet correct ingegeven. Geldige email schrijfwijze vereist."
|
6297 |
|
6298 |
+
#: includes/form-fields.php:648
|
6299 |
msgctxt "form-fields-api validation"
|
6300 |
msgid "%s must be a number. Decimal values are not allowed."
|
6301 |
msgstr ""
|
6302 |
|
6303 |
+
#: includes/form-fields.php:655
|
6304 |
msgctxt "form-fields-api validation"
|
6305 |
msgid "%s must be a number."
|
6306 |
msgstr ""
|
6307 |
|
6308 |
+
#: includes/form-fields.php:674
|
6309 |
msgctxt "form-fields-api validation"
|
6310 |
msgid "%1$s must be in the format %2$s."
|
6311 |
msgstr ""
|
6312 |
|
6313 |
+
#: includes/form-fields.php:712
|
6314 |
msgctxt "form-fields-api validation"
|
6315 |
msgid "%s must be a valid date."
|
6316 |
msgstr ""
|
6317 |
|
6318 |
+
#: includes/form-fields.php:735
|
6319 |
+
msgctxt "form-fields-api validation"
|
6320 |
+
msgid "%s must have less than %d words."
|
6321 |
+
msgstr ""
|
6322 |
+
|
6323 |
+
#: includes/form-fields.php:754
|
6324 |
msgctxt "form-fields-api validation"
|
6325 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
6326 |
msgstr ""
|
6327 |
|
6328 |
+
#: includes/form-fields.php:719
|
6329 |
+
#, fuzzy
|
6330 |
+
msgctxt "image field"
|
6331 |
+
msgid "Caption for %s is required."
|
6332 |
+
msgstr "%s is vereist."
|
6333 |
+
|
6334 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
6335 |
#, fuzzy
|
6336 |
msgctxt "authorize-net"
|
7040 |
msgid "View not available."
|
7041 |
msgstr ""
|
7042 |
|
7043 |
+
#: includes/views/submit_listing.php:852
|
7044 |
msgctxt "templates"
|
7045 |
msgid "Please agree to the Terms and Conditions."
|
7046 |
msgstr "Ga s.v.p. akkoord met de voorwaarden"
|
7047 |
|
7048 |
+
#: includes/views/submit_listing.php:860
|
7049 |
msgctxt "templates"
|
7050 |
msgid "Terms and Conditions:"
|
7051 |
msgstr "Voorwaarden"
|
7052 |
|
7053 |
+
#: includes/views/submit_listing.php:869
|
7054 |
#, fuzzy
|
7055 |
msgctxt "templates"
|
7056 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7700 |
msgstr ""
|
7701 |
"Dit is alleen een voorvertoning. De registratie is nog niet gepubliceerd."
|
7702 |
|
7703 |
+
#: includes/views/submit_listing.php:613
|
7704 |
msgctxt "listing submit"
|
7705 |
msgid ""
|
7706 |
"Something went wrong. Please check the form for errors, correct them and "
|
7707 |
"submit again."
|
7708 |
msgstr ""
|
7709 |
|
7710 |
+
#: includes/views/submit_listing.php:695
|
7711 |
msgctxt "listing submit"
|
7712 |
msgid ""
|
7713 |
"Image upload is required, please provide at least one image and submit again."
|
7950 |
msgid "Elegant Business Theme"
|
7951 |
msgstr ""
|
7952 |
|
7953 |
+
#: templates/admin/sidebar.tpl.php:23
|
7954 |
msgctxt "admin sidebar"
|
7955 |
+
msgid "Modern Business Theme"
|
7956 |
+
msgstr ""
|
7957 |
+
|
7958 |
+
#: templates/admin/sidebar.tpl.php:24
|
7959 |
+
msgctxt "admin sidebar"
|
7960 |
+
msgid "Modern Filtered Theme"
|
7961 |
msgstr ""
|
7962 |
|
7963 |
#: templates/admin/sidebar.tpl.php:31
|
7964 |
msgctxt "admin sidebar"
|
7965 |
+
msgid "Like this plugin?"
|
7966 |
msgstr ""
|
7967 |
|
7968 |
#: templates/admin/sidebar.tpl.php:33
|
7969 |
msgctxt "admin sidebar"
|
7970 |
+
msgid "Why not do any or all of the following:"
|
7971 |
+
msgstr ""
|
7972 |
+
|
7973 |
+
#: templates/admin/sidebar.tpl.php:35
|
7974 |
+
msgctxt "admin sidebar"
|
7975 |
msgid "Give it a good rating on WordPress.org."
|
7976 |
msgstr ""
|
7977 |
|
7978 |
+
#: templates/admin/sidebar.tpl.php:36
|
7979 |
msgctxt "admin sidebar"
|
7980 |
msgid "Let other people know that it works with your WordPress setup."
|
7981 |
msgstr ""
|
7982 |
|
7983 |
+
#: templates/admin/sidebar.tpl.php:37
|
7984 |
msgctxt "admin sidebar"
|
7985 |
msgid "Buy a Premium Module"
|
7986 |
msgstr ""
|
7987 |
|
7988 |
+
#: templates/admin/sidebar.tpl.php:44
|
7989 |
msgctxt "admin sidebar"
|
7990 |
msgid "Get a Premium Module"
|
7991 |
msgstr "Koop een Premium module"
|
7992 |
|
7993 |
+
#: templates/admin/sidebar.tpl.php:47 templates/admin/sidebar.tpl.php:63
|
7994 |
msgctxt "admin sidebar"
|
7995 |
msgid "best deal"
|
7996 |
msgstr ""
|
7997 |
|
7998 |
+
#: templates/admin/sidebar.tpl.php:47
|
7999 |
msgctxt "admin sidebar"
|
8000 |
msgid "Combo Pack"
|
8001 |
msgstr ""
|
8002 |
|
8003 |
+
#: templates/admin/sidebar.tpl.php:47
|
8004 |
msgctxt "admin sidebar"
|
8005 |
msgid "(All Modules)"
|
8006 |
msgstr ""
|
8007 |
|
8008 |
+
#: templates/admin/sidebar.tpl.php:50 templates/admin/sidebar.tpl.php:66
|
8009 |
msgctxt "admin sidebar"
|
8010 |
msgid "new"
|
8011 |
msgstr ""
|
8012 |
|
8013 |
+
#: templates/admin/sidebar.tpl.php:60
|
8014 |
msgctxt "admin sidebar"
|
8015 |
msgid "Get a Directory Theme"
|
8016 |
msgstr "Koop een Directory thema"
|
8017 |
|
8018 |
+
#: templates/admin/sidebar.tpl.php:63
|
8019 |
msgctxt "admin sidebar"
|
8020 |
msgid "Theme Pack"
|
8021 |
msgstr ""
|
8022 |
|
8023 |
+
#: templates/admin/sidebar.tpl.php:63
|
8024 |
msgctxt "admin sidebar"
|
8025 |
msgid "(All Themes)"
|
8026 |
msgstr ""
|
8027 |
|
8028 |
+
#: templates/admin/sidebar.tpl.php:76
|
8029 |
msgctxt "admin sidebar"
|
8030 |
msgid "Found a bug? Need support?"
|
8031 |
msgstr ""
|
8032 |
|
8033 |
+
#: templates/admin/sidebar.tpl.php:81
|
8034 |
msgctxt "admin sidebar"
|
8035 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
8036 |
msgstr ""
|
8037 |
|
8038 |
+
#: templates/admin/sidebar.tpl.php:84
|
8039 |
msgctxt "admin sidebar"
|
8040 |
msgid "Full plugin documentation"
|
8041 |
msgstr ""
|
8042 |
|
8043 |
+
#: templates/admin/sidebar.tpl.php:85
|
8044 |
msgctxt "admin sidebar"
|
8045 |
msgid "Quick Start Guide"
|
8046 |
msgstr ""
|
8047 |
|
8048 |
+
#: templates/admin/sidebar.tpl.php:86
|
8049 |
msgctxt "admin sidebar"
|
8050 |
msgid "Video Tutorials"
|
8051 |
msgstr ""
|
8052 |
|
8053 |
+
#: templates/admin/sidebar.tpl.php:94
|
8054 |
msgctxt "admin sidebar"
|
8055 |
msgid "Installed Modules"
|
8056 |
msgstr "Geïnstalleerde modules"
|
8057 |
|
8058 |
+
#: templates/admin/sidebar.tpl.php:105 templates/admin/sidebar.tpl.php:114
|
8059 |
msgctxt "admin sidebar"
|
8060 |
msgid "Installed"
|
8061 |
msgstr ""
|
8062 |
|
8063 |
+
#: templates/admin/sidebar.tpl.php:107 templates/admin/sidebar.tpl.php:114
|
8064 |
msgctxt "admin sidebar"
|
8065 |
msgid "Not Installed"
|
8066 |
msgstr ""
|
8067 |
|
8068 |
+
#: templates/admin/sidebar.tpl.php:113
|
8069 |
msgctxt "admin sidebar"
|
8070 |
msgid "Enhanced Categories Module"
|
8071 |
msgstr ""
|
languages/WPBDM-pl_PL.mo
CHANGED
Binary file
|
languages/WPBDM-pl_PL.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Business Directory Plugin v3.6.5\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
-
"POT-Creation-Date: 2018-06-
|
7 |
"PO-Revision-Date: 2017-01-16 17:49-0500\n"
|
8 |
"Last-Translator: HomeSupport <admin@homesupport.pl>\n"
|
9 |
"Language-Team: HomeSupport\n"
|
@@ -3023,14 +3023,14 @@ msgid "Field list of options is required."
|
|
3023 |
msgstr "Pole listy opcji wymagane."
|
3024 |
|
3025 |
# @ WPBDM
|
3026 |
-
#: includes/fields/class-fieldtypes-image.php:
|
3027 |
#, fuzzy
|
3028 |
msgctxt "form-fields admin"
|
3029 |
msgid "Display caption?"
|
3030 |
msgstr "Opcje wyświetlania pola"
|
3031 |
|
3032 |
# @ WPBDM
|
3033 |
-
#: includes/fields/class-fieldtypes-image.php:
|
3034 |
#, fuzzy
|
3035 |
msgctxt "form-fields admin"
|
3036 |
msgid "Field Caption required?"
|
@@ -3159,173 +3159,211 @@ msgid "Use rel=\"nofollow\" when displaying the link?"
|
|
3159 |
msgstr "Użyj rel=\"nofollow\" kiedy wyświetlany jest link?"
|
3160 |
|
3161 |
# @ WPBDM
|
3162 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3163 |
msgctxt "form-fields admin"
|
3164 |
msgid "Add Form Field"
|
3165 |
msgstr "Dodaj Pole formularza"
|
3166 |
|
3167 |
# @ WPBDM
|
3168 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3169 |
msgctxt "form-fields admin"
|
3170 |
msgid "Field Association"
|
3171 |
msgstr "Przypiisanie pola"
|
3172 |
|
3173 |
# @ default
|
3174 |
# @ WPBDM
|
3175 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3176 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3177 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3178 |
msgctxt "form-fields admin"
|
3179 |
msgid "required"
|
3180 |
msgstr "Wymagane"
|
3181 |
|
3182 |
# @ WPBDM
|
3183 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3184 |
msgctxt "form-fields admin"
|
3185 |
msgid "Field Type"
|
3186 |
msgstr "Rodzaj pola"
|
3187 |
|
3188 |
# @ WPBDM
|
3189 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3190 |
msgctxt "form-fields admin"
|
3191 |
msgid "Field Label"
|
3192 |
msgstr "Etykieta pola"
|
3193 |
|
3194 |
# @ WPBDM
|
3195 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3196 |
msgctxt "form-fields admin"
|
3197 |
msgid "Field description"
|
3198 |
msgstr "Opis pola"
|
3199 |
|
3200 |
# @ WPBDM
|
3201 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3202 |
msgctxt "form-fields admin"
|
3203 |
msgid "optional"
|
3204 |
msgstr "Opcjonalnie"
|
3205 |
|
3206 |
# @ WPBDM
|
3207 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3208 |
msgctxt "form-fields admin"
|
3209 |
msgid "Field-specific settings"
|
3210 |
msgstr "Ustawienia pola specyficznego"
|
3211 |
|
3212 |
# @ WPBDM
|
3213 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3214 |
msgctxt "form-fields admin"
|
3215 |
msgid "Field validation options"
|
3216 |
msgstr "Opcje weryfikacji pola"
|
3217 |
|
3218 |
# @ WPBDM
|
3219 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3220 |
msgctxt "form-fields admin"
|
3221 |
msgid "Field Validator"
|
3222 |
msgstr "Weryfikator pola"
|
3223 |
|
3224 |
# @ WPBDM
|
3225 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3226 |
msgctxt "form-fields admin"
|
3227 |
msgid "No validation"
|
3228 |
msgstr "Bez weryfikacji"
|
3229 |
|
3230 |
# @ WPBDM
|
3231 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3232 |
msgctxt "form-fields admin"
|
3233 |
msgid "Is field required?"
|
3234 |
msgstr "Czy pole jest wymagane?"
|
3235 |
|
3236 |
# @ WPBDM
|
3237 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3238 |
msgctxt "form-fields admin"
|
3239 |
msgid "This field is required."
|
3240 |
msgstr "To pole jest wymagane."
|
3241 |
|
3242 |
# @ WPBDM
|
3243 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3244 |
msgctxt "form-fields admin"
|
3245 |
msgid "Field display options"
|
3246 |
msgstr "Opcje wyświetlania pola"
|
3247 |
|
3248 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3249 |
msgctxt "form-fields admin"
|
3250 |
msgid "Show this field to admin users only?"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
# @ WPBDM
|
3254 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3255 |
#, fuzzy
|
3256 |
msgctxt "form-fields admin"
|
3257 |
msgid "Display this field to admin users only in the edit listing view."
|
3258 |
msgstr "Wyświetlanie tej wartości w widoku oferty."
|
3259 |
|
3260 |
# @ WPBDM
|
3261 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3262 |
msgctxt "form-fields admin"
|
3263 |
msgid "Show this value in excerpt view?"
|
3264 |
msgstr "Pokazać wartość pola w wyciągu z wpisu?"
|
3265 |
|
3266 |
# @ WPBDM
|
3267 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3268 |
msgctxt "form-fields admin"
|
3269 |
msgid "Display this value in post excerpt view."
|
3270 |
msgstr "Wyświetlanie wartości pola w wyciągu z wpisu."
|
3271 |
|
3272 |
# @ WPBDM
|
3273 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3274 |
msgctxt "form-fields admin"
|
3275 |
msgid "Show this value in listing view?"
|
3276 |
msgstr "Pokazywać tą wartość w widoku oferty?"
|
3277 |
|
3278 |
# @ WPBDM
|
3279 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3280 |
msgctxt "form-fields admin"
|
3281 |
msgid "Display this value in the listing view."
|
3282 |
msgstr "Wyświetlanie tej wartości w widoku oferty."
|
3283 |
|
3284 |
# @ WPBDM
|
3285 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3286 |
msgctxt "form-fields admin"
|
3287 |
msgid "Include this field in the search form?"
|
3288 |
msgstr "Dołączyć to pole do formularza wyszukiwania?"
|
3289 |
|
3290 |
# @ WPBDM
|
3291 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3292 |
msgctxt "form-fields admin"
|
3293 |
msgid "Include this field in the search form."
|
3294 |
msgstr "Dołącz to pole do formularza wyszukiwania"
|
3295 |
|
3296 |
# @ WPBDM
|
3297 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3298 |
#, fuzzy
|
3299 |
msgctxt "form-fields admin"
|
3300 |
msgid "Is this field required for searching?"
|
3301 |
msgstr "Czy pole jest wymagane?"
|
3302 |
|
3303 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3304 |
msgctxt "form-fields admin"
|
3305 |
msgid ""
|
3306 |
"Make this fields required during searches on the Advanced Search screen."
|
3307 |
msgstr ""
|
3308 |
|
3309 |
# @ WPBDM
|
3310 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3311 |
msgctxt "form-fields admin"
|
3312 |
msgid "Hide this field's label?"
|
3313 |
msgstr "Ukryć etykiety pól?"
|
3314 |
|
3315 |
# @ WPBDM
|
3316 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3317 |
msgctxt "form-fields admin"
|
3318 |
msgid "Hide this field's label when displaying it."
|
3319 |
msgstr "Ukryj etykiety pól, kiedy pola są wyświetlane."
|
3320 |
|
3321 |
# @ WPBDM
|
3322 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3323 |
msgctxt "form-fields admin"
|
3324 |
msgid "Update Field"
|
3325 |
msgstr "Aktualizacja pola"
|
3326 |
|
3327 |
# @ WPBDM
|
3328 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
3329 |
msgctxt "form-fields admin"
|
3330 |
msgid "Add Field"
|
3331 |
msgstr "Dodaj Pole "
|
@@ -6864,58 +6902,58 @@ msgid "Please choose a valid fee plan for your category selection."
|
|
6864 |
msgstr "Wybierz abonament dla tegj kategori \"%s\"."
|
6865 |
|
6866 |
# @ WPBDM
|
6867 |
-
#: includes/views/submit_listing.php:
|
6868 |
#, fuzzy
|
6869 |
msgctxt "submit listing"
|
6870 |
msgid "Please enter your desired username."
|
6871 |
msgstr "Proszę wprowadzić Imię"
|
6872 |
|
6873 |
# @ WPBDM
|
6874 |
-
#: includes/views/submit_listing.php:
|
6875 |
#, fuzzy
|
6876 |
msgctxt "submit listing"
|
6877 |
msgid "Please enter the e-mail for your new account."
|
6878 |
msgstr "Proszę wprowadzić Imię"
|
6879 |
|
6880 |
-
#: includes/views/submit_listing.php:
|
6881 |
msgctxt "submit listing"
|
6882 |
msgid "Please enter the password for your new account."
|
6883 |
msgstr ""
|
6884 |
|
6885 |
-
#: includes/views/submit_listing.php:
|
6886 |
msgctxt "submit listing"
|
6887 |
msgid "The username you chose is already in use. Please use a different one."
|
6888 |
msgstr ""
|
6889 |
|
6890 |
-
#: includes/views/submit_listing.php:
|
6891 |
msgctxt "submit listing"
|
6892 |
msgid "The e-mail address you chose for your account is already in use."
|
6893 |
msgstr ""
|
6894 |
|
6895 |
-
#: includes/views/submit_listing.php:
|
6896 |
msgctxt "submit listing"
|
6897 |
msgid "Create a user account on this site"
|
6898 |
msgstr ""
|
6899 |
|
6900 |
-
#: includes/views/submit_listing.php:
|
6901 |
msgctxt "submit listing"
|
6902 |
msgid ""
|
6903 |
"You need to create an account on the site. Please fill out the form below."
|
6904 |
msgstr ""
|
6905 |
|
6906 |
-
#: includes/views/submit_listing.php:
|
6907 |
msgctxt "submit listing"
|
6908 |
msgid "Username:"
|
6909 |
msgstr ""
|
6910 |
|
6911 |
# @ WPBDM
|
6912 |
-
#: includes/views/submit_listing.php:
|
6913 |
#, fuzzy
|
6914 |
msgctxt "submit listing"
|
6915 |
msgid "Email:"
|
6916 |
msgstr "E-Mail: %s"
|
6917 |
|
6918 |
-
#: includes/views/submit_listing.php:
|
6919 |
msgctxt "submit listing"
|
6920 |
msgid "Password:"
|
6921 |
msgstr ""
|
@@ -6954,13 +6992,13 @@ msgid "Save Changes"
|
|
6954 |
msgstr "Zapisz zmiany"
|
6955 |
|
6956 |
# @ WPBDM
|
6957 |
-
#: includes/class-recaptcha.php:
|
6958 |
msgctxt "recaptcha"
|
6959 |
msgid "The reCAPTCHA wasn't entered correctly."
|
6960 |
msgstr "ReCaptcha nie została poprawnie wprowadzona."
|
6961 |
|
6962 |
# @ WPBDM
|
6963 |
-
#: includes/class-recaptcha.php:
|
6964 |
#, fuzzy
|
6965 |
msgctxt "recaptcha"
|
6966 |
msgid "reCAPTCHA"
|
@@ -7081,13 +7119,13 @@ msgid "Textarea"
|
|
7081 |
msgstr "Pole tekstowe / z możliwością html"
|
7082 |
|
7083 |
# @ WPBDM
|
7084 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
7085 |
msgctxt "form-fields api"
|
7086 |
msgid "Textfield"
|
7087 |
msgstr "Pole tekstowe"
|
7088 |
|
7089 |
# @ WPBDM
|
7090 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
7091 |
msgctxt "form-fields api"
|
7092 |
msgid "Format 01/31/1969"
|
7093 |
msgstr "Format 01/31/1969"
|
@@ -7117,7 +7155,7 @@ msgid "Link Text (optional):"
|
|
7117 |
msgstr "Tekst alternatywny(opcjonalnie):"
|
7118 |
|
7119 |
# @ WPBDM
|
7120 |
-
#: includes/fields/class-form-field.php:
|
7121 |
msgctxt "form-fields api"
|
7122 |
msgid ""
|
7123 |
"This form field can't be deleted because it is required for the plugin to "
|
@@ -7188,7 +7226,7 @@ msgid "%s must be a valid date."
|
|
7188 |
msgstr "%s musi być datą poprawną."
|
7189 |
|
7190 |
# @ WPBDM
|
7191 |
-
#: includes/fields/class-fieldtypes-image.php:
|
7192 |
#, fuzzy
|
7193 |
msgctxt "date field"
|
7194 |
msgid "Caption for %s is required."
|
@@ -7201,18 +7239,18 @@ msgid "Remove"
|
|
7201 |
msgstr "Usuń"
|
7202 |
|
7203 |
# @ WPBDM
|
7204 |
-
#: includes/fields/class-form-field.php:
|
7205 |
msgctxt "form-fields-api"
|
7206 |
msgid "Invalid form field type"
|
7207 |
msgstr "Niewłaściwy typ Pola"
|
7208 |
|
7209 |
# @ WPBDM
|
7210 |
-
#: includes/fields/class-form-field.php:
|
7211 |
msgctxt "form-fields-api"
|
7212 |
msgid "Field label is required."
|
7213 |
msgstr "Etykieta pola jest wymagana."
|
7214 |
|
7215 |
-
#: includes/fields/class-form-field.php:
|
7216 |
msgctxt "form-fields-api"
|
7217 |
msgid ""
|
7218 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
@@ -7220,7 +7258,7 @@ msgid ""
|
|
7220 |
"delete this current field and create a NEW field of type %1$s instead."
|
7221 |
msgstr ""
|
7222 |
|
7223 |
-
#: includes/fields/class-form-field.php:
|
7224 |
msgctxt "form-fields-api"
|
7225 |
msgid ""
|
7226 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
@@ -7228,7 +7266,7 @@ msgid ""
|
|
7228 |
msgstr ""
|
7229 |
|
7230 |
# @ WPBDM
|
7231 |
-
#: includes/fields/class-form-field.php:
|
7232 |
msgctxt "form-fields-api"
|
7233 |
msgid ""
|
7234 |
"There can only be one field with association \"%s\". Please select another "
|
@@ -7238,19 +7276,19 @@ msgstr ""
|
|
7238 |
"przypisanie."
|
7239 |
|
7240 |
# @ WPBDM
|
7241 |
-
#: includes/fields/class-form-field.php:
|
7242 |
msgctxt "form-fields-api"
|
7243 |
msgid "\"%s\" is an invalid field type for this association."
|
7244 |
msgstr "\"%s\" jest niewłaściwym typem pola do tego przypisania"
|
7245 |
|
7246 |
# @ WPBDM
|
7247 |
-
#: includes/fields/class-form-field.php:
|
7248 |
msgctxt "form-fields-api"
|
7249 |
msgid "Invalid field ID"
|
7250 |
msgstr "Niewłaściwe ID Pola"
|
7251 |
|
7252 |
# @ WPBDM
|
7253 |
-
#: includes/fields/class-form-field.php:
|
7254 |
msgctxt "form-fields-api"
|
7255 |
msgid "An error occurred while trying to delete this field."
|
7256 |
msgstr "Wykryto błąd w trakcie próby usunięcia tego pola."
|
@@ -7285,6 +7323,13 @@ msgctxt "form-fields-api"
|
|
7285 |
msgid "Date Validator"
|
7286 |
msgstr "Weryfikator daty"
|
7287 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7288 |
#: includes/fields/class-fieldtypes-image.php:121
|
7289 |
msgctxt "form fields"
|
7290 |
msgid "Field unavailable at the moment."
|
@@ -7337,19 +7382,19 @@ msgid ""
|
|
7337 |
msgstr ""
|
7338 |
|
7339 |
# @ WPBDM
|
7340 |
-
#: includes/form-fields.php:
|
7341 |
msgctxt "form-fields-api validation"
|
7342 |
msgid "Field"
|
7343 |
msgstr "Pole"
|
7344 |
|
7345 |
# @ WPBDM
|
7346 |
-
#: includes/form-fields.php:
|
7347 |
msgctxt "form-fields-api validation"
|
7348 |
msgid "%s is required."
|
7349 |
msgstr "%s jest wymagane."
|
7350 |
|
7351 |
# @ WPBDM
|
7352 |
-
#: includes/form-fields.php:
|
7353 |
msgctxt "form-fields-api validation"
|
7354 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
7355 |
msgstr ""
|
@@ -7357,43 +7402,55 @@ msgstr ""
|
|
7357 |
"zapomniałeś o http://"
|
7358 |
|
7359 |
# @ WPBDM
|
7360 |
-
#: includes/form-fields.php:
|
7361 |
msgctxt "form-fields-api validation"
|
7362 |
msgid "%s is badly formatted. Valid Email format required."
|
7363 |
msgstr "%s jest źle sformatowany. Wymagamy właściwego adresu E-mail."
|
7364 |
|
7365 |
# @ WPBDM
|
7366 |
-
#: includes/form-fields.php:
|
7367 |
msgctxt "form-fields-api validation"
|
7368 |
msgid "%s must be a number. Decimal values are not allowed."
|
7369 |
msgstr "%s musi być liczbą. Dziesiętne nie są dozwolone. "
|
7370 |
|
7371 |
# @ WPBDM
|
7372 |
-
#: includes/form-fields.php:
|
7373 |
msgctxt "form-fields-api validation"
|
7374 |
msgid "%s must be a number."
|
7375 |
msgstr "%s musi być liczbą."
|
7376 |
|
7377 |
# @ WPBDM
|
7378 |
-
#: includes/form-fields.php:
|
7379 |
#, fuzzy
|
7380 |
msgctxt "form-fields-api validation"
|
7381 |
msgid "%1$s must be in the format %2$s."
|
7382 |
msgstr "%s musi być w formacie %s."
|
7383 |
|
7384 |
# @ WPBDM
|
7385 |
-
#: includes/form-fields.php:
|
7386 |
msgctxt "form-fields-api validation"
|
7387 |
msgid "%s must be a valid date."
|
7388 |
msgstr "%s musi być datą poprawną."
|
7389 |
|
|
|
|
|
|
|
|
|
|
|
7390 |
# @ WPBDM
|
7391 |
-
#: includes/form-fields.php:
|
7392 |
#, fuzzy
|
7393 |
msgctxt "form-fields-api validation"
|
7394 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
7395 |
msgstr "%s jest niewłaściwe. Wartość musi być jedną z %s."
|
7396 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7397 |
# @ authorize-net
|
7398 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
7399 |
#, fuzzy
|
@@ -8247,19 +8304,19 @@ msgid "View not available."
|
|
8247 |
msgstr "Dostępne miejsca na Obrazy:"
|
8248 |
|
8249 |
# @ WPBDM
|
8250 |
-
#: includes/views/submit_listing.php:
|
8251 |
msgctxt "templates"
|
8252 |
msgid "Please agree to the Terms and Conditions."
|
8253 |
msgstr "Musisz zaakceptować nasze warunki i regulamin korzystania z serwisu."
|
8254 |
|
8255 |
# @ WPBDM
|
8256 |
-
#: includes/views/submit_listing.php:
|
8257 |
msgctxt "templates"
|
8258 |
msgid "Terms and Conditions:"
|
8259 |
msgstr "Warunki i regulamin:"
|
8260 |
|
8261 |
# @ WPBDM
|
8262 |
-
#: includes/views/submit_listing.php:
|
8263 |
#, fuzzy
|
8264 |
msgctxt "templates"
|
8265 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
@@ -9048,14 +9105,14 @@ msgctxt "preview"
|
|
9048 |
msgid "This is just a preview. The listing has not been published yet."
|
9049 |
msgstr "To jest tylko podgląd. Oferta nie została jeszcze opublikowana."
|
9050 |
|
9051 |
-
#: includes/views/submit_listing.php:
|
9052 |
msgctxt "listing submit"
|
9053 |
msgid ""
|
9054 |
"Something went wrong. Please check the form for errors, correct them and "
|
9055 |
"submit again."
|
9056 |
msgstr ""
|
9057 |
|
9058 |
-
#: includes/views/submit_listing.php:
|
9059 |
msgctxt "listing submit"
|
9060 |
msgid ""
|
9061 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -9344,128 +9401,140 @@ msgid "Elegant Business Theme"
|
|
9344 |
msgstr "Nazwa Firmy"
|
9345 |
|
9346 |
# @ WPBDM
|
9347 |
-
#: templates/admin/sidebar.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9348 |
msgctxt "admin sidebar"
|
9349 |
msgid "Like this plugin?"
|
9350 |
msgstr "Lubisz tą wtyczkę?"
|
9351 |
|
9352 |
# @ WPBDM
|
9353 |
-
#: templates/admin/sidebar.tpl.php:
|
9354 |
msgctxt "admin sidebar"
|
9355 |
msgid "Why not do any or all of the following:"
|
9356 |
msgstr "Czemu nie zrobić czegoś z poniższych:"
|
9357 |
|
9358 |
# @ WPBDM
|
9359 |
-
#: templates/admin/sidebar.tpl.php:
|
9360 |
msgctxt "admin sidebar"
|
9361 |
msgid "Give it a good rating on WordPress.org."
|
9362 |
msgstr "Oceń nas na WordPress.org."
|
9363 |
|
9364 |
# @ WPBDM
|
9365 |
-
#: templates/admin/sidebar.tpl.php:
|
9366 |
msgctxt "admin sidebar"
|
9367 |
msgid "Let other people know that it works with your WordPress setup."
|
9368 |
msgstr "Daj znać innym użytkownikom że ta wtyczka działa na Twoim Wordpressie."
|
9369 |
|
9370 |
# @ WPBDM
|
9371 |
-
#: templates/admin/sidebar.tpl.php:
|
9372 |
msgctxt "admin sidebar"
|
9373 |
msgid "Buy a Premium Module"
|
9374 |
msgstr "Kup moduł premium"
|
9375 |
|
9376 |
# @ WPBDM
|
9377 |
-
#: templates/admin/sidebar.tpl.php:
|
9378 |
msgctxt "admin sidebar"
|
9379 |
msgid "Get a Premium Module"
|
9380 |
msgstr "Pobierz moduł premium"
|
9381 |
|
9382 |
-
#: templates/admin/sidebar.tpl.php:
|
9383 |
msgctxt "admin sidebar"
|
9384 |
msgid "best deal"
|
9385 |
msgstr ""
|
9386 |
|
9387 |
-
#: templates/admin/sidebar.tpl.php:
|
9388 |
msgctxt "admin sidebar"
|
9389 |
msgid "Combo Pack"
|
9390 |
msgstr ""
|
9391 |
|
9392 |
# @ WPBDM
|
9393 |
-
#: templates/admin/sidebar.tpl.php:
|
9394 |
msgctxt "admin sidebar"
|
9395 |
msgid "(All Modules)"
|
9396 |
msgstr "Zainstalowane moduły"
|
9397 |
|
9398 |
-
#: templates/admin/sidebar.tpl.php:
|
9399 |
msgctxt "admin sidebar"
|
9400 |
msgid "new"
|
9401 |
msgstr ""
|
9402 |
|
9403 |
# @ WPBDM
|
9404 |
-
#: templates/admin/sidebar.tpl.php:
|
9405 |
msgctxt "admin sidebar"
|
9406 |
msgid "Get a Directory Theme"
|
9407 |
msgstr "Przejdź do \"Katalog Administracja\""
|
9408 |
|
9409 |
-
#: templates/admin/sidebar.tpl.php:
|
9410 |
msgctxt "admin sidebar"
|
9411 |
msgid "Theme Pack"
|
9412 |
msgstr ""
|
9413 |
|
9414 |
-
#: templates/admin/sidebar.tpl.php:
|
9415 |
msgctxt "admin sidebar"
|
9416 |
msgid "(All Themes)"
|
9417 |
msgstr ""
|
9418 |
|
9419 |
# @ WPBDM
|
9420 |
-
#: templates/admin/sidebar.tpl.php:
|
9421 |
msgctxt "admin sidebar"
|
9422 |
msgid "Found a bug? Need support?"
|
9423 |
msgstr "Znalazłeś błąd? Potrzebujesz pomocy?"
|
9424 |
|
9425 |
# @ WPBDM
|
9426 |
-
#: templates/admin/sidebar.tpl.php:
|
9427 |
msgctxt "admin sidebar"
|
9428 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
9429 |
msgstr "Jeśli znalazłeś błąd lub potrzebujesz pomocy zajrzyj na <a>forum!</a>"
|
9430 |
|
9431 |
# @ WPBDM
|
9432 |
-
#: templates/admin/sidebar.tpl.php:
|
9433 |
msgctxt "admin sidebar"
|
9434 |
msgid "Full plugin documentation"
|
9435 |
msgstr "Pełna Dokumentacja Pluginu"
|
9436 |
|
9437 |
# @ WPBDM
|
9438 |
-
#: templates/admin/sidebar.tpl.php:
|
9439 |
msgctxt "admin sidebar"
|
9440 |
msgid "Quick Start Guide"
|
9441 |
msgstr "Szybki Start Instrukcja"
|
9442 |
|
9443 |
# @ WPBDM
|
9444 |
-
#: templates/admin/sidebar.tpl.php:
|
9445 |
msgctxt "admin sidebar"
|
9446 |
msgid "Video Tutorials"
|
9447 |
msgstr "Poradnik Wideo"
|
9448 |
|
9449 |
# @ WPBDM
|
9450 |
-
#: templates/admin/sidebar.tpl.php:
|
9451 |
msgctxt "admin sidebar"
|
9452 |
msgid "Installed Modules"
|
9453 |
msgstr "Zainstalowane moduły"
|
9454 |
|
9455 |
# @ WPBDM
|
9456 |
-
#: templates/admin/sidebar.tpl.php:
|
9457 |
msgctxt "admin sidebar"
|
9458 |
msgid "Installed"
|
9459 |
msgstr "Zainstalowane "
|
9460 |
|
9461 |
# @ WPBDM
|
9462 |
-
#: templates/admin/sidebar.tpl.php:
|
9463 |
msgctxt "admin sidebar"
|
9464 |
msgid "Not Installed"
|
9465 |
msgstr "Nie zainstalowane"
|
9466 |
|
9467 |
# @ WPBDM
|
9468 |
-
#: templates/admin/sidebar.tpl.php:
|
9469 |
msgctxt "admin sidebar"
|
9470 |
msgid "Enhanced Categories Module"
|
9471 |
msgstr "Moduł zaawansowane kategorie"
|
3 |
"Project-Id-Version: Business Directory Plugin v3.6.5\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
+
"POT-Creation-Date: 2018-06-27 21:14:25+00:00\n"
|
7 |
"PO-Revision-Date: 2017-01-16 17:49-0500\n"
|
8 |
"Last-Translator: HomeSupport <admin@homesupport.pl>\n"
|
9 |
"Language-Team: HomeSupport\n"
|
3023 |
msgstr "Pole listy opcji wymagane."
|
3024 |
|
3025 |
# @ WPBDM
|
3026 |
+
#: includes/fields/class-fieldtypes-image.php:55
|
3027 |
#, fuzzy
|
3028 |
msgctxt "form-fields admin"
|
3029 |
msgid "Display caption?"
|
3030 |
msgstr "Opcje wyświetlania pola"
|
3031 |
|
3032 |
# @ WPBDM
|
3033 |
+
#: includes/fields/class-fieldtypes-image.php:58
|
3034 |
#, fuzzy
|
3035 |
msgctxt "form-fields admin"
|
3036 |
msgid "Field Caption required?"
|
3159 |
msgstr "Użyj rel=\"nofollow\" kiedy wyświetlany jest link?"
|
3160 |
|
3161 |
# @ WPBDM
|
3162 |
+
#: templates/admin/form-fields-addoredit.tpl.php:8
|
3163 |
msgctxt "form-fields admin"
|
3164 |
msgid "Add Form Field"
|
3165 |
msgstr "Dodaj Pole formularza"
|
3166 |
|
3167 |
# @ WPBDM
|
3168 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
3169 |
msgctxt "form-fields admin"
|
3170 |
msgid "Field Association"
|
3171 |
msgstr "Przypiisanie pola"
|
3172 |
|
3173 |
# @ default
|
3174 |
# @ WPBDM
|
3175 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
3176 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
3177 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
3178 |
msgctxt "form-fields admin"
|
3179 |
msgid "required"
|
3180 |
msgstr "Wymagane"
|
3181 |
|
3182 |
# @ WPBDM
|
3183 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
3184 |
msgctxt "form-fields admin"
|
3185 |
msgid "Field Type"
|
3186 |
msgstr "Rodzaj pola"
|
3187 |
|
3188 |
# @ WPBDM
|
3189 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
3190 |
msgctxt "form-fields admin"
|
3191 |
msgid "Field Label"
|
3192 |
msgstr "Etykieta pola"
|
3193 |
|
3194 |
# @ WPBDM
|
3195 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
3196 |
msgctxt "form-fields admin"
|
3197 |
msgid "Field description"
|
3198 |
msgstr "Opis pola"
|
3199 |
|
3200 |
# @ WPBDM
|
3201 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
3202 |
msgctxt "form-fields admin"
|
3203 |
msgid "optional"
|
3204 |
msgstr "Opcjonalnie"
|
3205 |
|
3206 |
# @ WPBDM
|
3207 |
+
#: templates/admin/form-fields-addoredit.tpl.php:97
|
3208 |
msgctxt "form-fields admin"
|
3209 |
msgid "Field-specific settings"
|
3210 |
msgstr "Ustawienia pola specyficznego"
|
3211 |
|
3212 |
# @ WPBDM
|
3213 |
+
#: templates/admin/form-fields-addoredit.tpl.php:106
|
3214 |
msgctxt "form-fields admin"
|
3215 |
msgid "Field validation options"
|
3216 |
msgstr "Opcje weryfikacji pola"
|
3217 |
|
3218 |
# @ WPBDM
|
3219 |
+
#: templates/admin/form-fields-addoredit.tpl.php:110
|
3220 |
msgctxt "form-fields admin"
|
3221 |
msgid "Field Validator"
|
3222 |
msgstr "Weryfikator pola"
|
3223 |
|
3224 |
# @ WPBDM
|
3225 |
+
#: templates/admin/form-fields-addoredit.tpl.php:114
|
3226 |
msgctxt "form-fields admin"
|
3227 |
msgid "No validation"
|
3228 |
msgstr "Bez weryfikacji"
|
3229 |
|
3230 |
# @ WPBDM
|
3231 |
+
#: templates/admin/form-fields-addoredit.tpl.php:126
|
3232 |
+
#, fuzzy
|
3233 |
+
msgctxt "form-fields admin"
|
3234 |
+
msgid "Number of words"
|
3235 |
+
msgstr "Liczba obrazów:"
|
3236 |
+
|
3237 |
+
# @ WPBDM
|
3238 |
+
#: templates/admin/form-fields-addoredit.tpl.php:136
|
3239 |
msgctxt "form-fields admin"
|
3240 |
msgid "Is field required?"
|
3241 |
msgstr "Czy pole jest wymagane?"
|
3242 |
|
3243 |
# @ WPBDM
|
3244 |
+
#: templates/admin/form-fields-addoredit.tpl.php:142
|
3245 |
msgctxt "form-fields admin"
|
3246 |
msgid "This field is required."
|
3247 |
msgstr "To pole jest wymagane."
|
3248 |
|
3249 |
# @ WPBDM
|
3250 |
+
#: templates/admin/form-fields-addoredit.tpl.php:150
|
3251 |
msgctxt "form-fields admin"
|
3252 |
msgid "Field display options"
|
3253 |
msgstr "Opcje wyświetlania pola"
|
3254 |
|
3255 |
+
#: templates/admin/form-fields-addoredit.tpl.php:154
|
3256 |
+
msgctxt "form-fields admin"
|
3257 |
+
msgid "Field Category Policy:"
|
3258 |
+
msgstr ""
|
3259 |
+
|
3260 |
+
# @ WPBDM
|
3261 |
+
#: templates/admin/form-fields-addoredit.tpl.php:159
|
3262 |
+
#, fuzzy
|
3263 |
+
msgctxt "form-fields admin"
|
3264 |
+
msgid "Field applies to all categories"
|
3265 |
+
msgstr "Odnowienie ofert we wszystkich wygasłych kategoriach"
|
3266 |
+
|
3267 |
+
# @ WPBDM
|
3268 |
+
#: templates/admin/form-fields-addoredit.tpl.php:160
|
3269 |
+
#, fuzzy
|
3270 |
+
msgctxt "form-fields admin"
|
3271 |
+
msgid "Field applies to only certain categories"
|
3272 |
+
msgstr "Odnowienie ofert we wszystkich wygasłych kategoriach"
|
3273 |
+
|
3274 |
+
# @ WPBDM
|
3275 |
+
#: templates/admin/form-fields-addoredit.tpl.php:164
|
3276 |
+
#, fuzzy
|
3277 |
+
msgctxt "form-fields admin"
|
3278 |
+
msgid "Limit field to the following categories:"
|
3279 |
+
msgstr "Możesz użyc następujących wypełnień pól:"
|
3280 |
+
|
3281 |
+
#: templates/admin/form-fields-addoredit.tpl.php:188
|
3282 |
+
msgctxt "form-fields admin"
|
3283 |
+
msgid "Click to add categories to the selection."
|
3284 |
+
msgstr ""
|
3285 |
+
|
3286 |
+
#: templates/admin/form-fields-addoredit.tpl.php:201
|
3287 |
msgctxt "form-fields admin"
|
3288 |
msgid "Show this field to admin users only?"
|
3289 |
msgstr ""
|
3290 |
|
3291 |
# @ WPBDM
|
3292 |
+
#: templates/admin/form-fields-addoredit.tpl.php:207
|
3293 |
#, fuzzy
|
3294 |
msgctxt "form-fields admin"
|
3295 |
msgid "Display this field to admin users only in the edit listing view."
|
3296 |
msgstr "Wyświetlanie tej wartości w widoku oferty."
|
3297 |
|
3298 |
# @ WPBDM
|
3299 |
+
#: templates/admin/form-fields-addoredit.tpl.php:213
|
3300 |
msgctxt "form-fields admin"
|
3301 |
msgid "Show this value in excerpt view?"
|
3302 |
msgstr "Pokazać wartość pola w wyciągu z wpisu?"
|
3303 |
|
3304 |
# @ WPBDM
|
3305 |
+
#: templates/admin/form-fields-addoredit.tpl.php:219
|
3306 |
msgctxt "form-fields admin"
|
3307 |
msgid "Display this value in post excerpt view."
|
3308 |
msgstr "Wyświetlanie wartości pola w wyciągu z wpisu."
|
3309 |
|
3310 |
# @ WPBDM
|
3311 |
+
#: templates/admin/form-fields-addoredit.tpl.php:225
|
3312 |
msgctxt "form-fields admin"
|
3313 |
msgid "Show this value in listing view?"
|
3314 |
msgstr "Pokazywać tą wartość w widoku oferty?"
|
3315 |
|
3316 |
# @ WPBDM
|
3317 |
+
#: templates/admin/form-fields-addoredit.tpl.php:231
|
3318 |
msgctxt "form-fields admin"
|
3319 |
msgid "Display this value in the listing view."
|
3320 |
msgstr "Wyświetlanie tej wartości w widoku oferty."
|
3321 |
|
3322 |
# @ WPBDM
|
3323 |
+
#: templates/admin/form-fields-addoredit.tpl.php:237
|
3324 |
msgctxt "form-fields admin"
|
3325 |
msgid "Include this field in the search form?"
|
3326 |
msgstr "Dołączyć to pole do formularza wyszukiwania?"
|
3327 |
|
3328 |
# @ WPBDM
|
3329 |
+
#: templates/admin/form-fields-addoredit.tpl.php:243
|
3330 |
msgctxt "form-fields admin"
|
3331 |
msgid "Include this field in the search form."
|
3332 |
msgstr "Dołącz to pole do formularza wyszukiwania"
|
3333 |
|
3334 |
# @ WPBDM
|
3335 |
+
#: templates/admin/form-fields-addoredit.tpl.php:249
|
3336 |
#, fuzzy
|
3337 |
msgctxt "form-fields admin"
|
3338 |
msgid "Is this field required for searching?"
|
3339 |
msgstr "Czy pole jest wymagane?"
|
3340 |
|
3341 |
+
#: templates/admin/form-fields-addoredit.tpl.php:255
|
3342 |
msgctxt "form-fields admin"
|
3343 |
msgid ""
|
3344 |
"Make this fields required during searches on the Advanced Search screen."
|
3345 |
msgstr ""
|
3346 |
|
3347 |
# @ WPBDM
|
3348 |
+
#: templates/admin/form-fields-addoredit.tpl.php:261
|
3349 |
msgctxt "form-fields admin"
|
3350 |
msgid "Hide this field's label?"
|
3351 |
msgstr "Ukryć etykiety pól?"
|
3352 |
|
3353 |
# @ WPBDM
|
3354 |
+
#: templates/admin/form-fields-addoredit.tpl.php:267
|
3355 |
msgctxt "form-fields admin"
|
3356 |
msgid "Hide this field's label when displaying it."
|
3357 |
msgstr "Ukryj etykiety pól, kiedy pola są wyświetlane."
|
3358 |
|
3359 |
# @ WPBDM
|
3360 |
+
#: templates/admin/form-fields-addoredit.tpl.php:274
|
3361 |
msgctxt "form-fields admin"
|
3362 |
msgid "Update Field"
|
3363 |
msgstr "Aktualizacja pola"
|
3364 |
|
3365 |
# @ WPBDM
|
3366 |
+
#: templates/admin/form-fields-addoredit.tpl.php:276
|
3367 |
msgctxt "form-fields admin"
|
3368 |
msgid "Add Field"
|
3369 |
msgstr "Dodaj Pole "
|
6902 |
msgstr "Wybierz abonament dla tegj kategori \"%s\"."
|
6903 |
|
6904 |
# @ WPBDM
|
6905 |
+
#: includes/views/submit_listing.php:743
|
6906 |
#, fuzzy
|
6907 |
msgctxt "submit listing"
|
6908 |
msgid "Please enter your desired username."
|
6909 |
msgstr "Proszę wprowadzić Imię"
|
6910 |
|
6911 |
# @ WPBDM
|
6912 |
+
#: includes/views/submit_listing.php:748
|
6913 |
#, fuzzy
|
6914 |
msgctxt "submit listing"
|
6915 |
msgid "Please enter the e-mail for your new account."
|
6916 |
msgstr "Proszę wprowadzić Imię"
|
6917 |
|
6918 |
+
#: includes/views/submit_listing.php:753
|
6919 |
msgctxt "submit listing"
|
6920 |
msgid "Please enter the password for your new account."
|
6921 |
msgstr ""
|
6922 |
|
6923 |
+
#: includes/views/submit_listing.php:763
|
6924 |
msgctxt "submit listing"
|
6925 |
msgid "The username you chose is already in use. Please use a different one."
|
6926 |
msgstr ""
|
6927 |
|
6928 |
+
#: includes/views/submit_listing.php:768
|
6929 |
msgctxt "submit listing"
|
6930 |
msgid "The e-mail address you chose for your account is already in use."
|
6931 |
msgstr ""
|
6932 |
|
6933 |
+
#: includes/views/submit_listing.php:783
|
6934 |
msgctxt "submit listing"
|
6935 |
msgid "Create a user account on this site"
|
6936 |
msgstr ""
|
6937 |
|
6938 |
+
#: includes/views/submit_listing.php:790
|
6939 |
msgctxt "submit listing"
|
6940 |
msgid ""
|
6941 |
"You need to create an account on the site. Please fill out the form below."
|
6942 |
msgstr ""
|
6943 |
|
6944 |
+
#: includes/views/submit_listing.php:796
|
6945 |
msgctxt "submit listing"
|
6946 |
msgid "Username:"
|
6947 |
msgstr ""
|
6948 |
|
6949 |
# @ WPBDM
|
6950 |
+
#: includes/views/submit_listing.php:805
|
6951 |
#, fuzzy
|
6952 |
msgctxt "submit listing"
|
6953 |
msgid "Email:"
|
6954 |
msgstr "E-Mail: %s"
|
6955 |
|
6956 |
+
#: includes/views/submit_listing.php:814
|
6957 |
msgctxt "submit listing"
|
6958 |
msgid "Password:"
|
6959 |
msgstr ""
|
6992 |
msgstr "Zapisz zmiany"
|
6993 |
|
6994 |
# @ WPBDM
|
6995 |
+
#: includes/class-recaptcha.php:109 includes/class-recaptcha.php:150
|
6996 |
msgctxt "recaptcha"
|
6997 |
msgid "The reCAPTCHA wasn't entered correctly."
|
6998 |
msgstr "ReCaptcha nie została poprawnie wprowadzona."
|
6999 |
|
7000 |
# @ WPBDM
|
7001 |
+
#: includes/class-recaptcha.php:211
|
7002 |
#, fuzzy
|
7003 |
msgctxt "recaptcha"
|
7004 |
msgid "reCAPTCHA"
|
7119 |
msgstr "Pole tekstowe / z możliwością html"
|
7120 |
|
7121 |
# @ WPBDM
|
7122 |
+
#: includes/fields/class-fieldtypes-textfield.php:13
|
7123 |
msgctxt "form-fields api"
|
7124 |
msgid "Textfield"
|
7125 |
msgstr "Pole tekstowe"
|
7126 |
|
7127 |
# @ WPBDM
|
7128 |
+
#: includes/fields/class-fieldtypes-textfield.php:50
|
7129 |
msgctxt "form-fields api"
|
7130 |
msgid "Format 01/31/1969"
|
7131 |
msgstr "Format 01/31/1969"
|
7155 |
msgstr "Tekst alternatywny(opcjonalnie):"
|
7156 |
|
7157 |
# @ WPBDM
|
7158 |
+
#: includes/fields/class-form-field.php:707
|
7159 |
msgctxt "form-fields api"
|
7160 |
msgid ""
|
7161 |
"This form field can't be deleted because it is required for the plugin to "
|
7226 |
msgstr "%s musi być datą poprawną."
|
7227 |
|
7228 |
# @ WPBDM
|
7229 |
+
#: includes/fields/class-fieldtypes-image.php:41
|
7230 |
#, fuzzy
|
7231 |
msgctxt "date field"
|
7232 |
msgid "Caption for %s is required."
|
7239 |
msgstr "Usuń"
|
7240 |
|
7241 |
# @ WPBDM
|
7242 |
+
#: includes/fields/class-form-field.php:66
|
7243 |
msgctxt "form-fields-api"
|
7244 |
msgid "Invalid form field type"
|
7245 |
msgstr "Niewłaściwy typ Pola"
|
7246 |
|
7247 |
# @ WPBDM
|
7248 |
+
#: includes/fields/class-form-field.php:585
|
7249 |
msgctxt "form-fields-api"
|
7250 |
msgid "Field label is required."
|
7251 |
msgstr "Etykieta pola jest wymagana."
|
7252 |
|
7253 |
+
#: includes/fields/class-form-field.php:596
|
7254 |
msgctxt "form-fields-api"
|
7255 |
msgid ""
|
7256 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
7258 |
"delete this current field and create a NEW field of type %1$s instead."
|
7259 |
msgstr ""
|
7260 |
|
7261 |
+
#: includes/fields/class-form-field.php:599
|
7262 |
msgctxt "form-fields-api"
|
7263 |
msgid ""
|
7264 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
7266 |
msgstr ""
|
7267 |
|
7268 |
# @ WPBDM
|
7269 |
+
#: includes/fields/class-form-field.php:633
|
7270 |
msgctxt "form-fields-api"
|
7271 |
msgid ""
|
7272 |
"There can only be one field with association \"%s\". Please select another "
|
7276 |
"przypisanie."
|
7277 |
|
7278 |
# @ WPBDM
|
7279 |
+
#: includes/fields/class-form-field.php:643
|
7280 |
msgctxt "form-fields-api"
|
7281 |
msgid "\"%s\" is an invalid field type for this association."
|
7282 |
msgstr "\"%s\" jest niewłaściwym typem pola do tego przypisania"
|
7283 |
|
7284 |
# @ WPBDM
|
7285 |
+
#: includes/fields/class-form-field.php:697
|
7286 |
msgctxt "form-fields-api"
|
7287 |
msgid "Invalid field ID"
|
7288 |
msgstr "Niewłaściwe ID Pola"
|
7289 |
|
7290 |
# @ WPBDM
|
7291 |
+
#: includes/fields/class-form-field.php:720
|
7292 |
msgctxt "form-fields-api"
|
7293 |
msgid "An error occurred while trying to delete this field."
|
7294 |
msgstr "Wykryto błąd w trakcie próby usunięcia tego pola."
|
7323 |
msgid "Date Validator"
|
7324 |
msgstr "Weryfikator daty"
|
7325 |
|
7326 |
+
# @ WPBDM
|
7327 |
+
#: includes/form-fields.php:574
|
7328 |
+
#, fuzzy
|
7329 |
+
msgctxt "form-fields-api"
|
7330 |
+
msgid "Word Count Validator"
|
7331 |
+
msgstr "Weryfikator liczb całkowitych"
|
7332 |
+
|
7333 |
#: includes/fields/class-fieldtypes-image.php:121
|
7334 |
msgctxt "form fields"
|
7335 |
msgid "Field unavailable at the moment."
|
7382 |
msgstr ""
|
7383 |
|
7384 |
# @ WPBDM
|
7385 |
+
#: includes/form-fields.php:581
|
7386 |
msgctxt "form-fields-api validation"
|
7387 |
msgid "Field"
|
7388 |
msgstr "Pole"
|
7389 |
|
7390 |
# @ WPBDM
|
7391 |
+
#: includes/form-fields.php:602 includes/form-fields.php:607
|
7392 |
msgctxt "form-fields-api validation"
|
7393 |
msgid "%s is required."
|
7394 |
msgstr "%s jest wymagane."
|
7395 |
|
7396 |
# @ WPBDM
|
7397 |
+
#: includes/form-fields.php:619 includes/form-fields.php:626
|
7398 |
msgctxt "form-fields-api validation"
|
7399 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
7400 |
msgstr ""
|
7402 |
"zapomniałeś o http://"
|
7403 |
|
7404 |
# @ WPBDM
|
7405 |
+
#: includes/form-fields.php:641
|
7406 |
msgctxt "form-fields-api validation"
|
7407 |
msgid "%s is badly formatted. Valid Email format required."
|
7408 |
msgstr "%s jest źle sformatowany. Wymagamy właściwego adresu E-mail."
|
7409 |
|
7410 |
# @ WPBDM
|
7411 |
+
#: includes/form-fields.php:648
|
7412 |
msgctxt "form-fields-api validation"
|
7413 |
msgid "%s must be a number. Decimal values are not allowed."
|
7414 |
msgstr "%s musi być liczbą. Dziesiętne nie są dozwolone. "
|
7415 |
|
7416 |
# @ WPBDM
|
7417 |
+
#: includes/form-fields.php:655
|
7418 |
msgctxt "form-fields-api validation"
|
7419 |
msgid "%s must be a number."
|
7420 |
msgstr "%s musi być liczbą."
|
7421 |
|
7422 |
# @ WPBDM
|
7423 |
+
#: includes/form-fields.php:674
|
7424 |
#, fuzzy
|
7425 |
msgctxt "form-fields-api validation"
|
7426 |
msgid "%1$s must be in the format %2$s."
|
7427 |
msgstr "%s musi być w formacie %s."
|
7428 |
|
7429 |
# @ WPBDM
|
7430 |
+
#: includes/form-fields.php:712
|
7431 |
msgctxt "form-fields-api validation"
|
7432 |
msgid "%s must be a valid date."
|
7433 |
msgstr "%s musi być datą poprawną."
|
7434 |
|
7435 |
+
#: includes/form-fields.php:735
|
7436 |
+
msgctxt "form-fields-api validation"
|
7437 |
+
msgid "%s must have less than %d words."
|
7438 |
+
msgstr ""
|
7439 |
+
|
7440 |
# @ WPBDM
|
7441 |
+
#: includes/form-fields.php:754
|
7442 |
#, fuzzy
|
7443 |
msgctxt "form-fields-api validation"
|
7444 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
7445 |
msgstr "%s jest niewłaściwe. Wartość musi być jedną z %s."
|
7446 |
|
7447 |
+
# @ WPBDM
|
7448 |
+
#: includes/form-fields.php:719
|
7449 |
+
#, fuzzy
|
7450 |
+
msgctxt "image field"
|
7451 |
+
msgid "Caption for %s is required."
|
7452 |
+
msgstr "Kraj jest wymagany."
|
7453 |
+
|
7454 |
# @ authorize-net
|
7455 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
7456 |
#, fuzzy
|
8304 |
msgstr "Dostępne miejsca na Obrazy:"
|
8305 |
|
8306 |
# @ WPBDM
|
8307 |
+
#: includes/views/submit_listing.php:852
|
8308 |
msgctxt "templates"
|
8309 |
msgid "Please agree to the Terms and Conditions."
|
8310 |
msgstr "Musisz zaakceptować nasze warunki i regulamin korzystania z serwisu."
|
8311 |
|
8312 |
# @ WPBDM
|
8313 |
+
#: includes/views/submit_listing.php:860
|
8314 |
msgctxt "templates"
|
8315 |
msgid "Terms and Conditions:"
|
8316 |
msgstr "Warunki i regulamin:"
|
8317 |
|
8318 |
# @ WPBDM
|
8319 |
+
#: includes/views/submit_listing.php:869
|
8320 |
#, fuzzy
|
8321 |
msgctxt "templates"
|
8322 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
9105 |
msgid "This is just a preview. The listing has not been published yet."
|
9106 |
msgstr "To jest tylko podgląd. Oferta nie została jeszcze opublikowana."
|
9107 |
|
9108 |
+
#: includes/views/submit_listing.php:613
|
9109 |
msgctxt "listing submit"
|
9110 |
msgid ""
|
9111 |
"Something went wrong. Please check the form for errors, correct them and "
|
9112 |
"submit again."
|
9113 |
msgstr ""
|
9114 |
|
9115 |
+
#: includes/views/submit_listing.php:695
|
9116 |
msgctxt "listing submit"
|
9117 |
msgid ""
|
9118 |
"Image upload is required, please provide at least one image and submit again."
|
9401 |
msgstr "Nazwa Firmy"
|
9402 |
|
9403 |
# @ WPBDM
|
9404 |
+
#: templates/admin/sidebar.tpl.php:23
|
9405 |
+
#, fuzzy
|
9406 |
+
msgctxt "admin sidebar"
|
9407 |
+
msgid "Modern Business Theme"
|
9408 |
+
msgstr "Nazwa Firmy"
|
9409 |
+
|
9410 |
+
#: templates/admin/sidebar.tpl.php:24
|
9411 |
+
msgctxt "admin sidebar"
|
9412 |
+
msgid "Modern Filtered Theme"
|
9413 |
+
msgstr ""
|
9414 |
+
|
9415 |
+
# @ WPBDM
|
9416 |
+
#: templates/admin/sidebar.tpl.php:31
|
9417 |
msgctxt "admin sidebar"
|
9418 |
msgid "Like this plugin?"
|
9419 |
msgstr "Lubisz tą wtyczkę?"
|
9420 |
|
9421 |
# @ WPBDM
|
9422 |
+
#: templates/admin/sidebar.tpl.php:33
|
9423 |
msgctxt "admin sidebar"
|
9424 |
msgid "Why not do any or all of the following:"
|
9425 |
msgstr "Czemu nie zrobić czegoś z poniższych:"
|
9426 |
|
9427 |
# @ WPBDM
|
9428 |
+
#: templates/admin/sidebar.tpl.php:35
|
9429 |
msgctxt "admin sidebar"
|
9430 |
msgid "Give it a good rating on WordPress.org."
|
9431 |
msgstr "Oceń nas na WordPress.org."
|
9432 |
|
9433 |
# @ WPBDM
|
9434 |
+
#: templates/admin/sidebar.tpl.php:36
|
9435 |
msgctxt "admin sidebar"
|
9436 |
msgid "Let other people know that it works with your WordPress setup."
|
9437 |
msgstr "Daj znać innym użytkownikom że ta wtyczka działa na Twoim Wordpressie."
|
9438 |
|
9439 |
# @ WPBDM
|
9440 |
+
#: templates/admin/sidebar.tpl.php:37
|
9441 |
msgctxt "admin sidebar"
|
9442 |
msgid "Buy a Premium Module"
|
9443 |
msgstr "Kup moduł premium"
|
9444 |
|
9445 |
# @ WPBDM
|
9446 |
+
#: templates/admin/sidebar.tpl.php:44
|
9447 |
msgctxt "admin sidebar"
|
9448 |
msgid "Get a Premium Module"
|
9449 |
msgstr "Pobierz moduł premium"
|
9450 |
|
9451 |
+
#: templates/admin/sidebar.tpl.php:47 templates/admin/sidebar.tpl.php:63
|
9452 |
msgctxt "admin sidebar"
|
9453 |
msgid "best deal"
|
9454 |
msgstr ""
|
9455 |
|
9456 |
+
#: templates/admin/sidebar.tpl.php:47
|
9457 |
msgctxt "admin sidebar"
|
9458 |
msgid "Combo Pack"
|
9459 |
msgstr ""
|
9460 |
|
9461 |
# @ WPBDM
|
9462 |
+
#: templates/admin/sidebar.tpl.php:47
|
9463 |
msgctxt "admin sidebar"
|
9464 |
msgid "(All Modules)"
|
9465 |
msgstr "Zainstalowane moduły"
|
9466 |
|
9467 |
+
#: templates/admin/sidebar.tpl.php:50 templates/admin/sidebar.tpl.php:66
|
9468 |
msgctxt "admin sidebar"
|
9469 |
msgid "new"
|
9470 |
msgstr ""
|
9471 |
|
9472 |
# @ WPBDM
|
9473 |
+
#: templates/admin/sidebar.tpl.php:60
|
9474 |
msgctxt "admin sidebar"
|
9475 |
msgid "Get a Directory Theme"
|
9476 |
msgstr "Przejdź do \"Katalog Administracja\""
|
9477 |
|
9478 |
+
#: templates/admin/sidebar.tpl.php:63
|
9479 |
msgctxt "admin sidebar"
|
9480 |
msgid "Theme Pack"
|
9481 |
msgstr ""
|
9482 |
|
9483 |
+
#: templates/admin/sidebar.tpl.php:63
|
9484 |
msgctxt "admin sidebar"
|
9485 |
msgid "(All Themes)"
|
9486 |
msgstr ""
|
9487 |
|
9488 |
# @ WPBDM
|
9489 |
+
#: templates/admin/sidebar.tpl.php:76
|
9490 |
msgctxt "admin sidebar"
|
9491 |
msgid "Found a bug? Need support?"
|
9492 |
msgstr "Znalazłeś błąd? Potrzebujesz pomocy?"
|
9493 |
|
9494 |
# @ WPBDM
|
9495 |
+
#: templates/admin/sidebar.tpl.php:81
|
9496 |
msgctxt "admin sidebar"
|
9497 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
9498 |
msgstr "Jeśli znalazłeś błąd lub potrzebujesz pomocy zajrzyj na <a>forum!</a>"
|
9499 |
|
9500 |
# @ WPBDM
|
9501 |
+
#: templates/admin/sidebar.tpl.php:84
|
9502 |
msgctxt "admin sidebar"
|
9503 |
msgid "Full plugin documentation"
|
9504 |
msgstr "Pełna Dokumentacja Pluginu"
|
9505 |
|
9506 |
# @ WPBDM
|
9507 |
+
#: templates/admin/sidebar.tpl.php:85
|
9508 |
msgctxt "admin sidebar"
|
9509 |
msgid "Quick Start Guide"
|
9510 |
msgstr "Szybki Start Instrukcja"
|
9511 |
|
9512 |
# @ WPBDM
|
9513 |
+
#: templates/admin/sidebar.tpl.php:86
|
9514 |
msgctxt "admin sidebar"
|
9515 |
msgid "Video Tutorials"
|
9516 |
msgstr "Poradnik Wideo"
|
9517 |
|
9518 |
# @ WPBDM
|
9519 |
+
#: templates/admin/sidebar.tpl.php:94
|
9520 |
msgctxt "admin sidebar"
|
9521 |
msgid "Installed Modules"
|
9522 |
msgstr "Zainstalowane moduły"
|
9523 |
|
9524 |
# @ WPBDM
|
9525 |
+
#: templates/admin/sidebar.tpl.php:105 templates/admin/sidebar.tpl.php:114
|
9526 |
msgctxt "admin sidebar"
|
9527 |
msgid "Installed"
|
9528 |
msgstr "Zainstalowane "
|
9529 |
|
9530 |
# @ WPBDM
|
9531 |
+
#: templates/admin/sidebar.tpl.php:107 templates/admin/sidebar.tpl.php:114
|
9532 |
msgctxt "admin sidebar"
|
9533 |
msgid "Not Installed"
|
9534 |
msgstr "Nie zainstalowane"
|
9535 |
|
9536 |
# @ WPBDM
|
9537 |
+
#: templates/admin/sidebar.tpl.php:113
|
9538 |
msgctxt "admin sidebar"
|
9539 |
msgid "Enhanced Categories Module"
|
9540 |
msgstr "Moduł zaawansowane kategorie"
|
languages/WPBDM-ru_RU.mo
CHANGED
Binary file
|
languages/WPBDM-ru_RU.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Business Directory Plugin 3.6.11\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
-
"POT-Creation-Date: 2018-06-
|
7 |
"PO-Revision-Date: 2017-01-16 17:49-0500\n"
|
8 |
"Last-Translator: Mick Levin <mikhaillevin@hotmail.com>\n"
|
9 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
@@ -2663,13 +2663,13 @@ msgctxt "form-fields admin"
|
|
2663 |
msgid "Field list of options is required."
|
2664 |
msgstr "Список вариантов поля обязателен."
|
2665 |
|
2666 |
-
#: includes/fields/class-fieldtypes-image.php:
|
2667 |
#, fuzzy
|
2668 |
msgctxt "form-fields admin"
|
2669 |
msgid "Display caption?"
|
2670 |
msgstr "Параметры отображения поля"
|
2671 |
|
2672 |
-
#: includes/fields/class-fieldtypes-image.php:
|
2673 |
#, fuzzy
|
2674 |
msgctxt "form-fields admin"
|
2675 |
msgid "Field Caption required?"
|
@@ -2791,84 +2791,118 @@ msgctxt "form-fields admin"
|
|
2791 |
msgid "Use rel=\"nofollow\" when displaying the link?"
|
2792 |
msgstr "Использовать \"rel=nofollow\" при отображении ссылки?"
|
2793 |
|
2794 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2795 |
msgctxt "form-fields admin"
|
2796 |
msgid "Add Form Field"
|
2797 |
msgstr "Добавить поле формы"
|
2798 |
|
2799 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2800 |
msgctxt "form-fields admin"
|
2801 |
msgid "Field Association"
|
2802 |
msgstr "Ассоциация"
|
2803 |
|
2804 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2805 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2806 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2807 |
msgctxt "form-fields admin"
|
2808 |
msgid "required"
|
2809 |
msgstr "обязательно"
|
2810 |
|
2811 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2812 |
msgctxt "form-fields admin"
|
2813 |
msgid "Field Type"
|
2814 |
msgstr "Тип"
|
2815 |
|
2816 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2817 |
msgctxt "form-fields admin"
|
2818 |
msgid "Field Label"
|
2819 |
msgstr "Метка"
|
2820 |
|
2821 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2822 |
msgctxt "form-fields admin"
|
2823 |
msgid "Field description"
|
2824 |
msgstr "Описание"
|
2825 |
|
2826 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2827 |
msgctxt "form-fields admin"
|
2828 |
msgid "optional"
|
2829 |
msgstr "Необязательное"
|
2830 |
|
2831 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2832 |
msgctxt "form-fields admin"
|
2833 |
msgid "Field-specific settings"
|
2834 |
msgstr "Настройки, связанные с полем"
|
2835 |
|
2836 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2837 |
msgctxt "form-fields admin"
|
2838 |
msgid "Field validation options"
|
2839 |
msgstr "Параметры проверки поля"
|
2840 |
|
2841 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2842 |
msgctxt "form-fields admin"
|
2843 |
msgid "Field Validator"
|
2844 |
msgstr "Требования поля"
|
2845 |
|
2846 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2847 |
msgctxt "form-fields admin"
|
2848 |
msgid "No validation"
|
2849 |
msgstr "Без проверки"
|
2850 |
|
2851 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2852 |
msgctxt "form-fields admin"
|
2853 |
msgid "Is field required?"
|
2854 |
msgstr "Обязательное поле?"
|
2855 |
|
2856 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2857 |
msgctxt "form-fields admin"
|
2858 |
msgid "This field is required."
|
2859 |
msgstr "Включите чтобы сделать это поле обязательным для заполнения."
|
2860 |
|
2861 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2862 |
msgctxt "form-fields admin"
|
2863 |
msgid "Field display options"
|
2864 |
msgstr "Параметры отображения поля"
|
2865 |
|
2866 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2867 |
msgctxt "form-fields admin"
|
2868 |
msgid "Show this field to admin users only?"
|
2869 |
msgstr ""
|
2870 |
|
2871 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2872 |
#, fuzzy
|
2873 |
msgctxt "form-fields admin"
|
2874 |
msgid "Display this field to admin users only in the edit listing view."
|
@@ -2876,66 +2910,66 @@ msgstr ""
|
|
2876 |
"Включите чтобы показывать значение этого поля на странице полной информации "
|
2877 |
"о записи."
|
2878 |
|
2879 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2880 |
msgctxt "form-fields admin"
|
2881 |
msgid "Show this value in excerpt view?"
|
2882 |
msgstr "Показать это поле в составе цитаты?"
|
2883 |
|
2884 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2885 |
msgctxt "form-fields admin"
|
2886 |
msgid "Display this value in post excerpt view."
|
2887 |
msgstr "Включите чтобы показать это поле в составе цитаты."
|
2888 |
|
2889 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2890 |
msgctxt "form-fields admin"
|
2891 |
msgid "Show this value in listing view?"
|
2892 |
msgstr "Показать это поле в полном виде?"
|
2893 |
|
2894 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2895 |
msgctxt "form-fields admin"
|
2896 |
msgid "Display this value in the listing view."
|
2897 |
msgstr ""
|
2898 |
"Включите чтобы показывать значение этого поля на странице полной информации "
|
2899 |
"о записи."
|
2900 |
|
2901 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2902 |
msgctxt "form-fields admin"
|
2903 |
msgid "Include this field in the search form?"
|
2904 |
msgstr "Включить в форму поиска?"
|
2905 |
|
2906 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2907 |
msgctxt "form-fields admin"
|
2908 |
msgid "Include this field in the search form."
|
2909 |
msgstr "Включите чтобы можно было использовать это поле в форме поиска."
|
2910 |
|
2911 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2912 |
#, fuzzy
|
2913 |
msgctxt "form-fields admin"
|
2914 |
msgid "Is this field required for searching?"
|
2915 |
msgstr "Обязательное поле?"
|
2916 |
|
2917 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2918 |
msgctxt "form-fields admin"
|
2919 |
msgid ""
|
2920 |
"Make this fields required during searches on the Advanced Search screen."
|
2921 |
msgstr ""
|
2922 |
|
2923 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2924 |
msgctxt "form-fields admin"
|
2925 |
msgid "Hide this field's label?"
|
2926 |
msgstr "Скрыть метку этого поля?"
|
2927 |
|
2928 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2929 |
msgctxt "form-fields admin"
|
2930 |
msgid "Hide this field's label when displaying it."
|
2931 |
msgstr "Включите чтобы при отображении этого поля скрыть его метку."
|
2932 |
|
2933 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2934 |
msgctxt "form-fields admin"
|
2935 |
msgid "Update Field"
|
2936 |
msgstr "Сохранить поле"
|
2937 |
|
2938 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2939 |
msgctxt "form-fields admin"
|
2940 |
msgid "Add Field"
|
2941 |
msgstr "Добавить поле"
|
@@ -6108,56 +6142,56 @@ msgctxt "submit listing"
|
|
6108 |
msgid "Please choose a valid fee plan for your category selection."
|
6109 |
msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
|
6110 |
|
6111 |
-
#: includes/views/submit_listing.php:
|
6112 |
#, fuzzy
|
6113 |
msgctxt "submit listing"
|
6114 |
msgid "Please enter your desired username."
|
6115 |
msgstr "Пожалуйста введите Ваше имя."
|
6116 |
|
6117 |
-
#: includes/views/submit_listing.php:
|
6118 |
#, fuzzy
|
6119 |
msgctxt "submit listing"
|
6120 |
msgid "Please enter the e-mail for your new account."
|
6121 |
msgstr "Пожалуйста введите Ваше имя."
|
6122 |
|
6123 |
-
#: includes/views/submit_listing.php:
|
6124 |
msgctxt "submit listing"
|
6125 |
msgid "Please enter the password for your new account."
|
6126 |
msgstr ""
|
6127 |
|
6128 |
-
#: includes/views/submit_listing.php:
|
6129 |
msgctxt "submit listing"
|
6130 |
msgid "The username you chose is already in use. Please use a different one."
|
6131 |
msgstr ""
|
6132 |
|
6133 |
-
#: includes/views/submit_listing.php:
|
6134 |
msgctxt "submit listing"
|
6135 |
msgid "The e-mail address you chose for your account is already in use."
|
6136 |
msgstr ""
|
6137 |
|
6138 |
-
#: includes/views/submit_listing.php:
|
6139 |
msgctxt "submit listing"
|
6140 |
msgid "Create a user account on this site"
|
6141 |
msgstr ""
|
6142 |
|
6143 |
-
#: includes/views/submit_listing.php:
|
6144 |
msgctxt "submit listing"
|
6145 |
msgid ""
|
6146 |
"You need to create an account on the site. Please fill out the form below."
|
6147 |
msgstr ""
|
6148 |
|
6149 |
-
#: includes/views/submit_listing.php:
|
6150 |
msgctxt "submit listing"
|
6151 |
msgid "Username:"
|
6152 |
msgstr ""
|
6153 |
|
6154 |
-
#: includes/views/submit_listing.php:
|
6155 |
#, fuzzy
|
6156 |
msgctxt "submit listing"
|
6157 |
msgid "Email:"
|
6158 |
msgstr "Адрес: %s"
|
6159 |
|
6160 |
-
#: includes/views/submit_listing.php:
|
6161 |
msgctxt "submit listing"
|
6162 |
msgid "Password:"
|
6163 |
msgstr ""
|
@@ -6191,12 +6225,12 @@ msgctxt "submit listing"
|
|
6191 |
msgid "Save Changes"
|
6192 |
msgstr "Сохранить изменения"
|
6193 |
|
6194 |
-
#: includes/class-recaptcha.php:
|
6195 |
msgctxt "recaptcha"
|
6196 |
msgid "The reCAPTCHA wasn't entered correctly."
|
6197 |
msgstr "Код reCAPTCHA был введён неправильно."
|
6198 |
|
6199 |
-
#: includes/class-recaptcha.php:
|
6200 |
#, fuzzy
|
6201 |
msgctxt "recaptcha"
|
6202 |
msgid "reCAPTCHA"
|
@@ -6300,12 +6334,12 @@ msgctxt "form-fields api"
|
|
6300 |
msgid "Textarea"
|
6301 |
msgstr "Текстовый блок"
|
6302 |
|
6303 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
6304 |
msgctxt "form-fields api"
|
6305 |
msgid "Textfield"
|
6306 |
msgstr "Текстовое поле"
|
6307 |
|
6308 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
6309 |
msgctxt "form-fields api"
|
6310 |
msgid "Format 01/31/1969"
|
6311 |
msgstr "Формат ММ/ДД/ГГГГ"
|
@@ -6330,7 +6364,7 @@ msgctxt "form-fields api"
|
|
6330 |
msgid "Link Text (optional):"
|
6331 |
msgstr "Текст ссылки (не обязательно)"
|
6332 |
|
6333 |
-
#: includes/fields/class-form-field.php:
|
6334 |
msgctxt "form-fields api"
|
6335 |
msgid ""
|
6336 |
"This form field can't be deleted because it is required for the plugin to "
|
@@ -6389,7 +6423,7 @@ msgctxt "date field"
|
|
6389 |
msgid "%s must be a valid date."
|
6390 |
msgstr "Значение \"%s\" должно быть корректной датой."
|
6391 |
|
6392 |
-
#: includes/fields/class-fieldtypes-image.php:
|
6393 |
#, fuzzy
|
6394 |
msgctxt "date field"
|
6395 |
msgid "Caption for %s is required."
|
@@ -6400,17 +6434,17 @@ msgctxt "form-fields-api"
|
|
6400 |
msgid "Remove"
|
6401 |
msgstr "Удалить"
|
6402 |
|
6403 |
-
#: includes/fields/class-form-field.php:
|
6404 |
msgctxt "form-fields-api"
|
6405 |
msgid "Invalid form field type"
|
6406 |
msgstr "Неверный тип поля формы"
|
6407 |
|
6408 |
-
#: includes/fields/class-form-field.php:
|
6409 |
msgctxt "form-fields-api"
|
6410 |
msgid "Field label is required."
|
6411 |
msgstr "Метка поля обязательна."
|
6412 |
|
6413 |
-
#: includes/fields/class-form-field.php:
|
6414 |
msgctxt "form-fields-api"
|
6415 |
msgid ""
|
6416 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
@@ -6418,14 +6452,14 @@ msgid ""
|
|
6418 |
"delete this current field and create a NEW field of type %1$s instead."
|
6419 |
msgstr ""
|
6420 |
|
6421 |
-
#: includes/fields/class-form-field.php:
|
6422 |
msgctxt "form-fields-api"
|
6423 |
msgid ""
|
6424 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
6425 |
"existing listings will be deleted as well."
|
6426 |
msgstr ""
|
6427 |
|
6428 |
-
#: includes/fields/class-form-field.php:
|
6429 |
msgctxt "form-fields-api"
|
6430 |
msgid ""
|
6431 |
"There can only be one field with association \"%s\". Please select another "
|
@@ -6434,17 +6468,17 @@ msgstr ""
|
|
6434 |
"Ассоциация с полем \"%s\" может быть только одна. Пожалуйста, выберите "
|
6435 |
"другую ассоциацию."
|
6436 |
|
6437 |
-
#: includes/fields/class-form-field.php:
|
6438 |
msgctxt "form-fields-api"
|
6439 |
msgid "\"%s\" is an invalid field type for this association."
|
6440 |
msgstr "Поле \"%s\" не является корректной ассоциацией для этого поля."
|
6441 |
|
6442 |
-
#: includes/fields/class-form-field.php:
|
6443 |
msgctxt "form-fields-api"
|
6444 |
msgid "Invalid field ID"
|
6445 |
msgstr "Некорректный номер поля"
|
6446 |
|
6447 |
-
#: includes/fields/class-form-field.php:
|
6448 |
msgctxt "form-fields-api"
|
6449 |
msgid "An error occurred while trying to delete this field."
|
6450 |
msgstr "Произошла ошибка при попытке удаления этого поля."
|
@@ -6474,6 +6508,12 @@ msgctxt "form-fields-api"
|
|
6474 |
msgid "Date Validator"
|
6475 |
msgstr "Проверка даты"
|
6476 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6477 |
#: includes/fields/class-fieldtypes-image.php:121
|
6478 |
msgctxt "form fields"
|
6479 |
msgid "Field unavailable at the moment."
|
@@ -6522,55 +6562,66 @@ msgid ""
|
|
6522 |
"you sure you want to enable this?"
|
6523 |
msgstr ""
|
6524 |
|
6525 |
-
#: includes/form-fields.php:
|
6526 |
msgctxt "form-fields-api validation"
|
6527 |
msgid "Field"
|
6528 |
msgstr "Поле"
|
6529 |
|
6530 |
-
#: includes/form-fields.php:
|
6531 |
msgctxt "form-fields-api validation"
|
6532 |
msgid "%s is required."
|
6533 |
msgstr "%s - обязательно."
|
6534 |
|
6535 |
-
#: includes/form-fields.php:
|
6536 |
msgctxt "form-fields-api validation"
|
6537 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
6538 |
msgstr ""
|
6539 |
"%s - некорректно. Правильный адрес URL должен начинаться с http:// или "
|
6540 |
"https://"
|
6541 |
|
6542 |
-
#: includes/form-fields.php:
|
6543 |
msgctxt "form-fields-api validation"
|
6544 |
msgid "%s is badly formatted. Valid Email format required."
|
6545 |
msgstr "%s - некорректно. Требуется ввести правильный электронный адрес."
|
6546 |
|
6547 |
-
#: includes/form-fields.php:
|
6548 |
msgctxt "form-fields-api validation"
|
6549 |
msgid "%s must be a number. Decimal values are not allowed."
|
6550 |
msgstr "%s должно быть целым числом."
|
6551 |
|
6552 |
-
#: includes/form-fields.php:
|
6553 |
msgctxt "form-fields-api validation"
|
6554 |
msgid "%s must be a number."
|
6555 |
msgstr "%s должно быть числом."
|
6556 |
|
6557 |
-
#: includes/form-fields.php:
|
6558 |
#, fuzzy
|
6559 |
msgctxt "form-fields-api validation"
|
6560 |
msgid "%1$s must be in the format %2$s."
|
6561 |
msgstr "%s должно быть в формате %s."
|
6562 |
|
6563 |
-
#: includes/form-fields.php:
|
6564 |
msgctxt "form-fields-api validation"
|
6565 |
msgid "%s must be a valid date."
|
6566 |
msgstr "%s должно быть корректной датой."
|
6567 |
|
6568 |
-
#: includes/form-fields.php:
|
|
|
|
|
|
|
|
|
|
|
6569 |
#, fuzzy
|
6570 |
msgctxt "form-fields-api validation"
|
6571 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
6572 |
msgstr "%s - не корректно. Значение должно быть одним из %s."
|
6573 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6574 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
6575 |
#, fuzzy
|
6576 |
msgctxt "authorize-net"
|
@@ -7337,17 +7388,17 @@ msgctxt "templates"
|
|
7337 |
msgid "View not available."
|
7338 |
msgstr "Свободных мест для загрузки изображений:"
|
7339 |
|
7340 |
-
#: includes/views/submit_listing.php:
|
7341 |
msgctxt "templates"
|
7342 |
msgid "Please agree to the Terms and Conditions."
|
7343 |
msgstr "Пожалуйста примите наши Условия и Положения."
|
7344 |
|
7345 |
-
#: includes/views/submit_listing.php:
|
7346 |
msgctxt "templates"
|
7347 |
msgid "Terms and Conditions:"
|
7348 |
msgstr "Условия и Положения:"
|
7349 |
|
7350 |
-
#: includes/views/submit_listing.php:
|
7351 |
#, fuzzy
|
7352 |
msgctxt "templates"
|
7353 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
@@ -8031,14 +8082,14 @@ msgctxt "preview"
|
|
8031 |
msgid "This is just a preview. The listing has not been published yet."
|
8032 |
msgstr "Это просто предварительный просмотр. Запись ещё не была опубликована."
|
8033 |
|
8034 |
-
#: includes/views/submit_listing.php:
|
8035 |
msgctxt "listing submit"
|
8036 |
msgid ""
|
8037 |
"Something went wrong. Please check the form for errors, correct them and "
|
8038 |
"submit again."
|
8039 |
msgstr ""
|
8040 |
|
8041 |
-
#: includes/views/submit_listing.php:
|
8042 |
msgctxt "listing submit"
|
8043 |
msgid ""
|
8044 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -8281,114 +8332,125 @@ msgctxt "admin sidebar"
|
|
8281 |
msgid "Elegant Business Theme"
|
8282 |
msgstr "Наименование"
|
8283 |
|
8284 |
-
#: templates/admin/sidebar.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8285 |
msgctxt "admin sidebar"
|
8286 |
msgid "Like this plugin?"
|
8287 |
msgstr "Нравится этот плагин?"
|
8288 |
|
8289 |
-
#: templates/admin/sidebar.tpl.php:
|
8290 |
msgctxt "admin sidebar"
|
8291 |
msgid "Why not do any or all of the following:"
|
8292 |
msgstr "Почему бы не сделать следующий шаг?"
|
8293 |
|
8294 |
-
#: templates/admin/sidebar.tpl.php:
|
8295 |
msgctxt "admin sidebar"
|
8296 |
msgid "Give it a good rating on WordPress.org."
|
8297 |
msgstr "Поставьте хорошую оценку на сервере WordPress.org."
|
8298 |
|
8299 |
-
#: templates/admin/sidebar.tpl.php:
|
8300 |
msgctxt "admin sidebar"
|
8301 |
msgid "Let other people know that it works with your WordPress setup."
|
8302 |
msgstr "Дайте знать другим людям, что этот плагин работает с Вашим сайтом."
|
8303 |
|
8304 |
-
#: templates/admin/sidebar.tpl.php:
|
8305 |
msgctxt "admin sidebar"
|
8306 |
msgid "Buy a Premium Module"
|
8307 |
msgstr "Купите платный модуль."
|
8308 |
|
8309 |
-
#: templates/admin/sidebar.tpl.php:
|
8310 |
msgctxt "admin sidebar"
|
8311 |
msgid "Get a Premium Module"
|
8312 |
msgstr "Получите платные модули:"
|
8313 |
|
8314 |
-
#: templates/admin/sidebar.tpl.php:
|
8315 |
msgctxt "admin sidebar"
|
8316 |
msgid "best deal"
|
8317 |
msgstr ""
|
8318 |
|
8319 |
-
#: templates/admin/sidebar.tpl.php:
|
8320 |
msgctxt "admin sidebar"
|
8321 |
msgid "Combo Pack"
|
8322 |
msgstr ""
|
8323 |
|
8324 |
-
#: templates/admin/sidebar.tpl.php:
|
8325 |
msgctxt "admin sidebar"
|
8326 |
msgid "(All Modules)"
|
8327 |
msgstr "Установленные модули:"
|
8328 |
|
8329 |
-
#: templates/admin/sidebar.tpl.php:
|
8330 |
msgctxt "admin sidebar"
|
8331 |
msgid "new"
|
8332 |
msgstr ""
|
8333 |
|
8334 |
-
#: templates/admin/sidebar.tpl.php:
|
8335 |
msgctxt "admin sidebar"
|
8336 |
msgid "Get a Directory Theme"
|
8337 |
msgstr "Удалить тему справочника"
|
8338 |
|
8339 |
-
#: templates/admin/sidebar.tpl.php:
|
8340 |
msgctxt "admin sidebar"
|
8341 |
msgid "Theme Pack"
|
8342 |
msgstr "Метки темы"
|
8343 |
|
8344 |
-
#: templates/admin/sidebar.tpl.php:
|
8345 |
msgctxt "admin sidebar"
|
8346 |
msgid "(All Themes)"
|
8347 |
msgstr "Темы"
|
8348 |
|
8349 |
-
#: templates/admin/sidebar.tpl.php:
|
8350 |
msgctxt "admin sidebar"
|
8351 |
msgid "Found a bug? Need support?"
|
8352 |
msgstr "Нашли глюк? Или нужна поддержка?"
|
8353 |
|
8354 |
-
#: templates/admin/sidebar.tpl.php:
|
8355 |
msgctxt "admin sidebar"
|
8356 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
8357 |
msgstr ""
|
8358 |
"Если Вы натолкнулись на глюк в программе, или Вам нужна техническая "
|
8359 |
"поддержка, посетите <a>форум поддержки!</a>"
|
8360 |
|
8361 |
-
#: templates/admin/sidebar.tpl.php:
|
8362 |
msgctxt "admin sidebar"
|
8363 |
msgid "Full plugin documentation"
|
8364 |
msgstr "Полная документация по плагину"
|
8365 |
|
8366 |
-
#: templates/admin/sidebar.tpl.php:
|
8367 |
msgctxt "admin sidebar"
|
8368 |
msgid "Quick Start Guide"
|
8369 |
msgstr "Руководство по быстрому старту"
|
8370 |
|
8371 |
-
#: templates/admin/sidebar.tpl.php:
|
8372 |
msgctxt "admin sidebar"
|
8373 |
msgid "Video Tutorials"
|
8374 |
msgstr "Видео-уроки"
|
8375 |
|
8376 |
-
#: templates/admin/sidebar.tpl.php:
|
8377 |
msgctxt "admin sidebar"
|
8378 |
msgid "Installed Modules"
|
8379 |
msgstr "Установленные модули:"
|
8380 |
|
8381 |
-
#: templates/admin/sidebar.tpl.php:
|
8382 |
msgctxt "admin sidebar"
|
8383 |
msgid "Installed"
|
8384 |
msgstr "Установлен"
|
8385 |
|
8386 |
-
#: templates/admin/sidebar.tpl.php:
|
8387 |
msgctxt "admin sidebar"
|
8388 |
msgid "Not Installed"
|
8389 |
msgstr "Не установлен"
|
8390 |
|
8391 |
-
#: templates/admin/sidebar.tpl.php:
|
8392 |
msgctxt "admin sidebar"
|
8393 |
msgid "Enhanced Categories Module"
|
8394 |
msgstr "Модуль продвинутых рубрик"
|
3 |
"Project-Id-Version: Business Directory Plugin 3.6.11\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
+
"POT-Creation-Date: 2018-06-27 21:14:25+00:00\n"
|
7 |
"PO-Revision-Date: 2017-01-16 17:49-0500\n"
|
8 |
"Last-Translator: Mick Levin <mikhaillevin@hotmail.com>\n"
|
9 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
2663 |
msgid "Field list of options is required."
|
2664 |
msgstr "Список вариантов поля обязателен."
|
2665 |
|
2666 |
+
#: includes/fields/class-fieldtypes-image.php:55
|
2667 |
#, fuzzy
|
2668 |
msgctxt "form-fields admin"
|
2669 |
msgid "Display caption?"
|
2670 |
msgstr "Параметры отображения поля"
|
2671 |
|
2672 |
+
#: includes/fields/class-fieldtypes-image.php:58
|
2673 |
#, fuzzy
|
2674 |
msgctxt "form-fields admin"
|
2675 |
msgid "Field Caption required?"
|
2791 |
msgid "Use rel=\"nofollow\" when displaying the link?"
|
2792 |
msgstr "Использовать \"rel=nofollow\" при отображении ссылки?"
|
2793 |
|
2794 |
+
#: templates/admin/form-fields-addoredit.tpl.php:8
|
2795 |
msgctxt "form-fields admin"
|
2796 |
msgid "Add Form Field"
|
2797 |
msgstr "Добавить поле формы"
|
2798 |
|
2799 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
2800 |
msgctxt "form-fields admin"
|
2801 |
msgid "Field Association"
|
2802 |
msgstr "Ассоциация"
|
2803 |
|
2804 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
2805 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
2806 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
2807 |
msgctxt "form-fields admin"
|
2808 |
msgid "required"
|
2809 |
msgstr "обязательно"
|
2810 |
|
2811 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
2812 |
msgctxt "form-fields admin"
|
2813 |
msgid "Field Type"
|
2814 |
msgstr "Тип"
|
2815 |
|
2816 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
2817 |
msgctxt "form-fields admin"
|
2818 |
msgid "Field Label"
|
2819 |
msgstr "Метка"
|
2820 |
|
2821 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
2822 |
msgctxt "form-fields admin"
|
2823 |
msgid "Field description"
|
2824 |
msgstr "Описание"
|
2825 |
|
2826 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
2827 |
msgctxt "form-fields admin"
|
2828 |
msgid "optional"
|
2829 |
msgstr "Необязательное"
|
2830 |
|
2831 |
+
#: templates/admin/form-fields-addoredit.tpl.php:97
|
2832 |
msgctxt "form-fields admin"
|
2833 |
msgid "Field-specific settings"
|
2834 |
msgstr "Настройки, связанные с полем"
|
2835 |
|
2836 |
+
#: templates/admin/form-fields-addoredit.tpl.php:106
|
2837 |
msgctxt "form-fields admin"
|
2838 |
msgid "Field validation options"
|
2839 |
msgstr "Параметры проверки поля"
|
2840 |
|
2841 |
+
#: templates/admin/form-fields-addoredit.tpl.php:110
|
2842 |
msgctxt "form-fields admin"
|
2843 |
msgid "Field Validator"
|
2844 |
msgstr "Требования поля"
|
2845 |
|
2846 |
+
#: templates/admin/form-fields-addoredit.tpl.php:114
|
2847 |
msgctxt "form-fields admin"
|
2848 |
msgid "No validation"
|
2849 |
msgstr "Без проверки"
|
2850 |
|
2851 |
+
#: templates/admin/form-fields-addoredit.tpl.php:126
|
2852 |
+
#, fuzzy
|
2853 |
+
msgctxt "form-fields admin"
|
2854 |
+
msgid "Number of words"
|
2855 |
+
msgstr "Количество изображений:"
|
2856 |
+
|
2857 |
+
#: templates/admin/form-fields-addoredit.tpl.php:136
|
2858 |
msgctxt "form-fields admin"
|
2859 |
msgid "Is field required?"
|
2860 |
msgstr "Обязательное поле?"
|
2861 |
|
2862 |
+
#: templates/admin/form-fields-addoredit.tpl.php:142
|
2863 |
msgctxt "form-fields admin"
|
2864 |
msgid "This field is required."
|
2865 |
msgstr "Включите чтобы сделать это поле обязательным для заполнения."
|
2866 |
|
2867 |
+
#: templates/admin/form-fields-addoredit.tpl.php:150
|
2868 |
msgctxt "form-fields admin"
|
2869 |
msgid "Field display options"
|
2870 |
msgstr "Параметры отображения поля"
|
2871 |
|
2872 |
+
#: templates/admin/form-fields-addoredit.tpl.php:154
|
2873 |
+
msgctxt "form-fields admin"
|
2874 |
+
msgid "Field Category Policy:"
|
2875 |
+
msgstr ""
|
2876 |
+
|
2877 |
+
#: templates/admin/form-fields-addoredit.tpl.php:159
|
2878 |
+
#, fuzzy
|
2879 |
+
msgctxt "form-fields admin"
|
2880 |
+
msgid "Field applies to all categories"
|
2881 |
+
msgstr "Продлить записи во всех истекших рубриках"
|
2882 |
+
|
2883 |
+
#: templates/admin/form-fields-addoredit.tpl.php:160
|
2884 |
+
#, fuzzy
|
2885 |
+
msgctxt "form-fields admin"
|
2886 |
+
msgid "Field applies to only certain categories"
|
2887 |
+
msgstr "Продлить записи во всех истекших рубриках"
|
2888 |
+
|
2889 |
+
#: templates/admin/form-fields-addoredit.tpl.php:164
|
2890 |
+
#, fuzzy
|
2891 |
+
msgctxt "form-fields admin"
|
2892 |
+
msgid "Limit field to the following categories:"
|
2893 |
+
msgstr "Вы можете использовать следующие служебные слова:"
|
2894 |
+
|
2895 |
+
#: templates/admin/form-fields-addoredit.tpl.php:188
|
2896 |
+
msgctxt "form-fields admin"
|
2897 |
+
msgid "Click to add categories to the selection."
|
2898 |
+
msgstr ""
|
2899 |
+
|
2900 |
+
#: templates/admin/form-fields-addoredit.tpl.php:201
|
2901 |
msgctxt "form-fields admin"
|
2902 |
msgid "Show this field to admin users only?"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
+
#: templates/admin/form-fields-addoredit.tpl.php:207
|
2906 |
#, fuzzy
|
2907 |
msgctxt "form-fields admin"
|
2908 |
msgid "Display this field to admin users only in the edit listing view."
|
2910 |
"Включите чтобы показывать значение этого поля на странице полной информации "
|
2911 |
"о записи."
|
2912 |
|
2913 |
+
#: templates/admin/form-fields-addoredit.tpl.php:213
|
2914 |
msgctxt "form-fields admin"
|
2915 |
msgid "Show this value in excerpt view?"
|
2916 |
msgstr "Показать это поле в составе цитаты?"
|
2917 |
|
2918 |
+
#: templates/admin/form-fields-addoredit.tpl.php:219
|
2919 |
msgctxt "form-fields admin"
|
2920 |
msgid "Display this value in post excerpt view."
|
2921 |
msgstr "Включите чтобы показать это поле в составе цитаты."
|
2922 |
|
2923 |
+
#: templates/admin/form-fields-addoredit.tpl.php:225
|
2924 |
msgctxt "form-fields admin"
|
2925 |
msgid "Show this value in listing view?"
|
2926 |
msgstr "Показать это поле в полном виде?"
|
2927 |
|
2928 |
+
#: templates/admin/form-fields-addoredit.tpl.php:231
|
2929 |
msgctxt "form-fields admin"
|
2930 |
msgid "Display this value in the listing view."
|
2931 |
msgstr ""
|
2932 |
"Включите чтобы показывать значение этого поля на странице полной информации "
|
2933 |
"о записи."
|
2934 |
|
2935 |
+
#: templates/admin/form-fields-addoredit.tpl.php:237
|
2936 |
msgctxt "form-fields admin"
|
2937 |
msgid "Include this field in the search form?"
|
2938 |
msgstr "Включить в форму поиска?"
|
2939 |
|
2940 |
+
#: templates/admin/form-fields-addoredit.tpl.php:243
|
2941 |
msgctxt "form-fields admin"
|
2942 |
msgid "Include this field in the search form."
|
2943 |
msgstr "Включите чтобы можно было использовать это поле в форме поиска."
|
2944 |
|
2945 |
+
#: templates/admin/form-fields-addoredit.tpl.php:249
|
2946 |
#, fuzzy
|
2947 |
msgctxt "form-fields admin"
|
2948 |
msgid "Is this field required for searching?"
|
2949 |
msgstr "Обязательное поле?"
|
2950 |
|
2951 |
+
#: templates/admin/form-fields-addoredit.tpl.php:255
|
2952 |
msgctxt "form-fields admin"
|
2953 |
msgid ""
|
2954 |
"Make this fields required during searches on the Advanced Search screen."
|
2955 |
msgstr ""
|
2956 |
|
2957 |
+
#: templates/admin/form-fields-addoredit.tpl.php:261
|
2958 |
msgctxt "form-fields admin"
|
2959 |
msgid "Hide this field's label?"
|
2960 |
msgstr "Скрыть метку этого поля?"
|
2961 |
|
2962 |
+
#: templates/admin/form-fields-addoredit.tpl.php:267
|
2963 |
msgctxt "form-fields admin"
|
2964 |
msgid "Hide this field's label when displaying it."
|
2965 |
msgstr "Включите чтобы при отображении этого поля скрыть его метку."
|
2966 |
|
2967 |
+
#: templates/admin/form-fields-addoredit.tpl.php:274
|
2968 |
msgctxt "form-fields admin"
|
2969 |
msgid "Update Field"
|
2970 |
msgstr "Сохранить поле"
|
2971 |
|
2972 |
+
#: templates/admin/form-fields-addoredit.tpl.php:276
|
2973 |
msgctxt "form-fields admin"
|
2974 |
msgid "Add Field"
|
2975 |
msgstr "Добавить поле"
|
6142 |
msgid "Please choose a valid fee plan for your category selection."
|
6143 |
msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
|
6144 |
|
6145 |
+
#: includes/views/submit_listing.php:743
|
6146 |
#, fuzzy
|
6147 |
msgctxt "submit listing"
|
6148 |
msgid "Please enter your desired username."
|
6149 |
msgstr "Пожалуйста введите Ваше имя."
|
6150 |
|
6151 |
+
#: includes/views/submit_listing.php:748
|
6152 |
#, fuzzy
|
6153 |
msgctxt "submit listing"
|
6154 |
msgid "Please enter the e-mail for your new account."
|
6155 |
msgstr "Пожалуйста введите Ваше имя."
|
6156 |
|
6157 |
+
#: includes/views/submit_listing.php:753
|
6158 |
msgctxt "submit listing"
|
6159 |
msgid "Please enter the password for your new account."
|
6160 |
msgstr ""
|
6161 |
|
6162 |
+
#: includes/views/submit_listing.php:763
|
6163 |
msgctxt "submit listing"
|
6164 |
msgid "The username you chose is already in use. Please use a different one."
|
6165 |
msgstr ""
|
6166 |
|
6167 |
+
#: includes/views/submit_listing.php:768
|
6168 |
msgctxt "submit listing"
|
6169 |
msgid "The e-mail address you chose for your account is already in use."
|
6170 |
msgstr ""
|
6171 |
|
6172 |
+
#: includes/views/submit_listing.php:783
|
6173 |
msgctxt "submit listing"
|
6174 |
msgid "Create a user account on this site"
|
6175 |
msgstr ""
|
6176 |
|
6177 |
+
#: includes/views/submit_listing.php:790
|
6178 |
msgctxt "submit listing"
|
6179 |
msgid ""
|
6180 |
"You need to create an account on the site. Please fill out the form below."
|
6181 |
msgstr ""
|
6182 |
|
6183 |
+
#: includes/views/submit_listing.php:796
|
6184 |
msgctxt "submit listing"
|
6185 |
msgid "Username:"
|
6186 |
msgstr ""
|
6187 |
|
6188 |
+
#: includes/views/submit_listing.php:805
|
6189 |
#, fuzzy
|
6190 |
msgctxt "submit listing"
|
6191 |
msgid "Email:"
|
6192 |
msgstr "Адрес: %s"
|
6193 |
|
6194 |
+
#: includes/views/submit_listing.php:814
|
6195 |
msgctxt "submit listing"
|
6196 |
msgid "Password:"
|
6197 |
msgstr ""
|
6225 |
msgid "Save Changes"
|
6226 |
msgstr "Сохранить изменения"
|
6227 |
|
6228 |
+
#: includes/class-recaptcha.php:109 includes/class-recaptcha.php:150
|
6229 |
msgctxt "recaptcha"
|
6230 |
msgid "The reCAPTCHA wasn't entered correctly."
|
6231 |
msgstr "Код reCAPTCHA был введён неправильно."
|
6232 |
|
6233 |
+
#: includes/class-recaptcha.php:211
|
6234 |
#, fuzzy
|
6235 |
msgctxt "recaptcha"
|
6236 |
msgid "reCAPTCHA"
|
6334 |
msgid "Textarea"
|
6335 |
msgstr "Текстовый блок"
|
6336 |
|
6337 |
+
#: includes/fields/class-fieldtypes-textfield.php:13
|
6338 |
msgctxt "form-fields api"
|
6339 |
msgid "Textfield"
|
6340 |
msgstr "Текстовое поле"
|
6341 |
|
6342 |
+
#: includes/fields/class-fieldtypes-textfield.php:50
|
6343 |
msgctxt "form-fields api"
|
6344 |
msgid "Format 01/31/1969"
|
6345 |
msgstr "Формат ММ/ДД/ГГГГ"
|
6364 |
msgid "Link Text (optional):"
|
6365 |
msgstr "Текст ссылки (не обязательно)"
|
6366 |
|
6367 |
+
#: includes/fields/class-form-field.php:707
|
6368 |
msgctxt "form-fields api"
|
6369 |
msgid ""
|
6370 |
"This form field can't be deleted because it is required for the plugin to "
|
6423 |
msgid "%s must be a valid date."
|
6424 |
msgstr "Значение \"%s\" должно быть корректной датой."
|
6425 |
|
6426 |
+
#: includes/fields/class-fieldtypes-image.php:41
|
6427 |
#, fuzzy
|
6428 |
msgctxt "date field"
|
6429 |
msgid "Caption for %s is required."
|
6434 |
msgid "Remove"
|
6435 |
msgstr "Удалить"
|
6436 |
|
6437 |
+
#: includes/fields/class-form-field.php:66
|
6438 |
msgctxt "form-fields-api"
|
6439 |
msgid "Invalid form field type"
|
6440 |
msgstr "Неверный тип поля формы"
|
6441 |
|
6442 |
+
#: includes/fields/class-form-field.php:585
|
6443 |
msgctxt "form-fields-api"
|
6444 |
msgid "Field label is required."
|
6445 |
msgstr "Метка поля обязательна."
|
6446 |
|
6447 |
+
#: includes/fields/class-form-field.php:596
|
6448 |
msgctxt "form-fields-api"
|
6449 |
msgid ""
|
6450 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
6452 |
"delete this current field and create a NEW field of type %1$s instead."
|
6453 |
msgstr ""
|
6454 |
|
6455 |
+
#: includes/fields/class-form-field.php:599
|
6456 |
msgctxt "form-fields-api"
|
6457 |
msgid ""
|
6458 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
6459 |
"existing listings will be deleted as well."
|
6460 |
msgstr ""
|
6461 |
|
6462 |
+
#: includes/fields/class-form-field.php:633
|
6463 |
msgctxt "form-fields-api"
|
6464 |
msgid ""
|
6465 |
"There can only be one field with association \"%s\". Please select another "
|
6468 |
"Ассоциация с полем \"%s\" может быть только одна. Пожалуйста, выберите "
|
6469 |
"другую ассоциацию."
|
6470 |
|
6471 |
+
#: includes/fields/class-form-field.php:643
|
6472 |
msgctxt "form-fields-api"
|
6473 |
msgid "\"%s\" is an invalid field type for this association."
|
6474 |
msgstr "Поле \"%s\" не является корректной ассоциацией для этого поля."
|
6475 |
|
6476 |
+
#: includes/fields/class-form-field.php:697
|
6477 |
msgctxt "form-fields-api"
|
6478 |
msgid "Invalid field ID"
|
6479 |
msgstr "Некорректный номер поля"
|
6480 |
|
6481 |
+
#: includes/fields/class-form-field.php:720
|
6482 |
msgctxt "form-fields-api"
|
6483 |
msgid "An error occurred while trying to delete this field."
|
6484 |
msgstr "Произошла ошибка при попытке удаления этого поля."
|
6508 |
msgid "Date Validator"
|
6509 |
msgstr "Проверка даты"
|
6510 |
|
6511 |
+
#: includes/form-fields.php:574
|
6512 |
+
#, fuzzy
|
6513 |
+
msgctxt "form-fields-api"
|
6514 |
+
msgid "Word Count Validator"
|
6515 |
+
msgstr "Проверка целого числа"
|
6516 |
+
|
6517 |
#: includes/fields/class-fieldtypes-image.php:121
|
6518 |
msgctxt "form fields"
|
6519 |
msgid "Field unavailable at the moment."
|
6562 |
"you sure you want to enable this?"
|
6563 |
msgstr ""
|
6564 |
|
6565 |
+
#: includes/form-fields.php:581
|
6566 |
msgctxt "form-fields-api validation"
|
6567 |
msgid "Field"
|
6568 |
msgstr "Поле"
|
6569 |
|
6570 |
+
#: includes/form-fields.php:602 includes/form-fields.php:607
|
6571 |
msgctxt "form-fields-api validation"
|
6572 |
msgid "%s is required."
|
6573 |
msgstr "%s - обязательно."
|
6574 |
|
6575 |
+
#: includes/form-fields.php:619 includes/form-fields.php:626
|
6576 |
msgctxt "form-fields-api validation"
|
6577 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
6578 |
msgstr ""
|
6579 |
"%s - некорректно. Правильный адрес URL должен начинаться с http:// или "
|
6580 |
"https://"
|
6581 |
|
6582 |
+
#: includes/form-fields.php:641
|
6583 |
msgctxt "form-fields-api validation"
|
6584 |
msgid "%s is badly formatted. Valid Email format required."
|
6585 |
msgstr "%s - некорректно. Требуется ввести правильный электронный адрес."
|
6586 |
|
6587 |
+
#: includes/form-fields.php:648
|
6588 |
msgctxt "form-fields-api validation"
|
6589 |
msgid "%s must be a number. Decimal values are not allowed."
|
6590 |
msgstr "%s должно быть целым числом."
|
6591 |
|
6592 |
+
#: includes/form-fields.php:655
|
6593 |
msgctxt "form-fields-api validation"
|
6594 |
msgid "%s must be a number."
|
6595 |
msgstr "%s должно быть числом."
|
6596 |
|
6597 |
+
#: includes/form-fields.php:674
|
6598 |
#, fuzzy
|
6599 |
msgctxt "form-fields-api validation"
|
6600 |
msgid "%1$s must be in the format %2$s."
|
6601 |
msgstr "%s должно быть в формате %s."
|
6602 |
|
6603 |
+
#: includes/form-fields.php:712
|
6604 |
msgctxt "form-fields-api validation"
|
6605 |
msgid "%s must be a valid date."
|
6606 |
msgstr "%s должно быть корректной датой."
|
6607 |
|
6608 |
+
#: includes/form-fields.php:735
|
6609 |
+
msgctxt "form-fields-api validation"
|
6610 |
+
msgid "%s must have less than %d words."
|
6611 |
+
msgstr ""
|
6612 |
+
|
6613 |
+
#: includes/form-fields.php:754
|
6614 |
#, fuzzy
|
6615 |
msgctxt "form-fields-api validation"
|
6616 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
6617 |
msgstr "%s - не корректно. Значение должно быть одним из %s."
|
6618 |
|
6619 |
+
#: includes/form-fields.php:719
|
6620 |
+
#, fuzzy
|
6621 |
+
msgctxt "image field"
|
6622 |
+
msgid "Caption for %s is required."
|
6623 |
+
msgstr "Страна обязательна."
|
6624 |
+
|
6625 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
6626 |
#, fuzzy
|
6627 |
msgctxt "authorize-net"
|
7388 |
msgid "View not available."
|
7389 |
msgstr "Свободных мест для загрузки изображений:"
|
7390 |
|
7391 |
+
#: includes/views/submit_listing.php:852
|
7392 |
msgctxt "templates"
|
7393 |
msgid "Please agree to the Terms and Conditions."
|
7394 |
msgstr "Пожалуйста примите наши Условия и Положения."
|
7395 |
|
7396 |
+
#: includes/views/submit_listing.php:860
|
7397 |
msgctxt "templates"
|
7398 |
msgid "Terms and Conditions:"
|
7399 |
msgstr "Условия и Положения:"
|
7400 |
|
7401 |
+
#: includes/views/submit_listing.php:869
|
7402 |
#, fuzzy
|
7403 |
msgctxt "templates"
|
7404 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
8082 |
msgid "This is just a preview. The listing has not been published yet."
|
8083 |
msgstr "Это просто предварительный просмотр. Запись ещё не была опубликована."
|
8084 |
|
8085 |
+
#: includes/views/submit_listing.php:613
|
8086 |
msgctxt "listing submit"
|
8087 |
msgid ""
|
8088 |
"Something went wrong. Please check the form for errors, correct them and "
|
8089 |
"submit again."
|
8090 |
msgstr ""
|
8091 |
|
8092 |
+
#: includes/views/submit_listing.php:695
|
8093 |
msgctxt "listing submit"
|
8094 |
msgid ""
|
8095 |
"Image upload is required, please provide at least one image and submit again."
|
8332 |
msgid "Elegant Business Theme"
|
8333 |
msgstr "Наименование"
|
8334 |
|
8335 |
+
#: templates/admin/sidebar.tpl.php:23
|
8336 |
+
#, fuzzy
|
8337 |
+
msgctxt "admin sidebar"
|
8338 |
+
msgid "Modern Business Theme"
|
8339 |
+
msgstr "Наименование"
|
8340 |
+
|
8341 |
+
#: templates/admin/sidebar.tpl.php:24
|
8342 |
+
msgctxt "admin sidebar"
|
8343 |
+
msgid "Modern Filtered Theme"
|
8344 |
+
msgstr ""
|
8345 |
+
|
8346 |
+
#: templates/admin/sidebar.tpl.php:31
|
8347 |
msgctxt "admin sidebar"
|
8348 |
msgid "Like this plugin?"
|
8349 |
msgstr "Нравится этот плагин?"
|
8350 |
|
8351 |
+
#: templates/admin/sidebar.tpl.php:33
|
8352 |
msgctxt "admin sidebar"
|
8353 |
msgid "Why not do any or all of the following:"
|
8354 |
msgstr "Почему бы не сделать следующий шаг?"
|
8355 |
|
8356 |
+
#: templates/admin/sidebar.tpl.php:35
|
8357 |
msgctxt "admin sidebar"
|
8358 |
msgid "Give it a good rating on WordPress.org."
|
8359 |
msgstr "Поставьте хорошую оценку на сервере WordPress.org."
|
8360 |
|
8361 |
+
#: templates/admin/sidebar.tpl.php:36
|
8362 |
msgctxt "admin sidebar"
|
8363 |
msgid "Let other people know that it works with your WordPress setup."
|
8364 |
msgstr "Дайте знать другим людям, что этот плагин работает с Вашим сайтом."
|
8365 |
|
8366 |
+
#: templates/admin/sidebar.tpl.php:37
|
8367 |
msgctxt "admin sidebar"
|
8368 |
msgid "Buy a Premium Module"
|
8369 |
msgstr "Купите платный модуль."
|
8370 |
|
8371 |
+
#: templates/admin/sidebar.tpl.php:44
|
8372 |
msgctxt "admin sidebar"
|
8373 |
msgid "Get a Premium Module"
|
8374 |
msgstr "Получите платные модули:"
|
8375 |
|
8376 |
+
#: templates/admin/sidebar.tpl.php:47 templates/admin/sidebar.tpl.php:63
|
8377 |
msgctxt "admin sidebar"
|
8378 |
msgid "best deal"
|
8379 |
msgstr ""
|
8380 |
|
8381 |
+
#: templates/admin/sidebar.tpl.php:47
|
8382 |
msgctxt "admin sidebar"
|
8383 |
msgid "Combo Pack"
|
8384 |
msgstr ""
|
8385 |
|
8386 |
+
#: templates/admin/sidebar.tpl.php:47
|
8387 |
msgctxt "admin sidebar"
|
8388 |
msgid "(All Modules)"
|
8389 |
msgstr "Установленные модули:"
|
8390 |
|
8391 |
+
#: templates/admin/sidebar.tpl.php:50 templates/admin/sidebar.tpl.php:66
|
8392 |
msgctxt "admin sidebar"
|
8393 |
msgid "new"
|
8394 |
msgstr ""
|
8395 |
|
8396 |
+
#: templates/admin/sidebar.tpl.php:60
|
8397 |
msgctxt "admin sidebar"
|
8398 |
msgid "Get a Directory Theme"
|
8399 |
msgstr "Удалить тему справочника"
|
8400 |
|
8401 |
+
#: templates/admin/sidebar.tpl.php:63
|
8402 |
msgctxt "admin sidebar"
|
8403 |
msgid "Theme Pack"
|
8404 |
msgstr "Метки темы"
|
8405 |
|
8406 |
+
#: templates/admin/sidebar.tpl.php:63
|
8407 |
msgctxt "admin sidebar"
|
8408 |
msgid "(All Themes)"
|
8409 |
msgstr "Темы"
|
8410 |
|
8411 |
+
#: templates/admin/sidebar.tpl.php:76
|
8412 |
msgctxt "admin sidebar"
|
8413 |
msgid "Found a bug? Need support?"
|
8414 |
msgstr "Нашли глюк? Или нужна поддержка?"
|
8415 |
|
8416 |
+
#: templates/admin/sidebar.tpl.php:81
|
8417 |
msgctxt "admin sidebar"
|
8418 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
8419 |
msgstr ""
|
8420 |
"Если Вы натолкнулись на глюк в программе, или Вам нужна техническая "
|
8421 |
"поддержка, посетите <a>форум поддержки!</a>"
|
8422 |
|
8423 |
+
#: templates/admin/sidebar.tpl.php:84
|
8424 |
msgctxt "admin sidebar"
|
8425 |
msgid "Full plugin documentation"
|
8426 |
msgstr "Полная документация по плагину"
|
8427 |
|
8428 |
+
#: templates/admin/sidebar.tpl.php:85
|
8429 |
msgctxt "admin sidebar"
|
8430 |
msgid "Quick Start Guide"
|
8431 |
msgstr "Руководство по быстрому старту"
|
8432 |
|
8433 |
+
#: templates/admin/sidebar.tpl.php:86
|
8434 |
msgctxt "admin sidebar"
|
8435 |
msgid "Video Tutorials"
|
8436 |
msgstr "Видео-уроки"
|
8437 |
|
8438 |
+
#: templates/admin/sidebar.tpl.php:94
|
8439 |
msgctxt "admin sidebar"
|
8440 |
msgid "Installed Modules"
|
8441 |
msgstr "Установленные модули:"
|
8442 |
|
8443 |
+
#: templates/admin/sidebar.tpl.php:105 templates/admin/sidebar.tpl.php:114
|
8444 |
msgctxt "admin sidebar"
|
8445 |
msgid "Installed"
|
8446 |
msgstr "Установлен"
|
8447 |
|
8448 |
+
#: templates/admin/sidebar.tpl.php:107 templates/admin/sidebar.tpl.php:114
|
8449 |
msgctxt "admin sidebar"
|
8450 |
msgid "Not Installed"
|
8451 |
msgstr "Не установлен"
|
8452 |
|
8453 |
+
#: templates/admin/sidebar.tpl.php:113
|
8454 |
msgctxt "admin sidebar"
|
8455 |
msgid "Enhanced Categories Module"
|
8456 |
msgstr "Модуль продвинутых рубрик"
|
languages/WPBDM-sv_SE.mo
CHANGED
Binary file
|
languages/WPBDM-sv_SE.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin 4.0.8\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2018-06-
|
9 |
"PO-Revision-Date: 2017-12-03 21:20+0100\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
@@ -2611,13 +2611,13 @@ msgctxt "form-fields admin"
|
|
2611 |
msgid "Field list of options is required."
|
2612 |
msgstr "Lista på alternativ krävs."
|
2613 |
|
2614 |
-
#: includes/fields/class-fieldtypes-image.php:
|
2615 |
#, fuzzy
|
2616 |
msgctxt "form-fields admin"
|
2617 |
msgid "Display caption?"
|
2618 |
msgstr "Fältvisningsalternativ"
|
2619 |
|
2620 |
-
#: includes/fields/class-fieldtypes-image.php:
|
2621 |
#, fuzzy
|
2622 |
msgctxt "form-fields admin"
|
2623 |
msgid "Field Caption required?"
|
@@ -2739,146 +2739,182 @@ msgctxt "form-fields admin"
|
|
2739 |
msgid "Use rel=\"nofollow\" when displaying the link?"
|
2740 |
msgstr "Använd rel = \"nofollow\" vid visning av länken?"
|
2741 |
|
2742 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2743 |
msgctxt "form-fields admin"
|
2744 |
msgid "Add Form Field"
|
2745 |
msgstr "Lägg till formulärfält"
|
2746 |
|
2747 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2748 |
msgctxt "form-fields admin"
|
2749 |
msgid "Field Association"
|
2750 |
msgstr "Fält / Association"
|
2751 |
|
2752 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2753 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2754 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2755 |
msgctxt "form-fields admin"
|
2756 |
msgid "required"
|
2757 |
msgstr "obligatoriskt"
|
2758 |
|
2759 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2760 |
msgctxt "form-fields admin"
|
2761 |
msgid "Field Type"
|
2762 |
msgstr "Fälttyp"
|
2763 |
|
2764 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2765 |
msgctxt "form-fields admin"
|
2766 |
msgid "Field Label"
|
2767 |
msgstr "Fältetikett"
|
2768 |
|
2769 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2770 |
msgctxt "form-fields admin"
|
2771 |
msgid "Field description"
|
2772 |
msgstr "Fältbeskrivning"
|
2773 |
|
2774 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2775 |
msgctxt "form-fields admin"
|
2776 |
msgid "optional"
|
2777 |
msgstr "valfritt"
|
2778 |
|
2779 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2780 |
msgctxt "form-fields admin"
|
2781 |
msgid "Field-specific settings"
|
2782 |
msgstr "Fältspecifika inställningar"
|
2783 |
|
2784 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2785 |
msgctxt "form-fields admin"
|
2786 |
msgid "Field validation options"
|
2787 |
msgstr "Val för fältvalidering"
|
2788 |
|
2789 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2790 |
msgctxt "form-fields admin"
|
2791 |
msgid "Field Validator"
|
2792 |
msgstr "Fältvaliderare"
|
2793 |
|
2794 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2795 |
msgctxt "form-fields admin"
|
2796 |
msgid "No validation"
|
2797 |
msgstr "Ingen validering"
|
2798 |
|
2799 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2800 |
msgctxt "form-fields admin"
|
2801 |
msgid "Is field required?"
|
2802 |
msgstr "Är detta fält obligatoriskt?"
|
2803 |
|
2804 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2805 |
msgctxt "form-fields admin"
|
2806 |
msgid "This field is required."
|
2807 |
msgstr "Detta fält är obligatoriskt."
|
2808 |
|
2809 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2810 |
msgctxt "form-fields admin"
|
2811 |
msgid "Field display options"
|
2812 |
msgstr "Fältvisningsalternativ"
|
2813 |
|
2814 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2815 |
msgctxt "form-fields admin"
|
2816 |
msgid "Show this field to admin users only?"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2820 |
#, fuzzy
|
2821 |
msgctxt "form-fields admin"
|
2822 |
msgid "Display this field to admin users only in the edit listing view."
|
2823 |
msgstr "Visa detta värdet i annonsläget."
|
2824 |
|
2825 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2826 |
msgctxt "form-fields admin"
|
2827 |
msgid "Show this value in excerpt view?"
|
2828 |
msgstr "Visa detta värdet i utdrag?"
|
2829 |
|
2830 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2831 |
msgctxt "form-fields admin"
|
2832 |
msgid "Display this value in post excerpt view."
|
2833 |
msgstr "Visa detta värdet i inläggsutdrag."
|
2834 |
|
2835 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2836 |
msgctxt "form-fields admin"
|
2837 |
msgid "Show this value in listing view?"
|
2838 |
msgstr "Visa detta värdet i annonsläge?"
|
2839 |
|
2840 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2841 |
msgctxt "form-fields admin"
|
2842 |
msgid "Display this value in the listing view."
|
2843 |
msgstr "Visa detta värdet i annonsläget."
|
2844 |
|
2845 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2846 |
msgctxt "form-fields admin"
|
2847 |
msgid "Include this field in the search form?"
|
2848 |
msgstr "Inkludera detta fält i sökfunktionen?"
|
2849 |
|
2850 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2851 |
msgctxt "form-fields admin"
|
2852 |
msgid "Include this field in the search form."
|
2853 |
msgstr "Inkludera detta fält i sökfunktionen."
|
2854 |
|
2855 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2856 |
msgctxt "form-fields admin"
|
2857 |
msgid "Is this field required for searching?"
|
2858 |
msgstr "Är detta fält obligatoriskt vid sökning?"
|
2859 |
|
2860 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2861 |
msgctxt "form-fields admin"
|
2862 |
msgid ""
|
2863 |
"Make this fields required during searches on the Advanced Search screen."
|
2864 |
msgstr "Gör detta fält obligatoriskt vid sökningar i avancerat sök."
|
2865 |
|
2866 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2867 |
msgctxt "form-fields admin"
|
2868 |
msgid "Hide this field's label?"
|
2869 |
msgstr "Dölj detta fälts etikett?"
|
2870 |
|
2871 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2872 |
msgctxt "form-fields admin"
|
2873 |
msgid "Hide this field's label when displaying it."
|
2874 |
msgstr "Dölj detta fälts etikett när det visas."
|
2875 |
|
2876 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2877 |
msgctxt "form-fields admin"
|
2878 |
msgid "Update Field"
|
2879 |
msgstr "Uppdatera fält"
|
2880 |
|
2881 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2882 |
msgctxt "form-fields admin"
|
2883 |
msgid "Add Field"
|
2884 |
msgstr "Lägg till fält"
|
@@ -5823,37 +5859,37 @@ msgctxt "submit listing"
|
|
5823 |
msgid "Please choose a valid fee plan for your category selection."
|
5824 |
msgstr "Välj en avgiftsplan för ditt kategorival."
|
5825 |
|
5826 |
-
#: includes/views/submit_listing.php:
|
5827 |
msgctxt "submit listing"
|
5828 |
msgid "Please enter your desired username."
|
5829 |
msgstr "Fyll i ditt önskade användarnamn."
|
5830 |
|
5831 |
-
#: includes/views/submit_listing.php:
|
5832 |
msgctxt "submit listing"
|
5833 |
msgid "Please enter the e-mail for your new account."
|
5834 |
msgstr "Fyll i e-postadressen för ditt nya konto."
|
5835 |
|
5836 |
-
#: includes/views/submit_listing.php:
|
5837 |
msgctxt "submit listing"
|
5838 |
msgid "Please enter the password for your new account."
|
5839 |
msgstr "Ange lösenordet för ditt nya konto."
|
5840 |
|
5841 |
-
#: includes/views/submit_listing.php:
|
5842 |
msgctxt "submit listing"
|
5843 |
msgid "The username you chose is already in use. Please use a different one."
|
5844 |
msgstr "Användarnamnet upptaget, var vänlig försök med ett annat."
|
5845 |
|
5846 |
-
#: includes/views/submit_listing.php:
|
5847 |
msgctxt "submit listing"
|
5848 |
msgid "The e-mail address you chose for your account is already in use."
|
5849 |
msgstr "E-postadressen du valt för ditt konto används redan."
|
5850 |
|
5851 |
-
#: includes/views/submit_listing.php:
|
5852 |
msgctxt "submit listing"
|
5853 |
msgid "Create a user account on this site"
|
5854 |
msgstr "Skapa ett användarkonto på denna webbplats"
|
5855 |
|
5856 |
-
#: includes/views/submit_listing.php:
|
5857 |
msgctxt "submit listing"
|
5858 |
msgid ""
|
5859 |
"You need to create an account on the site. Please fill out the form below."
|
@@ -5861,17 +5897,17 @@ msgstr ""
|
|
5861 |
"Du måste skapa ett konto för denna webbplatsen. Vänligen fyll i formuläret "
|
5862 |
"nedan."
|
5863 |
|
5864 |
-
#: includes/views/submit_listing.php:
|
5865 |
msgctxt "submit listing"
|
5866 |
msgid "Username:"
|
5867 |
msgstr "Användarnamn:"
|
5868 |
|
5869 |
-
#: includes/views/submit_listing.php:
|
5870 |
msgctxt "submit listing"
|
5871 |
msgid "Email:"
|
5872 |
msgstr "E-postadress:"
|
5873 |
|
5874 |
-
#: includes/views/submit_listing.php:
|
5875 |
msgctxt "submit listing"
|
5876 |
msgid "Password:"
|
5877 |
msgstr "Lösenord:"
|
@@ -5901,12 +5937,12 @@ msgctxt "submit listing"
|
|
5901 |
msgid "Save Changes"
|
5902 |
msgstr "Spara ändringar"
|
5903 |
|
5904 |
-
#: includes/class-recaptcha.php:
|
5905 |
msgctxt "recaptcha"
|
5906 |
msgid "The reCAPTCHA wasn't entered correctly."
|
5907 |
msgstr "reCAPTCHA angavs inte korrekt"
|
5908 |
|
5909 |
-
#: includes/class-recaptcha.php:
|
5910 |
msgctxt "recaptcha"
|
5911 |
msgid "reCAPTCHA"
|
5912 |
msgstr "reCAPTCHA"
|
@@ -6011,12 +6047,12 @@ msgctxt "form-fields api"
|
|
6011 |
msgid "Textarea"
|
6012 |
msgstr "Textruta"
|
6013 |
|
6014 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
6015 |
msgctxt "form-fields api"
|
6016 |
msgid "Textfield"
|
6017 |
msgstr "Textfält"
|
6018 |
|
6019 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
6020 |
msgctxt "form-fields api"
|
6021 |
msgid "Format 01/31/1969"
|
6022 |
msgstr "Format 01/31/1969"
|
@@ -6041,7 +6077,7 @@ msgctxt "form-fields api"
|
|
6041 |
msgid "Link Text (optional):"
|
6042 |
msgstr "Länktext (valfritt):"
|
6043 |
|
6044 |
-
#: includes/fields/class-form-field.php:
|
6045 |
msgctxt "form-fields api"
|
6046 |
msgid ""
|
6047 |
"This form field can't be deleted because it is required for the plugin to "
|
@@ -6101,7 +6137,7 @@ msgctxt "date field"
|
|
6101 |
msgid "%s must be a valid date."
|
6102 |
msgstr "%s måste vara ett giltigt datum."
|
6103 |
|
6104 |
-
#: includes/fields/class-fieldtypes-image.php:
|
6105 |
#, fuzzy
|
6106 |
msgctxt "date field"
|
6107 |
msgid "Caption for %s is required."
|
@@ -6112,17 +6148,17 @@ msgctxt "form-fields-api"
|
|
6112 |
msgid "Remove"
|
6113 |
msgstr "Ta bort"
|
6114 |
|
6115 |
-
#: includes/fields/class-form-field.php:
|
6116 |
msgctxt "form-fields-api"
|
6117 |
msgid "Invalid form field type"
|
6118 |
msgstr "Ogiltig formulärfält typ"
|
6119 |
|
6120 |
-
#: includes/fields/class-form-field.php:
|
6121 |
msgctxt "form-fields-api"
|
6122 |
msgid "Field label is required."
|
6123 |
msgstr "Fältetikett krävs"
|
6124 |
|
6125 |
-
#: includes/fields/class-form-field.php:
|
6126 |
msgctxt "form-fields-api"
|
6127 |
msgid ""
|
6128 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
@@ -6130,14 +6166,14 @@ msgid ""
|
|
6130 |
"delete this current field and create a NEW field of type %1$s instead."
|
6131 |
msgstr ""
|
6132 |
|
6133 |
-
#: includes/fields/class-form-field.php:
|
6134 |
msgctxt "form-fields-api"
|
6135 |
msgid ""
|
6136 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
6137 |
"existing listings will be deleted as well."
|
6138 |
msgstr ""
|
6139 |
|
6140 |
-
#: includes/fields/class-form-field.php:
|
6141 |
msgctxt "form-fields-api"
|
6142 |
msgid ""
|
6143 |
"There can only be one field with association \"%s\". Please select another "
|
@@ -6146,17 +6182,17 @@ msgstr ""
|
|
6146 |
"Det kan bara finnas ett fält med associationen \"%s\". Välj en annan "
|
6147 |
"association."
|
6148 |
|
6149 |
-
#: includes/fields/class-form-field.php:
|
6150 |
msgctxt "form-fields-api"
|
6151 |
msgid "\"%s\" is an invalid field type for this association."
|
6152 |
msgstr "\"%s\" är en ogiltig fälttyp för denna association."
|
6153 |
|
6154 |
-
#: includes/fields/class-form-field.php:
|
6155 |
msgctxt "form-fields-api"
|
6156 |
msgid "Invalid field ID"
|
6157 |
msgstr "Ogiltigt fält-ID"
|
6158 |
|
6159 |
-
#: includes/fields/class-form-field.php:
|
6160 |
msgctxt "form-fields-api"
|
6161 |
msgid "An error occurred while trying to delete this field."
|
6162 |
msgstr "Ett fel uppstod när försök gjordes att radera detta fält."
|
@@ -6186,6 +6222,12 @@ msgctxt "form-fields-api"
|
|
6186 |
msgid "Date Validator"
|
6187 |
msgstr "Datumvalidator"
|
6188 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6189 |
#: includes/fields/class-fieldtypes-image.php:121
|
6190 |
msgctxt "form fields"
|
6191 |
msgid "Field unavailable at the moment."
|
@@ -6239,54 +6281,65 @@ msgstr ""
|
|
6239 |
"inställningen om du inte bokför listor själv och har ensam kontroll över "
|
6240 |
"innehållet. Är du säker på att du vill möjliggöra detta?"
|
6241 |
|
6242 |
-
#: includes/form-fields.php:
|
6243 |
msgctxt "form-fields-api validation"
|
6244 |
msgid "Field"
|
6245 |
msgstr "Fält"
|
6246 |
|
6247 |
-
#: includes/form-fields.php:
|
6248 |
msgctxt "form-fields-api validation"
|
6249 |
msgid "%s is required."
|
6250 |
msgstr "%s är obligatorisk."
|
6251 |
|
6252 |
-
#: includes/form-fields.php:
|
6253 |
msgctxt "form-fields-api validation"
|
6254 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
6255 |
msgstr ""
|
6256 |
"%s är felaktigt formaterat. Giltigt URL-format som krävs. Inkludera http://"
|
6257 |
|
6258 |
-
#: includes/form-fields.php:
|
6259 |
msgctxt "form-fields-api validation"
|
6260 |
msgid "%s is badly formatted. Valid Email format required."
|
6261 |
msgstr "%s är dåligt formaterat. Giltig e-postformat krävs."
|
6262 |
|
6263 |
-
#: includes/form-fields.php:
|
6264 |
msgctxt "form-fields-api validation"
|
6265 |
msgid "%s must be a number. Decimal values are not allowed."
|
6266 |
msgstr "%s måste vara ett nummer. Decimaler är ej tillåtna."
|
6267 |
|
6268 |
-
#: includes/form-fields.php:
|
6269 |
msgctxt "form-fields-api validation"
|
6270 |
msgid "%s must be a number."
|
6271 |
msgstr "%s måste vara ett tal."
|
6272 |
|
6273 |
-
#: includes/form-fields.php:
|
6274 |
#, fuzzy
|
6275 |
msgctxt "form-fields-api validation"
|
6276 |
msgid "%1$s must be in the format %2$s."
|
6277 |
msgstr "%s måste vara i formatet %s."
|
6278 |
|
6279 |
-
#: includes/form-fields.php:
|
6280 |
msgctxt "form-fields-api validation"
|
6281 |
msgid "%s must be a valid date."
|
6282 |
msgstr "%s måste vara ett giltigt datum."
|
6283 |
|
6284 |
-
#: includes/form-fields.php:
|
|
|
|
|
|
|
|
|
|
|
6285 |
#, fuzzy
|
6286 |
msgctxt "form-fields-api validation"
|
6287 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
6288 |
msgstr "%s är ogiltig. Värdet måste vara en av %s."
|
6289 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6290 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
6291 |
msgctxt "authorize-net"
|
6292 |
msgid "Authorize.net"
|
@@ -7047,17 +7100,17 @@ msgctxt "templates"
|
|
7047 |
msgid "View not available."
|
7048 |
msgstr "Vy ej tillgänglig."
|
7049 |
|
7050 |
-
#: includes/views/submit_listing.php:
|
7051 |
msgctxt "templates"
|
7052 |
msgid "Please agree to the Terms and Conditions."
|
7053 |
msgstr "Vänligen godkänn villkoren"
|
7054 |
|
7055 |
-
#: includes/views/submit_listing.php:
|
7056 |
msgctxt "templates"
|
7057 |
msgid "Terms and Conditions:"
|
7058 |
msgstr "Villkor"
|
7059 |
|
7060 |
-
#: includes/views/submit_listing.php:
|
7061 |
msgctxt "templates"
|
7062 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7063 |
msgstr "Jag godtar <a>villkoren</a>."
|
@@ -7722,7 +7775,7 @@ msgid "This is just a preview. The listing has not been published yet."
|
|
7722 |
msgstr ""
|
7723 |
"Detta är enbart en förhandsgranskning, annonsen har inte publicerats ännu."
|
7724 |
|
7725 |
-
#: includes/views/submit_listing.php:
|
7726 |
msgctxt "listing submit"
|
7727 |
msgid ""
|
7728 |
"Something went wrong. Please check the form for errors, correct them and "
|
@@ -7731,7 +7784,7 @@ msgstr ""
|
|
7731 |
"Något gick fel. Vänligen kontrollera formuläret för fel, rätta till dem och "
|
7732 |
"skicka igen."
|
7733 |
|
7734 |
-
#: includes/views/submit_listing.php:
|
7735 |
msgctxt "listing submit"
|
7736 |
msgid ""
|
7737 |
"Image upload is required, please provide at least one image and submit again."
|
@@ -7973,113 +8026,124 @@ msgctxt "admin sidebar"
|
|
7973 |
msgid "Elegant Business Theme"
|
7974 |
msgstr "Tema Elegant Busniess"
|
7975 |
|
7976 |
-
#: templates/admin/sidebar.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7977 |
msgctxt "admin sidebar"
|
7978 |
msgid "Like this plugin?"
|
7979 |
msgstr "Gillar du detta plugin?"
|
7980 |
|
7981 |
-
#: templates/admin/sidebar.tpl.php:
|
7982 |
msgctxt "admin sidebar"
|
7983 |
msgid "Why not do any or all of the following:"
|
7984 |
msgstr "Varför inte göra något eller allt av följande:"
|
7985 |
|
7986 |
-
#: templates/admin/sidebar.tpl.php:
|
7987 |
msgctxt "admin sidebar"
|
7988 |
msgid "Give it a good rating on WordPress.org."
|
7989 |
msgstr "Ge det ett bra betyg på WordPress.org."
|
7990 |
|
7991 |
-
#: templates/admin/sidebar.tpl.php:
|
7992 |
msgctxt "admin sidebar"
|
7993 |
msgid "Let other people know that it works with your WordPress setup."
|
7994 |
msgstr ""
|
7995 |
"Låt andra människor veta att det fungerar med din WordPress installation."
|
7996 |
|
7997 |
-
#: templates/admin/sidebar.tpl.php:
|
7998 |
msgctxt "admin sidebar"
|
7999 |
msgid "Buy a Premium Module"
|
8000 |
msgstr "Köp en premiummodul"
|
8001 |
|
8002 |
-
#: templates/admin/sidebar.tpl.php:
|
8003 |
msgctxt "admin sidebar"
|
8004 |
msgid "Get a Premium Module"
|
8005 |
msgstr "Skaffa en premiummodul"
|
8006 |
|
8007 |
-
#: templates/admin/sidebar.tpl.php:
|
8008 |
msgctxt "admin sidebar"
|
8009 |
msgid "best deal"
|
8010 |
msgstr "Bästa erbjudande"
|
8011 |
|
8012 |
-
#: templates/admin/sidebar.tpl.php:
|
8013 |
msgctxt "admin sidebar"
|
8014 |
msgid "Combo Pack"
|
8015 |
msgstr "Combo Pack"
|
8016 |
|
8017 |
-
#: templates/admin/sidebar.tpl.php:
|
8018 |
msgctxt "admin sidebar"
|
8019 |
msgid "(All Modules)"
|
8020 |
msgstr "(Alla moduler)"
|
8021 |
|
8022 |
-
#: templates/admin/sidebar.tpl.php:
|
8023 |
msgctxt "admin sidebar"
|
8024 |
msgid "new"
|
8025 |
msgstr "ny"
|
8026 |
|
8027 |
-
#: templates/admin/sidebar.tpl.php:
|
8028 |
msgctxt "admin sidebar"
|
8029 |
msgid "Get a Directory Theme"
|
8030 |
msgstr "Skaffa ett Directory Theme"
|
8031 |
|
8032 |
-
#: templates/admin/sidebar.tpl.php:
|
8033 |
msgctxt "admin sidebar"
|
8034 |
msgid "Theme Pack"
|
8035 |
msgstr "Theme Pack"
|
8036 |
|
8037 |
-
#: templates/admin/sidebar.tpl.php:
|
8038 |
msgctxt "admin sidebar"
|
8039 |
msgid "(All Themes)"
|
8040 |
msgstr "(Alla teman)"
|
8041 |
|
8042 |
-
#: templates/admin/sidebar.tpl.php:
|
8043 |
msgctxt "admin sidebar"
|
8044 |
msgid "Found a bug? Need support?"
|
8045 |
msgstr "Hittat ett programfel? Behöver du hjälp?"
|
8046 |
|
8047 |
-
#: templates/admin/sidebar.tpl.php:
|
8048 |
msgctxt "admin sidebar"
|
8049 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
8050 |
msgstr "Om du har hittat en bugg eller behöver stöd <a>besök forumet!</a>"
|
8051 |
|
8052 |
-
#: templates/admin/sidebar.tpl.php:
|
8053 |
msgctxt "admin sidebar"
|
8054 |
msgid "Full plugin documentation"
|
8055 |
msgstr "Fullständig dokumentation för pluginet"
|
8056 |
|
8057 |
-
#: templates/admin/sidebar.tpl.php:
|
8058 |
msgctxt "admin sidebar"
|
8059 |
msgid "Quick Start Guide"
|
8060 |
msgstr "Snabbstartsguide"
|
8061 |
|
8062 |
-
#: templates/admin/sidebar.tpl.php:
|
8063 |
msgctxt "admin sidebar"
|
8064 |
msgid "Video Tutorials"
|
8065 |
msgstr "Handledningar (video)"
|
8066 |
|
8067 |
-
#: templates/admin/sidebar.tpl.php:
|
8068 |
msgctxt "admin sidebar"
|
8069 |
msgid "Installed Modules"
|
8070 |
msgstr "Installerade moduler"
|
8071 |
|
8072 |
-
#: templates/admin/sidebar.tpl.php:
|
8073 |
msgctxt "admin sidebar"
|
8074 |
msgid "Installed"
|
8075 |
msgstr "Installerat"
|
8076 |
|
8077 |
-
#: templates/admin/sidebar.tpl.php:
|
8078 |
msgctxt "admin sidebar"
|
8079 |
msgid "Not Installed"
|
8080 |
msgstr "Ej installerad"
|
8081 |
|
8082 |
-
#: templates/admin/sidebar.tpl.php:
|
8083 |
msgctxt "admin sidebar"
|
8084 |
msgid "Enhanced Categories Module"
|
8085 |
msgstr "Modul för förbättrade kategorier"
|
5 |
"Project-Id-Version: Business Directory Plugin 4.0.8\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2018-06-27 21:14:25+00:00\n"
|
9 |
"PO-Revision-Date: 2017-12-03 21:20+0100\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
2611 |
msgid "Field list of options is required."
|
2612 |
msgstr "Lista på alternativ krävs."
|
2613 |
|
2614 |
+
#: includes/fields/class-fieldtypes-image.php:55
|
2615 |
#, fuzzy
|
2616 |
msgctxt "form-fields admin"
|
2617 |
msgid "Display caption?"
|
2618 |
msgstr "Fältvisningsalternativ"
|
2619 |
|
2620 |
+
#: includes/fields/class-fieldtypes-image.php:58
|
2621 |
#, fuzzy
|
2622 |
msgctxt "form-fields admin"
|
2623 |
msgid "Field Caption required?"
|
2739 |
msgid "Use rel=\"nofollow\" when displaying the link?"
|
2740 |
msgstr "Använd rel = \"nofollow\" vid visning av länken?"
|
2741 |
|
2742 |
+
#: templates/admin/form-fields-addoredit.tpl.php:8
|
2743 |
msgctxt "form-fields admin"
|
2744 |
msgid "Add Form Field"
|
2745 |
msgstr "Lägg till formulärfält"
|
2746 |
|
2747 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
2748 |
msgctxt "form-fields admin"
|
2749 |
msgid "Field Association"
|
2750 |
msgstr "Fält / Association"
|
2751 |
|
2752 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
2753 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
2754 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
2755 |
msgctxt "form-fields admin"
|
2756 |
msgid "required"
|
2757 |
msgstr "obligatoriskt"
|
2758 |
|
2759 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
2760 |
msgctxt "form-fields admin"
|
2761 |
msgid "Field Type"
|
2762 |
msgstr "Fälttyp"
|
2763 |
|
2764 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
2765 |
msgctxt "form-fields admin"
|
2766 |
msgid "Field Label"
|
2767 |
msgstr "Fältetikett"
|
2768 |
|
2769 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
2770 |
msgctxt "form-fields admin"
|
2771 |
msgid "Field description"
|
2772 |
msgstr "Fältbeskrivning"
|
2773 |
|
2774 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
2775 |
msgctxt "form-fields admin"
|
2776 |
msgid "optional"
|
2777 |
msgstr "valfritt"
|
2778 |
|
2779 |
+
#: templates/admin/form-fields-addoredit.tpl.php:97
|
2780 |
msgctxt "form-fields admin"
|
2781 |
msgid "Field-specific settings"
|
2782 |
msgstr "Fältspecifika inställningar"
|
2783 |
|
2784 |
+
#: templates/admin/form-fields-addoredit.tpl.php:106
|
2785 |
msgctxt "form-fields admin"
|
2786 |
msgid "Field validation options"
|
2787 |
msgstr "Val för fältvalidering"
|
2788 |
|
2789 |
+
#: templates/admin/form-fields-addoredit.tpl.php:110
|
2790 |
msgctxt "form-fields admin"
|
2791 |
msgid "Field Validator"
|
2792 |
msgstr "Fältvaliderare"
|
2793 |
|
2794 |
+
#: templates/admin/form-fields-addoredit.tpl.php:114
|
2795 |
msgctxt "form-fields admin"
|
2796 |
msgid "No validation"
|
2797 |
msgstr "Ingen validering"
|
2798 |
|
2799 |
+
#: templates/admin/form-fields-addoredit.tpl.php:126
|
2800 |
+
#, fuzzy
|
2801 |
+
msgctxt "form-fields admin"
|
2802 |
+
msgid "Number of words"
|
2803 |
+
msgstr "Antal bilder:"
|
2804 |
+
|
2805 |
+
#: templates/admin/form-fields-addoredit.tpl.php:136
|
2806 |
msgctxt "form-fields admin"
|
2807 |
msgid "Is field required?"
|
2808 |
msgstr "Är detta fält obligatoriskt?"
|
2809 |
|
2810 |
+
#: templates/admin/form-fields-addoredit.tpl.php:142
|
2811 |
msgctxt "form-fields admin"
|
2812 |
msgid "This field is required."
|
2813 |
msgstr "Detta fält är obligatoriskt."
|
2814 |
|
2815 |
+
#: templates/admin/form-fields-addoredit.tpl.php:150
|
2816 |
msgctxt "form-fields admin"
|
2817 |
msgid "Field display options"
|
2818 |
msgstr "Fältvisningsalternativ"
|
2819 |
|
2820 |
+
#: templates/admin/form-fields-addoredit.tpl.php:154
|
2821 |
+
#, fuzzy
|
2822 |
+
msgctxt "form-fields admin"
|
2823 |
+
msgid "Field Category Policy:"
|
2824 |
+
msgstr "Avgiftsplanen är aktiv: "
|
2825 |
+
|
2826 |
+
#: templates/admin/form-fields-addoredit.tpl.php:159
|
2827 |
+
#, fuzzy
|
2828 |
+
msgctxt "form-fields admin"
|
2829 |
+
msgid "Field applies to all categories"
|
2830 |
+
msgstr "Planen gäller för alla kategorier"
|
2831 |
+
|
2832 |
+
#: templates/admin/form-fields-addoredit.tpl.php:160
|
2833 |
+
#, fuzzy
|
2834 |
+
msgctxt "form-fields admin"
|
2835 |
+
msgid "Field applies to only certain categories"
|
2836 |
+
msgstr "Avgiftsplanen gäller endast vissa kategorier"
|
2837 |
+
|
2838 |
+
#: templates/admin/form-fields-addoredit.tpl.php:164
|
2839 |
+
#, fuzzy
|
2840 |
+
msgctxt "form-fields admin"
|
2841 |
+
msgid "Limit field to the following categories:"
|
2842 |
+
msgstr "Begränsa planen för följande kategorier:"
|
2843 |
+
|
2844 |
+
#: templates/admin/form-fields-addoredit.tpl.php:188
|
2845 |
+
#, fuzzy
|
2846 |
+
msgctxt "form-fields admin"
|
2847 |
+
msgid "Click to add categories to the selection."
|
2848 |
+
msgstr "Klicka för att lägga till kategorier."
|
2849 |
+
|
2850 |
+
#: templates/admin/form-fields-addoredit.tpl.php:201
|
2851 |
msgctxt "form-fields admin"
|
2852 |
msgid "Show this field to admin users only?"
|
2853 |
msgstr ""
|
2854 |
|
2855 |
+
#: templates/admin/form-fields-addoredit.tpl.php:207
|
2856 |
#, fuzzy
|
2857 |
msgctxt "form-fields admin"
|
2858 |
msgid "Display this field to admin users only in the edit listing view."
|
2859 |
msgstr "Visa detta värdet i annonsläget."
|
2860 |
|
2861 |
+
#: templates/admin/form-fields-addoredit.tpl.php:213
|
2862 |
msgctxt "form-fields admin"
|
2863 |
msgid "Show this value in excerpt view?"
|
2864 |
msgstr "Visa detta värdet i utdrag?"
|
2865 |
|
2866 |
+
#: templates/admin/form-fields-addoredit.tpl.php:219
|
2867 |
msgctxt "form-fields admin"
|
2868 |
msgid "Display this value in post excerpt view."
|
2869 |
msgstr "Visa detta värdet i inläggsutdrag."
|
2870 |
|
2871 |
+
#: templates/admin/form-fields-addoredit.tpl.php:225
|
2872 |
msgctxt "form-fields admin"
|
2873 |
msgid "Show this value in listing view?"
|
2874 |
msgstr "Visa detta värdet i annonsläge?"
|
2875 |
|
2876 |
+
#: templates/admin/form-fields-addoredit.tpl.php:231
|
2877 |
msgctxt "form-fields admin"
|
2878 |
msgid "Display this value in the listing view."
|
2879 |
msgstr "Visa detta värdet i annonsläget."
|
2880 |
|
2881 |
+
#: templates/admin/form-fields-addoredit.tpl.php:237
|
2882 |
msgctxt "form-fields admin"
|
2883 |
msgid "Include this field in the search form?"
|
2884 |
msgstr "Inkludera detta fält i sökfunktionen?"
|
2885 |
|
2886 |
+
#: templates/admin/form-fields-addoredit.tpl.php:243
|
2887 |
msgctxt "form-fields admin"
|
2888 |
msgid "Include this field in the search form."
|
2889 |
msgstr "Inkludera detta fält i sökfunktionen."
|
2890 |
|
2891 |
+
#: templates/admin/form-fields-addoredit.tpl.php:249
|
2892 |
msgctxt "form-fields admin"
|
2893 |
msgid "Is this field required for searching?"
|
2894 |
msgstr "Är detta fält obligatoriskt vid sökning?"
|
2895 |
|
2896 |
+
#: templates/admin/form-fields-addoredit.tpl.php:255
|
2897 |
msgctxt "form-fields admin"
|
2898 |
msgid ""
|
2899 |
"Make this fields required during searches on the Advanced Search screen."
|
2900 |
msgstr "Gör detta fält obligatoriskt vid sökningar i avancerat sök."
|
2901 |
|
2902 |
+
#: templates/admin/form-fields-addoredit.tpl.php:261
|
2903 |
msgctxt "form-fields admin"
|
2904 |
msgid "Hide this field's label?"
|
2905 |
msgstr "Dölj detta fälts etikett?"
|
2906 |
|
2907 |
+
#: templates/admin/form-fields-addoredit.tpl.php:267
|
2908 |
msgctxt "form-fields admin"
|
2909 |
msgid "Hide this field's label when displaying it."
|
2910 |
msgstr "Dölj detta fälts etikett när det visas."
|
2911 |
|
2912 |
+
#: templates/admin/form-fields-addoredit.tpl.php:274
|
2913 |
msgctxt "form-fields admin"
|
2914 |
msgid "Update Field"
|
2915 |
msgstr "Uppdatera fält"
|
2916 |
|
2917 |
+
#: templates/admin/form-fields-addoredit.tpl.php:276
|
2918 |
msgctxt "form-fields admin"
|
2919 |
msgid "Add Field"
|
2920 |
msgstr "Lägg till fält"
|
5859 |
msgid "Please choose a valid fee plan for your category selection."
|
5860 |
msgstr "Välj en avgiftsplan för ditt kategorival."
|
5861 |
|
5862 |
+
#: includes/views/submit_listing.php:743
|
5863 |
msgctxt "submit listing"
|
5864 |
msgid "Please enter your desired username."
|
5865 |
msgstr "Fyll i ditt önskade användarnamn."
|
5866 |
|
5867 |
+
#: includes/views/submit_listing.php:748
|
5868 |
msgctxt "submit listing"
|
5869 |
msgid "Please enter the e-mail for your new account."
|
5870 |
msgstr "Fyll i e-postadressen för ditt nya konto."
|
5871 |
|
5872 |
+
#: includes/views/submit_listing.php:753
|
5873 |
msgctxt "submit listing"
|
5874 |
msgid "Please enter the password for your new account."
|
5875 |
msgstr "Ange lösenordet för ditt nya konto."
|
5876 |
|
5877 |
+
#: includes/views/submit_listing.php:763
|
5878 |
msgctxt "submit listing"
|
5879 |
msgid "The username you chose is already in use. Please use a different one."
|
5880 |
msgstr "Användarnamnet upptaget, var vänlig försök med ett annat."
|
5881 |
|
5882 |
+
#: includes/views/submit_listing.php:768
|
5883 |
msgctxt "submit listing"
|
5884 |
msgid "The e-mail address you chose for your account is already in use."
|
5885 |
msgstr "E-postadressen du valt för ditt konto används redan."
|
5886 |
|
5887 |
+
#: includes/views/submit_listing.php:783
|
5888 |
msgctxt "submit listing"
|
5889 |
msgid "Create a user account on this site"
|
5890 |
msgstr "Skapa ett användarkonto på denna webbplats"
|
5891 |
|
5892 |
+
#: includes/views/submit_listing.php:790
|
5893 |
msgctxt "submit listing"
|
5894 |
msgid ""
|
5895 |
"You need to create an account on the site. Please fill out the form below."
|
5897 |
"Du måste skapa ett konto för denna webbplatsen. Vänligen fyll i formuläret "
|
5898 |
"nedan."
|
5899 |
|
5900 |
+
#: includes/views/submit_listing.php:796
|
5901 |
msgctxt "submit listing"
|
5902 |
msgid "Username:"
|
5903 |
msgstr "Användarnamn:"
|
5904 |
|
5905 |
+
#: includes/views/submit_listing.php:805
|
5906 |
msgctxt "submit listing"
|
5907 |
msgid "Email:"
|
5908 |
msgstr "E-postadress:"
|
5909 |
|
5910 |
+
#: includes/views/submit_listing.php:814
|
5911 |
msgctxt "submit listing"
|
5912 |
msgid "Password:"
|
5913 |
msgstr "Lösenord:"
|
5937 |
msgid "Save Changes"
|
5938 |
msgstr "Spara ändringar"
|
5939 |
|
5940 |
+
#: includes/class-recaptcha.php:109 includes/class-recaptcha.php:150
|
5941 |
msgctxt "recaptcha"
|
5942 |
msgid "The reCAPTCHA wasn't entered correctly."
|
5943 |
msgstr "reCAPTCHA angavs inte korrekt"
|
5944 |
|
5945 |
+
#: includes/class-recaptcha.php:211
|
5946 |
msgctxt "recaptcha"
|
5947 |
msgid "reCAPTCHA"
|
5948 |
msgstr "reCAPTCHA"
|
6047 |
msgid "Textarea"
|
6048 |
msgstr "Textruta"
|
6049 |
|
6050 |
+
#: includes/fields/class-fieldtypes-textfield.php:13
|
6051 |
msgctxt "form-fields api"
|
6052 |
msgid "Textfield"
|
6053 |
msgstr "Textfält"
|
6054 |
|
6055 |
+
#: includes/fields/class-fieldtypes-textfield.php:50
|
6056 |
msgctxt "form-fields api"
|
6057 |
msgid "Format 01/31/1969"
|
6058 |
msgstr "Format 01/31/1969"
|
6077 |
msgid "Link Text (optional):"
|
6078 |
msgstr "Länktext (valfritt):"
|
6079 |
|
6080 |
+
#: includes/fields/class-form-field.php:707
|
6081 |
msgctxt "form-fields api"
|
6082 |
msgid ""
|
6083 |
"This form field can't be deleted because it is required for the plugin to "
|
6137 |
msgid "%s must be a valid date."
|
6138 |
msgstr "%s måste vara ett giltigt datum."
|
6139 |
|
6140 |
+
#: includes/fields/class-fieldtypes-image.php:41
|
6141 |
#, fuzzy
|
6142 |
msgctxt "date field"
|
6143 |
msgid "Caption for %s is required."
|
6148 |
msgid "Remove"
|
6149 |
msgstr "Ta bort"
|
6150 |
|
6151 |
+
#: includes/fields/class-form-field.php:66
|
6152 |
msgctxt "form-fields-api"
|
6153 |
msgid "Invalid form field type"
|
6154 |
msgstr "Ogiltig formulärfält typ"
|
6155 |
|
6156 |
+
#: includes/fields/class-form-field.php:585
|
6157 |
msgctxt "form-fields-api"
|
6158 |
msgid "Field label is required."
|
6159 |
msgstr "Fältetikett krävs"
|
6160 |
|
6161 |
+
#: includes/fields/class-form-field.php:596
|
6162 |
msgctxt "form-fields-api"
|
6163 |
msgid ""
|
6164 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
6166 |
"delete this current field and create a NEW field of type %1$s instead."
|
6167 |
msgstr ""
|
6168 |
|
6169 |
+
#: includes/fields/class-form-field.php:599
|
6170 |
msgctxt "form-fields-api"
|
6171 |
msgid ""
|
6172 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
6173 |
"existing listings will be deleted as well."
|
6174 |
msgstr ""
|
6175 |
|
6176 |
+
#: includes/fields/class-form-field.php:633
|
6177 |
msgctxt "form-fields-api"
|
6178 |
msgid ""
|
6179 |
"There can only be one field with association \"%s\". Please select another "
|
6182 |
"Det kan bara finnas ett fält med associationen \"%s\". Välj en annan "
|
6183 |
"association."
|
6184 |
|
6185 |
+
#: includes/fields/class-form-field.php:643
|
6186 |
msgctxt "form-fields-api"
|
6187 |
msgid "\"%s\" is an invalid field type for this association."
|
6188 |
msgstr "\"%s\" är en ogiltig fälttyp för denna association."
|
6189 |
|
6190 |
+
#: includes/fields/class-form-field.php:697
|
6191 |
msgctxt "form-fields-api"
|
6192 |
msgid "Invalid field ID"
|
6193 |
msgstr "Ogiltigt fält-ID"
|
6194 |
|
6195 |
+
#: includes/fields/class-form-field.php:720
|
6196 |
msgctxt "form-fields-api"
|
6197 |
msgid "An error occurred while trying to delete this field."
|
6198 |
msgstr "Ett fel uppstod när försök gjordes att radera detta fält."
|
6222 |
msgid "Date Validator"
|
6223 |
msgstr "Datumvalidator"
|
6224 |
|
6225 |
+
#: includes/form-fields.php:574
|
6226 |
+
#, fuzzy
|
6227 |
+
msgctxt "form-fields-api"
|
6228 |
+
msgid "Word Count Validator"
|
6229 |
+
msgstr "Heltal Validator"
|
6230 |
+
|
6231 |
#: includes/fields/class-fieldtypes-image.php:121
|
6232 |
msgctxt "form fields"
|
6233 |
msgid "Field unavailable at the moment."
|
6281 |
"inställningen om du inte bokför listor själv och har ensam kontroll över "
|
6282 |
"innehållet. Är du säker på att du vill möjliggöra detta?"
|
6283 |
|
6284 |
+
#: includes/form-fields.php:581
|
6285 |
msgctxt "form-fields-api validation"
|
6286 |
msgid "Field"
|
6287 |
msgstr "Fält"
|
6288 |
|
6289 |
+
#: includes/form-fields.php:602 includes/form-fields.php:607
|
6290 |
msgctxt "form-fields-api validation"
|
6291 |
msgid "%s is required."
|
6292 |
msgstr "%s är obligatorisk."
|
6293 |
|
6294 |
+
#: includes/form-fields.php:619 includes/form-fields.php:626
|
6295 |
msgctxt "form-fields-api validation"
|
6296 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
6297 |
msgstr ""
|
6298 |
"%s är felaktigt formaterat. Giltigt URL-format som krävs. Inkludera http://"
|
6299 |
|
6300 |
+
#: includes/form-fields.php:641
|
6301 |
msgctxt "form-fields-api validation"
|
6302 |
msgid "%s is badly formatted. Valid Email format required."
|
6303 |
msgstr "%s är dåligt formaterat. Giltig e-postformat krävs."
|
6304 |
|
6305 |
+
#: includes/form-fields.php:648
|
6306 |
msgctxt "form-fields-api validation"
|
6307 |
msgid "%s must be a number. Decimal values are not allowed."
|
6308 |
msgstr "%s måste vara ett nummer. Decimaler är ej tillåtna."
|
6309 |
|
6310 |
+
#: includes/form-fields.php:655
|
6311 |
msgctxt "form-fields-api validation"
|
6312 |
msgid "%s must be a number."
|
6313 |
msgstr "%s måste vara ett tal."
|
6314 |
|
6315 |
+
#: includes/form-fields.php:674
|
6316 |
#, fuzzy
|
6317 |
msgctxt "form-fields-api validation"
|
6318 |
msgid "%1$s must be in the format %2$s."
|
6319 |
msgstr "%s måste vara i formatet %s."
|
6320 |
|
6321 |
+
#: includes/form-fields.php:712
|
6322 |
msgctxt "form-fields-api validation"
|
6323 |
msgid "%s must be a valid date."
|
6324 |
msgstr "%s måste vara ett giltigt datum."
|
6325 |
|
6326 |
+
#: includes/form-fields.php:735
|
6327 |
+
msgctxt "form-fields-api validation"
|
6328 |
+
msgid "%s must have less than %d words."
|
6329 |
+
msgstr ""
|
6330 |
+
|
6331 |
+
#: includes/form-fields.php:754
|
6332 |
#, fuzzy
|
6333 |
msgctxt "form-fields-api validation"
|
6334 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
6335 |
msgstr "%s är ogiltig. Värdet måste vara en av %s."
|
6336 |
|
6337 |
+
#: includes/form-fields.php:719
|
6338 |
+
#, fuzzy
|
6339 |
+
msgctxt "image field"
|
6340 |
+
msgid "Caption for %s is required."
|
6341 |
+
msgstr "Land krävs."
|
6342 |
+
|
6343 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
6344 |
msgctxt "authorize-net"
|
6345 |
msgid "Authorize.net"
|
7100 |
msgid "View not available."
|
7101 |
msgstr "Vy ej tillgänglig."
|
7102 |
|
7103 |
+
#: includes/views/submit_listing.php:852
|
7104 |
msgctxt "templates"
|
7105 |
msgid "Please agree to the Terms and Conditions."
|
7106 |
msgstr "Vänligen godkänn villkoren"
|
7107 |
|
7108 |
+
#: includes/views/submit_listing.php:860
|
7109 |
msgctxt "templates"
|
7110 |
msgid "Terms and Conditions:"
|
7111 |
msgstr "Villkor"
|
7112 |
|
7113 |
+
#: includes/views/submit_listing.php:869
|
7114 |
msgctxt "templates"
|
7115 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
7116 |
msgstr "Jag godtar <a>villkoren</a>."
|
7775 |
msgstr ""
|
7776 |
"Detta är enbart en förhandsgranskning, annonsen har inte publicerats ännu."
|
7777 |
|
7778 |
+
#: includes/views/submit_listing.php:613
|
7779 |
msgctxt "listing submit"
|
7780 |
msgid ""
|
7781 |
"Something went wrong. Please check the form for errors, correct them and "
|
7784 |
"Något gick fel. Vänligen kontrollera formuläret för fel, rätta till dem och "
|
7785 |
"skicka igen."
|
7786 |
|
7787 |
+
#: includes/views/submit_listing.php:695
|
7788 |
msgctxt "listing submit"
|
7789 |
msgid ""
|
7790 |
"Image upload is required, please provide at least one image and submit again."
|
8026 |
msgid "Elegant Business Theme"
|
8027 |
msgstr "Tema Elegant Busniess"
|
8028 |
|
8029 |
+
#: templates/admin/sidebar.tpl.php:23
|
8030 |
+
#, fuzzy
|
8031 |
+
msgctxt "admin sidebar"
|
8032 |
+
msgid "Modern Business Theme"
|
8033 |
+
msgstr "Tema Elegant Busniess"
|
8034 |
+
|
8035 |
+
#: templates/admin/sidebar.tpl.php:24
|
8036 |
+
msgctxt "admin sidebar"
|
8037 |
+
msgid "Modern Filtered Theme"
|
8038 |
+
msgstr ""
|
8039 |
+
|
8040 |
+
#: templates/admin/sidebar.tpl.php:31
|
8041 |
msgctxt "admin sidebar"
|
8042 |
msgid "Like this plugin?"
|
8043 |
msgstr "Gillar du detta plugin?"
|
8044 |
|
8045 |
+
#: templates/admin/sidebar.tpl.php:33
|
8046 |
msgctxt "admin sidebar"
|
8047 |
msgid "Why not do any or all of the following:"
|
8048 |
msgstr "Varför inte göra något eller allt av följande:"
|
8049 |
|
8050 |
+
#: templates/admin/sidebar.tpl.php:35
|
8051 |
msgctxt "admin sidebar"
|
8052 |
msgid "Give it a good rating on WordPress.org."
|
8053 |
msgstr "Ge det ett bra betyg på WordPress.org."
|
8054 |
|
8055 |
+
#: templates/admin/sidebar.tpl.php:36
|
8056 |
msgctxt "admin sidebar"
|
8057 |
msgid "Let other people know that it works with your WordPress setup."
|
8058 |
msgstr ""
|
8059 |
"Låt andra människor veta att det fungerar med din WordPress installation."
|
8060 |
|
8061 |
+
#: templates/admin/sidebar.tpl.php:37
|
8062 |
msgctxt "admin sidebar"
|
8063 |
msgid "Buy a Premium Module"
|
8064 |
msgstr "Köp en premiummodul"
|
8065 |
|
8066 |
+
#: templates/admin/sidebar.tpl.php:44
|
8067 |
msgctxt "admin sidebar"
|
8068 |
msgid "Get a Premium Module"
|
8069 |
msgstr "Skaffa en premiummodul"
|
8070 |
|
8071 |
+
#: templates/admin/sidebar.tpl.php:47 templates/admin/sidebar.tpl.php:63
|
8072 |
msgctxt "admin sidebar"
|
8073 |
msgid "best deal"
|
8074 |
msgstr "Bästa erbjudande"
|
8075 |
|
8076 |
+
#: templates/admin/sidebar.tpl.php:47
|
8077 |
msgctxt "admin sidebar"
|
8078 |
msgid "Combo Pack"
|
8079 |
msgstr "Combo Pack"
|
8080 |
|
8081 |
+
#: templates/admin/sidebar.tpl.php:47
|
8082 |
msgctxt "admin sidebar"
|
8083 |
msgid "(All Modules)"
|
8084 |
msgstr "(Alla moduler)"
|
8085 |
|
8086 |
+
#: templates/admin/sidebar.tpl.php:50 templates/admin/sidebar.tpl.php:66
|
8087 |
msgctxt "admin sidebar"
|
8088 |
msgid "new"
|
8089 |
msgstr "ny"
|
8090 |
|
8091 |
+
#: templates/admin/sidebar.tpl.php:60
|
8092 |
msgctxt "admin sidebar"
|
8093 |
msgid "Get a Directory Theme"
|
8094 |
msgstr "Skaffa ett Directory Theme"
|
8095 |
|
8096 |
+
#: templates/admin/sidebar.tpl.php:63
|
8097 |
msgctxt "admin sidebar"
|
8098 |
msgid "Theme Pack"
|
8099 |
msgstr "Theme Pack"
|
8100 |
|
8101 |
+
#: templates/admin/sidebar.tpl.php:63
|
8102 |
msgctxt "admin sidebar"
|
8103 |
msgid "(All Themes)"
|
8104 |
msgstr "(Alla teman)"
|
8105 |
|
8106 |
+
#: templates/admin/sidebar.tpl.php:76
|
8107 |
msgctxt "admin sidebar"
|
8108 |
msgid "Found a bug? Need support?"
|
8109 |
msgstr "Hittat ett programfel? Behöver du hjälp?"
|
8110 |
|
8111 |
+
#: templates/admin/sidebar.tpl.php:81
|
8112 |
msgctxt "admin sidebar"
|
8113 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
8114 |
msgstr "Om du har hittat en bugg eller behöver stöd <a>besök forumet!</a>"
|
8115 |
|
8116 |
+
#: templates/admin/sidebar.tpl.php:84
|
8117 |
msgctxt "admin sidebar"
|
8118 |
msgid "Full plugin documentation"
|
8119 |
msgstr "Fullständig dokumentation för pluginet"
|
8120 |
|
8121 |
+
#: templates/admin/sidebar.tpl.php:85
|
8122 |
msgctxt "admin sidebar"
|
8123 |
msgid "Quick Start Guide"
|
8124 |
msgstr "Snabbstartsguide"
|
8125 |
|
8126 |
+
#: templates/admin/sidebar.tpl.php:86
|
8127 |
msgctxt "admin sidebar"
|
8128 |
msgid "Video Tutorials"
|
8129 |
msgstr "Handledningar (video)"
|
8130 |
|
8131 |
+
#: templates/admin/sidebar.tpl.php:94
|
8132 |
msgctxt "admin sidebar"
|
8133 |
msgid "Installed Modules"
|
8134 |
msgstr "Installerade moduler"
|
8135 |
|
8136 |
+
#: templates/admin/sidebar.tpl.php:105 templates/admin/sidebar.tpl.php:114
|
8137 |
msgctxt "admin sidebar"
|
8138 |
msgid "Installed"
|
8139 |
msgstr "Installerat"
|
8140 |
|
8141 |
+
#: templates/admin/sidebar.tpl.php:107 templates/admin/sidebar.tpl.php:114
|
8142 |
msgctxt "admin sidebar"
|
8143 |
msgid "Not Installed"
|
8144 |
msgstr "Ej installerad"
|
8145 |
|
8146 |
+
#: templates/admin/sidebar.tpl.php:113
|
8147 |
msgctxt "admin sidebar"
|
8148 |
msgid "Enhanced Categories Module"
|
8149 |
msgstr "Modul för förbättrade kategorier"
|
languages/WPBDM.pot
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
# This file is distributed under the GPLv2 or any later version.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Business Directory Plugin 5.
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/business-directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2018-06-
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -2460,12 +2460,12 @@ msgctxt "form-fields admin"
|
|
2460 |
msgid "Field list of options is required."
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: includes/fields/class-fieldtypes-image.php:
|
2464 |
msgctxt "form-fields admin"
|
2465 |
msgid "Display caption?"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#: includes/fields/class-fieldtypes-image.php:
|
2469 |
msgctxt "form-fields admin"
|
2470 |
msgid "Field Caption required?"
|
2471 |
msgstr ""
|
@@ -2582,144 +2582,174 @@ msgctxt "form-fields admin"
|
|
2582 |
msgid "Use rel=\"nofollow\" when displaying the link?"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2586 |
msgctxt "form-fields admin"
|
2587 |
msgid "Add Form Field"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2591 |
msgctxt "form-fields admin"
|
2592 |
msgid "Field Association"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2596 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2597 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2598 |
msgctxt "form-fields admin"
|
2599 |
msgid "required"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2603 |
msgctxt "form-fields admin"
|
2604 |
msgid "Field Type"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2608 |
msgctxt "form-fields admin"
|
2609 |
msgid "Field Label"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2613 |
msgctxt "form-fields admin"
|
2614 |
msgid "Field description"
|
2615 |
msgstr ""
|
2616 |
|
2617 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2618 |
msgctxt "form-fields admin"
|
2619 |
msgid "optional"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2623 |
msgctxt "form-fields admin"
|
2624 |
msgid "Field-specific settings"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2628 |
msgctxt "form-fields admin"
|
2629 |
msgid "Field validation options"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2633 |
msgctxt "form-fields admin"
|
2634 |
msgid "Field Validator"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2638 |
msgctxt "form-fields admin"
|
2639 |
msgid "No validation"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
2643 |
msgctxt "form-fields admin"
|
2644 |
msgid "Is field required?"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2648 |
msgctxt "form-fields admin"
|
2649 |
msgid "This field is required."
|
2650 |
msgstr ""
|
2651 |
|
2652 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2653 |
msgctxt "form-fields admin"
|
2654 |
msgid "Field display options"
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2658 |
msgctxt "form-fields admin"
|
2659 |
msgid "Show this field to admin users only?"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2663 |
msgctxt "form-fields admin"
|
2664 |
msgid "Display this field to admin users only in the edit listing view."
|
2665 |
msgstr ""
|
2666 |
|
2667 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2668 |
msgctxt "form-fields admin"
|
2669 |
msgid "Show this value in excerpt view?"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2673 |
msgctxt "form-fields admin"
|
2674 |
msgid "Display this value in post excerpt view."
|
2675 |
msgstr ""
|
2676 |
|
2677 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2678 |
msgctxt "form-fields admin"
|
2679 |
msgid "Show this value in listing view?"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2683 |
msgctxt "form-fields admin"
|
2684 |
msgid "Display this value in the listing view."
|
2685 |
msgstr ""
|
2686 |
|
2687 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2688 |
msgctxt "form-fields admin"
|
2689 |
msgid "Include this field in the search form?"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2693 |
msgctxt "form-fields admin"
|
2694 |
msgid "Include this field in the search form."
|
2695 |
msgstr ""
|
2696 |
|
2697 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2698 |
msgctxt "form-fields admin"
|
2699 |
msgid "Is this field required for searching?"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2703 |
msgctxt "form-fields admin"
|
2704 |
msgid "Make this fields required during searches on the Advanced Search screen."
|
2705 |
msgstr ""
|
2706 |
|
2707 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2708 |
msgctxt "form-fields admin"
|
2709 |
msgid "Hide this field's label?"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2713 |
msgctxt "form-fields admin"
|
2714 |
msgid "Hide this field's label when displaying it."
|
2715 |
msgstr ""
|
2716 |
|
2717 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2718 |
msgctxt "form-fields admin"
|
2719 |
msgid "Update Field"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: templates/admin/form-fields-addoredit.tpl.php:
|
2723 |
msgctxt "form-fields admin"
|
2724 |
msgid "Add Field"
|
2725 |
msgstr ""
|
@@ -5479,52 +5509,52 @@ msgctxt "submit listing"
|
|
5479 |
msgid "Please choose a valid fee plan for your category selection."
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: includes/views/submit_listing.php:
|
5483 |
msgctxt "submit listing"
|
5484 |
msgid "Please enter your desired username."
|
5485 |
msgstr ""
|
5486 |
|
5487 |
-
#: includes/views/submit_listing.php:
|
5488 |
msgctxt "submit listing"
|
5489 |
msgid "Please enter the e-mail for your new account."
|
5490 |
msgstr ""
|
5491 |
|
5492 |
-
#: includes/views/submit_listing.php:
|
5493 |
msgctxt "submit listing"
|
5494 |
msgid "Please enter the password for your new account."
|
5495 |
msgstr ""
|
5496 |
|
5497 |
-
#: includes/views/submit_listing.php:
|
5498 |
msgctxt "submit listing"
|
5499 |
msgid "The username you chose is already in use. Please use a different one."
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: includes/views/submit_listing.php:
|
5503 |
msgctxt "submit listing"
|
5504 |
msgid "The e-mail address you chose for your account is already in use."
|
5505 |
msgstr ""
|
5506 |
|
5507 |
-
#: includes/views/submit_listing.php:
|
5508 |
msgctxt "submit listing"
|
5509 |
msgid "Create a user account on this site"
|
5510 |
msgstr ""
|
5511 |
|
5512 |
-
#: includes/views/submit_listing.php:
|
5513 |
msgctxt "submit listing"
|
5514 |
msgid "You need to create an account on the site. Please fill out the form below."
|
5515 |
msgstr ""
|
5516 |
|
5517 |
-
#: includes/views/submit_listing.php:
|
5518 |
msgctxt "submit listing"
|
5519 |
msgid "Username:"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
-
#: includes/views/submit_listing.php:
|
5523 |
msgctxt "submit listing"
|
5524 |
msgid "Email:"
|
5525 |
msgstr ""
|
5526 |
|
5527 |
-
#: includes/views/submit_listing.php:
|
5528 |
msgctxt "submit listing"
|
5529 |
msgid "Password:"
|
5530 |
msgstr ""
|
@@ -5554,12 +5584,12 @@ msgctxt "submit listing"
|
|
5554 |
msgid "Save Changes"
|
5555 |
msgstr ""
|
5556 |
|
5557 |
-
#: includes/class-recaptcha.php:
|
5558 |
msgctxt "recaptcha"
|
5559 |
msgid "The reCAPTCHA wasn't entered correctly."
|
5560 |
msgstr ""
|
5561 |
|
5562 |
-
#: includes/class-recaptcha.php:
|
5563 |
msgctxt "recaptcha"
|
5564 |
msgid "reCAPTCHA"
|
5565 |
msgstr ""
|
@@ -5660,12 +5690,12 @@ msgctxt "form-fields api"
|
|
5660 |
msgid "Textarea"
|
5661 |
msgstr ""
|
5662 |
|
5663 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
5664 |
msgctxt "form-fields api"
|
5665 |
msgid "Textfield"
|
5666 |
msgstr ""
|
5667 |
|
5668 |
-
#: includes/fields/class-fieldtypes-textfield.php:
|
5669 |
msgctxt "form-fields api"
|
5670 |
msgid "Format 01/31/1969"
|
5671 |
msgstr ""
|
@@ -5690,7 +5720,7 @@ msgctxt "form-fields api"
|
|
5690 |
msgid "Link Text (optional):"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
-
#: includes/fields/class-form-field.php:
|
5694 |
msgctxt "form-fields api"
|
5695 |
msgid ""
|
5696 |
"This form field can't be deleted because it is required for the plugin to "
|
@@ -5747,7 +5777,7 @@ msgctxt "date field"
|
|
5747 |
msgid "%s must be a valid date."
|
5748 |
msgstr ""
|
5749 |
|
5750 |
-
#: includes/fields/class-fieldtypes-image.php:
|
5751 |
msgctxt "date field"
|
5752 |
msgid "Caption for %s is required."
|
5753 |
msgstr ""
|
@@ -5757,17 +5787,17 @@ msgctxt "form-fields-api"
|
|
5757 |
msgid "Remove"
|
5758 |
msgstr ""
|
5759 |
|
5760 |
-
#: includes/fields/class-form-field.php:
|
5761 |
msgctxt "form-fields-api"
|
5762 |
msgid "Invalid form field type"
|
5763 |
msgstr ""
|
5764 |
|
5765 |
-
#: includes/fields/class-form-field.php:
|
5766 |
msgctxt "form-fields-api"
|
5767 |
msgid "Field label is required."
|
5768 |
msgstr ""
|
5769 |
|
5770 |
-
#: includes/fields/class-form-field.php:
|
5771 |
msgctxt "form-fields-api"
|
5772 |
msgid ""
|
5773 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
@@ -5775,31 +5805,31 @@ msgid ""
|
|
5775 |
"delete this current field and create a NEW field of type %1$s instead."
|
5776 |
msgstr ""
|
5777 |
|
5778 |
-
#: includes/fields/class-form-field.php:
|
5779 |
msgctxt "form-fields-api"
|
5780 |
msgid ""
|
5781 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
5782 |
"existing listings will be deleted as well."
|
5783 |
msgstr ""
|
5784 |
|
5785 |
-
#: includes/fields/class-form-field.php:
|
5786 |
msgctxt "form-fields-api"
|
5787 |
msgid ""
|
5788 |
"There can only be one field with association \"%s\". Please select another "
|
5789 |
"association."
|
5790 |
msgstr ""
|
5791 |
|
5792 |
-
#: includes/fields/class-form-field.php:
|
5793 |
msgctxt "form-fields-api"
|
5794 |
msgid "\"%s\" is an invalid field type for this association."
|
5795 |
msgstr ""
|
5796 |
|
5797 |
-
#: includes/fields/class-form-field.php:
|
5798 |
msgctxt "form-fields-api"
|
5799 |
msgid "Invalid field ID"
|
5800 |
msgstr ""
|
5801 |
|
5802 |
-
#: includes/fields/class-form-field.php:
|
5803 |
msgctxt "form-fields-api"
|
5804 |
msgid "An error occurred while trying to delete this field."
|
5805 |
msgstr ""
|
@@ -5829,6 +5859,11 @@ msgctxt "form-fields-api"
|
|
5829 |
msgid "Date Validator"
|
5830 |
msgstr ""
|
5831 |
|
|
|
|
|
|
|
|
|
|
|
5832 |
#: includes/fields/class-fieldtypes-image.php:121
|
5833 |
msgctxt "form fields"
|
5834 |
msgid "Field unavailable at the moment."
|
@@ -5877,51 +5912,61 @@ msgid ""
|
|
5877 |
"you sure you want to enable this?"
|
5878 |
msgstr ""
|
5879 |
|
5880 |
-
#: includes/form-fields.php:
|
5881 |
msgctxt "form-fields-api validation"
|
5882 |
msgid "Field"
|
5883 |
msgstr ""
|
5884 |
|
5885 |
-
#: includes/form-fields.php:
|
5886 |
msgctxt "form-fields-api validation"
|
5887 |
msgid "%s is required."
|
5888 |
msgstr ""
|
5889 |
|
5890 |
-
#: includes/form-fields.php:
|
5891 |
msgctxt "form-fields-api validation"
|
5892 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
-
#: includes/form-fields.php:
|
5896 |
msgctxt "form-fields-api validation"
|
5897 |
msgid "%s is badly formatted. Valid Email format required."
|
5898 |
msgstr ""
|
5899 |
|
5900 |
-
#: includes/form-fields.php:
|
5901 |
msgctxt "form-fields-api validation"
|
5902 |
msgid "%s must be a number. Decimal values are not allowed."
|
5903 |
msgstr ""
|
5904 |
|
5905 |
-
#: includes/form-fields.php:
|
5906 |
msgctxt "form-fields-api validation"
|
5907 |
msgid "%s must be a number."
|
5908 |
msgstr ""
|
5909 |
|
5910 |
-
#: includes/form-fields.php:
|
5911 |
msgctxt "form-fields-api validation"
|
5912 |
msgid "%1$s must be in the format %2$s."
|
5913 |
msgstr ""
|
5914 |
|
5915 |
-
#: includes/form-fields.php:
|
5916 |
msgctxt "form-fields-api validation"
|
5917 |
msgid "%s must be a valid date."
|
5918 |
msgstr ""
|
5919 |
|
5920 |
-
#: includes/form-fields.php:
|
|
|
|
|
|
|
|
|
|
|
5921 |
msgctxt "form-fields-api validation"
|
5922 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
5923 |
msgstr ""
|
5924 |
|
|
|
|
|
|
|
|
|
|
|
5925 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
5926 |
msgctxt "authorize-net"
|
5927 |
msgid "Authorize.net"
|
@@ -6598,17 +6643,17 @@ msgctxt "templates"
|
|
6598 |
msgid "View not available."
|
6599 |
msgstr ""
|
6600 |
|
6601 |
-
#: includes/views/submit_listing.php:
|
6602 |
msgctxt "templates"
|
6603 |
msgid "Please agree to the Terms and Conditions."
|
6604 |
msgstr ""
|
6605 |
|
6606 |
-
#: includes/views/submit_listing.php:
|
6607 |
msgctxt "templates"
|
6608 |
msgid "Terms and Conditions:"
|
6609 |
msgstr ""
|
6610 |
|
6611 |
-
#: includes/views/submit_listing.php:
|
6612 |
msgctxt "templates"
|
6613 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
6614 |
msgstr ""
|
@@ -7238,14 +7283,14 @@ msgctxt "preview"
|
|
7238 |
msgid "This is just a preview. The listing has not been published yet."
|
7239 |
msgstr ""
|
7240 |
|
7241 |
-
#: includes/views/submit_listing.php:
|
7242 |
msgctxt "listing submit"
|
7243 |
msgid ""
|
7244 |
"Something went wrong. Please check the form for errors, correct them and "
|
7245 |
"submit again."
|
7246 |
msgstr ""
|
7247 |
|
7248 |
-
#: includes/views/submit_listing.php:
|
7249 |
msgctxt "listing submit"
|
7250 |
msgid ""
|
7251 |
"Image upload is required, please provide at least one image and submit "
|
@@ -7488,112 +7533,122 @@ msgctxt "admin sidebar"
|
|
7488 |
msgid "Elegant Business Theme"
|
7489 |
msgstr ""
|
7490 |
|
7491 |
-
#: templates/admin/sidebar.tpl.php:
|
7492 |
msgctxt "admin sidebar"
|
7493 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
7494 |
msgstr ""
|
7495 |
|
7496 |
#: templates/admin/sidebar.tpl.php:31
|
7497 |
msgctxt "admin sidebar"
|
7498 |
-
msgid "
|
7499 |
msgstr ""
|
7500 |
|
7501 |
#: templates/admin/sidebar.tpl.php:33
|
7502 |
msgctxt "admin sidebar"
|
|
|
|
|
|
|
|
|
|
|
7503 |
msgid "Give it a good rating on WordPress.org."
|
7504 |
msgstr ""
|
7505 |
|
7506 |
-
#: templates/admin/sidebar.tpl.php:
|
7507 |
msgctxt "admin sidebar"
|
7508 |
msgid "Let other people know that it works with your WordPress setup."
|
7509 |
msgstr ""
|
7510 |
|
7511 |
-
#: templates/admin/sidebar.tpl.php:
|
7512 |
msgctxt "admin sidebar"
|
7513 |
msgid "Buy a Premium Module"
|
7514 |
msgstr ""
|
7515 |
|
7516 |
-
#: templates/admin/sidebar.tpl.php:
|
7517 |
msgctxt "admin sidebar"
|
7518 |
msgid "Get a Premium Module"
|
7519 |
msgstr ""
|
7520 |
|
7521 |
-
#: templates/admin/sidebar.tpl.php:
|
7522 |
msgctxt "admin sidebar"
|
7523 |
msgid "best deal"
|
7524 |
msgstr ""
|
7525 |
|
7526 |
-
#: templates/admin/sidebar.tpl.php:
|
7527 |
msgctxt "admin sidebar"
|
7528 |
msgid "Combo Pack"
|
7529 |
msgstr ""
|
7530 |
|
7531 |
-
#: templates/admin/sidebar.tpl.php:
|
7532 |
msgctxt "admin sidebar"
|
7533 |
msgid "(All Modules)"
|
7534 |
msgstr ""
|
7535 |
|
7536 |
-
#: templates/admin/sidebar.tpl.php:
|
7537 |
msgctxt "admin sidebar"
|
7538 |
msgid "new"
|
7539 |
msgstr ""
|
7540 |
|
7541 |
-
#: templates/admin/sidebar.tpl.php:
|
7542 |
msgctxt "admin sidebar"
|
7543 |
msgid "Get a Directory Theme"
|
7544 |
msgstr ""
|
7545 |
|
7546 |
-
#: templates/admin/sidebar.tpl.php:
|
7547 |
msgctxt "admin sidebar"
|
7548 |
msgid "Theme Pack"
|
7549 |
msgstr ""
|
7550 |
|
7551 |
-
#: templates/admin/sidebar.tpl.php:
|
7552 |
msgctxt "admin sidebar"
|
7553 |
msgid "(All Themes)"
|
7554 |
msgstr ""
|
7555 |
|
7556 |
-
#: templates/admin/sidebar.tpl.php:
|
7557 |
msgctxt "admin sidebar"
|
7558 |
msgid "Found a bug? Need support?"
|
7559 |
msgstr ""
|
7560 |
|
7561 |
-
#: templates/admin/sidebar.tpl.php:
|
7562 |
msgctxt "admin sidebar"
|
7563 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
7564 |
msgstr ""
|
7565 |
|
7566 |
-
#: templates/admin/sidebar.tpl.php:
|
7567 |
msgctxt "admin sidebar"
|
7568 |
msgid "Full plugin documentation"
|
7569 |
msgstr ""
|
7570 |
|
7571 |
-
#: templates/admin/sidebar.tpl.php:
|
7572 |
msgctxt "admin sidebar"
|
7573 |
msgid "Quick Start Guide"
|
7574 |
msgstr ""
|
7575 |
|
7576 |
-
#: templates/admin/sidebar.tpl.php:
|
7577 |
msgctxt "admin sidebar"
|
7578 |
msgid "Video Tutorials"
|
7579 |
msgstr ""
|
7580 |
|
7581 |
-
#: templates/admin/sidebar.tpl.php:
|
7582 |
msgctxt "admin sidebar"
|
7583 |
msgid "Installed Modules"
|
7584 |
msgstr ""
|
7585 |
|
7586 |
-
#: templates/admin/sidebar.tpl.php:
|
7587 |
msgctxt "admin sidebar"
|
7588 |
msgid "Installed"
|
7589 |
msgstr ""
|
7590 |
|
7591 |
-
#: templates/admin/sidebar.tpl.php:
|
7592 |
msgctxt "admin sidebar"
|
7593 |
msgid "Not Installed"
|
7594 |
msgstr ""
|
7595 |
|
7596 |
-
#: templates/admin/sidebar.tpl.php:
|
7597 |
msgctxt "admin sidebar"
|
7598 |
msgid "Enhanced Categories Module"
|
7599 |
msgstr ""
|
2 |
# This file is distributed under the GPLv2 or any later version.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Business Directory Plugin 5.3dev1\n"
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/business-directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2018-06-27 21:14:25+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
2460 |
msgid "Field list of options is required."
|
2461 |
msgstr ""
|
2462 |
|
2463 |
+
#: includes/fields/class-fieldtypes-image.php:55
|
2464 |
msgctxt "form-fields admin"
|
2465 |
msgid "Display caption?"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: includes/fields/class-fieldtypes-image.php:58
|
2469 |
msgctxt "form-fields admin"
|
2470 |
msgid "Field Caption required?"
|
2471 |
msgstr ""
|
2582 |
msgid "Use rel=\"nofollow\" when displaying the link?"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
+
#: templates/admin/form-fields-addoredit.tpl.php:8
|
2586 |
msgctxt "form-fields admin"
|
2587 |
msgid "Add Form Field"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
2591 |
msgctxt "form-fields admin"
|
2592 |
msgid "Field Association"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
+
#: templates/admin/form-fields-addoredit.tpl.php:21
|
2596 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
2597 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
2598 |
msgctxt "form-fields admin"
|
2599 |
msgid "required"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: templates/admin/form-fields-addoredit.tpl.php:46
|
2603 |
msgctxt "form-fields admin"
|
2604 |
msgid "Field Type"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
+
#: templates/admin/form-fields-addoredit.tpl.php:70
|
2608 |
msgctxt "form-fields admin"
|
2609 |
msgid "Field Label"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
2613 |
msgctxt "form-fields admin"
|
2614 |
msgid "Field description"
|
2615 |
msgstr ""
|
2616 |
|
2617 |
+
#: templates/admin/form-fields-addoredit.tpl.php:80
|
2618 |
msgctxt "form-fields admin"
|
2619 |
msgid "optional"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: templates/admin/form-fields-addoredit.tpl.php:97
|
2623 |
msgctxt "form-fields admin"
|
2624 |
msgid "Field-specific settings"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
+
#: templates/admin/form-fields-addoredit.tpl.php:106
|
2628 |
msgctxt "form-fields admin"
|
2629 |
msgid "Field validation options"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: templates/admin/form-fields-addoredit.tpl.php:110
|
2633 |
msgctxt "form-fields admin"
|
2634 |
msgid "Field Validator"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
+
#: templates/admin/form-fields-addoredit.tpl.php:114
|
2638 |
msgctxt "form-fields admin"
|
2639 |
msgid "No validation"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: templates/admin/form-fields-addoredit.tpl.php:126
|
2643 |
+
msgctxt "form-fields admin"
|
2644 |
+
msgid "Number of words"
|
2645 |
+
msgstr ""
|
2646 |
+
|
2647 |
+
#: templates/admin/form-fields-addoredit.tpl.php:136
|
2648 |
msgctxt "form-fields admin"
|
2649 |
msgid "Is field required?"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: templates/admin/form-fields-addoredit.tpl.php:142
|
2653 |
msgctxt "form-fields admin"
|
2654 |
msgid "This field is required."
|
2655 |
msgstr ""
|
2656 |
|
2657 |
+
#: templates/admin/form-fields-addoredit.tpl.php:150
|
2658 |
msgctxt "form-fields admin"
|
2659 |
msgid "Field display options"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: templates/admin/form-fields-addoredit.tpl.php:154
|
2663 |
+
msgctxt "form-fields admin"
|
2664 |
+
msgid "Field Category Policy:"
|
2665 |
+
msgstr ""
|
2666 |
+
|
2667 |
+
#: templates/admin/form-fields-addoredit.tpl.php:159
|
2668 |
+
msgctxt "form-fields admin"
|
2669 |
+
msgid "Field applies to all categories"
|
2670 |
+
msgstr ""
|
2671 |
+
|
2672 |
+
#: templates/admin/form-fields-addoredit.tpl.php:160
|
2673 |
+
msgctxt "form-fields admin"
|
2674 |
+
msgid "Field applies to only certain categories"
|
2675 |
+
msgstr ""
|
2676 |
+
|
2677 |
+
#: templates/admin/form-fields-addoredit.tpl.php:164
|
2678 |
+
msgctxt "form-fields admin"
|
2679 |
+
msgid "Limit field to the following categories:"
|
2680 |
+
msgstr ""
|
2681 |
+
|
2682 |
+
#: templates/admin/form-fields-addoredit.tpl.php:188
|
2683 |
+
msgctxt "form-fields admin"
|
2684 |
+
msgid "Click to add categories to the selection."
|
2685 |
+
msgstr ""
|
2686 |
+
|
2687 |
+
#: templates/admin/form-fields-addoredit.tpl.php:201
|
2688 |
msgctxt "form-fields admin"
|
2689 |
msgid "Show this field to admin users only?"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: templates/admin/form-fields-addoredit.tpl.php:207
|
2693 |
msgctxt "form-fields admin"
|
2694 |
msgid "Display this field to admin users only in the edit listing view."
|
2695 |
msgstr ""
|
2696 |
|
2697 |
+
#: templates/admin/form-fields-addoredit.tpl.php:213
|
2698 |
msgctxt "form-fields admin"
|
2699 |
msgid "Show this value in excerpt view?"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
+
#: templates/admin/form-fields-addoredit.tpl.php:219
|
2703 |
msgctxt "form-fields admin"
|
2704 |
msgid "Display this value in post excerpt view."
|
2705 |
msgstr ""
|
2706 |
|
2707 |
+
#: templates/admin/form-fields-addoredit.tpl.php:225
|
2708 |
msgctxt "form-fields admin"
|
2709 |
msgid "Show this value in listing view?"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
+
#: templates/admin/form-fields-addoredit.tpl.php:231
|
2713 |
msgctxt "form-fields admin"
|
2714 |
msgid "Display this value in the listing view."
|
2715 |
msgstr ""
|
2716 |
|
2717 |
+
#: templates/admin/form-fields-addoredit.tpl.php:237
|
2718 |
msgctxt "form-fields admin"
|
2719 |
msgid "Include this field in the search form?"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
+
#: templates/admin/form-fields-addoredit.tpl.php:243
|
2723 |
msgctxt "form-fields admin"
|
2724 |
msgid "Include this field in the search form."
|
2725 |
msgstr ""
|
2726 |
|
2727 |
+
#: templates/admin/form-fields-addoredit.tpl.php:249
|
2728 |
msgctxt "form-fields admin"
|
2729 |
msgid "Is this field required for searching?"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
+
#: templates/admin/form-fields-addoredit.tpl.php:255
|
2733 |
msgctxt "form-fields admin"
|
2734 |
msgid "Make this fields required during searches on the Advanced Search screen."
|
2735 |
msgstr ""
|
2736 |
|
2737 |
+
#: templates/admin/form-fields-addoredit.tpl.php:261
|
2738 |
msgctxt "form-fields admin"
|
2739 |
msgid "Hide this field's label?"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#: templates/admin/form-fields-addoredit.tpl.php:267
|
2743 |
msgctxt "form-fields admin"
|
2744 |
msgid "Hide this field's label when displaying it."
|
2745 |
msgstr ""
|
2746 |
|
2747 |
+
#: templates/admin/form-fields-addoredit.tpl.php:274
|
2748 |
msgctxt "form-fields admin"
|
2749 |
msgid "Update Field"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: templates/admin/form-fields-addoredit.tpl.php:276
|
2753 |
msgctxt "form-fields admin"
|
2754 |
msgid "Add Field"
|
2755 |
msgstr ""
|
5509 |
msgid "Please choose a valid fee plan for your category selection."
|
5510 |
msgstr ""
|
5511 |
|
5512 |
+
#: includes/views/submit_listing.php:743
|
5513 |
msgctxt "submit listing"
|
5514 |
msgid "Please enter your desired username."
|
5515 |
msgstr ""
|
5516 |
|
5517 |
+
#: includes/views/submit_listing.php:748
|
5518 |
msgctxt "submit listing"
|
5519 |
msgid "Please enter the e-mail for your new account."
|
5520 |
msgstr ""
|
5521 |
|
5522 |
+
#: includes/views/submit_listing.php:753
|
5523 |
msgctxt "submit listing"
|
5524 |
msgid "Please enter the password for your new account."
|
5525 |
msgstr ""
|
5526 |
|
5527 |
+
#: includes/views/submit_listing.php:763
|
5528 |
msgctxt "submit listing"
|
5529 |
msgid "The username you chose is already in use. Please use a different one."
|
5530 |
msgstr ""
|
5531 |
|
5532 |
+
#: includes/views/submit_listing.php:768
|
5533 |
msgctxt "submit listing"
|
5534 |
msgid "The e-mail address you chose for your account is already in use."
|
5535 |
msgstr ""
|
5536 |
|
5537 |
+
#: includes/views/submit_listing.php:783
|
5538 |
msgctxt "submit listing"
|
5539 |
msgid "Create a user account on this site"
|
5540 |
msgstr ""
|
5541 |
|
5542 |
+
#: includes/views/submit_listing.php:790
|
5543 |
msgctxt "submit listing"
|
5544 |
msgid "You need to create an account on the site. Please fill out the form below."
|
5545 |
msgstr ""
|
5546 |
|
5547 |
+
#: includes/views/submit_listing.php:796
|
5548 |
msgctxt "submit listing"
|
5549 |
msgid "Username:"
|
5550 |
msgstr ""
|
5551 |
|
5552 |
+
#: includes/views/submit_listing.php:805
|
5553 |
msgctxt "submit listing"
|
5554 |
msgid "Email:"
|
5555 |
msgstr ""
|
5556 |
|
5557 |
+
#: includes/views/submit_listing.php:814
|
5558 |
msgctxt "submit listing"
|
5559 |
msgid "Password:"
|
5560 |
msgstr ""
|
5584 |
msgid "Save Changes"
|
5585 |
msgstr ""
|
5586 |
|
5587 |
+
#: includes/class-recaptcha.php:109 includes/class-recaptcha.php:150
|
5588 |
msgctxt "recaptcha"
|
5589 |
msgid "The reCAPTCHA wasn't entered correctly."
|
5590 |
msgstr ""
|
5591 |
|
5592 |
+
#: includes/class-recaptcha.php:211
|
5593 |
msgctxt "recaptcha"
|
5594 |
msgid "reCAPTCHA"
|
5595 |
msgstr ""
|
5690 |
msgid "Textarea"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
+
#: includes/fields/class-fieldtypes-textfield.php:13
|
5694 |
msgctxt "form-fields api"
|
5695 |
msgid "Textfield"
|
5696 |
msgstr ""
|
5697 |
|
5698 |
+
#: includes/fields/class-fieldtypes-textfield.php:50
|
5699 |
msgctxt "form-fields api"
|
5700 |
msgid "Format 01/31/1969"
|
5701 |
msgstr ""
|
5720 |
msgid "Link Text (optional):"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
+
#: includes/fields/class-form-field.php:707
|
5724 |
msgctxt "form-fields api"
|
5725 |
msgid ""
|
5726 |
"This form field can't be deleted because it is required for the plugin to "
|
5777 |
msgid "%s must be a valid date."
|
5778 |
msgstr ""
|
5779 |
|
5780 |
+
#: includes/fields/class-fieldtypes-image.php:41
|
5781 |
msgctxt "date field"
|
5782 |
msgid "Caption for %s is required."
|
5783 |
msgstr ""
|
5787 |
msgid "Remove"
|
5788 |
msgstr ""
|
5789 |
|
5790 |
+
#: includes/fields/class-form-field.php:66
|
5791 |
msgctxt "form-fields-api"
|
5792 |
msgid "Invalid form field type"
|
5793 |
msgstr ""
|
5794 |
|
5795 |
+
#: includes/fields/class-form-field.php:585
|
5796 |
msgctxt "form-fields-api"
|
5797 |
msgid "Field label is required."
|
5798 |
msgstr ""
|
5799 |
|
5800 |
+
#: includes/fields/class-form-field.php:596
|
5801 |
msgctxt "form-fields-api"
|
5802 |
msgid ""
|
5803 |
"You can't change from %2$s field type to the one you wanted--the types are "
|
5805 |
"delete this current field and create a NEW field of type %1$s instead."
|
5806 |
msgstr ""
|
5807 |
|
5808 |
+
#: includes/fields/class-form-field.php:599
|
5809 |
msgctxt "form-fields-api"
|
5810 |
msgid ""
|
5811 |
"<strong>WARNING</strong>: If you delete this field, the data from it in "
|
5812 |
"existing listings will be deleted as well."
|
5813 |
msgstr ""
|
5814 |
|
5815 |
+
#: includes/fields/class-form-field.php:633
|
5816 |
msgctxt "form-fields-api"
|
5817 |
msgid ""
|
5818 |
"There can only be one field with association \"%s\". Please select another "
|
5819 |
"association."
|
5820 |
msgstr ""
|
5821 |
|
5822 |
+
#: includes/fields/class-form-field.php:643
|
5823 |
msgctxt "form-fields-api"
|
5824 |
msgid "\"%s\" is an invalid field type for this association."
|
5825 |
msgstr ""
|
5826 |
|
5827 |
+
#: includes/fields/class-form-field.php:697
|
5828 |
msgctxt "form-fields-api"
|
5829 |
msgid "Invalid field ID"
|
5830 |
msgstr ""
|
5831 |
|
5832 |
+
#: includes/fields/class-form-field.php:720
|
5833 |
msgctxt "form-fields-api"
|
5834 |
msgid "An error occurred while trying to delete this field."
|
5835 |
msgstr ""
|
5859 |
msgid "Date Validator"
|
5860 |
msgstr ""
|
5861 |
|
5862 |
+
#: includes/form-fields.php:574
|
5863 |
+
msgctxt "form-fields-api"
|
5864 |
+
msgid "Word Count Validator"
|
5865 |
+
msgstr ""
|
5866 |
+
|
5867 |
#: includes/fields/class-fieldtypes-image.php:121
|
5868 |
msgctxt "form fields"
|
5869 |
msgid "Field unavailable at the moment."
|
5912 |
"you sure you want to enable this?"
|
5913 |
msgstr ""
|
5914 |
|
5915 |
+
#: includes/form-fields.php:581
|
5916 |
msgctxt "form-fields-api validation"
|
5917 |
msgid "Field"
|
5918 |
msgstr ""
|
5919 |
|
5920 |
+
#: includes/form-fields.php:602 includes/form-fields.php:607
|
5921 |
msgctxt "form-fields-api validation"
|
5922 |
msgid "%s is required."
|
5923 |
msgstr ""
|
5924 |
|
5925 |
+
#: includes/form-fields.php:619 includes/form-fields.php:626
|
5926 |
msgctxt "form-fields-api validation"
|
5927 |
msgid "%s is badly formatted. Valid URL format required. Include http://"
|
5928 |
msgstr ""
|
5929 |
|
5930 |
+
#: includes/form-fields.php:641
|
5931 |
msgctxt "form-fields-api validation"
|
5932 |
msgid "%s is badly formatted. Valid Email format required."
|
5933 |
msgstr ""
|
5934 |
|
5935 |
+
#: includes/form-fields.php:648
|
5936 |
msgctxt "form-fields-api validation"
|
5937 |
msgid "%s must be a number. Decimal values are not allowed."
|
5938 |
msgstr ""
|
5939 |
|
5940 |
+
#: includes/form-fields.php:655
|
5941 |
msgctxt "form-fields-api validation"
|
5942 |
msgid "%s must be a number."
|
5943 |
msgstr ""
|
5944 |
|
5945 |
+
#: includes/form-fields.php:674
|
5946 |
msgctxt "form-fields-api validation"
|
5947 |
msgid "%1$s must be in the format %2$s."
|
5948 |
msgstr ""
|
5949 |
|
5950 |
+
#: includes/form-fields.php:712
|
5951 |
msgctxt "form-fields-api validation"
|
5952 |
msgid "%s must be a valid date."
|
5953 |
msgstr ""
|
5954 |
|
5955 |
+
#: includes/form-fields.php:735
|
5956 |
+
msgctxt "form-fields-api validation"
|
5957 |
+
msgid "%s must have less than %d words."
|
5958 |
+
msgstr ""
|
5959 |
+
|
5960 |
+
#: includes/form-fields.php:754
|
5961 |
msgctxt "form-fields-api validation"
|
5962 |
msgid "%1$s is invalid. Value most be one of %2$s."
|
5963 |
msgstr ""
|
5964 |
|
5965 |
+
#: includes/form-fields.php:719
|
5966 |
+
msgctxt "image field"
|
5967 |
+
msgid "Caption for %s is required."
|
5968 |
+
msgstr ""
|
5969 |
+
|
5970 |
#: includes/gateways/class-gateway-authorize-net.php:20
|
5971 |
msgctxt "authorize-net"
|
5972 |
msgid "Authorize.net"
|
6643 |
msgid "View not available."
|
6644 |
msgstr ""
|
6645 |
|
6646 |
+
#: includes/views/submit_listing.php:852
|
6647 |
msgctxt "templates"
|
6648 |
msgid "Please agree to the Terms and Conditions."
|
6649 |
msgstr ""
|
6650 |
|
6651 |
+
#: includes/views/submit_listing.php:860
|
6652 |
msgctxt "templates"
|
6653 |
msgid "Terms and Conditions:"
|
6654 |
msgstr ""
|
6655 |
|
6656 |
+
#: includes/views/submit_listing.php:869
|
6657 |
msgctxt "templates"
|
6658 |
msgid "I agree to the <a>Terms and Conditions</a>"
|
6659 |
msgstr ""
|
7283 |
msgid "This is just a preview. The listing has not been published yet."
|
7284 |
msgstr ""
|
7285 |
|
7286 |
+
#: includes/views/submit_listing.php:613
|
7287 |
msgctxt "listing submit"
|
7288 |
msgid ""
|
7289 |
"Something went wrong. Please check the form for errors, correct them and "
|
7290 |
"submit again."
|
7291 |
msgstr ""
|
7292 |
|
7293 |
+
#: includes/views/submit_listing.php:695
|
7294 |
msgctxt "listing submit"
|
7295 |
msgid ""
|
7296 |
"Image upload is required, please provide at least one image and submit "
|
7533 |
msgid "Elegant Business Theme"
|
7534 |
msgstr ""
|
7535 |
|
7536 |
+
#: templates/admin/sidebar.tpl.php:23
|
7537 |
msgctxt "admin sidebar"
|
7538 |
+
msgid "Modern Business Theme"
|
7539 |
+
msgstr ""
|
7540 |
+
|
7541 |
+
#: templates/admin/sidebar.tpl.php:24
|
7542 |
+
msgctxt "admin sidebar"
|
7543 |
+
msgid "Modern Filtered Theme"
|
7544 |
msgstr ""
|
7545 |
|
7546 |
#: templates/admin/sidebar.tpl.php:31
|
7547 |
msgctxt "admin sidebar"
|
7548 |
+
msgid "Like this plugin?"
|
7549 |
msgstr ""
|
7550 |
|
7551 |
#: templates/admin/sidebar.tpl.php:33
|
7552 |
msgctxt "admin sidebar"
|
7553 |
+
msgid "Why not do any or all of the following:"
|
7554 |
+
msgstr ""
|
7555 |
+
|
7556 |
+
#: templates/admin/sidebar.tpl.php:35
|
7557 |
+
msgctxt "admin sidebar"
|
7558 |
msgid "Give it a good rating on WordPress.org."
|
7559 |
msgstr ""
|
7560 |
|
7561 |
+
#: templates/admin/sidebar.tpl.php:36
|
7562 |
msgctxt "admin sidebar"
|
7563 |
msgid "Let other people know that it works with your WordPress setup."
|
7564 |
msgstr ""
|
7565 |
|
7566 |
+
#: templates/admin/sidebar.tpl.php:37
|
7567 |
msgctxt "admin sidebar"
|
7568 |
msgid "Buy a Premium Module"
|
7569 |
msgstr ""
|
7570 |
|
7571 |
+
#: templates/admin/sidebar.tpl.php:44
|
7572 |
msgctxt "admin sidebar"
|
7573 |
msgid "Get a Premium Module"
|
7574 |
msgstr ""
|
7575 |
|
7576 |
+
#: templates/admin/sidebar.tpl.php:47 templates/admin/sidebar.tpl.php:63
|
7577 |
msgctxt "admin sidebar"
|
7578 |
msgid "best deal"
|
7579 |
msgstr ""
|
7580 |
|
7581 |
+
#: templates/admin/sidebar.tpl.php:47
|
7582 |
msgctxt "admin sidebar"
|
7583 |
msgid "Combo Pack"
|
7584 |
msgstr ""
|
7585 |
|
7586 |
+
#: templates/admin/sidebar.tpl.php:47
|
7587 |
msgctxt "admin sidebar"
|
7588 |
msgid "(All Modules)"
|
7589 |
msgstr ""
|
7590 |
|
7591 |
+
#: templates/admin/sidebar.tpl.php:50 templates/admin/sidebar.tpl.php:66
|
7592 |
msgctxt "admin sidebar"
|
7593 |
msgid "new"
|
7594 |
msgstr ""
|
7595 |
|
7596 |
+
#: templates/admin/sidebar.tpl.php:60
|
7597 |
msgctxt "admin sidebar"
|
7598 |
msgid "Get a Directory Theme"
|
7599 |
msgstr ""
|
7600 |
|
7601 |
+
#: templates/admin/sidebar.tpl.php:63
|
7602 |
msgctxt "admin sidebar"
|
7603 |
msgid "Theme Pack"
|
7604 |
msgstr ""
|
7605 |
|
7606 |
+
#: templates/admin/sidebar.tpl.php:63
|
7607 |
msgctxt "admin sidebar"
|
7608 |
msgid "(All Themes)"
|
7609 |
msgstr ""
|
7610 |
|
7611 |
+
#: templates/admin/sidebar.tpl.php:76
|
7612 |
msgctxt "admin sidebar"
|
7613 |
msgid "Found a bug? Need support?"
|
7614 |
msgstr ""
|
7615 |
|
7616 |
+
#: templates/admin/sidebar.tpl.php:81
|
7617 |
msgctxt "admin sidebar"
|
7618 |
msgid "If you've found a bug or need support <a>visit the forums!</a>"
|
7619 |
msgstr ""
|
7620 |
|
7621 |
+
#: templates/admin/sidebar.tpl.php:84
|
7622 |
msgctxt "admin sidebar"
|
7623 |
msgid "Full plugin documentation"
|
7624 |
msgstr ""
|
7625 |
|
7626 |
+
#: templates/admin/sidebar.tpl.php:85
|
7627 |
msgctxt "admin sidebar"
|
7628 |
msgid "Quick Start Guide"
|
7629 |
msgstr ""
|
7630 |
|
7631 |
+
#: templates/admin/sidebar.tpl.php:86
|
7632 |
msgctxt "admin sidebar"
|
7633 |
msgid "Video Tutorials"
|
7634 |
msgstr ""
|
7635 |
|
7636 |
+
#: templates/admin/sidebar.tpl.php:94
|
7637 |
msgctxt "admin sidebar"
|
7638 |
msgid "Installed Modules"
|
7639 |
msgstr ""
|
7640 |
|
7641 |
+
#: templates/admin/sidebar.tpl.php:105 templates/admin/sidebar.tpl.php:114
|
7642 |
msgctxt "admin sidebar"
|
7643 |
msgid "Installed"
|
7644 |
msgstr ""
|
7645 |
|
7646 |
+
#: templates/admin/sidebar.tpl.php:107 templates/admin/sidebar.tpl.php:114
|
7647 |
msgctxt "admin sidebar"
|
7648 |
msgid "Not Installed"
|
7649 |
msgstr ""
|
7650 |
|
7651 |
+
#: templates/admin/sidebar.tpl.php:113
|
7652 |
msgctxt "admin sidebar"
|
7653 |
msgid "Enhanced Categories Module"
|
7654 |
msgstr ""
|
templates/admin/form-fields-addoredit.tpl.php
CHANGED
@@ -1,4 +1,11 @@
|
|
1 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
<?php wpbdp_admin_notices(); ?>
|
3 |
|
4 |
<form id="wpbdp-formfield-form" action="" method="post">
|
@@ -11,18 +18,21 @@
|
|
11 |
<!-- association -->
|
12 |
<tr>
|
13 |
<th scope="row">
|
14 |
-
<label> <?php _ex('Field Association', 'form-fields admin', 'WPBDM'); ?> <span class="description">(<?php _ex( 'required', 'form-fields admin', 'WPBDM' ); ?>)</span></label>
|
15 |
</th>
|
16 |
<td>
|
17 |
<?php $field_association_info = $field_associations[ $field->get_association() ]; ?>
|
18 |
-
<?php if ( in_array( 'private', $field_association_info->flags, true ) ): ?>
|
19 |
<select name="field[association]" id="field-association">
|
20 |
<option value="<?php echo $field_association_info->id; ?>"><?php echo $field_association_info->label; ?></option>
|
21 |
</select>
|
22 |
-
<?php else: ?>
|
23 |
<select name="field[association]" id="field-association">
|
24 |
-
<?php foreach ( $field_associations as &$association ): ?>
|
25 |
-
<?php
|
|
|
|
|
|
|
26 |
<option value="<?php echo $association->id; ?>" <?php echo $field->get_association() == $association->id ? ' selected="selected"' : ''; ?> ><?php echo $association->label; ?></option>
|
27 |
<?php endforeach; ?>
|
28 |
</select>
|
@@ -33,19 +43,19 @@
|
|
33 |
<!-- field type -->
|
34 |
<tr class="form-field form-required">
|
35 |
<th scope="row">
|
36 |
-
<label> <?php _ex('Field Type', 'form-fields admin', 'WPBDM'); ?> <span class="description">(<?php _ex( 'required', 'form-fields admin', 'WPBDM' ); ?>)</span></label>
|
37 |
</th>
|
38 |
<td>
|
39 |
-
<?php if ( 'custom' === $field->get_association() ): ?>
|
40 |
<select name="field[field_type]" id="field-type">
|
41 |
<option value="<?php echo $field->get_field_type_id(); ?>"><?php echo $field->get_field_type()->get_name(); ?></option>
|
42 |
</select>
|
43 |
-
<?php else: ?>
|
44 |
<select name="field[field_type]" id="field-type">
|
45 |
<?php foreach ( $field_types as $key => &$field_type ) : ?>
|
46 |
-
<?php if ( !in_array( $field->get_association(), $field_type->get_supported_associations() ) ): ?>
|
47 |
<option value="<?php echo $key; ?>" disabled="disabled"><?php echo $field_type->get_name(); ?></option>
|
48 |
-
<?php else: ?>
|
49 |
<option value="<?php echo $key; ?>" <?php echo $field->get_field_type() == $field_type ? 'selected="true"' : ''; ?>><?php echo $field_type->get_name(); ?></option>
|
50 |
<?php endif; ?>
|
51 |
<?php endforeach; ?>
|
@@ -57,7 +67,7 @@
|
|
57 |
<!-- label -->
|
58 |
<tr class="form-field form-required">
|
59 |
<th scope="row">
|
60 |
-
<label> <?php _ex('Field Label', 'form-fields admin', 'WPBDM'); ?> <span class="description">(<?php _ex( 'required', 'form-fields admin', 'WPBDM' ); ?>)</span></label>
|
61 |
</th>
|
62 |
<td>
|
63 |
<input name="field[label]" type="text" aria-required="true" value="<?php echo esc_attr( $field->get_label() ); ?>" />
|
@@ -67,7 +77,7 @@
|
|
67 |
<!-- description -->
|
68 |
<tr class="form-field">
|
69 |
<th scope="row">
|
70 |
-
<label> <?php _ex('Field description', 'form-fields admin', 'WPBDM'); ?> <span class="description">(<?php _ex( 'optional', 'form-fields admin', 'WPBDM' ); ?>)</span></label>
|
71 |
</th>
|
72 |
<td>
|
73 |
<input name="field[description]" type="text" value="<?php echo esc_attr( $field->get_description() ); ?> " />
|
@@ -84,7 +94,7 @@
|
|
84 |
ob_end_clean();
|
85 |
?>
|
86 |
<div id="wpbdp-fieldsettings" style="<?php echo $field_settings ? '' : 'display: none;'; ?>">
|
87 |
-
<h2><?php _ex('Field-specific settings', 'form-fields admin', 'WPBDM'); ?></h2>
|
88 |
<div id="wpbdp-fieldsettings-html">
|
89 |
<?php echo $field_settings; ?>
|
90 |
</div>
|
@@ -92,17 +102,17 @@
|
|
92 |
<!-- /field-specific settings -->
|
93 |
|
94 |
<!-- validation -->
|
95 |
-
<?php if ( ! $field->has_behavior_flag( 'no-validation' ) ): ?>
|
96 |
-
<h2><?php _ex('Field validation options', 'form-fields admin', 'WPBDM'); ?></h2>
|
97 |
<table class="form-table">
|
98 |
<tr>
|
99 |
<th scope="row">
|
100 |
-
<label> <?php _ex('Field Validator', 'form-fields admin', 'WPBDM'); ?></label>
|
101 |
</th>
|
102 |
<td>
|
103 |
<select name="field[validators][]" id="field-validator" <?php echo ( 'social-twitter' == $field->get_field_type_id() ? 'disabled="disabled"' : '' ); ?> ?>>
|
104 |
<option value=""><?php _ex( 'No validation', 'form-fields admin', 'WPBDM' ); ?></option>
|
105 |
-
<?php foreach ( $validators as $key => $name): ?>
|
106 |
<?php
|
107 |
$disable_validator = ( 'url' == $field->get_field_type_id() && 'url' != $key ) ? true : false;
|
108 |
?>
|
@@ -111,15 +121,25 @@
|
|
111 |
</select>
|
112 |
</td>
|
113 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
<tr>
|
115 |
<th scope="row">
|
116 |
-
<label> <?php _ex('Is field required?', 'form-fields admin', 'WPBDM'); ?></label>
|
117 |
</th>
|
118 |
<td>
|
119 |
<label>
|
120 |
<input name="field[validators][]"
|
121 |
value="required"
|
122 |
-
type="checkbox" <?php echo $field->is_required() ? 'checked="checked"' : ''; ?>/> <?php _ex('This field is required.', 'form-fields admin', 'WPBDM'); ?>
|
123 |
</label>
|
124 |
</td>
|
125 |
</tr>
|
@@ -127,8 +147,55 @@
|
|
127 |
<?php endif; ?>
|
128 |
|
129 |
<!-- display options -->
|
130 |
-
<h2><?php _ex('Field display options', 'form-fields admin', 'WPBDM'); ?></h2>
|
131 |
<table class="form-table">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
<tr id="wpbdp_private_field" class="<?php echo in_array( $field->get_association(), array( 'title', 'content', 'category' ), true ) ? 'wpbdp-hidden' : ''; ?>">
|
133 |
<th scope="row">
|
134 |
<label> <?php _ex( 'Show this field to admin users only?', 'form-fields admin', 'WPBDM' ); ?></label>
|
@@ -143,70 +210,70 @@
|
|
143 |
</tr>
|
144 |
<tr>
|
145 |
<th scope="row">
|
146 |
-
<label> <?php _ex('Show this value in excerpt view?', 'form-fields admin', 'WPBDM'); ?></label>
|
147 |
</th>
|
148 |
<td>
|
149 |
<label>
|
150 |
<input name="field[display_flags][]"
|
151 |
value="excerpt"
|
152 |
-
type="checkbox" <?php echo $field->display_in( 'excerpt') ? 'checked="checked"' : ''; ?>/> <?php _ex('Display this value in post excerpt view.', 'form-fields admin', 'WPBDM'); ?>
|
153 |
</label>
|
154 |
</td>
|
155 |
</tr>
|
156 |
<tr>
|
157 |
<th scope="row">
|
158 |
-
<label> <?php _ex('Show this value in listing view?', 'form-fields admin', 'WPBDM'); ?></label>
|
159 |
</th>
|
160 |
<td>
|
161 |
<label>
|
162 |
<input name="field[display_flags][]"
|
163 |
value="listing"
|
164 |
-
type="checkbox" <?php echo $field->display_in( 'listing' ) ? 'checked="checked"' : ''; ?>/> <?php _ex('Display this value in the listing view.', 'form-fields admin', 'WPBDM'); ?>
|
165 |
</label>
|
166 |
</td>
|
167 |
</tr>
|
168 |
<tr>
|
169 |
<th scope="row">
|
170 |
-
<label> <?php _ex('Include this field in the search form?', 'form-fields admin', 'WPBDM'); ?></label>
|
171 |
</th>
|
172 |
<td>
|
173 |
<label>
|
174 |
<input name="field[display_flags][]"
|
175 |
value="search"
|
176 |
-
type="checkbox" <?php echo $field->display_in( 'search' ) ? 'checked="checked"' : ''; ?>/> <?php _ex('Include this field in the search form.', 'form-fields admin', 'WPBDM'); ?>
|
177 |
</label>
|
178 |
</td>
|
179 |
</tr>
|
180 |
-
<tr class="if-display-in-search <?php echo ( ! $field->display_in( 'search' ) ) ? 'wpbdp-hidden' : '' ?>">
|
181 |
<th scope="row">
|
182 |
-
<label> <?php _ex('Is this field required for searching?', 'form-fields admin', 'WPBDM'); ?></label>
|
183 |
</th>
|
184 |
<td>
|
185 |
<label>
|
186 |
<input name="field[validators][]"
|
187 |
value="required-in-search"
|
188 |
-
type="checkbox" <?php echo in_array( 'required-in-search', $field->get_validators() ) ? 'checked="checked"' : ''; ?>/> <?php _ex('Make this fields required during searches on the Advanced Search screen.', 'form-fields admin', 'WPBDM'); ?>
|
189 |
</label>
|
190 |
</td>
|
191 |
</tr>
|
192 |
<tr>
|
193 |
<th scope="row">
|
194 |
-
<label> <?php _ex('Hide this field\'s label?', 'form-fields admin', 'WPBDM'); ?></label>
|
195 |
</th>
|
196 |
<td>
|
197 |
<label>
|
198 |
<input name="field[display_flags][]"
|
199 |
value="nolabel"
|
200 |
-
type="checkbox" <?php echo $field->has_display_flag( 'nolabel' ) ? 'checked="checked"' : ''; ?>/> <?php _ex('Hide this field\'s label when displaying it.', 'form-fields admin', 'WPBDM'); ?>
|
201 |
</label>
|
202 |
</td>
|
203 |
</tr>
|
204 |
</table>
|
205 |
|
206 |
-
<?php if ( $field->get_id() ): ?>
|
207 |
-
<?php echo submit_button(_x('Update Field', 'form-fields admin', 'WPBDM')); ?>
|
208 |
-
<?php else: ?>
|
209 |
-
<?php echo submit_button(_x('Add Field', 'form-fields admin', 'WPBDM')); ?>
|
210 |
<?php endif; ?>
|
211 |
</form>
|
212 |
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @package WPBDP/Templates/Admin/Form Fields Add or Edit.
|
4 |
+
*/
|
5 |
+
|
6 |
+
// phpcs:disable
|
7 |
+
|
8 |
+
echo wpbdp_admin_header( _x( 'Add Form Field', 'form-fields admin', 'WPBDM' ), 'field-form' ); ?>
|
9 |
<?php wpbdp_admin_notices(); ?>
|
10 |
|
11 |
<form id="wpbdp-formfield-form" action="" method="post">
|
18 |
<!-- association -->
|
19 |
<tr>
|
20 |
<th scope="row">
|
21 |
+
<label> <?php _ex( 'Field Association', 'form-fields admin', 'WPBDM' ); ?> <span class="description">(<?php _ex( 'required', 'form-fields admin', 'WPBDM' ); ?>)</span></label>
|
22 |
</th>
|
23 |
<td>
|
24 |
<?php $field_association_info = $field_associations[ $field->get_association() ]; ?>
|
25 |
+
<?php if ( in_array( 'private', $field_association_info->flags, true ) ) : ?>
|
26 |
<select name="field[association]" id="field-association">
|
27 |
<option value="<?php echo $field_association_info->id; ?>"><?php echo $field_association_info->label; ?></option>
|
28 |
</select>
|
29 |
+
<?php else : ?>
|
30 |
<select name="field[association]" id="field-association">
|
31 |
+
<?php foreach ( $field_associations as &$association ) : ?>
|
32 |
+
<?php
|
33 |
+
if ( in_array( 'private', $association->flags, true ) ) {
|
34 |
+
continue;}
|
35 |
+
?>
|
36 |
<option value="<?php echo $association->id; ?>" <?php echo $field->get_association() == $association->id ? ' selected="selected"' : ''; ?> ><?php echo $association->label; ?></option>
|
37 |
<?php endforeach; ?>
|
38 |
</select>
|
43 |
<!-- field type -->
|
44 |
<tr class="form-field form-required">
|
45 |
<th scope="row">
|
46 |
+
<label> <?php _ex( 'Field Type', 'form-fields admin', 'WPBDM' ); ?> <span class="description">(<?php _ex( 'required', 'form-fields admin', 'WPBDM' ); ?>)</span></label>
|
47 |
</th>
|
48 |
<td>
|
49 |
+
<?php if ( 'custom' === $field->get_association() ) : ?>
|
50 |
<select name="field[field_type]" id="field-type">
|
51 |
<option value="<?php echo $field->get_field_type_id(); ?>"><?php echo $field->get_field_type()->get_name(); ?></option>
|
52 |
</select>
|
53 |
+
<?php else : ?>
|
54 |
<select name="field[field_type]" id="field-type">
|
55 |
<?php foreach ( $field_types as $key => &$field_type ) : ?>
|
56 |
+
<?php if ( ! in_array( $field->get_association(), $field_type->get_supported_associations() ) ) : ?>
|
57 |
<option value="<?php echo $key; ?>" disabled="disabled"><?php echo $field_type->get_name(); ?></option>
|
58 |
+
<?php else : ?>
|
59 |
<option value="<?php echo $key; ?>" <?php echo $field->get_field_type() == $field_type ? 'selected="true"' : ''; ?>><?php echo $field_type->get_name(); ?></option>
|
60 |
<?php endif; ?>
|
61 |
<?php endforeach; ?>
|
67 |
<!-- label -->
|
68 |
<tr class="form-field form-required">
|
69 |
<th scope="row">
|
70 |
+
<label> <?php _ex( 'Field Label', 'form-fields admin', 'WPBDM' ); ?> <span class="description">(<?php _ex( 'required', 'form-fields admin', 'WPBDM' ); ?>)</span></label>
|
71 |
</th>
|
72 |
<td>
|
73 |
<input name="field[label]" type="text" aria-required="true" value="<?php echo esc_attr( $field->get_label() ); ?>" />
|
77 |
<!-- description -->
|
78 |
<tr class="form-field">
|
79 |
<th scope="row">
|
80 |
+
<label> <?php _ex( 'Field description', 'form-fields admin', 'WPBDM' ); ?> <span class="description">(<?php _ex( 'optional', 'form-fields admin', 'WPBDM' ); ?>)</span></label>
|
81 |
</th>
|
82 |
<td>
|
83 |
<input name="field[description]" type="text" value="<?php echo esc_attr( $field->get_description() ); ?> " />
|
94 |
ob_end_clean();
|
95 |
?>
|
96 |
<div id="wpbdp-fieldsettings" style="<?php echo $field_settings ? '' : 'display: none;'; ?>">
|
97 |
+
<h2><?php _ex( 'Field-specific settings', 'form-fields admin', 'WPBDM' ); ?></h2>
|
98 |
<div id="wpbdp-fieldsettings-html">
|
99 |
<?php echo $field_settings; ?>
|
100 |
</div>
|
102 |
<!-- /field-specific settings -->
|
103 |
|
104 |
<!-- validation -->
|
105 |
+
<?php if ( ! $field->has_behavior_flag( 'no-validation' ) ) : ?>
|
106 |
+
<h2><?php _ex( 'Field validation options', 'form-fields admin', 'WPBDM' ); ?></h2>
|
107 |
<table class="form-table">
|
108 |
<tr>
|
109 |
<th scope="row">
|
110 |
+
<label> <?php _ex( 'Field Validator', 'form-fields admin', 'WPBDM' ); ?></label>
|
111 |
</th>
|
112 |
<td>
|
113 |
<select name="field[validators][]" id="field-validator" <?php echo ( 'social-twitter' == $field->get_field_type_id() ? 'disabled="disabled"' : '' ); ?> ?>>
|
114 |
<option value=""><?php _ex( 'No validation', 'form-fields admin', 'WPBDM' ); ?></option>
|
115 |
+
<?php foreach ( $validators as $key => $name ) : ?>
|
116 |
<?php
|
117 |
$disable_validator = ( 'url' == $field->get_field_type_id() && 'url' != $key ) ? true : false;
|
118 |
?>
|
121 |
</select>
|
122 |
</td>
|
123 |
</tr>
|
124 |
+
<tr id="wpbdp_word_count" style="<?php echo ( in_array( 'word_number', $field->get_validators() ) && in_array( $field->get_field_type()->get_id(), array( 'textfield', 'textarea' ) ) ) ? '': 'display: none'; ?>">
|
125 |
+
<th scope="row">
|
126 |
+
<label> <?php _ex('Number of words', 'form-fields admin', 'WPBDM'); ?></label>
|
127 |
+
</th>
|
128 |
+
<td>
|
129 |
+
<label>
|
130 |
+
<input name="field[word_count]" value="<?php echo $field->data( 'word_count' ) ? $field->data( 'word_count' ) : 0; ?>" type="number">
|
131 |
+
</label>
|
132 |
+
</td>
|
133 |
+
</tr>
|
134 |
<tr>
|
135 |
<th scope="row">
|
136 |
+
<label> <?php _ex( 'Is field required?', 'form-fields admin', 'WPBDM' ); ?></label>
|
137 |
</th>
|
138 |
<td>
|
139 |
<label>
|
140 |
<input name="field[validators][]"
|
141 |
value="required"
|
142 |
+
type="checkbox" <?php echo $field->is_required() ? 'checked="checked"' : ''; ?>/> <?php _ex( 'This field is required.', 'form-fields admin', 'WPBDM' ); ?>
|
143 |
</label>
|
144 |
</td>
|
145 |
</tr>
|
147 |
<?php endif; ?>
|
148 |
|
149 |
<!-- display options -->
|
150 |
+
<h2><?php _ex( 'Field display options', 'form-fields admin', 'WPBDM' ); ?></h2>
|
151 |
<table class="form-table">
|
152 |
+
<tr class="form-field limit-categories <?php echo in_array( $field->get_association(), array( 'title', 'category' ) ) ? "hidden" : '' ?>">
|
153 |
+
<th scope="row">
|
154 |
+
<label for="wpbdp-field-category-policy"><?php _ex( 'Field Category Policy:', 'form-fields admin', 'WPBDM' ); ?></label>
|
155 |
+
</th>
|
156 |
+
<td>
|
157 |
+
<select id="wpbdp-field-category-policy"
|
158 |
+
name="limit_categories">
|
159 |
+
<option value="0"><?php _ex( 'Field applies to all categories', 'form-fields admin', 'WPBDM' ); ?></option>
|
160 |
+
<option value="1" <?php selected( is_array( $field->data( 'supported_categories' ) ), true ); ?> ><?php _ex( 'Field applies to only certain categories', 'form-fields admin', 'WPBDM' ); ?></option>
|
161 |
+
</select>
|
162 |
+
|
163 |
+
<div id="limit-categories-list" class="<?php echo is_array( $field->data( 'supported_categories' ) ) ? '' : 'hidden'; ?>">
|
164 |
+
<p><span class="description"><?php _ex( 'Limit field to the following categories:', 'form-fields admin', 'WPBDM' ); ?></span></p>
|
165 |
+
<?php
|
166 |
+
$all_categories = get_terms(
|
167 |
+
array(
|
168 |
+
'taxonomy' => WPBDP_CATEGORY_TAX,
|
169 |
+
'hide_empty' => false,
|
170 |
+
'hierarchical' => true,
|
171 |
+
)
|
172 |
+
);
|
173 |
+
$supported_categories = is_array( $field->data( 'supported_categories' ) ) ? array_map( 'absint', $field->data( 'supported_categories' ) ) : array();
|
174 |
+
|
175 |
+
if ( count( $all_categories ) <= 30 ) :
|
176 |
+
foreach ( $all_categories as $category ) :
|
177 |
+
?>
|
178 |
+
<div class="wpbdp-category-item">
|
179 |
+
<label>
|
180 |
+
<input type="checkbox" name="field[supported_categories][]" value="<?php echo $category->term_id; ?>" <?php checked( in_array( (int) $category->term_id, $supported_categories ) ); ?>>
|
181 |
+
<?php echo esc_html( $category->name ); ?>
|
182 |
+
</label>
|
183 |
+
</div>
|
184 |
+
<?php
|
185 |
+
endforeach;
|
186 |
+
else :
|
187 |
+
?>
|
188 |
+
<select name="field[supported_categories][]" multiple="multiple" placeholder="<?php _ex( 'Click to add categories to the selection.', 'form-fields admin', 'WPBDM' ); ?>">
|
189 |
+
<?php foreach ( $all_categories as $category ) : ?>
|
190 |
+
<option value="<?php echo $category->term_id; ?>" <?php selected( in_array( (int) $category->term_id, $supported_categories ) ); ?>><?php echo esc_html( $category->name ); ?></option>
|
191 |
+
<?php endforeach; ?>
|
192 |
+
</select>
|
193 |
+
<?php
|
194 |
+
endif;
|
195 |
+
?>
|
196 |
+
</div>
|
197 |
+
</td>
|
198 |
+
</tr>
|
199 |
<tr id="wpbdp_private_field" class="<?php echo in_array( $field->get_association(), array( 'title', 'content', 'category' ), true ) ? 'wpbdp-hidden' : ''; ?>">
|
200 |
<th scope="row">
|
201 |
<label> <?php _ex( 'Show this field to admin users only?', 'form-fields admin', 'WPBDM' ); ?></label>
|
210 |
</tr>
|
211 |
<tr>
|
212 |
<th scope="row">
|
213 |
+
<label> <?php _ex( 'Show this value in excerpt view?', 'form-fields admin', 'WPBDM' ); ?></label>
|
214 |
</th>
|
215 |
<td>
|
216 |
<label>
|
217 |
<input name="field[display_flags][]"
|
218 |
value="excerpt"
|
219 |
+
type="checkbox" <?php echo $field->display_in( 'excerpt' ) ? 'checked="checked"' : ''; ?>/> <?php _ex( 'Display this value in post excerpt view.', 'form-fields admin', 'WPBDM' ); ?>
|
220 |
</label>
|
221 |
</td>
|
222 |
</tr>
|
223 |
<tr>
|
224 |
<th scope="row">
|
225 |
+
<label> <?php _ex( 'Show this value in listing view?', 'form-fields admin', 'WPBDM' ); ?></label>
|
226 |
</th>
|
227 |
<td>
|
228 |
<label>
|
229 |
<input name="field[display_flags][]"
|
230 |
value="listing"
|
231 |
+
type="checkbox" <?php echo $field->display_in( 'listing' ) ? 'checked="checked"' : ''; ?>/> <?php _ex( 'Display this value in the listing view.', 'form-fields admin', 'WPBDM' ); ?>
|
232 |
</label>
|
233 |
</td>
|
234 |
</tr>
|
235 |
<tr>
|
236 |
<th scope="row">
|
237 |
+
<label> <?php _ex( 'Include this field in the search form?', 'form-fields admin', 'WPBDM' ); ?></label>
|
238 |
</th>
|
239 |
<td>
|
240 |
<label>
|
241 |
<input name="field[display_flags][]"
|
242 |
value="search"
|
243 |
+
type="checkbox" <?php echo $field->display_in( 'search' ) ? 'checked="checked"' : ''; ?>/> <?php _ex( 'Include this field in the search form.', 'form-fields admin', 'WPBDM' ); ?>
|
244 |
</label>
|
245 |
</td>
|
246 |
</tr>
|
247 |
+
<tr class="if-display-in-search <?php echo ( ! $field->display_in( 'search' ) ) ? 'wpbdp-hidden' : ''; ?>">
|
248 |
<th scope="row">
|
249 |
+
<label> <?php _ex( 'Is this field required for searching?', 'form-fields admin', 'WPBDM' ); ?></label>
|
250 |
</th>
|
251 |
<td>
|
252 |
<label>
|
253 |
<input name="field[validators][]"
|
254 |
value="required-in-search"
|
255 |
+
type="checkbox" <?php echo in_array( 'required-in-search', $field->get_validators() ) ? 'checked="checked"' : ''; ?>/> <?php _ex( 'Make this fields required during searches on the Advanced Search screen.', 'form-fields admin', 'WPBDM' ); ?>
|
256 |
</label>
|
257 |
</td>
|
258 |
</tr>
|
259 |
<tr>
|
260 |
<th scope="row">
|
261 |
+
<label> <?php _ex( 'Hide this field\'s label?', 'form-fields admin', 'WPBDM' ); ?></label>
|
262 |
</th>
|
263 |
<td>
|
264 |
<label>
|
265 |
<input name="field[display_flags][]"
|
266 |
value="nolabel"
|
267 |
+
type="checkbox" <?php echo $field->has_display_flag( 'nolabel' ) ? 'checked="checked"' : ''; ?>/> <?php _ex( 'Hide this field\'s label when displaying it.', 'form-fields admin', 'WPBDM' ); ?>
|
268 |
</label>
|
269 |
</td>
|
270 |
</tr>
|
271 |
</table>
|
272 |
|
273 |
+
<?php if ( $field->get_id() ) : ?>
|
274 |
+
<?php echo submit_button( _x( 'Update Field', 'form-fields admin', 'WPBDM' ) ); ?>
|
275 |
+
<?php else : ?>
|
276 |
+
<?php echo submit_button( _x( 'Add Field', 'form-fields admin', 'WPBDM' ) ); ?>
|
277 |
<?php endif; ?>
|
278 |
</form>
|
279 |
|