Business Directory Plugin - Version 5.2

Version Description

Download this release

Release Info

Developer businessdirectoryplugin
Plugin Icon 128x128 Business Directory Plugin
Version 5.2
Comparing to
See all releases

Code changes from version 5.1.9 to 5.2

Files changed (56) hide show
  1. README.TXT +12 -2
  2. assets/js/submit-listing.js +3 -0
  3. assets/js/submit-listing.min.js +1 -1
  4. business-directory-plugin.php +1 -1
  5. includes/admin/class-admin.php +1 -1
  6. includes/admin/settings/class-settings-admin.php +21 -3
  7. includes/admin/settings/class-settings-bootstrap.php +4 -3
  8. includes/admin/tracking.php +1 -1
  9. includes/class-listing-email-notification.php +25 -4
  10. includes/class-listing.php +26 -2
  11. includes/class-rewrite.php +9 -3
  12. includes/class-shortcodes.php +103 -36
  13. includes/class-wpbdp.php +10 -2
  14. includes/compatibility/class-compat.php +6 -1
  15. includes/compatibility/class-custom-permalinks-integration.php +27 -0
  16. includes/compatibility/class-wpml-compat.php +22 -0
  17. includes/fields/class-fieldtypes-image.php +1 -1
  18. includes/fields/class-fieldtypes-linkedin.php +1 -1
  19. includes/fields/class-fieldtypes-url.php +2 -2
  20. includes/fields/class-form-field-type.php +9 -3
  21. includes/functions.php +15 -0
  22. includes/helpers/class-listing-display-helper.php +2 -1
  23. includes/templates-ui.php +5 -3
  24. includes/utils.php +12 -2
  25. includes/views/all_listings.php +6 -1
  26. includes/views/submit_listing.php +13 -5
  27. languages/WPBDM-ar.mo +0 -0
  28. languages/WPBDM-ar.po +177 -131
  29. languages/WPBDM-de_DE.mo +0 -0
  30. languages/WPBDM-de_DE.po +172 -130
  31. languages/WPBDM-en_US.mo +0 -0
  32. languages/WPBDM-en_US.po +165 -114
  33. languages/WPBDM-es_ES.mo +0 -0
  34. languages/WPBDM-es_ES.po +166 -131
  35. languages/WPBDM-fr_FR.mo +0 -0
  36. languages/WPBDM-fr_FR.po +172 -130
  37. languages/WPBDM-nl_NL.mo +0 -0
  38. languages/WPBDM-nl_NL.po +172 -126
  39. languages/WPBDM-pl_PL.mo +0 -0
  40. languages/WPBDM-pl_PL.po +182 -134
  41. languages/WPBDM-ru_RU.mo +0 -0
  42. languages/WPBDM-ru_RU.po +173 -130
  43. languages/WPBDM-sv_SE.mo +0 -0
  44. languages/WPBDM-sv_SE.po +172 -130
  45. languages/WPBDM.pot +166 -115
  46. templates/admin/csv-export.tpl.php +2 -2
  47. templates/admin/csv-import.tpl.php +1 -1
  48. templates/admin/fees-index.tpl.php +3 -3
  49. templates/admin/form-fields.tpl.php +1 -1
  50. templates/admin/home.tpl.php +3 -3
  51. templates/admin/metaboxes-listing-information-plan.tpl.php +5 -1
  52. templates/admin/sidebar.tpl.php +7 -7
  53. templates/admin/themes.tpl.php +1 -1
  54. templates/email/listing-added.tpl.php +19 -2
  55. templates/listings.tpl.php +15 -8
  56. templates/parts/listing-buttons.tpl.php +1 -1
README.TXT CHANGED
@@ -5,8 +5,8 @@ Tags: business directory, directory plugin, company business directory, chamber
5
  Requires at least: 4.3
6
  Requires PHP: 5.6
7
  Tested up to: 4.9
8
- Last Updated: 2018-Mar-2
9
- Stable tag: 5.1.9
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!
@@ -142,6 +142,16 @@ If you are having problems please visit [support forum](http://www.businessdirec
142
 
143
 
144
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
145
  = Version 5.1.9 =
146
  * Fix CSV Importer to create initial payment for imported listings.
147
  * Do not renew listings with pending initial payments.
5
  Requires at least: 4.3
6
  Requires PHP: 5.6
7
  Tested up to: 4.9
8
+ Last Updated: 2018-Apr-3
9
+ Stable tag: 5.2
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!
142
 
143
 
144
  == Changelog ==
145
+ = Version 5.2 =
146
+ * Add pagination to Latest, Random, Featured listings shortcodes.
147
+ * Add [placeholders] to email notice templates.
148
+ * Fix links where target="_blank" to include additional parameter to avoid XRF.
149
+ * Prevent Link opens same page in listing view.
150
+ * Update Scroll after plan selection and display T&C as last section in submit listing.
151
+ * Add compatibility with Custom Permalinks plugin.
152
+ * Add thumbnail and listing images compatibility for WPML translations.
153
+ * Minor fixes for New Listing Notification email template.
154
+
155
  = Version 5.1.9 =
156
  * Fix CSV Importer to create initial payment for imported listings.
157
  * Do not renew listings with pending initial payments.
assets/js/submit-listing.js CHANGED
@@ -376,6 +376,9 @@ jQuery(function($) {
376
 
377
  self.ajax( data, function( res ) {
378
  self.refresh( res );
 
 
 
379
  } );
380
  } );
381
 
376
 
377
  self.ajax( data, function( res ) {
378
  self.refresh( res );
379
+ $( 'html, body' ).delay(100).animate({
380
+ scrollTop: self.$form.find('.wpbdp-submit-listing-section-plan_selection').offset().top
381
+ }, 500);
382
  } );
383
  } );
384
 
assets/js/submit-listing.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(function($){var wpbdp=window.wpbdp||{};wpbdp.submit_listing=wpbdp.submit_listing||{},wpbdp.submit_listing.Fee_Selection_Helper=function($submit,editing){this.editing=!("undefined"==typeof editing||!editing),this.reset()},$.extend(wpbdp.submit_listing.Fee_Selection_Helper.prototype,{reset:function(){this.field_wrapper=$(".wpbdp-form-field-association-category"),this.field_type="",this.plan_autoselect=!1,$(".wpbdp-js-select2",this.field_wrapper).length>0?this.field_type="select2":this.field_wrapper.hasClass("wpbdp-form-field-type-checkbox")?this.field_type="checkbox":this.field_wrapper.hasClass("wpbdp-form-field-type-radio")&&(this.field_type="radio"),this.field=this.field_wrapper.find('select, input[type="checkbox"], input[type="radio"]'),this.field_type&&("select2"==this.field_type&&this.field.find('option[disabled="disabled"]').data("keep_disabled",!0),this.editing||(this.skip_plan_selection=1==$('input[type="hidden"][name="skip_plan_selection"][value="1"]').length,this.skip_plan_selection||(this.$plans_container=$(".wpbdp-plan-selection-wrapper"),this.$plan_selection=this.$plans_container.find(".wpbdp-plan-selection"),this.plans=this.$plan_selection.find(".wpbdp-plan"),this.$plan_selection.hide(),this.selected_categories=[],this.available_plans=this.plans.map(function(){return $(this).data("id")}).get(),this.field.change($.proxy(this.categories_changed,this)),this.maybe_limit_category_options(),this.field.first().trigger("change"))))},categories_changed:function(){this.selected_categories=[],"select2"==this.field_type?this.selected_categories=this.field.val():"checkbox"==this.field_type?this.selected_categories=this.field.filter(":checked").map(function(){return $(this).val()}).get():"radio"==this.field_type&&(this.selected_categories=this.field.val()),this.selected_categories||(this.selected_categories=[]),$.isArray(this.selected_categories)||(this.selected_categories=[this.selected_categories]),this.selected_categories||(this.selected_categories=[]),this.selected_categories=$.map(this.selected_categories,function(x){return parseInt(x)}),this.update_plan_list(),this.update_plan_prices(),("checkbox"==this.field_type||this.field.is("[multiple]"))&&this.maybe_limit_category_options(),0==this.selected_categories.length?this.plans.find('input[name="listing_plan"]').prop({disabled:0==this.selected_categories.length,checked:!1}):this.plans.find('input[name="listing_plan"]').prop("disabled",!1);var self=this;if(this.selected_categories.length>0?(this.$plans_container.show(),Reusables.Breakpoints.evaluate(),this.$plan_selection.fadeIn("fast")):this.$plans_container.fadeOut("fast",function(){self.$plan_selection.hide()}),"select2"==this.field_type){var self=this;setTimeout(function(){self.field.select2({placeholder:wpbdpSubmitListingL10n.categoriesPlaceholderTxt})})}1===self.available_plans.length&&this.plan_autoselect&&$("#wpbdp-plan-select-radio-"+self.available_plans[0]).trigger("click"),this.plan_autoselect||(this.plan_autoselect=!0)},_enable_categories:function(categories){return"none"!=categories&&"all"!=categories&&this._enable_categories("none"),"none"==categories||"all"==categories?void("select2"==this.field_type?this.field.find("option").each(function(i,v){!0===$(this).data("keep_disabled")||$(this).prop("disabled","all"!=categories)}):(this.field.prop("disabled","all"!=categories),"all"==categories?this.field_wrapper.find(".wpbdp-form-field-checkbox-item, .wpbdp-form-field-radio-item").removeClass("disabled"):this.field_wrapper.find(".wpbdp-form-field-checkbox-item, .wpbdp-form-field-radio-item").addClass("disabled"))):void("select2"==this.field_type?this.field.find("option").each(function(i,v){!0===$(this).data("keep_disabled")||$(this).prop("disabled",-1==$.inArray(parseInt($(this).val()),categories))}):this.field.each(function(i,v){-1!=$.inArray(parseInt($(this).val()),categories)&&($(this).prop("disabled",!1),$(this).parents().filter(".wpbdp-form-field-checkbox-item, .wpbdp-form-field-radio-item").removeClass("disabled"))}))},maybe_limit_category_options:function(){var all_cats=!1,cats=[],self=this;$.each(this.available_plans,function(i,v){if(!all_cats){var plan_cats=self.plans.filter('[data-id="'+v+'"]').data("categories");"all"==plan_cats?all_cats=!0:(cats=$.unique(cats.concat(plan_cats.toString().split(","))),cats=$.map(cats,function(x){return parseInt(x)}))}}),all_cats?this._enable_categories("all"):this._enable_categories(cats)},update_plan_list:function(){var self=this,plans=[];$.each(this.plans,function(i,v){var $plan=$(v),plan_cats=$plan.data("categories").toString(),plan_supports_selection=!0;"all"!=plan_cats&&self.selected_categories&&(plan_cats=$.map(plan_cats.split(","),function(x){return parseInt(x)}),$.each(self.selected_categories,function(j,c){plan_supports_selection&&-1==$.inArray(c,plan_cats)&&(plan_supports_selection=!1)})),plan_supports_selection?(plans.push($plan.data("id")),$plan.show()):$plan.hide()}),self.available_plans=plans},update_plan_prices:function(){var self=this;$.each(self.available_plans,function(i,plan_id){var $plan=self.plans.filter('[data-id="'+plan_id+'"]'),pricing=$plan.data("pricing-details"),price=null;switch($plan.data("pricing-model")){case"variable":price=0,$.each(self.selected_categories,function(j,cat_id){price+=parseFloat(pricing[cat_id])});break;case"extra":price=parseFloat($plan.data("amount"))+parseFloat(pricing.extra)*self.selected_categories.length;break;case"flat":default:price=parseFloat($plan.data("amount"))}$plan.find(".wpbdp-plan-price-amount").text(price?$plan.data("amount-format").replace("[amount]",price.toFixed(2)):$plan.data("free-text")),1===self.available_plans.length&&$plan.find("#wpbdp-plan-select-radio-"+plan_id).prop("checked",!0)})}}),wpbdp.submit_listing.Handler=function($submit){this.$submit=$submit,this.$form=this.$submit.find("form"),this.editing="1"==this.$form.find('input[name="editing"]').val(),this.$sections=this.$submit.find(".wpbdp-submit-listing-section"),this.listing_id=this.$form.find('input[name="listing_id"]').val(),this.ajax_url=this.$form.attr("data-ajax-url"),this.doing_ajax=!1,this.setup_section_headers(),this.plan_handling();var self=this;this.$form.on("click",":reset",function(e){e.preventDefault(),self.$form.find('input[name="save_listing"]').val(""),self.$form.find('input[name="reset"]').val("reset"),self.$form.submit()}),$(window).on("wpbdp_submit_refresh",function(event,submit,section_id){self.fee_helper.reset()}),$("#wpbdp-submit-listing").on("change","#wpbdp-submit-listing-create_account",function(e){$("#wpbdp-submit-listing-account-details").toggle()}),$("#wpbdp-submit-listing").on("keyup",'#wpbdp-submit-listing-account-details input[type="password"]',function(e){self.check_password_strength($(this))}),$("#wpbdp-submit-listing").on("click",".wpbdp-inner-field-option-select_all",function(e){var $options=$(this).parent().find('input[type="checkbox"]');$options.prop("checked",$(this).find("input").is(":checked"))}),$(window).trigger("wpbdp_submit_init")},$.extend(wpbdp.submit_listing.Handler.prototype,{ajax:function(data,callback){if(this.doing_ajax)return void alert("Please wait a moment!");this.doing_ajax=!0;var self=this;$.post(this.ajax_url,data,function(res){return res.success?(self.doing_ajax=!1,void callback.call(self,res.data)):void alert("Something went wrong!")},"json")},setup_section_headers:function(){this.$sections.find(".wpbdp-submit-listing-section-header").click(function(){var $section=$(this).parent(".wpbdp-submit-listing-section");$section.toggleClass("collapsed")})},plan_handling:function(){if(this.fee_helper=new wpbdp.submit_listing.Fee_Selection_Helper(this.$submit,this.editing),this.skip_plan_selection=1==$('input[type="hidden"][name="skip_plan_selection"][value="1"]').length,this.editing){var $plan=this.$form.find(this.skip_plan_selection?".wpbdp-plan-selection .wpbdp-plan":".wpbdp-current-plan .wpbdp-plan"),plan_cats=$plan.length?$plan.data("categories").toString():"";if("all"!=plan_cats){var supported_categories=$.map($.unique(plan_cats.split(",")),function(x){return parseInt(x)});this.fee_helper._enable_categories(supported_categories)}}else{var self=this;this.$submit.on("change, click",'input[name="listing_plan"]',function(){if(1==$(this).parents(".wpbdp-plan").attr("data-disabled"))return!1;var data=self.$form.serialize();data+="&action=wpbdp_ajax&handler=submit_listing__sections",self.ajax(data,function(res){self.refresh(res)})}),this.$submit.on("click","#change-plan-link a",function(e){e.preventDefault();var data=self.$form.serialize();data+="&action=wpbdp_ajax&handler=submit_listing__reset_plan",self.ajax(data,function(res){self.refresh(res)})})}},refresh:function(data){var sections=data.sections,current_sections=(data.messages,this.$form.find(".wpbdp-submit-listing-section")),new_sections=sections,self=this;$.each(new_sections,function(section_id,section_details){var $section=current_sections.filter('[data-section-id="'+section_id+'"]'),$new_html=$(section_details.html);$section.find(".wpbdp-editor-area").each(function(){wp.editor.remove($(this).attr("id"))}),$section.attr("class",$new_html.attr("class")),$section.find(".wpbdp-submit-listing-section-content").fadeOut("fast",function(){var $new_content=$new_html.find(".wpbdp-submit-listing-section-content");$(this).replaceWith($new_content),Reusables.Breakpoints.scan($new_content),$section.find(".wpbdp-editor-area").each(function(){var id=$(this).attr("id");wp.editor.initialize(id,WPBDPTinyMCESettings[id])}),$(window).trigger("wpbdp_submit_refresh",[self,section_id,$section])})})},check_password_strength:function($input){var pass=$input.val(),$result=$input.siblings(".wpbdp-password-strength-meter");if($result.removeClass("strength-0 strength-2 strength-3 strength-4").html(""),pass){var strength=wp.passwordStrength.meter(pass,wp.passwordStrength.userInputBlacklist(),""),strength_msg="";switch(strength){case 2:strength_msg=pwsL10n.bad;break;case 3:strength_msg=pwsL10n.good;break;case 4:strength_msg=pwsL10n.strong;break;case 5:strength_msg=pwsL10n.mismatch;break;default:strength_msg=pwsL10n["short"]}$result.addClass("strength-"+(strength<5&&strength>=2?strength:"0")),$result.html(strength_msg)}}});var $submit=$("#wpbdp-submit-listing");if($(window).on("wpbdp_submit_init",function(){$submit.find(".wpbdp-editor-area").each(function(){var id=$(this).attr("id");wp.editor.initialize(id,WPBDPTinyMCESettings[id])})}),$submit.length>0){new wpbdp.submit_listing.Handler($submit)}});
1
+ jQuery(function($){var wpbdp=window.wpbdp||{};wpbdp.submit_listing=wpbdp.submit_listing||{},wpbdp.submit_listing.Fee_Selection_Helper=function($submit,editing){this.editing=!("undefined"==typeof editing||!editing),this.reset()},$.extend(wpbdp.submit_listing.Fee_Selection_Helper.prototype,{reset:function(){this.field_wrapper=$(".wpbdp-form-field-association-category"),this.field_type="",this.plan_autoselect=!1,$(".wpbdp-js-select2",this.field_wrapper).length>0?this.field_type="select2":this.field_wrapper.hasClass("wpbdp-form-field-type-checkbox")?this.field_type="checkbox":this.field_wrapper.hasClass("wpbdp-form-field-type-radio")&&(this.field_type="radio"),this.field=this.field_wrapper.find('select, input[type="checkbox"], input[type="radio"]'),this.field_type&&("select2"==this.field_type&&this.field.find('option[disabled="disabled"]').data("keep_disabled",!0),this.editing||(this.skip_plan_selection=1==$('input[type="hidden"][name="skip_plan_selection"][value="1"]').length,this.skip_plan_selection||(this.$plans_container=$(".wpbdp-plan-selection-wrapper"),this.$plan_selection=this.$plans_container.find(".wpbdp-plan-selection"),this.plans=this.$plan_selection.find(".wpbdp-plan"),this.$plan_selection.hide(),this.selected_categories=[],this.available_plans=this.plans.map(function(){return $(this).data("id")}).get(),this.field.change($.proxy(this.categories_changed,this)),this.maybe_limit_category_options(),this.field.first().trigger("change"))))},categories_changed:function(){this.selected_categories=[],"select2"==this.field_type?this.selected_categories=this.field.val():"checkbox"==this.field_type?this.selected_categories=this.field.filter(":checked").map(function(){return $(this).val()}).get():"radio"==this.field_type&&(this.selected_categories=this.field.val()),this.selected_categories||(this.selected_categories=[]),$.isArray(this.selected_categories)||(this.selected_categories=[this.selected_categories]),this.selected_categories||(this.selected_categories=[]),this.selected_categories=$.map(this.selected_categories,function(x){return parseInt(x)}),this.update_plan_list(),this.update_plan_prices(),("checkbox"==this.field_type||this.field.is("[multiple]"))&&this.maybe_limit_category_options(),0==this.selected_categories.length?this.plans.find('input[name="listing_plan"]').prop({disabled:0==this.selected_categories.length,checked:!1}):this.plans.find('input[name="listing_plan"]').prop("disabled",!1);var self=this;if(this.selected_categories.length>0?(this.$plans_container.show(),Reusables.Breakpoints.evaluate(),this.$plan_selection.fadeIn("fast")):this.$plans_container.fadeOut("fast",function(){self.$plan_selection.hide()}),"select2"==this.field_type){var self=this;setTimeout(function(){self.field.select2({placeholder:wpbdpSubmitListingL10n.categoriesPlaceholderTxt})})}1===self.available_plans.length&&this.plan_autoselect&&$("#wpbdp-plan-select-radio-"+self.available_plans[0]).trigger("click"),this.plan_autoselect||(this.plan_autoselect=!0)},_enable_categories:function(categories){return"none"!=categories&&"all"!=categories&&this._enable_categories("none"),"none"==categories||"all"==categories?void("select2"==this.field_type?this.field.find("option").each(function(i,v){!0===$(this).data("keep_disabled")||$(this).prop("disabled","all"!=categories)}):(this.field.prop("disabled","all"!=categories),"all"==categories?this.field_wrapper.find(".wpbdp-form-field-checkbox-item, .wpbdp-form-field-radio-item").removeClass("disabled"):this.field_wrapper.find(".wpbdp-form-field-checkbox-item, .wpbdp-form-field-radio-item").addClass("disabled"))):void("select2"==this.field_type?this.field.find("option").each(function(i,v){!0===$(this).data("keep_disabled")||$(this).prop("disabled",-1==$.inArray(parseInt($(this).val()),categories))}):this.field.each(function(i,v){-1!=$.inArray(parseInt($(this).val()),categories)&&($(this).prop("disabled",!1),$(this).parents().filter(".wpbdp-form-field-checkbox-item, .wpbdp-form-field-radio-item").removeClass("disabled"))}))},maybe_limit_category_options:function(){var all_cats=!1,cats=[],self=this;$.each(this.available_plans,function(i,v){if(!all_cats){var plan_cats=self.plans.filter('[data-id="'+v+'"]').data("categories");"all"==plan_cats?all_cats=!0:(cats=$.unique(cats.concat(plan_cats.toString().split(","))),cats=$.map(cats,function(x){return parseInt(x)}))}}),all_cats?this._enable_categories("all"):this._enable_categories(cats)},update_plan_list:function(){var self=this,plans=[];$.each(this.plans,function(i,v){var $plan=$(v),plan_cats=$plan.data("categories").toString(),plan_supports_selection=!0;"all"!=plan_cats&&self.selected_categories&&(plan_cats=$.map(plan_cats.split(","),function(x){return parseInt(x)}),$.each(self.selected_categories,function(j,c){plan_supports_selection&&-1==$.inArray(c,plan_cats)&&(plan_supports_selection=!1)})),plan_supports_selection?(plans.push($plan.data("id")),$plan.show()):$plan.hide()}),self.available_plans=plans},update_plan_prices:function(){var self=this;$.each(self.available_plans,function(i,plan_id){var $plan=self.plans.filter('[data-id="'+plan_id+'"]'),pricing=$plan.data("pricing-details"),price=null;switch($plan.data("pricing-model")){case"variable":price=0,$.each(self.selected_categories,function(j,cat_id){price+=parseFloat(pricing[cat_id])});break;case"extra":price=parseFloat($plan.data("amount"))+parseFloat(pricing.extra)*self.selected_categories.length;break;case"flat":default:price=parseFloat($plan.data("amount"))}$plan.find(".wpbdp-plan-price-amount").text(price?$plan.data("amount-format").replace("[amount]",price.toFixed(2)):$plan.data("free-text")),1===self.available_plans.length&&$plan.find("#wpbdp-plan-select-radio-"+plan_id).prop("checked",!0)})}}),wpbdp.submit_listing.Handler=function($submit){this.$submit=$submit,this.$form=this.$submit.find("form"),this.editing="1"==this.$form.find('input[name="editing"]').val(),this.$sections=this.$submit.find(".wpbdp-submit-listing-section"),this.listing_id=this.$form.find('input[name="listing_id"]').val(),this.ajax_url=this.$form.attr("data-ajax-url"),this.doing_ajax=!1,this.setup_section_headers(),this.plan_handling();var self=this;this.$form.on("click",":reset",function(e){e.preventDefault(),self.$form.find('input[name="save_listing"]').val(""),self.$form.find('input[name="reset"]').val("reset"),self.$form.submit()}),$(window).on("wpbdp_submit_refresh",function(event,submit,section_id){self.fee_helper.reset()}),$("#wpbdp-submit-listing").on("change","#wpbdp-submit-listing-create_account",function(e){$("#wpbdp-submit-listing-account-details").toggle()}),$("#wpbdp-submit-listing").on("keyup",'#wpbdp-submit-listing-account-details input[type="password"]',function(e){self.check_password_strength($(this))}),$("#wpbdp-submit-listing").on("click",".wpbdp-inner-field-option-select_all",function(e){var $options=$(this).parent().find('input[type="checkbox"]');$options.prop("checked",$(this).find("input").is(":checked"))}),$(window).trigger("wpbdp_submit_init")},$.extend(wpbdp.submit_listing.Handler.prototype,{ajax:function(data,callback){if(this.doing_ajax)return void alert("Please wait a moment!");this.doing_ajax=!0;var self=this;$.post(this.ajax_url,data,function(res){return res.success?(self.doing_ajax=!1,void callback.call(self,res.data)):void alert("Something went wrong!")},"json")},setup_section_headers:function(){this.$sections.find(".wpbdp-submit-listing-section-header").click(function(){var $section=$(this).parent(".wpbdp-submit-listing-section");$section.toggleClass("collapsed")})},plan_handling:function(){if(this.fee_helper=new wpbdp.submit_listing.Fee_Selection_Helper(this.$submit,this.editing),this.skip_plan_selection=1==$('input[type="hidden"][name="skip_plan_selection"][value="1"]').length,this.editing){var $plan=this.$form.find(this.skip_plan_selection?".wpbdp-plan-selection .wpbdp-plan":".wpbdp-current-plan .wpbdp-plan"),plan_cats=$plan.length?$plan.data("categories").toString():"";if("all"!=plan_cats){var supported_categories=$.map($.unique(plan_cats.split(",")),function(x){return parseInt(x)});this.fee_helper._enable_categories(supported_categories)}}else{var self=this;this.$submit.on("change, click",'input[name="listing_plan"]',function(){if(1==$(this).parents(".wpbdp-plan").attr("data-disabled"))return!1;var data=self.$form.serialize();data+="&action=wpbdp_ajax&handler=submit_listing__sections",self.ajax(data,function(res){self.refresh(res),$("html, body").delay(100).animate({scrollTop:self.$form.find(".wpbdp-submit-listing-section-plan_selection").offset().top},500)})}),this.$submit.on("click","#change-plan-link a",function(e){e.preventDefault();var data=self.$form.serialize();data+="&action=wpbdp_ajax&handler=submit_listing__reset_plan",self.ajax(data,function(res){self.refresh(res)})})}},refresh:function(data){var sections=data.sections,current_sections=(data.messages,this.$form.find(".wpbdp-submit-listing-section")),new_sections=sections,self=this;$.each(new_sections,function(section_id,section_details){var $section=current_sections.filter('[data-section-id="'+section_id+'"]'),$new_html=$(section_details.html);$section.find(".wpbdp-editor-area").each(function(){wp.editor.remove($(this).attr("id"))}),$section.attr("class",$new_html.attr("class")),$section.find(".wpbdp-submit-listing-section-content").fadeOut("fast",function(){var $new_content=$new_html.find(".wpbdp-submit-listing-section-content");$(this).replaceWith($new_content),Reusables.Breakpoints.scan($new_content),$section.find(".wpbdp-editor-area").each(function(){var id=$(this).attr("id");wp.editor.initialize(id,WPBDPTinyMCESettings[id])}),$(window).trigger("wpbdp_submit_refresh",[self,section_id,$section])})})},check_password_strength:function($input){var pass=$input.val(),$result=$input.siblings(".wpbdp-password-strength-meter");if($result.removeClass("strength-0 strength-2 strength-3 strength-4").html(""),pass){var strength=wp.passwordStrength.meter(pass,wp.passwordStrength.userInputBlacklist(),""),strength_msg="";switch(strength){case 2:strength_msg=pwsL10n.bad;break;case 3:strength_msg=pwsL10n.good;break;case 4:strength_msg=pwsL10n.strong;break;case 5:strength_msg=pwsL10n.mismatch;break;default:strength_msg=pwsL10n["short"]}$result.addClass("strength-"+(strength<5&&strength>=2?strength:"0")),$result.html(strength_msg)}}});var $submit=$("#wpbdp-submit-listing");if($(window).on("wpbdp_submit_init",function(){$submit.find(".wpbdp-editor-area").each(function(){var id=$(this).attr("id");wp.editor.initialize(id,WPBDPTinyMCESettings[id])})}),$submit.length>0){new wpbdp.submit_listing.Handler($submit)}});
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.1.9
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.2
7
  * Author: D. Rodenbaugh
8
  * Author URI: https://businessdirectoryplugin.com
9
  * Text Domain: WPBDM
includes/admin/class-admin.php CHANGED
@@ -232,7 +232,7 @@ to how WordPress stores the data.", 'WPBDM' )
232
 
233
  $res = new WPBDP_Ajax_Response();
234
  $res->set_message( str_replace( '<a>',
235
- '<a href="' . get_permalink( $page_id ) . '" target="_blank">',
236
  _x( 'You\'re all set. Visit your new <a>Business Directory</a> page.', 'admin', 'WPBDM' ) ) );
237
  $res->send();
238
  }
232
 
233
  $res = new WPBDP_Ajax_Response();
234
  $res->set_message( str_replace( '<a>',
235
+ '<a href="' . get_permalink( $page_id ) . '" target="_blank" rel="noopener">',
236
  _x( 'You\'re all set. Visit your new <a>Business Directory</a> page.', 'admin', 'WPBDM' ) ) );
237
  $res->send();
238
  }
includes/admin/settings/class-settings-admin.php CHANGED
@@ -392,7 +392,18 @@ class WPBDP__Settings_Admin {
392
  'email_body' => $notice['body'],
393
  'extra_fields' => $this->setting_expiration_notices_email_extra_fields( 'wpbdp_settings[' . $setting['id'] . '][' . $i . ']', $uid, $notice ),
394
  'after_container' => $this->setting_expiration_notices_email_summary( $notice ),
395
- 'before_buttons' => '<a href="#" class="delete">' . _x( 'Delete', 'expiration notices', 'WPBDM' ) . '</a>'
 
 
 
 
 
 
 
 
 
 
 
396
  );
397
 
398
  echo wpbdp_render_page( WPBDP_PATH . 'templates/admin/settings-email.tpl.php', $vars );
@@ -491,7 +502,14 @@ class WPBDP__Settings_Admin {
491
 
492
  private function setting_expiration_notices_email_extra_fields( $name, $uid, $notice ) {
493
  if ( is_null( $notice ) ) {
494
- $notice = array( 'event' => 'expiration', 'listings' => 'both', 'relative_time' => '0 days', 'subject' => '', 'body' => '' );
 
 
 
 
 
 
 
495
  }
496
 
497
  ob_start();
@@ -525,7 +543,7 @@ class WPBDP__Settings_Admin {
525
  <?php endforeach; ?>
526
  </select>
527
  </td>
528
- </tr>
529
  <?php
530
  return ob_get_clean();
531
  }
392
  'email_body' => $notice['body'],
393
  'extra_fields' => $this->setting_expiration_notices_email_extra_fields( 'wpbdp_settings[' . $setting['id'] . '][' . $i . ']', $uid, $notice ),
394
  'after_container' => $this->setting_expiration_notices_email_summary( $notice ),
395
+ 'before_buttons' => '<a href="#" class="delete">' . _x( 'Delete', 'expiration notices', 'WPBDM' ) . '</a>',
396
+ 'placeholders' =>
397
+ array(
398
+ 'site' => _x( 'Site title (with link)', 'settings', 'WPBDM' ),
399
+ 'author' => _x( 'Author\'s name', 'settings', 'WPBDM' ),
400
+ 'listing' => _x( 'Listing\'s name (with link)', 'settings', 'WPBDM' ),
401
+ 'expiration' => _x( 'Listing\'s expiration date', 'settings', 'WPBDM' ),
402
+ 'link' => _x( 'Listing\'s renewal link', 'settings', 'WPBDM' ),
403
+ 'category' => _x( 'Listing\'s categories', 'settings', 'WPBDM' ),
404
+ 'payment_date' => _x( 'Listing\'s last payment date', 'settings', 'WPBDM' ),
405
+ 'access_key' => _x( 'Listing\'s access key', 'settings', 'WPBDM' ),
406
+ ),
407
  );
408
 
409
  echo wpbdp_render_page( WPBDP_PATH . 'templates/admin/settings-email.tpl.php', $vars );
502
 
503
  private function setting_expiration_notices_email_extra_fields( $name, $uid, $notice ) {
504
  if ( is_null( $notice ) ) {
505
+ $notice = array(
506
+ 'event' => 'expiration',
507
+ 'listings' => 'both',
508
+ 'relative_time' => '0 days',
509
+ 'subject' => '',
510
+ 'body' => '',
511
+ 'placeholders' => array(),
512
+ );
513
  }
514
 
515
  ob_start();
543
  <?php endforeach; ?>
544
  </select>
545
  </td>
546
+ </tr>
547
  <?php
548
  return ob_get_clean();
549
  }
includes/admin/settings/class-settings-bootstrap.php CHANGED
@@ -77,7 +77,7 @@ final class WPBDP__Settings__Bootstrap {
77
  _x( 'reCAPTCHA', 'settings', 'WPBDM' ),
78
  'general',
79
  array(
80
- 'desc' => str_replace( '<a>', '<a href="http://www.google.com/recaptcha" target="_blank">', _x( 'Need API keys for reCAPTCHA? Get them <a>here</a>.', 'settings', 'WPBDM' ) )
81
  )
82
  );
83
  wpbdp_register_setting( array(
@@ -195,7 +195,7 @@ final class WPBDP__Settings__Bootstrap {
195
  'id' => 'tracking-on',
196
  'type' => 'checkbox',
197
  'name' => _x( 'Allow BD to anonymously collect information about your installed plugins, themes and WP version?', 'settings', 'WPBDM' ),
198
- 'desc' => str_replace( '<a>', '<a href="http://businessdirectoryplugin.com/what-we-track/" target="_blank">', _x( '<a>Learn more</a> about what BD does and does NOT track.', 'admin settings', 'WPBDM' ) ),
199
  'group' => 'tracking_settings'
200
  ) );
201
 
@@ -254,7 +254,7 @@ final class WPBDP__Settings__Bootstrap {
254
  'type' => 'checkbox',
255
  'name' => _x( 'Enable AJAX compatibility mode?', 'settings', 'WPBDM' ),
256
  'desc' => _x( 'Check this if you are having trouble with BD, particularly when importing or exporting CSV files.', 'admin settings', 'WPBDM' )
257
- . ' ' . str_replace( '<a>', '<a href="http://businessdirectoryplugin.com/support-forum/faq/how-to-check-for-plugin-and-theme-conflicts-with-bd/" target="_blank">', _x( 'If this compatibility mode doesn\'t solve your issue, you may be experiencing a more serious conflict. <a>Here is an article</a> about how to test for theme and plugin conflicts with Business Directory.', 'settings', 'WPBDM' ) ),
258
  'group' => 'general/advanced',
259
  'on_update' => array( __CLASS__, 'setup_ajax_compat_mode' )
260
  ) );
@@ -1098,6 +1098,7 @@ final class WPBDP__Settings__Bootstrap {
1098
  /* listing-autorenewal-message, after IPN notification of renewal of recurring */
1099
  $notices[] = array(
1100
  'event' => 'renewal',
 
1101
  'listings' => 'recurring',
1102
  'subject' => '[[site-title]] [listing] renewed',
1103
  'body' => "Hey [author],\n\nThanks for your payment. We just renewed your listing [listing] on [payment_date] for another period.\n\nIf you have any questions, contact us at [site]."
77
  _x( 'reCAPTCHA', 'settings', 'WPBDM' ),
78
  'general',
79
  array(
80
+ 'desc' => str_replace( '<a>', '<a href="http://www.google.com/recaptcha" target="_blank" rel="noopener">', _x( 'Need API keys for reCAPTCHA? Get them <a>here</a>.', 'settings', 'WPBDM' ) )
81
  )
82
  );
83
  wpbdp_register_setting( array(
195
  'id' => 'tracking-on',
196
  'type' => 'checkbox',
197
  'name' => _x( 'Allow BD to anonymously collect information about your installed plugins, themes and WP version?', 'settings', 'WPBDM' ),
198
+ 'desc' => str_replace( '<a>', '<a href="http://businessdirectoryplugin.com/what-we-track/" target="_blank" rel="noopener">', _x( '<a>Learn more</a> about what BD does and does NOT track.', 'admin settings', 'WPBDM' ) ),
199
  'group' => 'tracking_settings'
200
  ) );
201
 
254
  'type' => 'checkbox',
255
  'name' => _x( 'Enable AJAX compatibility mode?', 'settings', 'WPBDM' ),
256
  'desc' => _x( 'Check this if you are having trouble with BD, particularly when importing or exporting CSV files.', 'admin settings', 'WPBDM' )
257
+ . ' ' . str_replace( '<a>', '<a href="http://businessdirectoryplugin.com/support-forum/faq/how-to-check-for-plugin-and-theme-conflicts-with-bd/" target="_blank" rel="noopener">', _x( 'If this compatibility mode doesn\'t solve your issue, you may be experiencing a more serious conflict. <a>Here is an article</a> about how to test for theme and plugin conflicts with Business Directory.', 'settings', 'WPBDM' ) ),
258
  'group' => 'general/advanced',
259
  'on_update' => array( __CLASS__, 'setup_ajax_compat_mode' )
260
  ) );
1098
  /* listing-autorenewal-message, after IPN notification of renewal of recurring */
1099
  $notices[] = array(
1100
  'event' => 'renewal',
1101
+ 'relative_time' => '0 days',
1102
  'listings' => 'recurring',
1103
  'subject' => '[[site-title]] [listing] renewed',
1104
  'body' => "Hey [author],\n\nThanks for your payment. We just renewed your listing [listing] on [payment_date] for another period.\n\nIf you have any questions, contact us at [site]."
includes/admin/tracking.php CHANGED
@@ -189,7 +189,7 @@ class WPBDP_SiteTracking {
189
  $content .= '<p>';
190
  $content .= _x( 'Can Business Directory keep track of your theme, plugins, and other non-personal, non-identifying information to help us in testing the plugin for future releases?', 'tracking', 'WPBDM' );
191
  $content .= '<br />';
192
- $content .= '&#149; ' . sprintf( '<a href="%s" target="_blank">%s</a>', 'http://businessdirectoryplugin.com/what-we-track', _x( 'What do you track?', 'tracking', 'WPBDM' ) );
193
  $content .= '</p>';
194
  ?>
195
  <script type="text/javascript">
189
  $content .= '<p>';
190
  $content .= _x( 'Can Business Directory keep track of your theme, plugins, and other non-personal, non-identifying information to help us in testing the plugin for future releases?', 'tracking', 'WPBDM' );
191
  $content .= '<br />';
192
+ $content .= '&#149; ' . sprintf( '<a href="%s" target="_blank" rel="noopener">%s</a>', 'http://businessdirectoryplugin.com/what-we-track', _x( 'What do you track?', 'tracking', 'WPBDM' ) );
193
  $content .= '</p>';
194
  ?>
195
  <script type="text/javascript">
includes/class-listing-email-notification.php CHANGED
@@ -20,28 +20,49 @@ class WPBDP__Listing_Email_Notification {
20
  * Sent when a listing is published either by the admin or automatically.
21
  */
22
  public function listing_published_notification( $new_status, $old_status, $post ) {
23
- if ( WPBDP_POST_TYPE != get_post_type( $post ) )
24
  return;
25
 
26
- if ( $new_status == $old_status || 'publish' != $new_status || ( 'pending' != $old_status && 'draft' != $old_status ) )
27
  return;
28
 
29
- if ( ! in_array( 'listing-published', wpbdp_get_option( 'user-notifications' ), true ) )
30
  return;
31
 
32
  global $wpbdp;
 
33
  if ( isset( $wpbdp->_importing_csv_no_email ) && $wpbdp->_importing_csv_no_email )
34
  return;
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  $email = wpbdp_email_from_template( 'email-templates-listing-published', array(
37
  'listing' => get_the_title( $post->ID ),
38
  'listing-url' => get_permalink( $post->ID )
39
  ) );
40
- $email->to[] = wpbusdirman_get_the_business_email( $post->ID );
 
41
  $email->template = 'businessdirectory-email';
 
42
  $email->send();
43
  }
44
 
 
 
 
 
 
45
  /**
46
  * Used to handle notifications related to listing status changes (i.e. expired, etc.)
47
  */
20
  * Sent when a listing is published either by the admin or automatically.
21
  */
22
  public function listing_published_notification( $new_status, $old_status, $post ) {
23
+ if ( ! in_array( 'listing-published', wpbdp_get_option( 'user-notifications' ), true ) )
24
  return;
25
 
26
+ if ( WPBDP_POST_TYPE != get_post_type( $post ) )
27
  return;
28
 
29
+ if ( $new_status == $old_status || 'publish' != $new_status || ( 'pending' != $old_status && 'draft' != $old_status ) )
30
  return;
31
 
32
  global $wpbdp;
33
+
34
  if ( isset( $wpbdp->_importing_csv_no_email ) && $wpbdp->_importing_csv_no_email )
35
  return;
36
 
37
+ if ( isset( $_POST['original_post_status'] ) && 'auto-draft' == $_POST['original_post_status'] ) {
38
+ add_action( 'save_post', array( $this, 'send_listing_published_notification' ), PHP_INT_MAX, 2 );
39
+ add_action( 'save_post', array( $this, 'try_to_remove_listing_published_notification_action' ), PHP_INT_MAX );
40
+ return;
41
+ }
42
+
43
+ $this->send_listing_published_notification( $post->ID, $post );
44
+ }
45
+
46
+ public function send_listing_published_notification( $post_id, $post ) {
47
+ if ( ! isset( $post->post_type ) || WPBDP_POST_TYPE !== $post->post_type ) {
48
+ return;
49
+ }
50
  $email = wpbdp_email_from_template( 'email-templates-listing-published', array(
51
  'listing' => get_the_title( $post->ID ),
52
  'listing-url' => get_permalink( $post->ID )
53
  ) );
54
+
55
+ $email->to[] = wpbusdirman_get_the_business_email( $post->ID );
56
  $email->template = 'businessdirectory-email';
57
+
58
  $email->send();
59
  }
60
 
61
+ public function try_to_remove_listing_published_notification_action() {
62
+ remove_action( 'save_post', array( $this, 'send_listing_published_notification' ), PHP_INT_MAX, 2 );
63
+ remove_action( 'save_post', array( $this, 'try_to_remove_listing_published_notification_action' ), PHP_INT_MAX );
64
+ }
65
+
66
  /**
67
  * Used to handle notifications related to listing status changes (i.e. expired, etc.)
68
  */
includes/class-listing.php CHANGED
@@ -31,7 +31,7 @@ class WPBDP_Listing {
31
  if ( ! $this->id )
32
  return '';
33
 
34
- return date_i18n( get_option( 'date_format' ), get_post_modified_time( 'U', false, $this->id ) );
35
  }
36
 
37
  public function get_images( $fields = 'all', $sorted = false ) {
@@ -204,7 +204,12 @@ class WPBDP_Listing {
204
  * @since 5.0
205
  */
206
  public function get_subscription() {
207
- return new WPBDP__Listing_Subscription( $this->id );
 
 
 
 
 
208
  }
209
 
210
  /**
@@ -242,6 +247,25 @@ class WPBDP_Listing {
242
  return apply_filters( 'WPBDP_Listing::get_payment_status', $status, $this->id );
243
  }
244
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
245
  /**
246
  * @since 5.0
247
  */
31
  if ( ! $this->id )
32
  return '';
33
 
34
+ return wpbdp_date( get_post_modified_time( 'U', false, $this->id ) );
35
  }
36
 
37
  public function get_images( $fields = 'all', $sorted = false ) {
204
  * @since 5.0
205
  */
206
  public function get_subscription() {
207
+ try {
208
+ $subscription = new WPBDP__Listing_Subscription( $this->id );
209
+ } catch ( Exception $e ) {
210
+ $subscription = null;
211
+ }
212
+ return $subscription;
213
  }
214
 
215
  /**
247
  return apply_filters( 'WPBDP_Listing::get_payment_status', $status, $this->id );
248
  }
249
 
250
+ /**
251
+ * @since 5.1.9
252
+ */
253
+ public function get_renewal_date() {
254
+ $filters = array(
255
+ 'listing_id' => $this->id,
256
+ 'status' => 'completed',
257
+ 'payment_type' => 'renewal',
258
+ );
259
+
260
+ $payments = WPBDP_Payment::objects()->filter( $filters )->order_by( '-id' )->to_array();
261
+
262
+ if ( ! isset( $payments[0] ) ) {
263
+ return null;
264
+ }
265
+
266
+ return wpbdp_date_full_format( strtotime( $payments[0]->created_at ) );
267
+ }
268
+
269
  /**
270
  * @since 5.0
271
  */
includes/class-rewrite.php CHANGED
@@ -23,6 +23,8 @@ class WPBDP__Rewrite {
23
  $page_link = _get_page_link( $page_id );
24
  $page_link = preg_replace( '/\?.*/', '', $page_link ); // Remove querystring from page link.
25
 
 
 
26
  $home_url = home_url();
27
  $home_url = preg_replace( '/\?.*/', '', $home_url ); // Remove querystring from home URL.
28
 
@@ -79,9 +81,13 @@ class WPBDP__Rewrite {
79
 
80
  // Create uppercase versions of rules involving octets (support for cyrillic characters).
81
  foreach ( $rules as $def => $redirect ) {
82
- $upper_r = preg_replace_callback( '/%[0-9a-zA-Z]{2}/',
83
- create_function( '$x', 'return strtoupper( $x[0] );' ),
84
- $def );
 
 
 
 
85
 
86
  if ( 0 !== strcmp( $def, $upper_r ) ) {
87
  $rules[ $upper_r ] = $redirect;
23
  $page_link = _get_page_link( $page_id );
24
  $page_link = preg_replace( '/\?.*/', '', $page_link ); // Remove querystring from page link.
25
 
26
+ $page_link = apply_filters( 'wpbdp_url_base_url', $page_link, $page_id );
27
+
28
  $home_url = home_url();
29
  $home_url = preg_replace( '/\?.*/', '', $home_url ); // Remove querystring from home URL.
30
 
81
 
82
  // Create uppercase versions of rules involving octets (support for cyrillic characters).
83
  foreach ( $rules as $def => $redirect ) {
84
+ $upper_r = $def;
85
+
86
+ preg_match_all( '/%[0-9a-zA-Z]{2}/', $def, $matches );
87
+
88
+ foreach ( $matches[0] as $match ) {
89
+ $upper_r = str_replace( $match, strtoupper( $match ), $upper_r );
90
+ }
91
 
92
  if ( 0 !== strcmp( $def, $upper_r ) ) {
93
  $rules[ $upper_r ] = $redirect;
includes/class-shortcodes.php CHANGED
@@ -189,14 +189,17 @@ class WPBDP__Shortcodes {
189
  * WordPress Shortcode:
190
  * [businessdirectory-latest-listings]
191
  * Used for:
192
- * Displaying the latest listings.
193
  * Parameters:
194
- * - limit The number of listings to show. Defaults to 10. (Allowed Values: A positive integer)
195
  * - menu Whether to include the quick search and menu bar as part of the output. Defaults to 0. (Allowed Values: 0 or 1)
196
  * - buttons Which menu buttons to show inside the menu (applies only when `menu` is `1`). Default is none. (Allowed Values: "all", "none", or a comma-separated list from the set "create", "directory" and "listings").
197
- * Example:
 
 
198
  * - Display the latest 5 listings submitted to the directory:
199
- * `[businessdirectory-latest-listings limit=5]`
 
 
200
  * Since:
201
  * 4.1.13
202
  */
@@ -208,13 +211,13 @@ class WPBDP__Shortcodes {
208
  * Used for:
209
  * Displaying a set of random listings from the directory.
210
  * Parameters:
211
- * - limit The number of listings to show. Defaults to 10. (Allowed Values: A positive integer)
212
  * - menu Whether to include the quick search and menu bar as part of the output. Defaults to 0. (Allowed Values: 0 or 1)
213
  * - buttons Which menu buttons to show inside the menu (applies only when `menu` is `1`). Default is none. (Allowed Values: "all", "none", or a comma-separated list from the set "create", "directory" and "listings").
 
214
  * Example:
215
  * - Display a set of 10 random listings, including the directory menu with only the "Create A Listing" button:
216
  *
217
- * `[businessdirectory-random-listings menu=1 buttons="create"]`
218
  * Since:
219
  * 4.1.13
220
  */
@@ -224,13 +227,14 @@ class WPBDP__Shortcodes {
224
  * WordPress Shortcode:
225
  * [businessdirectory-featured-listings]
226
  * Used for:
227
- * Displaying a set of featured listings from the directory.
228
  * Parameters:
229
- * - limit The number of listings to show. Defaults to 10. (Allowed Values: A positive integer)
230
  * - menu Whether to include the quick search and menu bar as part of the output. Defaults to 0. (Allowed Values: 0 or 1)
231
  * - buttons Which menu buttons to show inside the menu (applies only when `menu` is `1`). Default is none. (Allowed Values: "all", "none", or a comma-separated list from the set "create", "directory" and "listings").
 
 
232
  * Example:
233
- * `[businessdirectory-featured-listings limit=5]`
234
  * Since:
235
  * 4.1.13
236
  */
@@ -286,14 +290,17 @@ class WPBDP__Shortcodes {
286
  'operator' => 'OR',
287
  'author' => '',
288
  'menu' => null,
 
289
  'items_per_page' => wpbdp_get_option( 'listings-per-page' ) > 0 ? wpbdp_get_option( 'listings-per-page' ) : -1 ),
290
  $atts );
291
 
292
  if ( ! is_null( $atts['menu'] ) )
293
  $atts['menu'] = ( 1 === $atts['menu'] || 'true' === $atts['menu'] ) ? true : false;
294
 
 
 
295
  $query_args = array();
296
- $query_args['items_per_page'] = $atts['items_per_page'];
297
 
298
  if ( $atts['category'] || $atts['categories'] ) {
299
  $requested_categories = array();
@@ -345,26 +352,36 @@ class WPBDP__Shortcodes {
345
  $query_args['author'] = $u->ID;
346
  }
347
 
348
- $v = new WPBDP__Views__All_Listings( array( 'menu' => $atts['menu'], 'query_args' => $query_args, 'in_shortcode' => true ) );
 
 
 
 
 
 
349
  return $v->dispatch();
350
  }
351
 
352
  public function sc_listings_latest( $atts ) {
353
  $atts = shortcode_atts(
354
  array(
355
- 'menu' => 0,
356
- 'buttons' => 'none',
357
- 'limit' => 10
 
 
358
  ),
359
  $atts,
360
  'businessdirectory-latest-listings'
361
  );
362
 
 
 
363
  return $this->display_listings(
364
  array(
365
  'orderby' => 'date',
366
- 'order' => 'DESC',
367
- 'posts_per_page' => $atts['limit'] ),
368
  $atts
369
  );
370
  }
@@ -372,18 +389,23 @@ class WPBDP__Shortcodes {
372
  public function sc_listings_random( $atts ) {
373
  $atts = shortcode_atts(
374
  array(
375
- 'menu' => 0,
376
- 'buttons' => 'none',
377
- 'limit' => 10
 
378
  ),
379
  $atts,
380
  'businessdirectory-random-listings'
381
  );
382
 
 
 
 
 
383
  return $this->display_listings(
384
  array(
385
- 'orderby' => 'rand',
386
- 'posts_per_page' => $atts['limit'] ),
387
  $atts
388
  );
389
  }
@@ -391,27 +413,35 @@ class WPBDP__Shortcodes {
391
  public function sc_listings_featured( $atts ) {
392
  $atts = shortcode_atts(
393
  array(
394
- 'menu' => 0,
395
- 'buttons' => 'none',
396
- 'limit' => 10
 
 
397
  ),
398
  $atts,
399
  'businessdirectory-featured-listings'
400
  );
401
 
 
 
402
  global $wpdb;
403
  $q = $wpdb->prepare(
404
  "SELECT DISTINCT {$wpdb->posts}.ID FROM {$wpdb->posts}
405
  JOIN {$wpdb->prefix}wpbdp_listings lp ON lp.listing_id = {$wpdb->posts}.ID
406
  WHERE {$wpdb->posts}.post_status = %s AND {$wpdb->posts}.post_type = %s AND lp.is_sticky = 1
407
- ORDER BY RAND() " . ( $atts['limit'] > 0 ? sprintf( "LIMIT %d", $atts['limit'] ) : '' ),
408
  'publish',
409
  WPBDP_POST_TYPE
410
  );
411
  $featured = $wpdb->get_col( $q );
412
 
413
  return $this->display_listings(
414
- array( 'post__in' => $featured, 'orderby' => 'post__in' )
 
 
 
 
415
  );
416
  }
417
 
@@ -421,23 +451,31 @@ class WPBDP__Shortcodes {
421
  'post_type' => WPBDP_POST_TYPE,
422
  'post_status' => 'publish'
423
  ),
424
- $query_args,
425
- array(
426
- 'limit' => 10
427
- )
428
  );
429
  $args = array_merge(
430
  array(
431
  'menu' => 0,
432
- 'buttons' => 'none'
 
 
433
  ),
434
  $args
435
  );
436
 
 
 
 
 
 
 
 
437
  $query = new WP_Query( $query_args );
438
 
439
  // Try to trick pagination to remove it when processing a shortcode.
440
- $query->max_num_pages = 1;
 
 
441
 
442
  wpbdp_push_query( $query );
443
 
@@ -453,6 +491,8 @@ class WPBDP__Shortcodes {
453
  $vars['_bar_args'] = array( 'buttons' => $args['buttons'] );
454
  }
455
 
 
 
456
  $html .= wpbdp_x_render( 'listings', $vars );
457
  }
458
 
@@ -482,7 +522,7 @@ class WPBDP__Shortcodes {
482
  $args = array(
483
  'post_type' => WPBDP_POST_TYPE,
484
  'post_status' => 'publish',
485
- 'post__in' => $featured
486
  );
487
  $q = new WP_Query( $args );
488
  wpbdp_push_query( $q );
@@ -610,8 +650,35 @@ class WPBDP__Shortcodes {
610
  return wpbdp_main_box( $box_args );
611
  }
612
 
613
- //
614
- // }}
615
- //
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
616
 
 
 
 
 
 
 
617
  }
189
  * WordPress Shortcode:
190
  * [businessdirectory-latest-listings]
191
  * Used for:
192
+ * Displaying all or a set of latest listings from the directory.
193
  * Parameters:
 
194
  * - menu Whether to include the quick search and menu bar as part of the output. Defaults to 0. (Allowed Values: 0 or 1)
195
  * - buttons Which menu buttons to show inside the menu (applies only when `menu` is `1`). Default is none. (Allowed Values: "all", "none", or a comma-separated list from the set "create", "directory" and "listings").
196
+ * - 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)
197
+ * - pagination Enable pagination for shortcode. Default to 1. (Allowed values to disable: 0, false, no. Allowed values to enable: 1, true, yes)
198
+ * Examples:
199
  * - Display the latest 5 listings submitted to the directory:
200
+ * `[businessdirectory-latest-listings items_per_page=5 pagination=0]`
201
+ * - Display all listings, started from most recent, submitted to the directory, 4 listings per page:
202
+ * `[businessdirectory-latest-listings items_per_page=4 pagination=1]`
203
  * Since:
204
  * 4.1.13
205
  */
211
  * Used for:
212
  * Displaying a set of random listings from the directory.
213
  * Parameters:
 
214
  * - menu Whether to include the quick search and menu bar as part of the output. Defaults to 0. (Allowed Values: 0 or 1)
215
  * - buttons Which menu buttons to show inside the menu (applies only when `menu` is `1`). Default is none. (Allowed Values: "all", "none", or a comma-separated list from the set "create", "directory" and "listings").
216
+ * - 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)
217
  * Example:
218
  * - Display a set of 10 random listings, including the directory menu with only the "Create A Listing" button:
219
  *
220
+ * `[businessdirectory-random-listings items_per_page=10 menu=1 buttons="create"]`
221
  * Since:
222
  * 4.1.13
223
  */
227
  * WordPress Shortcode:
228
  * [businessdirectory-featured-listings]
229
  * Used for:
230
+ * Displaying all or a set of featured listings from the directory.
231
  * Parameters:
 
232
  * - menu Whether to include the quick search and menu bar as part of the output. Defaults to 0. (Allowed Values: 0 or 1)
233
  * - buttons Which menu buttons to show inside the menu (applies only when `menu` is `1`). Default is none. (Allowed Values: "all", "none", or a comma-separated list from the set "create", "directory" and "listings").
234
+ * - 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)
235
+ * - pagination Use pagination, if disabled a set of listings, determined by items_per_page, will be display. Default to 1. (Allowed values to disable: 0, false, no. Allowed values to enable: 1, true, yes)
236
  * Example:
237
+ * `[businessdirectory-featured-listings items_per_page=5]`
238
  * Since:
239
  * 4.1.13
240
  */
290
  'operator' => 'OR',
291
  'author' => '',
292
  'menu' => null,
293
+ 'pagination' => 1,
294
  'items_per_page' => wpbdp_get_option( 'listings-per-page' ) > 0 ? wpbdp_get_option( 'listings-per-page' ) : -1 ),
295
  $atts );
296
 
297
  if ( ! is_null( $atts['menu'] ) )
298
  $atts['menu'] = ( 1 === $atts['menu'] || 'true' === $atts['menu'] ) ? true : false;
299
 
300
+ $this->validate_attributes( $atts );
301
+
302
  $query_args = array();
303
+ $query_args['items_per_page'] = intval( $atts['items_per_page'] );
304
 
305
  if ( $atts['category'] || $atts['categories'] ) {
306
  $requested_categories = array();
352
  $query_args['author'] = $u->ID;
353
  }
354
 
355
+ $v = new WPBDP__Views__All_Listings(
356
+ array(
357
+ 'menu' => $atts['menu'],
358
+ 'query_args' => $query_args,
359
+ 'in_shortcode' => true,
360
+ 'pagination' => $atts['items_per_page'] > 0 && intval( $atts['pagination'] ),
361
+ ) );
362
  return $v->dispatch();
363
  }
364
 
365
  public function sc_listings_latest( $atts ) {
366
  $atts = shortcode_atts(
367
  array(
368
+ 'menu' => 0,
369
+ 'buttons' => 'none',
370
+ 'limit' => 0,
371
+ 'items_per_page' => -1,
372
+ 'pagination'=> '1'
373
  ),
374
  $atts,
375
  'businessdirectory-latest-listings'
376
  );
377
 
378
+ $this->validate_attributes( $atts );
379
+
380
  return $this->display_listings(
381
  array(
382
  'orderby' => 'date',
383
+ 'order' => 'DESC'
384
+ ),
385
  $atts
386
  );
387
  }
389
  public function sc_listings_random( $atts ) {
390
  $atts = shortcode_atts(
391
  array(
392
+ 'menu' => 0,
393
+ 'buttons' => 'none',
394
+ 'limit' => 0,
395
+ 'items_per_page' => -1
396
  ),
397
  $atts,
398
  'businessdirectory-random-listings'
399
  );
400
 
401
+ $atts['pagination'] = '0';
402
+
403
+ $this->validate_attributes( $atts );
404
+
405
  return $this->display_listings(
406
  array(
407
+ 'orderby' => 'rand'
408
+ ),
409
  $atts
410
  );
411
  }
413
  public function sc_listings_featured( $atts ) {
414
  $atts = shortcode_atts(
415
  array(
416
+ 'menu' => 0,
417
+ 'buttons' => 'none',
418
+ 'limit' => 0,
419
+ 'items_per_page' => -1,
420
+ 'pagination'=> '1'
421
  ),
422
  $atts,
423
  'businessdirectory-featured-listings'
424
  );
425
 
426
+ $this->validate_attributes( $atts );
427
+
428
  global $wpdb;
429
  $q = $wpdb->prepare(
430
  "SELECT DISTINCT {$wpdb->posts}.ID FROM {$wpdb->posts}
431
  JOIN {$wpdb->prefix}wpbdp_listings lp ON lp.listing_id = {$wpdb->posts}.ID
432
  WHERE {$wpdb->posts}.post_status = %s AND {$wpdb->posts}.post_type = %s AND lp.is_sticky = 1
433
+ ORDER BY RAND()",
434
  'publish',
435
  WPBDP_POST_TYPE
436
  );
437
  $featured = $wpdb->get_col( $q );
438
 
439
  return $this->display_listings(
440
+ array(
441
+ 'post__in' => ! empty( $featured ) ? $featured : array( 0 ),
442
+ 'orderby' => 'post__in',
443
+ ),
444
+ $atts
445
  );
446
  }
447
 
451
  'post_type' => WPBDP_POST_TYPE,
452
  'post_status' => 'publish'
453
  ),
454
+ $query_args
 
 
 
455
  );
456
  $args = array_merge(
457
  array(
458
  'menu' => 0,
459
+ 'buttons' => 'none',
460
+ 'items_per_page' => -1,
461
+ 'pagination' => true,
462
  ),
463
  $args
464
  );
465
 
466
+ if ( $args['pagination'] ) {
467
+ $paged = get_query_var( 'page' ) ? get_query_var( 'page' ) : ( get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1 );
468
+ $query_args['paged'] = intval( $paged );
469
+ }
470
+
471
+ $query_args['posts_per_page'] = intval( $args['items_per_page'] );
472
+
473
  $query = new WP_Query( $query_args );
474
 
475
  // Try to trick pagination to remove it when processing a shortcode.
476
+ if ( ! $args['pagination'] ) {
477
+ $query->max_num_pages = 1;
478
+ }
479
 
480
  wpbdp_push_query( $query );
481
 
491
  $vars['_bar_args'] = array( 'buttons' => $args['buttons'] );
492
  }
493
 
494
+ $this->maybe_paginate_frontpage( $query );
495
+
496
  $html .= wpbdp_x_render( 'listings', $vars );
497
  }
498
 
522
  $args = array(
523
  'post_type' => WPBDP_POST_TYPE,
524
  'post_status' => 'publish',
525
+ 'post__in' => ! empty( $featured ) ? $featured : array( 0 )
526
  );
527
  $q = new WP_Query( $args );
528
  wpbdp_push_query( $q );
650
  return wpbdp_main_box( $box_args );
651
  }
652
 
653
+ public function validate_attributes( &$atts ) {
654
+
655
+ switch ( strtolower( $atts['pagination'] ) ) {
656
+ case '0':
657
+ case 'false':
658
+ case 'no':
659
+ $atts['pagination'] = false;
660
+ break;
661
+ case '1':
662
+ case 'true':
663
+ case 'yes':
664
+ default:
665
+ $atts['pagination'] = true;
666
+ }
667
+
668
+ // Backward compatibility for `limit` parameter
669
+ if ( ! empty( $atts['limit'] ) ) {
670
+ $atts['items_per_page'] = intval( $atts['items_per_page'] ) > 0 ? intval( $atts['items_per_page'] ) : intval( $atts['limit'] );
671
+ }
672
+
673
+ if ( 0 >= intval( $atts['items_per_page'] ) ) {
674
+ $atts['items_per_page'] = ! $atts['pagination'] ? ( wpbdp_get_option( 'listings-per-page' ) > 0 ? wpbdp_get_option( 'listings-per-page' ) : 10 ) : 10;
675
+ }
676
+ }
677
 
678
+ private function maybe_paginate_frontpage( $query ) {
679
+ if ( ! function_exists('wp_pagenavi' ) && is_front_page() ) {
680
+ global $paged;
681
+ $paged = $query->query['paged'];
682
+ }
683
+ }
684
  }
includes/class-wpbdp.php CHANGED
@@ -15,7 +15,7 @@ final class WPBDP {
15
  }
16
 
17
  private function setup_constants() {
18
- define( 'WPBDP_VERSION', '5.1.9' );
19
 
20
  define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
21
  define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
@@ -94,7 +94,15 @@ final class WPBDP {
94
  add_filter( 'plugin_action_links_' . plugin_basename( WPBDP_PLUGIN_FILE ), array( $this, 'plugin_action_links' ) );
95
 
96
  // Clear cache of page IDs when a page is saved.
97
- add_action( 'save_post_page', create_function( '$x = false', 'delete_transient("wpbdp-page-ids");' ) );
 
 
 
 
 
 
 
 
98
 
99
  // AJAX actions.
100
  // TODO: Use Dispatcher AJAX support instead of hardcoding these actions here.
15
  }
16
 
17
  private function setup_constants() {
18
+ define( 'WPBDP_VERSION', '5.2' );
19
 
20
  define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
21
  define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
94
  add_filter( 'plugin_action_links_' . plugin_basename( WPBDP_PLUGIN_FILE ), array( $this, 'plugin_action_links' ) );
95
 
96
  // Clear cache of page IDs when a page is saved.
97
+ if ( version_compare( phpversion(), '5.3.0', '>=' ) ) {
98
+ $handler = function() {
99
+ delete_transient( 'wpbdp-page-ids' );
100
+ };
101
+ } else {
102
+ $handler = create_function( '$x = false', 'delete_transient("wpbdp-page-ids");' );
103
+ }
104
+
105
+ add_action( 'save_post_page', $handler );
106
 
107
  // AJAX actions.
108
  // TODO: Use Dispatcher AJAX support instead of hardcoding these actions here.
includes/compatibility/class-compat.php CHANGED
@@ -36,6 +36,11 @@ class WPBDP_Compat {
36
  require_once( WPBDP_PATH . 'includes/compatibility/class-advanced-excerpt-integration.php' );
37
  $advanced_excerpt_integration = new WPBDP_Advanced_Excerpt_Integration();
38
  }
 
 
 
 
 
39
  }
40
 
41
  function cpt_compat_mode() {
@@ -148,6 +153,6 @@ class WPBDP_Compat {
148
  add_filter( 'jetpack_enable_opengraph', '__return_false', 99 );
149
  remove_action( 'wp_head', 'jetpack_og_tags' );
150
  }
151
- }
152
 
153
  }
36
  require_once( WPBDP_PATH . 'includes/compatibility/class-advanced-excerpt-integration.php' );
37
  $advanced_excerpt_integration = new WPBDP_Advanced_Excerpt_Integration();
38
  }
39
+
40
+ if ( defined( 'CUSTOM_PERMALINKS_PLUGIN_VERSION') ) {
41
+ require_once( WPBDP_PATH . 'includes/compatibility/class-custom-permalinks-integration.php' );
42
+ $custom_permalinks_integration = new WPBDP_Custom_Permalink_Integration();
43
+ }
44
  }
45
 
46
  function cpt_compat_mode() {
153
  add_filter( 'jetpack_enable_opengraph', '__return_false', 99 );
154
  remove_action( 'wp_head', 'jetpack_og_tags' );
155
  }
156
+ }
157
 
158
  }
includes/compatibility/class-custom-permalinks-integration.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Compatibility code for Custom Permalinks plugin.
4
+ */
5
+
6
+ /**
7
+ * Integration with Custom Permalinks plugin.
8
+ */
9
+ class WPBDP_Custom_Permalink_Integration {
10
+
11
+ /**
12
+ * @since 5.1.10
13
+ */
14
+ public function __construct() {
15
+ add_filter( 'wpbdp_url_base_url', array( $this, 'wpbdp_cp_base_url'), 10, 2 );
16
+ }
17
+
18
+ /**
19
+ * @param $page_link Current Page Link.
20
+ * @param $page_id Current Page ID.
21
+ * @since 5.1.10
22
+ */
23
+ public function wpbdp_cp_base_url( $page_link, $page_id ){
24
+ return apply_filters( 'page_link', $page_link, $page_id );
25
+ }
26
+ }
27
+
includes/compatibility/class-wpml-compat.php CHANGED
@@ -14,6 +14,7 @@ class WPBDP_WPML_Compat {
14
  add_filter( 'wpbdp_url_base_url', array( &$this, 'fix_get_page_link' ), 10, 2 );
15
  add_filter( 'wpbdp_url', array( &$this, 'correct_page_link' ), 10, 3 );
16
  add_filter( 'wpbdp_ajax_url', array( $this, 'filter_ajax_url' ) );
 
17
 
18
  add_filter( 'wpbdp_render_field_label', array( &$this, 'translate_form_field_label' ), 10, 2 );
19
  add_filter( 'wpbdp_render_field_description', array( &$this, 'translate_form_field_description' ), 10, 2 );
@@ -413,4 +414,25 @@ class WPBDP_WPML_Compat {
413
  }
414
 
415
  // }}}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
416
  }
14
  add_filter( 'wpbdp_url_base_url', array( &$this, 'fix_get_page_link' ), 10, 2 );
15
  add_filter( 'wpbdp_url', array( &$this, 'correct_page_link' ), 10, 3 );
16
  add_filter( 'wpbdp_ajax_url', array( $this, 'filter_ajax_url' ) );
17
+ add_filter( 'wpbdp_listing_images_listing_id', array( $this, 'get_images_listing_id' ), 10, 1 );
18
 
19
  add_filter( 'wpbdp_render_field_label', array( &$this, 'translate_form_field_label' ), 10, 2 );
20
  add_filter( 'wpbdp_render_field_description', array( &$this, 'translate_form_field_description' ), 10, 2 );
414
  }
415
 
416
  // }}}
417
+
418
+ // Listing thumbnail and images. {{{
419
+ function get_images_listing_id( $listing_id ) {
420
+ if ( 1 != apply_filters( 'wpml_element_translation_type', NULL, $listing_id, 'post_' . WPBDP_POST_TYPE ) ) {
421
+ return $listing_id;
422
+ }
423
+
424
+ $trid = apply_filters( 'wpml_element_trid', NULL, $listing_id, 'post_' . WPBDP_POST_TYPE );
425
+ $translations = apply_filters( 'wpml_get_element_translations', NULL, $trid, 'post_' . WPBDP_POST_TYPE );
426
+
427
+ foreach ( $translations as $lang => $translate ) {
428
+
429
+ if ( $translate->original ) {
430
+ return $translate->element_id;
431
+ }
432
+ }
433
+
434
+ return $listing_id;
435
+ }
436
+
437
+ // }}}
438
  }
includes/fields/class-fieldtypes-image.php CHANGED
@@ -93,7 +93,7 @@ class WPBDP_FieldTypes_Image extends WPBDP_Form_Field_Type {
93
 
94
  $html = '';
95
  $html .= '<br />';
96
- $html .= '<a href="' . esc_url( $img[0] ) . '" target="_blank" ' . ( wpbdp_get_option( 'use-thickbox' ) ? 'class="thickbox" data-lightbox="wpbdpgal" rel="wpbdpgal"' : '' ) . '>';
97
  $html .= wp_get_attachment_image( $img_id, 'wpbdp-thumb', false );
98
  $html .= '</a>';
99
 
93
 
94
  $html = '';
95
  $html .= '<br />';
96
+ $html .= '<a href="' . esc_url( $img[0] ) . '" target="_blank" rel="noopener" ' . ( wpbdp_get_option( 'use-thickbox' ) ? 'class="thickbox" data-lightbox="wpbdpgal" rel="wpbdpgal"' : '' ) . '>';
97
  $html .= wp_get_attachment_image( $img_id, 'wpbdp-thumb', false );
98
  $html .= '</a>';
99
 
includes/fields/class-fieldtypes-linkedin.php CHANGED
@@ -46,7 +46,7 @@ class WPBDP_FieldTypes_LinkedIn extends WPBDP_Form_Field_Type {
46
  if ( function_exists( 'filter_var' ) ) {
47
  if ( filter_var( $value, FILTER_VALIDATE_URL ) ) {
48
  if ( strstr( parse_url( $value, PHP_URL_HOST ), 'linkedin.com' ) ) {
49
- $html .= sprintf( '<a target="_blank" href="%s" > <img src="%s" ></a>', esc_url( $value ), WPBDP_URL . 'assets/images/linkedin.png' );
50
  }
51
  }
52
  }
46
  if ( function_exists( 'filter_var' ) ) {
47
  if ( filter_var( $value, FILTER_VALIDATE_URL ) ) {
48
  if ( strstr( parse_url( $value, PHP_URL_HOST ), 'linkedin.com' ) ) {
49
+ $html .= sprintf( '<a target="_blank" rel="noopener" href="%s" > <img src="%s" ></a>', esc_url( $value ), WPBDP_URL . 'assets/images/linkedin.png' );
50
  }
51
  }
52
  }
includes/fields/class-fieldtypes-url.php CHANGED
@@ -67,10 +67,10 @@ class WPBDP_FieldTypes_URL extends WPBDP_Form_Field_Type {
67
  return '';
68
 
69
 
70
- return sprintf( '<a href="%s" rel="%s" target="%s" title="%s">%s</a>',
71
  esc_url( $value[0] ),
72
  $field->data( 'use_nofollow' ) == true ? 'nofollow': '',
73
- $field->data( 'open_in_new_window' ) == true ? '_blank' : '_self',
74
  esc_attr( $value[1] ),
75
  esc_attr( $value[1] ) );
76
  }
67
  return '';
68
 
69
 
70
+ return sprintf( '<a href="%s" rel="%s" target=%s title="%s">%s</a>',
71
  esc_url( $value[0] ),
72
  $field->data( 'use_nofollow' ) == true ? 'nofollow': '',
73
+ $field->data( 'open_in_new_window' ) == true ? '"_blank" rel="noopener"' : '"_self"',
74
  esc_attr( $value[1] ),
75
  esc_attr( $value[1] ) );
76
  }
includes/fields/class-form-field-type.php CHANGED
@@ -104,10 +104,16 @@ class WPBDP_Form_Field_Type {
104
 
105
  switch ( $field->get_association() ) {
106
  case 'title':
107
- $value = sprintf( '<a href="%s" target="%s" >%s</a>',
 
 
 
 
 
 
108
  get_permalink( $post_id ),
109
- wpbdp_get_option( 'listing-link-in-new-tab' ) ? '_blank' : '_self',
110
- get_the_title( $post_id ) );
111
  break;
112
  case 'excerpt':
113
  $value = apply_filters( 'get_the_excerpt', wpautop( $post->post_excerpt, true ) );
104
 
105
  switch ( $field->get_association() ) {
106
  case 'title':
107
+ $value = get_the_title( $post_id );
108
+
109
+ if ( 'show_listing' == wpbdp_current_view() ) {
110
+ break;
111
+ }
112
+
113
+ $value = sprintf( '<a href="%s" target=%s >%s</a>',
114
  get_permalink( $post_id ),
115
+ wpbdp_get_option( 'listing-link-in-new-tab' ) ? '"_blank" rel="noopener"' : '"_self"',
116
+ $value );
117
  break;
118
  case 'excerpt':
119
  $value = apply_filters( 'get_the_excerpt', wpautop( $post->post_excerpt, true ) );
includes/functions.php CHANGED
@@ -465,6 +465,21 @@ function wpbdp_currency_format( $amount, $args = array() ) {
465
  return str_replace( array_keys( $replacements ), array_values( $replacements ), $format );
466
  }
467
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
468
  /**
469
  * @since 3.5.3
470
  */
465
  return str_replace( array_keys( $replacements ), array_values( $replacements ), $format );
466
  }
467
 
468
+ /**
469
+ * @since 5.1.9
470
+ */
471
+ function wpbdp_date_full_format( $timestamp ) {
472
+ return date_i18n( get_option( 'date_format' ) . ' ' . get_option( 'time_format' ), $timestamp );
473
+ }
474
+
475
+ /**
476
+ * @since 5.1.9
477
+ */
478
+ function wpbdp_date( $timestamp ) {
479
+ return date_i18n( get_option( 'date_format' ), $timestamp );
480
+ }
481
+
482
+
483
  /**
484
  * @since 3.5.3
485
  */
includes/helpers/class-listing-display-helper.php CHANGED
@@ -123,6 +123,7 @@ class WPBDP_Listing_Display_Helper {
123
  if ( ! wpbdp_get_option( 'allow-images' ) )
124
  return $vars;
125
 
 
126
  $listing = WPBDP_Listing::get( $listing_id );
127
 
128
  // Thumbnail.
@@ -167,7 +168,7 @@ class WPBDP_Listing_Display_Helper {
167
  $image->url = $data[0];
168
  $image->width = $data[1];
169
  $image->height = $data[2];
170
- $image->html = sprintf( '<a href="%s" class="thickbox" data-lightbox="wpbdpgal" rel="wpbdpgal" target="_blank" title="%s">%s</a>',
171
  $image->url,
172
  get_post_meta( $img_id, '_wpbdp_image_caption', true ),
173
  wp_get_attachment_image( $image->id, 'wpbdp-thumb', false, array(
123
  if ( ! wpbdp_get_option( 'allow-images' ) )
124
  return $vars;
125
 
126
+ $listing_id = apply_filters( 'wpbdp_listing_images_listing_id', $listing_id );
127
  $listing = WPBDP_Listing::get( $listing_id );
128
 
129
  // Thumbnail.
168
  $image->url = $data[0];
169
  $image->width = $data[1];
170
  $image->height = $data[2];
171
+ $image->html = sprintf( '<a href="%s" class="thickbox" data-lightbox="wpbdpgal" rel="wpbdpgal" target="_blank" rel="noopener" title="%s">%s</a>',
172
  $image->url,
173
  get_post_meta( $img_id, '_wpbdp_image_caption', true ),
174
  wp_get_attachment_image( $image->id, 'wpbdp-thumb', false, array(
includes/templates-ui.php CHANGED
@@ -402,7 +402,9 @@ function wpbdp_the_bar($parts=array()) {
402
  * @since 2.3
403
  */
404
  function wpbdp_listing_thumbnail( $listing_id=null, $args=array() ) {
405
- if ( !$listing_id ) $listing_id = get_the_ID();
 
 
406
 
407
  $listing = WPBDP_Listing::get( $listing_id );
408
 
@@ -459,7 +461,7 @@ function wpbdp_listing_thumbnail( $listing_id=null, $args=array() ) {
459
 
460
  if ( !$image_link && $args['link'] == 'listing' ){
461
  $image_link = get_permalink( $listing_id );
462
- $listing_link_in_new_tab = wpbdp_get_option( 'listing-link-in-new-tab' ) ? '_blank' : '_self';
463
  }
464
 
465
  if ( $image_img ) {
@@ -473,7 +475,7 @@ function wpbdp_listing_thumbnail( $listing_id=null, $args=array() ) {
473
  $image_img );
474
  }
475
 
476
- return sprintf( '<div class="listing-thumbnail"><a href="%s" target="%s" class="%s" title="%s" %s>%s</a></div>',
477
  $image_link,
478
  $listing_link_in_new_tab,
479
  $args['link'] == 'picture' ? 'thickbox' : '',
402
  * @since 2.3
403
  */
404
  function wpbdp_listing_thumbnail( $listing_id=null, $args=array() ) {
405
+ if ( ! $listing_id ) {
406
+ $listing_id = apply_filters( 'wpbdp_listing_images_listing_id', get_the_ID() );
407
+ }
408
 
409
  $listing = WPBDP_Listing::get( $listing_id );
410
 
461
 
462
  if ( !$image_link && $args['link'] == 'listing' ){
463
  $image_link = get_permalink( $listing_id );
464
+ $listing_link_in_new_tab = wpbdp_get_option( 'listing-link-in-new-tab' ) ? '"_blank" rel="noopener"' : '"_self"';
465
  }
466
 
467
  if ( $image_img ) {
475
  $image_img );
476
  }
477
 
478
+ return sprintf( '<div class="listing-thumbnail"><a href="%s" target=%s class="%s" title="%s" %s>%s</a></div>',
479
  $image_link,
480
  $listing_link_in_new_tab,
481
  $args['link'] == 'picture' ? 'thickbox' : '',
includes/utils.php CHANGED
@@ -24,8 +24,18 @@ class WPBDP__Utils {
24
  * @since 5.0
25
  */
26
  public static function sort_by_property( &$array, $prop ) {
27
- uasort( $array,
28
- create_function( '$x, $y', '$x_ = (array) $x; $y_ = (array) $y; return $x_["' . $prop . '"] - $y_["' . $prop . '"];' ) );
 
 
 
 
 
 
 
 
 
 
29
  }
30
 
31
  /**
24
  * @since 5.0
25
  */
26
  public static function sort_by_property( &$array, $prop ) {
27
+ if ( version_compare( phpversion(), '5.3.0', '>=' ) ) {
28
+ $callback = function( $x, $y ) use ( $prop ) {
29
+ $x = (array) $x;
30
+ $y = (array) $y;
31
+
32
+ return $x[ $prop ] - $y[ $prop ];
33
+ };
34
+ } else {
35
+ $callback = create_function( '$x, $y', '$x_ = (array) $x; $y_ = (array) $y; return $x_["' . $prop . '"] - $y_["' . $prop . '"];' );
36
+ }
37
+
38
+ uasort( $array, $callback );
39
  }
40
 
41
  /**
includes/views/all_listings.php CHANGED
@@ -34,7 +34,7 @@ class WPBDP__Views__All_Listings extends WPBDP__View {
34
  $q = new WP_Query( $args );
35
 
36
  // Try to trick pagination to remove it when processing a shortcode.
37
- if ( ! empty( $this->in_shortcode ) ) {
38
  $q->max_num_pages = 1;
39
  }
40
  wpbdp_push_query( $q );
@@ -46,6 +46,11 @@ class WPBDP__Views__All_Listings extends WPBDP__View {
46
  '_bar' => $show_menu,
47
  'query' => $q );
48
 
 
 
 
 
 
49
  $html = wpbdp_x_render( 'listings', $template_args );
50
  wp_reset_postdata();
51
  wpbdp_pop_query( $q );
34
  $q = new WP_Query( $args );
35
 
36
  // Try to trick pagination to remove it when processing a shortcode.
37
+ if ( ! empty( $this->in_shortcode ) && empty( $this->pagination ) ) {
38
  $q->max_num_pages = 1;
39
  }
40
  wpbdp_push_query( $q );
46
  '_bar' => $show_menu,
47
  'query' => $q );
48
 
49
+ if ( ! function_exists('wp_pagenavi' ) && is_front_page() ) {
50
+ global $paged;
51
+ $paged = $q->query['paged'];
52
+ }
53
+
54
  $html = wpbdp_x_render( 'listings', $template_args );
55
  wp_reset_postdata();
56
  wpbdp_pop_query( $q );
includes/views/submit_listing.php CHANGED
@@ -358,14 +358,14 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
358
  );
359
  }
360
 
 
 
361
  if ( ! $this->editing && wpbdp_get_option( 'display-terms-and-conditions' ) ) {
362
  $sections['terms_and_conditions'] = array(
363
  'title' => _x( 'Terms and Conditions', 'submit listing', 'WPBDM' )
364
  );
365
  }
366
 
367
- $sections = apply_filters( 'wpbdp_submit_sections', $sections, $this );
368
-
369
  foreach ( $sections as $section_id => &$s ) {
370
  $s['id'] = $section_id;
371
  $s['html'] = '';
@@ -604,7 +604,15 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
604
 
605
  private function sort_images( $images_, $meta ) {
606
  // Sort inside $meta first.
607
- uasort( $meta, create_function( '$x, $y', "return \$y['order'] - \$x['order'];" ) );
 
 
 
 
 
 
 
 
608
 
609
  // Sort $images_ considering $meta.
610
  $images = array();
@@ -838,11 +846,11 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
838
  }
839
 
840
  $html .= '<label>';
841
- $html .= '<input type="checkbox" name="terms-and-conditions-agreement" value="1" />';
842
 
843
  $label = _x( 'I agree to the <a>Terms and Conditions</a>', 'templates', 'WPBDM' );
844
  if ( $is_url )
845
- $label = str_replace( '<a>', '<a href="' . esc_url( $tos ) . '" target="_blank">', $label );
846
  else
847
  $label = str_replace( array( '<a>', '</a>' ), '', $label );
848
 
358
  );
359
  }
360
 
361
+ $sections = apply_filters( 'wpbdp_submit_sections', $sections, $this );
362
+
363
  if ( ! $this->editing && wpbdp_get_option( 'display-terms-and-conditions' ) ) {
364
  $sections['terms_and_conditions'] = array(
365
  'title' => _x( 'Terms and Conditions', 'submit listing', 'WPBDM' )
366
  );
367
  }
368
 
 
 
369
  foreach ( $sections as $section_id => &$s ) {
370
  $s['id'] = $section_id;
371
  $s['html'] = '';
604
 
605
  private function sort_images( $images_, $meta ) {
606
  // Sort inside $meta first.
607
+ if ( version_compare( phpversion(), '5.3.0', '>=' ) ) {
608
+ $callback = function ( $x, $y ) {
609
+ return $y['order'] - $x['order'];
610
+ };
611
+ } else {
612
+ $callback = create_function( '$x, $y', "return \$y['order'] - \$x['order'];" );
613
+ }
614
+
615
+ uasort( $meta, $callback );
616
 
617
  // Sort $images_ considering $meta.
618
  $images = array();
846
  }
847
 
848
  $html .= '<label>';
849
+ $html .= '<input type="checkbox" name="terms-and-conditions-agreement" value="1" ' . ( $accepted ? 'checked="checked"' : '' ) . ' />';
850
 
851
  $label = _x( 'I agree to the <a>Terms and Conditions</a>', 'templates', 'WPBDM' );
852
  if ( $is_url )
853
+ $label = str_replace( '<a>', '<a href="' . esc_url( $tos ) . '" target="_blank" rel="noopener">', $label );
854
  else
855
  $label = str_replace( array( '<a>', '</a>' ), '', $label );
856
 
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-03-02 04:44:48+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"
@@ -183,7 +183,7 @@ msgid ""
183
  "payment processor directly."
184
  msgstr ""
185
 
186
- #: includes/class-wpbdp.php:422
187
  #, fuzzy
188
  msgid ""
189
  "The directory features are disabled at this time because a <a>manual "
@@ -192,7 +192,7 @@ msgstr ""
192
  "تم تعطيل ميزات دليل الأعمال حاليا بسبب أن الإضافة تحتاج إلى إجراء ترقية "
193
  "يدوية قبل المتابعة."
194
 
195
- #: includes/class-wpbdp.php:429
196
  msgid ""
197
  "The directory is not available at this time. Please try again in a few "
198
  "minutes or contact the administrator if the problem persists."
@@ -1137,53 +1137,53 @@ msgctxt "listing status"
1137
  msgid "Reported"
1138
  msgstr ""
1139
 
1140
- #: includes/class-listing.php:705
1141
  msgctxt "listing status"
1142
  msgid "Unknown"
1143
  msgstr ""
1144
 
1145
- #: includes/class-listing.php:706
1146
  msgctxt "listing status"
1147
  msgid "Legacy"
1148
  msgstr ""
1149
 
1150
- #: includes/class-listing.php:707
1151
  #, fuzzy
1152
  msgctxt "listing status"
1153
  msgid "Incomplete"
1154
  msgstr "إكتمل"
1155
 
1156
- #: includes/class-listing.php:708
1157
  #, fuzzy
1158
  msgctxt "listing status"
1159
  msgid "Pending Payment"
1160
  msgstr "في انتظار التخلي"
1161
 
1162
- #: includes/class-listing.php:709
1163
  #, fuzzy
1164
  msgctxt "listing status"
1165
  msgid "Complete"
1166
  msgstr "إكتمل"
1167
 
1168
- #: includes/class-listing.php:710
1169
  #, fuzzy
1170
  msgctxt "listing status"
1171
  msgid "Pending Upgrade"
1172
  msgstr " في انتظار الترقية"
1173
 
1174
- #: includes/class-listing.php:711
1175
  #, fuzzy
1176
  msgctxt "listing status"
1177
  msgid "Expired"
1178
  msgstr "منتهي الصلاحية"
1179
 
1180
- #: includes/class-listing.php:712
1181
  #, fuzzy
1182
  msgctxt "listing status"
1183
  msgid "Pending Renewal"
1184
  msgstr "مفعل + ريثما يتم التجديد"
1185
 
1186
- #: includes/class-listing.php:713
1187
  #, fuzzy
1188
  msgctxt "listing status"
1189
  msgid "Abandoned"
@@ -1247,23 +1247,23 @@ msgid "Send access keys"
1247
  msgstr "مفتاح الوصول"
1248
 
1249
  #: includes/admin/class-admin.php:157
1250
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:63
1251
  #, fuzzy
1252
  msgctxt "listing metabox"
1253
  msgid "Never"
1254
  msgstr "أبداً"
1255
 
1256
  #: includes/admin/class-admin.php:158
1257
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1258
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1259
  #, fuzzy
1260
  msgctxt "listing metabox"
1261
  msgid "Yes"
1262
  msgstr "نعم"
1263
 
1264
  #: includes/admin/class-admin.php:159
1265
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1266
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1267
  #, fuzzy
1268
  msgctxt "listing metabox"
1269
  msgid "No"
@@ -1312,7 +1312,7 @@ msgid "Listing Status"
1312
  msgstr "الإعلانات"
1313
 
1314
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1315
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:20
1316
  #, fuzzy
1317
  msgctxt "listing metabox"
1318
  msgid "N/A"
@@ -1324,70 +1324,70 @@ msgctxt "listing metabox"
1324
  msgid "Last renew date"
1325
  msgstr "تاريخ التجديد"
1326
 
1327
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1328
  #, fuzzy
1329
  msgctxt "listing metabox"
1330
  msgid "Plan Details"
1331
  msgstr "تفاصيل الخطة"
1332
 
1333
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:25
1334
  msgctxt "listing metabox"
1335
  msgid "Fee Plan"
1336
  msgstr ""
1337
 
1338
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:34
1339
  msgctxt "listing metabox"
1340
  msgid "Change plan"
1341
  msgstr ""
1342
 
1343
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:46
1344
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:66
1345
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1346
  #, fuzzy
1347
  msgctxt "listing metabox"
1348
  msgid "OK"
1349
  msgstr "حسناً"
1350
 
1351
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:47
1352
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1353
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:81
1354
  #, fuzzy
1355
  msgctxt "listing metabox"
1356
  msgid "Cancel"
1357
  msgstr "إلغاء"
1358
 
1359
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1360
  #, fuzzy
1361
  msgctxt "listing metabox"
1362
  msgid "Amount"
1363
  msgstr "القدر"
1364
 
1365
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:56
1366
  #, fuzzy
1367
  msgctxt "listing metabox"
1368
  msgid "Expires On"
1369
  msgstr "ستنتهي الصلاحية في"
1370
 
1371
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:61
1372
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:76
1373
  #, fuzzy
1374
  msgctxt "listing metabox"
1375
  msgid "Edit"
1376
  msgstr "Editer"
1377
 
1378
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1379
  #, fuzzy
1380
  msgctxt "listing metabox"
1381
  msgid "# of images"
1382
  msgstr "# الصور"
1383
 
1384
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1385
  #, fuzzy
1386
  msgctxt "listing metabox"
1387
  msgid "Is Featured?"
1388
  msgstr "تغذية %s"
1389
 
1390
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1391
  #, fuzzy
1392
  msgctxt "listing metabox"
1393
  msgid "Is Recurring?"
@@ -3417,13 +3417,13 @@ msgid "Author"
3417
  msgstr "الكاتب"
3418
 
3419
  #: includes/admin/settings/class-settings-bootstrap.php:516
3420
- #: includes/functions.php:995
3421
  msgctxt "admin settings"
3422
  msgid "Date posted"
3423
  msgstr "تاريخ النشر"
3424
 
3425
  #: includes/admin/settings/class-settings-bootstrap.php:517
3426
- #: includes/functions.php:996
3427
  msgctxt "admin settings"
3428
  msgid "Date last modified"
3429
  msgstr "تاريخ آخر تعديل"
@@ -3728,7 +3728,7 @@ msgctxt "admin settings"
3728
  msgid "Checkout URL link"
3729
  msgstr "رابط URL إتمام الشراء"
3730
 
3731
- #: includes/admin/settings/class-settings-bootstrap.php:1156
3732
  msgctxt "admin settings"
3733
  msgid ""
3734
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
@@ -3737,26 +3737,26 @@ msgstr ""
3737
  "تعذر إزالة \"إضافة دليل الأعمال – وحدة التوافق أجاكس\". المرجو إزالة الملف "
3738
  "\"%s\" يدوياً أو قم بإلغاء تفعيل الإضافة."
3739
 
3740
- #: includes/admin/settings/class-settings-bootstrap.php:1169
3741
  msgctxt "admin settings"
3742
  msgid ""
3743
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
3744
  "be created."
3745
  msgstr "لا يمكن تفعيل وضع التوافق أجاكس: تعذر إنشاء المجلد \"%s\"."
3746
 
3747
- #: includes/admin/settings/class-settings-bootstrap.php:1174
3748
  msgctxt "admin settings"
3749
  msgid ""
3750
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
3751
  "not activated."
3752
  msgstr "تعذر نسخ إضافة التوافق أجاكس \"%s\". لم يتم تفعيل وضع التوافق."
3753
 
3754
- #: includes/functions.php:993
3755
  msgctxt "admin settings"
3756
  msgid "User"
3757
  msgstr "عضو"
3758
 
3759
- #: includes/functions.php:994
3760
  msgctxt "admin settings"
3761
  msgid "User registration date"
3762
  msgstr "تاريخ تسجيل العضو"
@@ -3784,36 +3784,36 @@ msgctxt "expiration notices"
3784
  msgid "Delete"
3785
  msgstr "Effacer"
3786
 
3787
- #: includes/admin/settings/class-settings-admin.php:411
3788
  msgctxt "expiration notices"
3789
  msgid "recurring and non-recurring"
3790
  msgstr ""
3791
 
3792
- #: includes/admin/settings/class-settings-admin.php:413
3793
  #, fuzzy
3794
  msgctxt "expiration notices"
3795
  msgid "recurring only"
3796
  msgstr "(متكرر)"
3797
 
3798
- #: includes/admin/settings/class-settings-admin.php:415
3799
  #, fuzzy
3800
  msgctxt "expiration notices"
3801
  msgid "non-recurring only"
3802
  msgstr "(متكرر)"
3803
 
3804
- #: includes/admin/settings/class-settings-admin.php:419
3805
  #, fuzzy
3806
  msgctxt "expiration notices"
3807
  msgid "Sent when a listing (%s) is renewed."
3808
  msgstr "ترسل بعد أن يضاف الإعلان."
3809
 
3810
- #: includes/admin/settings/class-settings-admin.php:424
3811
  #, fuzzy
3812
  msgctxt "expiration notices"
3813
  msgid "Sent when a listing (%s) expires."
3814
  msgstr "الإعلان منتهي التاريخ"
3815
 
3816
- #: includes/admin/settings/class-settings-admin.php:432
3817
  #, fuzzy
3818
  msgctxt "expiration notices"
3819
  msgid "%d day"
@@ -3825,7 +3825,7 @@ msgstr[3] "%d أيام"
3825
  msgstr[4] "%d يوم"
3826
  msgstr[5] "%d يوم"
3827
 
3828
- #: includes/admin/settings/class-settings-admin.php:435
3829
  msgctxt "expiration notices"
3830
  msgid "%d week"
3831
  msgid_plural "%d weeks"
@@ -3836,7 +3836,7 @@ msgstr[3] ""
3836
  msgstr[4] ""
3837
  msgstr[5] ""
3838
 
3839
- #: includes/admin/settings/class-settings-admin.php:438
3840
  msgctxt "expiration notices"
3841
  msgid "%d month"
3842
  msgid_plural "%d months"
@@ -3849,31 +3849,31 @@ msgstr[5] ""
3849
 
3850
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3851
  #. non-recuring only)
3852
- #: includes/admin/settings/class-settings-admin.php:444
3853
  msgctxt "expiration notices"
3854
  msgid "Sent %1$s before a listing (%2$s) expires."
3855
  msgstr ""
3856
 
3857
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3858
  #. non-recuring only)
3859
- #: includes/admin/settings/class-settings-admin.php:447
3860
  #, fuzzy
3861
  msgctxt "expiration notices"
3862
  msgid "Sent %1$s after a listing (%2$s) expires."
3863
  msgstr "ترسل بعد أن يضاف الإعلان."
3864
 
3865
- #: includes/admin/settings/class-settings-admin.php:464
3866
  msgctxt "expiration notices"
3867
  msgid "At the time of expiration"
3868
  msgstr ""
3869
 
3870
- #: includes/admin/settings/class-settings-admin.php:465
3871
  #, fuzzy
3872
  msgctxt "expiration notices"
3873
  msgid "Right after a successful renewal"
3874
  msgstr "تم تعيين الرسوم بنجاح."
3875
 
3876
- #: includes/admin/settings/class-settings-admin.php:474
3877
  msgctxt "expiration notices"
3878
  msgid "%d day before expiration"
3879
  msgid_plural "%d days before expiration"
@@ -3884,7 +3884,7 @@ msgstr[3] ""
3884
  msgstr[4] ""
3885
  msgstr[5] ""
3886
 
3887
- #: includes/admin/settings/class-settings-admin.php:474
3888
  msgctxt "expiration notices"
3889
  msgid "%d day after expiration"
3890
  msgid_plural "%d days after expiration"
@@ -3895,7 +3895,7 @@ msgstr[3] ""
3895
  msgstr[4] ""
3896
  msgstr[5] ""
3897
 
3898
- #: includes/admin/settings/class-settings-admin.php:477
3899
  msgctxt "expiration notices"
3900
  msgid "%d week before expiration"
3901
  msgid_plural "%d weeks before expiration"
@@ -3906,7 +3906,7 @@ msgstr[3] ""
3906
  msgstr[4] ""
3907
  msgstr[5] ""
3908
 
3909
- #: includes/admin/settings/class-settings-admin.php:477
3910
  msgctxt "expiration notices"
3911
  msgid "%d week after expiration"
3912
  msgid_plural "%d weeks after expiration"
@@ -3917,7 +3917,7 @@ msgstr[3] ""
3917
  msgstr[4] ""
3918
  msgstr[5] ""
3919
 
3920
- #: includes/admin/settings/class-settings-admin.php:480
3921
  msgctxt "expiration notices"
3922
  msgid "%d month before expiration"
3923
  msgid_plural "%d months before expiration"
@@ -3928,7 +3928,7 @@ msgstr[3] ""
3928
  msgstr[4] ""
3929
  msgstr[5] ""
3930
 
3931
- #: includes/admin/settings/class-settings-admin.php:480
3932
  msgctxt "expiration notices"
3933
  msgid "%d month after expiration"
3934
  msgid_plural "%d months after expiration"
@@ -3939,29 +3939,29 @@ msgstr[3] ""
3939
  msgstr[4] ""
3940
  msgstr[5] ""
3941
 
3942
- #: includes/admin/settings/class-settings-admin.php:500
3943
  #, fuzzy
3944
  msgctxt "expiration notices"
3945
  msgid "Applies to"
3946
  msgstr "Appliqué à"
3947
 
3948
- #: includes/admin/settings/class-settings-admin.php:503
3949
  msgctxt "expiration notices"
3950
  msgid "Non-recurring listings"
3951
  msgstr ""
3952
 
3953
- #: includes/admin/settings/class-settings-admin.php:504
3954
  #, fuzzy
3955
  msgctxt "expiration notices"
3956
  msgid "Recurring listings"
3957
  msgstr "الرجوع إلى الإعلان."
3958
 
3959
- #: includes/admin/settings/class-settings-admin.php:505
3960
  msgctxt "expiration notices"
3961
  msgid "Recurring and non-recurring listings"
3962
  msgstr ""
3963
 
3964
- #: includes/admin/settings/class-settings-admin.php:510
3965
  msgctxt "expiration notices"
3966
  msgid "When to send?"
3967
  msgstr ""
@@ -3972,7 +3972,53 @@ msgctxt "expiration notices"
3972
  msgid "E-mail body text"
3973
  msgstr "نص البريد الإلكتروني"
3974
 
3975
- #: includes/admin/settings/class-settings-admin.php:542
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3976
  #, fuzzy
3977
  msgctxt "settings"
3978
  msgid "Settings reset to default."
@@ -5474,25 +5520,25 @@ msgctxt "listing"
5474
  msgid "Add New Listing"
5475
  msgstr "إضافة إعلان جديد"
5476
 
5477
- #: includes/class-listing.php:294
5478
  #, fuzzy
5479
  msgctxt "listing"
5480
  msgid "Listing expired"
5481
  msgstr "الإعلان منتهي التاريخ"
5482
 
5483
- #: includes/class-listing.php:446
5484
  #, fuzzy
5485
  msgctxt "listing"
5486
  msgid "(Unavailable Plan)"
5487
  msgstr "(رسم غير متوفر)"
5488
 
5489
- #: includes/class-listing.php:602
5490
  #, fuzzy
5491
  msgctxt "listing"
5492
  msgid "Plan \"%s\" (recurring)"
5493
  msgstr "(متكرر)"
5494
 
5495
- #: includes/class-listing.php:604
5496
  msgctxt "listing"
5497
  msgid "Plan \"%s\""
5498
  msgstr ""
@@ -5550,17 +5596,17 @@ msgctxt "fees-api"
5550
  msgid "Free Listing"
5551
  msgstr "إعلان مجاني"
5552
 
5553
- #: includes/class-listing-email-notification.php:130
5554
  msgctxt "notify email"
5555
  msgid "[%s] New listing notification"
5556
  msgstr "[%s] تنبيه الإعلان الجديد"
5557
 
5558
- #: includes/class-listing-email-notification.php:165
5559
  msgctxt "notify email"
5560
  msgid "[%s] Listing edit notification"
5561
  msgstr "[%s] تنبيه تحرير الإعلان"
5562
 
5563
- #: includes/class-listing-email-notification.php:219
5564
  #, fuzzy
5565
  msgctxt "notify email"
5566
  msgid "[%s] Reported listing notification"
@@ -5601,20 +5647,36 @@ msgctxt "notify email"
5601
  msgid "Admin URL"
5602
  msgstr "رابط URL المدير"
5603
 
5604
- #: templates/email/listing-added.tpl.php:17
5605
- #: templates/email/listing-edited.tpl.php:17
5606
- #: templates/email/listing-reported.tpl.php:17
5607
  msgctxt "notify email"
5608
- msgid "Categories"
5609
- msgstr "التصنيفات"
5610
-
5611
- #: templates/email/listing-added.tpl.php:20
 
 
 
 
 
 
5612
  #: templates/email/listing-edited.tpl.php:20
5613
  #: templates/email/listing-reported.tpl.php:19
5614
  msgctxt "notify email"
5615
  msgid "Posted By"
5616
  msgstr "أضيفت بواسطة"
5617
 
 
 
 
 
 
 
 
 
 
 
 
5618
  #: templates/email/listing-reported.tpl.php:21
5619
  msgctxt "notify email"
5620
  msgid "Report IP"
@@ -5859,7 +5921,7 @@ msgctxt "submit listing"
5859
  msgid "Account Creation"
5860
  msgstr ""
5861
 
5862
- #: includes/views/submit_listing.php:363
5863
  #, fuzzy
5864
  msgctxt "submit listing"
5865
  msgid "Terms and Conditions"
@@ -5901,57 +5963,57 @@ msgctxt "submit listing"
5901
  msgid "Please choose a valid fee plan for your category selection."
5902
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
5903
 
5904
- #: includes/views/submit_listing.php:717
5905
  #, fuzzy
5906
  msgctxt "submit listing"
5907
  msgid "Please enter your desired username."
5908
  msgstr "يرجى إدخال إسمك."
5909
 
5910
- #: includes/views/submit_listing.php:722
5911
  #, fuzzy
5912
  msgctxt "submit listing"
5913
  msgid "Please enter the e-mail for your new account."
5914
  msgstr "يرجى إدخال إسمك."
5915
 
5916
- #: includes/views/submit_listing.php:727
5917
  msgctxt "submit listing"
5918
  msgid "Please enter the password for your new account."
5919
  msgstr ""
5920
 
5921
- #: includes/views/submit_listing.php:737
5922
  msgctxt "submit listing"
5923
  msgid "The username you chose is already in use. Please use a different one."
5924
  msgstr ""
5925
 
5926
- #: includes/views/submit_listing.php:742
5927
  msgctxt "submit listing"
5928
  msgid "The e-mail address you chose for your account is already in use."
5929
  msgstr ""
5930
 
5931
- #: includes/views/submit_listing.php:757
5932
  msgctxt "submit listing"
5933
  msgid "Create a user account on this site"
5934
  msgstr ""
5935
 
5936
- #: includes/views/submit_listing.php:764
5937
  msgctxt "submit listing"
5938
  msgid ""
5939
  "You need to create an account on the site. Please fill out the form below."
5940
  msgstr ""
5941
 
5942
- #: includes/views/submit_listing.php:770
5943
  #, fuzzy
5944
  msgctxt "submit listing"
5945
  msgid "Username:"
5946
  msgstr "عضو"
5947
 
5948
- #: includes/views/submit_listing.php:779
5949
  #, fuzzy
5950
  msgctxt "submit listing"
5951
  msgid "Email:"
5952
  msgstr "البريد الإلكتروني: %s"
5953
 
5954
- #: includes/views/submit_listing.php:788
5955
  msgctxt "submit listing"
5956
  msgid "Password:"
5957
  msgstr ""
@@ -5996,18 +6058,18 @@ msgctxt "recaptcha"
5996
  msgid "reCAPTCHA"
5997
  msgstr "إعدادات reCaptcha"
5998
 
5999
- #: includes/class-wpbdp.php:241
6000
  msgctxt "admin plugins"
6001
  msgid "Settings"
6002
  msgstr "الإعدادات"
6003
 
6004
- #: includes/class-wpbdp.php:323
6005
  #, fuzzy
6006
  msgctxt "listing image upload"
6007
  msgid "Can not upload any more images for this listing."
6008
  msgstr "التصنيفات لهذا الإعلان"
6009
 
6010
- #: includes/class-wpbdp.php:327
6011
  msgctxt "listing image upload"
6012
  msgid ""
6013
  "You're trying to upload %d images, but only have %d slot available. Please "
@@ -7100,37 +7162,37 @@ msgctxt "templates"
7100
  msgid "View not available."
7101
  msgstr "المشاهدة غير متوفرة."
7102
 
7103
- #: includes/views/submit_listing.php:826
7104
  msgctxt "templates"
7105
  msgid "Please agree to the Terms and Conditions."
7106
  msgstr "يرجى الموافقة على الشروط والأحكام."
7107
 
7108
- #: includes/views/submit_listing.php:834
7109
  msgctxt "templates"
7110
  msgid "Terms and Conditions:"
7111
  msgstr "شروط وأحكام:"
7112
 
7113
- #: includes/views/submit_listing.php:843
7114
  #, fuzzy
7115
  msgctxt "templates"
7116
  msgid "I agree to the <a>Terms and Conditions</a>"
7117
  msgstr "أوافق على الشروط والأحكام"
7118
 
7119
  #: templates/businessdirectory-listings.tpl.php:27
7120
- #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:6
7121
  #: templates/search.tpl.php:17
7122
  msgctxt "templates"
7123
  msgid "No listings found."
7124
  msgstr "لم يتم العثور على أي إعلانات."
7125
 
7126
  #: templates/businessdirectory-listings.tpl.php:38
7127
- #: templates/listings.tpl.php:17
7128
  msgctxt "templates"
7129
  msgid "&laquo; Previous "
7130
  msgstr "&laquo; السابق"
7131
 
7132
  #: templates/businessdirectory-listings.tpl.php:39
7133
- #: templates/listings.tpl.php:18
7134
  msgctxt "templates"
7135
  msgid "Next &raquo;"
7136
  msgstr "التالي &raquo;"
@@ -7424,7 +7486,7 @@ msgctxt "sort"
7424
  msgid "(Reset)"
7425
  msgstr "(إعادة تعيين)"
7426
 
7427
- #: includes/utils.php:169
7428
  msgctxt "utils"
7429
  msgid ""
7430
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
@@ -7432,54 +7494,54 @@ msgstr ""
7432
  "تجاوزت البيانات التي تم نشرها الحد الأقصى لإعدادات PHP. أنظر توجيه "
7433
  "\"post_max_size\"."
7434
 
7435
- #: includes/utils.php:216
7436
  msgctxt "utils"
7437
  msgid "File size (%s) exceeds maximum file size of %s"
7438
  msgstr "حجم الملف (%s) يتجاوز الحجم الأقصى للملف %s"
7439
 
7440
- #: includes/utils.php:224
7441
  msgctxt "utils"
7442
  msgid "File size (%s) is inferior to the required minimum file size of %s"
7443
  msgstr "حجم الملف (%s) أقل من الحد الأدنى المطلوب لحجم الملف لـ %s"
7444
 
7445
- #: includes/utils.php:233 includes/utils.php:240
7446
  msgctxt "utils"
7447
  msgid "File type \"%s\" is not allowed"
7448
  msgstr "غير مسموح بنوع الملف \"%s\""
7449
 
7450
- #: includes/utils.php:247
7451
  msgctxt "utils"
7452
  msgid "Unkown error while uploading file."
7453
  msgstr "حدث خطأ مجهول أثناء رفع الملف."
7454
 
7455
- #: includes/utils.php:266
7456
  msgctxt "utils"
7457
  msgid "Uploaded file is not an image"
7458
  msgstr "الملف الذي تم رفعه ليس صورة"
7459
 
7460
- #: includes/utils.php:275
7461
  msgctxt "utils"
7462
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
7463
  msgstr "عرض الصورة (%s px) هو أقل من الحد الأدنى للعرض المطلوب لـ %s px "
7464
 
7465
- #: includes/utils.php:281
7466
  msgctxt "utils"
7467
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
7468
  msgstr ""
7469
  "ارتفاع الصورة (%s px) هو أقل من الحد الأدنى للارتفاع المطلوب لـ %s px "
7470
 
7471
- #: includes/utils.php:287
7472
  msgctxt "utils"
7473
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
7474
  msgstr "عرض الصورة (%s px) هو أكبر من الحد الأقصى للعرض المسموح به لـ %s px "
7475
 
7476
- #: includes/utils.php:293
7477
  msgctxt "utils"
7478
  msgid "Image height (%s px) is greater than maximum required height of %s px."
7479
  msgstr ""
7480
  "ارتفاع الصورة (%s px) هو أكبر من الحد الأقصى للارتفاع المطلوب لـ %s px "
7481
 
7482
- #: includes/utils.php:307
7483
  msgctxt "utils"
7484
  msgid "Error while uploading file"
7485
  msgstr "حدث خطأ أثناء رفع الملف."
@@ -7798,7 +7860,7 @@ msgid ""
7798
  "submit again."
7799
  msgstr ""
7800
 
7801
- #: includes/views/submit_listing.php:669
7802
  msgctxt "listing submit"
7803
  msgid ""
7804
  "Image upload is required, please provide at least one image and submit again."
@@ -8221,24 +8283,24 @@ msgctxt "admin infometabox"
8221
  msgid "Access Key"
8222
  msgstr "مفتاح الوصول"
8223
 
8224
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
8225
  #, fuzzy
8226
  msgctxt "admin infometabox"
8227
  msgid "Renewal url (copy & paste)"
8228
  msgstr "تجديد عنوان URL (نسخة & لصق)"
8229
 
8230
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
8231
  msgctxt "admin infometabox"
8232
  msgid "Get renewal URL"
8233
  msgstr ""
8234
 
8235
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:103
8236
  #, fuzzy
8237
  msgctxt "admin infometabox"
8238
  msgid "Send renewal e-mail"
8239
  msgstr "إرسال رسالة بريد إلكتروني بخصوص التجديد للعضو"
8240
 
8241
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:108
8242
  #, fuzzy
8243
  msgctxt "admin infometabox"
8244
  msgid "Renew listing"
@@ -9968,10 +10030,6 @@ msgstr "العنوان"
9968
  #~ msgid "Listings"
9969
  #~ msgstr "الإعلانات"
9970
 
9971
- #~ msgctxt "admin settings"
9972
- #~ msgid "Listing Renewal"
9973
- #~ msgstr "تجديد الإعلان"
9974
-
9975
  #~ msgctxt "admin settings"
9976
  #~ msgid "Featured (Sticky) listing settings"
9977
  #~ msgstr "إعدادات الإعلانات (المثبتة) المميزة"
@@ -10037,10 +10095,6 @@ msgstr "العنوان"
10037
  #~ msgid "Site title"
10038
  #~ msgstr "إسم الموقع"
10039
 
10040
- #~ msgctxt "settings email"
10041
- #~ msgid "Site title (with link)"
10042
- #~ msgstr "إسم الموقع (مع الرابط)"
10043
-
10044
  #~ msgctxt "settings email"
10045
  #~ msgid "Site address (with link)"
10046
  #~ msgstr "عنوان الموقع (مع الرابط)"
@@ -10544,14 +10598,6 @@ msgstr "العنوان"
10544
  #~ "ترسل أحيانا قبل انتهاء تاريخ الإعلان. تنطبق على عمليات التجديد غير "
10545
  #~ "المتكررة فقط."
10546
 
10547
- #~ msgctxt "settings"
10548
- #~ msgid "Listing's name (with link)"
10549
- #~ msgstr "إسم الإعلان (مع رابط)"
10550
-
10551
- #~ msgctxt "settings"
10552
- #~ msgid "Author's name"
10553
- #~ msgstr "إسم الكاتب"
10554
-
10555
  #~ msgctxt "settings"
10556
  #~ msgid "Category that is going to expire"
10557
  #~ 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-04-03 15:53:32+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"
183
  "payment processor directly."
184
  msgstr ""
185
 
186
+ #: includes/class-wpbdp.php:430
187
  #, fuzzy
188
  msgid ""
189
  "The directory features are disabled at this time because a <a>manual "
192
  "تم تعطيل ميزات دليل الأعمال حاليا بسبب أن الإضافة تحتاج إلى إجراء ترقية "
193
  "يدوية قبل المتابعة."
194
 
195
+ #: includes/class-wpbdp.php:437
196
  msgid ""
197
  "The directory is not available at this time. Please try again in a few "
198
  "minutes or contact the administrator if the problem persists."
1137
  msgid "Reported"
1138
  msgstr ""
1139
 
1140
+ #: includes/class-listing.php:729
1141
  msgctxt "listing status"
1142
  msgid "Unknown"
1143
  msgstr ""
1144
 
1145
+ #: includes/class-listing.php:730
1146
  msgctxt "listing status"
1147
  msgid "Legacy"
1148
  msgstr ""
1149
 
1150
+ #: includes/class-listing.php:731
1151
  #, fuzzy
1152
  msgctxt "listing status"
1153
  msgid "Incomplete"
1154
  msgstr "إكتمل"
1155
 
1156
+ #: includes/class-listing.php:732
1157
  #, fuzzy
1158
  msgctxt "listing status"
1159
  msgid "Pending Payment"
1160
  msgstr "في انتظار التخلي"
1161
 
1162
+ #: includes/class-listing.php:733
1163
  #, fuzzy
1164
  msgctxt "listing status"
1165
  msgid "Complete"
1166
  msgstr "إكتمل"
1167
 
1168
+ #: includes/class-listing.php:734
1169
  #, fuzzy
1170
  msgctxt "listing status"
1171
  msgid "Pending Upgrade"
1172
  msgstr " في انتظار الترقية"
1173
 
1174
+ #: includes/class-listing.php:735
1175
  #, fuzzy
1176
  msgctxt "listing status"
1177
  msgid "Expired"
1178
  msgstr "منتهي الصلاحية"
1179
 
1180
+ #: includes/class-listing.php:736
1181
  #, fuzzy
1182
  msgctxt "listing status"
1183
  msgid "Pending Renewal"
1184
  msgstr "مفعل + ريثما يتم التجديد"
1185
 
1186
+ #: includes/class-listing.php:737
1187
  #, fuzzy
1188
  msgctxt "listing status"
1189
  msgid "Abandoned"
1247
  msgstr "مفتاح الوصول"
1248
 
1249
  #: includes/admin/class-admin.php:157
1250
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1251
  #, fuzzy
1252
  msgctxt "listing metabox"
1253
  msgid "Never"
1254
  msgstr "أبداً"
1255
 
1256
  #: includes/admin/class-admin.php:158
1257
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1258
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1259
  #, fuzzy
1260
  msgctxt "listing metabox"
1261
  msgid "Yes"
1262
  msgstr "نعم"
1263
 
1264
  #: includes/admin/class-admin.php:159
1265
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1266
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1267
  #, fuzzy
1268
  msgctxt "listing metabox"
1269
  msgid "No"
1312
  msgstr "الإعلانات"
1313
 
1314
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1315
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1316
  #, fuzzy
1317
  msgctxt "listing metabox"
1318
  msgid "N/A"
1324
  msgid "Last renew date"
1325
  msgstr "تاريخ التجديد"
1326
 
1327
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:27
1328
  #, fuzzy
1329
  msgctxt "listing metabox"
1330
  msgid "Plan Details"
1331
  msgstr "تفاصيل الخطة"
1332
 
1333
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:29
1334
  msgctxt "listing metabox"
1335
  msgid "Fee Plan"
1336
  msgstr ""
1337
 
1338
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:38
1339
  msgctxt "listing metabox"
1340
  msgid "Change plan"
1341
  msgstr ""
1342
 
1343
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1344
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:70
1345
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1346
  #, fuzzy
1347
  msgctxt "listing metabox"
1348
  msgid "OK"
1349
  msgstr "حسناً"
1350
 
1351
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:51
1352
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1353
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:85
1354
  #, fuzzy
1355
  msgctxt "listing metabox"
1356
  msgid "Cancel"
1357
  msgstr "إلغاء"
1358
 
1359
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:54
1360
  #, fuzzy
1361
  msgctxt "listing metabox"
1362
  msgid "Amount"
1363
  msgstr "القدر"
1364
 
1365
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:60
1366
  #, fuzzy
1367
  msgctxt "listing metabox"
1368
  msgid "Expires On"
1369
  msgstr "ستنتهي الصلاحية في"
1370
 
1371
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:65
1372
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1373
  #, fuzzy
1374
  msgctxt "listing metabox"
1375
  msgid "Edit"
1376
  msgstr "Editer"
1377
 
1378
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:75
1379
  #, fuzzy
1380
  msgctxt "listing metabox"
1381
  msgid "# of images"
1382
  msgstr "# الصور"
1383
 
1384
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:88
1385
  #, fuzzy
1386
  msgctxt "listing metabox"
1387
  msgid "Is Featured?"
1388
  msgstr "تغذية %s"
1389
 
1390
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:95
1391
  #, fuzzy
1392
  msgctxt "listing metabox"
1393
  msgid "Is Recurring?"
3417
  msgstr "الكاتب"
3418
 
3419
  #: includes/admin/settings/class-settings-bootstrap.php:516
3420
+ #: includes/functions.php:1010
3421
  msgctxt "admin settings"
3422
  msgid "Date posted"
3423
  msgstr "تاريخ النشر"
3424
 
3425
  #: includes/admin/settings/class-settings-bootstrap.php:517
3426
+ #: includes/functions.php:1011
3427
  msgctxt "admin settings"
3428
  msgid "Date last modified"
3429
  msgstr "تاريخ آخر تعديل"
3728
  msgid "Checkout URL link"
3729
  msgstr "رابط URL إتمام الشراء"
3730
 
3731
+ #: includes/admin/settings/class-settings-bootstrap.php:1157
3732
  msgctxt "admin settings"
3733
  msgid ""
3734
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
3737
  "تعذر إزالة \"إضافة دليل الأعمال – وحدة التوافق أجاكس\". المرجو إزالة الملف "
3738
  "\"%s\" يدوياً أو قم بإلغاء تفعيل الإضافة."
3739
 
3740
+ #: includes/admin/settings/class-settings-bootstrap.php:1170
3741
  msgctxt "admin settings"
3742
  msgid ""
3743
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
3744
  "be created."
3745
  msgstr "لا يمكن تفعيل وضع التوافق أجاكس: تعذر إنشاء المجلد \"%s\"."
3746
 
3747
+ #: includes/admin/settings/class-settings-bootstrap.php:1175
3748
  msgctxt "admin settings"
3749
  msgid ""
3750
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
3751
  "not activated."
3752
  msgstr "تعذر نسخ إضافة التوافق أجاكس \"%s\". لم يتم تفعيل وضع التوافق."
3753
 
3754
+ #: includes/functions.php:1008
3755
  msgctxt "admin settings"
3756
  msgid "User"
3757
  msgstr "عضو"
3758
 
3759
+ #: includes/functions.php:1009
3760
  msgctxt "admin settings"
3761
  msgid "User registration date"
3762
  msgstr "تاريخ تسجيل العضو"
3784
  msgid "Delete"
3785
  msgstr "Effacer"
3786
 
3787
+ #: includes/admin/settings/class-settings-admin.php:422
3788
  msgctxt "expiration notices"
3789
  msgid "recurring and non-recurring"
3790
  msgstr ""
3791
 
3792
+ #: includes/admin/settings/class-settings-admin.php:424
3793
  #, fuzzy
3794
  msgctxt "expiration notices"
3795
  msgid "recurring only"
3796
  msgstr "(متكرر)"
3797
 
3798
+ #: includes/admin/settings/class-settings-admin.php:426
3799
  #, fuzzy
3800
  msgctxt "expiration notices"
3801
  msgid "non-recurring only"
3802
  msgstr "(متكرر)"
3803
 
3804
+ #: includes/admin/settings/class-settings-admin.php:430
3805
  #, fuzzy
3806
  msgctxt "expiration notices"
3807
  msgid "Sent when a listing (%s) is renewed."
3808
  msgstr "ترسل بعد أن يضاف الإعلان."
3809
 
3810
+ #: includes/admin/settings/class-settings-admin.php:435
3811
  #, fuzzy
3812
  msgctxt "expiration notices"
3813
  msgid "Sent when a listing (%s) expires."
3814
  msgstr "الإعلان منتهي التاريخ"
3815
 
3816
+ #: includes/admin/settings/class-settings-admin.php:443
3817
  #, fuzzy
3818
  msgctxt "expiration notices"
3819
  msgid "%d day"
3825
  msgstr[4] "%d يوم"
3826
  msgstr[5] "%d يوم"
3827
 
3828
+ #: includes/admin/settings/class-settings-admin.php:446
3829
  msgctxt "expiration notices"
3830
  msgid "%d week"
3831
  msgid_plural "%d weeks"
3836
  msgstr[4] ""
3837
  msgstr[5] ""
3838
 
3839
+ #: includes/admin/settings/class-settings-admin.php:449
3840
  msgctxt "expiration notices"
3841
  msgid "%d month"
3842
  msgid_plural "%d months"
3849
 
3850
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3851
  #. non-recuring only)
3852
+ #: includes/admin/settings/class-settings-admin.php:455
3853
  msgctxt "expiration notices"
3854
  msgid "Sent %1$s before a listing (%2$s) expires."
3855
  msgstr ""
3856
 
3857
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3858
  #. non-recuring only)
3859
+ #: includes/admin/settings/class-settings-admin.php:458
3860
  #, fuzzy
3861
  msgctxt "expiration notices"
3862
  msgid "Sent %1$s after a listing (%2$s) expires."
3863
  msgstr "ترسل بعد أن يضاف الإعلان."
3864
 
3865
+ #: includes/admin/settings/class-settings-admin.php:475
3866
  msgctxt "expiration notices"
3867
  msgid "At the time of expiration"
3868
  msgstr ""
3869
 
3870
+ #: includes/admin/settings/class-settings-admin.php:476
3871
  #, fuzzy
3872
  msgctxt "expiration notices"
3873
  msgid "Right after a successful renewal"
3874
  msgstr "تم تعيين الرسوم بنجاح."
3875
 
3876
+ #: includes/admin/settings/class-settings-admin.php:485
3877
  msgctxt "expiration notices"
3878
  msgid "%d day before expiration"
3879
  msgid_plural "%d days before expiration"
3884
  msgstr[4] ""
3885
  msgstr[5] ""
3886
 
3887
+ #: includes/admin/settings/class-settings-admin.php:485
3888
  msgctxt "expiration notices"
3889
  msgid "%d day after expiration"
3890
  msgid_plural "%d days after expiration"
3895
  msgstr[4] ""
3896
  msgstr[5] ""
3897
 
3898
+ #: includes/admin/settings/class-settings-admin.php:488
3899
  msgctxt "expiration notices"
3900
  msgid "%d week before expiration"
3901
  msgid_plural "%d weeks before expiration"
3906
  msgstr[4] ""
3907
  msgstr[5] ""
3908
 
3909
+ #: includes/admin/settings/class-settings-admin.php:488
3910
  msgctxt "expiration notices"
3911
  msgid "%d week after expiration"
3912
  msgid_plural "%d weeks after expiration"
3917
  msgstr[4] ""
3918
  msgstr[5] ""
3919
 
3920
+ #: includes/admin/settings/class-settings-admin.php:491
3921
  msgctxt "expiration notices"
3922
  msgid "%d month before expiration"
3923
  msgid_plural "%d months before expiration"
3928
  msgstr[4] ""
3929
  msgstr[5] ""
3930
 
3931
+ #: includes/admin/settings/class-settings-admin.php:491
3932
  msgctxt "expiration notices"
3933
  msgid "%d month after expiration"
3934
  msgid_plural "%d months after expiration"
3939
  msgstr[4] ""
3940
  msgstr[5] ""
3941
 
3942
+ #: includes/admin/settings/class-settings-admin.php:518
3943
  #, fuzzy
3944
  msgctxt "expiration notices"
3945
  msgid "Applies to"
3946
  msgstr "Appliqué à"
3947
 
3948
+ #: includes/admin/settings/class-settings-admin.php:521
3949
  msgctxt "expiration notices"
3950
  msgid "Non-recurring listings"
3951
  msgstr ""
3952
 
3953
+ #: includes/admin/settings/class-settings-admin.php:522
3954
  #, fuzzy
3955
  msgctxt "expiration notices"
3956
  msgid "Recurring listings"
3957
  msgstr "الرجوع إلى الإعلان."
3958
 
3959
+ #: includes/admin/settings/class-settings-admin.php:523
3960
  msgctxt "expiration notices"
3961
  msgid "Recurring and non-recurring listings"
3962
  msgstr ""
3963
 
3964
+ #: includes/admin/settings/class-settings-admin.php:528
3965
  msgctxt "expiration notices"
3966
  msgid "When to send?"
3967
  msgstr ""
3972
  msgid "E-mail body text"
3973
  msgstr "نص البريد الإلكتروني"
3974
 
3975
+ #: includes/admin/settings/class-settings-admin.php:398
3976
+ #, fuzzy
3977
+ msgctxt "settings"
3978
+ msgid "Site title (with link)"
3979
+ msgstr "إسم الموقع (مع الرابط)"
3980
+
3981
+ #: includes/admin/settings/class-settings-admin.php:399
3982
+ msgctxt "settings"
3983
+ msgid "Author's name"
3984
+ msgstr "إسم الكاتب"
3985
+
3986
+ #: includes/admin/settings/class-settings-admin.php:400
3987
+ msgctxt "settings"
3988
+ msgid "Listing's name (with link)"
3989
+ msgstr "إسم الإعلان (مع رابط)"
3990
+
3991
+ #: includes/admin/settings/class-settings-admin.php:401
3992
+ #, fuzzy
3993
+ msgctxt "settings"
3994
+ msgid "Listing's expiration date"
3995
+ msgstr "إنتهاء صلاحية الإعلان"
3996
+
3997
+ #: includes/admin/settings/class-settings-admin.php:402
3998
+ #, fuzzy
3999
+ msgctxt "settings"
4000
+ msgid "Listing's renewal link"
4001
+ msgstr "تجديد الإعلان"
4002
+
4003
+ #: includes/admin/settings/class-settings-admin.php:403
4004
+ #, fuzzy
4005
+ msgctxt "settings"
4006
+ msgid "Listing's categories"
4007
+ msgstr "عنوان الإعلان"
4008
+
4009
+ #: includes/admin/settings/class-settings-admin.php:404
4010
+ #, fuzzy
4011
+ msgctxt "settings"
4012
+ msgid "Listing's last payment date"
4013
+ msgstr "إنتهاء صلاحية الإعلان"
4014
+
4015
+ #: includes/admin/settings/class-settings-admin.php:405
4016
+ #, fuzzy
4017
+ msgctxt "settings"
4018
+ msgid "Listing's access key"
4019
+ msgstr "مفاتيح وصول الإعلان"
4020
+
4021
+ #: includes/admin/settings/class-settings-admin.php:560
4022
  #, fuzzy
4023
  msgctxt "settings"
4024
  msgid "Settings reset to default."
5520
  msgid "Add New Listing"
5521
  msgstr "إضافة إعلان جديد"
5522
 
5523
+ #: includes/class-listing.php:318
5524
  #, fuzzy
5525
  msgctxt "listing"
5526
  msgid "Listing expired"
5527
  msgstr "الإعلان منتهي التاريخ"
5528
 
5529
+ #: includes/class-listing.php:470
5530
  #, fuzzy
5531
  msgctxt "listing"
5532
  msgid "(Unavailable Plan)"
5533
  msgstr "(رسم غير متوفر)"
5534
 
5535
+ #: includes/class-listing.php:626
5536
  #, fuzzy
5537
  msgctxt "listing"
5538
  msgid "Plan \"%s\" (recurring)"
5539
  msgstr "(متكرر)"
5540
 
5541
+ #: includes/class-listing.php:628
5542
  msgctxt "listing"
5543
  msgid "Plan \"%s\""
5544
  msgstr ""
5596
  msgid "Free Listing"
5597
  msgstr "إعلان مجاني"
5598
 
5599
+ #: includes/class-listing-email-notification.php:151
5600
  msgctxt "notify email"
5601
  msgid "[%s] New listing notification"
5602
  msgstr "[%s] تنبيه الإعلان الجديد"
5603
 
5604
+ #: includes/class-listing-email-notification.php:186
5605
  msgctxt "notify email"
5606
  msgid "[%s] Listing edit notification"
5607
  msgstr "[%s] تنبيه تحرير الإعلان"
5608
 
5609
+ #: includes/class-listing-email-notification.php:240
5610
  #, fuzzy
5611
  msgctxt "notify email"
5612
  msgid "[%s] Reported listing notification"
5647
  msgid "Admin URL"
5648
  msgstr "رابط URL المدير"
5649
 
5650
+ #: templates/email/listing-added.tpl.php:21
5651
+ #, fuzzy
 
5652
  msgctxt "notify email"
5653
+ msgid "Category"
5654
+ msgid_plural "Categories"
5655
+ msgstr[0] "التصنيف"
5656
+ msgstr[1] "التصنيف"
5657
+ msgstr[2] "التصنيف"
5658
+ msgstr[3] "التصنيف"
5659
+ msgstr[4] "التصنيف"
5660
+ msgstr[5] "التصنيف"
5661
+
5662
+ #: templates/email/listing-added.tpl.php:27
5663
  #: templates/email/listing-edited.tpl.php:20
5664
  #: templates/email/listing-reported.tpl.php:19
5665
  msgctxt "notify email"
5666
  msgid "Posted By"
5667
  msgstr "أضيفت بواسطة"
5668
 
5669
+ #: templates/email/listing-added.tpl.php:36
5670
+ msgctxt "notify email"
5671
+ msgid "Annonymous User"
5672
+ msgstr ""
5673
+
5674
+ #: templates/email/listing-edited.tpl.php:17
5675
+ #: templates/email/listing-reported.tpl.php:17
5676
+ msgctxt "notify email"
5677
+ msgid "Categories"
5678
+ msgstr "التصنيفات"
5679
+
5680
  #: templates/email/listing-reported.tpl.php:21
5681
  msgctxt "notify email"
5682
  msgid "Report IP"
5921
  msgid "Account Creation"
5922
  msgstr ""
5923
 
5924
+ #: includes/views/submit_listing.php:365
5925
  #, fuzzy
5926
  msgctxt "submit listing"
5927
  msgid "Terms and Conditions"
5963
  msgid "Please choose a valid fee plan for your category selection."
5964
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
5965
 
5966
+ #: includes/views/submit_listing.php:725
5967
  #, fuzzy
5968
  msgctxt "submit listing"
5969
  msgid "Please enter your desired username."
5970
  msgstr "يرجى إدخال إسمك."
5971
 
5972
+ #: includes/views/submit_listing.php:730
5973
  #, fuzzy
5974
  msgctxt "submit listing"
5975
  msgid "Please enter the e-mail for your new account."
5976
  msgstr "يرجى إدخال إسمك."
5977
 
5978
+ #: includes/views/submit_listing.php:735
5979
  msgctxt "submit listing"
5980
  msgid "Please enter the password for your new account."
5981
  msgstr ""
5982
 
5983
+ #: includes/views/submit_listing.php:745
5984
  msgctxt "submit listing"
5985
  msgid "The username you chose is already in use. Please use a different one."
5986
  msgstr ""
5987
 
5988
+ #: includes/views/submit_listing.php:750
5989
  msgctxt "submit listing"
5990
  msgid "The e-mail address you chose for your account is already in use."
5991
  msgstr ""
5992
 
5993
+ #: includes/views/submit_listing.php:765
5994
  msgctxt "submit listing"
5995
  msgid "Create a user account on this site"
5996
  msgstr ""
5997
 
5998
+ #: includes/views/submit_listing.php:772
5999
  msgctxt "submit listing"
6000
  msgid ""
6001
  "You need to create an account on the site. Please fill out the form below."
6002
  msgstr ""
6003
 
6004
+ #: includes/views/submit_listing.php:778
6005
  #, fuzzy
6006
  msgctxt "submit listing"
6007
  msgid "Username:"
6008
  msgstr "عضو"
6009
 
6010
+ #: includes/views/submit_listing.php:787
6011
  #, fuzzy
6012
  msgctxt "submit listing"
6013
  msgid "Email:"
6014
  msgstr "البريد الإلكتروني: %s"
6015
 
6016
+ #: includes/views/submit_listing.php:796
6017
  msgctxt "submit listing"
6018
  msgid "Password:"
6019
  msgstr ""
6058
  msgid "reCAPTCHA"
6059
  msgstr "إعدادات reCaptcha"
6060
 
6061
+ #: includes/class-wpbdp.php:249
6062
  msgctxt "admin plugins"
6063
  msgid "Settings"
6064
  msgstr "الإعدادات"
6065
 
6066
+ #: includes/class-wpbdp.php:331
6067
  #, fuzzy
6068
  msgctxt "listing image upload"
6069
  msgid "Can not upload any more images for this listing."
6070
  msgstr "التصنيفات لهذا الإعلان"
6071
 
6072
+ #: includes/class-wpbdp.php:335
6073
  msgctxt "listing image upload"
6074
  msgid ""
6075
  "You're trying to upload %d images, but only have %d slot available. Please "
7162
  msgid "View not available."
7163
  msgstr "المشاهدة غير متوفرة."
7164
 
7165
+ #: includes/views/submit_listing.php:834
7166
  msgctxt "templates"
7167
  msgid "Please agree to the Terms and Conditions."
7168
  msgstr "يرجى الموافقة على الشروط والأحكام."
7169
 
7170
+ #: includes/views/submit_listing.php:842
7171
  msgctxt "templates"
7172
  msgid "Terms and Conditions:"
7173
  msgstr "شروط وأحكام:"
7174
 
7175
+ #: includes/views/submit_listing.php:851
7176
  #, fuzzy
7177
  msgctxt "templates"
7178
  msgid "I agree to the <a>Terms and Conditions</a>"
7179
  msgstr "أوافق على الشروط والأحكام"
7180
 
7181
  #: templates/businessdirectory-listings.tpl.php:27
7182
+ #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:8
7183
  #: templates/search.tpl.php:17
7184
  msgctxt "templates"
7185
  msgid "No listings found."
7186
  msgstr "لم يتم العثور على أي إعلانات."
7187
 
7188
  #: templates/businessdirectory-listings.tpl.php:38
7189
+ #: templates/listings.tpl.php:24
7190
  msgctxt "templates"
7191
  msgid "&laquo; Previous "
7192
  msgstr "&laquo; السابق"
7193
 
7194
  #: templates/businessdirectory-listings.tpl.php:39
7195
+ #: templates/listings.tpl.php:25
7196
  msgctxt "templates"
7197
  msgid "Next &raquo;"
7198
  msgstr "التالي &raquo;"
7486
  msgid "(Reset)"
7487
  msgstr "(إعادة تعيين)"
7488
 
7489
+ #: includes/utils.php:179
7490
  msgctxt "utils"
7491
  msgid ""
7492
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
7494
  "تجاوزت البيانات التي تم نشرها الحد الأقصى لإعدادات PHP. أنظر توجيه "
7495
  "\"post_max_size\"."
7496
 
7497
+ #: includes/utils.php:226
7498
  msgctxt "utils"
7499
  msgid "File size (%s) exceeds maximum file size of %s"
7500
  msgstr "حجم الملف (%s) يتجاوز الحجم الأقصى للملف %s"
7501
 
7502
+ #: includes/utils.php:234
7503
  msgctxt "utils"
7504
  msgid "File size (%s) is inferior to the required minimum file size of %s"
7505
  msgstr "حجم الملف (%s) أقل من الحد الأدنى المطلوب لحجم الملف لـ %s"
7506
 
7507
+ #: includes/utils.php:243 includes/utils.php:250
7508
  msgctxt "utils"
7509
  msgid "File type \"%s\" is not allowed"
7510
  msgstr "غير مسموح بنوع الملف \"%s\""
7511
 
7512
+ #: includes/utils.php:257
7513
  msgctxt "utils"
7514
  msgid "Unkown error while uploading file."
7515
  msgstr "حدث خطأ مجهول أثناء رفع الملف."
7516
 
7517
+ #: includes/utils.php:276
7518
  msgctxt "utils"
7519
  msgid "Uploaded file is not an image"
7520
  msgstr "الملف الذي تم رفعه ليس صورة"
7521
 
7522
+ #: includes/utils.php:285
7523
  msgctxt "utils"
7524
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
7525
  msgstr "عرض الصورة (%s px) هو أقل من الحد الأدنى للعرض المطلوب لـ %s px "
7526
 
7527
+ #: includes/utils.php:291
7528
  msgctxt "utils"
7529
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
7530
  msgstr ""
7531
  "ارتفاع الصورة (%s px) هو أقل من الحد الأدنى للارتفاع المطلوب لـ %s px "
7532
 
7533
+ #: includes/utils.php:297
7534
  msgctxt "utils"
7535
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
7536
  msgstr "عرض الصورة (%s px) هو أكبر من الحد الأقصى للعرض المسموح به لـ %s px "
7537
 
7538
+ #: includes/utils.php:303
7539
  msgctxt "utils"
7540
  msgid "Image height (%s px) is greater than maximum required height of %s px."
7541
  msgstr ""
7542
  "ارتفاع الصورة (%s px) هو أكبر من الحد الأقصى للارتفاع المطلوب لـ %s px "
7543
 
7544
+ #: includes/utils.php:317
7545
  msgctxt "utils"
7546
  msgid "Error while uploading file"
7547
  msgstr "حدث خطأ أثناء رفع الملف."
7860
  "submit again."
7861
  msgstr ""
7862
 
7863
+ #: includes/views/submit_listing.php:677
7864
  msgctxt "listing submit"
7865
  msgid ""
7866
  "Image upload is required, please provide at least one image and submit again."
8283
  msgid "Access Key"
8284
  msgstr "مفتاح الوصول"
8285
 
8286
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
8287
  #, fuzzy
8288
  msgctxt "admin infometabox"
8289
  msgid "Renewal url (copy & paste)"
8290
  msgstr "تجديد عنوان URL (نسخة & لصق)"
8291
 
8292
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
8293
  msgctxt "admin infometabox"
8294
  msgid "Get renewal URL"
8295
  msgstr ""
8296
 
8297
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:107
8298
  #, fuzzy
8299
  msgctxt "admin infometabox"
8300
  msgid "Send renewal e-mail"
8301
  msgstr "إرسال رسالة بريد إلكتروني بخصوص التجديد للعضو"
8302
 
8303
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:112
8304
  #, fuzzy
8305
  msgctxt "admin infometabox"
8306
  msgid "Renew listing"
10030
  #~ msgid "Listings"
10031
  #~ msgstr "الإعلانات"
10032
 
 
 
 
 
10033
  #~ msgctxt "admin settings"
10034
  #~ msgid "Featured (Sticky) listing settings"
10035
  #~ msgstr "إعدادات الإعلانات (المثبتة) المميزة"
10095
  #~ msgid "Site title"
10096
  #~ msgstr "إسم الموقع"
10097
 
 
 
 
 
10098
  #~ msgctxt "settings email"
10099
  #~ msgid "Site address (with link)"
10100
  #~ msgstr "عنوان الموقع (مع الرابط)"
10598
  #~ "ترسل أحيانا قبل انتهاء تاريخ الإعلان. تنطبق على عمليات التجديد غير "
10599
  #~ "المتكررة فقط."
10600
 
 
 
 
 
 
 
 
 
10601
  #~ msgctxt "settings"
10602
  #~ msgid "Category that is going to expire"
10603
  #~ 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-03-02 04:44:48+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."
@@ -187,7 +187,7 @@ msgid ""
187
  "payment processor directly."
188
  msgstr ""
189
 
190
- #: includes/class-wpbdp.php:422
191
  #, fuzzy
192
  msgid ""
193
  "The directory features are disabled at this time because a <a>manual "
@@ -196,7 +196,7 @@ msgstr ""
196
  "Branchenverzeichnis Hervorhebungen sind aktuell deaktiviert, weil das Modul "
197
  "manuell aktualisiert werden muss, bevor weiter hervorgehoben werden kann."
198
 
199
- #: includes/class-wpbdp.php:429
200
  msgid ""
201
  "The directory is not available at this time. Please try again in a few "
202
  "minutes or contact the administrator if the problem persists."
@@ -1149,53 +1149,53 @@ msgctxt "listing status"
1149
  msgid "Reported"
1150
  msgstr ""
1151
 
1152
- #: includes/class-listing.php:705
1153
  msgctxt "listing status"
1154
  msgid "Unknown"
1155
  msgstr ""
1156
 
1157
- #: includes/class-listing.php:706
1158
  msgctxt "listing status"
1159
  msgid "Legacy"
1160
  msgstr ""
1161
 
1162
- #: includes/class-listing.php:707
1163
  #, fuzzy
1164
  msgctxt "listing status"
1165
  msgid "Incomplete"
1166
  msgstr "Abgeschlossen"
1167
 
1168
- #: includes/class-listing.php:708
1169
  #, fuzzy
1170
  msgctxt "listing status"
1171
  msgid "Pending Payment"
1172
  msgstr "Ausstehende Zahlungen"
1173
 
1174
- #: includes/class-listing.php:709
1175
  #, fuzzy
1176
  msgctxt "listing status"
1177
  msgid "Complete"
1178
  msgstr "Abgeschlossen"
1179
 
1180
- #: includes/class-listing.php:710
1181
  #, fuzzy
1182
  msgctxt "listing status"
1183
  msgid "Pending Upgrade"
1184
  msgstr "Ausstehende Aktualisierung"
1185
 
1186
- #: includes/class-listing.php:711
1187
  #, fuzzy
1188
  msgctxt "listing status"
1189
  msgid "Expired"
1190
  msgstr "Abgelaufen"
1191
 
1192
- #: includes/class-listing.php:712
1193
  #, fuzzy
1194
  msgctxt "listing status"
1195
  msgid "Pending Renewal"
1196
  msgstr "Aktiv + Ausstehende Erneuerungen"
1197
 
1198
- #: includes/class-listing.php:713
1199
  #, fuzzy
1200
  msgctxt "listing status"
1201
  msgid "Abandoned"
@@ -1259,23 +1259,23 @@ msgid "Send access keys"
1259
  msgstr "Eintrag Felder / Bilder"
1260
 
1261
  #: includes/admin/class-admin.php:157
1262
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:63
1263
  #, fuzzy
1264
  msgctxt "listing metabox"
1265
  msgid "Never"
1266
  msgstr "niemals"
1267
 
1268
  #: includes/admin/class-admin.php:158
1269
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1270
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1271
  #, fuzzy
1272
  msgctxt "listing metabox"
1273
  msgid "Yes"
1274
  msgstr "Ja"
1275
 
1276
  #: includes/admin/class-admin.php:159
1277
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1278
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1279
  #, fuzzy
1280
  msgctxt "listing metabox"
1281
  msgid "No"
@@ -1326,7 +1326,7 @@ msgid "Listing Status"
1326
  msgstr "Einträge"
1327
 
1328
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1329
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:20
1330
  #, fuzzy
1331
  msgctxt "listing metabox"
1332
  msgid "N/A"
@@ -1338,70 +1338,70 @@ msgctxt "listing metabox"
1338
  msgid "Last renew date"
1339
  msgstr "Erneuerungsdatum"
1340
 
1341
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1342
  #, fuzzy
1343
  msgctxt "listing metabox"
1344
  msgid "Plan Details"
1345
  msgstr "Details planen"
1346
 
1347
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:25
1348
  msgctxt "listing metabox"
1349
  msgid "Fee Plan"
1350
  msgstr ""
1351
 
1352
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:34
1353
  msgctxt "listing metabox"
1354
  msgid "Change plan"
1355
  msgstr ""
1356
 
1357
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:46
1358
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:66
1359
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1360
  #, fuzzy
1361
  msgctxt "listing metabox"
1362
  msgid "OK"
1363
  msgstr "OK"
1364
 
1365
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:47
1366
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1367
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:81
1368
  #, fuzzy
1369
  msgctxt "listing metabox"
1370
  msgid "Cancel"
1371
  msgstr "Abbrechen"
1372
 
1373
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1374
  #, fuzzy
1375
  msgctxt "listing metabox"
1376
  msgid "Amount"
1377
  msgstr "Preis"
1378
 
1379
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:56
1380
  #, fuzzy
1381
  msgctxt "listing metabox"
1382
  msgid "Expires On"
1383
  msgstr "Läuft ab am"
1384
 
1385
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:61
1386
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:76
1387
  #, fuzzy
1388
  msgctxt "listing metabox"
1389
  msgid "Edit"
1390
  msgstr "Bearbeiten"
1391
 
1392
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1393
  #, fuzzy
1394
  msgctxt "listing metabox"
1395
  msgid "# of images"
1396
  msgstr "# Bilder"
1397
 
1398
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1399
  #, fuzzy
1400
  msgctxt "listing metabox"
1401
  msgid "Is Featured?"
1402
  msgstr "% Feed"
1403
 
1404
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1405
  #, fuzzy
1406
  msgctxt "listing metabox"
1407
  msgid "Is Recurring?"
@@ -3460,13 +3460,13 @@ msgid "Author"
3460
  msgstr "Author"
3461
 
3462
  #: includes/admin/settings/class-settings-bootstrap.php:516
3463
- #: includes/functions.php:995
3464
  msgctxt "admin settings"
3465
  msgid "Date posted"
3466
  msgstr "Datum gepostet"
3467
 
3468
  #: includes/admin/settings/class-settings-bootstrap.php:517
3469
- #: includes/functions.php:996
3470
  msgctxt "admin settings"
3471
  msgid "Date last modified"
3472
  msgstr "Datum zuletzt verändert"
@@ -3772,33 +3772,33 @@ msgctxt "admin settings"
3772
  msgid "Checkout URL link"
3773
  msgstr "Kasse"
3774
 
3775
- #: includes/admin/settings/class-settings-bootstrap.php:1156
3776
  msgctxt "admin settings"
3777
  msgid ""
3778
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
3779
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
3780
  msgstr ""
3781
 
3782
- #: includes/admin/settings/class-settings-bootstrap.php:1169
3783
  msgctxt "admin settings"
3784
  msgid ""
3785
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
3786
  "be created."
3787
  msgstr ""
3788
 
3789
- #: includes/admin/settings/class-settings-bootstrap.php:1174
3790
  msgctxt "admin settings"
3791
  msgid ""
3792
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
3793
  "not activated."
3794
  msgstr ""
3795
 
3796
- #: includes/functions.php:993
3797
  msgctxt "admin settings"
3798
  msgid "User"
3799
  msgstr "Benutzer"
3800
 
3801
- #: includes/functions.php:994
3802
  msgctxt "admin settings"
3803
  msgid "User registration date"
3804
  msgstr "Eintrag Enddatum"
@@ -3826,36 +3826,36 @@ msgctxt "expiration notices"
3826
  msgid "Delete"
3827
  msgstr "Löschen"
3828
 
3829
- #: includes/admin/settings/class-settings-admin.php:411
3830
  msgctxt "expiration notices"
3831
  msgid "recurring and non-recurring"
3832
  msgstr ""
3833
 
3834
- #: includes/admin/settings/class-settings-admin.php:413
3835
  #, fuzzy
3836
  msgctxt "expiration notices"
3837
  msgid "recurring only"
3838
  msgstr "(wiederkehrend)"
3839
 
3840
- #: includes/admin/settings/class-settings-admin.php:415
3841
  #, fuzzy
3842
  msgctxt "expiration notices"
3843
  msgid "non-recurring only"
3844
  msgstr "(wiederkehrend)"
3845
 
3846
- #: includes/admin/settings/class-settings-admin.php:419
3847
  #, fuzzy
3848
  msgctxt "expiration notices"
3849
  msgid "Sent when a listing (%s) is renewed."
3850
  msgstr "Senden nachdem der Eintrag eingestellt wurde."
3851
 
3852
- #: includes/admin/settings/class-settings-admin.php:424
3853
  #, fuzzy
3854
  msgctxt "expiration notices"
3855
  msgid "Sent when a listing (%s) expires."
3856
  msgstr "Ein Eintrag läuft aus."
3857
 
3858
- #: includes/admin/settings/class-settings-admin.php:432
3859
  #, fuzzy
3860
  msgctxt "expiration notices"
3861
  msgid "%d day"
@@ -3863,14 +3863,14 @@ msgid_plural "%d days"
3863
  msgstr[0] "%d Tag"
3864
  msgstr[1] "%d Tage"
3865
 
3866
- #: includes/admin/settings/class-settings-admin.php:435
3867
  msgctxt "expiration notices"
3868
  msgid "%d week"
3869
  msgid_plural "%d weeks"
3870
  msgstr[0] ""
3871
  msgstr[1] ""
3872
 
3873
- #: includes/admin/settings/class-settings-admin.php:438
3874
  msgctxt "expiration notices"
3875
  msgid "%d month"
3876
  msgid_plural "%d months"
@@ -3879,95 +3879,95 @@ msgstr[1] ""
3879
 
3880
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3881
  #. non-recuring only)
3882
- #: includes/admin/settings/class-settings-admin.php:444
3883
  msgctxt "expiration notices"
3884
  msgid "Sent %1$s before a listing (%2$s) expires."
3885
  msgstr ""
3886
 
3887
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3888
  #. non-recuring only)
3889
- #: includes/admin/settings/class-settings-admin.php:447
3890
  #, fuzzy
3891
  msgctxt "expiration notices"
3892
  msgid "Sent %1$s after a listing (%2$s) expires."
3893
  msgstr "Senden nachdem der Eintrag eingestellt wurde."
3894
 
3895
- #: includes/admin/settings/class-settings-admin.php:464
3896
  msgctxt "expiration notices"
3897
  msgid "At the time of expiration"
3898
  msgstr ""
3899
 
3900
- #: includes/admin/settings/class-settings-admin.php:465
3901
  #, fuzzy
3902
  msgctxt "expiration notices"
3903
  msgid "Right after a successful renewal"
3904
  msgstr "Der Preis wurde erfolgreich zugewiesen."
3905
 
3906
- #: includes/admin/settings/class-settings-admin.php:474
3907
  msgctxt "expiration notices"
3908
  msgid "%d day before expiration"
3909
  msgid_plural "%d days before expiration"
3910
  msgstr[0] ""
3911
  msgstr[1] ""
3912
 
3913
- #: includes/admin/settings/class-settings-admin.php:474
3914
  msgctxt "expiration notices"
3915
  msgid "%d day after expiration"
3916
  msgid_plural "%d days after expiration"
3917
  msgstr[0] ""
3918
  msgstr[1] ""
3919
 
3920
- #: includes/admin/settings/class-settings-admin.php:477
3921
  msgctxt "expiration notices"
3922
  msgid "%d week before expiration"
3923
  msgid_plural "%d weeks before expiration"
3924
  msgstr[0] ""
3925
  msgstr[1] ""
3926
 
3927
- #: includes/admin/settings/class-settings-admin.php:477
3928
  msgctxt "expiration notices"
3929
  msgid "%d week after expiration"
3930
  msgid_plural "%d weeks after expiration"
3931
  msgstr[0] ""
3932
  msgstr[1] ""
3933
 
3934
- #: includes/admin/settings/class-settings-admin.php:480
3935
  msgctxt "expiration notices"
3936
  msgid "%d month before expiration"
3937
  msgid_plural "%d months before expiration"
3938
  msgstr[0] ""
3939
  msgstr[1] ""
3940
 
3941
- #: includes/admin/settings/class-settings-admin.php:480
3942
  msgctxt "expiration notices"
3943
  msgid "%d month after expiration"
3944
  msgid_plural "%d months after expiration"
3945
  msgstr[0] ""
3946
  msgstr[1] ""
3947
 
3948
- #: includes/admin/settings/class-settings-admin.php:500
3949
  #, fuzzy
3950
  msgctxt "expiration notices"
3951
  msgid "Applies to"
3952
  msgstr "zugewiesen zu"
3953
 
3954
- #: includes/admin/settings/class-settings-admin.php:503
3955
  msgctxt "expiration notices"
3956
  msgid "Non-recurring listings"
3957
  msgstr ""
3958
 
3959
- #: includes/admin/settings/class-settings-admin.php:504
3960
  #, fuzzy
3961
  msgctxt "expiration notices"
3962
  msgid "Recurring listings"
3963
  msgstr "Zurück zum Eintrag."
3964
 
3965
- #: includes/admin/settings/class-settings-admin.php:505
3966
  msgctxt "expiration notices"
3967
  msgid "Recurring and non-recurring listings"
3968
  msgstr ""
3969
 
3970
- #: includes/admin/settings/class-settings-admin.php:510
3971
  msgctxt "expiration notices"
3972
  msgid "When to send?"
3973
  msgstr ""
@@ -3978,7 +3978,53 @@ msgctxt "expiration notices"
3978
  msgid "E-mail body text"
3979
  msgstr "E-mail Text"
3980
 
3981
- #: includes/admin/settings/class-settings-admin.php:542
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3982
  #, fuzzy
3983
  msgctxt "settings"
3984
  msgid "Settings reset to default."
@@ -5464,25 +5510,25 @@ msgctxt "listing"
5464
  msgid "Add New Listing"
5465
  msgstr "Neuer Eintrag"
5466
 
5467
- #: includes/class-listing.php:294
5468
  #, fuzzy
5469
  msgctxt "listing"
5470
  msgid "Listing expired"
5471
  msgstr "Ein Eintrag läuft aus."
5472
 
5473
- #: includes/class-listing.php:446
5474
  #, fuzzy
5475
  msgctxt "listing"
5476
  msgid "(Unavailable Plan)"
5477
  msgstr "(Preis nicht verfügbar)"
5478
 
5479
- #: includes/class-listing.php:602
5480
  #, fuzzy
5481
  msgctxt "listing"
5482
  msgid "Plan \"%s\" (recurring)"
5483
  msgstr "(wiederkehrend)"
5484
 
5485
- #: includes/class-listing.php:604
5486
  msgctxt "listing"
5487
  msgid "Plan \"%s\""
5488
  msgstr ""
@@ -5536,17 +5582,17 @@ msgctxt "fees-api"
5536
  msgid "Free Listing"
5537
  msgstr "Kostenloser Eintrag"
5538
 
5539
- #: includes/class-listing-email-notification.php:130
5540
  msgctxt "notify email"
5541
  msgid "[%s] New listing notification"
5542
  msgstr "[%s] neue Eintragsbenachrichtigung"
5543
 
5544
- #: includes/class-listing-email-notification.php:165
5545
  msgctxt "notify email"
5546
  msgid "[%s] Listing edit notification"
5547
  msgstr "[%s] Eintrag bearbeiten Benachrichtigung"
5548
 
5549
- #: includes/class-listing-email-notification.php:219
5550
  #, fuzzy
5551
  msgctxt "notify email"
5552
  msgid "[%s] Reported listing notification"
@@ -5587,20 +5633,32 @@ msgctxt "notify email"
5587
  msgid "Admin URL"
5588
  msgstr "Login"
5589
 
5590
- #: templates/email/listing-added.tpl.php:17
5591
- #: templates/email/listing-edited.tpl.php:17
5592
- #: templates/email/listing-reported.tpl.php:17
5593
  msgctxt "notify email"
5594
- msgid "Categories"
5595
- msgstr "Kategorien"
 
 
5596
 
5597
- #: templates/email/listing-added.tpl.php:20
5598
  #: templates/email/listing-edited.tpl.php:20
5599
  #: templates/email/listing-reported.tpl.php:19
5600
  msgctxt "notify email"
5601
  msgid "Posted By"
5602
  msgstr "Post von"
5603
 
 
 
 
 
 
 
 
 
 
 
 
5604
  #: templates/email/listing-reported.tpl.php:21
5605
  msgctxt "notify email"
5606
  msgid "Report IP"
@@ -5848,7 +5906,7 @@ msgctxt "submit listing"
5848
  msgid "Account Creation"
5849
  msgstr ""
5850
 
5851
- #: includes/views/submit_listing.php:363
5852
  #, fuzzy
5853
  msgctxt "submit listing"
5854
  msgid "Terms and Conditions"
@@ -5890,57 +5948,57 @@ msgctxt "submit listing"
5890
  msgid "Please choose a valid fee plan for your category selection."
5891
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
5892
 
5893
- #: includes/views/submit_listing.php:717
5894
  #, fuzzy
5895
  msgctxt "submit listing"
5896
  msgid "Please enter your desired username."
5897
  msgstr "Bitte geben Sie einen Namen ein."
5898
 
5899
- #: includes/views/submit_listing.php:722
5900
  #, fuzzy
5901
  msgctxt "submit listing"
5902
  msgid "Please enter the e-mail for your new account."
5903
  msgstr "Bitte geben Sie einen Namen ein."
5904
 
5905
- #: includes/views/submit_listing.php:727
5906
  msgctxt "submit listing"
5907
  msgid "Please enter the password for your new account."
5908
  msgstr ""
5909
 
5910
- #: includes/views/submit_listing.php:737
5911
  msgctxt "submit listing"
5912
  msgid "The username you chose is already in use. Please use a different one."
5913
  msgstr ""
5914
 
5915
- #: includes/views/submit_listing.php:742
5916
  msgctxt "submit listing"
5917
  msgid "The e-mail address you chose for your account is already in use."
5918
  msgstr ""
5919
 
5920
- #: includes/views/submit_listing.php:757
5921
  msgctxt "submit listing"
5922
  msgid "Create a user account on this site"
5923
  msgstr ""
5924
 
5925
- #: includes/views/submit_listing.php:764
5926
  msgctxt "submit listing"
5927
  msgid ""
5928
  "You need to create an account on the site. Please fill out the form below."
5929
  msgstr ""
5930
 
5931
- #: includes/views/submit_listing.php:770
5932
  #, fuzzy
5933
  msgctxt "submit listing"
5934
  msgid "Username:"
5935
  msgstr "Benutzer"
5936
 
5937
- #: includes/views/submit_listing.php:779
5938
  #, fuzzy
5939
  msgctxt "submit listing"
5940
  msgid "Email:"
5941
  msgstr "E-mail: %s"
5942
 
5943
- #: includes/views/submit_listing.php:788
5944
  msgctxt "submit listing"
5945
  msgid "Password:"
5946
  msgstr ""
@@ -5985,18 +6043,18 @@ msgctxt "recaptcha"
5985
  msgid "reCAPTCHA"
5986
  msgstr "reCAPTCHA Einstellungen"
5987
 
5988
- #: includes/class-wpbdp.php:241
5989
  msgctxt "admin plugins"
5990
  msgid "Settings"
5991
  msgstr "Einstellungen"
5992
 
5993
- #: includes/class-wpbdp.php:323
5994
  #, fuzzy
5995
  msgctxt "listing image upload"
5996
  msgid "Can not upload any more images for this listing."
5997
  msgstr "Kategorie für diesen Eintrag"
5998
 
5999
- #: includes/class-wpbdp.php:327
6000
  msgctxt "listing image upload"
6001
  msgid ""
6002
  "You're trying to upload %d images, but only have %d slot available. Please "
@@ -7092,36 +7150,36 @@ msgctxt "templates"
7092
  msgid "View not available."
7093
  msgstr "verfügbare Bilder:"
7094
 
7095
- #: includes/views/submit_listing.php:826
7096
  msgctxt "templates"
7097
  msgid "Please agree to the Terms and Conditions."
7098
  msgstr "Bitte akzeptieren Sie die Allgemeinen Geschäftsbedingungen."
7099
 
7100
- #: includes/views/submit_listing.php:834
7101
  msgctxt "templates"
7102
  msgid "Terms and Conditions:"
7103
  msgstr "AGBs:"
7104
 
7105
- #: includes/views/submit_listing.php:843
7106
  msgctxt "templates"
7107
  msgid "I agree to the <a>Terms and Conditions</a>"
7108
  msgstr "Ich akzeptiere die <a>AGB</a>s"
7109
 
7110
  #: templates/businessdirectory-listings.tpl.php:27
7111
- #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:6
7112
  #: templates/search.tpl.php:17
7113
  msgctxt "templates"
7114
  msgid "No listings found."
7115
  msgstr "Kein Listig gefunden."
7116
 
7117
  #: templates/businessdirectory-listings.tpl.php:38
7118
- #: templates/listings.tpl.php:17
7119
  msgctxt "templates"
7120
  msgid "&laquo; Previous "
7121
  msgstr "&laquo; Vorher"
7122
 
7123
  #: templates/businessdirectory-listings.tpl.php:39
7124
- #: templates/listings.tpl.php:18
7125
  msgctxt "templates"
7126
  msgid "Next &raquo;"
7127
  msgstr "Nächste &raquo;"
@@ -7417,7 +7475,7 @@ msgctxt "sort"
7417
  msgid "(Reset)"
7418
  msgstr "Zurücksetzen"
7419
 
7420
- #: includes/utils.php:169
7421
  msgctxt "utils"
7422
  msgid ""
7423
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
@@ -7425,56 +7483,56 @@ msgstr ""
7425
  "Gepustete Daten haben Maximum erreicht. Schau dir den Eintrag \"post_ma_size"
7426
  "\"in deiner php.ini an."
7427
 
7428
- #: includes/utils.php:216
7429
  msgctxt "utils"
7430
  msgid "File size (%s) exceeds maximum file size of %s"
7431
  msgstr "Dateigröße (%s) hat das Maximum von %s erreicht"
7432
 
7433
- #: includes/utils.php:224
7434
  msgctxt "utils"
7435
  msgid "File size (%s) is inferior to the required minimum file size of %s"
7436
  msgstr "Dateigröße (%s) hat das Maximum von %s erreicht"
7437
 
7438
- #: includes/utils.php:233 includes/utils.php:240
7439
  msgctxt "utils"
7440
  msgid "File type \"%s\" is not allowed"
7441
  msgstr "Dateityp \"%s\" ist nicht erlaubt"
7442
 
7443
- #: includes/utils.php:247
7444
  msgctxt "utils"
7445
  msgid "Unkown error while uploading file."
7446
  msgstr "Unbekannter Fehler beim Hochladen der Datei."
7447
 
7448
- #: includes/utils.php:266
7449
  msgctxt "utils"
7450
  msgid "Uploaded file is not an image"
7451
  msgstr "Hochgeladene Datei ist kein Bild."
7452
 
7453
- #: includes/utils.php:275
7454
  msgctxt "utils"
7455
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
7456
  msgstr "Die Bildbreite (%s px) ist kleiner als die benötigte Breite von %s px."
7457
 
7458
- #: includes/utils.php:281
7459
  msgctxt "utils"
7460
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
7461
  msgstr ""
7462
  "Die Bildhöhe (%s px) ist kleiner als die benötigte Mindesthöhe von %s px."
7463
 
7464
- #: includes/utils.php:287
7465
  msgctxt "utils"
7466
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
7467
  msgstr ""
7468
  "Die Bildbreite (%s Pixel) ist größer als die maximal zulässige Breite von %s "
7469
  "Pixel."
7470
 
7471
- #: includes/utils.php:293
7472
  msgctxt "utils"
7473
  msgid "Image height (%s px) is greater than maximum required height of %s px."
7474
  msgstr ""
7475
  "Die Bildhöhe (%s px) ist größer als die maximal zulässige Höhe von %s px."
7476
 
7477
- #: includes/utils.php:307
7478
  msgctxt "utils"
7479
  msgid "Error while uploading file"
7480
  msgstr "Fehler während des Hochladens der Datei"
@@ -7800,7 +7858,7 @@ msgid ""
7800
  "submit again."
7801
  msgstr ""
7802
 
7803
- #: includes/views/submit_listing.php:669
7804
  msgctxt "listing submit"
7805
  msgid ""
7806
  "Image upload is required, please provide at least one image and submit again."
@@ -8233,24 +8291,24 @@ msgctxt "admin infometabox"
8233
  msgid "Access Key"
8234
  msgstr "Eintrag Felder / Bilder"
8235
 
8236
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
8237
  #, fuzzy
8238
  msgctxt "admin infometabox"
8239
  msgid "Renewal url (copy & paste)"
8240
  msgstr "URL Erneuern (kopieren & einfügen)"
8241
 
8242
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
8243
  msgctxt "admin infometabox"
8244
  msgid "Get renewal URL"
8245
  msgstr ""
8246
 
8247
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:103
8248
  #, fuzzy
8249
  msgctxt "admin infometabox"
8250
  msgid "Send renewal e-mail"
8251
  msgstr "Erneuerungsmail an Benutzer schicken"
8252
 
8253
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:108
8254
  #, fuzzy
8255
  msgctxt "admin infometabox"
8256
  msgid "Renew listing"
@@ -9898,10 +9956,6 @@ msgstr "Adresse"
9898
  #~ msgid "Listings"
9899
  #~ msgstr "Einträge"
9900
 
9901
- #~ msgctxt "admin settings"
9902
- #~ msgid "Listing Renewal"
9903
- #~ msgstr "Einträge erneuern"
9904
-
9905
  #~ msgctxt "admin settings"
9906
  #~ msgid "Featured (Sticky) listing settings"
9907
  #~ msgstr "Unterstützte (unbewegliche) Eintrageinstellungen"
@@ -9967,10 +10021,6 @@ msgstr "Adresse"
9967
  #~ msgid "Site title"
9968
  #~ msgstr "Seitentitel"
9969
 
9970
- #~ msgctxt "settings email"
9971
- #~ msgid "Site title (with link)"
9972
- #~ msgstr "Seitentitel (mit Link)"
9973
-
9974
  #~ msgctxt "settings email"
9975
  #~ msgid "Site address (with link)"
9976
  #~ msgstr "Seitenadresse (mit Link)"
@@ -10452,14 +10502,6 @@ msgstr "Adresse"
10452
  #~ "Einige Zeit bevor der Eintrag abläuft senden. Wird nur bei kostenlosen "
10453
  #~ "Erneuerungen verwendet."
10454
 
10455
- #~ msgctxt "settings"
10456
- #~ msgid "Listing's name (with link)"
10457
- #~ msgstr "Eintragsname (mit Link)"
10458
-
10459
- #~ msgctxt "settings"
10460
- #~ msgid "Author's name"
10461
- #~ msgstr "Authorname"
10462
-
10463
  #~ msgctxt "settings"
10464
  #~ msgid "Category that is going to expire"
10465
  #~ msgstr "Kategorie die bald abläuft"
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-04-03 15:53:32+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."
187
  "payment processor directly."
188
  msgstr ""
189
 
190
+ #: includes/class-wpbdp.php:430
191
  #, fuzzy
192
  msgid ""
193
  "The directory features are disabled at this time because a <a>manual "
196
  "Branchenverzeichnis Hervorhebungen sind aktuell deaktiviert, weil das Modul "
197
  "manuell aktualisiert werden muss, bevor weiter hervorgehoben werden kann."
198
 
199
+ #: includes/class-wpbdp.php:437
200
  msgid ""
201
  "The directory is not available at this time. Please try again in a few "
202
  "minutes or contact the administrator if the problem persists."
1149
  msgid "Reported"
1150
  msgstr ""
1151
 
1152
+ #: includes/class-listing.php:729
1153
  msgctxt "listing status"
1154
  msgid "Unknown"
1155
  msgstr ""
1156
 
1157
+ #: includes/class-listing.php:730
1158
  msgctxt "listing status"
1159
  msgid "Legacy"
1160
  msgstr ""
1161
 
1162
+ #: includes/class-listing.php:731
1163
  #, fuzzy
1164
  msgctxt "listing status"
1165
  msgid "Incomplete"
1166
  msgstr "Abgeschlossen"
1167
 
1168
+ #: includes/class-listing.php:732
1169
  #, fuzzy
1170
  msgctxt "listing status"
1171
  msgid "Pending Payment"
1172
  msgstr "Ausstehende Zahlungen"
1173
 
1174
+ #: includes/class-listing.php:733
1175
  #, fuzzy
1176
  msgctxt "listing status"
1177
  msgid "Complete"
1178
  msgstr "Abgeschlossen"
1179
 
1180
+ #: includes/class-listing.php:734
1181
  #, fuzzy
1182
  msgctxt "listing status"
1183
  msgid "Pending Upgrade"
1184
  msgstr "Ausstehende Aktualisierung"
1185
 
1186
+ #: includes/class-listing.php:735
1187
  #, fuzzy
1188
  msgctxt "listing status"
1189
  msgid "Expired"
1190
  msgstr "Abgelaufen"
1191
 
1192
+ #: includes/class-listing.php:736
1193
  #, fuzzy
1194
  msgctxt "listing status"
1195
  msgid "Pending Renewal"
1196
  msgstr "Aktiv + Ausstehende Erneuerungen"
1197
 
1198
+ #: includes/class-listing.php:737
1199
  #, fuzzy
1200
  msgctxt "listing status"
1201
  msgid "Abandoned"
1259
  msgstr "Eintrag Felder / Bilder"
1260
 
1261
  #: includes/admin/class-admin.php:157
1262
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1263
  #, fuzzy
1264
  msgctxt "listing metabox"
1265
  msgid "Never"
1266
  msgstr "niemals"
1267
 
1268
  #: includes/admin/class-admin.php:158
1269
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1270
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1271
  #, fuzzy
1272
  msgctxt "listing metabox"
1273
  msgid "Yes"
1274
  msgstr "Ja"
1275
 
1276
  #: includes/admin/class-admin.php:159
1277
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1278
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1279
  #, fuzzy
1280
  msgctxt "listing metabox"
1281
  msgid "No"
1326
  msgstr "Einträge"
1327
 
1328
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1329
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1330
  #, fuzzy
1331
  msgctxt "listing metabox"
1332
  msgid "N/A"
1338
  msgid "Last renew date"
1339
  msgstr "Erneuerungsdatum"
1340
 
1341
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:27
1342
  #, fuzzy
1343
  msgctxt "listing metabox"
1344
  msgid "Plan Details"
1345
  msgstr "Details planen"
1346
 
1347
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:29
1348
  msgctxt "listing metabox"
1349
  msgid "Fee Plan"
1350
  msgstr ""
1351
 
1352
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:38
1353
  msgctxt "listing metabox"
1354
  msgid "Change plan"
1355
  msgstr ""
1356
 
1357
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1358
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:70
1359
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1360
  #, fuzzy
1361
  msgctxt "listing metabox"
1362
  msgid "OK"
1363
  msgstr "OK"
1364
 
1365
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:51
1366
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1367
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:85
1368
  #, fuzzy
1369
  msgctxt "listing metabox"
1370
  msgid "Cancel"
1371
  msgstr "Abbrechen"
1372
 
1373
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:54
1374
  #, fuzzy
1375
  msgctxt "listing metabox"
1376
  msgid "Amount"
1377
  msgstr "Preis"
1378
 
1379
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:60
1380
  #, fuzzy
1381
  msgctxt "listing metabox"
1382
  msgid "Expires On"
1383
  msgstr "Läuft ab am"
1384
 
1385
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:65
1386
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1387
  #, fuzzy
1388
  msgctxt "listing metabox"
1389
  msgid "Edit"
1390
  msgstr "Bearbeiten"
1391
 
1392
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:75
1393
  #, fuzzy
1394
  msgctxt "listing metabox"
1395
  msgid "# of images"
1396
  msgstr "# Bilder"
1397
 
1398
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:88
1399
  #, fuzzy
1400
  msgctxt "listing metabox"
1401
  msgid "Is Featured?"
1402
  msgstr "% Feed"
1403
 
1404
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:95
1405
  #, fuzzy
1406
  msgctxt "listing metabox"
1407
  msgid "Is Recurring?"
3460
  msgstr "Author"
3461
 
3462
  #: includes/admin/settings/class-settings-bootstrap.php:516
3463
+ #: includes/functions.php:1010
3464
  msgctxt "admin settings"
3465
  msgid "Date posted"
3466
  msgstr "Datum gepostet"
3467
 
3468
  #: includes/admin/settings/class-settings-bootstrap.php:517
3469
+ #: includes/functions.php:1011
3470
  msgctxt "admin settings"
3471
  msgid "Date last modified"
3472
  msgstr "Datum zuletzt verändert"
3772
  msgid "Checkout URL link"
3773
  msgstr "Kasse"
3774
 
3775
+ #: includes/admin/settings/class-settings-bootstrap.php:1157
3776
  msgctxt "admin settings"
3777
  msgid ""
3778
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
3779
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
3780
  msgstr ""
3781
 
3782
+ #: includes/admin/settings/class-settings-bootstrap.php:1170
3783
  msgctxt "admin settings"
3784
  msgid ""
3785
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
3786
  "be created."
3787
  msgstr ""
3788
 
3789
+ #: includes/admin/settings/class-settings-bootstrap.php:1175
3790
  msgctxt "admin settings"
3791
  msgid ""
3792
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
3793
  "not activated."
3794
  msgstr ""
3795
 
3796
+ #: includes/functions.php:1008
3797
  msgctxt "admin settings"
3798
  msgid "User"
3799
  msgstr "Benutzer"
3800
 
3801
+ #: includes/functions.php:1009
3802
  msgctxt "admin settings"
3803
  msgid "User registration date"
3804
  msgstr "Eintrag Enddatum"
3826
  msgid "Delete"
3827
  msgstr "Löschen"
3828
 
3829
+ #: includes/admin/settings/class-settings-admin.php:422
3830
  msgctxt "expiration notices"
3831
  msgid "recurring and non-recurring"
3832
  msgstr ""
3833
 
3834
+ #: includes/admin/settings/class-settings-admin.php:424
3835
  #, fuzzy
3836
  msgctxt "expiration notices"
3837
  msgid "recurring only"
3838
  msgstr "(wiederkehrend)"
3839
 
3840
+ #: includes/admin/settings/class-settings-admin.php:426
3841
  #, fuzzy
3842
  msgctxt "expiration notices"
3843
  msgid "non-recurring only"
3844
  msgstr "(wiederkehrend)"
3845
 
3846
+ #: includes/admin/settings/class-settings-admin.php:430
3847
  #, fuzzy
3848
  msgctxt "expiration notices"
3849
  msgid "Sent when a listing (%s) is renewed."
3850
  msgstr "Senden nachdem der Eintrag eingestellt wurde."
3851
 
3852
+ #: includes/admin/settings/class-settings-admin.php:435
3853
  #, fuzzy
3854
  msgctxt "expiration notices"
3855
  msgid "Sent when a listing (%s) expires."
3856
  msgstr "Ein Eintrag läuft aus."
3857
 
3858
+ #: includes/admin/settings/class-settings-admin.php:443
3859
  #, fuzzy
3860
  msgctxt "expiration notices"
3861
  msgid "%d day"
3863
  msgstr[0] "%d Tag"
3864
  msgstr[1] "%d Tage"
3865
 
3866
+ #: includes/admin/settings/class-settings-admin.php:446
3867
  msgctxt "expiration notices"
3868
  msgid "%d week"
3869
  msgid_plural "%d weeks"
3870
  msgstr[0] ""
3871
  msgstr[1] ""
3872
 
3873
+ #: includes/admin/settings/class-settings-admin.php:449
3874
  msgctxt "expiration notices"
3875
  msgid "%d month"
3876
  msgid_plural "%d months"
3879
 
3880
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3881
  #. non-recuring only)
3882
+ #: includes/admin/settings/class-settings-admin.php:455
3883
  msgctxt "expiration notices"
3884
  msgid "Sent %1$s before a listing (%2$s) expires."
3885
  msgstr ""
3886
 
3887
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3888
  #. non-recuring only)
3889
+ #: includes/admin/settings/class-settings-admin.php:458
3890
  #, fuzzy
3891
  msgctxt "expiration notices"
3892
  msgid "Sent %1$s after a listing (%2$s) expires."
3893
  msgstr "Senden nachdem der Eintrag eingestellt wurde."
3894
 
3895
+ #: includes/admin/settings/class-settings-admin.php:475
3896
  msgctxt "expiration notices"
3897
  msgid "At the time of expiration"
3898
  msgstr ""
3899
 
3900
+ #: includes/admin/settings/class-settings-admin.php:476
3901
  #, fuzzy
3902
  msgctxt "expiration notices"
3903
  msgid "Right after a successful renewal"
3904
  msgstr "Der Preis wurde erfolgreich zugewiesen."
3905
 
3906
+ #: includes/admin/settings/class-settings-admin.php:485
3907
  msgctxt "expiration notices"
3908
  msgid "%d day before expiration"
3909
  msgid_plural "%d days before expiration"
3910
  msgstr[0] ""
3911
  msgstr[1] ""
3912
 
3913
+ #: includes/admin/settings/class-settings-admin.php:485
3914
  msgctxt "expiration notices"
3915
  msgid "%d day after expiration"
3916
  msgid_plural "%d days after expiration"
3917
  msgstr[0] ""
3918
  msgstr[1] ""
3919
 
3920
+ #: includes/admin/settings/class-settings-admin.php:488
3921
  msgctxt "expiration notices"
3922
  msgid "%d week before expiration"
3923
  msgid_plural "%d weeks before expiration"
3924
  msgstr[0] ""
3925
  msgstr[1] ""
3926
 
3927
+ #: includes/admin/settings/class-settings-admin.php:488
3928
  msgctxt "expiration notices"
3929
  msgid "%d week after expiration"
3930
  msgid_plural "%d weeks after expiration"
3931
  msgstr[0] ""
3932
  msgstr[1] ""
3933
 
3934
+ #: includes/admin/settings/class-settings-admin.php:491
3935
  msgctxt "expiration notices"
3936
  msgid "%d month before expiration"
3937
  msgid_plural "%d months before expiration"
3938
  msgstr[0] ""
3939
  msgstr[1] ""
3940
 
3941
+ #: includes/admin/settings/class-settings-admin.php:491
3942
  msgctxt "expiration notices"
3943
  msgid "%d month after expiration"
3944
  msgid_plural "%d months after expiration"
3945
  msgstr[0] ""
3946
  msgstr[1] ""
3947
 
3948
+ #: includes/admin/settings/class-settings-admin.php:518
3949
  #, fuzzy
3950
  msgctxt "expiration notices"
3951
  msgid "Applies to"
3952
  msgstr "zugewiesen zu"
3953
 
3954
+ #: includes/admin/settings/class-settings-admin.php:521
3955
  msgctxt "expiration notices"
3956
  msgid "Non-recurring listings"
3957
  msgstr ""
3958
 
3959
+ #: includes/admin/settings/class-settings-admin.php:522
3960
  #, fuzzy
3961
  msgctxt "expiration notices"
3962
  msgid "Recurring listings"
3963
  msgstr "Zurück zum Eintrag."
3964
 
3965
+ #: includes/admin/settings/class-settings-admin.php:523
3966
  msgctxt "expiration notices"
3967
  msgid "Recurring and non-recurring listings"
3968
  msgstr ""
3969
 
3970
+ #: includes/admin/settings/class-settings-admin.php:528
3971
  msgctxt "expiration notices"
3972
  msgid "When to send?"
3973
  msgstr ""
3978
  msgid "E-mail body text"
3979
  msgstr "E-mail Text"
3980
 
3981
+ #: includes/admin/settings/class-settings-admin.php:398
3982
+ #, fuzzy
3983
+ msgctxt "settings"
3984
+ msgid "Site title (with link)"
3985
+ msgstr "Seitentitel (mit Link)"
3986
+
3987
+ #: includes/admin/settings/class-settings-admin.php:399
3988
+ msgctxt "settings"
3989
+ msgid "Author's name"
3990
+ msgstr "Authorname"
3991
+
3992
+ #: includes/admin/settings/class-settings-admin.php:400
3993
+ msgctxt "settings"
3994
+ msgid "Listing's name (with link)"
3995
+ msgstr "Eintragsname (mit Link)"
3996
+
3997
+ #: includes/admin/settings/class-settings-admin.php:401
3998
+ #, fuzzy
3999
+ msgctxt "settings"
4000
+ msgid "Listing's expiration date"
4001
+ msgstr "Eintrag Enddatum"
4002
+
4003
+ #: includes/admin/settings/class-settings-admin.php:402
4004
+ #, fuzzy
4005
+ msgctxt "settings"
4006
+ msgid "Listing's renewal link"
4007
+ msgstr "Einträge erneuern"
4008
+
4009
+ #: includes/admin/settings/class-settings-admin.php:403
4010
+ #, fuzzy
4011
+ msgctxt "settings"
4012
+ msgid "Listing's categories"
4013
+ msgstr "Eintrag Titel"
4014
+
4015
+ #: includes/admin/settings/class-settings-admin.php:404
4016
+ #, fuzzy
4017
+ msgctxt "settings"
4018
+ msgid "Listing's last payment date"
4019
+ msgstr "Eintrag Enddatum"
4020
+
4021
+ #: includes/admin/settings/class-settings-admin.php:405
4022
+ #, fuzzy
4023
+ msgctxt "settings"
4024
+ msgid "Listing's access key"
4025
+ msgstr "Eintrag Felder / Bilder"
4026
+
4027
+ #: includes/admin/settings/class-settings-admin.php:560
4028
  #, fuzzy
4029
  msgctxt "settings"
4030
  msgid "Settings reset to default."
5510
  msgid "Add New Listing"
5511
  msgstr "Neuer Eintrag"
5512
 
5513
+ #: includes/class-listing.php:318
5514
  #, fuzzy
5515
  msgctxt "listing"
5516
  msgid "Listing expired"
5517
  msgstr "Ein Eintrag läuft aus."
5518
 
5519
+ #: includes/class-listing.php:470
5520
  #, fuzzy
5521
  msgctxt "listing"
5522
  msgid "(Unavailable Plan)"
5523
  msgstr "(Preis nicht verfügbar)"
5524
 
5525
+ #: includes/class-listing.php:626
5526
  #, fuzzy
5527
  msgctxt "listing"
5528
  msgid "Plan \"%s\" (recurring)"
5529
  msgstr "(wiederkehrend)"
5530
 
5531
+ #: includes/class-listing.php:628
5532
  msgctxt "listing"
5533
  msgid "Plan \"%s\""
5534
  msgstr ""
5582
  msgid "Free Listing"
5583
  msgstr "Kostenloser Eintrag"
5584
 
5585
+ #: includes/class-listing-email-notification.php:151
5586
  msgctxt "notify email"
5587
  msgid "[%s] New listing notification"
5588
  msgstr "[%s] neue Eintragsbenachrichtigung"
5589
 
5590
+ #: includes/class-listing-email-notification.php:186
5591
  msgctxt "notify email"
5592
  msgid "[%s] Listing edit notification"
5593
  msgstr "[%s] Eintrag bearbeiten Benachrichtigung"
5594
 
5595
+ #: includes/class-listing-email-notification.php:240
5596
  #, fuzzy
5597
  msgctxt "notify email"
5598
  msgid "[%s] Reported listing notification"
5633
  msgid "Admin URL"
5634
  msgstr "Login"
5635
 
5636
+ #: templates/email/listing-added.tpl.php:21
5637
+ #, fuzzy
 
5638
  msgctxt "notify email"
5639
+ msgid "Category"
5640
+ msgid_plural "Categories"
5641
+ msgstr[0] "Kategorien"
5642
+ msgstr[1] "Kategorien"
5643
 
5644
+ #: templates/email/listing-added.tpl.php:27
5645
  #: templates/email/listing-edited.tpl.php:20
5646
  #: templates/email/listing-reported.tpl.php:19
5647
  msgctxt "notify email"
5648
  msgid "Posted By"
5649
  msgstr "Post von"
5650
 
5651
+ #: templates/email/listing-added.tpl.php:36
5652
+ msgctxt "notify email"
5653
+ msgid "Annonymous User"
5654
+ msgstr ""
5655
+
5656
+ #: templates/email/listing-edited.tpl.php:17
5657
+ #: templates/email/listing-reported.tpl.php:17
5658
+ msgctxt "notify email"
5659
+ msgid "Categories"
5660
+ msgstr "Kategorien"
5661
+
5662
  #: templates/email/listing-reported.tpl.php:21
5663
  msgctxt "notify email"
5664
  msgid "Report IP"
5906
  msgid "Account Creation"
5907
  msgstr ""
5908
 
5909
+ #: includes/views/submit_listing.php:365
5910
  #, fuzzy
5911
  msgctxt "submit listing"
5912
  msgid "Terms and Conditions"
5948
  msgid "Please choose a valid fee plan for your category selection."
5949
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
5950
 
5951
+ #: includes/views/submit_listing.php:725
5952
  #, fuzzy
5953
  msgctxt "submit listing"
5954
  msgid "Please enter your desired username."
5955
  msgstr "Bitte geben Sie einen Namen ein."
5956
 
5957
+ #: includes/views/submit_listing.php:730
5958
  #, fuzzy
5959
  msgctxt "submit listing"
5960
  msgid "Please enter the e-mail for your new account."
5961
  msgstr "Bitte geben Sie einen Namen ein."
5962
 
5963
+ #: includes/views/submit_listing.php:735
5964
  msgctxt "submit listing"
5965
  msgid "Please enter the password for your new account."
5966
  msgstr ""
5967
 
5968
+ #: includes/views/submit_listing.php:745
5969
  msgctxt "submit listing"
5970
  msgid "The username you chose is already in use. Please use a different one."
5971
  msgstr ""
5972
 
5973
+ #: includes/views/submit_listing.php:750
5974
  msgctxt "submit listing"
5975
  msgid "The e-mail address you chose for your account is already in use."
5976
  msgstr ""
5977
 
5978
+ #: includes/views/submit_listing.php:765
5979
  msgctxt "submit listing"
5980
  msgid "Create a user account on this site"
5981
  msgstr ""
5982
 
5983
+ #: includes/views/submit_listing.php:772
5984
  msgctxt "submit listing"
5985
  msgid ""
5986
  "You need to create an account on the site. Please fill out the form below."
5987
  msgstr ""
5988
 
5989
+ #: includes/views/submit_listing.php:778
5990
  #, fuzzy
5991
  msgctxt "submit listing"
5992
  msgid "Username:"
5993
  msgstr "Benutzer"
5994
 
5995
+ #: includes/views/submit_listing.php:787
5996
  #, fuzzy
5997
  msgctxt "submit listing"
5998
  msgid "Email:"
5999
  msgstr "E-mail: %s"
6000
 
6001
+ #: includes/views/submit_listing.php:796
6002
  msgctxt "submit listing"
6003
  msgid "Password:"
6004
  msgstr ""
6043
  msgid "reCAPTCHA"
6044
  msgstr "reCAPTCHA Einstellungen"
6045
 
6046
+ #: includes/class-wpbdp.php:249
6047
  msgctxt "admin plugins"
6048
  msgid "Settings"
6049
  msgstr "Einstellungen"
6050
 
6051
+ #: includes/class-wpbdp.php:331
6052
  #, fuzzy
6053
  msgctxt "listing image upload"
6054
  msgid "Can not upload any more images for this listing."
6055
  msgstr "Kategorie für diesen Eintrag"
6056
 
6057
+ #: includes/class-wpbdp.php:335
6058
  msgctxt "listing image upload"
6059
  msgid ""
6060
  "You're trying to upload %d images, but only have %d slot available. Please "
7150
  msgid "View not available."
7151
  msgstr "verfügbare Bilder:"
7152
 
7153
+ #: includes/views/submit_listing.php:834
7154
  msgctxt "templates"
7155
  msgid "Please agree to the Terms and Conditions."
7156
  msgstr "Bitte akzeptieren Sie die Allgemeinen Geschäftsbedingungen."
7157
 
7158
+ #: includes/views/submit_listing.php:842
7159
  msgctxt "templates"
7160
  msgid "Terms and Conditions:"
7161
  msgstr "AGBs:"
7162
 
7163
+ #: includes/views/submit_listing.php:851
7164
  msgctxt "templates"
7165
  msgid "I agree to the <a>Terms and Conditions</a>"
7166
  msgstr "Ich akzeptiere die <a>AGB</a>s"
7167
 
7168
  #: templates/businessdirectory-listings.tpl.php:27
7169
+ #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:8
7170
  #: templates/search.tpl.php:17
7171
  msgctxt "templates"
7172
  msgid "No listings found."
7173
  msgstr "Kein Listig gefunden."
7174
 
7175
  #: templates/businessdirectory-listings.tpl.php:38
7176
+ #: templates/listings.tpl.php:24
7177
  msgctxt "templates"
7178
  msgid "&laquo; Previous "
7179
  msgstr "&laquo; Vorher"
7180
 
7181
  #: templates/businessdirectory-listings.tpl.php:39
7182
+ #: templates/listings.tpl.php:25
7183
  msgctxt "templates"
7184
  msgid "Next &raquo;"
7185
  msgstr "Nächste &raquo;"
7475
  msgid "(Reset)"
7476
  msgstr "Zurücksetzen"
7477
 
7478
+ #: includes/utils.php:179
7479
  msgctxt "utils"
7480
  msgid ""
7481
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
7483
  "Gepustete Daten haben Maximum erreicht. Schau dir den Eintrag \"post_ma_size"
7484
  "\"in deiner php.ini an."
7485
 
7486
+ #: includes/utils.php:226
7487
  msgctxt "utils"
7488
  msgid "File size (%s) exceeds maximum file size of %s"
7489
  msgstr "Dateigröße (%s) hat das Maximum von %s erreicht"
7490
 
7491
+ #: includes/utils.php:234
7492
  msgctxt "utils"
7493
  msgid "File size (%s) is inferior to the required minimum file size of %s"
7494
  msgstr "Dateigröße (%s) hat das Maximum von %s erreicht"
7495
 
7496
+ #: includes/utils.php:243 includes/utils.php:250
7497
  msgctxt "utils"
7498
  msgid "File type \"%s\" is not allowed"
7499
  msgstr "Dateityp \"%s\" ist nicht erlaubt"
7500
 
7501
+ #: includes/utils.php:257
7502
  msgctxt "utils"
7503
  msgid "Unkown error while uploading file."
7504
  msgstr "Unbekannter Fehler beim Hochladen der Datei."
7505
 
7506
+ #: includes/utils.php:276
7507
  msgctxt "utils"
7508
  msgid "Uploaded file is not an image"
7509
  msgstr "Hochgeladene Datei ist kein Bild."
7510
 
7511
+ #: includes/utils.php:285
7512
  msgctxt "utils"
7513
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
7514
  msgstr "Die Bildbreite (%s px) ist kleiner als die benötigte Breite von %s px."
7515
 
7516
+ #: includes/utils.php:291
7517
  msgctxt "utils"
7518
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
7519
  msgstr ""
7520
  "Die Bildhöhe (%s px) ist kleiner als die benötigte Mindesthöhe von %s px."
7521
 
7522
+ #: includes/utils.php:297
7523
  msgctxt "utils"
7524
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
7525
  msgstr ""
7526
  "Die Bildbreite (%s Pixel) ist größer als die maximal zulässige Breite von %s "
7527
  "Pixel."
7528
 
7529
+ #: includes/utils.php:303
7530
  msgctxt "utils"
7531
  msgid "Image height (%s px) is greater than maximum required height of %s px."
7532
  msgstr ""
7533
  "Die Bildhöhe (%s px) ist größer als die maximal zulässige Höhe von %s px."
7534
 
7535
+ #: includes/utils.php:317
7536
  msgctxt "utils"
7537
  msgid "Error while uploading file"
7538
  msgstr "Fehler während des Hochladens der Datei"
7858
  "submit again."
7859
  msgstr ""
7860
 
7861
+ #: includes/views/submit_listing.php:677
7862
  msgctxt "listing submit"
7863
  msgid ""
7864
  "Image upload is required, please provide at least one image and submit again."
8291
  msgid "Access Key"
8292
  msgstr "Eintrag Felder / Bilder"
8293
 
8294
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
8295
  #, fuzzy
8296
  msgctxt "admin infometabox"
8297
  msgid "Renewal url (copy & paste)"
8298
  msgstr "URL Erneuern (kopieren & einfügen)"
8299
 
8300
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
8301
  msgctxt "admin infometabox"
8302
  msgid "Get renewal URL"
8303
  msgstr ""
8304
 
8305
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:107
8306
  #, fuzzy
8307
  msgctxt "admin infometabox"
8308
  msgid "Send renewal e-mail"
8309
  msgstr "Erneuerungsmail an Benutzer schicken"
8310
 
8311
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:112
8312
  #, fuzzy
8313
  msgctxt "admin infometabox"
8314
  msgid "Renew listing"
9956
  #~ msgid "Listings"
9957
  #~ msgstr "Einträge"
9958
 
 
 
 
 
9959
  #~ msgctxt "admin settings"
9960
  #~ msgid "Featured (Sticky) listing settings"
9961
  #~ msgstr "Unterstützte (unbewegliche) Eintrageinstellungen"
10021
  #~ msgid "Site title"
10022
  #~ msgstr "Seitentitel"
10023
 
 
 
 
 
10024
  #~ msgctxt "settings email"
10025
  #~ msgid "Site address (with link)"
10026
  #~ msgstr "Seitenadresse (mit Link)"
10502
  #~ "Einige Zeit bevor der Eintrag abläuft senden. Wird nur bei kostenlosen "
10503
  #~ "Erneuerungen verwendet."
10504
 
 
 
 
 
 
 
 
 
10505
  #~ msgctxt "settings"
10506
  #~ msgid "Category that is going to expire"
10507
  #~ msgstr "Kategorie die bald abläuft"
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-03-02 04:44:48+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"
@@ -165,13 +165,13 @@ msgid ""
165
  "payment processor directly."
166
  msgstr ""
167
 
168
- #: includes/class-wpbdp.php:422
169
  msgid ""
170
  "The directory features are disabled at this time because a <a>manual "
171
  "upgrade</a> is pending."
172
  msgstr ""
173
 
174
- #: includes/class-wpbdp.php:429
175
  msgid ""
176
  "The directory is not available at this time. Please try again in a few "
177
  "minutes or contact the administrator if the problem persists."
@@ -1042,47 +1042,47 @@ msgctxt "listing status"
1042
  msgid "Reported"
1043
  msgstr ""
1044
 
1045
- #: includes/class-listing.php:705
1046
  msgctxt "listing status"
1047
  msgid "Unknown"
1048
  msgstr ""
1049
 
1050
- #: includes/class-listing.php:706
1051
  msgctxt "listing status"
1052
  msgid "Legacy"
1053
  msgstr ""
1054
 
1055
- #: includes/class-listing.php:707
1056
  msgctxt "listing status"
1057
  msgid "Incomplete"
1058
  msgstr ""
1059
 
1060
- #: includes/class-listing.php:708
1061
  msgctxt "listing status"
1062
  msgid "Pending Payment"
1063
  msgstr ""
1064
 
1065
- #: includes/class-listing.php:709
1066
  msgctxt "listing status"
1067
  msgid "Complete"
1068
  msgstr ""
1069
 
1070
- #: includes/class-listing.php:710
1071
  msgctxt "listing status"
1072
  msgid "Pending Upgrade"
1073
  msgstr ""
1074
 
1075
- #: includes/class-listing.php:711
1076
  msgctxt "listing status"
1077
  msgid "Expired"
1078
  msgstr ""
1079
 
1080
- #: includes/class-listing.php:712
1081
  msgctxt "listing status"
1082
  msgid "Pending Renewal"
1083
  msgstr ""
1084
 
1085
- #: includes/class-listing.php:713
1086
  msgctxt "listing status"
1087
  msgid "Abandoned"
1088
  msgstr ""
@@ -1138,21 +1138,21 @@ msgid "Send access keys"
1138
  msgstr ""
1139
 
1140
  #: includes/admin/class-admin.php:157
1141
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:63
1142
  msgctxt "listing metabox"
1143
  msgid "Never"
1144
  msgstr ""
1145
 
1146
  #: includes/admin/class-admin.php:158
1147
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1148
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1149
  msgctxt "listing metabox"
1150
  msgid "Yes"
1151
  msgstr ""
1152
 
1153
  #: includes/admin/class-admin.php:159
1154
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1155
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1156
  msgctxt "listing metabox"
1157
  msgid "No"
1158
  msgstr ""
@@ -1193,7 +1193,7 @@ msgid "Listing Status"
1193
  msgstr ""
1194
 
1195
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1196
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:20
1197
  msgctxt "listing metabox"
1198
  msgid "N/A"
1199
  msgstr ""
@@ -1203,62 +1203,62 @@ msgctxt "listing metabox"
1203
  msgid "Last renew date"
1204
  msgstr ""
1205
 
1206
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1207
  msgctxt "listing metabox"
1208
  msgid "Plan Details"
1209
  msgstr ""
1210
 
1211
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:25
1212
  msgctxt "listing metabox"
1213
  msgid "Fee Plan"
1214
  msgstr ""
1215
 
1216
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:34
1217
  msgctxt "listing metabox"
1218
  msgid "Change plan"
1219
  msgstr ""
1220
 
1221
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:46
1222
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:66
1223
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1224
  msgctxt "listing metabox"
1225
  msgid "OK"
1226
  msgstr ""
1227
 
1228
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:47
1229
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1230
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:81
1231
  msgctxt "listing metabox"
1232
  msgid "Cancel"
1233
  msgstr ""
1234
 
1235
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1236
  msgctxt "listing metabox"
1237
  msgid "Amount"
1238
  msgstr ""
1239
 
1240
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:56
1241
  msgctxt "listing metabox"
1242
  msgid "Expires On"
1243
  msgstr ""
1244
 
1245
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:61
1246
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:76
1247
  msgctxt "listing metabox"
1248
  msgid "Edit"
1249
  msgstr ""
1250
 
1251
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1252
  msgctxt "listing metabox"
1253
  msgid "# of images"
1254
  msgstr ""
1255
 
1256
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1257
  msgctxt "listing metabox"
1258
  msgid "Is Featured?"
1259
  msgstr ""
1260
 
1261
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1262
  msgctxt "listing metabox"
1263
  msgid "Is Recurring?"
1264
  msgstr ""
@@ -3145,13 +3145,13 @@ msgid "Author"
3145
  msgstr ""
3146
 
3147
  #: includes/admin/settings/class-settings-bootstrap.php:516
3148
- #: includes/functions.php:995
3149
  msgctxt "admin settings"
3150
  msgid "Date posted"
3151
  msgstr ""
3152
 
3153
  #: includes/admin/settings/class-settings-bootstrap.php:517
3154
- #: includes/functions.php:996
3155
  msgctxt "admin settings"
3156
  msgid "Date last modified"
3157
  msgstr ""
@@ -3446,33 +3446,33 @@ msgctxt "admin settings"
3446
  msgid "Checkout URL link"
3447
  msgstr ""
3448
 
3449
- #: includes/admin/settings/class-settings-bootstrap.php:1156
3450
  msgctxt "admin settings"
3451
  msgid ""
3452
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
3453
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
3454
  msgstr ""
3455
 
3456
- #: includes/admin/settings/class-settings-bootstrap.php:1169
3457
  msgctxt "admin settings"
3458
  msgid ""
3459
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
3460
  "be created."
3461
  msgstr ""
3462
 
3463
- #: includes/admin/settings/class-settings-bootstrap.php:1174
3464
  msgctxt "admin settings"
3465
  msgid ""
3466
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
3467
  "not activated."
3468
  msgstr ""
3469
 
3470
- #: includes/functions.php:993
3471
  msgctxt "admin settings"
3472
  msgid "User"
3473
  msgstr ""
3474
 
3475
- #: includes/functions.php:994
3476
  msgctxt "admin settings"
3477
  msgid "User registration date"
3478
  msgstr ""
@@ -3497,46 +3497,46 @@ msgctxt "expiration notices"
3497
  msgid "Delete"
3498
  msgstr ""
3499
 
3500
- #: includes/admin/settings/class-settings-admin.php:411
3501
  msgctxt "expiration notices"
3502
  msgid "recurring and non-recurring"
3503
  msgstr ""
3504
 
3505
- #: includes/admin/settings/class-settings-admin.php:413
3506
  msgctxt "expiration notices"
3507
  msgid "recurring only"
3508
  msgstr ""
3509
 
3510
- #: includes/admin/settings/class-settings-admin.php:415
3511
  msgctxt "expiration notices"
3512
  msgid "non-recurring only"
3513
  msgstr ""
3514
 
3515
- #: includes/admin/settings/class-settings-admin.php:419
3516
  msgctxt "expiration notices"
3517
  msgid "Sent when a listing (%s) is renewed."
3518
  msgstr ""
3519
 
3520
- #: includes/admin/settings/class-settings-admin.php:424
3521
  msgctxt "expiration notices"
3522
  msgid "Sent when a listing (%s) expires."
3523
  msgstr ""
3524
 
3525
- #: includes/admin/settings/class-settings-admin.php:432
3526
  msgctxt "expiration notices"
3527
  msgid "%d day"
3528
  msgid_plural "%d days"
3529
  msgstr[0] ""
3530
  msgstr[1] ""
3531
 
3532
- #: includes/admin/settings/class-settings-admin.php:435
3533
  msgctxt "expiration notices"
3534
  msgid "%d week"
3535
  msgid_plural "%d weeks"
3536
  msgstr[0] ""
3537
  msgstr[1] ""
3538
 
3539
- #: includes/admin/settings/class-settings-admin.php:438
3540
  msgctxt "expiration notices"
3541
  msgid "%d month"
3542
  msgid_plural "%d months"
@@ -3545,91 +3545,91 @@ msgstr[1] ""
3545
 
3546
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3547
  #. non-recuring only)
3548
- #: includes/admin/settings/class-settings-admin.php:444
3549
  msgctxt "expiration notices"
3550
  msgid "Sent %1$s before a listing (%2$s) expires."
3551
  msgstr ""
3552
 
3553
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3554
  #. non-recuring only)
3555
- #: includes/admin/settings/class-settings-admin.php:447
3556
  msgctxt "expiration notices"
3557
  msgid "Sent %1$s after a listing (%2$s) expires."
3558
  msgstr ""
3559
 
3560
- #: includes/admin/settings/class-settings-admin.php:464
3561
  msgctxt "expiration notices"
3562
  msgid "At the time of expiration"
3563
  msgstr ""
3564
 
3565
- #: includes/admin/settings/class-settings-admin.php:465
3566
  msgctxt "expiration notices"
3567
  msgid "Right after a successful renewal"
3568
  msgstr ""
3569
 
3570
- #: includes/admin/settings/class-settings-admin.php:474
3571
  msgctxt "expiration notices"
3572
  msgid "%d day before expiration"
3573
  msgid_plural "%d days before expiration"
3574
  msgstr[0] ""
3575
  msgstr[1] ""
3576
 
3577
- #: includes/admin/settings/class-settings-admin.php:474
3578
  msgctxt "expiration notices"
3579
  msgid "%d day after expiration"
3580
  msgid_plural "%d days after expiration"
3581
  msgstr[0] ""
3582
  msgstr[1] ""
3583
 
3584
- #: includes/admin/settings/class-settings-admin.php:477
3585
  msgctxt "expiration notices"
3586
  msgid "%d week before expiration"
3587
  msgid_plural "%d weeks before expiration"
3588
  msgstr[0] ""
3589
  msgstr[1] ""
3590
 
3591
- #: includes/admin/settings/class-settings-admin.php:477
3592
  msgctxt "expiration notices"
3593
  msgid "%d week after expiration"
3594
  msgid_plural "%d weeks after expiration"
3595
  msgstr[0] ""
3596
  msgstr[1] ""
3597
 
3598
- #: includes/admin/settings/class-settings-admin.php:480
3599
  msgctxt "expiration notices"
3600
  msgid "%d month before expiration"
3601
  msgid_plural "%d months before expiration"
3602
  msgstr[0] ""
3603
  msgstr[1] ""
3604
 
3605
- #: includes/admin/settings/class-settings-admin.php:480
3606
  msgctxt "expiration notices"
3607
  msgid "%d month after expiration"
3608
  msgid_plural "%d months after expiration"
3609
  msgstr[0] ""
3610
  msgstr[1] ""
3611
 
3612
- #: includes/admin/settings/class-settings-admin.php:500
3613
  msgctxt "expiration notices"
3614
  msgid "Applies to"
3615
  msgstr ""
3616
 
3617
- #: includes/admin/settings/class-settings-admin.php:503
3618
  msgctxt "expiration notices"
3619
  msgid "Non-recurring listings"
3620
  msgstr ""
3621
 
3622
- #: includes/admin/settings/class-settings-admin.php:504
3623
  msgctxt "expiration notices"
3624
  msgid "Recurring listings"
3625
  msgstr ""
3626
 
3627
- #: includes/admin/settings/class-settings-admin.php:505
3628
  msgctxt "expiration notices"
3629
  msgid "Recurring and non-recurring listings"
3630
  msgstr ""
3631
 
3632
- #: includes/admin/settings/class-settings-admin.php:510
3633
  msgctxt "expiration notices"
3634
  msgid "When to send?"
3635
  msgstr ""
@@ -3639,7 +3639,47 @@ msgctxt "expiration notices"
3639
  msgid "E-mail body text"
3640
  msgstr ""
3641
 
3642
- #: includes/admin/settings/class-settings-admin.php:542
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3643
  msgctxt "settings"
3644
  msgid "Settings reset to default."
3645
  msgstr ""
@@ -4914,22 +4954,22 @@ msgctxt "listing"
4914
  msgid "Add New Listing"
4915
  msgstr ""
4916
 
4917
- #: includes/class-listing.php:294
4918
  msgctxt "listing"
4919
  msgid "Listing expired"
4920
  msgstr ""
4921
 
4922
- #: includes/class-listing.php:446
4923
  msgctxt "listing"
4924
  msgid "(Unavailable Plan)"
4925
  msgstr ""
4926
 
4927
- #: includes/class-listing.php:602
4928
  msgctxt "listing"
4929
  msgid "Plan \"%s\" (recurring)"
4930
  msgstr ""
4931
 
4932
- #: includes/class-listing.php:604
4933
  msgctxt "listing"
4934
  msgid "Plan \"%s\""
4935
  msgstr ""
@@ -4981,17 +5021,17 @@ msgctxt "fees-api"
4981
  msgid "Free Listing"
4982
  msgstr ""
4983
 
4984
- #: includes/class-listing-email-notification.php:130
4985
  msgctxt "notify email"
4986
  msgid "[%s] New listing notification"
4987
  msgstr ""
4988
 
4989
- #: includes/class-listing-email-notification.php:165
4990
  msgctxt "notify email"
4991
  msgid "[%s] Listing edit notification"
4992
  msgstr ""
4993
 
4994
- #: includes/class-listing-email-notification.php:219
4995
  msgctxt "notify email"
4996
  msgid "[%s] Reported listing notification"
4997
  msgstr ""
@@ -5031,20 +5071,31 @@ msgctxt "notify email"
5031
  msgid "Admin URL"
5032
  msgstr ""
5033
 
5034
- #: templates/email/listing-added.tpl.php:17
5035
- #: templates/email/listing-edited.tpl.php:17
5036
- #: templates/email/listing-reported.tpl.php:17
5037
  msgctxt "notify email"
5038
- msgid "Categories"
5039
- msgstr ""
 
 
5040
 
5041
- #: templates/email/listing-added.tpl.php:20
5042
  #: templates/email/listing-edited.tpl.php:20
5043
  #: templates/email/listing-reported.tpl.php:19
5044
  msgctxt "notify email"
5045
  msgid "Posted By"
5046
  msgstr ""
5047
 
 
 
 
 
 
 
 
 
 
 
 
5048
  #: templates/email/listing-reported.tpl.php:21
5049
  msgctxt "notify email"
5050
  msgid "Report IP"
@@ -5261,7 +5312,7 @@ msgctxt "submit listing"
5261
  msgid "Account Creation"
5262
  msgstr ""
5263
 
5264
- #: includes/views/submit_listing.php:363
5265
  msgctxt "submit listing"
5266
  msgid "Terms and Conditions"
5267
  msgstr ""
@@ -5296,53 +5347,53 @@ msgctxt "submit listing"
5296
  msgid "Please choose a valid fee plan for your category selection."
5297
  msgstr ""
5298
 
5299
- #: includes/views/submit_listing.php:717
5300
  msgctxt "submit listing"
5301
  msgid "Please enter your desired username."
5302
  msgstr ""
5303
 
5304
- #: includes/views/submit_listing.php:722
5305
  msgctxt "submit listing"
5306
  msgid "Please enter the e-mail for your new account."
5307
  msgstr ""
5308
 
5309
- #: includes/views/submit_listing.php:727
5310
  msgctxt "submit listing"
5311
  msgid "Please enter the password for your new account."
5312
  msgstr ""
5313
 
5314
- #: includes/views/submit_listing.php:737
5315
  msgctxt "submit listing"
5316
  msgid "The username you chose is already in use. Please use a different one."
5317
  msgstr ""
5318
 
5319
- #: includes/views/submit_listing.php:742
5320
  msgctxt "submit listing"
5321
  msgid "The e-mail address you chose for your account is already in use."
5322
  msgstr ""
5323
 
5324
- #: includes/views/submit_listing.php:757
5325
  msgctxt "submit listing"
5326
  msgid "Create a user account on this site"
5327
  msgstr ""
5328
 
5329
- #: includes/views/submit_listing.php:764
5330
  msgctxt "submit listing"
5331
  msgid ""
5332
  "You need to create an account on the site. Please fill out the form below."
5333
  msgstr ""
5334
 
5335
- #: includes/views/submit_listing.php:770
5336
  msgctxt "submit listing"
5337
  msgid "Username:"
5338
  msgstr ""
5339
 
5340
- #: includes/views/submit_listing.php:779
5341
  msgctxt "submit listing"
5342
  msgid "Email:"
5343
  msgstr ""
5344
 
5345
- #: includes/views/submit_listing.php:788
5346
  msgctxt "submit listing"
5347
  msgid "Password:"
5348
  msgstr ""
@@ -5382,17 +5433,17 @@ msgctxt "recaptcha"
5382
  msgid "reCAPTCHA"
5383
  msgstr ""
5384
 
5385
- #: includes/class-wpbdp.php:241
5386
  msgctxt "admin plugins"
5387
  msgid "Settings"
5388
  msgstr ""
5389
 
5390
- #: includes/class-wpbdp.php:323
5391
  msgctxt "listing image upload"
5392
  msgid "Can not upload any more images for this listing."
5393
  msgstr ""
5394
 
5395
- #: includes/class-wpbdp.php:327
5396
  msgctxt "listing image upload"
5397
  msgid ""
5398
  "You're trying to upload %d images, but only have %d slot available. Please "
@@ -6393,36 +6444,36 @@ msgctxt "templates"
6393
  msgid "View not available."
6394
  msgstr ""
6395
 
6396
- #: includes/views/submit_listing.php:826
6397
  msgctxt "templates"
6398
  msgid "Please agree to the Terms and Conditions."
6399
  msgstr ""
6400
 
6401
- #: includes/views/submit_listing.php:834
6402
  msgctxt "templates"
6403
  msgid "Terms and Conditions:"
6404
  msgstr ""
6405
 
6406
- #: includes/views/submit_listing.php:843
6407
  msgctxt "templates"
6408
  msgid "I agree to the <a>Terms and Conditions</a>"
6409
  msgstr ""
6410
 
6411
  #: templates/businessdirectory-listings.tpl.php:27
6412
- #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:6
6413
  #: templates/search.tpl.php:17
6414
  msgctxt "templates"
6415
  msgid "No listings found."
6416
  msgstr ""
6417
 
6418
  #: templates/businessdirectory-listings.tpl.php:38
6419
- #: templates/listings.tpl.php:17
6420
  msgctxt "templates"
6421
  msgid "&laquo; Previous "
6422
  msgstr ""
6423
 
6424
  #: templates/businessdirectory-listings.tpl.php:39
6425
- #: templates/listings.tpl.php:18
6426
  msgctxt "templates"
6427
  msgid "Next &raquo;"
6428
  msgstr ""
@@ -6702,58 +6753,58 @@ msgctxt "sort"
6702
  msgid "(Reset)"
6703
  msgstr ""
6704
 
6705
- #: includes/utils.php:169
6706
  msgctxt "utils"
6707
  msgid ""
6708
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
6709
  msgstr ""
6710
 
6711
- #: includes/utils.php:216
6712
  msgctxt "utils"
6713
  msgid "File size (%s) exceeds maximum file size of %s"
6714
  msgstr ""
6715
 
6716
- #: includes/utils.php:224
6717
  msgctxt "utils"
6718
  msgid "File size (%s) is inferior to the required minimum file size of %s"
6719
  msgstr ""
6720
 
6721
- #: includes/utils.php:233 includes/utils.php:240
6722
  msgctxt "utils"
6723
  msgid "File type \"%s\" is not allowed"
6724
  msgstr ""
6725
 
6726
- #: includes/utils.php:247
6727
  msgctxt "utils"
6728
  msgid "Unkown error while uploading file."
6729
  msgstr ""
6730
 
6731
- #: includes/utils.php:266
6732
  msgctxt "utils"
6733
  msgid "Uploaded file is not an image"
6734
  msgstr ""
6735
 
6736
- #: includes/utils.php:275
6737
  msgctxt "utils"
6738
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
6739
  msgstr ""
6740
 
6741
- #: includes/utils.php:281
6742
  msgctxt "utils"
6743
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
6744
  msgstr ""
6745
 
6746
- #: includes/utils.php:287
6747
  msgctxt "utils"
6748
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
6749
  msgstr ""
6750
 
6751
- #: includes/utils.php:293
6752
  msgctxt "utils"
6753
  msgid "Image height (%s px) is greater than maximum required height of %s px."
6754
  msgstr ""
6755
 
6756
- #: includes/utils.php:307
6757
  msgctxt "utils"
6758
  msgid "Error while uploading file"
6759
  msgstr ""
@@ -7044,7 +7095,7 @@ msgid ""
7044
  "submit again."
7045
  msgstr ""
7046
 
7047
- #: includes/views/submit_listing.php:669
7048
  msgctxt "listing submit"
7049
  msgid ""
7050
  "Image upload is required, please provide at least one image and submit again."
@@ -7456,22 +7507,22 @@ msgctxt "admin infometabox"
7456
  msgid "Access Key"
7457
  msgstr ""
7458
 
7459
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
7460
  msgctxt "admin infometabox"
7461
  msgid "Renewal url (copy & paste)"
7462
  msgstr ""
7463
 
7464
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
7465
  msgctxt "admin infometabox"
7466
  msgid "Get renewal URL"
7467
  msgstr ""
7468
 
7469
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:103
7470
  msgctxt "admin infometabox"
7471
  msgid "Send renewal e-mail"
7472
  msgstr ""
7473
 
7474
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:108
7475
  msgctxt "admin infometabox"
7476
  msgid "Renew listing"
7477
  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-04-03 15:53:32+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"
165
  "payment processor directly."
166
  msgstr ""
167
 
168
+ #: includes/class-wpbdp.php:430
169
  msgid ""
170
  "The directory features are disabled at this time because a <a>manual "
171
  "upgrade</a> is pending."
172
  msgstr ""
173
 
174
+ #: includes/class-wpbdp.php:437
175
  msgid ""
176
  "The directory is not available at this time. Please try again in a few "
177
  "minutes or contact the administrator if the problem persists."
1042
  msgid "Reported"
1043
  msgstr ""
1044
 
1045
+ #: includes/class-listing.php:729
1046
  msgctxt "listing status"
1047
  msgid "Unknown"
1048
  msgstr ""
1049
 
1050
+ #: includes/class-listing.php:730
1051
  msgctxt "listing status"
1052
  msgid "Legacy"
1053
  msgstr ""
1054
 
1055
+ #: includes/class-listing.php:731
1056
  msgctxt "listing status"
1057
  msgid "Incomplete"
1058
  msgstr ""
1059
 
1060
+ #: includes/class-listing.php:732
1061
  msgctxt "listing status"
1062
  msgid "Pending Payment"
1063
  msgstr ""
1064
 
1065
+ #: includes/class-listing.php:733
1066
  msgctxt "listing status"
1067
  msgid "Complete"
1068
  msgstr ""
1069
 
1070
+ #: includes/class-listing.php:734
1071
  msgctxt "listing status"
1072
  msgid "Pending Upgrade"
1073
  msgstr ""
1074
 
1075
+ #: includes/class-listing.php:735
1076
  msgctxt "listing status"
1077
  msgid "Expired"
1078
  msgstr ""
1079
 
1080
+ #: includes/class-listing.php:736
1081
  msgctxt "listing status"
1082
  msgid "Pending Renewal"
1083
  msgstr ""
1084
 
1085
+ #: includes/class-listing.php:737
1086
  msgctxt "listing status"
1087
  msgid "Abandoned"
1088
  msgstr ""
1138
  msgstr ""
1139
 
1140
  #: includes/admin/class-admin.php:157
1141
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1142
  msgctxt "listing metabox"
1143
  msgid "Never"
1144
  msgstr ""
1145
 
1146
  #: includes/admin/class-admin.php:158
1147
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1148
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1149
  msgctxt "listing metabox"
1150
  msgid "Yes"
1151
  msgstr ""
1152
 
1153
  #: includes/admin/class-admin.php:159
1154
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1155
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1156
  msgctxt "listing metabox"
1157
  msgid "No"
1158
  msgstr ""
1193
  msgstr ""
1194
 
1195
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1196
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1197
  msgctxt "listing metabox"
1198
  msgid "N/A"
1199
  msgstr ""
1203
  msgid "Last renew date"
1204
  msgstr ""
1205
 
1206
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:27
1207
  msgctxt "listing metabox"
1208
  msgid "Plan Details"
1209
  msgstr ""
1210
 
1211
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:29
1212
  msgctxt "listing metabox"
1213
  msgid "Fee Plan"
1214
  msgstr ""
1215
 
1216
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:38
1217
  msgctxt "listing metabox"
1218
  msgid "Change plan"
1219
  msgstr ""
1220
 
1221
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1222
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:70
1223
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1224
  msgctxt "listing metabox"
1225
  msgid "OK"
1226
  msgstr ""
1227
 
1228
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:51
1229
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1230
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:85
1231
  msgctxt "listing metabox"
1232
  msgid "Cancel"
1233
  msgstr ""
1234
 
1235
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:54
1236
  msgctxt "listing metabox"
1237
  msgid "Amount"
1238
  msgstr ""
1239
 
1240
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:60
1241
  msgctxt "listing metabox"
1242
  msgid "Expires On"
1243
  msgstr ""
1244
 
1245
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:65
1246
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1247
  msgctxt "listing metabox"
1248
  msgid "Edit"
1249
  msgstr ""
1250
 
1251
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:75
1252
  msgctxt "listing metabox"
1253
  msgid "# of images"
1254
  msgstr ""
1255
 
1256
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:88
1257
  msgctxt "listing metabox"
1258
  msgid "Is Featured?"
1259
  msgstr ""
1260
 
1261
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:95
1262
  msgctxt "listing metabox"
1263
  msgid "Is Recurring?"
1264
  msgstr ""
3145
  msgstr ""
3146
 
3147
  #: includes/admin/settings/class-settings-bootstrap.php:516
3148
+ #: includes/functions.php:1010
3149
  msgctxt "admin settings"
3150
  msgid "Date posted"
3151
  msgstr ""
3152
 
3153
  #: includes/admin/settings/class-settings-bootstrap.php:517
3154
+ #: includes/functions.php:1011
3155
  msgctxt "admin settings"
3156
  msgid "Date last modified"
3157
  msgstr ""
3446
  msgid "Checkout URL link"
3447
  msgstr ""
3448
 
3449
+ #: includes/admin/settings/class-settings-bootstrap.php:1157
3450
  msgctxt "admin settings"
3451
  msgid ""
3452
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
3453
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
3454
  msgstr ""
3455
 
3456
+ #: includes/admin/settings/class-settings-bootstrap.php:1170
3457
  msgctxt "admin settings"
3458
  msgid ""
3459
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
3460
  "be created."
3461
  msgstr ""
3462
 
3463
+ #: includes/admin/settings/class-settings-bootstrap.php:1175
3464
  msgctxt "admin settings"
3465
  msgid ""
3466
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
3467
  "not activated."
3468
  msgstr ""
3469
 
3470
+ #: includes/functions.php:1008
3471
  msgctxt "admin settings"
3472
  msgid "User"
3473
  msgstr ""
3474
 
3475
+ #: includes/functions.php:1009
3476
  msgctxt "admin settings"
3477
  msgid "User registration date"
3478
  msgstr ""
3497
  msgid "Delete"
3498
  msgstr ""
3499
 
3500
+ #: includes/admin/settings/class-settings-admin.php:422
3501
  msgctxt "expiration notices"
3502
  msgid "recurring and non-recurring"
3503
  msgstr ""
3504
 
3505
+ #: includes/admin/settings/class-settings-admin.php:424
3506
  msgctxt "expiration notices"
3507
  msgid "recurring only"
3508
  msgstr ""
3509
 
3510
+ #: includes/admin/settings/class-settings-admin.php:426
3511
  msgctxt "expiration notices"
3512
  msgid "non-recurring only"
3513
  msgstr ""
3514
 
3515
+ #: includes/admin/settings/class-settings-admin.php:430
3516
  msgctxt "expiration notices"
3517
  msgid "Sent when a listing (%s) is renewed."
3518
  msgstr ""
3519
 
3520
+ #: includes/admin/settings/class-settings-admin.php:435
3521
  msgctxt "expiration notices"
3522
  msgid "Sent when a listing (%s) expires."
3523
  msgstr ""
3524
 
3525
+ #: includes/admin/settings/class-settings-admin.php:443
3526
  msgctxt "expiration notices"
3527
  msgid "%d day"
3528
  msgid_plural "%d days"
3529
  msgstr[0] ""
3530
  msgstr[1] ""
3531
 
3532
+ #: includes/admin/settings/class-settings-admin.php:446
3533
  msgctxt "expiration notices"
3534
  msgid "%d week"
3535
  msgid_plural "%d weeks"
3536
  msgstr[0] ""
3537
  msgstr[1] ""
3538
 
3539
+ #: includes/admin/settings/class-settings-admin.php:449
3540
  msgctxt "expiration notices"
3541
  msgid "%d month"
3542
  msgid_plural "%d months"
3545
 
3546
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3547
  #. non-recuring only)
3548
+ #: includes/admin/settings/class-settings-admin.php:455
3549
  msgctxt "expiration notices"
3550
  msgid "Sent %1$s before a listing (%2$s) expires."
3551
  msgstr ""
3552
 
3553
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3554
  #. non-recuring only)
3555
+ #: includes/admin/settings/class-settings-admin.php:458
3556
  msgctxt "expiration notices"
3557
  msgid "Sent %1$s after a listing (%2$s) expires."
3558
  msgstr ""
3559
 
3560
+ #: includes/admin/settings/class-settings-admin.php:475
3561
  msgctxt "expiration notices"
3562
  msgid "At the time of expiration"
3563
  msgstr ""
3564
 
3565
+ #: includes/admin/settings/class-settings-admin.php:476
3566
  msgctxt "expiration notices"
3567
  msgid "Right after a successful renewal"
3568
  msgstr ""
3569
 
3570
+ #: includes/admin/settings/class-settings-admin.php:485
3571
  msgctxt "expiration notices"
3572
  msgid "%d day before expiration"
3573
  msgid_plural "%d days before expiration"
3574
  msgstr[0] ""
3575
  msgstr[1] ""
3576
 
3577
+ #: includes/admin/settings/class-settings-admin.php:485
3578
  msgctxt "expiration notices"
3579
  msgid "%d day after expiration"
3580
  msgid_plural "%d days after expiration"
3581
  msgstr[0] ""
3582
  msgstr[1] ""
3583
 
3584
+ #: includes/admin/settings/class-settings-admin.php:488
3585
  msgctxt "expiration notices"
3586
  msgid "%d week before expiration"
3587
  msgid_plural "%d weeks before expiration"
3588
  msgstr[0] ""
3589
  msgstr[1] ""
3590
 
3591
+ #: includes/admin/settings/class-settings-admin.php:488
3592
  msgctxt "expiration notices"
3593
  msgid "%d week after expiration"
3594
  msgid_plural "%d weeks after expiration"
3595
  msgstr[0] ""
3596
  msgstr[1] ""
3597
 
3598
+ #: includes/admin/settings/class-settings-admin.php:491
3599
  msgctxt "expiration notices"
3600
  msgid "%d month before expiration"
3601
  msgid_plural "%d months before expiration"
3602
  msgstr[0] ""
3603
  msgstr[1] ""
3604
 
3605
+ #: includes/admin/settings/class-settings-admin.php:491
3606
  msgctxt "expiration notices"
3607
  msgid "%d month after expiration"
3608
  msgid_plural "%d months after expiration"
3609
  msgstr[0] ""
3610
  msgstr[1] ""
3611
 
3612
+ #: includes/admin/settings/class-settings-admin.php:518
3613
  msgctxt "expiration notices"
3614
  msgid "Applies to"
3615
  msgstr ""
3616
 
3617
+ #: includes/admin/settings/class-settings-admin.php:521
3618
  msgctxt "expiration notices"
3619
  msgid "Non-recurring listings"
3620
  msgstr ""
3621
 
3622
+ #: includes/admin/settings/class-settings-admin.php:522
3623
  msgctxt "expiration notices"
3624
  msgid "Recurring listings"
3625
  msgstr ""
3626
 
3627
+ #: includes/admin/settings/class-settings-admin.php:523
3628
  msgctxt "expiration notices"
3629
  msgid "Recurring and non-recurring listings"
3630
  msgstr ""
3631
 
3632
+ #: includes/admin/settings/class-settings-admin.php:528
3633
  msgctxt "expiration notices"
3634
  msgid "When to send?"
3635
  msgstr ""
3639
  msgid "E-mail body text"
3640
  msgstr ""
3641
 
3642
+ #: includes/admin/settings/class-settings-admin.php:398
3643
+ msgctxt "settings"
3644
+ msgid "Site title (with link)"
3645
+ msgstr ""
3646
+
3647
+ #: includes/admin/settings/class-settings-admin.php:399
3648
+ msgctxt "settings"
3649
+ msgid "Author's name"
3650
+ msgstr ""
3651
+
3652
+ #: includes/admin/settings/class-settings-admin.php:400
3653
+ msgctxt "settings"
3654
+ msgid "Listing's name (with link)"
3655
+ msgstr ""
3656
+
3657
+ #: includes/admin/settings/class-settings-admin.php:401
3658
+ msgctxt "settings"
3659
+ msgid "Listing's expiration date"
3660
+ msgstr ""
3661
+
3662
+ #: includes/admin/settings/class-settings-admin.php:402
3663
+ msgctxt "settings"
3664
+ msgid "Listing's renewal link"
3665
+ msgstr ""
3666
+
3667
+ #: includes/admin/settings/class-settings-admin.php:403
3668
+ msgctxt "settings"
3669
+ msgid "Listing's categories"
3670
+ msgstr ""
3671
+
3672
+ #: includes/admin/settings/class-settings-admin.php:404
3673
+ msgctxt "settings"
3674
+ msgid "Listing's last payment date"
3675
+ msgstr ""
3676
+
3677
+ #: includes/admin/settings/class-settings-admin.php:405
3678
+ msgctxt "settings"
3679
+ msgid "Listing's access key"
3680
+ msgstr ""
3681
+
3682
+ #: includes/admin/settings/class-settings-admin.php:560
3683
  msgctxt "settings"
3684
  msgid "Settings reset to default."
3685
  msgstr ""
4954
  msgid "Add New Listing"
4955
  msgstr ""
4956
 
4957
+ #: includes/class-listing.php:318
4958
  msgctxt "listing"
4959
  msgid "Listing expired"
4960
  msgstr ""
4961
 
4962
+ #: includes/class-listing.php:470
4963
  msgctxt "listing"
4964
  msgid "(Unavailable Plan)"
4965
  msgstr ""
4966
 
4967
+ #: includes/class-listing.php:626
4968
  msgctxt "listing"
4969
  msgid "Plan \"%s\" (recurring)"
4970
  msgstr ""
4971
 
4972
+ #: includes/class-listing.php:628
4973
  msgctxt "listing"
4974
  msgid "Plan \"%s\""
4975
  msgstr ""
5021
  msgid "Free Listing"
5022
  msgstr ""
5023
 
5024
+ #: includes/class-listing-email-notification.php:151
5025
  msgctxt "notify email"
5026
  msgid "[%s] New listing notification"
5027
  msgstr ""
5028
 
5029
+ #: includes/class-listing-email-notification.php:186
5030
  msgctxt "notify email"
5031
  msgid "[%s] Listing edit notification"
5032
  msgstr ""
5033
 
5034
+ #: includes/class-listing-email-notification.php:240
5035
  msgctxt "notify email"
5036
  msgid "[%s] Reported listing notification"
5037
  msgstr ""
5071
  msgid "Admin URL"
5072
  msgstr ""
5073
 
5074
+ #: templates/email/listing-added.tpl.php:21
 
 
5075
  msgctxt "notify email"
5076
+ msgid "Category"
5077
+ msgid_plural "Categories"
5078
+ msgstr[0] ""
5079
+ msgstr[1] ""
5080
 
5081
+ #: templates/email/listing-added.tpl.php:27
5082
  #: templates/email/listing-edited.tpl.php:20
5083
  #: templates/email/listing-reported.tpl.php:19
5084
  msgctxt "notify email"
5085
  msgid "Posted By"
5086
  msgstr ""
5087
 
5088
+ #: templates/email/listing-added.tpl.php:36
5089
+ msgctxt "notify email"
5090
+ msgid "Annonymous User"
5091
+ msgstr ""
5092
+
5093
+ #: templates/email/listing-edited.tpl.php:17
5094
+ #: templates/email/listing-reported.tpl.php:17
5095
+ msgctxt "notify email"
5096
+ msgid "Categories"
5097
+ msgstr ""
5098
+
5099
  #: templates/email/listing-reported.tpl.php:21
5100
  msgctxt "notify email"
5101
  msgid "Report IP"
5312
  msgid "Account Creation"
5313
  msgstr ""
5314
 
5315
+ #: includes/views/submit_listing.php:365
5316
  msgctxt "submit listing"
5317
  msgid "Terms and Conditions"
5318
  msgstr ""
5347
  msgid "Please choose a valid fee plan for your category selection."
5348
  msgstr ""
5349
 
5350
+ #: includes/views/submit_listing.php:725
5351
  msgctxt "submit listing"
5352
  msgid "Please enter your desired username."
5353
  msgstr ""
5354
 
5355
+ #: includes/views/submit_listing.php:730
5356
  msgctxt "submit listing"
5357
  msgid "Please enter the e-mail for your new account."
5358
  msgstr ""
5359
 
5360
+ #: includes/views/submit_listing.php:735
5361
  msgctxt "submit listing"
5362
  msgid "Please enter the password for your new account."
5363
  msgstr ""
5364
 
5365
+ #: includes/views/submit_listing.php:745
5366
  msgctxt "submit listing"
5367
  msgid "The username you chose is already in use. Please use a different one."
5368
  msgstr ""
5369
 
5370
+ #: includes/views/submit_listing.php:750
5371
  msgctxt "submit listing"
5372
  msgid "The e-mail address you chose for your account is already in use."
5373
  msgstr ""
5374
 
5375
+ #: includes/views/submit_listing.php:765
5376
  msgctxt "submit listing"
5377
  msgid "Create a user account on this site"
5378
  msgstr ""
5379
 
5380
+ #: includes/views/submit_listing.php:772
5381
  msgctxt "submit listing"
5382
  msgid ""
5383
  "You need to create an account on the site. Please fill out the form below."
5384
  msgstr ""
5385
 
5386
+ #: includes/views/submit_listing.php:778
5387
  msgctxt "submit listing"
5388
  msgid "Username:"
5389
  msgstr ""
5390
 
5391
+ #: includes/views/submit_listing.php:787
5392
  msgctxt "submit listing"
5393
  msgid "Email:"
5394
  msgstr ""
5395
 
5396
+ #: includes/views/submit_listing.php:796
5397
  msgctxt "submit listing"
5398
  msgid "Password:"
5399
  msgstr ""
5433
  msgid "reCAPTCHA"
5434
  msgstr ""
5435
 
5436
+ #: includes/class-wpbdp.php:249
5437
  msgctxt "admin plugins"
5438
  msgid "Settings"
5439
  msgstr ""
5440
 
5441
+ #: includes/class-wpbdp.php:331
5442
  msgctxt "listing image upload"
5443
  msgid "Can not upload any more images for this listing."
5444
  msgstr ""
5445
 
5446
+ #: includes/class-wpbdp.php:335
5447
  msgctxt "listing image upload"
5448
  msgid ""
5449
  "You're trying to upload %d images, but only have %d slot available. Please "
6444
  msgid "View not available."
6445
  msgstr ""
6446
 
6447
+ #: includes/views/submit_listing.php:834
6448
  msgctxt "templates"
6449
  msgid "Please agree to the Terms and Conditions."
6450
  msgstr ""
6451
 
6452
+ #: includes/views/submit_listing.php:842
6453
  msgctxt "templates"
6454
  msgid "Terms and Conditions:"
6455
  msgstr ""
6456
 
6457
+ #: includes/views/submit_listing.php:851
6458
  msgctxt "templates"
6459
  msgid "I agree to the <a>Terms and Conditions</a>"
6460
  msgstr ""
6461
 
6462
  #: templates/businessdirectory-listings.tpl.php:27
6463
+ #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:8
6464
  #: templates/search.tpl.php:17
6465
  msgctxt "templates"
6466
  msgid "No listings found."
6467
  msgstr ""
6468
 
6469
  #: templates/businessdirectory-listings.tpl.php:38
6470
+ #: templates/listings.tpl.php:24
6471
  msgctxt "templates"
6472
  msgid "&laquo; Previous "
6473
  msgstr ""
6474
 
6475
  #: templates/businessdirectory-listings.tpl.php:39
6476
+ #: templates/listings.tpl.php:25
6477
  msgctxt "templates"
6478
  msgid "Next &raquo;"
6479
  msgstr ""
6753
  msgid "(Reset)"
6754
  msgstr ""
6755
 
6756
+ #: includes/utils.php:179
6757
  msgctxt "utils"
6758
  msgid ""
6759
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
6760
  msgstr ""
6761
 
6762
+ #: includes/utils.php:226
6763
  msgctxt "utils"
6764
  msgid "File size (%s) exceeds maximum file size of %s"
6765
  msgstr ""
6766
 
6767
+ #: includes/utils.php:234
6768
  msgctxt "utils"
6769
  msgid "File size (%s) is inferior to the required minimum file size of %s"
6770
  msgstr ""
6771
 
6772
+ #: includes/utils.php:243 includes/utils.php:250
6773
  msgctxt "utils"
6774
  msgid "File type \"%s\" is not allowed"
6775
  msgstr ""
6776
 
6777
+ #: includes/utils.php:257
6778
  msgctxt "utils"
6779
  msgid "Unkown error while uploading file."
6780
  msgstr ""
6781
 
6782
+ #: includes/utils.php:276
6783
  msgctxt "utils"
6784
  msgid "Uploaded file is not an image"
6785
  msgstr ""
6786
 
6787
+ #: includes/utils.php:285
6788
  msgctxt "utils"
6789
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
6790
  msgstr ""
6791
 
6792
+ #: includes/utils.php:291
6793
  msgctxt "utils"
6794
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
6795
  msgstr ""
6796
 
6797
+ #: includes/utils.php:297
6798
  msgctxt "utils"
6799
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
6800
  msgstr ""
6801
 
6802
+ #: includes/utils.php:303
6803
  msgctxt "utils"
6804
  msgid "Image height (%s px) is greater than maximum required height of %s px."
6805
  msgstr ""
6806
 
6807
+ #: includes/utils.php:317
6808
  msgctxt "utils"
6809
  msgid "Error while uploading file"
6810
  msgstr ""
7095
  "submit again."
7096
  msgstr ""
7097
 
7098
+ #: includes/views/submit_listing.php:677
7099
  msgctxt "listing submit"
7100
  msgid ""
7101
  "Image upload is required, please provide at least one image and submit again."
7507
  msgid "Access Key"
7508
  msgstr ""
7509
 
7510
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
7511
  msgctxt "admin infometabox"
7512
  msgid "Renewal url (copy & paste)"
7513
  msgstr ""
7514
 
7515
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
7516
  msgctxt "admin infometabox"
7517
  msgid "Get renewal URL"
7518
  msgstr ""
7519
 
7520
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:107
7521
  msgctxt "admin infometabox"
7522
  msgid "Send renewal e-mail"
7523
  msgstr ""
7524
 
7525
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:112
7526
  msgctxt "admin infometabox"
7527
  msgid "Renew listing"
7528
  msgstr ""
languages/WPBDM-es_ES.mo CHANGED
Binary file
languages/WPBDM-es_ES.po CHANGED
@@ -5,8 +5,8 @@ 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-03-02 04:44:48+00:00\n"
9
- "PO-Revision-Date: 2018-03-01 23:44-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"
@@ -185,7 +185,7 @@ msgstr ""
185
  "administrador puede cancelar su subscripción contactando el procesador de "
186
  "pagos directamente."
187
 
188
- #: includes/class-wpbdp.php:422
189
  msgid ""
190
  "The directory features are disabled at this time because a <a>manual "
191
  "upgrade</a> is pending."
@@ -193,7 +193,7 @@ msgstr ""
193
  "Las características de Business Directory se encuentran deshabilitadas en "
194
  "este momento por una <a>actualización manual</a> está pendiente."
195
 
196
- #: includes/class-wpbdp.php:429
197
  msgid ""
198
  "The directory is not available at this time. Please try again in a few "
199
  "minutes or contact the administrator if the problem persists."
@@ -1126,47 +1126,47 @@ msgctxt "listing status"
1126
  msgid "Reported"
1127
  msgstr "Reportado"
1128
 
1129
- #: includes/class-listing.php:705
1130
  msgctxt "listing status"
1131
  msgid "Unknown"
1132
  msgstr "Desconocido"
1133
 
1134
- #: includes/class-listing.php:706
1135
  msgctxt "listing status"
1136
  msgid "Legacy"
1137
  msgstr "Antiguo"
1138
 
1139
- #: includes/class-listing.php:707
1140
  msgctxt "listing status"
1141
  msgid "Incomplete"
1142
  msgstr "Incompleto"
1143
 
1144
- #: includes/class-listing.php:708
1145
  msgctxt "listing status"
1146
  msgid "Pending Payment"
1147
  msgstr "Pendiente de pago"
1148
 
1149
- #: includes/class-listing.php:709
1150
  msgctxt "listing status"
1151
  msgid "Complete"
1152
  msgstr "Completado"
1153
 
1154
- #: includes/class-listing.php:710
1155
  msgctxt "listing status"
1156
  msgid "Pending Upgrade"
1157
  msgstr "Pendiente de mejora"
1158
 
1159
- #: includes/class-listing.php:711
1160
  msgctxt "listing status"
1161
  msgid "Expired"
1162
  msgstr "Expirado"
1163
 
1164
- #: includes/class-listing.php:712
1165
  msgctxt "listing status"
1166
  msgid "Pending Renewal"
1167
  msgstr "Pendientes de renovación"
1168
 
1169
- #: includes/class-listing.php:713
1170
  msgctxt "listing status"
1171
  msgid "Abandoned"
1172
  msgstr "Abandonado"
@@ -1222,21 +1222,21 @@ msgid "Send access keys"
1222
  msgstr "Enviar claves de acceso"
1223
 
1224
  #: includes/admin/class-admin.php:157
1225
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:63
1226
  msgctxt "listing metabox"
1227
  msgid "Never"
1228
  msgstr "Nunca"
1229
 
1230
  #: includes/admin/class-admin.php:158
1231
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1232
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1233
  msgctxt "listing metabox"
1234
  msgid "Yes"
1235
  msgstr "Sí"
1236
 
1237
  #: includes/admin/class-admin.php:159
1238
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1239
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1240
  msgctxt "listing metabox"
1241
  msgid "No"
1242
  msgstr "No"
@@ -1277,7 +1277,7 @@ msgid "Listing Status"
1277
  msgstr "Estado del Listado"
1278
 
1279
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1280
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:20
1281
  msgctxt "listing metabox"
1282
  msgid "N/A"
1283
  msgstr "N/A"
@@ -1287,62 +1287,62 @@ msgctxt "listing metabox"
1287
  msgid "Last renew date"
1288
  msgstr "Fecha de renovación"
1289
 
1290
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1291
  msgctxt "listing metabox"
1292
  msgid "Plan Details"
1293
  msgstr "Detalles del Plan"
1294
 
1295
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:25
1296
  msgctxt "listing metabox"
1297
  msgid "Fee Plan"
1298
  msgstr "Plan de Pago"
1299
 
1300
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:34
1301
  msgctxt "listing metabox"
1302
  msgid "Change plan"
1303
  msgstr "Cambiar plan de pago"
1304
 
1305
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:46
1306
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:66
1307
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1308
  msgctxt "listing metabox"
1309
  msgid "OK"
1310
  msgstr "OK"
1311
 
1312
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:47
1313
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1314
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:81
1315
  msgctxt "listing metabox"
1316
  msgid "Cancel"
1317
  msgstr "Cancelar"
1318
 
1319
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1320
  msgctxt "listing metabox"
1321
  msgid "Amount"
1322
  msgstr "Precio"
1323
 
1324
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:56
1325
  msgctxt "listing metabox"
1326
  msgid "Expires On"
1327
  msgstr "Expira en"
1328
 
1329
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:61
1330
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:76
1331
  msgctxt "listing metabox"
1332
  msgid "Edit"
1333
  msgstr "Editar"
1334
 
1335
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1336
  msgctxt "listing metabox"
1337
  msgid "# of images"
1338
  msgstr "# de imágenes"
1339
 
1340
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1341
  msgctxt "listing metabox"
1342
  msgid "Is Featured?"
1343
  msgstr "¿Es destacado?"
1344
 
1345
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1346
  msgctxt "listing metabox"
1347
  msgid "Is Recurring?"
1348
  msgstr "¿Es recurrente?"
@@ -3347,13 +3347,13 @@ msgid "Author"
3347
  msgstr "Autor"
3348
 
3349
  #: includes/admin/settings/class-settings-bootstrap.php:516
3350
- #: includes/functions.php:995
3351
  msgctxt "admin settings"
3352
  msgid "Date posted"
3353
  msgstr "Fecha de publicación"
3354
 
3355
  #: includes/admin/settings/class-settings-bootstrap.php:517
3356
- #: includes/functions.php:996
3357
  msgctxt "admin settings"
3358
  msgid "Date last modified"
3359
  msgstr "Fecha de última modificación"
@@ -3659,7 +3659,7 @@ msgctxt "admin settings"
3659
  msgid "Checkout URL link"
3660
  msgstr "Link a la URL de pago"
3661
 
3662
- #: includes/admin/settings/class-settings-bootstrap.php:1156
3663
  msgctxt "admin settings"
3664
  msgid ""
3665
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
@@ -3668,7 +3668,7 @@ msgstr ""
3668
  "No se pudo remover \"Business Directory Plugin - AJAX Compatibility Module"
3669
  "\". Por favor elimine el archivo \"%s\" manualmente o desactive el plugin."
3670
 
3671
- #: includes/admin/settings/class-settings-bootstrap.php:1169
3672
  msgctxt "admin settings"
3673
  msgid ""
3674
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
@@ -3677,7 +3677,7 @@ msgstr ""
3677
  "No se pudo activar el modo de compatibilidad AJAX: el directorio \"%s\" no "
3678
  "pudo ser creado."
3679
 
3680
- #: includes/admin/settings/class-settings-bootstrap.php:1174
3681
  msgctxt "admin settings"
3682
  msgid ""
3683
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
@@ -3686,12 +3686,12 @@ msgstr ""
3686
  "No se pudo copiar el plugin de compatibilidad AJAX \"%s\". El modo de "
3687
  "compatibilidad no fue activado."
3688
 
3689
- #: includes/functions.php:993
3690
  msgctxt "admin settings"
3691
  msgid "User"
3692
  msgstr "Usuario"
3693
 
3694
- #: includes/functions.php:994
3695
  msgctxt "admin settings"
3696
  msgid "User registration date"
3697
  msgstr "Fecha de registro del usuario"
@@ -3716,46 +3716,46 @@ msgctxt "expiration notices"
3716
  msgid "Delete"
3717
  msgstr "Eliminar"
3718
 
3719
- #: includes/admin/settings/class-settings-admin.php:411
3720
  msgctxt "expiration notices"
3721
  msgid "recurring and non-recurring"
3722
  msgstr "Recurrente y no recurrente"
3723
 
3724
- #: includes/admin/settings/class-settings-admin.php:413
3725
  msgctxt "expiration notices"
3726
  msgid "recurring only"
3727
  msgstr "Solo recurrente"
3728
 
3729
- #: includes/admin/settings/class-settings-admin.php:415
3730
  msgctxt "expiration notices"
3731
  msgid "non-recurring only"
3732
  msgstr "Solo no recurrente"
3733
 
3734
- #: includes/admin/settings/class-settings-admin.php:419
3735
  msgctxt "expiration notices"
3736
  msgid "Sent when a listing (%s) is renewed."
3737
  msgstr "Enviada cuando un listado (%s) es renovado."
3738
 
3739
- #: includes/admin/settings/class-settings-admin.php:424
3740
  msgctxt "expiration notices"
3741
  msgid "Sent when a listing (%s) expires."
3742
  msgstr "Enviado cuando un listado (%s) expira."
3743
 
3744
- #: includes/admin/settings/class-settings-admin.php:432
3745
  msgctxt "expiration notices"
3746
  msgid "%d day"
3747
  msgid_plural "%d days"
3748
  msgstr[0] "%d día"
3749
  msgstr[1] "%d días"
3750
 
3751
- #: includes/admin/settings/class-settings-admin.php:435
3752
  msgctxt "expiration notices"
3753
  msgid "%d week"
3754
  msgid_plural "%d weeks"
3755
  msgstr[0] "%d semana"
3756
  msgstr[1] "%d semanas"
3757
 
3758
- #: includes/admin/settings/class-settings-admin.php:438
3759
  msgctxt "expiration notices"
3760
  msgid "%d month"
3761
  msgid_plural "%d months"
@@ -3764,91 +3764,91 @@ msgstr[1] "meses"
3764
 
3765
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3766
  #. non-recuring only)
3767
- #: includes/admin/settings/class-settings-admin.php:444
3768
  msgctxt "expiration notices"
3769
  msgid "Sent %1$s before a listing (%2$s) expires."
3770
  msgstr "Enviar %1$s antes de que un listado (%2$s) expire."
3771
 
3772
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3773
  #. non-recuring only)
3774
- #: includes/admin/settings/class-settings-admin.php:447
3775
  msgctxt "expiration notices"
3776
  msgid "Sent %1$s after a listing (%2$s) expires."
3777
  msgstr "Enviar %1$s después de que un listado (%2$s) expire."
3778
 
3779
- #: includes/admin/settings/class-settings-admin.php:464
3780
  msgctxt "expiration notices"
3781
  msgid "At the time of expiration"
3782
  msgstr "Cuando el listado expire"
3783
 
3784
- #: includes/admin/settings/class-settings-admin.php:465
3785
  msgctxt "expiration notices"
3786
  msgid "Right after a successful renewal"
3787
  msgstr "Justo después de renovar un listado"
3788
 
3789
- #: includes/admin/settings/class-settings-admin.php:474
3790
  msgctxt "expiration notices"
3791
  msgid "%d day before expiration"
3792
  msgid_plural "%d days before expiration"
3793
  msgstr[0] "%d día antes de expirar"
3794
  msgstr[1] "%d días antes de expirar"
3795
 
3796
- #: includes/admin/settings/class-settings-admin.php:474
3797
  msgctxt "expiration notices"
3798
  msgid "%d day after expiration"
3799
  msgid_plural "%d days after expiration"
3800
  msgstr[0] "%d día después de expirar"
3801
  msgstr[1] "%d días después de expirar"
3802
 
3803
- #: includes/admin/settings/class-settings-admin.php:477
3804
  msgctxt "expiration notices"
3805
  msgid "%d week before expiration"
3806
  msgid_plural "%d weeks before expiration"
3807
  msgstr[0] "%d semana antes de expirar"
3808
  msgstr[1] "%d semanas antes de expirar"
3809
 
3810
- #: includes/admin/settings/class-settings-admin.php:477
3811
  msgctxt "expiration notices"
3812
  msgid "%d week after expiration"
3813
  msgid_plural "%d weeks after expiration"
3814
  msgstr[0] "%d semana después de expirar"
3815
  msgstr[1] "%d semanas después de expirar"
3816
 
3817
- #: includes/admin/settings/class-settings-admin.php:480
3818
  msgctxt "expiration notices"
3819
  msgid "%d month before expiration"
3820
  msgid_plural "%d months before expiration"
3821
  msgstr[0] "%d mes antes de expirar"
3822
  msgstr[1] "%d meses antes de expirar"
3823
 
3824
- #: includes/admin/settings/class-settings-admin.php:480
3825
  msgctxt "expiration notices"
3826
  msgid "%d month after expiration"
3827
  msgid_plural "%d months after expiration"
3828
  msgstr[0] "%d mes después de expirar"
3829
  msgstr[1] "%d meses después de expirar"
3830
 
3831
- #: includes/admin/settings/class-settings-admin.php:500
3832
  msgctxt "expiration notices"
3833
  msgid "Applies to"
3834
  msgstr "Aplica a"
3835
 
3836
- #: includes/admin/settings/class-settings-admin.php:503
3837
  msgctxt "expiration notices"
3838
  msgid "Non-recurring listings"
3839
  msgstr "Listados no recurrentes"
3840
 
3841
- #: includes/admin/settings/class-settings-admin.php:504
3842
  msgctxt "expiration notices"
3843
  msgid "Recurring listings"
3844
  msgstr "Listados recurrentes"
3845
 
3846
- #: includes/admin/settings/class-settings-admin.php:505
3847
  msgctxt "expiration notices"
3848
  msgid "Recurring and non-recurring listings"
3849
  msgstr "Listados recurrentes y no recurrentes"
3850
 
3851
- #: includes/admin/settings/class-settings-admin.php:510
3852
  msgctxt "expiration notices"
3853
  msgid "When to send?"
3854
  msgstr "¿Cuando desea enviar esta notificación?"
@@ -3858,7 +3858,47 @@ msgctxt "expiration notices"
3858
  msgid "E-mail body text"
3859
  msgstr "Contenido del correo"
3860
 
3861
- #: includes/admin/settings/class-settings-admin.php:542
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3862
  msgctxt "settings"
3863
  msgid "Settings reset to default."
3864
  msgstr "Restablecer ajustes por defecto."
@@ -5264,22 +5304,22 @@ msgctxt "listing"
5264
  msgid "Add New Listing"
5265
  msgstr "Agregar Nuevo Listado"
5266
 
5267
- #: includes/class-listing.php:294
5268
  msgctxt "listing"
5269
  msgid "Listing expired"
5270
  msgstr "El listado expiró"
5271
 
5272
- #: includes/class-listing.php:446
5273
  msgctxt "listing"
5274
  msgid "(Unavailable Plan)"
5275
  msgstr "(Comisión no disponible)"
5276
 
5277
- #: includes/class-listing.php:602
5278
  msgctxt "listing"
5279
  msgid "Plan \"%s\" (recurring)"
5280
  msgstr "Comisión “%s” (recurrente)"
5281
 
5282
- #: includes/class-listing.php:604
5283
  msgctxt "listing"
5284
  msgid "Plan \"%s\""
5285
  msgstr "Comisión “%s”"
@@ -5338,17 +5378,17 @@ msgctxt "fees-api"
5338
  msgid "Free Listing"
5339
  msgstr "Listado Gratuito"
5340
 
5341
- #: includes/class-listing-email-notification.php:130
5342
  msgctxt "notify email"
5343
  msgid "[%s] New listing notification"
5344
  msgstr "[%s] Notificación de nuevo listado"
5345
 
5346
- #: includes/class-listing-email-notification.php:165
5347
  msgctxt "notify email"
5348
  msgid "[%s] Listing edit notification"
5349
  msgstr "[%s] Notificación de listado editado"
5350
 
5351
- #: includes/class-listing-email-notification.php:219
5352
  msgctxt "notify email"
5353
  msgid "[%s] Reported listing notification"
5354
  msgstr "[%s] Notificación de listado reportado"
@@ -5388,20 +5428,31 @@ msgctxt "notify email"
5388
  msgid "Admin URL"
5389
  msgstr "URL de administración"
5390
 
5391
- #: templates/email/listing-added.tpl.php:17
5392
- #: templates/email/listing-edited.tpl.php:17
5393
- #: templates/email/listing-reported.tpl.php:17
5394
  msgctxt "notify email"
5395
- msgid "Categories"
5396
- msgstr "Categorías"
 
 
5397
 
5398
- #: templates/email/listing-added.tpl.php:20
5399
  #: templates/email/listing-edited.tpl.php:20
5400
  #: templates/email/listing-reported.tpl.php:19
5401
  msgctxt "notify email"
5402
  msgid "Posted By"
5403
  msgstr "Publicado Por"
5404
 
 
 
 
 
 
 
 
 
 
 
 
5405
  #: templates/email/listing-reported.tpl.php:21
5406
  msgctxt "notify email"
5407
  msgid "Report IP"
@@ -5631,7 +5682,7 @@ msgctxt "submit listing"
5631
  msgid "Account Creation"
5632
  msgstr "Creación de cuenta de usuario"
5633
 
5634
- #: includes/views/submit_listing.php:363
5635
  msgctxt "submit listing"
5636
  msgid "Terms and Conditions"
5637
  msgstr "Términos y Condiciones"
@@ -5667,42 +5718,42 @@ msgctxt "submit listing"
5667
  msgid "Please choose a valid fee plan for your category selection."
5668
  msgstr "Por favor elija una comisión válida para la categoría seleccionada."
5669
 
5670
- #: includes/views/submit_listing.php:717
5671
  msgctxt "submit listing"
5672
  msgid "Please enter your desired username."
5673
  msgstr "Por favor ingrese su nombre de usuario."
5674
 
5675
- #: includes/views/submit_listing.php:722
5676
  msgctxt "submit listing"
5677
  msgid "Please enter the e-mail for your new account."
5678
  msgstr ""
5679
  "Por favor ingrese la dirección de correo electrónico para su nueva cuenta."
5680
 
5681
- #: includes/views/submit_listing.php:727
5682
  msgctxt "submit listing"
5683
  msgid "Please enter the password for your new account."
5684
  msgstr "Por favor ingrese la contraseña para su nueva cuenta."
5685
 
5686
- #: includes/views/submit_listing.php:737
5687
  msgctxt "submit listing"
5688
  msgid "The username you chose is already in use. Please use a different one."
5689
  msgstr ""
5690
  "El nombre de usuario que eligió ya está en uso. Por favor elija un nombre de "
5691
  "usuario diferente."
5692
 
5693
- #: includes/views/submit_listing.php:742
5694
  msgctxt "submit listing"
5695
  msgid "The e-mail address you chose for your account is already in use."
5696
  msgstr ""
5697
  "La dirección de correo electrónico que eligió para su cuenta ya está siendo "
5698
  "utilizada."
5699
 
5700
- #: includes/views/submit_listing.php:757
5701
  msgctxt "submit listing"
5702
  msgid "Create a user account on this site"
5703
  msgstr "Crear una cuenta de usuario en este sitio"
5704
 
5705
- #: includes/views/submit_listing.php:764
5706
  msgctxt "submit listing"
5707
  msgid ""
5708
  "You need to create an account on the site. Please fill out the form below."
@@ -5710,17 +5761,17 @@ msgstr ""
5710
  "Debe crear una cuenta de usuario en este sitio. Por favor ingrese los datos "
5711
  "requeridos en el formulario que está debajo."
5712
 
5713
- #: includes/views/submit_listing.php:770
5714
  msgctxt "submit listing"
5715
  msgid "Username:"
5716
  msgstr "Nombre de usuario"
5717
 
5718
- #: includes/views/submit_listing.php:779
5719
  msgctxt "submit listing"
5720
  msgid "Email:"
5721
  msgstr "Correo electrónico:"
5722
 
5723
- #: includes/views/submit_listing.php:788
5724
  msgctxt "submit listing"
5725
  msgid "Password:"
5726
  msgstr "Contraseña:"
@@ -5760,17 +5811,17 @@ msgctxt "recaptcha"
5760
  msgid "reCAPTCHA"
5761
  msgstr "reCAPTCHA"
5762
 
5763
- #: includes/class-wpbdp.php:241
5764
  msgctxt "admin plugins"
5765
  msgid "Settings"
5766
  msgstr "Configuración"
5767
 
5768
- #: includes/class-wpbdp.php:323
5769
  msgctxt "listing image upload"
5770
  msgid "Can not upload any more images for this listing."
5771
  msgstr "No puede subir más imágenes para este listado."
5772
 
5773
- #: includes/class-wpbdp.php:327
5774
  msgctxt "listing image upload"
5775
  msgid ""
5776
  "You're trying to upload %d images, but only have %d slot available. Please "
@@ -6863,36 +6914,36 @@ msgctxt "templates"
6863
  msgid "View not available."
6864
  msgstr "Vista no disponible."
6865
 
6866
- #: includes/views/submit_listing.php:826
6867
  msgctxt "templates"
6868
  msgid "Please agree to the Terms and Conditions."
6869
  msgstr "Por favor acepte los Términos y Condiciones."
6870
 
6871
- #: includes/views/submit_listing.php:834
6872
  msgctxt "templates"
6873
  msgid "Terms and Conditions:"
6874
  msgstr "Términos y Condiciones:"
6875
 
6876
- #: includes/views/submit_listing.php:843
6877
  msgctxt "templates"
6878
  msgid "I agree to the <a>Terms and Conditions</a>"
6879
  msgstr "Acepto los <a>Términos y Condiciones</a>"
6880
 
6881
  #: templates/businessdirectory-listings.tpl.php:27
6882
- #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:6
6883
  #: templates/search.tpl.php:17
6884
  msgctxt "templates"
6885
  msgid "No listings found."
6886
  msgstr "No se encontraron listados."
6887
 
6888
  #: templates/businessdirectory-listings.tpl.php:38
6889
- #: templates/listings.tpl.php:17
6890
  msgctxt "templates"
6891
  msgid "&laquo; Previous "
6892
  msgstr "&laquo; Anterior "
6893
 
6894
  #: templates/businessdirectory-listings.tpl.php:39
6895
- #: templates/listings.tpl.php:18
6896
  msgctxt "templates"
6897
  msgid "Next &raquo;"
6898
  msgstr "Siguiente &raquo;"
@@ -7185,7 +7236,7 @@ msgctxt "sort"
7185
  msgid "(Reset)"
7186
  msgstr "(Reestablecer)"
7187
 
7188
- #: includes/utils.php:169
7189
  msgctxt "utils"
7190
  msgid ""
7191
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
@@ -7193,54 +7244,54 @@ msgstr ""
7193
  "Los datos enviados via POST superan el valor máximo configurado en PHP. "
7194
  "Revise la directiva \"post_max_size\" de su configuración."
7195
 
7196
- #: includes/utils.php:216
7197
  msgctxt "utils"
7198
  msgid "File size (%s) exceeds maximum file size of %s"
7199
  msgstr "El tamaño de archivo (%s) excede el tamaño máximo permitido de %s"
7200
 
7201
- #: includes/utils.php:224
7202
  msgctxt "utils"
7203
  msgid "File size (%s) is inferior to the required minimum file size of %s"
7204
  msgstr "El tamaño de archivo (%s) es inferior al tamaño mínimo requerido de %s"
7205
 
7206
- #: includes/utils.php:233 includes/utils.php:240
7207
  msgctxt "utils"
7208
  msgid "File type \"%s\" is not allowed"
7209
  msgstr "El tipo de archivo \"%s\" no está permitido"
7210
 
7211
- #: includes/utils.php:247
7212
  msgctxt "utils"
7213
  msgid "Unkown error while uploading file."
7214
  msgstr "Error desconocido mientras se subía el archivo."
7215
 
7216
- #: includes/utils.php:266
7217
  msgctxt "utils"
7218
  msgid "Uploaded file is not an image"
7219
  msgstr "El archivo subido no es una imagen"
7220
 
7221
- #: includes/utils.php:275
7222
  msgctxt "utils"
7223
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
7224
  msgstr ""
7225
  "El ancho de la imagen (%s px) es inferior al mínimo requerido de %s px."
7226
 
7227
- #: includes/utils.php:281
7228
  msgctxt "utils"
7229
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
7230
  msgstr "El alto de la imagen (%s px) es inferior al mínimo requerido de %s px."
7231
 
7232
- #: includes/utils.php:287
7233
  msgctxt "utils"
7234
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
7235
  msgstr ""
7236
  "El ancho de la imagen (%s px) es superior al máximo permitido de %s px."
7237
 
7238
- #: includes/utils.php:293
7239
  msgctxt "utils"
7240
  msgid "Image height (%s px) is greater than maximum required height of %s px."
7241
  msgstr "El alto de la imagen (%s px) es superior al máximo permitido de %s px."
7242
 
7243
- #: includes/utils.php:307
7244
  msgctxt "utils"
7245
  msgid "Error while uploading file"
7246
  msgstr "Ocurrió un error mientras se subía el archivo"
@@ -7554,7 +7605,7 @@ msgstr ""
7554
  "Algo salió mal. Por favor verifique que el formulario no contiene errores y "
7555
  "envíelo de nuevo."
7556
 
7557
- #: includes/views/submit_listing.php:669
7558
  msgctxt "listing submit"
7559
  msgid ""
7560
  "Image upload is required, please provide at least one image and submit again."
@@ -7984,22 +8035,22 @@ msgctxt "admin infometabox"
7984
  msgid "Access Key"
7985
  msgstr "Clave de acceso"
7986
 
7987
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
7988
  msgctxt "admin infometabox"
7989
  msgid "Renewal url (copy & paste)"
7990
  msgstr "URL de renovación (copiar y pegar)"
7991
 
7992
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
7993
  msgctxt "admin infometabox"
7994
  msgid "Get renewal URL"
7995
  msgstr "Obtener nueva URL"
7996
 
7997
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:103
7998
  msgctxt "admin infometabox"
7999
  msgid "Send renewal e-mail"
8000
  msgstr "Enviar correo electrónico de renovación"
8001
 
8002
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:108
8003
  msgctxt "admin infometabox"
8004
  msgid "Renew listing"
8005
  msgstr "Renovar listado"
@@ -9764,10 +9815,6 @@ msgstr "Dirección"
9764
  #~ msgid "Listings"
9765
  #~ msgstr "Listados"
9766
 
9767
- #~ msgctxt "admin settings"
9768
- #~ msgid "Listing Renewal"
9769
- #~ msgstr "Renovación de Listados"
9770
-
9771
  #~ msgctxt "admin settings"
9772
  #~ msgid "Featured (Sticky) listing settings"
9773
  #~ msgstr "Configuración de Listados Destacados"
@@ -9833,10 +9880,6 @@ msgstr "Dirección"
9833
  #~ msgid "Site title"
9834
  #~ msgstr "Título del sitio"
9835
 
9836
- #~ msgctxt "settings email"
9837
- #~ msgid "Site title (with link)"
9838
- #~ msgstr "Título del listado (con enlace)"
9839
-
9840
  #~ msgctxt "settings email"
9841
  #~ msgid "Site address (with link)"
9842
  #~ msgstr "Dirección del listado (con enlace)"
@@ -10317,14 +10360,6 @@ msgstr "Dirección"
10317
  #~ "Enviado un tiempo antes de que el listado expire. Aplica para "
10318
  #~ "renovaciones no recurrentes únicamente."
10319
 
10320
- #~ msgctxt "settings"
10321
- #~ msgid "Listing's name (with link)"
10322
- #~ msgstr "Título del listado (con enlace)"
10323
-
10324
- #~ msgctxt "settings"
10325
- #~ msgid "Author's name"
10326
- #~ msgstr "Autor del listado"
10327
-
10328
  #~ msgctxt "settings"
10329
  #~ msgid "Category that is going to expire"
10330
  #~ msgstr "Categoría que va a expirar"
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-04-03 15:53:32+00:00\n"
9
+ "PO-Revision-Date: 2018-04-03 10:56-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"
185
  "administrador puede cancelar su subscripción contactando el procesador de "
186
  "pagos directamente."
187
 
188
+ #: includes/class-wpbdp.php:430
189
  msgid ""
190
  "The directory features are disabled at this time because a <a>manual "
191
  "upgrade</a> is pending."
193
  "Las características de Business Directory se encuentran deshabilitadas en "
194
  "este momento por una <a>actualización manual</a> está pendiente."
195
 
196
+ #: includes/class-wpbdp.php:437
197
  msgid ""
198
  "The directory is not available at this time. Please try again in a few "
199
  "minutes or contact the administrator if the problem persists."
1126
  msgid "Reported"
1127
  msgstr "Reportado"
1128
 
1129
+ #: includes/class-listing.php:729
1130
  msgctxt "listing status"
1131
  msgid "Unknown"
1132
  msgstr "Desconocido"
1133
 
1134
+ #: includes/class-listing.php:730
1135
  msgctxt "listing status"
1136
  msgid "Legacy"
1137
  msgstr "Antiguo"
1138
 
1139
+ #: includes/class-listing.php:731
1140
  msgctxt "listing status"
1141
  msgid "Incomplete"
1142
  msgstr "Incompleto"
1143
 
1144
+ #: includes/class-listing.php:732
1145
  msgctxt "listing status"
1146
  msgid "Pending Payment"
1147
  msgstr "Pendiente de pago"
1148
 
1149
+ #: includes/class-listing.php:733
1150
  msgctxt "listing status"
1151
  msgid "Complete"
1152
  msgstr "Completado"
1153
 
1154
+ #: includes/class-listing.php:734
1155
  msgctxt "listing status"
1156
  msgid "Pending Upgrade"
1157
  msgstr "Pendiente de mejora"
1158
 
1159
+ #: includes/class-listing.php:735
1160
  msgctxt "listing status"
1161
  msgid "Expired"
1162
  msgstr "Expirado"
1163
 
1164
+ #: includes/class-listing.php:736
1165
  msgctxt "listing status"
1166
  msgid "Pending Renewal"
1167
  msgstr "Pendientes de renovación"
1168
 
1169
+ #: includes/class-listing.php:737
1170
  msgctxt "listing status"
1171
  msgid "Abandoned"
1172
  msgstr "Abandonado"
1222
  msgstr "Enviar claves de acceso"
1223
 
1224
  #: includes/admin/class-admin.php:157
1225
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1226
  msgctxt "listing metabox"
1227
  msgid "Never"
1228
  msgstr "Nunca"
1229
 
1230
  #: includes/admin/class-admin.php:158
1231
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1232
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1233
  msgctxt "listing metabox"
1234
  msgid "Yes"
1235
  msgstr "Sí"
1236
 
1237
  #: includes/admin/class-admin.php:159
1238
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1239
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1240
  msgctxt "listing metabox"
1241
  msgid "No"
1242
  msgstr "No"
1277
  msgstr "Estado del Listado"
1278
 
1279
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1280
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1281
  msgctxt "listing metabox"
1282
  msgid "N/A"
1283
  msgstr "N/A"
1287
  msgid "Last renew date"
1288
  msgstr "Fecha de renovación"
1289
 
1290
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:27
1291
  msgctxt "listing metabox"
1292
  msgid "Plan Details"
1293
  msgstr "Detalles del Plan"
1294
 
1295
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:29
1296
  msgctxt "listing metabox"
1297
  msgid "Fee Plan"
1298
  msgstr "Plan de Pago"
1299
 
1300
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:38
1301
  msgctxt "listing metabox"
1302
  msgid "Change plan"
1303
  msgstr "Cambiar plan de pago"
1304
 
1305
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1306
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:70
1307
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1308
  msgctxt "listing metabox"
1309
  msgid "OK"
1310
  msgstr "OK"
1311
 
1312
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:51
1313
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1314
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:85
1315
  msgctxt "listing metabox"
1316
  msgid "Cancel"
1317
  msgstr "Cancelar"
1318
 
1319
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:54
1320
  msgctxt "listing metabox"
1321
  msgid "Amount"
1322
  msgstr "Precio"
1323
 
1324
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:60
1325
  msgctxt "listing metabox"
1326
  msgid "Expires On"
1327
  msgstr "Expira en"
1328
 
1329
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:65
1330
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1331
  msgctxt "listing metabox"
1332
  msgid "Edit"
1333
  msgstr "Editar"
1334
 
1335
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:75
1336
  msgctxt "listing metabox"
1337
  msgid "# of images"
1338
  msgstr "# de imágenes"
1339
 
1340
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:88
1341
  msgctxt "listing metabox"
1342
  msgid "Is Featured?"
1343
  msgstr "¿Es destacado?"
1344
 
1345
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:95
1346
  msgctxt "listing metabox"
1347
  msgid "Is Recurring?"
1348
  msgstr "¿Es recurrente?"
3347
  msgstr "Autor"
3348
 
3349
  #: includes/admin/settings/class-settings-bootstrap.php:516
3350
+ #: includes/functions.php:1010
3351
  msgctxt "admin settings"
3352
  msgid "Date posted"
3353
  msgstr "Fecha de publicación"
3354
 
3355
  #: includes/admin/settings/class-settings-bootstrap.php:517
3356
+ #: includes/functions.php:1011
3357
  msgctxt "admin settings"
3358
  msgid "Date last modified"
3359
  msgstr "Fecha de última modificación"
3659
  msgid "Checkout URL link"
3660
  msgstr "Link a la URL de pago"
3661
 
3662
+ #: includes/admin/settings/class-settings-bootstrap.php:1157
3663
  msgctxt "admin settings"
3664
  msgid ""
3665
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
3668
  "No se pudo remover \"Business Directory Plugin - AJAX Compatibility Module"
3669
  "\". Por favor elimine el archivo \"%s\" manualmente o desactive el plugin."
3670
 
3671
+ #: includes/admin/settings/class-settings-bootstrap.php:1170
3672
  msgctxt "admin settings"
3673
  msgid ""
3674
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
3677
  "No se pudo activar el modo de compatibilidad AJAX: el directorio \"%s\" no "
3678
  "pudo ser creado."
3679
 
3680
+ #: includes/admin/settings/class-settings-bootstrap.php:1175
3681
  msgctxt "admin settings"
3682
  msgid ""
3683
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
3686
  "No se pudo copiar el plugin de compatibilidad AJAX \"%s\". El modo de "
3687
  "compatibilidad no fue activado."
3688
 
3689
+ #: includes/functions.php:1008
3690
  msgctxt "admin settings"
3691
  msgid "User"
3692
  msgstr "Usuario"
3693
 
3694
+ #: includes/functions.php:1009
3695
  msgctxt "admin settings"
3696
  msgid "User registration date"
3697
  msgstr "Fecha de registro del usuario"
3716
  msgid "Delete"
3717
  msgstr "Eliminar"
3718
 
3719
+ #: includes/admin/settings/class-settings-admin.php:422
3720
  msgctxt "expiration notices"
3721
  msgid "recurring and non-recurring"
3722
  msgstr "Recurrente y no recurrente"
3723
 
3724
+ #: includes/admin/settings/class-settings-admin.php:424
3725
  msgctxt "expiration notices"
3726
  msgid "recurring only"
3727
  msgstr "Solo recurrente"
3728
 
3729
+ #: includes/admin/settings/class-settings-admin.php:426
3730
  msgctxt "expiration notices"
3731
  msgid "non-recurring only"
3732
  msgstr "Solo no recurrente"
3733
 
3734
+ #: includes/admin/settings/class-settings-admin.php:430
3735
  msgctxt "expiration notices"
3736
  msgid "Sent when a listing (%s) is renewed."
3737
  msgstr "Enviada cuando un listado (%s) es renovado."
3738
 
3739
+ #: includes/admin/settings/class-settings-admin.php:435
3740
  msgctxt "expiration notices"
3741
  msgid "Sent when a listing (%s) expires."
3742
  msgstr "Enviado cuando un listado (%s) expira."
3743
 
3744
+ #: includes/admin/settings/class-settings-admin.php:443
3745
  msgctxt "expiration notices"
3746
  msgid "%d day"
3747
  msgid_plural "%d days"
3748
  msgstr[0] "%d día"
3749
  msgstr[1] "%d días"
3750
 
3751
+ #: includes/admin/settings/class-settings-admin.php:446
3752
  msgctxt "expiration notices"
3753
  msgid "%d week"
3754
  msgid_plural "%d weeks"
3755
  msgstr[0] "%d semana"
3756
  msgstr[1] "%d semanas"
3757
 
3758
+ #: includes/admin/settings/class-settings-admin.php:449
3759
  msgctxt "expiration notices"
3760
  msgid "%d month"
3761
  msgid_plural "%d months"
3764
 
3765
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3766
  #. non-recuring only)
3767
+ #: includes/admin/settings/class-settings-admin.php:455
3768
  msgctxt "expiration notices"
3769
  msgid "Sent %1$s before a listing (%2$s) expires."
3770
  msgstr "Enviar %1$s antes de que un listado (%2$s) expire."
3771
 
3772
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3773
  #. non-recuring only)
3774
+ #: includes/admin/settings/class-settings-admin.php:458
3775
  msgctxt "expiration notices"
3776
  msgid "Sent %1$s after a listing (%2$s) expires."
3777
  msgstr "Enviar %1$s después de que un listado (%2$s) expire."
3778
 
3779
+ #: includes/admin/settings/class-settings-admin.php:475
3780
  msgctxt "expiration notices"
3781
  msgid "At the time of expiration"
3782
  msgstr "Cuando el listado expire"
3783
 
3784
+ #: includes/admin/settings/class-settings-admin.php:476
3785
  msgctxt "expiration notices"
3786
  msgid "Right after a successful renewal"
3787
  msgstr "Justo después de renovar un listado"
3788
 
3789
+ #: includes/admin/settings/class-settings-admin.php:485
3790
  msgctxt "expiration notices"
3791
  msgid "%d day before expiration"
3792
  msgid_plural "%d days before expiration"
3793
  msgstr[0] "%d día antes de expirar"
3794
  msgstr[1] "%d días antes de expirar"
3795
 
3796
+ #: includes/admin/settings/class-settings-admin.php:485
3797
  msgctxt "expiration notices"
3798
  msgid "%d day after expiration"
3799
  msgid_plural "%d days after expiration"
3800
  msgstr[0] "%d día después de expirar"
3801
  msgstr[1] "%d días después de expirar"
3802
 
3803
+ #: includes/admin/settings/class-settings-admin.php:488
3804
  msgctxt "expiration notices"
3805
  msgid "%d week before expiration"
3806
  msgid_plural "%d weeks before expiration"
3807
  msgstr[0] "%d semana antes de expirar"
3808
  msgstr[1] "%d semanas antes de expirar"
3809
 
3810
+ #: includes/admin/settings/class-settings-admin.php:488
3811
  msgctxt "expiration notices"
3812
  msgid "%d week after expiration"
3813
  msgid_plural "%d weeks after expiration"
3814
  msgstr[0] "%d semana después de expirar"
3815
  msgstr[1] "%d semanas después de expirar"
3816
 
3817
+ #: includes/admin/settings/class-settings-admin.php:491
3818
  msgctxt "expiration notices"
3819
  msgid "%d month before expiration"
3820
  msgid_plural "%d months before expiration"
3821
  msgstr[0] "%d mes antes de expirar"
3822
  msgstr[1] "%d meses antes de expirar"
3823
 
3824
+ #: includes/admin/settings/class-settings-admin.php:491
3825
  msgctxt "expiration notices"
3826
  msgid "%d month after expiration"
3827
  msgid_plural "%d months after expiration"
3828
  msgstr[0] "%d mes después de expirar"
3829
  msgstr[1] "%d meses después de expirar"
3830
 
3831
+ #: includes/admin/settings/class-settings-admin.php:518
3832
  msgctxt "expiration notices"
3833
  msgid "Applies to"
3834
  msgstr "Aplica a"
3835
 
3836
+ #: includes/admin/settings/class-settings-admin.php:521
3837
  msgctxt "expiration notices"
3838
  msgid "Non-recurring listings"
3839
  msgstr "Listados no recurrentes"
3840
 
3841
+ #: includes/admin/settings/class-settings-admin.php:522
3842
  msgctxt "expiration notices"
3843
  msgid "Recurring listings"
3844
  msgstr "Listados recurrentes"
3845
 
3846
+ #: includes/admin/settings/class-settings-admin.php:523
3847
  msgctxt "expiration notices"
3848
  msgid "Recurring and non-recurring listings"
3849
  msgstr "Listados recurrentes y no recurrentes"
3850
 
3851
+ #: includes/admin/settings/class-settings-admin.php:528
3852
  msgctxt "expiration notices"
3853
  msgid "When to send?"
3854
  msgstr "¿Cuando desea enviar esta notificación?"
3858
  msgid "E-mail body text"
3859
  msgstr "Contenido del correo"
3860
 
3861
+ #: includes/admin/settings/class-settings-admin.php:398
3862
+ msgctxt "settings"
3863
+ msgid "Site title (with link)"
3864
+ msgstr "Título del sitio (con enlace)"
3865
+
3866
+ #: includes/admin/settings/class-settings-admin.php:399
3867
+ msgctxt "settings"
3868
+ msgid "Author's name"
3869
+ msgstr "Autor del listado"
3870
+
3871
+ #: includes/admin/settings/class-settings-admin.php:400
3872
+ msgctxt "settings"
3873
+ msgid "Listing's name (with link)"
3874
+ msgstr "Título del listado (con enlace)"
3875
+
3876
+ #: includes/admin/settings/class-settings-admin.php:401
3877
+ msgctxt "settings"
3878
+ msgid "Listing's expiration date"
3879
+ msgstr "Fecha de expiración del listado"
3880
+
3881
+ #: includes/admin/settings/class-settings-admin.php:402
3882
+ msgctxt "settings"
3883
+ msgid "Listing's renewal link"
3884
+ msgstr "Enlace de renovación del listado"
3885
+
3886
+ #: includes/admin/settings/class-settings-admin.php:403
3887
+ msgctxt "settings"
3888
+ msgid "Listing's categories"
3889
+ msgstr "Categorías del Listado"
3890
+
3891
+ #: includes/admin/settings/class-settings-admin.php:404
3892
+ msgctxt "settings"
3893
+ msgid "Listing's last payment date"
3894
+ msgstr "Fecha de pago del listado"
3895
+
3896
+ #: includes/admin/settings/class-settings-admin.php:405
3897
+ msgctxt "settings"
3898
+ msgid "Listing's access key"
3899
+ msgstr "Clave de acceso para su listado"
3900
+
3901
+ #: includes/admin/settings/class-settings-admin.php:560
3902
  msgctxt "settings"
3903
  msgid "Settings reset to default."
3904
  msgstr "Restablecer ajustes por defecto."
5304
  msgid "Add New Listing"
5305
  msgstr "Agregar Nuevo Listado"
5306
 
5307
+ #: includes/class-listing.php:318
5308
  msgctxt "listing"
5309
  msgid "Listing expired"
5310
  msgstr "El listado expiró"
5311
 
5312
+ #: includes/class-listing.php:470
5313
  msgctxt "listing"
5314
  msgid "(Unavailable Plan)"
5315
  msgstr "(Comisión no disponible)"
5316
 
5317
+ #: includes/class-listing.php:626
5318
  msgctxt "listing"
5319
  msgid "Plan \"%s\" (recurring)"
5320
  msgstr "Comisión “%s” (recurrente)"
5321
 
5322
+ #: includes/class-listing.php:628
5323
  msgctxt "listing"
5324
  msgid "Plan \"%s\""
5325
  msgstr "Comisión “%s”"
5378
  msgid "Free Listing"
5379
  msgstr "Listado Gratuito"
5380
 
5381
+ #: includes/class-listing-email-notification.php:151
5382
  msgctxt "notify email"
5383
  msgid "[%s] New listing notification"
5384
  msgstr "[%s] Notificación de nuevo listado"
5385
 
5386
+ #: includes/class-listing-email-notification.php:186
5387
  msgctxt "notify email"
5388
  msgid "[%s] Listing edit notification"
5389
  msgstr "[%s] Notificación de listado editado"
5390
 
5391
+ #: includes/class-listing-email-notification.php:240
5392
  msgctxt "notify email"
5393
  msgid "[%s] Reported listing notification"
5394
  msgstr "[%s] Notificación de listado reportado"
5428
  msgid "Admin URL"
5429
  msgstr "URL de administración"
5430
 
5431
+ #: templates/email/listing-added.tpl.php:21
 
 
5432
  msgctxt "notify email"
5433
+ msgid "Category"
5434
+ msgid_plural "Categories"
5435
+ msgstr[0] "Categoría"
5436
+ msgstr[1] "Categorías"
5437
 
5438
+ #: templates/email/listing-added.tpl.php:27
5439
  #: templates/email/listing-edited.tpl.php:20
5440
  #: templates/email/listing-reported.tpl.php:19
5441
  msgctxt "notify email"
5442
  msgid "Posted By"
5443
  msgstr "Publicado Por"
5444
 
5445
+ #: templates/email/listing-added.tpl.php:36
5446
+ msgctxt "notify email"
5447
+ msgid "Annonymous User"
5448
+ msgstr "Usuario Anónimo"
5449
+
5450
+ #: templates/email/listing-edited.tpl.php:17
5451
+ #: templates/email/listing-reported.tpl.php:17
5452
+ msgctxt "notify email"
5453
+ msgid "Categories"
5454
+ msgstr "Categorías"
5455
+
5456
  #: templates/email/listing-reported.tpl.php:21
5457
  msgctxt "notify email"
5458
  msgid "Report IP"
5682
  msgid "Account Creation"
5683
  msgstr "Creación de cuenta de usuario"
5684
 
5685
+ #: includes/views/submit_listing.php:365
5686
  msgctxt "submit listing"
5687
  msgid "Terms and Conditions"
5688
  msgstr "Términos y Condiciones"
5718
  msgid "Please choose a valid fee plan for your category selection."
5719
  msgstr "Por favor elija una comisión válida para la categoría seleccionada."
5720
 
5721
+ #: includes/views/submit_listing.php:725
5722
  msgctxt "submit listing"
5723
  msgid "Please enter your desired username."
5724
  msgstr "Por favor ingrese su nombre de usuario."
5725
 
5726
+ #: includes/views/submit_listing.php:730
5727
  msgctxt "submit listing"
5728
  msgid "Please enter the e-mail for your new account."
5729
  msgstr ""
5730
  "Por favor ingrese la dirección de correo electrónico para su nueva cuenta."
5731
 
5732
+ #: includes/views/submit_listing.php:735
5733
  msgctxt "submit listing"
5734
  msgid "Please enter the password for your new account."
5735
  msgstr "Por favor ingrese la contraseña para su nueva cuenta."
5736
 
5737
+ #: includes/views/submit_listing.php:745
5738
  msgctxt "submit listing"
5739
  msgid "The username you chose is already in use. Please use a different one."
5740
  msgstr ""
5741
  "El nombre de usuario que eligió ya está en uso. Por favor elija un nombre de "
5742
  "usuario diferente."
5743
 
5744
+ #: includes/views/submit_listing.php:750
5745
  msgctxt "submit listing"
5746
  msgid "The e-mail address you chose for your account is already in use."
5747
  msgstr ""
5748
  "La dirección de correo electrónico que eligió para su cuenta ya está siendo "
5749
  "utilizada."
5750
 
5751
+ #: includes/views/submit_listing.php:765
5752
  msgctxt "submit listing"
5753
  msgid "Create a user account on this site"
5754
  msgstr "Crear una cuenta de usuario en este sitio"
5755
 
5756
+ #: includes/views/submit_listing.php:772
5757
  msgctxt "submit listing"
5758
  msgid ""
5759
  "You need to create an account on the site. Please fill out the form below."
5761
  "Debe crear una cuenta de usuario en este sitio. Por favor ingrese los datos "
5762
  "requeridos en el formulario que está debajo."
5763
 
5764
+ #: includes/views/submit_listing.php:778
5765
  msgctxt "submit listing"
5766
  msgid "Username:"
5767
  msgstr "Nombre de usuario"
5768
 
5769
+ #: includes/views/submit_listing.php:787
5770
  msgctxt "submit listing"
5771
  msgid "Email:"
5772
  msgstr "Correo electrónico:"
5773
 
5774
+ #: includes/views/submit_listing.php:796
5775
  msgctxt "submit listing"
5776
  msgid "Password:"
5777
  msgstr "Contraseña:"
5811
  msgid "reCAPTCHA"
5812
  msgstr "reCAPTCHA"
5813
 
5814
+ #: includes/class-wpbdp.php:249
5815
  msgctxt "admin plugins"
5816
  msgid "Settings"
5817
  msgstr "Configuración"
5818
 
5819
+ #: includes/class-wpbdp.php:331
5820
  msgctxt "listing image upload"
5821
  msgid "Can not upload any more images for this listing."
5822
  msgstr "No puede subir más imágenes para este listado."
5823
 
5824
+ #: includes/class-wpbdp.php:335
5825
  msgctxt "listing image upload"
5826
  msgid ""
5827
  "You're trying to upload %d images, but only have %d slot available. Please "
6914
  msgid "View not available."
6915
  msgstr "Vista no disponible."
6916
 
6917
+ #: includes/views/submit_listing.php:834
6918
  msgctxt "templates"
6919
  msgid "Please agree to the Terms and Conditions."
6920
  msgstr "Por favor acepte los Términos y Condiciones."
6921
 
6922
+ #: includes/views/submit_listing.php:842
6923
  msgctxt "templates"
6924
  msgid "Terms and Conditions:"
6925
  msgstr "Términos y Condiciones:"
6926
 
6927
+ #: includes/views/submit_listing.php:851
6928
  msgctxt "templates"
6929
  msgid "I agree to the <a>Terms and Conditions</a>"
6930
  msgstr "Acepto los <a>Términos y Condiciones</a>"
6931
 
6932
  #: templates/businessdirectory-listings.tpl.php:27
6933
+ #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:8
6934
  #: templates/search.tpl.php:17
6935
  msgctxt "templates"
6936
  msgid "No listings found."
6937
  msgstr "No se encontraron listados."
6938
 
6939
  #: templates/businessdirectory-listings.tpl.php:38
6940
+ #: templates/listings.tpl.php:24
6941
  msgctxt "templates"
6942
  msgid "&laquo; Previous "
6943
  msgstr "&laquo; Anterior "
6944
 
6945
  #: templates/businessdirectory-listings.tpl.php:39
6946
+ #: templates/listings.tpl.php:25
6947
  msgctxt "templates"
6948
  msgid "Next &raquo;"
6949
  msgstr "Siguiente &raquo;"
7236
  msgid "(Reset)"
7237
  msgstr "(Reestablecer)"
7238
 
7239
+ #: includes/utils.php:179
7240
  msgctxt "utils"
7241
  msgid ""
7242
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
7244
  "Los datos enviados via POST superan el valor máximo configurado en PHP. "
7245
  "Revise la directiva \"post_max_size\" de su configuración."
7246
 
7247
+ #: includes/utils.php:226
7248
  msgctxt "utils"
7249
  msgid "File size (%s) exceeds maximum file size of %s"
7250
  msgstr "El tamaño de archivo (%s) excede el tamaño máximo permitido de %s"
7251
 
7252
+ #: includes/utils.php:234
7253
  msgctxt "utils"
7254
  msgid "File size (%s) is inferior to the required minimum file size of %s"
7255
  msgstr "El tamaño de archivo (%s) es inferior al tamaño mínimo requerido de %s"
7256
 
7257
+ #: includes/utils.php:243 includes/utils.php:250
7258
  msgctxt "utils"
7259
  msgid "File type \"%s\" is not allowed"
7260
  msgstr "El tipo de archivo \"%s\" no está permitido"
7261
 
7262
+ #: includes/utils.php:257
7263
  msgctxt "utils"
7264
  msgid "Unkown error while uploading file."
7265
  msgstr "Error desconocido mientras se subía el archivo."
7266
 
7267
+ #: includes/utils.php:276
7268
  msgctxt "utils"
7269
  msgid "Uploaded file is not an image"
7270
  msgstr "El archivo subido no es una imagen"
7271
 
7272
+ #: includes/utils.php:285
7273
  msgctxt "utils"
7274
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
7275
  msgstr ""
7276
  "El ancho de la imagen (%s px) es inferior al mínimo requerido de %s px."
7277
 
7278
+ #: includes/utils.php:291
7279
  msgctxt "utils"
7280
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
7281
  msgstr "El alto de la imagen (%s px) es inferior al mínimo requerido de %s px."
7282
 
7283
+ #: includes/utils.php:297
7284
  msgctxt "utils"
7285
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
7286
  msgstr ""
7287
  "El ancho de la imagen (%s px) es superior al máximo permitido de %s px."
7288
 
7289
+ #: includes/utils.php:303
7290
  msgctxt "utils"
7291
  msgid "Image height (%s px) is greater than maximum required height of %s px."
7292
  msgstr "El alto de la imagen (%s px) es superior al máximo permitido de %s px."
7293
 
7294
+ #: includes/utils.php:317
7295
  msgctxt "utils"
7296
  msgid "Error while uploading file"
7297
  msgstr "Ocurrió un error mientras se subía el archivo"
7605
  "Algo salió mal. Por favor verifique que el formulario no contiene errores y "
7606
  "envíelo de nuevo."
7607
 
7608
+ #: includes/views/submit_listing.php:677
7609
  msgctxt "listing submit"
7610
  msgid ""
7611
  "Image upload is required, please provide at least one image and submit again."
8035
  msgid "Access Key"
8036
  msgstr "Clave de acceso"
8037
 
8038
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
8039
  msgctxt "admin infometabox"
8040
  msgid "Renewal url (copy & paste)"
8041
  msgstr "URL de renovación (copiar y pegar)"
8042
 
8043
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
8044
  msgctxt "admin infometabox"
8045
  msgid "Get renewal URL"
8046
  msgstr "Obtener nueva URL"
8047
 
8048
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:107
8049
  msgctxt "admin infometabox"
8050
  msgid "Send renewal e-mail"
8051
  msgstr "Enviar correo electrónico de renovación"
8052
 
8053
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:112
8054
  msgctxt "admin infometabox"
8055
  msgid "Renew listing"
8056
  msgstr "Renovar listado"
9815
  #~ msgid "Listings"
9816
  #~ msgstr "Listados"
9817
 
 
 
 
 
9818
  #~ msgctxt "admin settings"
9819
  #~ msgid "Featured (Sticky) listing settings"
9820
  #~ msgstr "Configuración de Listados Destacados"
9880
  #~ msgid "Site title"
9881
  #~ msgstr "Título del sitio"
9882
 
 
 
 
 
9883
  #~ msgctxt "settings email"
9884
  #~ msgid "Site address (with link)"
9885
  #~ msgstr "Dirección del listado (con enlace)"
10360
  #~ "Enviado un tiempo antes de que el listado expire. Aplica para "
10361
  #~ "renovaciones no recurrentes únicamente."
10362
 
 
 
 
 
 
 
 
 
10363
  #~ msgctxt "settings"
10364
  #~ msgid "Category that is going to expire"
10365
  #~ msgstr "Categoría que va a expirar"
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-03-02 04:44:48+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"
@@ -184,7 +184,7 @@ msgid ""
184
  "payment processor directly."
185
  msgstr ""
186
 
187
- #: includes/class-wpbdp.php:422
188
  msgid ""
189
  "The directory features are disabled at this time because a <a>manual "
190
  "upgrade</a> is pending."
@@ -193,7 +193,7 @@ msgstr ""
193
  "désactivés car le plugin a besoin d'effectuer une mise à jour manuelle avant "
194
  "de poursuivre."
195
 
196
- #: includes/class-wpbdp.php:429
197
  msgid ""
198
  "The directory is not available at this time. Please try again in a few "
199
  "minutes or contact the administrator if the problem persists."
@@ -1136,47 +1136,47 @@ msgctxt "listing status"
1136
  msgid "Reported"
1137
  msgstr ""
1138
 
1139
- #: includes/class-listing.php:705
1140
  msgctxt "listing status"
1141
  msgid "Unknown"
1142
  msgstr "Inconnu"
1143
 
1144
- #: includes/class-listing.php:706
1145
  msgctxt "listing status"
1146
  msgid "Legacy"
1147
  msgstr "Don"
1148
 
1149
- #: includes/class-listing.php:707
1150
  msgctxt "listing status"
1151
  msgid "Incomplete"
1152
  msgstr "Incomplet"
1153
 
1154
- #: includes/class-listing.php:708
1155
  msgctxt "listing status"
1156
  msgid "Pending Payment"
1157
  msgstr "Paiement en attente"
1158
 
1159
- #: includes/class-listing.php:709
1160
  msgctxt "listing status"
1161
  msgid "Complete"
1162
  msgstr "Complet"
1163
 
1164
- #: includes/class-listing.php:710
1165
  msgctxt "listing status"
1166
  msgid "Pending Upgrade"
1167
  msgstr "En attente de mise à niveau"
1168
 
1169
- #: includes/class-listing.php:711
1170
  msgctxt "listing status"
1171
  msgid "Expired"
1172
  msgstr "Expiré"
1173
 
1174
- #: includes/class-listing.php:712
1175
  msgctxt "listing status"
1176
  msgid "Pending Renewal"
1177
  msgstr "Actives + En attente de renouvellement"
1178
 
1179
- #: includes/class-listing.php:713
1180
  msgctxt "listing status"
1181
  msgid "Abandoned"
1182
  msgstr "Abandonné"
@@ -1237,21 +1237,21 @@ msgid "Send access keys"
1237
  msgstr "Demander une clé d'accès ?"
1238
 
1239
  #: includes/admin/class-admin.php:157
1240
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:63
1241
  msgctxt "listing metabox"
1242
  msgid "Never"
1243
  msgstr "Jamais"
1244
 
1245
  #: includes/admin/class-admin.php:158
1246
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1247
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1248
  msgctxt "listing metabox"
1249
  msgid "Yes"
1250
  msgstr "Oui"
1251
 
1252
  #: includes/admin/class-admin.php:159
1253
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1254
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1255
  msgctxt "listing metabox"
1256
  msgid "No"
1257
  msgstr "Non"
@@ -1294,7 +1294,7 @@ msgid "Listing Status"
1294
  msgstr "Statut liste"
1295
 
1296
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1297
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:20
1298
  msgctxt "listing metabox"
1299
  msgid "N/A"
1300
  msgstr "N/A"
@@ -1304,62 +1304,62 @@ msgctxt "listing metabox"
1304
  msgid "Last renew date"
1305
  msgstr "Date de renouvellement"
1306
 
1307
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1308
  msgctxt "listing metabox"
1309
  msgid "Plan Details"
1310
  msgstr "Détails des plans"
1311
 
1312
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:25
1313
  msgctxt "listing metabox"
1314
  msgid "Fee Plan"
1315
  msgstr "Plan tarifaire"
1316
 
1317
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:34
1318
  msgctxt "listing metabox"
1319
  msgid "Change plan"
1320
  msgstr "Changer de plan tarifaire"
1321
 
1322
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:46
1323
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:66
1324
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1325
  msgctxt "listing metabox"
1326
  msgid "OK"
1327
  msgstr "OUI"
1328
 
1329
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:47
1330
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1331
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:81
1332
  msgctxt "listing metabox"
1333
  msgid "Cancel"
1334
  msgstr "Annuler"
1335
 
1336
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1337
  msgctxt "listing metabox"
1338
  msgid "Amount"
1339
  msgstr "Montant"
1340
 
1341
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:56
1342
  msgctxt "listing metabox"
1343
  msgid "Expires On"
1344
  msgstr "Expire le"
1345
 
1346
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:61
1347
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:76
1348
  msgctxt "listing metabox"
1349
  msgid "Edit"
1350
  msgstr "Editer"
1351
 
1352
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1353
  msgctxt "listing metabox"
1354
  msgid "# of images"
1355
  msgstr "# des images"
1356
 
1357
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1358
  msgctxt "listing metabox"
1359
  msgid "Is Featured?"
1360
  msgstr "A diffusé ?"
1361
 
1362
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1363
  msgctxt "listing metabox"
1364
  msgid "Is Recurring?"
1365
  msgstr "Est récurrent?"
@@ -3370,13 +3370,13 @@ msgid "Author"
3370
  msgstr "Auteur"
3371
 
3372
  #: includes/admin/settings/class-settings-bootstrap.php:516
3373
- #: includes/functions.php:995
3374
  msgctxt "admin settings"
3375
  msgid "Date posted"
3376
  msgstr "Date d'ajout"
3377
 
3378
  #: includes/admin/settings/class-settings-bootstrap.php:517
3379
- #: includes/functions.php:996
3380
  msgctxt "admin settings"
3381
  msgid "Date last modified"
3382
  msgstr "Date de dernière modification"
@@ -3688,7 +3688,7 @@ msgctxt "admin settings"
3688
  msgid "Checkout URL link"
3689
  msgstr "Vérificateur de lien URL"
3690
 
3691
- #: includes/admin/settings/class-settings-bootstrap.php:1156
3692
  msgctxt "admin settings"
3693
  msgid ""
3694
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
@@ -3697,7 +3697,7 @@ msgstr ""
3697
  "Impossible de supprimer le \"Module de comptabilité AJAX du plugin \". "
3698
  "Veuillez supprimer le fichier \"% s \" manuellement ou désactiver le plugin."
3699
 
3700
- #: includes/admin/settings/class-settings-bootstrap.php:1169
3701
  msgctxt "admin settings"
3702
  msgid ""
3703
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
@@ -3706,7 +3706,7 @@ msgstr ""
3706
  "Impossible d'activer le mode de compatibilité AJAX: le répertoire \"% s \" "
3707
  "ne peux pas être créé."
3708
 
3709
- #: includes/admin/settings/class-settings-bootstrap.php:1174
3710
  msgctxt "admin settings"
3711
  msgid ""
3712
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
@@ -3715,12 +3715,12 @@ msgstr ""
3715
  "Impossible de copier le plugin de compatibilité AJAX \"% s\". Le mode de "
3716
  "compatibilité n'a pas été activé."
3717
 
3718
- #: includes/functions.php:993
3719
  msgctxt "admin settings"
3720
  msgid "User"
3721
  msgstr "Utilisateur"
3722
 
3723
- #: includes/functions.php:994
3724
  msgctxt "admin settings"
3725
  msgid "User registration date"
3726
  msgstr "Date d'expiration de l'annonce"
@@ -3745,46 +3745,46 @@ msgctxt "expiration notices"
3745
  msgid "Delete"
3746
  msgstr "Effacer"
3747
 
3748
- #: includes/admin/settings/class-settings-admin.php:411
3749
  msgctxt "expiration notices"
3750
  msgid "recurring and non-recurring"
3751
  msgstr "permanent ou temporaire"
3752
 
3753
- #: includes/admin/settings/class-settings-admin.php:413
3754
  msgctxt "expiration notices"
3755
  msgid "recurring only"
3756
  msgstr "récurrente uniquement"
3757
 
3758
- #: includes/admin/settings/class-settings-admin.php:415
3759
  msgctxt "expiration notices"
3760
  msgid "non-recurring only"
3761
  msgstr "non récurrente seulement"
3762
 
3763
- #: includes/admin/settings/class-settings-admin.php:419
3764
  msgctxt "expiration notices"
3765
  msgid "Sent when a listing (%s) is renewed."
3766
  msgstr "Envoyé lorsque vous renouvelez une liste (% s)."
3767
 
3768
- #: includes/admin/settings/class-settings-admin.php:424
3769
  msgctxt "expiration notices"
3770
  msgid "Sent when a listing (%s) expires."
3771
  msgstr "Envoyé lorsqu'une annonce (% s) est expirée."
3772
 
3773
- #: includes/admin/settings/class-settings-admin.php:432
3774
  msgctxt "expiration notices"
3775
  msgid "%d day"
3776
  msgid_plural "%d days"
3777
  msgstr[0] "%d jour"
3778
  msgstr[1] "%d jours"
3779
 
3780
- #: includes/admin/settings/class-settings-admin.php:435
3781
  msgctxt "expiration notices"
3782
  msgid "%d week"
3783
  msgid_plural "%d weeks"
3784
  msgstr[0] "%d semaine"
3785
  msgstr[1] "%d semaines"
3786
 
3787
- #: includes/admin/settings/class-settings-admin.php:438
3788
  msgctxt "expiration notices"
3789
  msgid "%d month"
3790
  msgid_plural "%d months"
@@ -3793,91 +3793,91 @@ msgstr[1] "%d mois"
3793
 
3794
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3795
  #. non-recuring only)
3796
- #: includes/admin/settings/class-settings-admin.php:444
3797
  msgctxt "expiration notices"
3798
  msgid "Sent %1$s before a listing (%2$s) expires."
3799
  msgstr "Envoyé %1$s avant l'expiration d'une liste (%2$s)."
3800
 
3801
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3802
  #. non-recuring only)
3803
- #: includes/admin/settings/class-settings-admin.php:447
3804
  msgctxt "expiration notices"
3805
  msgid "Sent %1$s after a listing (%2$s) expires."
3806
  msgstr "Envoyé %1$s après une liste (%2$s) expire."
3807
 
3808
- #: includes/admin/settings/class-settings-admin.php:464
3809
  msgctxt "expiration notices"
3810
  msgid "At the time of expiration"
3811
  msgstr "Au moment de l'expiration"
3812
 
3813
- #: includes/admin/settings/class-settings-admin.php:465
3814
  msgctxt "expiration notices"
3815
  msgid "Right after a successful renewal"
3816
  msgstr "Renouvellement réussi"
3817
 
3818
- #: includes/admin/settings/class-settings-admin.php:474
3819
  msgctxt "expiration notices"
3820
  msgid "%d day before expiration"
3821
  msgid_plural "%d days before expiration"
3822
  msgstr[0] "%d jour avant expiration"
3823
  msgstr[1] "%d jours avant expiration"
3824
 
3825
- #: includes/admin/settings/class-settings-admin.php:474
3826
  msgctxt "expiration notices"
3827
  msgid "%d day after expiration"
3828
  msgid_plural "%d days after expiration"
3829
  msgstr[0] "%d jour après expiration"
3830
  msgstr[1] "%d jours après expiration"
3831
 
3832
- #: includes/admin/settings/class-settings-admin.php:477
3833
  msgctxt "expiration notices"
3834
  msgid "%d week before expiration"
3835
  msgid_plural "%d weeks before expiration"
3836
  msgstr[0] "%d semaine avant expiration"
3837
  msgstr[1] "%d semaines avant expiration"
3838
 
3839
- #: includes/admin/settings/class-settings-admin.php:477
3840
  msgctxt "expiration notices"
3841
  msgid "%d week after expiration"
3842
  msgid_plural "%d weeks after expiration"
3843
  msgstr[0] "%d semaine après expiration"
3844
  msgstr[1] "%d semaines après expiration"
3845
 
3846
- #: includes/admin/settings/class-settings-admin.php:480
3847
  msgctxt "expiration notices"
3848
  msgid "%d month before expiration"
3849
  msgid_plural "%d months before expiration"
3850
  msgstr[0] "%d mois avant expiration"
3851
  msgstr[1] "%d mois avant expiration"
3852
 
3853
- #: includes/admin/settings/class-settings-admin.php:480
3854
  msgctxt "expiration notices"
3855
  msgid "%d month after expiration"
3856
  msgid_plural "%d months after expiration"
3857
  msgstr[0] "%d mois après expiration"
3858
  msgstr[1] "%d mois après expiration"
3859
 
3860
- #: includes/admin/settings/class-settings-admin.php:500
3861
  msgctxt "expiration notices"
3862
  msgid "Applies to"
3863
  msgstr "Appliqué à"
3864
 
3865
- #: includes/admin/settings/class-settings-admin.php:503
3866
  msgctxt "expiration notices"
3867
  msgid "Non-recurring listings"
3868
  msgstr "Annonces temporaires"
3869
 
3870
- #: includes/admin/settings/class-settings-admin.php:504
3871
  msgctxt "expiration notices"
3872
  msgid "Recurring listings"
3873
  msgstr "Retourner à l'annonce"
3874
 
3875
- #: includes/admin/settings/class-settings-admin.php:505
3876
  msgctxt "expiration notices"
3877
  msgid "Recurring and non-recurring listings"
3878
  msgstr "Annonces permanentes et temporaires"
3879
 
3880
- #: includes/admin/settings/class-settings-admin.php:510
3881
  msgctxt "expiration notices"
3882
  msgid "When to send?"
3883
  msgstr "Quand envoyer ?"
@@ -3887,7 +3887,53 @@ msgctxt "expiration notices"
3887
  msgid "E-mail body text"
3888
  msgstr "Corps de l'e-mail"
3889
 
3890
- #: includes/admin/settings/class-settings-admin.php:542
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3891
  #, fuzzy
3892
  msgctxt "settings"
3893
  msgid "Settings reset to default."
@@ -5289,23 +5335,23 @@ msgctxt "listing"
5289
  msgid "Add New Listing"
5290
  msgstr "Ajouter une nouvelle annonce"
5291
 
5292
- #: includes/class-listing.php:294
5293
  msgctxt "listing"
5294
  msgid "Listing expired"
5295
  msgstr "Une annonce expire"
5296
 
5297
- #: includes/class-listing.php:446
5298
  msgctxt "listing"
5299
  msgid "(Unavailable Plan)"
5300
  msgstr "(Plan indisponible disponible)"
5301
 
5302
- #: includes/class-listing.php:602
5303
  #, fuzzy
5304
  msgctxt "listing"
5305
  msgid "Plan \"%s\" (recurring)"
5306
  msgstr "(récurrent)"
5307
 
5308
- #: includes/class-listing.php:604
5309
  msgctxt "listing"
5310
  msgid "Plan \"%s\""
5311
  msgstr "Statut \"%s\""
@@ -5359,17 +5405,17 @@ msgctxt "fees-api"
5359
  msgid "Free Listing"
5360
  msgstr "Annonce gratuite"
5361
 
5362
- #: includes/class-listing-email-notification.php:130
5363
  msgctxt "notify email"
5364
  msgid "[%s] New listing notification"
5365
  msgstr "[%s] Nouvelle notification d'annonce"
5366
 
5367
- #: includes/class-listing-email-notification.php:165
5368
  msgctxt "notify email"
5369
  msgid "[%s] Listing edit notification"
5370
  msgstr "[%s] Notification d'édition d'annonce"
5371
 
5372
- #: includes/class-listing-email-notification.php:219
5373
  #, fuzzy
5374
  msgctxt "notify email"
5375
  msgid "[%s] Reported listing notification"
@@ -5410,20 +5456,32 @@ msgctxt "notify email"
5410
  msgid "Admin URL"
5411
  msgstr "Connexion"
5412
 
5413
- #: templates/email/listing-added.tpl.php:17
5414
- #: templates/email/listing-edited.tpl.php:17
5415
- #: templates/email/listing-reported.tpl.php:17
5416
  msgctxt "notify email"
5417
- msgid "Categories"
5418
- msgstr "Catégories"
 
 
5419
 
5420
- #: templates/email/listing-added.tpl.php:20
5421
  #: templates/email/listing-edited.tpl.php:20
5422
  #: templates/email/listing-reported.tpl.php:19
5423
  msgctxt "notify email"
5424
  msgid "Posted By"
5425
  msgstr "Posté par"
5426
 
 
 
 
 
 
 
 
 
 
 
 
5427
  #: templates/email/listing-reported.tpl.php:21
5428
  msgctxt "notify email"
5429
  msgid "Report IP"
@@ -5659,7 +5717,7 @@ msgctxt "submit listing"
5659
  msgid "Account Creation"
5660
  msgstr "Création de compte"
5661
 
5662
- #: includes/views/submit_listing.php:363
5663
  msgctxt "submit listing"
5664
  msgid "Terms and Conditions"
5665
  msgstr "Conditions d'utilisation"
@@ -5698,40 +5756,40 @@ msgstr ""
5698
  "S'il vous plaît choisir un plan tarifaire valable pour votre sélection de "
5699
  "catégorie."
5700
 
5701
- #: includes/views/submit_listing.php:717
5702
  msgctxt "submit listing"
5703
  msgid "Please enter your desired username."
5704
  msgstr "S'il vous plaît entrer votre nom d'utilisateur souhaité."
5705
 
5706
- #: includes/views/submit_listing.php:722
5707
  msgctxt "submit listing"
5708
  msgid "Please enter the e-mail for your new account."
5709
  msgstr "S'il vous plaît entrer votre e-mail pour votre nouveau compte."
5710
 
5711
- #: includes/views/submit_listing.php:727
5712
  msgctxt "submit listing"
5713
  msgid "Please enter the password for your new account."
5714
  msgstr "Veuillez entrer le mot de passe de votre nouveau compte."
5715
 
5716
- #: includes/views/submit_listing.php:737
5717
  msgctxt "submit listing"
5718
  msgid "The username you chose is already in use. Please use a different one."
5719
  msgstr ""
5720
  "Le nom d'utilisateur que vous avez choisi est déjà utilisé. Veuillez en "
5721
  "utiliser un autre."
5722
 
5723
- #: includes/views/submit_listing.php:742
5724
  msgctxt "submit listing"
5725
  msgid "The e-mail address you chose for your account is already in use."
5726
  msgstr ""
5727
  "L'adresse e-mail que vous avez choisie pour votre compte est déjà utilisée."
5728
 
5729
- #: includes/views/submit_listing.php:757
5730
  msgctxt "submit listing"
5731
  msgid "Create a user account on this site"
5732
  msgstr "Créer un compte utilisateur sur ce site"
5733
 
5734
- #: includes/views/submit_listing.php:764
5735
  msgctxt "submit listing"
5736
  msgid ""
5737
  "You need to create an account on the site. Please fill out the form below."
@@ -5739,17 +5797,17 @@ msgstr ""
5739
  "Vous devez créer un compte sur le site. Veuillez remplir le formulaire ci-"
5740
  "dessous."
5741
 
5742
- #: includes/views/submit_listing.php:770
5743
  msgctxt "submit listing"
5744
  msgid "Username:"
5745
  msgstr "Nom d'utilisateur (login) :"
5746
 
5747
- #: includes/views/submit_listing.php:779
5748
  msgctxt "submit listing"
5749
  msgid "Email:"
5750
  msgstr "E-Mail:"
5751
 
5752
- #: includes/views/submit_listing.php:788
5753
  msgctxt "submit listing"
5754
  msgid "Password:"
5755
  msgstr "Mot de passe :"
@@ -5790,17 +5848,17 @@ msgctxt "recaptcha"
5790
  msgid "reCAPTCHA"
5791
  msgstr "reCAPTCHA"
5792
 
5793
- #: includes/class-wpbdp.php:241
5794
  msgctxt "admin plugins"
5795
  msgid "Settings"
5796
  msgstr "Paramètres"
5797
 
5798
- #: includes/class-wpbdp.php:323
5799
  msgctxt "listing image upload"
5800
  msgid "Can not upload any more images for this listing."
5801
  msgstr "Impossible de télécharger d'images pour cette annonce."
5802
 
5803
- #: includes/class-wpbdp.php:327
5804
  msgctxt "listing image upload"
5805
  msgid ""
5806
  "You're trying to upload %d images, but only have %d slot available. Please "
@@ -6905,36 +6963,36 @@ msgctxt "templates"
6905
  msgid "View not available."
6906
  msgstr "Emplacements d'image disponibles."
6907
 
6908
- #: includes/views/submit_listing.php:826
6909
  msgctxt "templates"
6910
  msgid "Please agree to the Terms and Conditions."
6911
  msgstr "Veuillez accepter les conditions d'utilisation."
6912
 
6913
- #: includes/views/submit_listing.php:834
6914
  msgctxt "templates"
6915
  msgid "Terms and Conditions:"
6916
  msgstr "Conditions d'utilisation:"
6917
 
6918
- #: includes/views/submit_listing.php:843
6919
  msgctxt "templates"
6920
  msgid "I agree to the <a>Terms and Conditions</a>"
6921
  msgstr "J'accepte <a> Conditions générales </a>"
6922
 
6923
  #: templates/businessdirectory-listings.tpl.php:27
6924
- #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:6
6925
  #: templates/search.tpl.php:17
6926
  msgctxt "templates"
6927
  msgid "No listings found."
6928
  msgstr "Aucune annonce trouvée."
6929
 
6930
  #: templates/businessdirectory-listings.tpl.php:38
6931
- #: templates/listings.tpl.php:17
6932
  msgctxt "templates"
6933
  msgid "&laquo; Previous "
6934
  msgstr "&laquo; Précedent "
6935
 
6936
  #: templates/businessdirectory-listings.tpl.php:39
6937
- #: templates/listings.tpl.php:18
6938
  msgctxt "templates"
6939
  msgid "Next &raquo;"
6940
  msgstr "Suivant &raquo;"
@@ -7232,7 +7290,7 @@ msgctxt "sort"
7232
  msgid "(Reset)"
7233
  msgstr "(Réinitialiser)"
7234
 
7235
- #: includes/utils.php:169
7236
  msgctxt "utils"
7237
  msgid ""
7238
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
@@ -7240,62 +7298,62 @@ msgstr ""
7240
  "Les données affichées dépassent les configurations maximale permisent par "
7241
  "PHP. Voir les directive \"post_max_size\"."
7242
 
7243
- #: includes/utils.php:216
7244
  msgctxt "utils"
7245
  msgid "File size (%s) exceeds maximum file size of %s"
7246
  msgstr "La taille du fichier (%s) excède la taille maximale permise de %s"
7247
 
7248
- #: includes/utils.php:224
7249
  msgctxt "utils"
7250
  msgid "File size (%s) is inferior to the required minimum file size of %s"
7251
  msgstr ""
7252
  "La taille du fichier (%s) est inférieur au minimum de taille de fichier "
7253
  "requise de %s"
7254
 
7255
- #: includes/utils.php:233 includes/utils.php:240
7256
  msgctxt "utils"
7257
  msgid "File type \"%s\" is not allowed"
7258
  msgstr "Le type de fichier \"%s\" n'est pas autorisé"
7259
 
7260
- #: includes/utils.php:247
7261
  msgctxt "utils"
7262
  msgid "Unkown error while uploading file."
7263
  msgstr "Une erreur inconnue est survenu lors de l'upload du fichier."
7264
 
7265
- #: includes/utils.php:266
7266
  msgctxt "utils"
7267
  msgid "Uploaded file is not an image"
7268
  msgstr "Le fichier transféré n'est pas une image"
7269
 
7270
- #: includes/utils.php:275
7271
  msgctxt "utils"
7272
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
7273
  msgstr ""
7274
  "La largeur de l'image (%s px) est inférieur à la largeur minimum requise de "
7275
  "%s px."
7276
 
7277
- #: includes/utils.php:281
7278
  msgctxt "utils"
7279
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
7280
  msgstr ""
7281
  "La hauteur de l'image (%s px) est inférieur à la hauteur minimum requise de "
7282
  "%s px."
7283
 
7284
- #: includes/utils.php:287
7285
  msgctxt "utils"
7286
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
7287
  msgstr ""
7288
  "La largeur de l'image (%s px) est supérieur à la largeur maximum requise de "
7289
  "%s px."
7290
 
7291
- #: includes/utils.php:293
7292
  msgctxt "utils"
7293
  msgid "Image height (%s px) is greater than maximum required height of %s px."
7294
  msgstr ""
7295
  "La hauteur de l'image (%s px) est supérieure à la hauteur maximum requise de "
7296
  "%s px."
7297
 
7298
- #: includes/utils.php:307
7299
  msgctxt "utils"
7300
  msgid "Error while uploading file"
7301
  msgstr "Erreur durant l'upload du fichier"
@@ -7617,7 +7675,7 @@ msgstr ""
7617
  "Quelque chose s'est mal passé. Veuillez vérifier le formulaire, corriger les "
7618
  "erreurs et soumettre à nouveau."
7619
 
7620
- #: includes/views/submit_listing.php:669
7621
  msgctxt "listing submit"
7622
  msgid ""
7623
  "Image upload is required, please provide at least one image and submit again."
@@ -8053,22 +8111,22 @@ msgctxt "admin infometabox"
8053
  msgid "Access Key"
8054
  msgstr "Clé d'accès"
8055
 
8056
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
8057
  msgctxt "admin infometabox"
8058
  msgid "Renewal url (copy & paste)"
8059
  msgstr "URL de renouvellement (copier-coller)"
8060
 
8061
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
8062
  msgctxt "admin infometabox"
8063
  msgid "Get renewal URL"
8064
  msgstr "Obtenir l'URL de renouvellement de l'annonce"
8065
 
8066
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:103
8067
  msgctxt "admin infometabox"
8068
  msgid "Send renewal e-mail"
8069
  msgstr "Envoyer un e-mail à l'utilisateur"
8070
 
8071
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:108
8072
  msgctxt "admin infometabox"
8073
  msgid "Renew listing"
8074
  msgstr "Renouveler l'annonce"
@@ -9775,10 +9833,6 @@ msgstr "Adresse"
9775
  #~ msgid "Listings"
9776
  #~ msgstr "Annonces"
9777
 
9778
- #~ msgctxt "admin settings"
9779
- #~ msgid "Listing Renewal"
9780
- #~ msgstr "Renouvellement des annonces"
9781
-
9782
  #~ msgctxt "admin settings"
9783
  #~ msgid "Featured (Sticky) listing settings"
9784
  #~ msgstr "Paramètres sélectionnés (Post-it) des annonces"
@@ -9846,10 +9900,6 @@ msgstr "Adresse"
9846
  #~ msgid "Site title"
9847
  #~ msgstr "Titre du site"
9848
 
9849
- #~ msgctxt "settings email"
9850
- #~ msgid "Site title (with link)"
9851
- #~ msgstr "Titre du site (avec lien)"
9852
-
9853
  #~ msgctxt "settings email"
9854
  #~ msgid "Site address (with link)"
9855
  #~ msgstr "Adresse du site (avec lien)"
@@ -10307,14 +10357,6 @@ msgstr "Adresse"
10307
  #~ "Envoyé quelque temps avant l'expiration de l'annonce. Valable seulement "
10308
  #~ "pour les renouvellements non-récurrents."
10309
 
10310
- #~ msgctxt "settings"
10311
- #~ msgid "Listing's name (with link)"
10312
- #~ msgstr "Nom de l'annonce (avec lien)"
10313
-
10314
- #~ msgctxt "settings"
10315
- #~ msgid "Author's name"
10316
- #~ msgstr "Nom de l'auteur"
10317
-
10318
  #~ msgctxt "settings"
10319
  #~ msgid "Category that is going to expire"
10320
  #~ msgstr "Catégorier qui va expirer"
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-04-03 15:53:32+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"
184
  "payment processor directly."
185
  msgstr ""
186
 
187
+ #: includes/class-wpbdp.php:430
188
  msgid ""
189
  "The directory features are disabled at this time because a <a>manual "
190
  "upgrade</a> is pending."
193
  "désactivés car le plugin a besoin d'effectuer une mise à jour manuelle avant "
194
  "de poursuivre."
195
 
196
+ #: includes/class-wpbdp.php:437
197
  msgid ""
198
  "The directory is not available at this time. Please try again in a few "
199
  "minutes or contact the administrator if the problem persists."
1136
  msgid "Reported"
1137
  msgstr ""
1138
 
1139
+ #: includes/class-listing.php:729
1140
  msgctxt "listing status"
1141
  msgid "Unknown"
1142
  msgstr "Inconnu"
1143
 
1144
+ #: includes/class-listing.php:730
1145
  msgctxt "listing status"
1146
  msgid "Legacy"
1147
  msgstr "Don"
1148
 
1149
+ #: includes/class-listing.php:731
1150
  msgctxt "listing status"
1151
  msgid "Incomplete"
1152
  msgstr "Incomplet"
1153
 
1154
+ #: includes/class-listing.php:732
1155
  msgctxt "listing status"
1156
  msgid "Pending Payment"
1157
  msgstr "Paiement en attente"
1158
 
1159
+ #: includes/class-listing.php:733
1160
  msgctxt "listing status"
1161
  msgid "Complete"
1162
  msgstr "Complet"
1163
 
1164
+ #: includes/class-listing.php:734
1165
  msgctxt "listing status"
1166
  msgid "Pending Upgrade"
1167
  msgstr "En attente de mise à niveau"
1168
 
1169
+ #: includes/class-listing.php:735
1170
  msgctxt "listing status"
1171
  msgid "Expired"
1172
  msgstr "Expiré"
1173
 
1174
+ #: includes/class-listing.php:736
1175
  msgctxt "listing status"
1176
  msgid "Pending Renewal"
1177
  msgstr "Actives + En attente de renouvellement"
1178
 
1179
+ #: includes/class-listing.php:737
1180
  msgctxt "listing status"
1181
  msgid "Abandoned"
1182
  msgstr "Abandonné"
1237
  msgstr "Demander une clé d'accès ?"
1238
 
1239
  #: includes/admin/class-admin.php:157
1240
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1241
  msgctxt "listing metabox"
1242
  msgid "Never"
1243
  msgstr "Jamais"
1244
 
1245
  #: includes/admin/class-admin.php:158
1246
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1247
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1248
  msgctxt "listing metabox"
1249
  msgid "Yes"
1250
  msgstr "Oui"
1251
 
1252
  #: includes/admin/class-admin.php:159
1253
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1254
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1255
  msgctxt "listing metabox"
1256
  msgid "No"
1257
  msgstr "Non"
1294
  msgstr "Statut liste"
1295
 
1296
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1297
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1298
  msgctxt "listing metabox"
1299
  msgid "N/A"
1300
  msgstr "N/A"
1304
  msgid "Last renew date"
1305
  msgstr "Date de renouvellement"
1306
 
1307
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:27
1308
  msgctxt "listing metabox"
1309
  msgid "Plan Details"
1310
  msgstr "Détails des plans"
1311
 
1312
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:29
1313
  msgctxt "listing metabox"
1314
  msgid "Fee Plan"
1315
  msgstr "Plan tarifaire"
1316
 
1317
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:38
1318
  msgctxt "listing metabox"
1319
  msgid "Change plan"
1320
  msgstr "Changer de plan tarifaire"
1321
 
1322
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1323
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:70
1324
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1325
  msgctxt "listing metabox"
1326
  msgid "OK"
1327
  msgstr "OUI"
1328
 
1329
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:51
1330
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1331
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:85
1332
  msgctxt "listing metabox"
1333
  msgid "Cancel"
1334
  msgstr "Annuler"
1335
 
1336
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:54
1337
  msgctxt "listing metabox"
1338
  msgid "Amount"
1339
  msgstr "Montant"
1340
 
1341
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:60
1342
  msgctxt "listing metabox"
1343
  msgid "Expires On"
1344
  msgstr "Expire le"
1345
 
1346
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:65
1347
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1348
  msgctxt "listing metabox"
1349
  msgid "Edit"
1350
  msgstr "Editer"
1351
 
1352
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:75
1353
  msgctxt "listing metabox"
1354
  msgid "# of images"
1355
  msgstr "# des images"
1356
 
1357
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:88
1358
  msgctxt "listing metabox"
1359
  msgid "Is Featured?"
1360
  msgstr "A diffusé ?"
1361
 
1362
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:95
1363
  msgctxt "listing metabox"
1364
  msgid "Is Recurring?"
1365
  msgstr "Est récurrent?"
3370
  msgstr "Auteur"
3371
 
3372
  #: includes/admin/settings/class-settings-bootstrap.php:516
3373
+ #: includes/functions.php:1010
3374
  msgctxt "admin settings"
3375
  msgid "Date posted"
3376
  msgstr "Date d'ajout"
3377
 
3378
  #: includes/admin/settings/class-settings-bootstrap.php:517
3379
+ #: includes/functions.php:1011
3380
  msgctxt "admin settings"
3381
  msgid "Date last modified"
3382
  msgstr "Date de dernière modification"
3688
  msgid "Checkout URL link"
3689
  msgstr "Vérificateur de lien URL"
3690
 
3691
+ #: includes/admin/settings/class-settings-bootstrap.php:1157
3692
  msgctxt "admin settings"
3693
  msgid ""
3694
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
3697
  "Impossible de supprimer le \"Module de comptabilité AJAX du plugin \". "
3698
  "Veuillez supprimer le fichier \"% s \" manuellement ou désactiver le plugin."
3699
 
3700
+ #: includes/admin/settings/class-settings-bootstrap.php:1170
3701
  msgctxt "admin settings"
3702
  msgid ""
3703
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
3706
  "Impossible d'activer le mode de compatibilité AJAX: le répertoire \"% s \" "
3707
  "ne peux pas être créé."
3708
 
3709
+ #: includes/admin/settings/class-settings-bootstrap.php:1175
3710
  msgctxt "admin settings"
3711
  msgid ""
3712
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
3715
  "Impossible de copier le plugin de compatibilité AJAX \"% s\". Le mode de "
3716
  "compatibilité n'a pas été activé."
3717
 
3718
+ #: includes/functions.php:1008
3719
  msgctxt "admin settings"
3720
  msgid "User"
3721
  msgstr "Utilisateur"
3722
 
3723
+ #: includes/functions.php:1009
3724
  msgctxt "admin settings"
3725
  msgid "User registration date"
3726
  msgstr "Date d'expiration de l'annonce"
3745
  msgid "Delete"
3746
  msgstr "Effacer"
3747
 
3748
+ #: includes/admin/settings/class-settings-admin.php:422
3749
  msgctxt "expiration notices"
3750
  msgid "recurring and non-recurring"
3751
  msgstr "permanent ou temporaire"
3752
 
3753
+ #: includes/admin/settings/class-settings-admin.php:424
3754
  msgctxt "expiration notices"
3755
  msgid "recurring only"
3756
  msgstr "récurrente uniquement"
3757
 
3758
+ #: includes/admin/settings/class-settings-admin.php:426
3759
  msgctxt "expiration notices"
3760
  msgid "non-recurring only"
3761
  msgstr "non récurrente seulement"
3762
 
3763
+ #: includes/admin/settings/class-settings-admin.php:430
3764
  msgctxt "expiration notices"
3765
  msgid "Sent when a listing (%s) is renewed."
3766
  msgstr "Envoyé lorsque vous renouvelez une liste (% s)."
3767
 
3768
+ #: includes/admin/settings/class-settings-admin.php:435
3769
  msgctxt "expiration notices"
3770
  msgid "Sent when a listing (%s) expires."
3771
  msgstr "Envoyé lorsqu'une annonce (% s) est expirée."
3772
 
3773
+ #: includes/admin/settings/class-settings-admin.php:443
3774
  msgctxt "expiration notices"
3775
  msgid "%d day"
3776
  msgid_plural "%d days"
3777
  msgstr[0] "%d jour"
3778
  msgstr[1] "%d jours"
3779
 
3780
+ #: includes/admin/settings/class-settings-admin.php:446
3781
  msgctxt "expiration notices"
3782
  msgid "%d week"
3783
  msgid_plural "%d weeks"
3784
  msgstr[0] "%d semaine"
3785
  msgstr[1] "%d semaines"
3786
 
3787
+ #: includes/admin/settings/class-settings-admin.php:449
3788
  msgctxt "expiration notices"
3789
  msgid "%d month"
3790
  msgid_plural "%d months"
3793
 
3794
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3795
  #. non-recuring only)
3796
+ #: includes/admin/settings/class-settings-admin.php:455
3797
  msgctxt "expiration notices"
3798
  msgid "Sent %1$s before a listing (%2$s) expires."
3799
  msgstr "Envoyé %1$s avant l'expiration d'une liste (%2$s)."
3800
 
3801
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3802
  #. non-recuring only)
3803
+ #: includes/admin/settings/class-settings-admin.php:458
3804
  msgctxt "expiration notices"
3805
  msgid "Sent %1$s after a listing (%2$s) expires."
3806
  msgstr "Envoyé %1$s après une liste (%2$s) expire."
3807
 
3808
+ #: includes/admin/settings/class-settings-admin.php:475
3809
  msgctxt "expiration notices"
3810
  msgid "At the time of expiration"
3811
  msgstr "Au moment de l'expiration"
3812
 
3813
+ #: includes/admin/settings/class-settings-admin.php:476
3814
  msgctxt "expiration notices"
3815
  msgid "Right after a successful renewal"
3816
  msgstr "Renouvellement réussi"
3817
 
3818
+ #: includes/admin/settings/class-settings-admin.php:485
3819
  msgctxt "expiration notices"
3820
  msgid "%d day before expiration"
3821
  msgid_plural "%d days before expiration"
3822
  msgstr[0] "%d jour avant expiration"
3823
  msgstr[1] "%d jours avant expiration"
3824
 
3825
+ #: includes/admin/settings/class-settings-admin.php:485
3826
  msgctxt "expiration notices"
3827
  msgid "%d day after expiration"
3828
  msgid_plural "%d days after expiration"
3829
  msgstr[0] "%d jour après expiration"
3830
  msgstr[1] "%d jours après expiration"
3831
 
3832
+ #: includes/admin/settings/class-settings-admin.php:488
3833
  msgctxt "expiration notices"
3834
  msgid "%d week before expiration"
3835
  msgid_plural "%d weeks before expiration"
3836
  msgstr[0] "%d semaine avant expiration"
3837
  msgstr[1] "%d semaines avant expiration"
3838
 
3839
+ #: includes/admin/settings/class-settings-admin.php:488
3840
  msgctxt "expiration notices"
3841
  msgid "%d week after expiration"
3842
  msgid_plural "%d weeks after expiration"
3843
  msgstr[0] "%d semaine après expiration"
3844
  msgstr[1] "%d semaines après expiration"
3845
 
3846
+ #: includes/admin/settings/class-settings-admin.php:491
3847
  msgctxt "expiration notices"
3848
  msgid "%d month before expiration"
3849
  msgid_plural "%d months before expiration"
3850
  msgstr[0] "%d mois avant expiration"
3851
  msgstr[1] "%d mois avant expiration"
3852
 
3853
+ #: includes/admin/settings/class-settings-admin.php:491
3854
  msgctxt "expiration notices"
3855
  msgid "%d month after expiration"
3856
  msgid_plural "%d months after expiration"
3857
  msgstr[0] "%d mois après expiration"
3858
  msgstr[1] "%d mois après expiration"
3859
 
3860
+ #: includes/admin/settings/class-settings-admin.php:518
3861
  msgctxt "expiration notices"
3862
  msgid "Applies to"
3863
  msgstr "Appliqué à"
3864
 
3865
+ #: includes/admin/settings/class-settings-admin.php:521
3866
  msgctxt "expiration notices"
3867
  msgid "Non-recurring listings"
3868
  msgstr "Annonces temporaires"
3869
 
3870
+ #: includes/admin/settings/class-settings-admin.php:522
3871
  msgctxt "expiration notices"
3872
  msgid "Recurring listings"
3873
  msgstr "Retourner à l'annonce"
3874
 
3875
+ #: includes/admin/settings/class-settings-admin.php:523
3876
  msgctxt "expiration notices"
3877
  msgid "Recurring and non-recurring listings"
3878
  msgstr "Annonces permanentes et temporaires"
3879
 
3880
+ #: includes/admin/settings/class-settings-admin.php:528
3881
  msgctxt "expiration notices"
3882
  msgid "When to send?"
3883
  msgstr "Quand envoyer ?"
3887
  msgid "E-mail body text"
3888
  msgstr "Corps de l'e-mail"
3889
 
3890
+ #: includes/admin/settings/class-settings-admin.php:398
3891
+ #, fuzzy
3892
+ msgctxt "settings"
3893
+ msgid "Site title (with link)"
3894
+ msgstr "Titre du site (avec lien)"
3895
+
3896
+ #: includes/admin/settings/class-settings-admin.php:399
3897
+ msgctxt "settings"
3898
+ msgid "Author's name"
3899
+ msgstr "Nom de l'auteur"
3900
+
3901
+ #: includes/admin/settings/class-settings-admin.php:400
3902
+ msgctxt "settings"
3903
+ msgid "Listing's name (with link)"
3904
+ msgstr "Nom de l'annonce (avec lien)"
3905
+
3906
+ #: includes/admin/settings/class-settings-admin.php:401
3907
+ #, fuzzy
3908
+ msgctxt "settings"
3909
+ msgid "Listing's expiration date"
3910
+ msgstr "Date d'expiration de l'annonce"
3911
+
3912
+ #: includes/admin/settings/class-settings-admin.php:402
3913
+ #, fuzzy
3914
+ msgctxt "settings"
3915
+ msgid "Listing's renewal link"
3916
+ msgstr "Renouvellement des annonces"
3917
+
3918
+ #: includes/admin/settings/class-settings-admin.php:403
3919
+ #, fuzzy
3920
+ msgctxt "settings"
3921
+ msgid "Listing's categories"
3922
+ msgstr "Titre de l'annonce"
3923
+
3924
+ #: includes/admin/settings/class-settings-admin.php:404
3925
+ #, fuzzy
3926
+ msgctxt "settings"
3927
+ msgid "Listing's last payment date"
3928
+ msgstr "Date d'expiration de l'annonce"
3929
+
3930
+ #: includes/admin/settings/class-settings-admin.php:405
3931
+ #, fuzzy
3932
+ msgctxt "settings"
3933
+ msgid "Listing's access key"
3934
+ msgstr "Liste des clés d'accès"
3935
+
3936
+ #: includes/admin/settings/class-settings-admin.php:560
3937
  #, fuzzy
3938
  msgctxt "settings"
3939
  msgid "Settings reset to default."
5335
  msgid "Add New Listing"
5336
  msgstr "Ajouter une nouvelle annonce"
5337
 
5338
+ #: includes/class-listing.php:318
5339
  msgctxt "listing"
5340
  msgid "Listing expired"
5341
  msgstr "Une annonce expire"
5342
 
5343
+ #: includes/class-listing.php:470
5344
  msgctxt "listing"
5345
  msgid "(Unavailable Plan)"
5346
  msgstr "(Plan indisponible disponible)"
5347
 
5348
+ #: includes/class-listing.php:626
5349
  #, fuzzy
5350
  msgctxt "listing"
5351
  msgid "Plan \"%s\" (recurring)"
5352
  msgstr "(récurrent)"
5353
 
5354
+ #: includes/class-listing.php:628
5355
  msgctxt "listing"
5356
  msgid "Plan \"%s\""
5357
  msgstr "Statut \"%s\""
5405
  msgid "Free Listing"
5406
  msgstr "Annonce gratuite"
5407
 
5408
+ #: includes/class-listing-email-notification.php:151
5409
  msgctxt "notify email"
5410
  msgid "[%s] New listing notification"
5411
  msgstr "[%s] Nouvelle notification d'annonce"
5412
 
5413
+ #: includes/class-listing-email-notification.php:186
5414
  msgctxt "notify email"
5415
  msgid "[%s] Listing edit notification"
5416
  msgstr "[%s] Notification d'édition d'annonce"
5417
 
5418
+ #: includes/class-listing-email-notification.php:240
5419
  #, fuzzy
5420
  msgctxt "notify email"
5421
  msgid "[%s] Reported listing notification"
5456
  msgid "Admin URL"
5457
  msgstr "Connexion"
5458
 
5459
+ #: templates/email/listing-added.tpl.php:21
5460
+ #, fuzzy
 
5461
  msgctxt "notify email"
5462
+ msgid "Category"
5463
+ msgid_plural "Categories"
5464
+ msgstr[0] "Catégorie"
5465
+ msgstr[1] "Catégorie"
5466
 
5467
+ #: templates/email/listing-added.tpl.php:27
5468
  #: templates/email/listing-edited.tpl.php:20
5469
  #: templates/email/listing-reported.tpl.php:19
5470
  msgctxt "notify email"
5471
  msgid "Posted By"
5472
  msgstr "Posté par"
5473
 
5474
+ #: templates/email/listing-added.tpl.php:36
5475
+ msgctxt "notify email"
5476
+ msgid "Annonymous User"
5477
+ msgstr ""
5478
+
5479
+ #: templates/email/listing-edited.tpl.php:17
5480
+ #: templates/email/listing-reported.tpl.php:17
5481
+ msgctxt "notify email"
5482
+ msgid "Categories"
5483
+ msgstr "Catégories"
5484
+
5485
  #: templates/email/listing-reported.tpl.php:21
5486
  msgctxt "notify email"
5487
  msgid "Report IP"
5717
  msgid "Account Creation"
5718
  msgstr "Création de compte"
5719
 
5720
+ #: includes/views/submit_listing.php:365
5721
  msgctxt "submit listing"
5722
  msgid "Terms and Conditions"
5723
  msgstr "Conditions d'utilisation"
5756
  "S'il vous plaît choisir un plan tarifaire valable pour votre sélection de "
5757
  "catégorie."
5758
 
5759
+ #: includes/views/submit_listing.php:725
5760
  msgctxt "submit listing"
5761
  msgid "Please enter your desired username."
5762
  msgstr "S'il vous plaît entrer votre nom d'utilisateur souhaité."
5763
 
5764
+ #: includes/views/submit_listing.php:730
5765
  msgctxt "submit listing"
5766
  msgid "Please enter the e-mail for your new account."
5767
  msgstr "S'il vous plaît entrer votre e-mail pour votre nouveau compte."
5768
 
5769
+ #: includes/views/submit_listing.php:735
5770
  msgctxt "submit listing"
5771
  msgid "Please enter the password for your new account."
5772
  msgstr "Veuillez entrer le mot de passe de votre nouveau compte."
5773
 
5774
+ #: includes/views/submit_listing.php:745
5775
  msgctxt "submit listing"
5776
  msgid "The username you chose is already in use. Please use a different one."
5777
  msgstr ""
5778
  "Le nom d'utilisateur que vous avez choisi est déjà utilisé. Veuillez en "
5779
  "utiliser un autre."
5780
 
5781
+ #: includes/views/submit_listing.php:750
5782
  msgctxt "submit listing"
5783
  msgid "The e-mail address you chose for your account is already in use."
5784
  msgstr ""
5785
  "L'adresse e-mail que vous avez choisie pour votre compte est déjà utilisée."
5786
 
5787
+ #: includes/views/submit_listing.php:765
5788
  msgctxt "submit listing"
5789
  msgid "Create a user account on this site"
5790
  msgstr "Créer un compte utilisateur sur ce site"
5791
 
5792
+ #: includes/views/submit_listing.php:772
5793
  msgctxt "submit listing"
5794
  msgid ""
5795
  "You need to create an account on the site. Please fill out the form below."
5797
  "Vous devez créer un compte sur le site. Veuillez remplir le formulaire ci-"
5798
  "dessous."
5799
 
5800
+ #: includes/views/submit_listing.php:778
5801
  msgctxt "submit listing"
5802
  msgid "Username:"
5803
  msgstr "Nom d'utilisateur (login) :"
5804
 
5805
+ #: includes/views/submit_listing.php:787
5806
  msgctxt "submit listing"
5807
  msgid "Email:"
5808
  msgstr "E-Mail:"
5809
 
5810
+ #: includes/views/submit_listing.php:796
5811
  msgctxt "submit listing"
5812
  msgid "Password:"
5813
  msgstr "Mot de passe :"
5848
  msgid "reCAPTCHA"
5849
  msgstr "reCAPTCHA"
5850
 
5851
+ #: includes/class-wpbdp.php:249
5852
  msgctxt "admin plugins"
5853
  msgid "Settings"
5854
  msgstr "Paramètres"
5855
 
5856
+ #: includes/class-wpbdp.php:331
5857
  msgctxt "listing image upload"
5858
  msgid "Can not upload any more images for this listing."
5859
  msgstr "Impossible de télécharger d'images pour cette annonce."
5860
 
5861
+ #: includes/class-wpbdp.php:335
5862
  msgctxt "listing image upload"
5863
  msgid ""
5864
  "You're trying to upload %d images, but only have %d slot available. Please "
6963
  msgid "View not available."
6964
  msgstr "Emplacements d'image disponibles."
6965
 
6966
+ #: includes/views/submit_listing.php:834
6967
  msgctxt "templates"
6968
  msgid "Please agree to the Terms and Conditions."
6969
  msgstr "Veuillez accepter les conditions d'utilisation."
6970
 
6971
+ #: includes/views/submit_listing.php:842
6972
  msgctxt "templates"
6973
  msgid "Terms and Conditions:"
6974
  msgstr "Conditions d'utilisation:"
6975
 
6976
+ #: includes/views/submit_listing.php:851
6977
  msgctxt "templates"
6978
  msgid "I agree to the <a>Terms and Conditions</a>"
6979
  msgstr "J'accepte <a> Conditions générales </a>"
6980
 
6981
  #: templates/businessdirectory-listings.tpl.php:27
6982
+ #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:8
6983
  #: templates/search.tpl.php:17
6984
  msgctxt "templates"
6985
  msgid "No listings found."
6986
  msgstr "Aucune annonce trouvée."
6987
 
6988
  #: templates/businessdirectory-listings.tpl.php:38
6989
+ #: templates/listings.tpl.php:24
6990
  msgctxt "templates"
6991
  msgid "&laquo; Previous "
6992
  msgstr "&laquo; Précedent "
6993
 
6994
  #: templates/businessdirectory-listings.tpl.php:39
6995
+ #: templates/listings.tpl.php:25
6996
  msgctxt "templates"
6997
  msgid "Next &raquo;"
6998
  msgstr "Suivant &raquo;"
7290
  msgid "(Reset)"
7291
  msgstr "(Réinitialiser)"
7292
 
7293
+ #: includes/utils.php:179
7294
  msgctxt "utils"
7295
  msgid ""
7296
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
7298
  "Les données affichées dépassent les configurations maximale permisent par "
7299
  "PHP. Voir les directive \"post_max_size\"."
7300
 
7301
+ #: includes/utils.php:226
7302
  msgctxt "utils"
7303
  msgid "File size (%s) exceeds maximum file size of %s"
7304
  msgstr "La taille du fichier (%s) excède la taille maximale permise de %s"
7305
 
7306
+ #: includes/utils.php:234
7307
  msgctxt "utils"
7308
  msgid "File size (%s) is inferior to the required minimum file size of %s"
7309
  msgstr ""
7310
  "La taille du fichier (%s) est inférieur au minimum de taille de fichier "
7311
  "requise de %s"
7312
 
7313
+ #: includes/utils.php:243 includes/utils.php:250
7314
  msgctxt "utils"
7315
  msgid "File type \"%s\" is not allowed"
7316
  msgstr "Le type de fichier \"%s\" n'est pas autorisé"
7317
 
7318
+ #: includes/utils.php:257
7319
  msgctxt "utils"
7320
  msgid "Unkown error while uploading file."
7321
  msgstr "Une erreur inconnue est survenu lors de l'upload du fichier."
7322
 
7323
+ #: includes/utils.php:276
7324
  msgctxt "utils"
7325
  msgid "Uploaded file is not an image"
7326
  msgstr "Le fichier transféré n'est pas une image"
7327
 
7328
+ #: includes/utils.php:285
7329
  msgctxt "utils"
7330
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
7331
  msgstr ""
7332
  "La largeur de l'image (%s px) est inférieur à la largeur minimum requise de "
7333
  "%s px."
7334
 
7335
+ #: includes/utils.php:291
7336
  msgctxt "utils"
7337
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
7338
  msgstr ""
7339
  "La hauteur de l'image (%s px) est inférieur à la hauteur minimum requise de "
7340
  "%s px."
7341
 
7342
+ #: includes/utils.php:297
7343
  msgctxt "utils"
7344
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
7345
  msgstr ""
7346
  "La largeur de l'image (%s px) est supérieur à la largeur maximum requise de "
7347
  "%s px."
7348
 
7349
+ #: includes/utils.php:303
7350
  msgctxt "utils"
7351
  msgid "Image height (%s px) is greater than maximum required height of %s px."
7352
  msgstr ""
7353
  "La hauteur de l'image (%s px) est supérieure à la hauteur maximum requise de "
7354
  "%s px."
7355
 
7356
+ #: includes/utils.php:317
7357
  msgctxt "utils"
7358
  msgid "Error while uploading file"
7359
  msgstr "Erreur durant l'upload du fichier"
7675
  "Quelque chose s'est mal passé. Veuillez vérifier le formulaire, corriger les "
7676
  "erreurs et soumettre à nouveau."
7677
 
7678
+ #: includes/views/submit_listing.php:677
7679
  msgctxt "listing submit"
7680
  msgid ""
7681
  "Image upload is required, please provide at least one image and submit again."
8111
  msgid "Access Key"
8112
  msgstr "Clé d'accès"
8113
 
8114
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
8115
  msgctxt "admin infometabox"
8116
  msgid "Renewal url (copy & paste)"
8117
  msgstr "URL de renouvellement (copier-coller)"
8118
 
8119
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
8120
  msgctxt "admin infometabox"
8121
  msgid "Get renewal URL"
8122
  msgstr "Obtenir l'URL de renouvellement de l'annonce"
8123
 
8124
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:107
8125
  msgctxt "admin infometabox"
8126
  msgid "Send renewal e-mail"
8127
  msgstr "Envoyer un e-mail à l'utilisateur"
8128
 
8129
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:112
8130
  msgctxt "admin infometabox"
8131
  msgid "Renew listing"
8132
  msgstr "Renouveler l'annonce"
9833
  #~ msgid "Listings"
9834
  #~ msgstr "Annonces"
9835
 
 
 
 
 
9836
  #~ msgctxt "admin settings"
9837
  #~ msgid "Featured (Sticky) listing settings"
9838
  #~ msgstr "Paramètres sélectionnés (Post-it) des annonces"
9900
  #~ msgid "Site title"
9901
  #~ msgstr "Titre du site"
9902
 
 
 
 
 
9903
  #~ msgctxt "settings email"
9904
  #~ msgid "Site address (with link)"
9905
  #~ msgstr "Adresse du site (avec lien)"
10357
  #~ "Envoyé quelque temps avant l'expiration de l'annonce. Valable seulement "
10358
  #~ "pour les renouvellements non-récurrents."
10359
 
 
 
 
 
 
 
 
 
10360
  #~ msgctxt "settings"
10361
  #~ msgid "Category that is going to expire"
10362
  #~ msgstr "Catégorier qui va expirer"
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-03-02 04:44:48+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"
@@ -168,13 +168,13 @@ msgid ""
168
  "payment processor directly."
169
  msgstr ""
170
 
171
- #: includes/class-wpbdp.php:422
172
  msgid ""
173
  "The directory features are disabled at this time because a <a>manual "
174
  "upgrade</a> is pending."
175
  msgstr ""
176
 
177
- #: includes/class-wpbdp.php:429
178
  msgid ""
179
  "The directory is not available at this time. Please try again in a few "
180
  "minutes or contact the administrator if the problem persists."
@@ -1063,53 +1063,53 @@ msgctxt "listing status"
1063
  msgid "Reported"
1064
  msgstr ""
1065
 
1066
- #: includes/class-listing.php:705
1067
  msgctxt "listing status"
1068
  msgid "Unknown"
1069
  msgstr ""
1070
 
1071
- #: includes/class-listing.php:706
1072
  msgctxt "listing status"
1073
  msgid "Legacy"
1074
  msgstr ""
1075
 
1076
- #: includes/class-listing.php:707
1077
  #, fuzzy
1078
  msgctxt "listing status"
1079
  msgid "Incomplete"
1080
  msgstr "Afgerond"
1081
 
1082
- #: includes/class-listing.php:708
1083
  #, fuzzy
1084
  msgctxt "listing status"
1085
  msgid "Pending Payment"
1086
  msgstr "Wachtend op upgrade"
1087
 
1088
- #: includes/class-listing.php:709
1089
  #, fuzzy
1090
  msgctxt "listing status"
1091
  msgid "Complete"
1092
  msgstr "Afgerond"
1093
 
1094
- #: includes/class-listing.php:710
1095
  #, fuzzy
1096
  msgctxt "listing status"
1097
  msgid "Pending Upgrade"
1098
  msgstr "Wachtend op upgrade"
1099
 
1100
- #: includes/class-listing.php:711
1101
  #, fuzzy
1102
  msgctxt "listing status"
1103
  msgid "Expired"
1104
  msgstr "Verlopen"
1105
 
1106
- #: includes/class-listing.php:712
1107
  #, fuzzy
1108
  msgctxt "listing status"
1109
  msgid "Pending Renewal"
1110
  msgstr "Registratie vernieuwing"
1111
 
1112
- #: includes/class-listing.php:713
1113
  msgctxt "listing status"
1114
  msgid "Abandoned"
1115
  msgstr ""
@@ -1171,23 +1171,23 @@ msgid "Send access keys"
1171
  msgstr ""
1172
 
1173
  #: includes/admin/class-admin.php:157
1174
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:63
1175
  #, fuzzy
1176
  msgctxt "listing metabox"
1177
  msgid "Never"
1178
  msgstr "nooit"
1179
 
1180
  #: includes/admin/class-admin.php:158
1181
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1182
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1183
  #, fuzzy
1184
  msgctxt "listing metabox"
1185
  msgid "Yes"
1186
  msgstr "Ja"
1187
 
1188
  #: includes/admin/class-admin.php:159
1189
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1190
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1191
  #, fuzzy
1192
  msgctxt "listing metabox"
1193
  msgid "No"
@@ -1234,7 +1234,7 @@ msgid "Listing Status"
1234
  msgstr "Registraties"
1235
 
1236
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1237
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:20
1238
  msgctxt "listing metabox"
1239
  msgid "N/A"
1240
  msgstr ""
@@ -1244,69 +1244,69 @@ msgctxt "listing metabox"
1244
  msgid "Last renew date"
1245
  msgstr ""
1246
 
1247
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1248
  #, fuzzy
1249
  msgctxt "listing metabox"
1250
  msgid "Plan Details"
1251
  msgstr "Details kosten"
1252
 
1253
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:25
1254
  msgctxt "listing metabox"
1255
  msgid "Fee Plan"
1256
  msgstr ""
1257
 
1258
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:34
1259
  msgctxt "listing metabox"
1260
  msgid "Change plan"
1261
  msgstr ""
1262
 
1263
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:46
1264
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:66
1265
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1266
  #, fuzzy
1267
  msgctxt "listing metabox"
1268
  msgid "OK"
1269
  msgstr "OK"
1270
 
1271
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:47
1272
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1273
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:81
1274
  #, fuzzy
1275
  msgctxt "listing metabox"
1276
  msgid "Cancel"
1277
  msgstr "Gecancelled"
1278
 
1279
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1280
  #, fuzzy
1281
  msgctxt "listing metabox"
1282
  msgid "Amount"
1283
  msgstr "Bedrag"
1284
 
1285
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:56
1286
  #, fuzzy
1287
  msgctxt "listing metabox"
1288
  msgid "Expires On"
1289
  msgstr "Verlopen"
1290
 
1291
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:61
1292
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:76
1293
  #, fuzzy
1294
  msgctxt "listing metabox"
1295
  msgid "Edit"
1296
  msgstr "Bewerk"
1297
 
1298
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1299
  #, fuzzy
1300
  msgctxt "listing metabox"
1301
  msgid "# of images"
1302
  msgstr "Beelden toestaan?"
1303
 
1304
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1305
  msgctxt "listing metabox"
1306
  msgid "Is Featured?"
1307
  msgstr ""
1308
 
1309
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1310
  msgctxt "listing metabox"
1311
  msgid "Is Recurring?"
1312
  msgstr ""
@@ -3247,13 +3247,13 @@ msgid "Author"
3247
  msgstr "Auteur"
3248
 
3249
  #: includes/admin/settings/class-settings-bootstrap.php:516
3250
- #: includes/functions.php:995
3251
  msgctxt "admin settings"
3252
  msgid "Date posted"
3253
  msgstr "Datum ingediend"
3254
 
3255
  #: includes/admin/settings/class-settings-bootstrap.php:517
3256
- #: includes/functions.php:996
3257
  msgctxt "admin settings"
3258
  msgid "Date last modified"
3259
  msgstr ""
@@ -3555,33 +3555,33 @@ msgctxt "admin settings"
3555
  msgid "Checkout URL link"
3556
  msgstr ""
3557
 
3558
- #: includes/admin/settings/class-settings-bootstrap.php:1156
3559
  msgctxt "admin settings"
3560
  msgid ""
3561
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
3562
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
3563
  msgstr ""
3564
 
3565
- #: includes/admin/settings/class-settings-bootstrap.php:1169
3566
  msgctxt "admin settings"
3567
  msgid ""
3568
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
3569
  "be created."
3570
  msgstr ""
3571
 
3572
- #: includes/admin/settings/class-settings-bootstrap.php:1174
3573
  msgctxt "admin settings"
3574
  msgid ""
3575
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
3576
  "not activated."
3577
  msgstr ""
3578
 
3579
- #: includes/functions.php:993
3580
  msgctxt "admin settings"
3581
  msgid "User"
3582
  msgstr "Gebruiker"
3583
 
3584
- #: includes/functions.php:994
3585
  msgctxt "admin settings"
3586
  msgid "User registration date"
3587
  msgstr "Gebruikers registratie datum"
@@ -3608,34 +3608,34 @@ msgctxt "expiration notices"
3608
  msgid "Delete"
3609
  msgstr "Verwijder"
3610
 
3611
- #: includes/admin/settings/class-settings-admin.php:411
3612
  msgctxt "expiration notices"
3613
  msgid "recurring and non-recurring"
3614
  msgstr ""
3615
 
3616
- #: includes/admin/settings/class-settings-admin.php:413
3617
  msgctxt "expiration notices"
3618
  msgid "recurring only"
3619
  msgstr ""
3620
 
3621
- #: includes/admin/settings/class-settings-admin.php:415
3622
  msgctxt "expiration notices"
3623
  msgid "non-recurring only"
3624
  msgstr ""
3625
 
3626
- #: includes/admin/settings/class-settings-admin.php:419
3627
  #, fuzzy
3628
  msgctxt "expiration notices"
3629
  msgid "Sent when a listing (%s) is renewed."
3630
  msgstr "Verzonden nadat een registratie is ingediend."
3631
 
3632
- #: includes/admin/settings/class-settings-admin.php:424
3633
  #, fuzzy
3634
  msgctxt "expiration notices"
3635
  msgid "Sent when a listing (%s) expires."
3636
  msgstr "Een registratie verloopt."
3637
 
3638
- #: includes/admin/settings/class-settings-admin.php:432
3639
  #, fuzzy
3640
  msgctxt "expiration notices"
3641
  msgid "%d day"
@@ -3643,14 +3643,14 @@ msgid_plural "%d days"
3643
  msgstr[0] "%d dag"
3644
  msgstr[1] "%d dagen"
3645
 
3646
- #: includes/admin/settings/class-settings-admin.php:435
3647
  msgctxt "expiration notices"
3648
  msgid "%d week"
3649
  msgid_plural "%d weeks"
3650
  msgstr[0] ""
3651
  msgstr[1] ""
3652
 
3653
- #: includes/admin/settings/class-settings-admin.php:438
3654
  msgctxt "expiration notices"
3655
  msgid "%d month"
3656
  msgid_plural "%d months"
@@ -3659,93 +3659,93 @@ msgstr[1] ""
3659
 
3660
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3661
  #. non-recuring only)
3662
- #: includes/admin/settings/class-settings-admin.php:444
3663
  msgctxt "expiration notices"
3664
  msgid "Sent %1$s before a listing (%2$s) expires."
3665
  msgstr ""
3666
 
3667
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3668
  #. non-recuring only)
3669
- #: includes/admin/settings/class-settings-admin.php:447
3670
  #, fuzzy
3671
  msgctxt "expiration notices"
3672
  msgid "Sent %1$s after a listing (%2$s) expires."
3673
  msgstr "Verzonden nadat een registratie is ingediend."
3674
 
3675
- #: includes/admin/settings/class-settings-admin.php:464
3676
  msgctxt "expiration notices"
3677
  msgid "At the time of expiration"
3678
  msgstr ""
3679
 
3680
- #: includes/admin/settings/class-settings-admin.php:465
3681
  msgctxt "expiration notices"
3682
  msgid "Right after a successful renewal"
3683
  msgstr ""
3684
 
3685
- #: includes/admin/settings/class-settings-admin.php:474
3686
  msgctxt "expiration notices"
3687
  msgid "%d day before expiration"
3688
  msgid_plural "%d days before expiration"
3689
  msgstr[0] ""
3690
  msgstr[1] ""
3691
 
3692
- #: includes/admin/settings/class-settings-admin.php:474
3693
  msgctxt "expiration notices"
3694
  msgid "%d day after expiration"
3695
  msgid_plural "%d days after expiration"
3696
  msgstr[0] ""
3697
  msgstr[1] ""
3698
 
3699
- #: includes/admin/settings/class-settings-admin.php:477
3700
  msgctxt "expiration notices"
3701
  msgid "%d week before expiration"
3702
  msgid_plural "%d weeks before expiration"
3703
  msgstr[0] ""
3704
  msgstr[1] ""
3705
 
3706
- #: includes/admin/settings/class-settings-admin.php:477
3707
  msgctxt "expiration notices"
3708
  msgid "%d week after expiration"
3709
  msgid_plural "%d weeks after expiration"
3710
  msgstr[0] ""
3711
  msgstr[1] ""
3712
 
3713
- #: includes/admin/settings/class-settings-admin.php:480
3714
  msgctxt "expiration notices"
3715
  msgid "%d month before expiration"
3716
  msgid_plural "%d months before expiration"
3717
  msgstr[0] ""
3718
  msgstr[1] ""
3719
 
3720
- #: includes/admin/settings/class-settings-admin.php:480
3721
  msgctxt "expiration notices"
3722
  msgid "%d month after expiration"
3723
  msgid_plural "%d months after expiration"
3724
  msgstr[0] ""
3725
  msgstr[1] ""
3726
 
3727
- #: includes/admin/settings/class-settings-admin.php:500
3728
  msgctxt "expiration notices"
3729
  msgid "Applies to"
3730
  msgstr ""
3731
 
3732
- #: includes/admin/settings/class-settings-admin.php:503
3733
  msgctxt "expiration notices"
3734
  msgid "Non-recurring listings"
3735
  msgstr ""
3736
 
3737
- #: includes/admin/settings/class-settings-admin.php:504
3738
  #, fuzzy
3739
  msgctxt "expiration notices"
3740
  msgid "Recurring listings"
3741
  msgstr "Terug naar registratie."
3742
 
3743
- #: includes/admin/settings/class-settings-admin.php:505
3744
  msgctxt "expiration notices"
3745
  msgid "Recurring and non-recurring listings"
3746
  msgstr ""
3747
 
3748
- #: includes/admin/settings/class-settings-admin.php:510
3749
  msgctxt "expiration notices"
3750
  msgid "When to send?"
3751
  msgstr ""
@@ -3756,7 +3756,53 @@ msgctxt "expiration notices"
3756
  msgid "E-mail body text"
3757
  msgstr "E-mail bodytekst"
3758
 
3759
- #: includes/admin/settings/class-settings-admin.php:542
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3760
  msgctxt "settings"
3761
  msgid "Settings reset to default."
3762
  msgstr ""
@@ -5210,23 +5256,23 @@ msgctxt "listing"
5210
  msgid "Add New Listing"
5211
  msgstr "Nieuwe registratie toevoegen"
5212
 
5213
- #: includes/class-listing.php:294
5214
  #, fuzzy
5215
  msgctxt "listing"
5216
  msgid "Listing expired"
5217
  msgstr "Een registratie verloopt."
5218
 
5219
- #: includes/class-listing.php:446
5220
  msgctxt "listing"
5221
  msgid "(Unavailable Plan)"
5222
  msgstr ""
5223
 
5224
- #: includes/class-listing.php:602
5225
  msgctxt "listing"
5226
  msgid "Plan \"%s\" (recurring)"
5227
  msgstr ""
5228
 
5229
- #: includes/class-listing.php:604
5230
  msgctxt "listing"
5231
  msgid "Plan \"%s\""
5232
  msgstr ""
@@ -5281,17 +5327,17 @@ msgctxt "fees-api"
5281
  msgid "Free Listing"
5282
  msgstr "Gratis registratie"
5283
 
5284
- #: includes/class-listing-email-notification.php:130
5285
  msgctxt "notify email"
5286
  msgid "[%s] New listing notification"
5287
  msgstr "[%s] Notificatie nieuwe registratie"
5288
 
5289
- #: includes/class-listing-email-notification.php:165
5290
  msgctxt "notify email"
5291
  msgid "[%s] Listing edit notification"
5292
  msgstr "[%s] Registratie/vermelding aangepast notificatie"
5293
 
5294
- #: includes/class-listing-email-notification.php:219
5295
  #, fuzzy
5296
  msgctxt "notify email"
5297
  msgid "[%s] Reported listing notification"
@@ -5332,20 +5378,32 @@ msgctxt "notify email"
5332
  msgid "Admin URL"
5333
  msgstr ""
5334
 
5335
- #: templates/email/listing-added.tpl.php:17
5336
- #: templates/email/listing-edited.tpl.php:17
5337
- #: templates/email/listing-reported.tpl.php:17
5338
  msgctxt "notify email"
5339
- msgid "Categories"
5340
- msgstr "Categorieën "
 
 
5341
 
5342
- #: templates/email/listing-added.tpl.php:20
5343
  #: templates/email/listing-edited.tpl.php:20
5344
  #: templates/email/listing-reported.tpl.php:19
5345
  msgctxt "notify email"
5346
  msgid "Posted By"
5347
  msgstr "Ingediend door"
5348
 
 
 
 
 
 
 
 
 
 
 
 
5349
  #: templates/email/listing-reported.tpl.php:21
5350
  msgctxt "notify email"
5351
  msgid "Report IP"
@@ -5580,7 +5638,7 @@ msgctxt "submit listing"
5580
  msgid "Account Creation"
5581
  msgstr ""
5582
 
5583
- #: includes/views/submit_listing.php:363
5584
  #, fuzzy
5585
  msgctxt "submit listing"
5586
  msgid "Terms and Conditions"
@@ -5616,55 +5674,55 @@ msgctxt "submit listing"
5616
  msgid "Please choose a valid fee plan for your category selection."
5617
  msgstr ""
5618
 
5619
- #: includes/views/submit_listing.php:717
5620
  msgctxt "submit listing"
5621
  msgid "Please enter your desired username."
5622
  msgstr ""
5623
 
5624
- #: includes/views/submit_listing.php:722
5625
  msgctxt "submit listing"
5626
  msgid "Please enter the e-mail for your new account."
5627
  msgstr ""
5628
 
5629
- #: includes/views/submit_listing.php:727
5630
  msgctxt "submit listing"
5631
  msgid "Please enter the password for your new account."
5632
  msgstr ""
5633
 
5634
- #: includes/views/submit_listing.php:737
5635
  msgctxt "submit listing"
5636
  msgid "The username you chose is already in use. Please use a different one."
5637
  msgstr ""
5638
 
5639
- #: includes/views/submit_listing.php:742
5640
  msgctxt "submit listing"
5641
  msgid "The e-mail address you chose for your account is already in use."
5642
  msgstr ""
5643
 
5644
- #: includes/views/submit_listing.php:757
5645
  msgctxt "submit listing"
5646
  msgid "Create a user account on this site"
5647
  msgstr ""
5648
 
5649
- #: includes/views/submit_listing.php:764
5650
  msgctxt "submit listing"
5651
  msgid ""
5652
  "You need to create an account on the site. Please fill out the form below."
5653
  msgstr ""
5654
 
5655
- #: includes/views/submit_listing.php:770
5656
  #, fuzzy
5657
  msgctxt "submit listing"
5658
  msgid "Username:"
5659
  msgstr "Gebruiker"
5660
 
5661
- #: includes/views/submit_listing.php:779
5662
  #, fuzzy
5663
  msgctxt "submit listing"
5664
  msgid "Email:"
5665
  msgstr "Jouw email"
5666
 
5667
- #: includes/views/submit_listing.php:788
5668
  msgctxt "submit listing"
5669
  msgid "Password:"
5670
  msgstr ""
@@ -5709,17 +5767,17 @@ msgctxt "recaptcha"
5709
  msgid "reCAPTCHA"
5710
  msgstr "reCAPTCHA Instellingen"
5711
 
5712
- #: includes/class-wpbdp.php:241
5713
  msgctxt "admin plugins"
5714
  msgid "Settings"
5715
  msgstr "Instellingen"
5716
 
5717
- #: includes/class-wpbdp.php:323
5718
  msgctxt "listing image upload"
5719
  msgid "Can not upload any more images for this listing."
5720
  msgstr ""
5721
 
5722
- #: includes/class-wpbdp.php:327
5723
  msgctxt "listing image upload"
5724
  msgid ""
5725
  "You're trying to upload %d images, but only have %d slot available. Please "
@@ -6747,37 +6805,37 @@ msgctxt "templates"
6747
  msgid "View not available."
6748
  msgstr ""
6749
 
6750
- #: includes/views/submit_listing.php:826
6751
  msgctxt "templates"
6752
  msgid "Please agree to the Terms and Conditions."
6753
  msgstr "Ga s.v.p. akkoord met de voorwaarden"
6754
 
6755
- #: includes/views/submit_listing.php:834
6756
  msgctxt "templates"
6757
  msgid "Terms and Conditions:"
6758
  msgstr "Voorwaarden"
6759
 
6760
- #: includes/views/submit_listing.php:843
6761
  #, fuzzy
6762
  msgctxt "templates"
6763
  msgid "I agree to the <a>Terms and Conditions</a>"
6764
  msgstr "Ik ben akkoord met de voorwaarden"
6765
 
6766
  #: templates/businessdirectory-listings.tpl.php:27
6767
- #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:6
6768
  #: templates/search.tpl.php:17
6769
  msgctxt "templates"
6770
  msgid "No listings found."
6771
  msgstr "Geen registraties gevonden."
6772
 
6773
  #: templates/businessdirectory-listings.tpl.php:38
6774
- #: templates/listings.tpl.php:17
6775
  msgctxt "templates"
6776
  msgid "&laquo; Previous "
6777
  msgstr "&laquo; Vorige "
6778
 
6779
  #: templates/businessdirectory-listings.tpl.php:39
6780
- #: templates/listings.tpl.php:18
6781
  msgctxt "templates"
6782
  msgid "Next &raquo;"
6783
  msgstr "Volgende &raquo;"
@@ -7065,58 +7123,58 @@ msgctxt "sort"
7065
  msgid "(Reset)"
7066
  msgstr ""
7067
 
7068
- #: includes/utils.php:169
7069
  msgctxt "utils"
7070
  msgid ""
7071
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
7072
  msgstr ""
7073
 
7074
- #: includes/utils.php:216
7075
  msgctxt "utils"
7076
  msgid "File size (%s) exceeds maximum file size of %s"
7077
  msgstr ""
7078
 
7079
- #: includes/utils.php:224
7080
  msgctxt "utils"
7081
  msgid "File size (%s) is inferior to the required minimum file size of %s"
7082
  msgstr ""
7083
 
7084
- #: includes/utils.php:233 includes/utils.php:240
7085
  msgctxt "utils"
7086
  msgid "File type \"%s\" is not allowed"
7087
  msgstr ""
7088
 
7089
- #: includes/utils.php:247
7090
  msgctxt "utils"
7091
  msgid "Unkown error while uploading file."
7092
  msgstr ""
7093
 
7094
- #: includes/utils.php:266
7095
  msgctxt "utils"
7096
  msgid "Uploaded file is not an image"
7097
  msgstr ""
7098
 
7099
- #: includes/utils.php:275
7100
  msgctxt "utils"
7101
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
7102
  msgstr ""
7103
 
7104
- #: includes/utils.php:281
7105
  msgctxt "utils"
7106
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
7107
  msgstr ""
7108
 
7109
- #: includes/utils.php:287
7110
  msgctxt "utils"
7111
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
7112
  msgstr ""
7113
 
7114
- #: includes/utils.php:293
7115
  msgctxt "utils"
7116
  msgid "Image height (%s px) is greater than maximum required height of %s px."
7117
  msgstr ""
7118
 
7119
- #: includes/utils.php:307
7120
  msgctxt "utils"
7121
  msgid "Error while uploading file"
7122
  msgstr ""
@@ -7418,7 +7476,7 @@ msgid ""
7418
  "submit again."
7419
  msgstr ""
7420
 
7421
- #: includes/views/submit_listing.php:669
7422
  msgctxt "listing submit"
7423
  msgid ""
7424
  "Image upload is required, please provide at least one image and submit again."
@@ -7831,22 +7889,22 @@ msgctxt "admin infometabox"
7831
  msgid "Access Key"
7832
  msgstr ""
7833
 
7834
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
7835
  msgctxt "admin infometabox"
7836
  msgid "Renewal url (copy & paste)"
7837
  msgstr ""
7838
 
7839
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
7840
  msgctxt "admin infometabox"
7841
  msgid "Get renewal URL"
7842
  msgstr ""
7843
 
7844
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:103
7845
  msgctxt "admin infometabox"
7846
  msgid "Send renewal e-mail"
7847
  msgstr ""
7848
 
7849
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:108
7850
  #, fuzzy
7851
  msgctxt "admin infometabox"
7852
  msgid "Renew listing"
@@ -8509,22 +8567,10 @@ msgstr ""
8509
  #~ msgid "Sticky listing page description text"
8510
  #~ msgstr "Sticky aanbieding pagina omschijving tekst"
8511
 
8512
- #~ msgctxt "settings"
8513
- #~ msgid "Listing's name (with link)"
8514
- #~ msgstr "Naam registratie (met link)"
8515
-
8516
- #~ msgctxt "settings"
8517
- #~ msgid "Author's name"
8518
- #~ msgstr "Naam auteur"
8519
-
8520
  #~ msgctxt "settings email"
8521
  #~ msgid "Site title"
8522
  #~ msgstr "Site titel"
8523
 
8524
- #~ msgctxt "settings email"
8525
- #~ msgid "Site title (with link)"
8526
- #~ msgstr "Site titel (met link)"
8527
-
8528
  #~ msgctxt "settings email"
8529
  #~ msgid "Site address (with link)"
8530
  #~ msgstr "Site adres (met link)"
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-04-03 15:53:32+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"
168
  "payment processor directly."
169
  msgstr ""
170
 
171
+ #: includes/class-wpbdp.php:430
172
  msgid ""
173
  "The directory features are disabled at this time because a <a>manual "
174
  "upgrade</a> is pending."
175
  msgstr ""
176
 
177
+ #: includes/class-wpbdp.php:437
178
  msgid ""
179
  "The directory is not available at this time. Please try again in a few "
180
  "minutes or contact the administrator if the problem persists."
1063
  msgid "Reported"
1064
  msgstr ""
1065
 
1066
+ #: includes/class-listing.php:729
1067
  msgctxt "listing status"
1068
  msgid "Unknown"
1069
  msgstr ""
1070
 
1071
+ #: includes/class-listing.php:730
1072
  msgctxt "listing status"
1073
  msgid "Legacy"
1074
  msgstr ""
1075
 
1076
+ #: includes/class-listing.php:731
1077
  #, fuzzy
1078
  msgctxt "listing status"
1079
  msgid "Incomplete"
1080
  msgstr "Afgerond"
1081
 
1082
+ #: includes/class-listing.php:732
1083
  #, fuzzy
1084
  msgctxt "listing status"
1085
  msgid "Pending Payment"
1086
  msgstr "Wachtend op upgrade"
1087
 
1088
+ #: includes/class-listing.php:733
1089
  #, fuzzy
1090
  msgctxt "listing status"
1091
  msgid "Complete"
1092
  msgstr "Afgerond"
1093
 
1094
+ #: includes/class-listing.php:734
1095
  #, fuzzy
1096
  msgctxt "listing status"
1097
  msgid "Pending Upgrade"
1098
  msgstr "Wachtend op upgrade"
1099
 
1100
+ #: includes/class-listing.php:735
1101
  #, fuzzy
1102
  msgctxt "listing status"
1103
  msgid "Expired"
1104
  msgstr "Verlopen"
1105
 
1106
+ #: includes/class-listing.php:736
1107
  #, fuzzy
1108
  msgctxt "listing status"
1109
  msgid "Pending Renewal"
1110
  msgstr "Registratie vernieuwing"
1111
 
1112
+ #: includes/class-listing.php:737
1113
  msgctxt "listing status"
1114
  msgid "Abandoned"
1115
  msgstr ""
1171
  msgstr ""
1172
 
1173
  #: includes/admin/class-admin.php:157
1174
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1175
  #, fuzzy
1176
  msgctxt "listing metabox"
1177
  msgid "Never"
1178
  msgstr "nooit"
1179
 
1180
  #: includes/admin/class-admin.php:158
1181
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1182
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1183
  #, fuzzy
1184
  msgctxt "listing metabox"
1185
  msgid "Yes"
1186
  msgstr "Ja"
1187
 
1188
  #: includes/admin/class-admin.php:159
1189
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1190
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1191
  #, fuzzy
1192
  msgctxt "listing metabox"
1193
  msgid "No"
1234
  msgstr "Registraties"
1235
 
1236
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1237
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1238
  msgctxt "listing metabox"
1239
  msgid "N/A"
1240
  msgstr ""
1244
  msgid "Last renew date"
1245
  msgstr ""
1246
 
1247
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:27
1248
  #, fuzzy
1249
  msgctxt "listing metabox"
1250
  msgid "Plan Details"
1251
  msgstr "Details kosten"
1252
 
1253
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:29
1254
  msgctxt "listing metabox"
1255
  msgid "Fee Plan"
1256
  msgstr ""
1257
 
1258
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:38
1259
  msgctxt "listing metabox"
1260
  msgid "Change plan"
1261
  msgstr ""
1262
 
1263
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1264
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:70
1265
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1266
  #, fuzzy
1267
  msgctxt "listing metabox"
1268
  msgid "OK"
1269
  msgstr "OK"
1270
 
1271
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:51
1272
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1273
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:85
1274
  #, fuzzy
1275
  msgctxt "listing metabox"
1276
  msgid "Cancel"
1277
  msgstr "Gecancelled"
1278
 
1279
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:54
1280
  #, fuzzy
1281
  msgctxt "listing metabox"
1282
  msgid "Amount"
1283
  msgstr "Bedrag"
1284
 
1285
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:60
1286
  #, fuzzy
1287
  msgctxt "listing metabox"
1288
  msgid "Expires On"
1289
  msgstr "Verlopen"
1290
 
1291
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:65
1292
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1293
  #, fuzzy
1294
  msgctxt "listing metabox"
1295
  msgid "Edit"
1296
  msgstr "Bewerk"
1297
 
1298
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:75
1299
  #, fuzzy
1300
  msgctxt "listing metabox"
1301
  msgid "# of images"
1302
  msgstr "Beelden toestaan?"
1303
 
1304
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:88
1305
  msgctxt "listing metabox"
1306
  msgid "Is Featured?"
1307
  msgstr ""
1308
 
1309
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:95
1310
  msgctxt "listing metabox"
1311
  msgid "Is Recurring?"
1312
  msgstr ""
3247
  msgstr "Auteur"
3248
 
3249
  #: includes/admin/settings/class-settings-bootstrap.php:516
3250
+ #: includes/functions.php:1010
3251
  msgctxt "admin settings"
3252
  msgid "Date posted"
3253
  msgstr "Datum ingediend"
3254
 
3255
  #: includes/admin/settings/class-settings-bootstrap.php:517
3256
+ #: includes/functions.php:1011
3257
  msgctxt "admin settings"
3258
  msgid "Date last modified"
3259
  msgstr ""
3555
  msgid "Checkout URL link"
3556
  msgstr ""
3557
 
3558
+ #: includes/admin/settings/class-settings-bootstrap.php:1157
3559
  msgctxt "admin settings"
3560
  msgid ""
3561
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
3562
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
3563
  msgstr ""
3564
 
3565
+ #: includes/admin/settings/class-settings-bootstrap.php:1170
3566
  msgctxt "admin settings"
3567
  msgid ""
3568
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
3569
  "be created."
3570
  msgstr ""
3571
 
3572
+ #: includes/admin/settings/class-settings-bootstrap.php:1175
3573
  msgctxt "admin settings"
3574
  msgid ""
3575
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
3576
  "not activated."
3577
  msgstr ""
3578
 
3579
+ #: includes/functions.php:1008
3580
  msgctxt "admin settings"
3581
  msgid "User"
3582
  msgstr "Gebruiker"
3583
 
3584
+ #: includes/functions.php:1009
3585
  msgctxt "admin settings"
3586
  msgid "User registration date"
3587
  msgstr "Gebruikers registratie datum"
3608
  msgid "Delete"
3609
  msgstr "Verwijder"
3610
 
3611
+ #: includes/admin/settings/class-settings-admin.php:422
3612
  msgctxt "expiration notices"
3613
  msgid "recurring and non-recurring"
3614
  msgstr ""
3615
 
3616
+ #: includes/admin/settings/class-settings-admin.php:424
3617
  msgctxt "expiration notices"
3618
  msgid "recurring only"
3619
  msgstr ""
3620
 
3621
+ #: includes/admin/settings/class-settings-admin.php:426
3622
  msgctxt "expiration notices"
3623
  msgid "non-recurring only"
3624
  msgstr ""
3625
 
3626
+ #: includes/admin/settings/class-settings-admin.php:430
3627
  #, fuzzy
3628
  msgctxt "expiration notices"
3629
  msgid "Sent when a listing (%s) is renewed."
3630
  msgstr "Verzonden nadat een registratie is ingediend."
3631
 
3632
+ #: includes/admin/settings/class-settings-admin.php:435
3633
  #, fuzzy
3634
  msgctxt "expiration notices"
3635
  msgid "Sent when a listing (%s) expires."
3636
  msgstr "Een registratie verloopt."
3637
 
3638
+ #: includes/admin/settings/class-settings-admin.php:443
3639
  #, fuzzy
3640
  msgctxt "expiration notices"
3641
  msgid "%d day"
3643
  msgstr[0] "%d dag"
3644
  msgstr[1] "%d dagen"
3645
 
3646
+ #: includes/admin/settings/class-settings-admin.php:446
3647
  msgctxt "expiration notices"
3648
  msgid "%d week"
3649
  msgid_plural "%d weeks"
3650
  msgstr[0] ""
3651
  msgstr[1] ""
3652
 
3653
+ #: includes/admin/settings/class-settings-admin.php:449
3654
  msgctxt "expiration notices"
3655
  msgid "%d month"
3656
  msgid_plural "%d months"
3659
 
3660
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3661
  #. non-recuring only)
3662
+ #: includes/admin/settings/class-settings-admin.php:455
3663
  msgctxt "expiration notices"
3664
  msgid "Sent %1$s before a listing (%2$s) expires."
3665
  msgstr ""
3666
 
3667
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3668
  #. non-recuring only)
3669
+ #: includes/admin/settings/class-settings-admin.php:458
3670
  #, fuzzy
3671
  msgctxt "expiration notices"
3672
  msgid "Sent %1$s after a listing (%2$s) expires."
3673
  msgstr "Verzonden nadat een registratie is ingediend."
3674
 
3675
+ #: includes/admin/settings/class-settings-admin.php:475
3676
  msgctxt "expiration notices"
3677
  msgid "At the time of expiration"
3678
  msgstr ""
3679
 
3680
+ #: includes/admin/settings/class-settings-admin.php:476
3681
  msgctxt "expiration notices"
3682
  msgid "Right after a successful renewal"
3683
  msgstr ""
3684
 
3685
+ #: includes/admin/settings/class-settings-admin.php:485
3686
  msgctxt "expiration notices"
3687
  msgid "%d day before expiration"
3688
  msgid_plural "%d days before expiration"
3689
  msgstr[0] ""
3690
  msgstr[1] ""
3691
 
3692
+ #: includes/admin/settings/class-settings-admin.php:485
3693
  msgctxt "expiration notices"
3694
  msgid "%d day after expiration"
3695
  msgid_plural "%d days after expiration"
3696
  msgstr[0] ""
3697
  msgstr[1] ""
3698
 
3699
+ #: includes/admin/settings/class-settings-admin.php:488
3700
  msgctxt "expiration notices"
3701
  msgid "%d week before expiration"
3702
  msgid_plural "%d weeks before expiration"
3703
  msgstr[0] ""
3704
  msgstr[1] ""
3705
 
3706
+ #: includes/admin/settings/class-settings-admin.php:488
3707
  msgctxt "expiration notices"
3708
  msgid "%d week after expiration"
3709
  msgid_plural "%d weeks after expiration"
3710
  msgstr[0] ""
3711
  msgstr[1] ""
3712
 
3713
+ #: includes/admin/settings/class-settings-admin.php:491
3714
  msgctxt "expiration notices"
3715
  msgid "%d month before expiration"
3716
  msgid_plural "%d months before expiration"
3717
  msgstr[0] ""
3718
  msgstr[1] ""
3719
 
3720
+ #: includes/admin/settings/class-settings-admin.php:491
3721
  msgctxt "expiration notices"
3722
  msgid "%d month after expiration"
3723
  msgid_plural "%d months after expiration"
3724
  msgstr[0] ""
3725
  msgstr[1] ""
3726
 
3727
+ #: includes/admin/settings/class-settings-admin.php:518
3728
  msgctxt "expiration notices"
3729
  msgid "Applies to"
3730
  msgstr ""
3731
 
3732
+ #: includes/admin/settings/class-settings-admin.php:521
3733
  msgctxt "expiration notices"
3734
  msgid "Non-recurring listings"
3735
  msgstr ""
3736
 
3737
+ #: includes/admin/settings/class-settings-admin.php:522
3738
  #, fuzzy
3739
  msgctxt "expiration notices"
3740
  msgid "Recurring listings"
3741
  msgstr "Terug naar registratie."
3742
 
3743
+ #: includes/admin/settings/class-settings-admin.php:523
3744
  msgctxt "expiration notices"
3745
  msgid "Recurring and non-recurring listings"
3746
  msgstr ""
3747
 
3748
+ #: includes/admin/settings/class-settings-admin.php:528
3749
  msgctxt "expiration notices"
3750
  msgid "When to send?"
3751
  msgstr ""
3756
  msgid "E-mail body text"
3757
  msgstr "E-mail bodytekst"
3758
 
3759
+ #: includes/admin/settings/class-settings-admin.php:398
3760
+ #, fuzzy
3761
+ msgctxt "settings"
3762
+ msgid "Site title (with link)"
3763
+ msgstr "Site titel (met link)"
3764
+
3765
+ #: includes/admin/settings/class-settings-admin.php:399
3766
+ msgctxt "settings"
3767
+ msgid "Author's name"
3768
+ msgstr "Naam auteur"
3769
+
3770
+ #: includes/admin/settings/class-settings-admin.php:400
3771
+ msgctxt "settings"
3772
+ msgid "Listing's name (with link)"
3773
+ msgstr "Naam registratie (met link)"
3774
+
3775
+ #: includes/admin/settings/class-settings-admin.php:401
3776
+ #, fuzzy
3777
+ msgctxt "settings"
3778
+ msgid "Listing's expiration date"
3779
+ msgstr "Een registratie verloopt."
3780
+
3781
+ #: includes/admin/settings/class-settings-admin.php:402
3782
+ #, fuzzy
3783
+ msgctxt "settings"
3784
+ msgid "Listing's renewal link"
3785
+ msgstr "Naam registratie (met link)"
3786
+
3787
+ #: includes/admin/settings/class-settings-admin.php:403
3788
+ #, fuzzy
3789
+ msgctxt "settings"
3790
+ msgid "Listing's categories"
3791
+ msgstr "Titel registratie"
3792
+
3793
+ #: includes/admin/settings/class-settings-admin.php:404
3794
+ #, fuzzy
3795
+ msgctxt "settings"
3796
+ msgid "Listing's last payment date"
3797
+ msgstr "Registraties per pagina"
3798
+
3799
+ #: includes/admin/settings/class-settings-admin.php:405
3800
+ #, fuzzy
3801
+ msgctxt "settings"
3802
+ msgid "Listing's access key"
3803
+ msgstr "Beelden bij de registratie"
3804
+
3805
+ #: includes/admin/settings/class-settings-admin.php:560
3806
  msgctxt "settings"
3807
  msgid "Settings reset to default."
3808
  msgstr ""
5256
  msgid "Add New Listing"
5257
  msgstr "Nieuwe registratie toevoegen"
5258
 
5259
+ #: includes/class-listing.php:318
5260
  #, fuzzy
5261
  msgctxt "listing"
5262
  msgid "Listing expired"
5263
  msgstr "Een registratie verloopt."
5264
 
5265
+ #: includes/class-listing.php:470
5266
  msgctxt "listing"
5267
  msgid "(Unavailable Plan)"
5268
  msgstr ""
5269
 
5270
+ #: includes/class-listing.php:626
5271
  msgctxt "listing"
5272
  msgid "Plan \"%s\" (recurring)"
5273
  msgstr ""
5274
 
5275
+ #: includes/class-listing.php:628
5276
  msgctxt "listing"
5277
  msgid "Plan \"%s\""
5278
  msgstr ""
5327
  msgid "Free Listing"
5328
  msgstr "Gratis registratie"
5329
 
5330
+ #: includes/class-listing-email-notification.php:151
5331
  msgctxt "notify email"
5332
  msgid "[%s] New listing notification"
5333
  msgstr "[%s] Notificatie nieuwe registratie"
5334
 
5335
+ #: includes/class-listing-email-notification.php:186
5336
  msgctxt "notify email"
5337
  msgid "[%s] Listing edit notification"
5338
  msgstr "[%s] Registratie/vermelding aangepast notificatie"
5339
 
5340
+ #: includes/class-listing-email-notification.php:240
5341
  #, fuzzy
5342
  msgctxt "notify email"
5343
  msgid "[%s] Reported listing notification"
5378
  msgid "Admin URL"
5379
  msgstr ""
5380
 
5381
+ #: templates/email/listing-added.tpl.php:21
5382
+ #, fuzzy
 
5383
  msgctxt "notify email"
5384
+ msgid "Category"
5385
+ msgid_plural "Categories"
5386
+ msgstr[0] "Categorie"
5387
+ msgstr[1] "Categorie"
5388
 
5389
+ #: templates/email/listing-added.tpl.php:27
5390
  #: templates/email/listing-edited.tpl.php:20
5391
  #: templates/email/listing-reported.tpl.php:19
5392
  msgctxt "notify email"
5393
  msgid "Posted By"
5394
  msgstr "Ingediend door"
5395
 
5396
+ #: templates/email/listing-added.tpl.php:36
5397
+ msgctxt "notify email"
5398
+ msgid "Annonymous User"
5399
+ msgstr ""
5400
+
5401
+ #: templates/email/listing-edited.tpl.php:17
5402
+ #: templates/email/listing-reported.tpl.php:17
5403
+ msgctxt "notify email"
5404
+ msgid "Categories"
5405
+ msgstr "Categorieën "
5406
+
5407
  #: templates/email/listing-reported.tpl.php:21
5408
  msgctxt "notify email"
5409
  msgid "Report IP"
5638
  msgid "Account Creation"
5639
  msgstr ""
5640
 
5641
+ #: includes/views/submit_listing.php:365
5642
  #, fuzzy
5643
  msgctxt "submit listing"
5644
  msgid "Terms and Conditions"
5674
  msgid "Please choose a valid fee plan for your category selection."
5675
  msgstr ""
5676
 
5677
+ #: includes/views/submit_listing.php:725
5678
  msgctxt "submit listing"
5679
  msgid "Please enter your desired username."
5680
  msgstr ""
5681
 
5682
+ #: includes/views/submit_listing.php:730
5683
  msgctxt "submit listing"
5684
  msgid "Please enter the e-mail for your new account."
5685
  msgstr ""
5686
 
5687
+ #: includes/views/submit_listing.php:735
5688
  msgctxt "submit listing"
5689
  msgid "Please enter the password for your new account."
5690
  msgstr ""
5691
 
5692
+ #: includes/views/submit_listing.php:745
5693
  msgctxt "submit listing"
5694
  msgid "The username you chose is already in use. Please use a different one."
5695
  msgstr ""
5696
 
5697
+ #: includes/views/submit_listing.php:750
5698
  msgctxt "submit listing"
5699
  msgid "The e-mail address you chose for your account is already in use."
5700
  msgstr ""
5701
 
5702
+ #: includes/views/submit_listing.php:765
5703
  msgctxt "submit listing"
5704
  msgid "Create a user account on this site"
5705
  msgstr ""
5706
 
5707
+ #: includes/views/submit_listing.php:772
5708
  msgctxt "submit listing"
5709
  msgid ""
5710
  "You need to create an account on the site. Please fill out the form below."
5711
  msgstr ""
5712
 
5713
+ #: includes/views/submit_listing.php:778
5714
  #, fuzzy
5715
  msgctxt "submit listing"
5716
  msgid "Username:"
5717
  msgstr "Gebruiker"
5718
 
5719
+ #: includes/views/submit_listing.php:787
5720
  #, fuzzy
5721
  msgctxt "submit listing"
5722
  msgid "Email:"
5723
  msgstr "Jouw email"
5724
 
5725
+ #: includes/views/submit_listing.php:796
5726
  msgctxt "submit listing"
5727
  msgid "Password:"
5728
  msgstr ""
5767
  msgid "reCAPTCHA"
5768
  msgstr "reCAPTCHA Instellingen"
5769
 
5770
+ #: includes/class-wpbdp.php:249
5771
  msgctxt "admin plugins"
5772
  msgid "Settings"
5773
  msgstr "Instellingen"
5774
 
5775
+ #: includes/class-wpbdp.php:331
5776
  msgctxt "listing image upload"
5777
  msgid "Can not upload any more images for this listing."
5778
  msgstr ""
5779
 
5780
+ #: includes/class-wpbdp.php:335
5781
  msgctxt "listing image upload"
5782
  msgid ""
5783
  "You're trying to upload %d images, but only have %d slot available. Please "
6805
  msgid "View not available."
6806
  msgstr ""
6807
 
6808
+ #: includes/views/submit_listing.php:834
6809
  msgctxt "templates"
6810
  msgid "Please agree to the Terms and Conditions."
6811
  msgstr "Ga s.v.p. akkoord met de voorwaarden"
6812
 
6813
+ #: includes/views/submit_listing.php:842
6814
  msgctxt "templates"
6815
  msgid "Terms and Conditions:"
6816
  msgstr "Voorwaarden"
6817
 
6818
+ #: includes/views/submit_listing.php:851
6819
  #, fuzzy
6820
  msgctxt "templates"
6821
  msgid "I agree to the <a>Terms and Conditions</a>"
6822
  msgstr "Ik ben akkoord met de voorwaarden"
6823
 
6824
  #: templates/businessdirectory-listings.tpl.php:27
6825
+ #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:8
6826
  #: templates/search.tpl.php:17
6827
  msgctxt "templates"
6828
  msgid "No listings found."
6829
  msgstr "Geen registraties gevonden."
6830
 
6831
  #: templates/businessdirectory-listings.tpl.php:38
6832
+ #: templates/listings.tpl.php:24
6833
  msgctxt "templates"
6834
  msgid "&laquo; Previous "
6835
  msgstr "&laquo; Vorige "
6836
 
6837
  #: templates/businessdirectory-listings.tpl.php:39
6838
+ #: templates/listings.tpl.php:25
6839
  msgctxt "templates"
6840
  msgid "Next &raquo;"
6841
  msgstr "Volgende &raquo;"
7123
  msgid "(Reset)"
7124
  msgstr ""
7125
 
7126
+ #: includes/utils.php:179
7127
  msgctxt "utils"
7128
  msgid ""
7129
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
7130
  msgstr ""
7131
 
7132
+ #: includes/utils.php:226
7133
  msgctxt "utils"
7134
  msgid "File size (%s) exceeds maximum file size of %s"
7135
  msgstr ""
7136
 
7137
+ #: includes/utils.php:234
7138
  msgctxt "utils"
7139
  msgid "File size (%s) is inferior to the required minimum file size of %s"
7140
  msgstr ""
7141
 
7142
+ #: includes/utils.php:243 includes/utils.php:250
7143
  msgctxt "utils"
7144
  msgid "File type \"%s\" is not allowed"
7145
  msgstr ""
7146
 
7147
+ #: includes/utils.php:257
7148
  msgctxt "utils"
7149
  msgid "Unkown error while uploading file."
7150
  msgstr ""
7151
 
7152
+ #: includes/utils.php:276
7153
  msgctxt "utils"
7154
  msgid "Uploaded file is not an image"
7155
  msgstr ""
7156
 
7157
+ #: includes/utils.php:285
7158
  msgctxt "utils"
7159
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
7160
  msgstr ""
7161
 
7162
+ #: includes/utils.php:291
7163
  msgctxt "utils"
7164
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
7165
  msgstr ""
7166
 
7167
+ #: includes/utils.php:297
7168
  msgctxt "utils"
7169
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
7170
  msgstr ""
7171
 
7172
+ #: includes/utils.php:303
7173
  msgctxt "utils"
7174
  msgid "Image height (%s px) is greater than maximum required height of %s px."
7175
  msgstr ""
7176
 
7177
+ #: includes/utils.php:317
7178
  msgctxt "utils"
7179
  msgid "Error while uploading file"
7180
  msgstr ""
7476
  "submit again."
7477
  msgstr ""
7478
 
7479
+ #: includes/views/submit_listing.php:677
7480
  msgctxt "listing submit"
7481
  msgid ""
7482
  "Image upload is required, please provide at least one image and submit again."
7889
  msgid "Access Key"
7890
  msgstr ""
7891
 
7892
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
7893
  msgctxt "admin infometabox"
7894
  msgid "Renewal url (copy & paste)"
7895
  msgstr ""
7896
 
7897
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
7898
  msgctxt "admin infometabox"
7899
  msgid "Get renewal URL"
7900
  msgstr ""
7901
 
7902
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:107
7903
  msgctxt "admin infometabox"
7904
  msgid "Send renewal e-mail"
7905
  msgstr ""
7906
 
7907
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:112
7908
  #, fuzzy
7909
  msgctxt "admin infometabox"
7910
  msgid "Renew listing"
8567
  #~ msgid "Sticky listing page description text"
8568
  #~ msgstr "Sticky aanbieding pagina omschijving tekst"
8569
 
 
 
 
 
 
 
 
 
8570
  #~ msgctxt "settings email"
8571
  #~ msgid "Site title"
8572
  #~ msgstr "Site titel"
8573
 
 
 
 
 
8574
  #~ msgctxt "settings email"
8575
  #~ msgid "Site address (with link)"
8576
  #~ msgstr "Site adres (met link)"
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-03-02 04:44:48+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"
@@ -214,7 +214,7 @@ msgid ""
214
  msgstr ""
215
 
216
  # @ WPBDM
217
- #: includes/class-wpbdp.php:422
218
  #, fuzzy
219
  msgid ""
220
  "The directory features are disabled at this time because a <a>manual "
@@ -223,7 +223,7 @@ msgstr ""
223
  "Funkcje pluginu KATALOG FIRM są chwilowo wyłączone, ponieważ plugin oczekuje "
224
  "na ręczną aktualizację, przed kontynuacją."
225
 
226
- #: includes/class-wpbdp.php:429
227
  msgid ""
228
  "The directory is not available at this time. Please try again in a few "
229
  "minutes or contact the administrator if the problem persists."
@@ -1304,60 +1304,60 @@ msgctxt "listing status"
1304
  msgid "Reported"
1305
  msgstr ""
1306
 
1307
- #: includes/class-listing.php:705
1308
  msgctxt "listing status"
1309
  msgid "Unknown"
1310
  msgstr ""
1311
 
1312
- #: includes/class-listing.php:706
1313
  msgctxt "listing status"
1314
  msgid "Legacy"
1315
  msgstr ""
1316
 
1317
  # @ WPBDM
1318
- #: includes/class-listing.php:707
1319
  #, fuzzy
1320
  msgctxt "listing status"
1321
  msgid "Incomplete"
1322
  msgstr "Zakończona"
1323
 
1324
  # @ WPBDM
1325
- #: includes/class-listing.php:708
1326
  #, fuzzy
1327
  msgctxt "listing status"
1328
  msgid "Pending Payment"
1329
  msgstr "Oczekujące na abonament"
1330
 
1331
  # @ WPBDM
1332
- #: includes/class-listing.php:709
1333
  #, fuzzy
1334
  msgctxt "listing status"
1335
  msgid "Complete"
1336
  msgstr "Zakończona"
1337
 
1338
  # @ WPBDM
1339
- #: includes/class-listing.php:710
1340
  #, fuzzy
1341
  msgctxt "listing status"
1342
  msgid "Pending Upgrade"
1343
  msgstr "Oferty oczekujące na zatwierdzenie"
1344
 
1345
  # @ WPBDM
1346
- #: includes/class-listing.php:711
1347
  #, fuzzy
1348
  msgctxt "listing status"
1349
  msgid "Expired"
1350
  msgstr "Wygasłe"
1351
 
1352
  # @ WPBDM
1353
- #: includes/class-listing.php:712
1354
  #, fuzzy
1355
  msgctxt "listing status"
1356
  msgid "Pending Renewal"
1357
  msgstr "Tylko aktywne i oczekujące na odświeżenie "
1358
 
1359
  # @ WPBDM
1360
- #: includes/class-listing.php:713
1361
  #, fuzzy
1362
  msgctxt "listing status"
1363
  msgid "Abandoned"
@@ -1431,23 +1431,23 @@ msgstr "Pola/Obrazy"
1431
 
1432
  # @ WPBDM
1433
  #: includes/admin/class-admin.php:157
1434
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:63
1435
  #, fuzzy
1436
  msgctxt "listing metabox"
1437
  msgid "Never"
1438
  msgstr "nigdy"
1439
 
1440
  #: includes/admin/class-admin.php:158
1441
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1442
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1443
  msgctxt "listing metabox"
1444
  msgid "Yes"
1445
  msgstr ""
1446
 
1447
  # @ WPBDM
1448
  #: includes/admin/class-admin.php:159
1449
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1450
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1451
  #, fuzzy
1452
  msgctxt "listing metabox"
1453
  msgid "No"
@@ -1506,7 +1506,7 @@ msgstr "Oferty"
1506
 
1507
  # @ WPBDM
1508
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1509
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:20
1510
  #, fuzzy
1511
  msgctxt "listing metabox"
1512
  msgid "N/A"
@@ -1520,78 +1520,78 @@ msgid "Last renew date"
1520
  msgstr "Data odświeżenia"
1521
 
1522
  # @ WPBDM
1523
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1524
  #, fuzzy
1525
  msgctxt "listing metabox"
1526
  msgid "Plan Details"
1527
  msgstr "Szczegóły Planu"
1528
 
1529
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:25
1530
  msgctxt "listing metabox"
1531
  msgid "Fee Plan"
1532
  msgstr ""
1533
 
1534
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:34
1535
  msgctxt "listing metabox"
1536
  msgid "Change plan"
1537
  msgstr ""
1538
 
1539
  # @ WPBDM
1540
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:46
1541
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:66
1542
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1543
  #, fuzzy
1544
  msgctxt "listing metabox"
1545
  msgid "OK"
1546
  msgstr "Wszystko w porządku"
1547
 
1548
  # @ WPBDM
1549
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:47
1550
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1551
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:81
1552
  #, fuzzy
1553
  msgctxt "listing metabox"
1554
  msgid "Cancel"
1555
  msgstr "Anuluj"
1556
 
1557
  # @ WPBDM
1558
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1559
  #, fuzzy
1560
  msgctxt "listing metabox"
1561
  msgid "Amount"
1562
  msgstr "Kwota"
1563
 
1564
  # @ WPBDM
1565
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:56
1566
  #, fuzzy
1567
  msgctxt "listing metabox"
1568
  msgid "Expires On"
1569
  msgstr "Upłynął okres ważności "
1570
 
1571
  # @ WPBDM
1572
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:61
1573
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:76
1574
  #, fuzzy
1575
  msgctxt "listing metabox"
1576
  msgid "Edit"
1577
  msgstr "Edytuj"
1578
 
1579
  # @ WPBDM
1580
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1581
  #, fuzzy
1582
  msgctxt "listing metabox"
1583
  msgid "# of images"
1584
  msgstr "Liczba Obrazów"
1585
 
1586
  # @ WPBDM
1587
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1588
  #, fuzzy
1589
  msgctxt "listing metabox"
1590
  msgid "Is Featured?"
1591
  msgstr "%s RSS"
1592
 
1593
  # @ WPBDM
1594
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1595
  #, fuzzy
1596
  msgctxt "listing metabox"
1597
  msgid "Is Recurring?"
@@ -3864,14 +3864,14 @@ msgstr "Autor"
3864
 
3865
  # @ WPBDM
3866
  #: includes/admin/settings/class-settings-bootstrap.php:516
3867
- #: includes/functions.php:995
3868
  msgctxt "admin settings"
3869
  msgid "Date posted"
3870
  msgstr "Data publikacji"
3871
 
3872
  # @ WPBDM
3873
  #: includes/admin/settings/class-settings-bootstrap.php:517
3874
- #: includes/functions.php:996
3875
  msgctxt "admin settings"
3876
  msgid "Date last modified"
3877
  msgstr "Data ostatnij modyfikacji"
@@ -4219,7 +4219,7 @@ msgid "Checkout URL link"
4219
  msgstr "Sprawdzanie link URL"
4220
 
4221
  # @ WPBDM
4222
- #: includes/admin/settings/class-settings-bootstrap.php:1156
4223
  msgctxt "admin settings"
4224
  msgid ""
4225
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
@@ -4229,7 +4229,7 @@ msgstr ""
4229
  "ręcznie usunąć plik \"%s\" lub de-aktywować plugin."
4230
 
4231
  # @ WPBDM
4232
- #: includes/admin/settings/class-settings-bootstrap.php:1169
4233
  msgctxt "admin settings"
4234
  msgid ""
4235
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
@@ -4239,7 +4239,7 @@ msgstr ""
4239
  "\"%s\"."
4240
 
4241
  # @ WPBDM
4242
- #: includes/admin/settings/class-settings-bootstrap.php:1174
4243
  msgctxt "admin settings"
4244
  msgid ""
4245
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
@@ -4248,13 +4248,13 @@ msgstr ""
4248
  "Nie można skopiować pluginu kompatybilności AJAX \"%s\". Tryb "
4249
  "Kompatybilności nie został aktywowany."
4250
 
4251
- #: includes/functions.php:993
4252
  msgctxt "admin settings"
4253
  msgid "User"
4254
  msgstr ""
4255
 
4256
  # @ WPBDM
4257
- #: includes/functions.php:994
4258
  msgctxt "admin settings"
4259
  msgid "User registration date"
4260
  msgstr "Data zakończenia emisji oferty"
@@ -4285,41 +4285,41 @@ msgctxt "expiration notices"
4285
  msgid "Delete"
4286
  msgstr "Usuń"
4287
 
4288
- #: includes/admin/settings/class-settings-admin.php:411
4289
  msgctxt "expiration notices"
4290
  msgid "recurring and non-recurring"
4291
  msgstr ""
4292
 
4293
  # @ WPBDM
4294
- #: includes/admin/settings/class-settings-admin.php:413
4295
  #, fuzzy
4296
  msgctxt "expiration notices"
4297
  msgid "recurring only"
4298
  msgstr "(powtarzające się)"
4299
 
4300
  # @ WPBDM
4301
- #: includes/admin/settings/class-settings-admin.php:415
4302
  #, fuzzy
4303
  msgctxt "expiration notices"
4304
  msgid "non-recurring only"
4305
  msgstr "(powtarzające się)"
4306
 
4307
  # @ WPBDM
4308
- #: includes/admin/settings/class-settings-admin.php:419
4309
  #, fuzzy
4310
  msgctxt "expiration notices"
4311
  msgid "Sent when a listing (%s) is renewed."
4312
  msgstr "Wysłane po zapisaniu oferty."
4313
 
4314
  # @ WPBDM
4315
- #: includes/admin/settings/class-settings-admin.php:424
4316
  #, fuzzy
4317
  msgctxt "expiration notices"
4318
  msgid "Sent when a listing (%s) expires."
4319
  msgstr "Upłynął okres ważności oferty."
4320
 
4321
  # @ WPBDM
4322
- #: includes/admin/settings/class-settings-admin.php:432
4323
  #, fuzzy
4324
  msgctxt "expiration notices"
4325
  msgid "%d day"
@@ -4328,7 +4328,7 @@ msgstr[0] "%d dzień"
4328
  msgstr[1] "%d dni"
4329
  msgstr[2] "%d dni"
4330
 
4331
- #: includes/admin/settings/class-settings-admin.php:435
4332
  msgctxt "expiration notices"
4333
  msgid "%d week"
4334
  msgid_plural "%d weeks"
@@ -4336,7 +4336,7 @@ msgstr[0] ""
4336
  msgstr[1] ""
4337
  msgstr[2] ""
4338
 
4339
- #: includes/admin/settings/class-settings-admin.php:438
4340
  msgctxt "expiration notices"
4341
  msgid "%d month"
4342
  msgid_plural "%d months"
@@ -4346,7 +4346,7 @@ msgstr[2] ""
4346
 
4347
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
4348
  #. non-recuring only)
4349
- #: includes/admin/settings/class-settings-admin.php:444
4350
  msgctxt "expiration notices"
4351
  msgid "Sent %1$s before a listing (%2$s) expires."
4352
  msgstr ""
@@ -4354,25 +4354,25 @@ msgstr ""
4354
  # @ WPBDM
4355
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
4356
  #. non-recuring only)
4357
- #: includes/admin/settings/class-settings-admin.php:447
4358
  #, fuzzy
4359
  msgctxt "expiration notices"
4360
  msgid "Sent %1$s after a listing (%2$s) expires."
4361
  msgstr "Wysłane po zapisaniu oferty."
4362
 
4363
- #: includes/admin/settings/class-settings-admin.php:464
4364
  msgctxt "expiration notices"
4365
  msgid "At the time of expiration"
4366
  msgstr ""
4367
 
4368
  # @ WPBDM
4369
- #: includes/admin/settings/class-settings-admin.php:465
4370
  #, fuzzy
4371
  msgctxt "expiration notices"
4372
  msgid "Right after a successful renewal"
4373
  msgstr "Abonament został przypisany do oferty."
4374
 
4375
- #: includes/admin/settings/class-settings-admin.php:474
4376
  msgctxt "expiration notices"
4377
  msgid "%d day before expiration"
4378
  msgid_plural "%d days before expiration"
@@ -4380,7 +4380,7 @@ msgstr[0] ""
4380
  msgstr[1] ""
4381
  msgstr[2] ""
4382
 
4383
- #: includes/admin/settings/class-settings-admin.php:474
4384
  msgctxt "expiration notices"
4385
  msgid "%d day after expiration"
4386
  msgid_plural "%d days after expiration"
@@ -4388,7 +4388,7 @@ msgstr[0] ""
4388
  msgstr[1] ""
4389
  msgstr[2] ""
4390
 
4391
- #: includes/admin/settings/class-settings-admin.php:477
4392
  msgctxt "expiration notices"
4393
  msgid "%d week before expiration"
4394
  msgid_plural "%d weeks before expiration"
@@ -4396,7 +4396,7 @@ msgstr[0] ""
4396
  msgstr[1] ""
4397
  msgstr[2] ""
4398
 
4399
- #: includes/admin/settings/class-settings-admin.php:477
4400
  msgctxt "expiration notices"
4401
  msgid "%d week after expiration"
4402
  msgid_plural "%d weeks after expiration"
@@ -4404,7 +4404,7 @@ msgstr[0] ""
4404
  msgstr[1] ""
4405
  msgstr[2] ""
4406
 
4407
- #: includes/admin/settings/class-settings-admin.php:480
4408
  msgctxt "expiration notices"
4409
  msgid "%d month before expiration"
4410
  msgid_plural "%d months before expiration"
@@ -4412,7 +4412,7 @@ msgstr[0] ""
4412
  msgstr[1] ""
4413
  msgstr[2] ""
4414
 
4415
- #: includes/admin/settings/class-settings-admin.php:480
4416
  msgctxt "expiration notices"
4417
  msgid "%d month after expiration"
4418
  msgid_plural "%d months after expiration"
@@ -4421,30 +4421,30 @@ msgstr[1] ""
4421
  msgstr[2] ""
4422
 
4423
  # @ WPBDM
4424
- #: includes/admin/settings/class-settings-admin.php:500
4425
  #, fuzzy
4426
  msgctxt "expiration notices"
4427
  msgid "Applies to"
4428
  msgstr "Stosowane do"
4429
 
4430
- #: includes/admin/settings/class-settings-admin.php:503
4431
  msgctxt "expiration notices"
4432
  msgid "Non-recurring listings"
4433
  msgstr ""
4434
 
4435
  # @ WPBDM
4436
- #: includes/admin/settings/class-settings-admin.php:504
4437
  #, fuzzy
4438
  msgctxt "expiration notices"
4439
  msgid "Recurring listings"
4440
  msgstr "Powrót do oferty."
4441
 
4442
- #: includes/admin/settings/class-settings-admin.php:505
4443
  msgctxt "expiration notices"
4444
  msgid "Recurring and non-recurring listings"
4445
  msgstr ""
4446
 
4447
- #: includes/admin/settings/class-settings-admin.php:510
4448
  msgctxt "expiration notices"
4449
  msgid "When to send?"
4450
  msgstr ""
@@ -4457,7 +4457,61 @@ msgid "E-mail body text"
4457
  msgstr "Forma E-Maila"
4458
 
4459
  # @ WPBDM
4460
- #: includes/admin/settings/class-settings-admin.php:542
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4461
  #, fuzzy
4462
  msgctxt "settings"
4463
  msgid "Settings reset to default."
@@ -6144,27 +6198,27 @@ msgid "Add New Listing"
6144
  msgstr "Dodaj nową ofertę"
6145
 
6146
  # @ WPBDM
6147
- #: includes/class-listing.php:294
6148
  #, fuzzy
6149
  msgctxt "listing"
6150
  msgid "Listing expired"
6151
  msgstr "Upłynął okres ważności oferty."
6152
 
6153
  # @ WPBDM
6154
- #: includes/class-listing.php:446
6155
  #, fuzzy
6156
  msgctxt "listing"
6157
  msgid "(Unavailable Plan)"
6158
  msgstr "(Abonament niedostępny)"
6159
 
6160
  # @ WPBDM
6161
- #: includes/class-listing.php:602
6162
  #, fuzzy
6163
  msgctxt "listing"
6164
  msgid "Plan \"%s\" (recurring)"
6165
  msgstr "(powtarzające się)"
6166
 
6167
- #: includes/class-listing.php:604
6168
  msgctxt "listing"
6169
  msgid "Plan \"%s\""
6170
  msgstr ""
@@ -6228,19 +6282,19 @@ msgid "Free Listing"
6228
  msgstr "Oferta Bezpłatna"
6229
 
6230
  # @ WPBDM
6231
- #: includes/class-listing-email-notification.php:130
6232
  msgctxt "notify email"
6233
  msgid "[%s] New listing notification"
6234
  msgstr "[%s] Powiadomienie o Nowej ofercie"
6235
 
6236
  # @ WPBDM
6237
- #: includes/class-listing-email-notification.php:165
6238
  msgctxt "notify email"
6239
  msgid "[%s] Listing edit notification"
6240
  msgstr "[%s] Powiadomienie o Edycji oferty"
6241
 
6242
  # @ WPBDM
6243
- #: includes/class-listing-email-notification.php:219
6244
  #, fuzzy
6245
  msgctxt "notify email"
6246
  msgid "[%s] Reported listing notification"
@@ -6286,21 +6340,35 @@ msgid "Admin URL"
6286
  msgstr ""
6287
 
6288
  # @ WPBDM
6289
- #: templates/email/listing-added.tpl.php:17
6290
- #: templates/email/listing-edited.tpl.php:17
6291
- #: templates/email/listing-reported.tpl.php:17
6292
  msgctxt "notify email"
6293
- msgid "Categories"
6294
- msgstr "Kategorie"
 
 
 
6295
 
6296
  # @ WPBDM
6297
- #: templates/email/listing-added.tpl.php:20
6298
  #: templates/email/listing-edited.tpl.php:20
6299
  #: templates/email/listing-reported.tpl.php:19
6300
  msgctxt "notify email"
6301
  msgid "Posted By"
6302
  msgstr "Napisany przez"
6303
 
 
 
 
 
 
 
 
 
 
 
 
 
6304
  #: templates/email/listing-reported.tpl.php:21
6305
  msgctxt "notify email"
6306
  msgid "Report IP"
@@ -6578,7 +6646,7 @@ msgid "Account Creation"
6578
  msgstr ""
6579
 
6580
  # @ WPBDM
6581
- #: includes/views/submit_listing.php:363
6582
  #, fuzzy
6583
  msgctxt "submit listing"
6584
  msgid "Terms and Conditions"
@@ -6625,58 +6693,58 @@ msgid "Please choose a valid fee plan for your category selection."
6625
  msgstr "Wybierz abonament dla tegj kategori \"%s\"."
6626
 
6627
  # @ WPBDM
6628
- #: includes/views/submit_listing.php:717
6629
  #, fuzzy
6630
  msgctxt "submit listing"
6631
  msgid "Please enter your desired username."
6632
  msgstr "Proszę wprowadzić Imię"
6633
 
6634
  # @ WPBDM
6635
- #: includes/views/submit_listing.php:722
6636
  #, fuzzy
6637
  msgctxt "submit listing"
6638
  msgid "Please enter the e-mail for your new account."
6639
  msgstr "Proszę wprowadzić Imię"
6640
 
6641
- #: includes/views/submit_listing.php:727
6642
  msgctxt "submit listing"
6643
  msgid "Please enter the password for your new account."
6644
  msgstr ""
6645
 
6646
- #: includes/views/submit_listing.php:737
6647
  msgctxt "submit listing"
6648
  msgid "The username you chose is already in use. Please use a different one."
6649
  msgstr ""
6650
 
6651
- #: includes/views/submit_listing.php:742
6652
  msgctxt "submit listing"
6653
  msgid "The e-mail address you chose for your account is already in use."
6654
  msgstr ""
6655
 
6656
- #: includes/views/submit_listing.php:757
6657
  msgctxt "submit listing"
6658
  msgid "Create a user account on this site"
6659
  msgstr ""
6660
 
6661
- #: includes/views/submit_listing.php:764
6662
  msgctxt "submit listing"
6663
  msgid ""
6664
  "You need to create an account on the site. Please fill out the form below."
6665
  msgstr ""
6666
 
6667
- #: includes/views/submit_listing.php:770
6668
  msgctxt "submit listing"
6669
  msgid "Username:"
6670
  msgstr ""
6671
 
6672
  # @ WPBDM
6673
- #: includes/views/submit_listing.php:779
6674
  #, fuzzy
6675
  msgctxt "submit listing"
6676
  msgid "Email:"
6677
  msgstr "E-Mail: %s"
6678
 
6679
- #: includes/views/submit_listing.php:788
6680
  msgctxt "submit listing"
6681
  msgid "Password:"
6682
  msgstr ""
@@ -6728,19 +6796,19 @@ msgid "reCAPTCHA"
6728
  msgstr "Ustawienia reCAPTCHA"
6729
 
6730
  # @ WPBDM
6731
- #: includes/class-wpbdp.php:241
6732
  msgctxt "admin plugins"
6733
  msgid "Settings"
6734
  msgstr "Ustawienia"
6735
 
6736
  # @ WPBDM
6737
- #: includes/class-wpbdp.php:323
6738
  #, fuzzy
6739
  msgctxt "listing image upload"
6740
  msgid "Can not upload any more images for this listing."
6741
  msgstr "Kategorie dla tej oferty"
6742
 
6743
- #: includes/class-wpbdp.php:327
6744
  msgctxt "listing image upload"
6745
  msgid ""
6746
  "You're trying to upload %d images, but only have %d slot available. Please "
@@ -7967,19 +8035,19 @@ msgid "View not available."
7967
  msgstr "Dostępne miejsca na Obrazy:"
7968
 
7969
  # @ WPBDM
7970
- #: includes/views/submit_listing.php:826
7971
  msgctxt "templates"
7972
  msgid "Please agree to the Terms and Conditions."
7973
  msgstr "Musisz zaakceptować nasze warunki i regulamin korzystania z serwisu."
7974
 
7975
  # @ WPBDM
7976
- #: includes/views/submit_listing.php:834
7977
  msgctxt "templates"
7978
  msgid "Terms and Conditions:"
7979
  msgstr "Warunki i regulamin:"
7980
 
7981
  # @ WPBDM
7982
- #: includes/views/submit_listing.php:843
7983
  #, fuzzy
7984
  msgctxt "templates"
7985
  msgid "I agree to the <a>Terms and Conditions</a>"
@@ -7987,7 +8055,7 @@ msgstr "Akceptuję rwarunki i regulamin korzystania z witryny."
7987
 
7988
  # @ WPBDM
7989
  #: templates/businessdirectory-listings.tpl.php:27
7990
- #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:6
7991
  #: templates/search.tpl.php:17
7992
  msgctxt "templates"
7993
  msgid "No listings found."
@@ -7995,14 +8063,14 @@ msgstr "Nie znaleziono Firm"
7995
 
7996
  # @ WPBDM
7997
  #: templates/businessdirectory-listings.tpl.php:38
7998
- #: templates/listings.tpl.php:17
7999
  msgctxt "templates"
8000
  msgid "&laquo; Previous "
8001
  msgstr "&laquo; Poprzednie"
8002
 
8003
  # @ WPBDM
8004
  #: templates/businessdirectory-listings.tpl.php:39
8005
- #: templates/listings.tpl.php:18
8006
  msgctxt "templates"
8007
  msgid "Next &raquo;"
8008
  msgstr "Następne &raquo;"
@@ -8347,7 +8415,7 @@ msgid "(Reset)"
8347
  msgstr "(Resetuj)"
8348
 
8349
  # @ WPBDM
8350
- #: includes/utils.php:169
8351
  msgctxt "utils"
8352
  msgid ""
8353
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
@@ -8356,61 +8424,61 @@ msgstr ""
8356
  "Zobacz dyrektywę \"post_max_size\"."
8357
 
8358
  # @ WPBDM
8359
- #: includes/utils.php:216
8360
  msgctxt "utils"
8361
  msgid "File size (%s) exceeds maximum file size of %s"
8362
  msgstr "Rozmiar pliku (%s) przekracz maksymalny dozwolony rozmiar %s"
8363
 
8364
  # @ WPBDM
8365
- #: includes/utils.php:224
8366
  msgctxt "utils"
8367
  msgid "File size (%s) is inferior to the required minimum file size of %s"
8368
  msgstr "Rozmiar pliku (%s) jest mniejszyod wymaganego minimum: %s"
8369
 
8370
  # @ WPBDM
8371
- #: includes/utils.php:233 includes/utils.php:240
8372
  msgctxt "utils"
8373
  msgid "File type \"%s\" is not allowed"
8374
  msgstr "Pliki typu \"%s\" , nie są dozwolone"
8375
 
8376
  # @ WPBDM
8377
- #: includes/utils.php:247
8378
  msgctxt "utils"
8379
  msgid "Unkown error while uploading file."
8380
  msgstr "Nieznany błąd podczas przesyłania pliku."
8381
 
8382
  # @ WPBDM
8383
- #: includes/utils.php:266
8384
  msgctxt "utils"
8385
  msgid "Uploaded file is not an image"
8386
  msgstr "Ładowany plik nie jest plikiem obrazu."
8387
 
8388
  # @ WPBDM
8389
- #: includes/utils.php:275
8390
  msgctxt "utils"
8391
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
8392
  msgstr "Szerokość obrazu (%s px) jest mniejsza od wymaganego minimum: %s px."
8393
 
8394
  # @ WPBDM
8395
- #: includes/utils.php:281
8396
  msgctxt "utils"
8397
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
8398
  msgstr "Wysokość obrazu (%s px) jest mniejsza od wymaganego minimum: %s px."
8399
 
8400
  # @ WPBDM
8401
- #: includes/utils.php:287
8402
  msgctxt "utils"
8403
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
8404
  msgstr "Szerokość obrazu (%s px) jest większa od dozwolonego maksimum: %s px."
8405
 
8406
  # @ WPBDM
8407
- #: includes/utils.php:293
8408
  msgctxt "utils"
8409
  msgid "Image height (%s px) is greater than maximum required height of %s px."
8410
  msgstr "Wysokość obrazu (%s px) jest większa od dozwolonego maksimum: %s px."
8411
 
8412
  # @ WPBDM
8413
- #: includes/utils.php:307
8414
  msgctxt "utils"
8415
  msgid "Error while uploading file"
8416
  msgstr "Błąd podczas przesyłania pliku."
@@ -8780,7 +8848,7 @@ msgid ""
8780
  "submit again."
8781
  msgstr ""
8782
 
8783
- #: includes/views/submit_listing.php:669
8784
  msgctxt "listing submit"
8785
  msgid ""
8786
  "Image upload is required, please provide at least one image and submit again."
@@ -9279,26 +9347,26 @@ msgid "Access Key"
9279
  msgstr ""
9280
 
9281
  # @ WPBDM
9282
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
9283
  #, fuzzy
9284
  msgctxt "admin infometabox"
9285
  msgid "Renewal url (copy & paste)"
9286
  msgstr "Adres URL odnowienia (kopiuj i wklej)"
9287
 
9288
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
9289
  msgctxt "admin infometabox"
9290
  msgid "Get renewal URL"
9291
  msgstr ""
9292
 
9293
  # @ WPBDM
9294
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:103
9295
  #, fuzzy
9296
  msgctxt "admin infometabox"
9297
  msgid "Send renewal e-mail"
9298
  msgstr "Wysyłaj do użytkownika e-mail o odnowieniu "
9299
 
9300
  # @ WPBDM
9301
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:108
9302
  #, fuzzy
9303
  msgctxt "admin infometabox"
9304
  msgid "Renew listing"
@@ -11265,11 +11333,6 @@ msgstr "Adres e-mail:"
11265
  #~ msgid "Listings"
11266
  #~ msgstr "Oferty"
11267
 
11268
- # @ WPBDM
11269
- #~ msgctxt "admin settings"
11270
- #~ msgid "Listing Renewal"
11271
- #~ msgstr "Oferta Odświeżona"
11272
-
11273
  # @ WPBDM
11274
  #~ msgctxt "admin settings"
11275
  #~ msgid "Featured (Sticky) listing settings"
@@ -11349,11 +11412,6 @@ msgstr "Adres e-mail:"
11349
  #~ msgid "Site title"
11350
  #~ msgstr "Tytuł strony"
11351
 
11352
- # @ WPBDM
11353
- #~ msgctxt "settings email"
11354
- #~ msgid "Site title (with link)"
11355
- #~ msgstr "Tytuł strony (z linkiem)"
11356
-
11357
  # @ WPBDM
11358
  #~ msgctxt "settings email"
11359
  #~ msgid "Site address (with link)"
@@ -11909,16 +11967,6 @@ msgstr "Adres e-mail:"
11909
  #~ "Wysyłane przed upływem okresu ważności oferty. Dotyczy tylko "
11910
  #~ "jednorazowych odnowień( \"nie powtarzających się\" - dostępne w opcjach)."
11911
 
11912
- # @ WPBDM
11913
- #~ msgctxt "settings"
11914
- #~ msgid "Listing's name (with link)"
11915
- #~ msgstr "Nazwa Oferty (z linkiem)"
11916
-
11917
- # @ WPBDM
11918
- #~ msgctxt "settings"
11919
- #~ msgid "Author's name"
11920
- #~ msgstr "Nazwisko Autora"
11921
-
11922
  # @ WPBDM
11923
  #~ msgctxt "settings"
11924
  #~ msgid "Category that is going to expire"
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-04-03 15:53:32+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"
214
  msgstr ""
215
 
216
  # @ WPBDM
217
+ #: includes/class-wpbdp.php:430
218
  #, fuzzy
219
  msgid ""
220
  "The directory features are disabled at this time because a <a>manual "
223
  "Funkcje pluginu KATALOG FIRM są chwilowo wyłączone, ponieważ plugin oczekuje "
224
  "na ręczną aktualizację, przed kontynuacją."
225
 
226
+ #: includes/class-wpbdp.php:437
227
  msgid ""
228
  "The directory is not available at this time. Please try again in a few "
229
  "minutes or contact the administrator if the problem persists."
1304
  msgid "Reported"
1305
  msgstr ""
1306
 
1307
+ #: includes/class-listing.php:729
1308
  msgctxt "listing status"
1309
  msgid "Unknown"
1310
  msgstr ""
1311
 
1312
+ #: includes/class-listing.php:730
1313
  msgctxt "listing status"
1314
  msgid "Legacy"
1315
  msgstr ""
1316
 
1317
  # @ WPBDM
1318
+ #: includes/class-listing.php:731
1319
  #, fuzzy
1320
  msgctxt "listing status"
1321
  msgid "Incomplete"
1322
  msgstr "Zakończona"
1323
 
1324
  # @ WPBDM
1325
+ #: includes/class-listing.php:732
1326
  #, fuzzy
1327
  msgctxt "listing status"
1328
  msgid "Pending Payment"
1329
  msgstr "Oczekujące na abonament"
1330
 
1331
  # @ WPBDM
1332
+ #: includes/class-listing.php:733
1333
  #, fuzzy
1334
  msgctxt "listing status"
1335
  msgid "Complete"
1336
  msgstr "Zakończona"
1337
 
1338
  # @ WPBDM
1339
+ #: includes/class-listing.php:734
1340
  #, fuzzy
1341
  msgctxt "listing status"
1342
  msgid "Pending Upgrade"
1343
  msgstr "Oferty oczekujące na zatwierdzenie"
1344
 
1345
  # @ WPBDM
1346
+ #: includes/class-listing.php:735
1347
  #, fuzzy
1348
  msgctxt "listing status"
1349
  msgid "Expired"
1350
  msgstr "Wygasłe"
1351
 
1352
  # @ WPBDM
1353
+ #: includes/class-listing.php:736
1354
  #, fuzzy
1355
  msgctxt "listing status"
1356
  msgid "Pending Renewal"
1357
  msgstr "Tylko aktywne i oczekujące na odświeżenie "
1358
 
1359
  # @ WPBDM
1360
+ #: includes/class-listing.php:737
1361
  #, fuzzy
1362
  msgctxt "listing status"
1363
  msgid "Abandoned"
1431
 
1432
  # @ WPBDM
1433
  #: includes/admin/class-admin.php:157
1434
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1435
  #, fuzzy
1436
  msgctxt "listing metabox"
1437
  msgid "Never"
1438
  msgstr "nigdy"
1439
 
1440
  #: includes/admin/class-admin.php:158
1441
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1442
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1443
  msgctxt "listing metabox"
1444
  msgid "Yes"
1445
  msgstr ""
1446
 
1447
  # @ WPBDM
1448
  #: includes/admin/class-admin.php:159
1449
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1450
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1451
  #, fuzzy
1452
  msgctxt "listing metabox"
1453
  msgid "No"
1506
 
1507
  # @ WPBDM
1508
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1509
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1510
  #, fuzzy
1511
  msgctxt "listing metabox"
1512
  msgid "N/A"
1520
  msgstr "Data odświeżenia"
1521
 
1522
  # @ WPBDM
1523
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:27
1524
  #, fuzzy
1525
  msgctxt "listing metabox"
1526
  msgid "Plan Details"
1527
  msgstr "Szczegóły Planu"
1528
 
1529
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:29
1530
  msgctxt "listing metabox"
1531
  msgid "Fee Plan"
1532
  msgstr ""
1533
 
1534
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:38
1535
  msgctxt "listing metabox"
1536
  msgid "Change plan"
1537
  msgstr ""
1538
 
1539
  # @ WPBDM
1540
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1541
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:70
1542
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1543
  #, fuzzy
1544
  msgctxt "listing metabox"
1545
  msgid "OK"
1546
  msgstr "Wszystko w porządku"
1547
 
1548
  # @ WPBDM
1549
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:51
1550
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1551
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:85
1552
  #, fuzzy
1553
  msgctxt "listing metabox"
1554
  msgid "Cancel"
1555
  msgstr "Anuluj"
1556
 
1557
  # @ WPBDM
1558
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:54
1559
  #, fuzzy
1560
  msgctxt "listing metabox"
1561
  msgid "Amount"
1562
  msgstr "Kwota"
1563
 
1564
  # @ WPBDM
1565
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:60
1566
  #, fuzzy
1567
  msgctxt "listing metabox"
1568
  msgid "Expires On"
1569
  msgstr "Upłynął okres ważności "
1570
 
1571
  # @ WPBDM
1572
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:65
1573
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1574
  #, fuzzy
1575
  msgctxt "listing metabox"
1576
  msgid "Edit"
1577
  msgstr "Edytuj"
1578
 
1579
  # @ WPBDM
1580
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:75
1581
  #, fuzzy
1582
  msgctxt "listing metabox"
1583
  msgid "# of images"
1584
  msgstr "Liczba Obrazów"
1585
 
1586
  # @ WPBDM
1587
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:88
1588
  #, fuzzy
1589
  msgctxt "listing metabox"
1590
  msgid "Is Featured?"
1591
  msgstr "%s RSS"
1592
 
1593
  # @ WPBDM
1594
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:95
1595
  #, fuzzy
1596
  msgctxt "listing metabox"
1597
  msgid "Is Recurring?"
3864
 
3865
  # @ WPBDM
3866
  #: includes/admin/settings/class-settings-bootstrap.php:516
3867
+ #: includes/functions.php:1010
3868
  msgctxt "admin settings"
3869
  msgid "Date posted"
3870
  msgstr "Data publikacji"
3871
 
3872
  # @ WPBDM
3873
  #: includes/admin/settings/class-settings-bootstrap.php:517
3874
+ #: includes/functions.php:1011
3875
  msgctxt "admin settings"
3876
  msgid "Date last modified"
3877
  msgstr "Data ostatnij modyfikacji"
4219
  msgstr "Sprawdzanie link URL"
4220
 
4221
  # @ WPBDM
4222
+ #: includes/admin/settings/class-settings-bootstrap.php:1157
4223
  msgctxt "admin settings"
4224
  msgid ""
4225
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4229
  "ręcznie usunąć plik \"%s\" lub de-aktywować plugin."
4230
 
4231
  # @ WPBDM
4232
+ #: includes/admin/settings/class-settings-bootstrap.php:1170
4233
  msgctxt "admin settings"
4234
  msgid ""
4235
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4239
  "\"%s\"."
4240
 
4241
  # @ WPBDM
4242
+ #: includes/admin/settings/class-settings-bootstrap.php:1175
4243
  msgctxt "admin settings"
4244
  msgid ""
4245
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4248
  "Nie można skopiować pluginu kompatybilności AJAX \"%s\". Tryb "
4249
  "Kompatybilności nie został aktywowany."
4250
 
4251
+ #: includes/functions.php:1008
4252
  msgctxt "admin settings"
4253
  msgid "User"
4254
  msgstr ""
4255
 
4256
  # @ WPBDM
4257
+ #: includes/functions.php:1009
4258
  msgctxt "admin settings"
4259
  msgid "User registration date"
4260
  msgstr "Data zakończenia emisji oferty"
4285
  msgid "Delete"
4286
  msgstr "Usuń"
4287
 
4288
+ #: includes/admin/settings/class-settings-admin.php:422
4289
  msgctxt "expiration notices"
4290
  msgid "recurring and non-recurring"
4291
  msgstr ""
4292
 
4293
  # @ WPBDM
4294
+ #: includes/admin/settings/class-settings-admin.php:424
4295
  #, fuzzy
4296
  msgctxt "expiration notices"
4297
  msgid "recurring only"
4298
  msgstr "(powtarzające się)"
4299
 
4300
  # @ WPBDM
4301
+ #: includes/admin/settings/class-settings-admin.php:426
4302
  #, fuzzy
4303
  msgctxt "expiration notices"
4304
  msgid "non-recurring only"
4305
  msgstr "(powtarzające się)"
4306
 
4307
  # @ WPBDM
4308
+ #: includes/admin/settings/class-settings-admin.php:430
4309
  #, fuzzy
4310
  msgctxt "expiration notices"
4311
  msgid "Sent when a listing (%s) is renewed."
4312
  msgstr "Wysłane po zapisaniu oferty."
4313
 
4314
  # @ WPBDM
4315
+ #: includes/admin/settings/class-settings-admin.php:435
4316
  #, fuzzy
4317
  msgctxt "expiration notices"
4318
  msgid "Sent when a listing (%s) expires."
4319
  msgstr "Upłynął okres ważności oferty."
4320
 
4321
  # @ WPBDM
4322
+ #: includes/admin/settings/class-settings-admin.php:443
4323
  #, fuzzy
4324
  msgctxt "expiration notices"
4325
  msgid "%d day"
4328
  msgstr[1] "%d dni"
4329
  msgstr[2] "%d dni"
4330
 
4331
+ #: includes/admin/settings/class-settings-admin.php:446
4332
  msgctxt "expiration notices"
4333
  msgid "%d week"
4334
  msgid_plural "%d weeks"
4336
  msgstr[1] ""
4337
  msgstr[2] ""
4338
 
4339
+ #: includes/admin/settings/class-settings-admin.php:449
4340
  msgctxt "expiration notices"
4341
  msgid "%d month"
4342
  msgid_plural "%d months"
4346
 
4347
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
4348
  #. non-recuring only)
4349
+ #: includes/admin/settings/class-settings-admin.php:455
4350
  msgctxt "expiration notices"
4351
  msgid "Sent %1$s before a listing (%2$s) expires."
4352
  msgstr ""
4354
  # @ WPBDM
4355
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
4356
  #. non-recuring only)
4357
+ #: includes/admin/settings/class-settings-admin.php:458
4358
  #, fuzzy
4359
  msgctxt "expiration notices"
4360
  msgid "Sent %1$s after a listing (%2$s) expires."
4361
  msgstr "Wysłane po zapisaniu oferty."
4362
 
4363
+ #: includes/admin/settings/class-settings-admin.php:475
4364
  msgctxt "expiration notices"
4365
  msgid "At the time of expiration"
4366
  msgstr ""
4367
 
4368
  # @ WPBDM
4369
+ #: includes/admin/settings/class-settings-admin.php:476
4370
  #, fuzzy
4371
  msgctxt "expiration notices"
4372
  msgid "Right after a successful renewal"
4373
  msgstr "Abonament został przypisany do oferty."
4374
 
4375
+ #: includes/admin/settings/class-settings-admin.php:485
4376
  msgctxt "expiration notices"
4377
  msgid "%d day before expiration"
4378
  msgid_plural "%d days before expiration"
4380
  msgstr[1] ""
4381
  msgstr[2] ""
4382
 
4383
+ #: includes/admin/settings/class-settings-admin.php:485
4384
  msgctxt "expiration notices"
4385
  msgid "%d day after expiration"
4386
  msgid_plural "%d days after expiration"
4388
  msgstr[1] ""
4389
  msgstr[2] ""
4390
 
4391
+ #: includes/admin/settings/class-settings-admin.php:488
4392
  msgctxt "expiration notices"
4393
  msgid "%d week before expiration"
4394
  msgid_plural "%d weeks before expiration"
4396
  msgstr[1] ""
4397
  msgstr[2] ""
4398
 
4399
+ #: includes/admin/settings/class-settings-admin.php:488
4400
  msgctxt "expiration notices"
4401
  msgid "%d week after expiration"
4402
  msgid_plural "%d weeks after expiration"
4404
  msgstr[1] ""
4405
  msgstr[2] ""
4406
 
4407
+ #: includes/admin/settings/class-settings-admin.php:491
4408
  msgctxt "expiration notices"
4409
  msgid "%d month before expiration"
4410
  msgid_plural "%d months before expiration"
4412
  msgstr[1] ""
4413
  msgstr[2] ""
4414
 
4415
+ #: includes/admin/settings/class-settings-admin.php:491
4416
  msgctxt "expiration notices"
4417
  msgid "%d month after expiration"
4418
  msgid_plural "%d months after expiration"
4421
  msgstr[2] ""
4422
 
4423
  # @ WPBDM
4424
+ #: includes/admin/settings/class-settings-admin.php:518
4425
  #, fuzzy
4426
  msgctxt "expiration notices"
4427
  msgid "Applies to"
4428
  msgstr "Stosowane do"
4429
 
4430
+ #: includes/admin/settings/class-settings-admin.php:521
4431
  msgctxt "expiration notices"
4432
  msgid "Non-recurring listings"
4433
  msgstr ""
4434
 
4435
  # @ WPBDM
4436
+ #: includes/admin/settings/class-settings-admin.php:522
4437
  #, fuzzy
4438
  msgctxt "expiration notices"
4439
  msgid "Recurring listings"
4440
  msgstr "Powrót do oferty."
4441
 
4442
+ #: includes/admin/settings/class-settings-admin.php:523
4443
  msgctxt "expiration notices"
4444
  msgid "Recurring and non-recurring listings"
4445
  msgstr ""
4446
 
4447
+ #: includes/admin/settings/class-settings-admin.php:528
4448
  msgctxt "expiration notices"
4449
  msgid "When to send?"
4450
  msgstr ""
4457
  msgstr "Forma E-Maila"
4458
 
4459
  # @ WPBDM
4460
+ #: includes/admin/settings/class-settings-admin.php:398
4461
+ #, fuzzy
4462
+ msgctxt "settings"
4463
+ msgid "Site title (with link)"
4464
+ msgstr "Tytuł strony (z linkiem)"
4465
+
4466
+ # @ WPBDM
4467
+ #: includes/admin/settings/class-settings-admin.php:399
4468
+ msgctxt "settings"
4469
+ msgid "Author's name"
4470
+ msgstr "Nazwisko Autora"
4471
+
4472
+ # @ WPBDM
4473
+ #: includes/admin/settings/class-settings-admin.php:400
4474
+ msgctxt "settings"
4475
+ msgid "Listing's name (with link)"
4476
+ msgstr "Nazwa Oferty (z linkiem)"
4477
+
4478
+ # @ WPBDM
4479
+ #: includes/admin/settings/class-settings-admin.php:401
4480
+ #, fuzzy
4481
+ msgctxt "settings"
4482
+ msgid "Listing's expiration date"
4483
+ msgstr "Data zakończenia emisji oferty"
4484
+
4485
+ # @ WPBDM
4486
+ #: includes/admin/settings/class-settings-admin.php:402
4487
+ #, fuzzy
4488
+ msgctxt "settings"
4489
+ msgid "Listing's renewal link"
4490
+ msgstr "Oferta Odświeżona"
4491
+
4492
+ # @ WPBDM
4493
+ #: includes/admin/settings/class-settings-admin.php:403
4494
+ #, fuzzy
4495
+ msgctxt "settings"
4496
+ msgid "Listing's categories"
4497
+ msgstr "Tytuł oferty"
4498
+
4499
+ # @ WPBDM
4500
+ #: includes/admin/settings/class-settings-admin.php:404
4501
+ #, fuzzy
4502
+ msgctxt "settings"
4503
+ msgid "Listing's last payment date"
4504
+ msgstr "Data zakończenia emisji oferty"
4505
+
4506
+ # @ WPBDM
4507
+ #: includes/admin/settings/class-settings-admin.php:405
4508
+ #, fuzzy
4509
+ msgctxt "settings"
4510
+ msgid "Listing's access key"
4511
+ msgstr "Pola/Obrazy"
4512
+
4513
+ # @ WPBDM
4514
+ #: includes/admin/settings/class-settings-admin.php:560
4515
  #, fuzzy
4516
  msgctxt "settings"
4517
  msgid "Settings reset to default."
6198
  msgstr "Dodaj nową ofertę"
6199
 
6200
  # @ WPBDM
6201
+ #: includes/class-listing.php:318
6202
  #, fuzzy
6203
  msgctxt "listing"
6204
  msgid "Listing expired"
6205
  msgstr "Upłynął okres ważności oferty."
6206
 
6207
  # @ WPBDM
6208
+ #: includes/class-listing.php:470
6209
  #, fuzzy
6210
  msgctxt "listing"
6211
  msgid "(Unavailable Plan)"
6212
  msgstr "(Abonament niedostępny)"
6213
 
6214
  # @ WPBDM
6215
+ #: includes/class-listing.php:626
6216
  #, fuzzy
6217
  msgctxt "listing"
6218
  msgid "Plan \"%s\" (recurring)"
6219
  msgstr "(powtarzające się)"
6220
 
6221
+ #: includes/class-listing.php:628
6222
  msgctxt "listing"
6223
  msgid "Plan \"%s\""
6224
  msgstr ""
6282
  msgstr "Oferta Bezpłatna"
6283
 
6284
  # @ WPBDM
6285
+ #: includes/class-listing-email-notification.php:151
6286
  msgctxt "notify email"
6287
  msgid "[%s] New listing notification"
6288
  msgstr "[%s] Powiadomienie o Nowej ofercie"
6289
 
6290
  # @ WPBDM
6291
+ #: includes/class-listing-email-notification.php:186
6292
  msgctxt "notify email"
6293
  msgid "[%s] Listing edit notification"
6294
  msgstr "[%s] Powiadomienie o Edycji oferty"
6295
 
6296
  # @ WPBDM
6297
+ #: includes/class-listing-email-notification.php:240
6298
  #, fuzzy
6299
  msgctxt "notify email"
6300
  msgid "[%s] Reported listing notification"
6340
  msgstr ""
6341
 
6342
  # @ WPBDM
6343
+ #: templates/email/listing-added.tpl.php:21
6344
+ #, fuzzy
 
6345
  msgctxt "notify email"
6346
+ msgid "Category"
6347
+ msgid_plural "Categories"
6348
+ msgstr[0] "Kategorie"
6349
+ msgstr[1] "Kategorie"
6350
+ msgstr[2] "Kategorie"
6351
 
6352
  # @ WPBDM
6353
+ #: templates/email/listing-added.tpl.php:27
6354
  #: templates/email/listing-edited.tpl.php:20
6355
  #: templates/email/listing-reported.tpl.php:19
6356
  msgctxt "notify email"
6357
  msgid "Posted By"
6358
  msgstr "Napisany przez"
6359
 
6360
+ #: templates/email/listing-added.tpl.php:36
6361
+ msgctxt "notify email"
6362
+ msgid "Annonymous User"
6363
+ msgstr ""
6364
+
6365
+ # @ WPBDM
6366
+ #: templates/email/listing-edited.tpl.php:17
6367
+ #: templates/email/listing-reported.tpl.php:17
6368
+ msgctxt "notify email"
6369
+ msgid "Categories"
6370
+ msgstr "Kategorie"
6371
+
6372
  #: templates/email/listing-reported.tpl.php:21
6373
  msgctxt "notify email"
6374
  msgid "Report IP"
6646
  msgstr ""
6647
 
6648
  # @ WPBDM
6649
+ #: includes/views/submit_listing.php:365
6650
  #, fuzzy
6651
  msgctxt "submit listing"
6652
  msgid "Terms and Conditions"
6693
  msgstr "Wybierz abonament dla tegj kategori \"%s\"."
6694
 
6695
  # @ WPBDM
6696
+ #: includes/views/submit_listing.php:725
6697
  #, fuzzy
6698
  msgctxt "submit listing"
6699
  msgid "Please enter your desired username."
6700
  msgstr "Proszę wprowadzić Imię"
6701
 
6702
  # @ WPBDM
6703
+ #: includes/views/submit_listing.php:730
6704
  #, fuzzy
6705
  msgctxt "submit listing"
6706
  msgid "Please enter the e-mail for your new account."
6707
  msgstr "Proszę wprowadzić Imię"
6708
 
6709
+ #: includes/views/submit_listing.php:735
6710
  msgctxt "submit listing"
6711
  msgid "Please enter the password for your new account."
6712
  msgstr ""
6713
 
6714
+ #: includes/views/submit_listing.php:745
6715
  msgctxt "submit listing"
6716
  msgid "The username you chose is already in use. Please use a different one."
6717
  msgstr ""
6718
 
6719
+ #: includes/views/submit_listing.php:750
6720
  msgctxt "submit listing"
6721
  msgid "The e-mail address you chose for your account is already in use."
6722
  msgstr ""
6723
 
6724
+ #: includes/views/submit_listing.php:765
6725
  msgctxt "submit listing"
6726
  msgid "Create a user account on this site"
6727
  msgstr ""
6728
 
6729
+ #: includes/views/submit_listing.php:772
6730
  msgctxt "submit listing"
6731
  msgid ""
6732
  "You need to create an account on the site. Please fill out the form below."
6733
  msgstr ""
6734
 
6735
+ #: includes/views/submit_listing.php:778
6736
  msgctxt "submit listing"
6737
  msgid "Username:"
6738
  msgstr ""
6739
 
6740
  # @ WPBDM
6741
+ #: includes/views/submit_listing.php:787
6742
  #, fuzzy
6743
  msgctxt "submit listing"
6744
  msgid "Email:"
6745
  msgstr "E-Mail: %s"
6746
 
6747
+ #: includes/views/submit_listing.php:796
6748
  msgctxt "submit listing"
6749
  msgid "Password:"
6750
  msgstr ""
6796
  msgstr "Ustawienia reCAPTCHA"
6797
 
6798
  # @ WPBDM
6799
+ #: includes/class-wpbdp.php:249
6800
  msgctxt "admin plugins"
6801
  msgid "Settings"
6802
  msgstr "Ustawienia"
6803
 
6804
  # @ WPBDM
6805
+ #: includes/class-wpbdp.php:331
6806
  #, fuzzy
6807
  msgctxt "listing image upload"
6808
  msgid "Can not upload any more images for this listing."
6809
  msgstr "Kategorie dla tej oferty"
6810
 
6811
+ #: includes/class-wpbdp.php:335
6812
  msgctxt "listing image upload"
6813
  msgid ""
6814
  "You're trying to upload %d images, but only have %d slot available. Please "
8035
  msgstr "Dostępne miejsca na Obrazy:"
8036
 
8037
  # @ WPBDM
8038
+ #: includes/views/submit_listing.php:834
8039
  msgctxt "templates"
8040
  msgid "Please agree to the Terms and Conditions."
8041
  msgstr "Musisz zaakceptować nasze warunki i regulamin korzystania z serwisu."
8042
 
8043
  # @ WPBDM
8044
+ #: includes/views/submit_listing.php:842
8045
  msgctxt "templates"
8046
  msgid "Terms and Conditions:"
8047
  msgstr "Warunki i regulamin:"
8048
 
8049
  # @ WPBDM
8050
+ #: includes/views/submit_listing.php:851
8051
  #, fuzzy
8052
  msgctxt "templates"
8053
  msgid "I agree to the <a>Terms and Conditions</a>"
8055
 
8056
  # @ WPBDM
8057
  #: templates/businessdirectory-listings.tpl.php:27
8058
+ #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:8
8059
  #: templates/search.tpl.php:17
8060
  msgctxt "templates"
8061
  msgid "No listings found."
8063
 
8064
  # @ WPBDM
8065
  #: templates/businessdirectory-listings.tpl.php:38
8066
+ #: templates/listings.tpl.php:24
8067
  msgctxt "templates"
8068
  msgid "&laquo; Previous "
8069
  msgstr "&laquo; Poprzednie"
8070
 
8071
  # @ WPBDM
8072
  #: templates/businessdirectory-listings.tpl.php:39
8073
+ #: templates/listings.tpl.php:25
8074
  msgctxt "templates"
8075
  msgid "Next &raquo;"
8076
  msgstr "Następne &raquo;"
8415
  msgstr "(Resetuj)"
8416
 
8417
  # @ WPBDM
8418
+ #: includes/utils.php:179
8419
  msgctxt "utils"
8420
  msgid ""
8421
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
8424
  "Zobacz dyrektywę \"post_max_size\"."
8425
 
8426
  # @ WPBDM
8427
+ #: includes/utils.php:226
8428
  msgctxt "utils"
8429
  msgid "File size (%s) exceeds maximum file size of %s"
8430
  msgstr "Rozmiar pliku (%s) przekracz maksymalny dozwolony rozmiar %s"
8431
 
8432
  # @ WPBDM
8433
+ #: includes/utils.php:234
8434
  msgctxt "utils"
8435
  msgid "File size (%s) is inferior to the required minimum file size of %s"
8436
  msgstr "Rozmiar pliku (%s) jest mniejszyod wymaganego minimum: %s"
8437
 
8438
  # @ WPBDM
8439
+ #: includes/utils.php:243 includes/utils.php:250
8440
  msgctxt "utils"
8441
  msgid "File type \"%s\" is not allowed"
8442
  msgstr "Pliki typu \"%s\" , nie są dozwolone"
8443
 
8444
  # @ WPBDM
8445
+ #: includes/utils.php:257
8446
  msgctxt "utils"
8447
  msgid "Unkown error while uploading file."
8448
  msgstr "Nieznany błąd podczas przesyłania pliku."
8449
 
8450
  # @ WPBDM
8451
+ #: includes/utils.php:276
8452
  msgctxt "utils"
8453
  msgid "Uploaded file is not an image"
8454
  msgstr "Ładowany plik nie jest plikiem obrazu."
8455
 
8456
  # @ WPBDM
8457
+ #: includes/utils.php:285
8458
  msgctxt "utils"
8459
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
8460
  msgstr "Szerokość obrazu (%s px) jest mniejsza od wymaganego minimum: %s px."
8461
 
8462
  # @ WPBDM
8463
+ #: includes/utils.php:291
8464
  msgctxt "utils"
8465
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
8466
  msgstr "Wysokość obrazu (%s px) jest mniejsza od wymaganego minimum: %s px."
8467
 
8468
  # @ WPBDM
8469
+ #: includes/utils.php:297
8470
  msgctxt "utils"
8471
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
8472
  msgstr "Szerokość obrazu (%s px) jest większa od dozwolonego maksimum: %s px."
8473
 
8474
  # @ WPBDM
8475
+ #: includes/utils.php:303
8476
  msgctxt "utils"
8477
  msgid "Image height (%s px) is greater than maximum required height of %s px."
8478
  msgstr "Wysokość obrazu (%s px) jest większa od dozwolonego maksimum: %s px."
8479
 
8480
  # @ WPBDM
8481
+ #: includes/utils.php:317
8482
  msgctxt "utils"
8483
  msgid "Error while uploading file"
8484
  msgstr "Błąd podczas przesyłania pliku."
8848
  "submit again."
8849
  msgstr ""
8850
 
8851
+ #: includes/views/submit_listing.php:677
8852
  msgctxt "listing submit"
8853
  msgid ""
8854
  "Image upload is required, please provide at least one image and submit again."
9347
  msgstr ""
9348
 
9349
  # @ WPBDM
9350
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
9351
  #, fuzzy
9352
  msgctxt "admin infometabox"
9353
  msgid "Renewal url (copy & paste)"
9354
  msgstr "Adres URL odnowienia (kopiuj i wklej)"
9355
 
9356
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
9357
  msgctxt "admin infometabox"
9358
  msgid "Get renewal URL"
9359
  msgstr ""
9360
 
9361
  # @ WPBDM
9362
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:107
9363
  #, fuzzy
9364
  msgctxt "admin infometabox"
9365
  msgid "Send renewal e-mail"
9366
  msgstr "Wysyłaj do użytkownika e-mail o odnowieniu "
9367
 
9368
  # @ WPBDM
9369
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:112
9370
  #, fuzzy
9371
  msgctxt "admin infometabox"
9372
  msgid "Renew listing"
11333
  #~ msgid "Listings"
11334
  #~ msgstr "Oferty"
11335
 
 
 
 
 
 
11336
  # @ WPBDM
11337
  #~ msgctxt "admin settings"
11338
  #~ msgid "Featured (Sticky) listing settings"
11412
  #~ msgid "Site title"
11413
  #~ msgstr "Tytuł strony"
11414
 
 
 
 
 
 
11415
  # @ WPBDM
11416
  #~ msgctxt "settings email"
11417
  #~ msgid "Site address (with link)"
11967
  #~ "Wysyłane przed upływem okresu ważności oferty. Dotyczy tylko "
11968
  #~ "jednorazowych odnowień( \"nie powtarzających się\" - dostępne w opcjach)."
11969
 
 
 
 
 
 
 
 
 
 
 
11970
  # @ WPBDM
11971
  #~ msgctxt "settings"
11972
  #~ msgid "Category that is going to expire"
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-03-02 04:44:48+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"
@@ -187,7 +187,7 @@ msgid ""
187
  "payment processor directly."
188
  msgstr ""
189
 
190
- #: includes/class-wpbdp.php:422
191
  #, fuzzy
192
  msgid ""
193
  "The directory features are disabled at this time because a <a>manual "
@@ -196,7 +196,7 @@ msgstr ""
196
  "Функции Справочника Услуг на настоящий момент отключены, потому что "
197
  "необходимо произвести ручное обновление плагина."
198
 
199
- #: includes/class-wpbdp.php:429
200
  msgid ""
201
  "The directory is not available at this time. Please try again in a few "
202
  "minutes or contact the administrator if the problem persists."
@@ -1143,53 +1143,53 @@ msgctxt "listing status"
1143
  msgid "Reported"
1144
  msgstr ""
1145
 
1146
- #: includes/class-listing.php:705
1147
  msgctxt "listing status"
1148
  msgid "Unknown"
1149
  msgstr ""
1150
 
1151
- #: includes/class-listing.php:706
1152
  msgctxt "listing status"
1153
  msgid "Legacy"
1154
  msgstr ""
1155
 
1156
- #: includes/class-listing.php:707
1157
  #, fuzzy
1158
  msgctxt "listing status"
1159
  msgid "Incomplete"
1160
  msgstr "Завершено"
1161
 
1162
- #: includes/class-listing.php:708
1163
  #, fuzzy
1164
  msgctxt "listing status"
1165
  msgid "Pending Payment"
1166
  msgstr "Платёж был заброшен."
1167
 
1168
- #: includes/class-listing.php:709
1169
  #, fuzzy
1170
  msgctxt "listing status"
1171
  msgid "Complete"
1172
  msgstr "Завершено"
1173
 
1174
- #: includes/class-listing.php:710
1175
  #, fuzzy
1176
  msgctxt "listing status"
1177
  msgid "Pending Upgrade"
1178
  msgstr "Ожидается подтверждение"
1179
 
1180
- #: includes/class-listing.php:711
1181
  #, fuzzy
1182
  msgctxt "listing status"
1183
  msgid "Expired"
1184
  msgstr "Истекло"
1185
 
1186
- #: includes/class-listing.php:712
1187
  #, fuzzy
1188
  msgctxt "listing status"
1189
  msgid "Pending Renewal"
1190
  msgstr "Активные + ожидающие продление"
1191
 
1192
- #: includes/class-listing.php:713
1193
  #, fuzzy
1194
  msgctxt "listing status"
1195
  msgid "Abandoned"
@@ -1253,22 +1253,22 @@ msgid "Send access keys"
1253
  msgstr "Поля и Изображения записи"
1254
 
1255
  #: includes/admin/class-admin.php:157
1256
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:63
1257
  #, fuzzy
1258
  msgctxt "listing metabox"
1259
  msgid "Never"
1260
  msgstr "никогда"
1261
 
1262
  #: includes/admin/class-admin.php:158
1263
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1264
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1265
  msgctxt "listing metabox"
1266
  msgid "Yes"
1267
  msgstr ""
1268
 
1269
  #: includes/admin/class-admin.php:159
1270
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1271
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1272
  #, fuzzy
1273
  msgctxt "listing metabox"
1274
  msgid "No"
@@ -1319,7 +1319,7 @@ msgid "Listing Status"
1319
  msgstr "Записи"
1320
 
1321
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1322
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:20
1323
  #, fuzzy
1324
  msgctxt "listing metabox"
1325
  msgid "N/A"
@@ -1331,70 +1331,70 @@ msgctxt "listing metabox"
1331
  msgid "Last renew date"
1332
  msgstr "Дата продления"
1333
 
1334
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1335
  #, fuzzy
1336
  msgctxt "listing metabox"
1337
  msgid "Plan Details"
1338
  msgstr "Детали плана"
1339
 
1340
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:25
1341
  msgctxt "listing metabox"
1342
  msgid "Fee Plan"
1343
  msgstr ""
1344
 
1345
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:34
1346
  msgctxt "listing metabox"
1347
  msgid "Change plan"
1348
  msgstr ""
1349
 
1350
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:46
1351
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:66
1352
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1353
  #, fuzzy
1354
  msgctxt "listing metabox"
1355
  msgid "OK"
1356
  msgstr "OK"
1357
 
1358
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:47
1359
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1360
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:81
1361
  #, fuzzy
1362
  msgctxt "listing metabox"
1363
  msgid "Cancel"
1364
  msgstr "Отменить"
1365
 
1366
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1367
  #, fuzzy
1368
  msgctxt "listing metabox"
1369
  msgid "Amount"
1370
  msgstr "Стоимость"
1371
 
1372
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:56
1373
  #, fuzzy
1374
  msgctxt "listing metabox"
1375
  msgid "Expires On"
1376
  msgstr "Истекает"
1377
 
1378
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:61
1379
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:76
1380
  #, fuzzy
1381
  msgctxt "listing metabox"
1382
  msgid "Edit"
1383
  msgstr "Изменить"
1384
 
1385
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1386
  #, fuzzy
1387
  msgctxt "listing metabox"
1388
  msgid "# of images"
1389
  msgstr "Картинок"
1390
 
1391
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1392
  #, fuzzy
1393
  msgctxt "listing metabox"
1394
  msgid "Is Featured?"
1395
  msgstr "Лента %ы"
1396
 
1397
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1398
  #, fuzzy
1399
  msgctxt "listing metabox"
1400
  msgid "Is Recurring?"
@@ -3408,13 +3408,13 @@ msgid "Author"
3408
  msgstr "По автору"
3409
 
3410
  #: includes/admin/settings/class-settings-bootstrap.php:516
3411
- #: includes/functions.php:995
3412
  msgctxt "admin settings"
3413
  msgid "Date posted"
3414
  msgstr "По дате публикации"
3415
 
3416
  #: includes/admin/settings/class-settings-bootstrap.php:517
3417
- #: includes/functions.php:996
3418
  msgctxt "admin settings"
3419
  msgid "Date last modified"
3420
  msgstr "По дате изменения"
@@ -3722,7 +3722,7 @@ msgctxt "admin settings"
3722
  msgid "Checkout URL link"
3723
  msgstr "Адрес URL страницы оплаты"
3724
 
3725
- #: includes/admin/settings/class-settings-bootstrap.php:1156
3726
  msgctxt "admin settings"
3727
  msgid ""
3728
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
@@ -3731,7 +3731,7 @@ msgstr ""
3731
  "Не удалось удалить плагин \"Справочник Услуг - Модуль Совместимости с AJAX"
3732
  "\". Пожалуйста удалите файл \"%s\" вручную или деактивируйте плагин."
3733
 
3734
- #: includes/admin/settings/class-settings-bootstrap.php:1169
3735
  msgctxt "admin settings"
3736
  msgid ""
3737
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
@@ -3740,7 +3740,7 @@ msgstr ""
3740
  "Не удалось активировать режим совместимости с AJAX: директория \"%s\" не "
3741
  "была создана."
3742
 
3743
- #: includes/admin/settings/class-settings-bootstrap.php:1174
3744
  msgctxt "admin settings"
3745
  msgid ""
3746
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
@@ -3749,12 +3749,12 @@ msgstr ""
3749
  "Не удалось скопировать плагин совместимости с AJAX \"%s\". Режим "
3750
  "совместимости не был активирован."
3751
 
3752
- #: includes/functions.php:993
3753
  msgctxt "admin settings"
3754
  msgid "User"
3755
  msgstr ""
3756
 
3757
- #: includes/functions.php:994
3758
  msgctxt "admin settings"
3759
  msgid "User registration date"
3760
  msgstr "Дата окончания срока действия"
@@ -3782,36 +3782,36 @@ msgctxt "expiration notices"
3782
  msgid "Delete"
3783
  msgstr "Удалить"
3784
 
3785
- #: includes/admin/settings/class-settings-admin.php:411
3786
  msgctxt "expiration notices"
3787
  msgid "recurring and non-recurring"
3788
  msgstr ""
3789
 
3790
- #: includes/admin/settings/class-settings-admin.php:413
3791
  #, fuzzy
3792
  msgctxt "expiration notices"
3793
  msgid "recurring only"
3794
  msgstr "(периодически)"
3795
 
3796
- #: includes/admin/settings/class-settings-admin.php:415
3797
  #, fuzzy
3798
  msgctxt "expiration notices"
3799
  msgid "non-recurring only"
3800
  msgstr "(периодически)"
3801
 
3802
- #: includes/admin/settings/class-settings-admin.php:419
3803
  #, fuzzy
3804
  msgctxt "expiration notices"
3805
  msgid "Sent when a listing (%s) is renewed."
3806
  msgstr "Посылается как только новая запись была помещена в базу данных."
3807
 
3808
- #: includes/admin/settings/class-settings-admin.php:424
3809
  #, fuzzy
3810
  msgctxt "expiration notices"
3811
  msgid "Sent when a listing (%s) expires."
3812
  msgstr "Срок действия записи истёк"
3813
 
3814
- #: includes/admin/settings/class-settings-admin.php:432
3815
  #, fuzzy
3816
  msgctxt "expiration notices"
3817
  msgid "%d day"
@@ -3820,7 +3820,7 @@ msgstr[0] "%d день"
3820
  msgstr[1] "%d дней"
3821
  msgstr[2] ""
3822
 
3823
- #: includes/admin/settings/class-settings-admin.php:435
3824
  msgctxt "expiration notices"
3825
  msgid "%d week"
3826
  msgid_plural "%d weeks"
@@ -3828,7 +3828,7 @@ msgstr[0] ""
3828
  msgstr[1] ""
3829
  msgstr[2] ""
3830
 
3831
- #: includes/admin/settings/class-settings-admin.php:438
3832
  msgctxt "expiration notices"
3833
  msgid "%d month"
3834
  msgid_plural "%d months"
@@ -3838,31 +3838,31 @@ msgstr[2] ""
3838
 
3839
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3840
  #. non-recuring only)
3841
- #: includes/admin/settings/class-settings-admin.php:444
3842
  msgctxt "expiration notices"
3843
  msgid "Sent %1$s before a listing (%2$s) expires."
3844
  msgstr ""
3845
 
3846
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3847
  #. non-recuring only)
3848
- #: includes/admin/settings/class-settings-admin.php:447
3849
  #, fuzzy
3850
  msgctxt "expiration notices"
3851
  msgid "Sent %1$s after a listing (%2$s) expires."
3852
  msgstr "Посылается как только новая запись была помещена в базу данных."
3853
 
3854
- #: includes/admin/settings/class-settings-admin.php:464
3855
  msgctxt "expiration notices"
3856
  msgid "At the time of expiration"
3857
  msgstr ""
3858
 
3859
- #: includes/admin/settings/class-settings-admin.php:465
3860
  #, fuzzy
3861
  msgctxt "expiration notices"
3862
  msgid "Right after a successful renewal"
3863
  msgstr "Тариф был успешно назначен."
3864
 
3865
- #: includes/admin/settings/class-settings-admin.php:474
3866
  msgctxt "expiration notices"
3867
  msgid "%d day before expiration"
3868
  msgid_plural "%d days before expiration"
@@ -3870,7 +3870,7 @@ msgstr[0] ""
3870
  msgstr[1] ""
3871
  msgstr[2] ""
3872
 
3873
- #: includes/admin/settings/class-settings-admin.php:474
3874
  msgctxt "expiration notices"
3875
  msgid "%d day after expiration"
3876
  msgid_plural "%d days after expiration"
@@ -3878,7 +3878,7 @@ msgstr[0] ""
3878
  msgstr[1] ""
3879
  msgstr[2] ""
3880
 
3881
- #: includes/admin/settings/class-settings-admin.php:477
3882
  msgctxt "expiration notices"
3883
  msgid "%d week before expiration"
3884
  msgid_plural "%d weeks before expiration"
@@ -3886,7 +3886,7 @@ msgstr[0] ""
3886
  msgstr[1] ""
3887
  msgstr[2] ""
3888
 
3889
- #: includes/admin/settings/class-settings-admin.php:477
3890
  msgctxt "expiration notices"
3891
  msgid "%d week after expiration"
3892
  msgid_plural "%d weeks after expiration"
@@ -3894,7 +3894,7 @@ msgstr[0] ""
3894
  msgstr[1] ""
3895
  msgstr[2] ""
3896
 
3897
- #: includes/admin/settings/class-settings-admin.php:480
3898
  msgctxt "expiration notices"
3899
  msgid "%d month before expiration"
3900
  msgid_plural "%d months before expiration"
@@ -3902,7 +3902,7 @@ msgstr[0] ""
3902
  msgstr[1] ""
3903
  msgstr[2] ""
3904
 
3905
- #: includes/admin/settings/class-settings-admin.php:480
3906
  msgctxt "expiration notices"
3907
  msgid "%d month after expiration"
3908
  msgid_plural "%d months after expiration"
@@ -3910,29 +3910,29 @@ msgstr[0] ""
3910
  msgstr[1] ""
3911
  msgstr[2] ""
3912
 
3913
- #: includes/admin/settings/class-settings-admin.php:500
3914
  #, fuzzy
3915
  msgctxt "expiration notices"
3916
  msgid "Applies to"
3917
  msgstr "Применимо к..."
3918
 
3919
- #: includes/admin/settings/class-settings-admin.php:503
3920
  msgctxt "expiration notices"
3921
  msgid "Non-recurring listings"
3922
  msgstr ""
3923
 
3924
- #: includes/admin/settings/class-settings-admin.php:504
3925
  #, fuzzy
3926
  msgctxt "expiration notices"
3927
  msgid "Recurring listings"
3928
  msgstr "Вернуться к записям."
3929
 
3930
- #: includes/admin/settings/class-settings-admin.php:505
3931
  msgctxt "expiration notices"
3932
  msgid "Recurring and non-recurring listings"
3933
  msgstr ""
3934
 
3935
- #: includes/admin/settings/class-settings-admin.php:510
3936
  msgctxt "expiration notices"
3937
  msgid "When to send?"
3938
  msgstr ""
@@ -3943,7 +3943,53 @@ msgctxt "expiration notices"
3943
  msgid "E-mail body text"
3944
  msgstr "Тело письма"
3945
 
3946
- #: includes/admin/settings/class-settings-admin.php:542
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3947
  #, fuzzy
3948
  msgctxt "settings"
3949
  msgid "Settings reset to default."
@@ -5469,25 +5515,25 @@ msgctxt "listing"
5469
  msgid "Add New Listing"
5470
  msgstr "Добавить запись"
5471
 
5472
- #: includes/class-listing.php:294
5473
  #, fuzzy
5474
  msgctxt "listing"
5475
  msgid "Listing expired"
5476
  msgstr "Срок действия записи истёк"
5477
 
5478
- #: includes/class-listing.php:446
5479
  #, fuzzy
5480
  msgctxt "listing"
5481
  msgid "(Unavailable Plan)"
5482
  msgstr "(Тариф недоступен)"
5483
 
5484
- #: includes/class-listing.php:602
5485
  #, fuzzy
5486
  msgctxt "listing"
5487
  msgid "Plan \"%s\" (recurring)"
5488
  msgstr "(периодически)"
5489
 
5490
- #: includes/class-listing.php:604
5491
  msgctxt "listing"
5492
  msgid "Plan \"%s\""
5493
  msgstr ""
@@ -5542,17 +5588,17 @@ msgctxt "fees-api"
5542
  msgid "Free Listing"
5543
  msgstr "Бесплатные записи"
5544
 
5545
- #: includes/class-listing-email-notification.php:130
5546
  msgctxt "notify email"
5547
  msgid "[%s] New listing notification"
5548
  msgstr "[%s] Оповещение о новой записи"
5549
 
5550
- #: includes/class-listing-email-notification.php:165
5551
  msgctxt "notify email"
5552
  msgid "[%s] Listing edit notification"
5553
  msgstr "[%s] Оповещение об изменении записи"
5554
 
5555
- #: includes/class-listing-email-notification.php:219
5556
  #, fuzzy
5557
  msgctxt "notify email"
5558
  msgid "[%s] Reported listing notification"
@@ -5593,20 +5639,33 @@ msgctxt "notify email"
5593
  msgid "Admin URL"
5594
  msgstr "Cтраница входа в сайт"
5595
 
5596
- #: templates/email/listing-added.tpl.php:17
5597
- #: templates/email/listing-edited.tpl.php:17
5598
- #: templates/email/listing-reported.tpl.php:17
5599
  msgctxt "notify email"
5600
- msgid "Categories"
5601
- msgstr "Рубрики"
 
 
 
5602
 
5603
- #: templates/email/listing-added.tpl.php:20
5604
  #: templates/email/listing-edited.tpl.php:20
5605
  #: templates/email/listing-reported.tpl.php:19
5606
  msgctxt "notify email"
5607
  msgid "Posted By"
5608
  msgstr "Создано"
5609
 
 
 
 
 
 
 
 
 
 
 
 
5610
  #: templates/email/listing-reported.tpl.php:21
5611
  msgctxt "notify email"
5612
  msgid "Report IP"
@@ -5852,7 +5911,7 @@ msgctxt "submit listing"
5852
  msgid "Account Creation"
5853
  msgstr ""
5854
 
5855
- #: includes/views/submit_listing.php:363
5856
  #, fuzzy
5857
  msgctxt "submit listing"
5858
  msgid "Terms and Conditions"
@@ -5894,56 +5953,56 @@ msgctxt "submit listing"
5894
  msgid "Please choose a valid fee plan for your category selection."
5895
  msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
5896
 
5897
- #: includes/views/submit_listing.php:717
5898
  #, fuzzy
5899
  msgctxt "submit listing"
5900
  msgid "Please enter your desired username."
5901
  msgstr "Пожалуйста введите Ваше имя."
5902
 
5903
- #: includes/views/submit_listing.php:722
5904
  #, fuzzy
5905
  msgctxt "submit listing"
5906
  msgid "Please enter the e-mail for your new account."
5907
  msgstr "Пожалуйста введите Ваше имя."
5908
 
5909
- #: includes/views/submit_listing.php:727
5910
  msgctxt "submit listing"
5911
  msgid "Please enter the password for your new account."
5912
  msgstr ""
5913
 
5914
- #: includes/views/submit_listing.php:737
5915
  msgctxt "submit listing"
5916
  msgid "The username you chose is already in use. Please use a different one."
5917
  msgstr ""
5918
 
5919
- #: includes/views/submit_listing.php:742
5920
  msgctxt "submit listing"
5921
  msgid "The e-mail address you chose for your account is already in use."
5922
  msgstr ""
5923
 
5924
- #: includes/views/submit_listing.php:757
5925
  msgctxt "submit listing"
5926
  msgid "Create a user account on this site"
5927
  msgstr ""
5928
 
5929
- #: includes/views/submit_listing.php:764
5930
  msgctxt "submit listing"
5931
  msgid ""
5932
  "You need to create an account on the site. Please fill out the form below."
5933
  msgstr ""
5934
 
5935
- #: includes/views/submit_listing.php:770
5936
  msgctxt "submit listing"
5937
  msgid "Username:"
5938
  msgstr ""
5939
 
5940
- #: includes/views/submit_listing.php:779
5941
  #, fuzzy
5942
  msgctxt "submit listing"
5943
  msgid "Email:"
5944
  msgstr "Адрес: %s"
5945
 
5946
- #: includes/views/submit_listing.php:788
5947
  msgctxt "submit listing"
5948
  msgid "Password:"
5949
  msgstr ""
@@ -5988,18 +6047,18 @@ msgctxt "recaptcha"
5988
  msgid "reCAPTCHA"
5989
  msgstr "Настройки reCAPTCHA"
5990
 
5991
- #: includes/class-wpbdp.php:241
5992
  msgctxt "admin plugins"
5993
  msgid "Settings"
5994
  msgstr "Настройки"
5995
 
5996
- #: includes/class-wpbdp.php:323
5997
  #, fuzzy
5998
  msgctxt "listing image upload"
5999
  msgid "Can not upload any more images for this listing."
6000
  msgstr "Рубрики этой записи"
6001
 
6002
- #: includes/class-wpbdp.php:327
6003
  msgctxt "listing image upload"
6004
  msgid ""
6005
  "You're trying to upload %d images, but only have %d slot available. Please "
@@ -7088,37 +7147,37 @@ msgctxt "templates"
7088
  msgid "View not available."
7089
  msgstr "Свободных мест для загрузки изображений:"
7090
 
7091
- #: includes/views/submit_listing.php:826
7092
  msgctxt "templates"
7093
  msgid "Please agree to the Terms and Conditions."
7094
  msgstr "Пожалуйста примите наши Условия и Положения."
7095
 
7096
- #: includes/views/submit_listing.php:834
7097
  msgctxt "templates"
7098
  msgid "Terms and Conditions:"
7099
  msgstr "Условия и Положения:"
7100
 
7101
- #: includes/views/submit_listing.php:843
7102
  #, fuzzy
7103
  msgctxt "templates"
7104
  msgid "I agree to the <a>Terms and Conditions</a>"
7105
  msgstr "Я согласен с Условиями и Положениями"
7106
 
7107
  #: templates/businessdirectory-listings.tpl.php:27
7108
- #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:6
7109
  #: templates/search.tpl.php:17
7110
  msgctxt "templates"
7111
  msgid "No listings found."
7112
  msgstr "Записи не найдены."
7113
 
7114
  #: templates/businessdirectory-listings.tpl.php:38
7115
- #: templates/listings.tpl.php:17
7116
  msgctxt "templates"
7117
  msgid "&laquo; Previous "
7118
  msgstr "&laquo; Предыдущая "
7119
 
7120
  #: templates/businessdirectory-listings.tpl.php:39
7121
- #: templates/listings.tpl.php:18
7122
  msgctxt "templates"
7123
  msgid "Next &raquo;"
7124
  msgstr "Следующая &raquo;"
@@ -7413,7 +7472,7 @@ msgctxt "sort"
7413
  msgid "(Reset)"
7414
  msgstr "(Сбросить)"
7415
 
7416
- #: includes/utils.php:169
7417
  msgctxt "utils"
7418
  msgid ""
7419
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
@@ -7421,56 +7480,56 @@ msgstr ""
7421
  "Данные, переданные на сервер методом POST превышают максимальный размер для "
7422
  "PHP. Обратите внимание на параметр \"post_max_size\" в вашем файле php.ini."
7423
 
7424
- #: includes/utils.php:216
7425
  msgctxt "utils"
7426
  msgid "File size (%s) exceeds maximum file size of %s"
7427
  msgstr "Размер файла (%s) превышает максимальный размер файла - %s"
7428
 
7429
- #: includes/utils.php:224
7430
  msgctxt "utils"
7431
  msgid "File size (%s) is inferior to the required minimum file size of %s"
7432
  msgstr "Размер файла (%s) меньше, чем минимальный разрешённый размер - %s"
7433
 
7434
- #: includes/utils.php:233 includes/utils.php:240
7435
  msgctxt "utils"
7436
  msgid "File type \"%s\" is not allowed"
7437
  msgstr "Файл типа \"%s\" не допускается к загрузке"
7438
 
7439
- #: includes/utils.php:247
7440
  msgctxt "utils"
7441
  msgid "Unkown error while uploading file."
7442
  msgstr "Неизвестная ошибка при загрузке файла."
7443
 
7444
- #: includes/utils.php:266
7445
  msgctxt "utils"
7446
  msgid "Uploaded file is not an image"
7447
  msgstr "Загруженный файл не является изображением."
7448
 
7449
- #: includes/utils.php:275
7450
  msgctxt "utils"
7451
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
7452
  msgstr "Ширина изображения меньше минимально разрешённой ширины - %s пиксел."
7453
 
7454
- #: includes/utils.php:281
7455
  msgctxt "utils"
7456
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
7457
  msgstr "Высота изображения меньше минимально разрешённой высоты - %s пиксел."
7458
 
7459
- #: includes/utils.php:287
7460
  msgctxt "utils"
7461
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
7462
  msgstr ""
7463
  "Ширина изображения (%s пиксел) больше чем разрешённая максимальная ширина - "
7464
  "%s пиксел."
7465
 
7466
- #: includes/utils.php:293
7467
  msgctxt "utils"
7468
  msgid "Image height (%s px) is greater than maximum required height of %s px."
7469
  msgstr ""
7470
  "Высота изображения (%s пиксел) больше чем разрешённая максимальная высота - "
7471
  "%s пиксел."
7472
 
7473
- #: includes/utils.php:307
7474
  msgctxt "utils"
7475
  msgid "Error while uploading file"
7476
  msgstr "Ошибка при загрузке файла"
@@ -7793,7 +7852,7 @@ msgid ""
7793
  "submit again."
7794
  msgstr ""
7795
 
7796
- #: includes/views/submit_listing.php:669
7797
  msgctxt "listing submit"
7798
  msgid ""
7799
  "Image upload is required, please provide at least one image and submit again."
@@ -8225,24 +8284,24 @@ msgctxt "admin infometabox"
8225
  msgid "Access Key"
8226
  msgstr ""
8227
 
8228
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
8229
  #, fuzzy
8230
  msgctxt "admin infometabox"
8231
  msgid "Renewal url (copy & paste)"
8232
  msgstr "Ссылка для продления (для копирования)"
8233
 
8234
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
8235
  msgctxt "admin infometabox"
8236
  msgid "Get renewal URL"
8237
  msgstr ""
8238
 
8239
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:103
8240
  #, fuzzy
8241
  msgctxt "admin infometabox"
8242
  msgid "Send renewal e-mail"
8243
  msgstr "Послать уведомление о продлении автору по электронной почте"
8244
 
8245
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:108
8246
  #, fuzzy
8247
  msgctxt "admin infometabox"
8248
  msgid "Renew listing"
@@ -9959,10 +10018,6 @@ msgstr "Адрес"
9959
  #~ msgid "Listings"
9960
  #~ msgstr "Записи"
9961
 
9962
- #~ msgctxt "admin settings"
9963
- #~ msgid "Listing Renewal"
9964
- #~ msgstr "Продление срока действия"
9965
-
9966
  #~ msgctxt "admin settings"
9967
  #~ msgid "Featured (Sticky) listing settings"
9968
  #~ msgstr "Настройки специальных (прикрепленных) записей"
@@ -10029,10 +10084,6 @@ msgstr "Адрес"
10029
  #~ msgid "Site title"
10030
  #~ msgstr "Название сайта"
10031
 
10032
- #~ msgctxt "settings email"
10033
- #~ msgid "Site title (with link)"
10034
- #~ msgstr "Название сайта (со ссылкой)"
10035
-
10036
  #~ msgctxt "settings email"
10037
  #~ msgid "Site address (with link)"
10038
  #~ msgstr "Адрес сайта (со ссылкой)"
@@ -10484,14 +10535,6 @@ msgstr "Адрес"
10484
  #~ "Посылается за несколько дней до истечения срока действия записи. "
10485
  #~ "Применяется только к записям, не имеющим автоматического продления."
10486
 
10487
- #~ msgctxt "settings"
10488
- #~ msgid "Listing's name (with link)"
10489
- #~ msgstr "Имя записи (вместе со ссылкой)"
10490
-
10491
- #~ msgctxt "settings"
10492
- #~ msgid "Author's name"
10493
- #~ msgstr "Имя автора"
10494
-
10495
  #~ msgctxt "settings"
10496
  #~ msgid "Category that is going to expire"
10497
  #~ 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-04-03 15:53:32+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"
187
  "payment processor directly."
188
  msgstr ""
189
 
190
+ #: includes/class-wpbdp.php:430
191
  #, fuzzy
192
  msgid ""
193
  "The directory features are disabled at this time because a <a>manual "
196
  "Функции Справочника Услуг на настоящий момент отключены, потому что "
197
  "необходимо произвести ручное обновление плагина."
198
 
199
+ #: includes/class-wpbdp.php:437
200
  msgid ""
201
  "The directory is not available at this time. Please try again in a few "
202
  "minutes or contact the administrator if the problem persists."
1143
  msgid "Reported"
1144
  msgstr ""
1145
 
1146
+ #: includes/class-listing.php:729
1147
  msgctxt "listing status"
1148
  msgid "Unknown"
1149
  msgstr ""
1150
 
1151
+ #: includes/class-listing.php:730
1152
  msgctxt "listing status"
1153
  msgid "Legacy"
1154
  msgstr ""
1155
 
1156
+ #: includes/class-listing.php:731
1157
  #, fuzzy
1158
  msgctxt "listing status"
1159
  msgid "Incomplete"
1160
  msgstr "Завершено"
1161
 
1162
+ #: includes/class-listing.php:732
1163
  #, fuzzy
1164
  msgctxt "listing status"
1165
  msgid "Pending Payment"
1166
  msgstr "Платёж был заброшен."
1167
 
1168
+ #: includes/class-listing.php:733
1169
  #, fuzzy
1170
  msgctxt "listing status"
1171
  msgid "Complete"
1172
  msgstr "Завершено"
1173
 
1174
+ #: includes/class-listing.php:734
1175
  #, fuzzy
1176
  msgctxt "listing status"
1177
  msgid "Pending Upgrade"
1178
  msgstr "Ожидается подтверждение"
1179
 
1180
+ #: includes/class-listing.php:735
1181
  #, fuzzy
1182
  msgctxt "listing status"
1183
  msgid "Expired"
1184
  msgstr "Истекло"
1185
 
1186
+ #: includes/class-listing.php:736
1187
  #, fuzzy
1188
  msgctxt "listing status"
1189
  msgid "Pending Renewal"
1190
  msgstr "Активные + ожидающие продление"
1191
 
1192
+ #: includes/class-listing.php:737
1193
  #, fuzzy
1194
  msgctxt "listing status"
1195
  msgid "Abandoned"
1253
  msgstr "Поля и Изображения записи"
1254
 
1255
  #: includes/admin/class-admin.php:157
1256
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1257
  #, fuzzy
1258
  msgctxt "listing metabox"
1259
  msgid "Never"
1260
  msgstr "никогда"
1261
 
1262
  #: includes/admin/class-admin.php:158
1263
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1264
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1265
  msgctxt "listing metabox"
1266
  msgid "Yes"
1267
  msgstr ""
1268
 
1269
  #: includes/admin/class-admin.php:159
1270
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1271
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1272
  #, fuzzy
1273
  msgctxt "listing metabox"
1274
  msgid "No"
1319
  msgstr "Записи"
1320
 
1321
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1322
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1323
  #, fuzzy
1324
  msgctxt "listing metabox"
1325
  msgid "N/A"
1331
  msgid "Last renew date"
1332
  msgstr "Дата продления"
1333
 
1334
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:27
1335
  #, fuzzy
1336
  msgctxt "listing metabox"
1337
  msgid "Plan Details"
1338
  msgstr "Детали плана"
1339
 
1340
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:29
1341
  msgctxt "listing metabox"
1342
  msgid "Fee Plan"
1343
  msgstr ""
1344
 
1345
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:38
1346
  msgctxt "listing metabox"
1347
  msgid "Change plan"
1348
  msgstr ""
1349
 
1350
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1351
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:70
1352
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1353
  #, fuzzy
1354
  msgctxt "listing metabox"
1355
  msgid "OK"
1356
  msgstr "OK"
1357
 
1358
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:51
1359
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1360
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:85
1361
  #, fuzzy
1362
  msgctxt "listing metabox"
1363
  msgid "Cancel"
1364
  msgstr "Отменить"
1365
 
1366
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:54
1367
  #, fuzzy
1368
  msgctxt "listing metabox"
1369
  msgid "Amount"
1370
  msgstr "Стоимость"
1371
 
1372
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:60
1373
  #, fuzzy
1374
  msgctxt "listing metabox"
1375
  msgid "Expires On"
1376
  msgstr "Истекает"
1377
 
1378
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:65
1379
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1380
  #, fuzzy
1381
  msgctxt "listing metabox"
1382
  msgid "Edit"
1383
  msgstr "Изменить"
1384
 
1385
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:75
1386
  #, fuzzy
1387
  msgctxt "listing metabox"
1388
  msgid "# of images"
1389
  msgstr "Картинок"
1390
 
1391
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:88
1392
  #, fuzzy
1393
  msgctxt "listing metabox"
1394
  msgid "Is Featured?"
1395
  msgstr "Лента %ы"
1396
 
1397
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:95
1398
  #, fuzzy
1399
  msgctxt "listing metabox"
1400
  msgid "Is Recurring?"
3408
  msgstr "По автору"
3409
 
3410
  #: includes/admin/settings/class-settings-bootstrap.php:516
3411
+ #: includes/functions.php:1010
3412
  msgctxt "admin settings"
3413
  msgid "Date posted"
3414
  msgstr "По дате публикации"
3415
 
3416
  #: includes/admin/settings/class-settings-bootstrap.php:517
3417
+ #: includes/functions.php:1011
3418
  msgctxt "admin settings"
3419
  msgid "Date last modified"
3420
  msgstr "По дате изменения"
3722
  msgid "Checkout URL link"
3723
  msgstr "Адрес URL страницы оплаты"
3724
 
3725
+ #: includes/admin/settings/class-settings-bootstrap.php:1157
3726
  msgctxt "admin settings"
3727
  msgid ""
3728
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
3731
  "Не удалось удалить плагин \"Справочник Услуг - Модуль Совместимости с AJAX"
3732
  "\". Пожалуйста удалите файл \"%s\" вручную или деактивируйте плагин."
3733
 
3734
+ #: includes/admin/settings/class-settings-bootstrap.php:1170
3735
  msgctxt "admin settings"
3736
  msgid ""
3737
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
3740
  "Не удалось активировать режим совместимости с AJAX: директория \"%s\" не "
3741
  "была создана."
3742
 
3743
+ #: includes/admin/settings/class-settings-bootstrap.php:1175
3744
  msgctxt "admin settings"
3745
  msgid ""
3746
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
3749
  "Не удалось скопировать плагин совместимости с AJAX \"%s\". Режим "
3750
  "совместимости не был активирован."
3751
 
3752
+ #: includes/functions.php:1008
3753
  msgctxt "admin settings"
3754
  msgid "User"
3755
  msgstr ""
3756
 
3757
+ #: includes/functions.php:1009
3758
  msgctxt "admin settings"
3759
  msgid "User registration date"
3760
  msgstr "Дата окончания срока действия"
3782
  msgid "Delete"
3783
  msgstr "Удалить"
3784
 
3785
+ #: includes/admin/settings/class-settings-admin.php:422
3786
  msgctxt "expiration notices"
3787
  msgid "recurring and non-recurring"
3788
  msgstr ""
3789
 
3790
+ #: includes/admin/settings/class-settings-admin.php:424
3791
  #, fuzzy
3792
  msgctxt "expiration notices"
3793
  msgid "recurring only"
3794
  msgstr "(периодически)"
3795
 
3796
+ #: includes/admin/settings/class-settings-admin.php:426
3797
  #, fuzzy
3798
  msgctxt "expiration notices"
3799
  msgid "non-recurring only"
3800
  msgstr "(периодически)"
3801
 
3802
+ #: includes/admin/settings/class-settings-admin.php:430
3803
  #, fuzzy
3804
  msgctxt "expiration notices"
3805
  msgid "Sent when a listing (%s) is renewed."
3806
  msgstr "Посылается как только новая запись была помещена в базу данных."
3807
 
3808
+ #: includes/admin/settings/class-settings-admin.php:435
3809
  #, fuzzy
3810
  msgctxt "expiration notices"
3811
  msgid "Sent when a listing (%s) expires."
3812
  msgstr "Срок действия записи истёк"
3813
 
3814
+ #: includes/admin/settings/class-settings-admin.php:443
3815
  #, fuzzy
3816
  msgctxt "expiration notices"
3817
  msgid "%d day"
3820
  msgstr[1] "%d дней"
3821
  msgstr[2] ""
3822
 
3823
+ #: includes/admin/settings/class-settings-admin.php:446
3824
  msgctxt "expiration notices"
3825
  msgid "%d week"
3826
  msgid_plural "%d weeks"
3828
  msgstr[1] ""
3829
  msgstr[2] ""
3830
 
3831
+ #: includes/admin/settings/class-settings-admin.php:449
3832
  msgctxt "expiration notices"
3833
  msgid "%d month"
3834
  msgid_plural "%d months"
3838
 
3839
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3840
  #. non-recuring only)
3841
+ #: includes/admin/settings/class-settings-admin.php:455
3842
  msgctxt "expiration notices"
3843
  msgid "Sent %1$s before a listing (%2$s) expires."
3844
  msgstr ""
3845
 
3846
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3847
  #. non-recuring only)
3848
+ #: includes/admin/settings/class-settings-admin.php:458
3849
  #, fuzzy
3850
  msgctxt "expiration notices"
3851
  msgid "Sent %1$s after a listing (%2$s) expires."
3852
  msgstr "Посылается как только новая запись была помещена в базу данных."
3853
 
3854
+ #: includes/admin/settings/class-settings-admin.php:475
3855
  msgctxt "expiration notices"
3856
  msgid "At the time of expiration"
3857
  msgstr ""
3858
 
3859
+ #: includes/admin/settings/class-settings-admin.php:476
3860
  #, fuzzy
3861
  msgctxt "expiration notices"
3862
  msgid "Right after a successful renewal"
3863
  msgstr "Тариф был успешно назначен."
3864
 
3865
+ #: includes/admin/settings/class-settings-admin.php:485
3866
  msgctxt "expiration notices"
3867
  msgid "%d day before expiration"
3868
  msgid_plural "%d days before expiration"
3870
  msgstr[1] ""
3871
  msgstr[2] ""
3872
 
3873
+ #: includes/admin/settings/class-settings-admin.php:485
3874
  msgctxt "expiration notices"
3875
  msgid "%d day after expiration"
3876
  msgid_plural "%d days after expiration"
3878
  msgstr[1] ""
3879
  msgstr[2] ""
3880
 
3881
+ #: includes/admin/settings/class-settings-admin.php:488
3882
  msgctxt "expiration notices"
3883
  msgid "%d week before expiration"
3884
  msgid_plural "%d weeks before expiration"
3886
  msgstr[1] ""
3887
  msgstr[2] ""
3888
 
3889
+ #: includes/admin/settings/class-settings-admin.php:488
3890
  msgctxt "expiration notices"
3891
  msgid "%d week after expiration"
3892
  msgid_plural "%d weeks after expiration"
3894
  msgstr[1] ""
3895
  msgstr[2] ""
3896
 
3897
+ #: includes/admin/settings/class-settings-admin.php:491
3898
  msgctxt "expiration notices"
3899
  msgid "%d month before expiration"
3900
  msgid_plural "%d months before expiration"
3902
  msgstr[1] ""
3903
  msgstr[2] ""
3904
 
3905
+ #: includes/admin/settings/class-settings-admin.php:491
3906
  msgctxt "expiration notices"
3907
  msgid "%d month after expiration"
3908
  msgid_plural "%d months after expiration"
3910
  msgstr[1] ""
3911
  msgstr[2] ""
3912
 
3913
+ #: includes/admin/settings/class-settings-admin.php:518
3914
  #, fuzzy
3915
  msgctxt "expiration notices"
3916
  msgid "Applies to"
3917
  msgstr "Применимо к..."
3918
 
3919
+ #: includes/admin/settings/class-settings-admin.php:521
3920
  msgctxt "expiration notices"
3921
  msgid "Non-recurring listings"
3922
  msgstr ""
3923
 
3924
+ #: includes/admin/settings/class-settings-admin.php:522
3925
  #, fuzzy
3926
  msgctxt "expiration notices"
3927
  msgid "Recurring listings"
3928
  msgstr "Вернуться к записям."
3929
 
3930
+ #: includes/admin/settings/class-settings-admin.php:523
3931
  msgctxt "expiration notices"
3932
  msgid "Recurring and non-recurring listings"
3933
  msgstr ""
3934
 
3935
+ #: includes/admin/settings/class-settings-admin.php:528
3936
  msgctxt "expiration notices"
3937
  msgid "When to send?"
3938
  msgstr ""
3943
  msgid "E-mail body text"
3944
  msgstr "Тело письма"
3945
 
3946
+ #: includes/admin/settings/class-settings-admin.php:398
3947
+ #, fuzzy
3948
+ msgctxt "settings"
3949
+ msgid "Site title (with link)"
3950
+ msgstr "Название сайта (со ссылкой)"
3951
+
3952
+ #: includes/admin/settings/class-settings-admin.php:399
3953
+ msgctxt "settings"
3954
+ msgid "Author's name"
3955
+ msgstr "Имя автора"
3956
+
3957
+ #: includes/admin/settings/class-settings-admin.php:400
3958
+ msgctxt "settings"
3959
+ msgid "Listing's name (with link)"
3960
+ msgstr "Имя записи (вместе со ссылкой)"
3961
+
3962
+ #: includes/admin/settings/class-settings-admin.php:401
3963
+ #, fuzzy
3964
+ msgctxt "settings"
3965
+ msgid "Listing's expiration date"
3966
+ msgstr "Дата окончания срока действия"
3967
+
3968
+ #: includes/admin/settings/class-settings-admin.php:402
3969
+ #, fuzzy
3970
+ msgctxt "settings"
3971
+ msgid "Listing's renewal link"
3972
+ msgstr "Продление срока действия"
3973
+
3974
+ #: includes/admin/settings/class-settings-admin.php:403
3975
+ #, fuzzy
3976
+ msgctxt "settings"
3977
+ msgid "Listing's categories"
3978
+ msgstr "Название записи"
3979
+
3980
+ #: includes/admin/settings/class-settings-admin.php:404
3981
+ #, fuzzy
3982
+ msgctxt "settings"
3983
+ msgid "Listing's last payment date"
3984
+ msgstr "Дата окончания срока действия"
3985
+
3986
+ #: includes/admin/settings/class-settings-admin.php:405
3987
+ #, fuzzy
3988
+ msgctxt "settings"
3989
+ msgid "Listing's access key"
3990
+ msgstr "Поля и Изображения записи"
3991
+
3992
+ #: includes/admin/settings/class-settings-admin.php:560
3993
  #, fuzzy
3994
  msgctxt "settings"
3995
  msgid "Settings reset to default."
5515
  msgid "Add New Listing"
5516
  msgstr "Добавить запись"
5517
 
5518
+ #: includes/class-listing.php:318
5519
  #, fuzzy
5520
  msgctxt "listing"
5521
  msgid "Listing expired"
5522
  msgstr "Срок действия записи истёк"
5523
 
5524
+ #: includes/class-listing.php:470
5525
  #, fuzzy
5526
  msgctxt "listing"
5527
  msgid "(Unavailable Plan)"
5528
  msgstr "(Тариф недоступен)"
5529
 
5530
+ #: includes/class-listing.php:626
5531
  #, fuzzy
5532
  msgctxt "listing"
5533
  msgid "Plan \"%s\" (recurring)"
5534
  msgstr "(периодически)"
5535
 
5536
+ #: includes/class-listing.php:628
5537
  msgctxt "listing"
5538
  msgid "Plan \"%s\""
5539
  msgstr ""
5588
  msgid "Free Listing"
5589
  msgstr "Бесплатные записи"
5590
 
5591
+ #: includes/class-listing-email-notification.php:151
5592
  msgctxt "notify email"
5593
  msgid "[%s] New listing notification"
5594
  msgstr "[%s] Оповещение о новой записи"
5595
 
5596
+ #: includes/class-listing-email-notification.php:186
5597
  msgctxt "notify email"
5598
  msgid "[%s] Listing edit notification"
5599
  msgstr "[%s] Оповещение об изменении записи"
5600
 
5601
+ #: includes/class-listing-email-notification.php:240
5602
  #, fuzzy
5603
  msgctxt "notify email"
5604
  msgid "[%s] Reported listing notification"
5639
  msgid "Admin URL"
5640
  msgstr "Cтраница входа в сайт"
5641
 
5642
+ #: templates/email/listing-added.tpl.php:21
5643
+ #, fuzzy
 
5644
  msgctxt "notify email"
5645
+ msgid "Category"
5646
+ msgid_plural "Categories"
5647
+ msgstr[0] "Рубрика"
5648
+ msgstr[1] "Рубрика"
5649
+ msgstr[2] "Рубрика"
5650
 
5651
+ #: templates/email/listing-added.tpl.php:27
5652
  #: templates/email/listing-edited.tpl.php:20
5653
  #: templates/email/listing-reported.tpl.php:19
5654
  msgctxt "notify email"
5655
  msgid "Posted By"
5656
  msgstr "Создано"
5657
 
5658
+ #: templates/email/listing-added.tpl.php:36
5659
+ msgctxt "notify email"
5660
+ msgid "Annonymous User"
5661
+ msgstr ""
5662
+
5663
+ #: templates/email/listing-edited.tpl.php:17
5664
+ #: templates/email/listing-reported.tpl.php:17
5665
+ msgctxt "notify email"
5666
+ msgid "Categories"
5667
+ msgstr "Рубрики"
5668
+
5669
  #: templates/email/listing-reported.tpl.php:21
5670
  msgctxt "notify email"
5671
  msgid "Report IP"
5911
  msgid "Account Creation"
5912
  msgstr ""
5913
 
5914
+ #: includes/views/submit_listing.php:365
5915
  #, fuzzy
5916
  msgctxt "submit listing"
5917
  msgid "Terms and Conditions"
5953
  msgid "Please choose a valid fee plan for your category selection."
5954
  msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
5955
 
5956
+ #: includes/views/submit_listing.php:725
5957
  #, fuzzy
5958
  msgctxt "submit listing"
5959
  msgid "Please enter your desired username."
5960
  msgstr "Пожалуйста введите Ваше имя."
5961
 
5962
+ #: includes/views/submit_listing.php:730
5963
  #, fuzzy
5964
  msgctxt "submit listing"
5965
  msgid "Please enter the e-mail for your new account."
5966
  msgstr "Пожалуйста введите Ваше имя."
5967
 
5968
+ #: includes/views/submit_listing.php:735
5969
  msgctxt "submit listing"
5970
  msgid "Please enter the password for your new account."
5971
  msgstr ""
5972
 
5973
+ #: includes/views/submit_listing.php:745
5974
  msgctxt "submit listing"
5975
  msgid "The username you chose is already in use. Please use a different one."
5976
  msgstr ""
5977
 
5978
+ #: includes/views/submit_listing.php:750
5979
  msgctxt "submit listing"
5980
  msgid "The e-mail address you chose for your account is already in use."
5981
  msgstr ""
5982
 
5983
+ #: includes/views/submit_listing.php:765
5984
  msgctxt "submit listing"
5985
  msgid "Create a user account on this site"
5986
  msgstr ""
5987
 
5988
+ #: includes/views/submit_listing.php:772
5989
  msgctxt "submit listing"
5990
  msgid ""
5991
  "You need to create an account on the site. Please fill out the form below."
5992
  msgstr ""
5993
 
5994
+ #: includes/views/submit_listing.php:778
5995
  msgctxt "submit listing"
5996
  msgid "Username:"
5997
  msgstr ""
5998
 
5999
+ #: includes/views/submit_listing.php:787
6000
  #, fuzzy
6001
  msgctxt "submit listing"
6002
  msgid "Email:"
6003
  msgstr "Адрес: %s"
6004
 
6005
+ #: includes/views/submit_listing.php:796
6006
  msgctxt "submit listing"
6007
  msgid "Password:"
6008
  msgstr ""
6047
  msgid "reCAPTCHA"
6048
  msgstr "Настройки reCAPTCHA"
6049
 
6050
+ #: includes/class-wpbdp.php:249
6051
  msgctxt "admin plugins"
6052
  msgid "Settings"
6053
  msgstr "Настройки"
6054
 
6055
+ #: includes/class-wpbdp.php:331
6056
  #, fuzzy
6057
  msgctxt "listing image upload"
6058
  msgid "Can not upload any more images for this listing."
6059
  msgstr "Рубрики этой записи"
6060
 
6061
+ #: includes/class-wpbdp.php:335
6062
  msgctxt "listing image upload"
6063
  msgid ""
6064
  "You're trying to upload %d images, but only have %d slot available. Please "
7147
  msgid "View not available."
7148
  msgstr "Свободных мест для загрузки изображений:"
7149
 
7150
+ #: includes/views/submit_listing.php:834
7151
  msgctxt "templates"
7152
  msgid "Please agree to the Terms and Conditions."
7153
  msgstr "Пожалуйста примите наши Условия и Положения."
7154
 
7155
+ #: includes/views/submit_listing.php:842
7156
  msgctxt "templates"
7157
  msgid "Terms and Conditions:"
7158
  msgstr "Условия и Положения:"
7159
 
7160
+ #: includes/views/submit_listing.php:851
7161
  #, fuzzy
7162
  msgctxt "templates"
7163
  msgid "I agree to the <a>Terms and Conditions</a>"
7164
  msgstr "Я согласен с Условиями и Положениями"
7165
 
7166
  #: templates/businessdirectory-listings.tpl.php:27
7167
+ #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:8
7168
  #: templates/search.tpl.php:17
7169
  msgctxt "templates"
7170
  msgid "No listings found."
7171
  msgstr "Записи не найдены."
7172
 
7173
  #: templates/businessdirectory-listings.tpl.php:38
7174
+ #: templates/listings.tpl.php:24
7175
  msgctxt "templates"
7176
  msgid "&laquo; Previous "
7177
  msgstr "&laquo; Предыдущая "
7178
 
7179
  #: templates/businessdirectory-listings.tpl.php:39
7180
+ #: templates/listings.tpl.php:25
7181
  msgctxt "templates"
7182
  msgid "Next &raquo;"
7183
  msgstr "Следующая &raquo;"
7472
  msgid "(Reset)"
7473
  msgstr "(Сбросить)"
7474
 
7475
+ #: includes/utils.php:179
7476
  msgctxt "utils"
7477
  msgid ""
7478
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
7480
  "Данные, переданные на сервер методом POST превышают максимальный размер для "
7481
  "PHP. Обратите внимание на параметр \"post_max_size\" в вашем файле php.ini."
7482
 
7483
+ #: includes/utils.php:226
7484
  msgctxt "utils"
7485
  msgid "File size (%s) exceeds maximum file size of %s"
7486
  msgstr "Размер файла (%s) превышает максимальный размер файла - %s"
7487
 
7488
+ #: includes/utils.php:234
7489
  msgctxt "utils"
7490
  msgid "File size (%s) is inferior to the required minimum file size of %s"
7491
  msgstr "Размер файла (%s) меньше, чем минимальный разрешённый размер - %s"
7492
 
7493
+ #: includes/utils.php:243 includes/utils.php:250
7494
  msgctxt "utils"
7495
  msgid "File type \"%s\" is not allowed"
7496
  msgstr "Файл типа \"%s\" не допускается к загрузке"
7497
 
7498
+ #: includes/utils.php:257
7499
  msgctxt "utils"
7500
  msgid "Unkown error while uploading file."
7501
  msgstr "Неизвестная ошибка при загрузке файла."
7502
 
7503
+ #: includes/utils.php:276
7504
  msgctxt "utils"
7505
  msgid "Uploaded file is not an image"
7506
  msgstr "Загруженный файл не является изображением."
7507
 
7508
+ #: includes/utils.php:285
7509
  msgctxt "utils"
7510
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
7511
  msgstr "Ширина изображения меньше минимально разрешённой ширины - %s пиксел."
7512
 
7513
+ #: includes/utils.php:291
7514
  msgctxt "utils"
7515
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
7516
  msgstr "Высота изображения меньше минимально разрешённой высоты - %s пиксел."
7517
 
7518
+ #: includes/utils.php:297
7519
  msgctxt "utils"
7520
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
7521
  msgstr ""
7522
  "Ширина изображения (%s пиксел) больше чем разрешённая максимальная ширина - "
7523
  "%s пиксел."
7524
 
7525
+ #: includes/utils.php:303
7526
  msgctxt "utils"
7527
  msgid "Image height (%s px) is greater than maximum required height of %s px."
7528
  msgstr ""
7529
  "Высота изображения (%s пиксел) больше чем разрешённая максимальная высота - "
7530
  "%s пиксел."
7531
 
7532
+ #: includes/utils.php:317
7533
  msgctxt "utils"
7534
  msgid "Error while uploading file"
7535
  msgstr "Ошибка при загрузке файла"
7852
  "submit again."
7853
  msgstr ""
7854
 
7855
+ #: includes/views/submit_listing.php:677
7856
  msgctxt "listing submit"
7857
  msgid ""
7858
  "Image upload is required, please provide at least one image and submit again."
8284
  msgid "Access Key"
8285
  msgstr ""
8286
 
8287
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
8288
  #, fuzzy
8289
  msgctxt "admin infometabox"
8290
  msgid "Renewal url (copy & paste)"
8291
  msgstr "Ссылка для продления (для копирования)"
8292
 
8293
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
8294
  msgctxt "admin infometabox"
8295
  msgid "Get renewal URL"
8296
  msgstr ""
8297
 
8298
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:107
8299
  #, fuzzy
8300
  msgctxt "admin infometabox"
8301
  msgid "Send renewal e-mail"
8302
  msgstr "Послать уведомление о продлении автору по электронной почте"
8303
 
8304
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:112
8305
  #, fuzzy
8306
  msgctxt "admin infometabox"
8307
  msgid "Renew listing"
10018
  #~ msgid "Listings"
10019
  #~ msgstr "Записи"
10020
 
 
 
 
 
10021
  #~ msgctxt "admin settings"
10022
  #~ msgid "Featured (Sticky) listing settings"
10023
  #~ msgstr "Настройки специальных (прикрепленных) записей"
10084
  #~ msgid "Site title"
10085
  #~ msgstr "Название сайта"
10086
 
 
 
 
 
10087
  #~ msgctxt "settings email"
10088
  #~ msgid "Site address (with link)"
10089
  #~ msgstr "Адрес сайта (со ссылкой)"
10535
  #~ "Посылается за несколько дней до истечения срока действия записи. "
10536
  #~ "Применяется только к записям, не имеющим автоматического продления."
10537
 
 
 
 
 
 
 
 
 
10538
  #~ msgctxt "settings"
10539
  #~ msgid "Category that is going to expire"
10540
  #~ 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-03-02 04:44:48+00:00\n"
9
  "PO-Revision-Date: 2017-12-03 21:20+0100\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
@@ -177,7 +177,7 @@ msgid ""
177
  "payment processor directly."
178
  msgstr ""
179
 
180
- #: includes/class-wpbdp.php:422
181
  msgid ""
182
  "The directory features are disabled at this time because a <a>manual "
183
  "upgrade</a> is pending."
@@ -185,7 +185,7 @@ msgstr ""
185
  "Business Directorys funktioner är för närvarande avaktiverade på grund av "
186
  "att pluginet behöver <a> en manuell uppgradering</a>."
187
 
188
- #: includes/class-wpbdp.php:429
189
  msgid ""
190
  "The directory is not available at this time. Please try again in a few "
191
  "minutes or contact the administrator if the problem persists."
@@ -1113,47 +1113,47 @@ msgctxt "listing status"
1113
  msgid "Reported"
1114
  msgstr ""
1115
 
1116
- #: includes/class-listing.php:705
1117
  msgctxt "listing status"
1118
  msgid "Unknown"
1119
  msgstr "Okänd"
1120
 
1121
- #: includes/class-listing.php:706
1122
  msgctxt "listing status"
1123
  msgid "Legacy"
1124
  msgstr "Legat"
1125
 
1126
- #: includes/class-listing.php:707
1127
  msgctxt "listing status"
1128
  msgid "Incomplete"
1129
  msgstr "Ofullständig"
1130
 
1131
- #: includes/class-listing.php:708
1132
  msgctxt "listing status"
1133
  msgid "Pending Payment"
1134
  msgstr "Väntar på betalning."
1135
 
1136
- #: includes/class-listing.php:709
1137
  msgctxt "listing status"
1138
  msgid "Complete"
1139
  msgstr "Genomförd"
1140
 
1141
- #: includes/class-listing.php:710
1142
  msgctxt "listing status"
1143
  msgid "Pending Upgrade"
1144
  msgstr "Väntar på uppgradering"
1145
 
1146
- #: includes/class-listing.php:711
1147
  msgctxt "listing status"
1148
  msgid "Expired"
1149
  msgstr "Utgången"
1150
 
1151
- #: includes/class-listing.php:712
1152
  msgctxt "listing status"
1153
  msgid "Pending Renewal"
1154
  msgstr "Inväntar förnyelse"
1155
 
1156
- #: includes/class-listing.php:713
1157
  msgctxt "listing status"
1158
  msgid "Abandoned"
1159
  msgstr "Övergiven"
@@ -1214,21 +1214,21 @@ msgid "Send access keys"
1214
  msgstr "Begär åtkomstnyckel?"
1215
 
1216
  #: includes/admin/class-admin.php:157
1217
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:63
1218
  msgctxt "listing metabox"
1219
  msgid "Never"
1220
  msgstr "Aldrig"
1221
 
1222
  #: includes/admin/class-admin.php:158
1223
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1224
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1225
  msgctxt "listing metabox"
1226
  msgid "Yes"
1227
  msgstr "Ja"
1228
 
1229
  #: includes/admin/class-admin.php:159
1230
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1231
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1232
  msgctxt "listing metabox"
1233
  msgid "No"
1234
  msgstr "Nej"
@@ -1271,7 +1271,7 @@ msgid "Listing Status"
1271
  msgstr "Annonsstatus"
1272
 
1273
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1274
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:20
1275
  msgctxt "listing metabox"
1276
  msgid "N/A"
1277
  msgstr "Ej tillämplig"
@@ -1281,62 +1281,62 @@ msgctxt "listing metabox"
1281
  msgid "Last renew date"
1282
  msgstr "Senaste förnyelsedatum"
1283
 
1284
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1285
  msgctxt "listing metabox"
1286
  msgid "Plan Details"
1287
  msgstr "Detaljer för plan"
1288
 
1289
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:25
1290
  msgctxt "listing metabox"
1291
  msgid "Fee Plan"
1292
  msgstr "Avgiftsplan"
1293
 
1294
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:34
1295
  msgctxt "listing metabox"
1296
  msgid "Change plan"
1297
  msgstr "Ändra plan"
1298
 
1299
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:46
1300
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:66
1301
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1302
  msgctxt "listing metabox"
1303
  msgid "OK"
1304
  msgstr "OK"
1305
 
1306
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:47
1307
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1308
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:81
1309
  msgctxt "listing metabox"
1310
  msgid "Cancel"
1311
  msgstr "Avbryt"
1312
 
1313
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1314
  msgctxt "listing metabox"
1315
  msgid "Amount"
1316
  msgstr "Belopp"
1317
 
1318
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:56
1319
  msgctxt "listing metabox"
1320
  msgid "Expires On"
1321
  msgstr "Utgår den "
1322
 
1323
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:61
1324
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:76
1325
  msgctxt "listing metabox"
1326
  msgid "Edit"
1327
  msgstr "Redigera"
1328
 
1329
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1330
  msgctxt "listing metabox"
1331
  msgid "# of images"
1332
  msgstr "# Bilder"
1333
 
1334
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1335
  msgctxt "listing metabox"
1336
  msgid "Is Featured?"
1337
  msgstr "Är utvald?"
1338
 
1339
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1340
  msgctxt "listing metabox"
1341
  msgid "Is Recurring?"
1342
  msgstr "Är återkommande?"
@@ -3325,13 +3325,13 @@ msgid "Author"
3325
  msgstr "Författare"
3326
 
3327
  #: includes/admin/settings/class-settings-bootstrap.php:516
3328
- #: includes/functions.php:995
3329
  msgctxt "admin settings"
3330
  msgid "Date posted"
3331
  msgstr "Datum inlagd"
3332
 
3333
  #: includes/admin/settings/class-settings-bootstrap.php:517
3334
- #: includes/functions.php:996
3335
  msgctxt "admin settings"
3336
  msgid "Date last modified"
3337
  msgstr "Senast ändrad"
@@ -3637,7 +3637,7 @@ msgctxt "admin settings"
3637
  msgid "Checkout URL link"
3638
  msgstr "Kassan URL"
3639
 
3640
- #: includes/admin/settings/class-settings-bootstrap.php:1156
3641
  msgctxt "admin settings"
3642
  msgid ""
3643
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
@@ -3647,7 +3647,7 @@ msgstr ""
3647
  "kompatibilitetsmodule\". Ta bort filen \"%s\" manuellt eller inaktivera "
3648
  "plugin."
3649
 
3650
- #: includes/admin/settings/class-settings-bootstrap.php:1169
3651
  msgctxt "admin settings"
3652
  msgid ""
3653
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
@@ -3656,7 +3656,7 @@ msgstr ""
3656
  "Det gick inte att aktivera AJAX kompatibilitetsläge: katalogen \"%s\" kunde "
3657
  "inte skapas."
3658
 
3659
- #: includes/admin/settings/class-settings-bootstrap.php:1174
3660
  msgctxt "admin settings"
3661
  msgid ""
3662
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
@@ -3665,12 +3665,12 @@ msgstr ""
3665
  "Det gick inte att kopiera AJAX kompatibilitetsplugin \"%s\". "
3666
  "Kompatibilitetsläge aktiverades inte."
3667
 
3668
- #: includes/functions.php:993
3669
  msgctxt "admin settings"
3670
  msgid "User"
3671
  msgstr "Användare"
3672
 
3673
- #: includes/functions.php:994
3674
  msgctxt "admin settings"
3675
  msgid "User registration date"
3676
  msgstr "Användarens registreringsdatum"
@@ -3695,46 +3695,46 @@ msgctxt "expiration notices"
3695
  msgid "Delete"
3696
  msgstr "Ta bort"
3697
 
3698
- #: includes/admin/settings/class-settings-admin.php:411
3699
  msgctxt "expiration notices"
3700
  msgid "recurring and non-recurring"
3701
  msgstr "återkommande och icke återkommande"
3702
 
3703
- #: includes/admin/settings/class-settings-admin.php:413
3704
  msgctxt "expiration notices"
3705
  msgid "recurring only"
3706
  msgstr "endast återkommande"
3707
 
3708
- #: includes/admin/settings/class-settings-admin.php:415
3709
  msgctxt "expiration notices"
3710
  msgid "non-recurring only"
3711
  msgstr "endast icke-återkommande"
3712
 
3713
- #: includes/admin/settings/class-settings-admin.php:419
3714
  msgctxt "expiration notices"
3715
  msgid "Sent when a listing (%s) is renewed."
3716
  msgstr "Skickas efter en annons (%s) har förnyats."
3717
 
3718
- #: includes/admin/settings/class-settings-admin.php:424
3719
  msgctxt "expiration notices"
3720
  msgid "Sent when a listing (%s) expires."
3721
  msgstr "Skickas efter en annons (%s) har förfallit."
3722
 
3723
- #: includes/admin/settings/class-settings-admin.php:432
3724
  msgctxt "expiration notices"
3725
  msgid "%d day"
3726
  msgid_plural "%d days"
3727
  msgstr[0] "%d dag"
3728
  msgstr[1] "%d dagar"
3729
 
3730
- #: includes/admin/settings/class-settings-admin.php:435
3731
  msgctxt "expiration notices"
3732
  msgid "%d week"
3733
  msgid_plural "%d weeks"
3734
  msgstr[0] "%d vecka"
3735
  msgstr[1] "%d veckor"
3736
 
3737
- #: includes/admin/settings/class-settings-admin.php:438
3738
  msgctxt "expiration notices"
3739
  msgid "%d month"
3740
  msgid_plural "%d months"
@@ -3743,91 +3743,91 @@ msgstr[1] "%d månader"
3743
 
3744
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3745
  #. non-recuring only)
3746
- #: includes/admin/settings/class-settings-admin.php:444
3747
  msgctxt "expiration notices"
3748
  msgid "Sent %1$s before a listing (%2$s) expires."
3749
  msgstr "Skickat %1$s före en annons (%2$s) förfaller."
3750
 
3751
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3752
  #. non-recuring only)
3753
- #: includes/admin/settings/class-settings-admin.php:447
3754
  msgctxt "expiration notices"
3755
  msgid "Sent %1$s after a listing (%2$s) expires."
3756
  msgstr "Skickas %1$s efter en annons (%2$s) upphör."
3757
 
3758
- #: includes/admin/settings/class-settings-admin.php:464
3759
  msgctxt "expiration notices"
3760
  msgid "At the time of expiration"
3761
  msgstr "Vid förfallotidpunkten."
3762
 
3763
- #: includes/admin/settings/class-settings-admin.php:465
3764
  msgctxt "expiration notices"
3765
  msgid "Right after a successful renewal"
3766
  msgstr "Direkt efter en förnyelse."
3767
 
3768
- #: includes/admin/settings/class-settings-admin.php:474
3769
  msgctxt "expiration notices"
3770
  msgid "%d day before expiration"
3771
  msgid_plural "%d days before expiration"
3772
  msgstr[0] "%d dag före förfallodagen"
3773
  msgstr[1] "%d dagar före förfallodagen"
3774
 
3775
- #: includes/admin/settings/class-settings-admin.php:474
3776
  msgctxt "expiration notices"
3777
  msgid "%d day after expiration"
3778
  msgid_plural "%d days after expiration"
3779
  msgstr[0] "%d dag efter förfallodatum"
3780
  msgstr[1] "%d dagar efter förfallodatum"
3781
 
3782
- #: includes/admin/settings/class-settings-admin.php:477
3783
  msgctxt "expiration notices"
3784
  msgid "%d week before expiration"
3785
  msgid_plural "%d weeks before expiration"
3786
  msgstr[0] "%d vecka före utgången"
3787
  msgstr[1] "%d veckor före utgången"
3788
 
3789
- #: includes/admin/settings/class-settings-admin.php:477
3790
  msgctxt "expiration notices"
3791
  msgid "%d week after expiration"
3792
  msgid_plural "%d weeks after expiration"
3793
  msgstr[0] "%d vecka efter förfallodatum"
3794
  msgstr[1] "%d veckor efter förfallodatum"
3795
 
3796
- #: includes/admin/settings/class-settings-admin.php:480
3797
  msgctxt "expiration notices"
3798
  msgid "%d month before expiration"
3799
  msgid_plural "%d months before expiration"
3800
  msgstr[0] "%d månad före förfallodatum"
3801
  msgstr[1] "%d månader före förfallodatum"
3802
 
3803
- #: includes/admin/settings/class-settings-admin.php:480
3804
  msgctxt "expiration notices"
3805
  msgid "%d month after expiration"
3806
  msgid_plural "%d months after expiration"
3807
  msgstr[0] "%d månad efter förfallodatum"
3808
  msgstr[1] "%d månader efter förfallodatum"
3809
 
3810
- #: includes/admin/settings/class-settings-admin.php:500
3811
  msgctxt "expiration notices"
3812
  msgid "Applies to"
3813
  msgstr "Avser"
3814
 
3815
- #: includes/admin/settings/class-settings-admin.php:503
3816
  msgctxt "expiration notices"
3817
  msgid "Non-recurring listings"
3818
  msgstr "Icke återkommande annonser"
3819
 
3820
- #: includes/admin/settings/class-settings-admin.php:504
3821
  msgctxt "expiration notices"
3822
  msgid "Recurring listings"
3823
  msgstr "Återkommande annons"
3824
 
3825
- #: includes/admin/settings/class-settings-admin.php:505
3826
  msgctxt "expiration notices"
3827
  msgid "Recurring and non-recurring listings"
3828
  msgstr "Återkommande och icke återkommande annonser"
3829
 
3830
- #: includes/admin/settings/class-settings-admin.php:510
3831
  msgctxt "expiration notices"
3832
  msgid "When to send?"
3833
  msgstr "När ska den skickas?"
@@ -3837,7 +3837,53 @@ msgctxt "expiration notices"
3837
  msgid "E-mail body text"
3838
  msgstr "E-post brödtext"
3839
 
3840
- #: includes/admin/settings/class-settings-admin.php:542
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3841
  #, fuzzy
3842
  msgctxt "settings"
3843
  msgid "Settings reset to default."
@@ -5210,23 +5256,23 @@ msgctxt "listing"
5210
  msgid "Add New Listing"
5211
  msgstr "Lägg till ny annons"
5212
 
5213
- #: includes/class-listing.php:294
5214
  msgctxt "listing"
5215
  msgid "Listing expired"
5216
  msgstr "Annonsen förfallit."
5217
 
5218
- #: includes/class-listing.php:446
5219
  msgctxt "listing"
5220
  msgid "(Unavailable Plan)"
5221
  msgstr "(Avgiftsplan inte tillgänglig)"
5222
 
5223
- #: includes/class-listing.php:602
5224
  #, fuzzy
5225
  msgctxt "listing"
5226
  msgid "Plan \"%s\" (recurring)"
5227
  msgstr "(återkommande)"
5228
 
5229
- #: includes/class-listing.php:604
5230
  msgctxt "listing"
5231
  msgid "Plan \"%s\""
5232
  msgstr "Plan ”%s”"
@@ -5278,17 +5324,17 @@ msgctxt "fees-api"
5278
  msgid "Free Listing"
5279
  msgstr "Gratis annons"
5280
 
5281
- #: includes/class-listing-email-notification.php:130
5282
  msgctxt "notify email"
5283
  msgid "[%s] New listing notification"
5284
  msgstr "[%s] Notifiering om ny annons"
5285
 
5286
- #: includes/class-listing-email-notification.php:165
5287
  msgctxt "notify email"
5288
  msgid "[%s] Listing edit notification"
5289
  msgstr "[%s] Notifiering om annonsändring"
5290
 
5291
- #: includes/class-listing-email-notification.php:219
5292
  #, fuzzy
5293
  msgctxt "notify email"
5294
  msgid "[%s] Reported listing notification"
@@ -5329,20 +5375,32 @@ msgctxt "notify email"
5329
  msgid "Admin URL"
5330
  msgstr "Admin URL"
5331
 
5332
- #: templates/email/listing-added.tpl.php:17
5333
- #: templates/email/listing-edited.tpl.php:17
5334
- #: templates/email/listing-reported.tpl.php:17
5335
  msgctxt "notify email"
5336
- msgid "Categories"
5337
- msgstr "Kategorier"
 
 
5338
 
5339
- #: templates/email/listing-added.tpl.php:20
5340
  #: templates/email/listing-edited.tpl.php:20
5341
  #: templates/email/listing-reported.tpl.php:19
5342
  msgctxt "notify email"
5343
  msgid "Posted By"
5344
  msgstr "Skapat av"
5345
 
 
 
 
 
 
 
 
 
 
 
 
5346
  #: templates/email/listing-reported.tpl.php:21
5347
  msgctxt "notify email"
5348
  msgid "Report IP"
@@ -5574,7 +5632,7 @@ msgctxt "submit listing"
5574
  msgid "Account Creation"
5575
  msgstr "Konto skapas"
5576
 
5577
- #: includes/views/submit_listing.php:363
5578
  msgctxt "submit listing"
5579
  msgid "Terms and Conditions"
5580
  msgstr "Villkor"
@@ -5609,37 +5667,37 @@ msgctxt "submit listing"
5609
  msgid "Please choose a valid fee plan for your category selection."
5610
  msgstr "Välj en avgiftsplan för ditt kategorival."
5611
 
5612
- #: includes/views/submit_listing.php:717
5613
  msgctxt "submit listing"
5614
  msgid "Please enter your desired username."
5615
  msgstr "Fyll i ditt önskade användarnamn."
5616
 
5617
- #: includes/views/submit_listing.php:722
5618
  msgctxt "submit listing"
5619
  msgid "Please enter the e-mail for your new account."
5620
  msgstr "Fyll i e-postadressen för ditt nya konto."
5621
 
5622
- #: includes/views/submit_listing.php:727
5623
  msgctxt "submit listing"
5624
  msgid "Please enter the password for your new account."
5625
  msgstr "Ange lösenordet för ditt nya konto."
5626
 
5627
- #: includes/views/submit_listing.php:737
5628
  msgctxt "submit listing"
5629
  msgid "The username you chose is already in use. Please use a different one."
5630
  msgstr "Användarnamnet upptaget, var vänlig försök med ett annat."
5631
 
5632
- #: includes/views/submit_listing.php:742
5633
  msgctxt "submit listing"
5634
  msgid "The e-mail address you chose for your account is already in use."
5635
  msgstr "E-postadressen du valt för ditt konto används redan."
5636
 
5637
- #: includes/views/submit_listing.php:757
5638
  msgctxt "submit listing"
5639
  msgid "Create a user account on this site"
5640
  msgstr "Skapa ett användarkonto på denna webbplats"
5641
 
5642
- #: includes/views/submit_listing.php:764
5643
  msgctxt "submit listing"
5644
  msgid ""
5645
  "You need to create an account on the site. Please fill out the form below."
@@ -5647,17 +5705,17 @@ msgstr ""
5647
  "Du måste skapa ett konto för denna webbplatsen. Vänligen fyll i formuläret "
5648
  "nedan."
5649
 
5650
- #: includes/views/submit_listing.php:770
5651
  msgctxt "submit listing"
5652
  msgid "Username:"
5653
  msgstr "Användarnamn:"
5654
 
5655
- #: includes/views/submit_listing.php:779
5656
  msgctxt "submit listing"
5657
  msgid "Email:"
5658
  msgstr "E-postadress:"
5659
 
5660
- #: includes/views/submit_listing.php:788
5661
  msgctxt "submit listing"
5662
  msgid "Password:"
5663
  msgstr "Lösenord:"
@@ -5697,17 +5755,17 @@ msgctxt "recaptcha"
5697
  msgid "reCAPTCHA"
5698
  msgstr "reCAPTCHA"
5699
 
5700
- #: includes/class-wpbdp.php:241
5701
  msgctxt "admin plugins"
5702
  msgid "Settings"
5703
  msgstr "Inställningar"
5704
 
5705
- #: includes/class-wpbdp.php:323
5706
  msgctxt "listing image upload"
5707
  msgid "Can not upload any more images for this listing."
5708
  msgstr "Fler bilder kan inte laddas upp för denna annons."
5709
 
5710
- #: includes/class-wpbdp.php:327
5711
  msgctxt "listing image upload"
5712
  msgid ""
5713
  "You're trying to upload %d images, but only have %d slot available. Please "
@@ -6801,36 +6859,36 @@ msgctxt "templates"
6801
  msgid "View not available."
6802
  msgstr "Vy ej tillgänglig."
6803
 
6804
- #: includes/views/submit_listing.php:826
6805
  msgctxt "templates"
6806
  msgid "Please agree to the Terms and Conditions."
6807
  msgstr "Vänligen godkänn villkoren"
6808
 
6809
- #: includes/views/submit_listing.php:834
6810
  msgctxt "templates"
6811
  msgid "Terms and Conditions:"
6812
  msgstr "Villkor"
6813
 
6814
- #: includes/views/submit_listing.php:843
6815
  msgctxt "templates"
6816
  msgid "I agree to the <a>Terms and Conditions</a>"
6817
  msgstr "Jag godtar <a>villkoren</a>."
6818
 
6819
  #: templates/businessdirectory-listings.tpl.php:27
6820
- #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:6
6821
  #: templates/search.tpl.php:17
6822
  msgctxt "templates"
6823
  msgid "No listings found."
6824
  msgstr "Inga annonser hittades"
6825
 
6826
  #: templates/businessdirectory-listings.tpl.php:38
6827
- #: templates/listings.tpl.php:17
6828
  msgctxt "templates"
6829
  msgid "&laquo; Previous "
6830
  msgstr "&laquo; Föregående"
6831
 
6832
  #: templates/businessdirectory-listings.tpl.php:39
6833
- #: templates/listings.tpl.php:18
6834
  msgctxt "templates"
6835
  msgid "Next &raquo;"
6836
  msgstr "Nästa &raquo;"
@@ -7125,7 +7183,7 @@ msgctxt "sort"
7125
  msgid "(Reset)"
7126
  msgstr "(Rensa)"
7127
 
7128
- #: includes/utils.php:169
7129
  msgctxt "utils"
7130
  msgid ""
7131
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
@@ -7133,52 +7191,52 @@ msgstr ""
7133
  "Postat data överskrider PHP config. max. Se \\\"post_max_size \\\" "
7134
  "direktivet."
7135
 
7136
- #: includes/utils.php:216
7137
  msgctxt "utils"
7138
  msgid "File size (%s) exceeds maximum file size of %s"
7139
  msgstr "Filstorlek (%s) överskrider maximal filstorlek på %s"
7140
 
7141
- #: includes/utils.php:224
7142
  msgctxt "utils"
7143
  msgid "File size (%s) is inferior to the required minimum file size of %s"
7144
  msgstr "Filstorlek (%s) är sämre än den minifilstiorleken på%s"
7145
 
7146
- #: includes/utils.php:233 includes/utils.php:240
7147
  msgctxt "utils"
7148
  msgid "File type \"%s\" is not allowed"
7149
  msgstr "Filtyp \"%s\" är inte tillåten"
7150
 
7151
- #: includes/utils.php:247
7152
  msgctxt "utils"
7153
  msgid "Unkown error while uploading file."
7154
  msgstr "Okänt fel uppstod när filen laddades upp."
7155
 
7156
- #: includes/utils.php:266
7157
  msgctxt "utils"
7158
  msgid "Uploaded file is not an image"
7159
  msgstr "Den uppladdade filen är inte en bild"
7160
 
7161
- #: includes/utils.php:275
7162
  msgctxt "utils"
7163
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
7164
  msgstr "Bildbredd (%s px) är mindre än minimikravet på bredden %s px."
7165
 
7166
- #: includes/utils.php:281
7167
  msgctxt "utils"
7168
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
7169
  msgstr "Bildhöjden (%s px) är mindre än minimikravet på höjden %s px."
7170
 
7171
- #: includes/utils.php:287
7172
  msgctxt "utils"
7173
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
7174
  msgstr "Bildbredden (%s px) är större än högsta tillåtna bredd%s px."
7175
 
7176
- #: includes/utils.php:293
7177
  msgctxt "utils"
7178
  msgid "Image height (%s px) is greater than maximum required height of %s px."
7179
  msgstr "Bildhöjden (%s px) är större än maximalt tillåtna höjd%s px."
7180
 
7181
- #: includes/utils.php:307
7182
  msgctxt "utils"
7183
  msgid "Error while uploading file"
7184
  msgstr "Okänt fel uppstod när filen laddades upp."
@@ -7489,7 +7547,7 @@ msgstr ""
7489
  "Något gick fel. Vänligen kontrollera formuläret för fel, rätta till dem och "
7490
  "skicka igen."
7491
 
7492
- #: includes/views/submit_listing.php:669
7493
  msgctxt "listing submit"
7494
  msgid ""
7495
  "Image upload is required, please provide at least one image and submit again."
@@ -7916,22 +7974,22 @@ msgctxt "admin infometabox"
7916
  msgid "Access Key"
7917
  msgstr "Åtkomstnyckel"
7918
 
7919
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
7920
  msgctxt "admin infometabox"
7921
  msgid "Renewal url (copy & paste)"
7922
  msgstr "Förnyelse URL (kopiera och klistra in)"
7923
 
7924
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
7925
  msgctxt "admin infometabox"
7926
  msgid "Get renewal URL"
7927
  msgstr "Få förnyelse-URL"
7928
 
7929
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:103
7930
  msgctxt "admin infometabox"
7931
  msgid "Send renewal e-mail"
7932
  msgstr "Skicka e-post om förnyelse"
7933
 
7934
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:108
7935
  msgctxt "admin infometabox"
7936
  msgid "Renew listing"
7937
  msgstr "Förnya annons"
@@ -9705,10 +9763,6 @@ msgstr "Adress"
9705
  #~ msgid "Listings"
9706
  #~ msgstr "Annonser"
9707
 
9708
- #~ msgctxt "admin settings"
9709
- #~ msgid "Listing Renewal"
9710
- #~ msgstr "Annonsförnyelse"
9711
-
9712
  #~ msgctxt "admin settings"
9713
  #~ msgid "Featured (Sticky) listing settings"
9714
  #~ msgstr "Inställningar för utvald (sticky) annons"
@@ -9774,10 +9828,6 @@ msgstr "Adress"
9774
  #~ msgid "Site title"
9775
  #~ msgstr "Webbplatstitel"
9776
 
9777
- #~ msgctxt "settings email"
9778
- #~ msgid "Site title (with link)"
9779
- #~ msgstr "Webbplatstitel (med länk)"
9780
-
9781
  #~ msgctxt "settings email"
9782
  #~ msgid "Site address (with link)"
9783
  #~ msgstr "Webbplatsadress (med länk)"
@@ -10250,14 +10300,6 @@ msgstr "Adress"
10250
  #~ "Skickas en tid innan annonsen löper ut. Vänder sig enbart till de som "
10251
  #~ "inte auto-förnyas."
10252
 
10253
- #~ msgctxt "settings"
10254
- #~ msgid "Listing's name (with link)"
10255
- #~ msgstr "Annonsens namn (med länk)"
10256
-
10257
- #~ msgctxt "settings"
10258
- #~ msgid "Author's name"
10259
- #~ msgstr "Författarens namn"
10260
-
10261
  #~ msgctxt "settings"
10262
  #~ msgid "Category that is going to expire"
10263
  #~ msgstr "Kategori som kommer att löpa ut"
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-04-03 15:53:32+00:00\n"
9
  "PO-Revision-Date: 2017-12-03 21:20+0100\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
177
  "payment processor directly."
178
  msgstr ""
179
 
180
+ #: includes/class-wpbdp.php:430
181
  msgid ""
182
  "The directory features are disabled at this time because a <a>manual "
183
  "upgrade</a> is pending."
185
  "Business Directorys funktioner är för närvarande avaktiverade på grund av "
186
  "att pluginet behöver <a> en manuell uppgradering</a>."
187
 
188
+ #: includes/class-wpbdp.php:437
189
  msgid ""
190
  "The directory is not available at this time. Please try again in a few "
191
  "minutes or contact the administrator if the problem persists."
1113
  msgid "Reported"
1114
  msgstr ""
1115
 
1116
+ #: includes/class-listing.php:729
1117
  msgctxt "listing status"
1118
  msgid "Unknown"
1119
  msgstr "Okänd"
1120
 
1121
+ #: includes/class-listing.php:730
1122
  msgctxt "listing status"
1123
  msgid "Legacy"
1124
  msgstr "Legat"
1125
 
1126
+ #: includes/class-listing.php:731
1127
  msgctxt "listing status"
1128
  msgid "Incomplete"
1129
  msgstr "Ofullständig"
1130
 
1131
+ #: includes/class-listing.php:732
1132
  msgctxt "listing status"
1133
  msgid "Pending Payment"
1134
  msgstr "Väntar på betalning."
1135
 
1136
+ #: includes/class-listing.php:733
1137
  msgctxt "listing status"
1138
  msgid "Complete"
1139
  msgstr "Genomförd"
1140
 
1141
+ #: includes/class-listing.php:734
1142
  msgctxt "listing status"
1143
  msgid "Pending Upgrade"
1144
  msgstr "Väntar på uppgradering"
1145
 
1146
+ #: includes/class-listing.php:735
1147
  msgctxt "listing status"
1148
  msgid "Expired"
1149
  msgstr "Utgången"
1150
 
1151
+ #: includes/class-listing.php:736
1152
  msgctxt "listing status"
1153
  msgid "Pending Renewal"
1154
  msgstr "Inväntar förnyelse"
1155
 
1156
+ #: includes/class-listing.php:737
1157
  msgctxt "listing status"
1158
  msgid "Abandoned"
1159
  msgstr "Övergiven"
1214
  msgstr "Begär åtkomstnyckel?"
1215
 
1216
  #: includes/admin/class-admin.php:157
1217
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1218
  msgctxt "listing metabox"
1219
  msgid "Never"
1220
  msgstr "Aldrig"
1221
 
1222
  #: includes/admin/class-admin.php:158
1223
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1224
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1225
  msgctxt "listing metabox"
1226
  msgid "Yes"
1227
  msgstr "Ja"
1228
 
1229
  #: includes/admin/class-admin.php:159
1230
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1231
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1232
  msgctxt "listing metabox"
1233
  msgid "No"
1234
  msgstr "Nej"
1271
  msgstr "Annonsstatus"
1272
 
1273
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1274
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1275
  msgctxt "listing metabox"
1276
  msgid "N/A"
1277
  msgstr "Ej tillämplig"
1281
  msgid "Last renew date"
1282
  msgstr "Senaste förnyelsedatum"
1283
 
1284
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:27
1285
  msgctxt "listing metabox"
1286
  msgid "Plan Details"
1287
  msgstr "Detaljer för plan"
1288
 
1289
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:29
1290
  msgctxt "listing metabox"
1291
  msgid "Fee Plan"
1292
  msgstr "Avgiftsplan"
1293
 
1294
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:38
1295
  msgctxt "listing metabox"
1296
  msgid "Change plan"
1297
  msgstr "Ändra plan"
1298
 
1299
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1300
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:70
1301
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1302
  msgctxt "listing metabox"
1303
  msgid "OK"
1304
  msgstr "OK"
1305
 
1306
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:51
1307
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1308
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:85
1309
  msgctxt "listing metabox"
1310
  msgid "Cancel"
1311
  msgstr "Avbryt"
1312
 
1313
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:54
1314
  msgctxt "listing metabox"
1315
  msgid "Amount"
1316
  msgstr "Belopp"
1317
 
1318
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:60
1319
  msgctxt "listing metabox"
1320
  msgid "Expires On"
1321
  msgstr "Utgår den "
1322
 
1323
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:65
1324
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1325
  msgctxt "listing metabox"
1326
  msgid "Edit"
1327
  msgstr "Redigera"
1328
 
1329
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:75
1330
  msgctxt "listing metabox"
1331
  msgid "# of images"
1332
  msgstr "# Bilder"
1333
 
1334
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:88
1335
  msgctxt "listing metabox"
1336
  msgid "Is Featured?"
1337
  msgstr "Är utvald?"
1338
 
1339
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:95
1340
  msgctxt "listing metabox"
1341
  msgid "Is Recurring?"
1342
  msgstr "Är återkommande?"
3325
  msgstr "Författare"
3326
 
3327
  #: includes/admin/settings/class-settings-bootstrap.php:516
3328
+ #: includes/functions.php:1010
3329
  msgctxt "admin settings"
3330
  msgid "Date posted"
3331
  msgstr "Datum inlagd"
3332
 
3333
  #: includes/admin/settings/class-settings-bootstrap.php:517
3334
+ #: includes/functions.php:1011
3335
  msgctxt "admin settings"
3336
  msgid "Date last modified"
3337
  msgstr "Senast ändrad"
3637
  msgid "Checkout URL link"
3638
  msgstr "Kassan URL"
3639
 
3640
+ #: includes/admin/settings/class-settings-bootstrap.php:1157
3641
  msgctxt "admin settings"
3642
  msgid ""
3643
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
3647
  "kompatibilitetsmodule\". Ta bort filen \"%s\" manuellt eller inaktivera "
3648
  "plugin."
3649
 
3650
+ #: includes/admin/settings/class-settings-bootstrap.php:1170
3651
  msgctxt "admin settings"
3652
  msgid ""
3653
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
3656
  "Det gick inte att aktivera AJAX kompatibilitetsläge: katalogen \"%s\" kunde "
3657
  "inte skapas."
3658
 
3659
+ #: includes/admin/settings/class-settings-bootstrap.php:1175
3660
  msgctxt "admin settings"
3661
  msgid ""
3662
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
3665
  "Det gick inte att kopiera AJAX kompatibilitetsplugin \"%s\". "
3666
  "Kompatibilitetsläge aktiverades inte."
3667
 
3668
+ #: includes/functions.php:1008
3669
  msgctxt "admin settings"
3670
  msgid "User"
3671
  msgstr "Användare"
3672
 
3673
+ #: includes/functions.php:1009
3674
  msgctxt "admin settings"
3675
  msgid "User registration date"
3676
  msgstr "Användarens registreringsdatum"
3695
  msgid "Delete"
3696
  msgstr "Ta bort"
3697
 
3698
+ #: includes/admin/settings/class-settings-admin.php:422
3699
  msgctxt "expiration notices"
3700
  msgid "recurring and non-recurring"
3701
  msgstr "återkommande och icke återkommande"
3702
 
3703
+ #: includes/admin/settings/class-settings-admin.php:424
3704
  msgctxt "expiration notices"
3705
  msgid "recurring only"
3706
  msgstr "endast återkommande"
3707
 
3708
+ #: includes/admin/settings/class-settings-admin.php:426
3709
  msgctxt "expiration notices"
3710
  msgid "non-recurring only"
3711
  msgstr "endast icke-återkommande"
3712
 
3713
+ #: includes/admin/settings/class-settings-admin.php:430
3714
  msgctxt "expiration notices"
3715
  msgid "Sent when a listing (%s) is renewed."
3716
  msgstr "Skickas efter en annons (%s) har förnyats."
3717
 
3718
+ #: includes/admin/settings/class-settings-admin.php:435
3719
  msgctxt "expiration notices"
3720
  msgid "Sent when a listing (%s) expires."
3721
  msgstr "Skickas efter en annons (%s) har förfallit."
3722
 
3723
+ #: includes/admin/settings/class-settings-admin.php:443
3724
  msgctxt "expiration notices"
3725
  msgid "%d day"
3726
  msgid_plural "%d days"
3727
  msgstr[0] "%d dag"
3728
  msgstr[1] "%d dagar"
3729
 
3730
+ #: includes/admin/settings/class-settings-admin.php:446
3731
  msgctxt "expiration notices"
3732
  msgid "%d week"
3733
  msgid_plural "%d weeks"
3734
  msgstr[0] "%d vecka"
3735
  msgstr[1] "%d veckor"
3736
 
3737
+ #: includes/admin/settings/class-settings-admin.php:449
3738
  msgctxt "expiration notices"
3739
  msgid "%d month"
3740
  msgid_plural "%d months"
3743
 
3744
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3745
  #. non-recuring only)
3746
+ #: includes/admin/settings/class-settings-admin.php:455
3747
  msgctxt "expiration notices"
3748
  msgid "Sent %1$s before a listing (%2$s) expires."
3749
  msgstr "Skickat %1$s före en annons (%2$s) förfaller."
3750
 
3751
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3752
  #. non-recuring only)
3753
+ #: includes/admin/settings/class-settings-admin.php:458
3754
  msgctxt "expiration notices"
3755
  msgid "Sent %1$s after a listing (%2$s) expires."
3756
  msgstr "Skickas %1$s efter en annons (%2$s) upphör."
3757
 
3758
+ #: includes/admin/settings/class-settings-admin.php:475
3759
  msgctxt "expiration notices"
3760
  msgid "At the time of expiration"
3761
  msgstr "Vid förfallotidpunkten."
3762
 
3763
+ #: includes/admin/settings/class-settings-admin.php:476
3764
  msgctxt "expiration notices"
3765
  msgid "Right after a successful renewal"
3766
  msgstr "Direkt efter en förnyelse."
3767
 
3768
+ #: includes/admin/settings/class-settings-admin.php:485
3769
  msgctxt "expiration notices"
3770
  msgid "%d day before expiration"
3771
  msgid_plural "%d days before expiration"
3772
  msgstr[0] "%d dag före förfallodagen"
3773
  msgstr[1] "%d dagar före förfallodagen"
3774
 
3775
+ #: includes/admin/settings/class-settings-admin.php:485
3776
  msgctxt "expiration notices"
3777
  msgid "%d day after expiration"
3778
  msgid_plural "%d days after expiration"
3779
  msgstr[0] "%d dag efter förfallodatum"
3780
  msgstr[1] "%d dagar efter förfallodatum"
3781
 
3782
+ #: includes/admin/settings/class-settings-admin.php:488
3783
  msgctxt "expiration notices"
3784
  msgid "%d week before expiration"
3785
  msgid_plural "%d weeks before expiration"
3786
  msgstr[0] "%d vecka före utgången"
3787
  msgstr[1] "%d veckor före utgången"
3788
 
3789
+ #: includes/admin/settings/class-settings-admin.php:488
3790
  msgctxt "expiration notices"
3791
  msgid "%d week after expiration"
3792
  msgid_plural "%d weeks after expiration"
3793
  msgstr[0] "%d vecka efter förfallodatum"
3794
  msgstr[1] "%d veckor efter förfallodatum"
3795
 
3796
+ #: includes/admin/settings/class-settings-admin.php:491
3797
  msgctxt "expiration notices"
3798
  msgid "%d month before expiration"
3799
  msgid_plural "%d months before expiration"
3800
  msgstr[0] "%d månad före förfallodatum"
3801
  msgstr[1] "%d månader före förfallodatum"
3802
 
3803
+ #: includes/admin/settings/class-settings-admin.php:491
3804
  msgctxt "expiration notices"
3805
  msgid "%d month after expiration"
3806
  msgid_plural "%d months after expiration"
3807
  msgstr[0] "%d månad efter förfallodatum"
3808
  msgstr[1] "%d månader efter förfallodatum"
3809
 
3810
+ #: includes/admin/settings/class-settings-admin.php:518
3811
  msgctxt "expiration notices"
3812
  msgid "Applies to"
3813
  msgstr "Avser"
3814
 
3815
+ #: includes/admin/settings/class-settings-admin.php:521
3816
  msgctxt "expiration notices"
3817
  msgid "Non-recurring listings"
3818
  msgstr "Icke återkommande annonser"
3819
 
3820
+ #: includes/admin/settings/class-settings-admin.php:522
3821
  msgctxt "expiration notices"
3822
  msgid "Recurring listings"
3823
  msgstr "Återkommande annons"
3824
 
3825
+ #: includes/admin/settings/class-settings-admin.php:523
3826
  msgctxt "expiration notices"
3827
  msgid "Recurring and non-recurring listings"
3828
  msgstr "Återkommande och icke återkommande annonser"
3829
 
3830
+ #: includes/admin/settings/class-settings-admin.php:528
3831
  msgctxt "expiration notices"
3832
  msgid "When to send?"
3833
  msgstr "När ska den skickas?"
3837
  msgid "E-mail body text"
3838
  msgstr "E-post brödtext"
3839
 
3840
+ #: includes/admin/settings/class-settings-admin.php:398
3841
+ #, fuzzy
3842
+ msgctxt "settings"
3843
+ msgid "Site title (with link)"
3844
+ msgstr "Webbplatstitel (med länk)"
3845
+
3846
+ #: includes/admin/settings/class-settings-admin.php:399
3847
+ msgctxt "settings"
3848
+ msgid "Author's name"
3849
+ msgstr "Författarens namn"
3850
+
3851
+ #: includes/admin/settings/class-settings-admin.php:400
3852
+ msgctxt "settings"
3853
+ msgid "Listing's name (with link)"
3854
+ msgstr "Annonsens namn (med länk)"
3855
+
3856
+ #: includes/admin/settings/class-settings-admin.php:401
3857
+ #, fuzzy
3858
+ msgctxt "settings"
3859
+ msgid "Listing's expiration date"
3860
+ msgstr "Utgångsdatum för annons"
3861
+
3862
+ #: includes/admin/settings/class-settings-admin.php:402
3863
+ #, fuzzy
3864
+ msgctxt "settings"
3865
+ msgid "Listing's renewal link"
3866
+ msgstr "Annonsförnyelse"
3867
+
3868
+ #: includes/admin/settings/class-settings-admin.php:403
3869
+ #, fuzzy
3870
+ msgctxt "settings"
3871
+ msgid "Listing's categories"
3872
+ msgstr "Annonsens titel"
3873
+
3874
+ #: includes/admin/settings/class-settings-admin.php:404
3875
+ #, fuzzy
3876
+ msgctxt "settings"
3877
+ msgid "Listing's last payment date"
3878
+ msgstr "Utgångsdatum för annons"
3879
+
3880
+ #: includes/admin/settings/class-settings-admin.php:405
3881
+ #, fuzzy
3882
+ msgctxt "settings"
3883
+ msgid "Listing's access key"
3884
+ msgstr "Åtkomstnycklar till annons"
3885
+
3886
+ #: includes/admin/settings/class-settings-admin.php:560
3887
  #, fuzzy
3888
  msgctxt "settings"
3889
  msgid "Settings reset to default."
5256
  msgid "Add New Listing"
5257
  msgstr "Lägg till ny annons"
5258
 
5259
+ #: includes/class-listing.php:318
5260
  msgctxt "listing"
5261
  msgid "Listing expired"
5262
  msgstr "Annonsen förfallit."
5263
 
5264
+ #: includes/class-listing.php:470
5265
  msgctxt "listing"
5266
  msgid "(Unavailable Plan)"
5267
  msgstr "(Avgiftsplan inte tillgänglig)"
5268
 
5269
+ #: includes/class-listing.php:626
5270
  #, fuzzy
5271
  msgctxt "listing"
5272
  msgid "Plan \"%s\" (recurring)"
5273
  msgstr "(återkommande)"
5274
 
5275
+ #: includes/class-listing.php:628
5276
  msgctxt "listing"
5277
  msgid "Plan \"%s\""
5278
  msgstr "Plan ”%s”"
5324
  msgid "Free Listing"
5325
  msgstr "Gratis annons"
5326
 
5327
+ #: includes/class-listing-email-notification.php:151
5328
  msgctxt "notify email"
5329
  msgid "[%s] New listing notification"
5330
  msgstr "[%s] Notifiering om ny annons"
5331
 
5332
+ #: includes/class-listing-email-notification.php:186
5333
  msgctxt "notify email"
5334
  msgid "[%s] Listing edit notification"
5335
  msgstr "[%s] Notifiering om annonsändring"
5336
 
5337
+ #: includes/class-listing-email-notification.php:240
5338
  #, fuzzy
5339
  msgctxt "notify email"
5340
  msgid "[%s] Reported listing notification"
5375
  msgid "Admin URL"
5376
  msgstr "Admin URL"
5377
 
5378
+ #: templates/email/listing-added.tpl.php:21
5379
+ #, fuzzy
 
5380
  msgctxt "notify email"
5381
+ msgid "Category"
5382
+ msgid_plural "Categories"
5383
+ msgstr[0] "Kategori"
5384
+ msgstr[1] "Kategori"
5385
 
5386
+ #: templates/email/listing-added.tpl.php:27
5387
  #: templates/email/listing-edited.tpl.php:20
5388
  #: templates/email/listing-reported.tpl.php:19
5389
  msgctxt "notify email"
5390
  msgid "Posted By"
5391
  msgstr "Skapat av"
5392
 
5393
+ #: templates/email/listing-added.tpl.php:36
5394
+ msgctxt "notify email"
5395
+ msgid "Annonymous User"
5396
+ msgstr ""
5397
+
5398
+ #: templates/email/listing-edited.tpl.php:17
5399
+ #: templates/email/listing-reported.tpl.php:17
5400
+ msgctxt "notify email"
5401
+ msgid "Categories"
5402
+ msgstr "Kategorier"
5403
+
5404
  #: templates/email/listing-reported.tpl.php:21
5405
  msgctxt "notify email"
5406
  msgid "Report IP"
5632
  msgid "Account Creation"
5633
  msgstr "Konto skapas"
5634
 
5635
+ #: includes/views/submit_listing.php:365
5636
  msgctxt "submit listing"
5637
  msgid "Terms and Conditions"
5638
  msgstr "Villkor"
5667
  msgid "Please choose a valid fee plan for your category selection."
5668
  msgstr "Välj en avgiftsplan för ditt kategorival."
5669
 
5670
+ #: includes/views/submit_listing.php:725
5671
  msgctxt "submit listing"
5672
  msgid "Please enter your desired username."
5673
  msgstr "Fyll i ditt önskade användarnamn."
5674
 
5675
+ #: includes/views/submit_listing.php:730
5676
  msgctxt "submit listing"
5677
  msgid "Please enter the e-mail for your new account."
5678
  msgstr "Fyll i e-postadressen för ditt nya konto."
5679
 
5680
+ #: includes/views/submit_listing.php:735
5681
  msgctxt "submit listing"
5682
  msgid "Please enter the password for your new account."
5683
  msgstr "Ange lösenordet för ditt nya konto."
5684
 
5685
+ #: includes/views/submit_listing.php:745
5686
  msgctxt "submit listing"
5687
  msgid "The username you chose is already in use. Please use a different one."
5688
  msgstr "Användarnamnet upptaget, var vänlig försök med ett annat."
5689
 
5690
+ #: includes/views/submit_listing.php:750
5691
  msgctxt "submit listing"
5692
  msgid "The e-mail address you chose for your account is already in use."
5693
  msgstr "E-postadressen du valt för ditt konto används redan."
5694
 
5695
+ #: includes/views/submit_listing.php:765
5696
  msgctxt "submit listing"
5697
  msgid "Create a user account on this site"
5698
  msgstr "Skapa ett användarkonto på denna webbplats"
5699
 
5700
+ #: includes/views/submit_listing.php:772
5701
  msgctxt "submit listing"
5702
  msgid ""
5703
  "You need to create an account on the site. Please fill out the form below."
5705
  "Du måste skapa ett konto för denna webbplatsen. Vänligen fyll i formuläret "
5706
  "nedan."
5707
 
5708
+ #: includes/views/submit_listing.php:778
5709
  msgctxt "submit listing"
5710
  msgid "Username:"
5711
  msgstr "Användarnamn:"
5712
 
5713
+ #: includes/views/submit_listing.php:787
5714
  msgctxt "submit listing"
5715
  msgid "Email:"
5716
  msgstr "E-postadress:"
5717
 
5718
+ #: includes/views/submit_listing.php:796
5719
  msgctxt "submit listing"
5720
  msgid "Password:"
5721
  msgstr "Lösenord:"
5755
  msgid "reCAPTCHA"
5756
  msgstr "reCAPTCHA"
5757
 
5758
+ #: includes/class-wpbdp.php:249
5759
  msgctxt "admin plugins"
5760
  msgid "Settings"
5761
  msgstr "Inställningar"
5762
 
5763
+ #: includes/class-wpbdp.php:331
5764
  msgctxt "listing image upload"
5765
  msgid "Can not upload any more images for this listing."
5766
  msgstr "Fler bilder kan inte laddas upp för denna annons."
5767
 
5768
+ #: includes/class-wpbdp.php:335
5769
  msgctxt "listing image upload"
5770
  msgid ""
5771
  "You're trying to upload %d images, but only have %d slot available. Please "
6859
  msgid "View not available."
6860
  msgstr "Vy ej tillgänglig."
6861
 
6862
+ #: includes/views/submit_listing.php:834
6863
  msgctxt "templates"
6864
  msgid "Please agree to the Terms and Conditions."
6865
  msgstr "Vänligen godkänn villkoren"
6866
 
6867
+ #: includes/views/submit_listing.php:842
6868
  msgctxt "templates"
6869
  msgid "Terms and Conditions:"
6870
  msgstr "Villkor"
6871
 
6872
+ #: includes/views/submit_listing.php:851
6873
  msgctxt "templates"
6874
  msgid "I agree to the <a>Terms and Conditions</a>"
6875
  msgstr "Jag godtar <a>villkoren</a>."
6876
 
6877
  #: templates/businessdirectory-listings.tpl.php:27
6878
+ #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:8
6879
  #: templates/search.tpl.php:17
6880
  msgctxt "templates"
6881
  msgid "No listings found."
6882
  msgstr "Inga annonser hittades"
6883
 
6884
  #: templates/businessdirectory-listings.tpl.php:38
6885
+ #: templates/listings.tpl.php:24
6886
  msgctxt "templates"
6887
  msgid "&laquo; Previous "
6888
  msgstr "&laquo; Föregående"
6889
 
6890
  #: templates/businessdirectory-listings.tpl.php:39
6891
+ #: templates/listings.tpl.php:25
6892
  msgctxt "templates"
6893
  msgid "Next &raquo;"
6894
  msgstr "Nästa &raquo;"
7183
  msgid "(Reset)"
7184
  msgstr "(Rensa)"
7185
 
7186
+ #: includes/utils.php:179
7187
  msgctxt "utils"
7188
  msgid ""
7189
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
7191
  "Postat data överskrider PHP config. max. Se \\\"post_max_size \\\" "
7192
  "direktivet."
7193
 
7194
+ #: includes/utils.php:226
7195
  msgctxt "utils"
7196
  msgid "File size (%s) exceeds maximum file size of %s"
7197
  msgstr "Filstorlek (%s) överskrider maximal filstorlek på %s"
7198
 
7199
+ #: includes/utils.php:234
7200
  msgctxt "utils"
7201
  msgid "File size (%s) is inferior to the required minimum file size of %s"
7202
  msgstr "Filstorlek (%s) är sämre än den minifilstiorleken på%s"
7203
 
7204
+ #: includes/utils.php:243 includes/utils.php:250
7205
  msgctxt "utils"
7206
  msgid "File type \"%s\" is not allowed"
7207
  msgstr "Filtyp \"%s\" är inte tillåten"
7208
 
7209
+ #: includes/utils.php:257
7210
  msgctxt "utils"
7211
  msgid "Unkown error while uploading file."
7212
  msgstr "Okänt fel uppstod när filen laddades upp."
7213
 
7214
+ #: includes/utils.php:276
7215
  msgctxt "utils"
7216
  msgid "Uploaded file is not an image"
7217
  msgstr "Den uppladdade filen är inte en bild"
7218
 
7219
+ #: includes/utils.php:285
7220
  msgctxt "utils"
7221
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
7222
  msgstr "Bildbredd (%s px) är mindre än minimikravet på bredden %s px."
7223
 
7224
+ #: includes/utils.php:291
7225
  msgctxt "utils"
7226
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
7227
  msgstr "Bildhöjden (%s px) är mindre än minimikravet på höjden %s px."
7228
 
7229
+ #: includes/utils.php:297
7230
  msgctxt "utils"
7231
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
7232
  msgstr "Bildbredden (%s px) är större än högsta tillåtna bredd%s px."
7233
 
7234
+ #: includes/utils.php:303
7235
  msgctxt "utils"
7236
  msgid "Image height (%s px) is greater than maximum required height of %s px."
7237
  msgstr "Bildhöjden (%s px) är större än maximalt tillåtna höjd%s px."
7238
 
7239
+ #: includes/utils.php:317
7240
  msgctxt "utils"
7241
  msgid "Error while uploading file"
7242
  msgstr "Okänt fel uppstod när filen laddades upp."
7547
  "Något gick fel. Vänligen kontrollera formuläret för fel, rätta till dem och "
7548
  "skicka igen."
7549
 
7550
+ #: includes/views/submit_listing.php:677
7551
  msgctxt "listing submit"
7552
  msgid ""
7553
  "Image upload is required, please provide at least one image and submit again."
7974
  msgid "Access Key"
7975
  msgstr "Åtkomstnyckel"
7976
 
7977
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
7978
  msgctxt "admin infometabox"
7979
  msgid "Renewal url (copy & paste)"
7980
  msgstr "Förnyelse URL (kopiera och klistra in)"
7981
 
7982
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
7983
  msgctxt "admin infometabox"
7984
  msgid "Get renewal URL"
7985
  msgstr "Få förnyelse-URL"
7986
 
7987
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:107
7988
  msgctxt "admin infometabox"
7989
  msgid "Send renewal e-mail"
7990
  msgstr "Skicka e-post om förnyelse"
7991
 
7992
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:112
7993
  msgctxt "admin infometabox"
7994
  msgid "Renew listing"
7995
  msgstr "Förnya annons"
9763
  #~ msgid "Listings"
9764
  #~ msgstr "Annonser"
9765
 
 
 
 
 
9766
  #~ msgctxt "admin settings"
9767
  #~ msgid "Featured (Sticky) listing settings"
9768
  #~ msgstr "Inställningar för utvald (sticky) annons"
9828
  #~ msgid "Site title"
9829
  #~ msgstr "Webbplatstitel"
9830
 
 
 
 
 
9831
  #~ msgctxt "settings email"
9832
  #~ msgid "Site address (with link)"
9833
  #~ msgstr "Webbplatsadress (med länk)"
10300
  #~ "Skickas en tid innan annonsen löper ut. Vänder sig enbart till de som "
10301
  #~ "inte auto-förnyas."
10302
 
 
 
 
 
 
 
 
 
10303
  #~ msgctxt "settings"
10304
  #~ msgid "Category that is going to expire"
10305
  #~ msgstr "Kategori som kommer att löpa ut"
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.1.9dev4\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/business-directory-plugin\n"
8
- "POT-Creation-Date: 2018-03-02 04:44:48+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -162,13 +162,13 @@ msgid ""
162
  "payment processor directly."
163
  msgstr ""
164
 
165
- #: includes/class-wpbdp.php:422
166
  msgid ""
167
  "The directory features are disabled at this time because a <a>manual "
168
  "upgrade</a> is pending."
169
  msgstr ""
170
 
171
- #: includes/class-wpbdp.php:429
172
  msgid ""
173
  "The directory is not available at this time. Please try again in a few "
174
  "minutes or contact the administrator if the problem persists."
@@ -1039,47 +1039,47 @@ msgctxt "listing status"
1039
  msgid "Reported"
1040
  msgstr ""
1041
 
1042
- #: includes/class-listing.php:705
1043
  msgctxt "listing status"
1044
  msgid "Unknown"
1045
  msgstr ""
1046
 
1047
- #: includes/class-listing.php:706
1048
  msgctxt "listing status"
1049
  msgid "Legacy"
1050
  msgstr ""
1051
 
1052
- #: includes/class-listing.php:707
1053
  msgctxt "listing status"
1054
  msgid "Incomplete"
1055
  msgstr ""
1056
 
1057
- #: includes/class-listing.php:708
1058
  msgctxt "listing status"
1059
  msgid "Pending Payment"
1060
  msgstr ""
1061
 
1062
- #: includes/class-listing.php:709
1063
  msgctxt "listing status"
1064
  msgid "Complete"
1065
  msgstr ""
1066
 
1067
- #: includes/class-listing.php:710
1068
  msgctxt "listing status"
1069
  msgid "Pending Upgrade"
1070
  msgstr ""
1071
 
1072
- #: includes/class-listing.php:711
1073
  msgctxt "listing status"
1074
  msgid "Expired"
1075
  msgstr ""
1076
 
1077
- #: includes/class-listing.php:712
1078
  msgctxt "listing status"
1079
  msgid "Pending Renewal"
1080
  msgstr ""
1081
 
1082
- #: includes/class-listing.php:713
1083
  msgctxt "listing status"
1084
  msgid "Abandoned"
1085
  msgstr ""
@@ -1135,21 +1135,21 @@ msgid "Send access keys"
1135
  msgstr ""
1136
 
1137
  #: includes/admin/class-admin.php:157
1138
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:63
1139
  msgctxt "listing metabox"
1140
  msgid "Never"
1141
  msgstr ""
1142
 
1143
  #: includes/admin/class-admin.php:158
1144
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1145
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1146
  msgctxt "listing metabox"
1147
  msgid "Yes"
1148
  msgstr ""
1149
 
1150
  #: includes/admin/class-admin.php:159
1151
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:87
1152
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:94
1153
  msgctxt "listing metabox"
1154
  msgid "No"
1155
  msgstr ""
@@ -1190,7 +1190,7 @@ msgid "Listing Status"
1190
  msgstr ""
1191
 
1192
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1193
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:20
1194
  msgctxt "listing metabox"
1195
  msgid "N/A"
1196
  msgstr ""
@@ -1200,62 +1200,62 @@ msgctxt "listing metabox"
1200
  msgid "Last renew date"
1201
  msgstr ""
1202
 
1203
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1204
  msgctxt "listing metabox"
1205
  msgid "Plan Details"
1206
  msgstr ""
1207
 
1208
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:25
1209
  msgctxt "listing metabox"
1210
  msgid "Fee Plan"
1211
  msgstr ""
1212
 
1213
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:34
1214
  msgctxt "listing metabox"
1215
  msgid "Change plan"
1216
  msgstr ""
1217
 
1218
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:46
1219
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:66
1220
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1221
  msgctxt "listing metabox"
1222
  msgid "OK"
1223
  msgstr ""
1224
 
1225
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:47
1226
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1227
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:81
1228
  msgctxt "listing metabox"
1229
  msgid "Cancel"
1230
  msgstr ""
1231
 
1232
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1233
  msgctxt "listing metabox"
1234
  msgid "Amount"
1235
  msgstr ""
1236
 
1237
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:56
1238
  msgctxt "listing metabox"
1239
  msgid "Expires On"
1240
  msgstr ""
1241
 
1242
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:61
1243
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:76
1244
  msgctxt "listing metabox"
1245
  msgid "Edit"
1246
  msgstr ""
1247
 
1248
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1249
  msgctxt "listing metabox"
1250
  msgid "# of images"
1251
  msgstr ""
1252
 
1253
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1254
  msgctxt "listing metabox"
1255
  msgid "Is Featured?"
1256
  msgstr ""
1257
 
1258
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1259
  msgctxt "listing metabox"
1260
  msgid "Is Recurring?"
1261
  msgstr ""
@@ -3140,13 +3140,13 @@ msgid "Author"
3140
  msgstr ""
3141
 
3142
  #: includes/admin/settings/class-settings-bootstrap.php:516
3143
- #: includes/functions.php:995
3144
  msgctxt "admin settings"
3145
  msgid "Date posted"
3146
  msgstr ""
3147
 
3148
  #: includes/admin/settings/class-settings-bootstrap.php:517
3149
- #: includes/functions.php:996
3150
  msgctxt "admin settings"
3151
  msgid "Date last modified"
3152
  msgstr ""
@@ -3441,33 +3441,33 @@ msgctxt "admin settings"
3441
  msgid "Checkout URL link"
3442
  msgstr ""
3443
 
3444
- #: includes/admin/settings/class-settings-bootstrap.php:1156
3445
  msgctxt "admin settings"
3446
  msgid ""
3447
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility "
3448
  "Module\". Please remove the file \"%s\" manually or deactivate the plugin."
3449
  msgstr ""
3450
 
3451
- #: includes/admin/settings/class-settings-bootstrap.php:1169
3452
  msgctxt "admin settings"
3453
  msgid ""
3454
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
3455
  "be created."
3456
  msgstr ""
3457
 
3458
- #: includes/admin/settings/class-settings-bootstrap.php:1174
3459
  msgctxt "admin settings"
3460
  msgid ""
3461
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
3462
  "not activated."
3463
  msgstr ""
3464
 
3465
- #: includes/functions.php:993
3466
  msgctxt "admin settings"
3467
  msgid "User"
3468
  msgstr ""
3469
 
3470
- #: includes/functions.php:994
3471
  msgctxt "admin settings"
3472
  msgid "User registration date"
3473
  msgstr ""
@@ -3492,139 +3492,139 @@ msgctxt "expiration notices"
3492
  msgid "Delete"
3493
  msgstr ""
3494
 
3495
- #: includes/admin/settings/class-settings-admin.php:411
3496
  msgctxt "expiration notices"
3497
  msgid "recurring and non-recurring"
3498
  msgstr ""
3499
 
3500
- #: includes/admin/settings/class-settings-admin.php:413
3501
  msgctxt "expiration notices"
3502
  msgid "recurring only"
3503
  msgstr ""
3504
 
3505
- #: includes/admin/settings/class-settings-admin.php:415
3506
  msgctxt "expiration notices"
3507
  msgid "non-recurring only"
3508
  msgstr ""
3509
 
3510
- #: includes/admin/settings/class-settings-admin.php:419
3511
  msgctxt "expiration notices"
3512
  msgid "Sent when a listing (%s) is renewed."
3513
  msgstr ""
3514
 
3515
- #: includes/admin/settings/class-settings-admin.php:424
3516
  msgctxt "expiration notices"
3517
  msgid "Sent when a listing (%s) expires."
3518
  msgstr ""
3519
 
3520
- #: includes/admin/settings/class-settings-admin.php:432
3521
  msgctxt "expiration notices"
3522
  msgid "%d day"
3523
  msgid_plural "%d days"
3524
  msgstr[0] ""
3525
  msgstr[1] ""
3526
 
3527
- #: includes/admin/settings/class-settings-admin.php:435
3528
  msgctxt "expiration notices"
3529
  msgid "%d week"
3530
  msgid_plural "%d weeks"
3531
  msgstr[0] ""
3532
  msgstr[1] ""
3533
 
3534
- #: includes/admin/settings/class-settings-admin.php:438
3535
  msgctxt "expiration notices"
3536
  msgid "%d month"
3537
  msgid_plural "%d months"
3538
  msgstr[0] ""
3539
  msgstr[1] ""
3540
 
3541
- #: includes/admin/settings/class-settings-admin.php:444
3542
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3543
  #. non-recuring only)
3544
  msgctxt "expiration notices"
3545
  msgid "Sent %1$s before a listing (%2$s) expires."
3546
  msgstr ""
3547
 
3548
- #: includes/admin/settings/class-settings-admin.php:447
3549
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3550
  #. non-recuring only)
3551
  msgctxt "expiration notices"
3552
  msgid "Sent %1$s after a listing (%2$s) expires."
3553
  msgstr ""
3554
 
3555
- #: includes/admin/settings/class-settings-admin.php:464
3556
  msgctxt "expiration notices"
3557
  msgid "At the time of expiration"
3558
  msgstr ""
3559
 
3560
- #: includes/admin/settings/class-settings-admin.php:465
3561
  msgctxt "expiration notices"
3562
  msgid "Right after a successful renewal"
3563
  msgstr ""
3564
 
3565
- #: includes/admin/settings/class-settings-admin.php:474
3566
  msgctxt "expiration notices"
3567
  msgid "%d day before expiration"
3568
  msgid_plural "%d days before expiration"
3569
  msgstr[0] ""
3570
  msgstr[1] ""
3571
 
3572
- #: includes/admin/settings/class-settings-admin.php:474
3573
  msgctxt "expiration notices"
3574
  msgid "%d day after expiration"
3575
  msgid_plural "%d days after expiration"
3576
  msgstr[0] ""
3577
  msgstr[1] ""
3578
 
3579
- #: includes/admin/settings/class-settings-admin.php:477
3580
  msgctxt "expiration notices"
3581
  msgid "%d week before expiration"
3582
  msgid_plural "%d weeks before expiration"
3583
  msgstr[0] ""
3584
  msgstr[1] ""
3585
 
3586
- #: includes/admin/settings/class-settings-admin.php:477
3587
  msgctxt "expiration notices"
3588
  msgid "%d week after expiration"
3589
  msgid_plural "%d weeks after expiration"
3590
  msgstr[0] ""
3591
  msgstr[1] ""
3592
 
3593
- #: includes/admin/settings/class-settings-admin.php:480
3594
  msgctxt "expiration notices"
3595
  msgid "%d month before expiration"
3596
  msgid_plural "%d months before expiration"
3597
  msgstr[0] ""
3598
  msgstr[1] ""
3599
 
3600
- #: includes/admin/settings/class-settings-admin.php:480
3601
  msgctxt "expiration notices"
3602
  msgid "%d month after expiration"
3603
  msgid_plural "%d months after expiration"
3604
  msgstr[0] ""
3605
  msgstr[1] ""
3606
 
3607
- #: includes/admin/settings/class-settings-admin.php:500
3608
  msgctxt "expiration notices"
3609
  msgid "Applies to"
3610
  msgstr ""
3611
 
3612
- #: includes/admin/settings/class-settings-admin.php:503
3613
  msgctxt "expiration notices"
3614
  msgid "Non-recurring listings"
3615
  msgstr ""
3616
 
3617
- #: includes/admin/settings/class-settings-admin.php:504
3618
  msgctxt "expiration notices"
3619
  msgid "Recurring listings"
3620
  msgstr ""
3621
 
3622
- #: includes/admin/settings/class-settings-admin.php:505
3623
  msgctxt "expiration notices"
3624
  msgid "Recurring and non-recurring listings"
3625
  msgstr ""
3626
 
3627
- #: includes/admin/settings/class-settings-admin.php:510
3628
  msgctxt "expiration notices"
3629
  msgid "When to send?"
3630
  msgstr ""
@@ -3634,7 +3634,47 @@ msgctxt "expiration notices"
3634
  msgid "E-mail body text"
3635
  msgstr ""
3636
 
3637
- #: includes/admin/settings/class-settings-admin.php:542
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3638
  msgctxt "settings"
3639
  msgid "Settings reset to default."
3640
  msgstr ""
@@ -4906,22 +4946,22 @@ msgctxt "listing"
4906
  msgid "Add New Listing"
4907
  msgstr ""
4908
 
4909
- #: includes/class-listing.php:294
4910
  msgctxt "listing"
4911
  msgid "Listing expired"
4912
  msgstr ""
4913
 
4914
- #: includes/class-listing.php:446
4915
  msgctxt "listing"
4916
  msgid "(Unavailable Plan)"
4917
  msgstr ""
4918
 
4919
- #: includes/class-listing.php:602
4920
  msgctxt "listing"
4921
  msgid "Plan \"%s\" (recurring)"
4922
  msgstr ""
4923
 
4924
- #: includes/class-listing.php:604
4925
  msgctxt "listing"
4926
  msgid "Plan \"%s\""
4927
  msgstr ""
@@ -4974,17 +5014,17 @@ msgctxt "fees-api"
4974
  msgid "Free Listing"
4975
  msgstr ""
4976
 
4977
- #: includes/class-listing-email-notification.php:130
4978
  msgctxt "notify email"
4979
  msgid "[%s] New listing notification"
4980
  msgstr ""
4981
 
4982
- #: includes/class-listing-email-notification.php:165
4983
  msgctxt "notify email"
4984
  msgid "[%s] Listing edit notification"
4985
  msgstr ""
4986
 
4987
- #: includes/class-listing-email-notification.php:219
4988
  msgctxt "notify email"
4989
  msgid "[%s] Reported listing notification"
4990
  msgstr ""
@@ -5024,20 +5064,31 @@ msgctxt "notify email"
5024
  msgid "Admin URL"
5025
  msgstr ""
5026
 
5027
- #: templates/email/listing-added.tpl.php:17
5028
- #: templates/email/listing-edited.tpl.php:17
5029
- #: templates/email/listing-reported.tpl.php:17
5030
  msgctxt "notify email"
5031
- msgid "Categories"
5032
- msgstr ""
 
 
5033
 
5034
- #: templates/email/listing-added.tpl.php:20
5035
  #: templates/email/listing-edited.tpl.php:20
5036
  #: templates/email/listing-reported.tpl.php:19
5037
  msgctxt "notify email"
5038
  msgid "Posted By"
5039
  msgstr ""
5040
 
 
 
 
 
 
 
 
 
 
 
 
5041
  #: templates/email/listing-reported.tpl.php:21
5042
  msgctxt "notify email"
5043
  msgid "Report IP"
@@ -5254,7 +5305,7 @@ msgctxt "submit listing"
5254
  msgid "Account Creation"
5255
  msgstr ""
5256
 
5257
- #: includes/views/submit_listing.php:363
5258
  msgctxt "submit listing"
5259
  msgid "Terms and Conditions"
5260
  msgstr ""
@@ -5289,52 +5340,52 @@ msgctxt "submit listing"
5289
  msgid "Please choose a valid fee plan for your category selection."
5290
  msgstr ""
5291
 
5292
- #: includes/views/submit_listing.php:717
5293
  msgctxt "submit listing"
5294
  msgid "Please enter your desired username."
5295
  msgstr ""
5296
 
5297
- #: includes/views/submit_listing.php:722
5298
  msgctxt "submit listing"
5299
  msgid "Please enter the e-mail for your new account."
5300
  msgstr ""
5301
 
5302
- #: includes/views/submit_listing.php:727
5303
  msgctxt "submit listing"
5304
  msgid "Please enter the password for your new account."
5305
  msgstr ""
5306
 
5307
- #: includes/views/submit_listing.php:737
5308
  msgctxt "submit listing"
5309
  msgid "The username you chose is already in use. Please use a different one."
5310
  msgstr ""
5311
 
5312
- #: includes/views/submit_listing.php:742
5313
  msgctxt "submit listing"
5314
  msgid "The e-mail address you chose for your account is already in use."
5315
  msgstr ""
5316
 
5317
- #: includes/views/submit_listing.php:757
5318
  msgctxt "submit listing"
5319
  msgid "Create a user account on this site"
5320
  msgstr ""
5321
 
5322
- #: includes/views/submit_listing.php:764
5323
  msgctxt "submit listing"
5324
  msgid "You need to create an account on the site. Please fill out the form below."
5325
  msgstr ""
5326
 
5327
- #: includes/views/submit_listing.php:770
5328
  msgctxt "submit listing"
5329
  msgid "Username:"
5330
  msgstr ""
5331
 
5332
- #: includes/views/submit_listing.php:779
5333
  msgctxt "submit listing"
5334
  msgid "Email:"
5335
  msgstr ""
5336
 
5337
- #: includes/views/submit_listing.php:788
5338
  msgctxt "submit listing"
5339
  msgid "Password:"
5340
  msgstr ""
@@ -5374,17 +5425,17 @@ msgctxt "recaptcha"
5374
  msgid "reCAPTCHA"
5375
  msgstr ""
5376
 
5377
- #: includes/class-wpbdp.php:241
5378
  msgctxt "admin plugins"
5379
  msgid "Settings"
5380
  msgstr ""
5381
 
5382
- #: includes/class-wpbdp.php:323
5383
  msgctxt "listing image upload"
5384
  msgid "Can not upload any more images for this listing."
5385
  msgstr ""
5386
 
5387
- #: includes/class-wpbdp.php:327
5388
  msgctxt "listing image upload"
5389
  msgid ""
5390
  "You're trying to upload %d images, but only have %d slot available. Please "
@@ -6383,36 +6434,36 @@ msgctxt "templates"
6383
  msgid "View not available."
6384
  msgstr ""
6385
 
6386
- #: includes/views/submit_listing.php:826
6387
  msgctxt "templates"
6388
  msgid "Please agree to the Terms and Conditions."
6389
  msgstr ""
6390
 
6391
- #: includes/views/submit_listing.php:834
6392
  msgctxt "templates"
6393
  msgid "Terms and Conditions:"
6394
  msgstr ""
6395
 
6396
- #: includes/views/submit_listing.php:843
6397
  msgctxt "templates"
6398
  msgid "I agree to the <a>Terms and Conditions</a>"
6399
  msgstr ""
6400
 
6401
  #: templates/businessdirectory-listings.tpl.php:27
6402
- #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:6
6403
  #: templates/search.tpl.php:17
6404
  msgctxt "templates"
6405
  msgid "No listings found."
6406
  msgstr ""
6407
 
6408
  #: templates/businessdirectory-listings.tpl.php:38
6409
- #: templates/listings.tpl.php:17
6410
  msgctxt "templates"
6411
  msgid "&laquo; Previous "
6412
  msgstr ""
6413
 
6414
  #: templates/businessdirectory-listings.tpl.php:39
6415
- #: templates/listings.tpl.php:18
6416
  msgctxt "templates"
6417
  msgid "Next &raquo;"
6418
  msgstr ""
@@ -6692,57 +6743,57 @@ msgctxt "sort"
6692
  msgid "(Reset)"
6693
  msgstr ""
6694
 
6695
- #: includes/utils.php:169
6696
  msgctxt "utils"
6697
  msgid "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
6698
  msgstr ""
6699
 
6700
- #: includes/utils.php:216
6701
  msgctxt "utils"
6702
  msgid "File size (%s) exceeds maximum file size of %s"
6703
  msgstr ""
6704
 
6705
- #: includes/utils.php:224
6706
  msgctxt "utils"
6707
  msgid "File size (%s) is inferior to the required minimum file size of %s"
6708
  msgstr ""
6709
 
6710
- #: includes/utils.php:233 includes/utils.php:240
6711
  msgctxt "utils"
6712
  msgid "File type \"%s\" is not allowed"
6713
  msgstr ""
6714
 
6715
- #: includes/utils.php:247
6716
  msgctxt "utils"
6717
  msgid "Unkown error while uploading file."
6718
  msgstr ""
6719
 
6720
- #: includes/utils.php:266
6721
  msgctxt "utils"
6722
  msgid "Uploaded file is not an image"
6723
  msgstr ""
6724
 
6725
- #: includes/utils.php:275
6726
  msgctxt "utils"
6727
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
6728
  msgstr ""
6729
 
6730
- #: includes/utils.php:281
6731
  msgctxt "utils"
6732
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
6733
  msgstr ""
6734
 
6735
- #: includes/utils.php:287
6736
  msgctxt "utils"
6737
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
6738
  msgstr ""
6739
 
6740
- #: includes/utils.php:293
6741
  msgctxt "utils"
6742
  msgid "Image height (%s px) is greater than maximum required height of %s px."
6743
  msgstr ""
6744
 
6745
- #: includes/utils.php:307
6746
  msgctxt "utils"
6747
  msgid "Error while uploading file"
6748
  msgstr ""
@@ -7033,7 +7084,7 @@ msgid ""
7033
  "submit again."
7034
  msgstr ""
7035
 
7036
- #: includes/views/submit_listing.php:669
7037
  msgctxt "listing submit"
7038
  msgid ""
7039
  "Image upload is required, please provide at least one image and submit "
@@ -7446,22 +7497,22 @@ msgctxt "admin infometabox"
7446
  msgid "Access Key"
7447
  msgstr ""
7448
 
7449
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
7450
  msgctxt "admin infometabox"
7451
  msgid "Renewal url (copy & paste)"
7452
  msgstr ""
7453
 
7454
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:101
7455
  msgctxt "admin infometabox"
7456
  msgid "Get renewal URL"
7457
  msgstr ""
7458
 
7459
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:103
7460
  msgctxt "admin infometabox"
7461
  msgid "Send renewal e-mail"
7462
  msgstr ""
7463
 
7464
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:108
7465
  msgctxt "admin infometabox"
7466
  msgid "Renew listing"
7467
  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.2\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/business-directory-plugin\n"
8
+ "POT-Creation-Date: 2018-04-03 16:03:04+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
162
  "payment processor directly."
163
  msgstr ""
164
 
165
+ #: includes/class-wpbdp.php:430
166
  msgid ""
167
  "The directory features are disabled at this time because a <a>manual "
168
  "upgrade</a> is pending."
169
  msgstr ""
170
 
171
+ #: includes/class-wpbdp.php:437
172
  msgid ""
173
  "The directory is not available at this time. Please try again in a few "
174
  "minutes or contact the administrator if the problem persists."
1039
  msgid "Reported"
1040
  msgstr ""
1041
 
1042
+ #: includes/class-listing.php:729
1043
  msgctxt "listing status"
1044
  msgid "Unknown"
1045
  msgstr ""
1046
 
1047
+ #: includes/class-listing.php:730
1048
  msgctxt "listing status"
1049
  msgid "Legacy"
1050
  msgstr ""
1051
 
1052
+ #: includes/class-listing.php:731
1053
  msgctxt "listing status"
1054
  msgid "Incomplete"
1055
  msgstr ""
1056
 
1057
+ #: includes/class-listing.php:732
1058
  msgctxt "listing status"
1059
  msgid "Pending Payment"
1060
  msgstr ""
1061
 
1062
+ #: includes/class-listing.php:733
1063
  msgctxt "listing status"
1064
  msgid "Complete"
1065
  msgstr ""
1066
 
1067
+ #: includes/class-listing.php:734
1068
  msgctxt "listing status"
1069
  msgid "Pending Upgrade"
1070
  msgstr ""
1071
 
1072
+ #: includes/class-listing.php:735
1073
  msgctxt "listing status"
1074
  msgid "Expired"
1075
  msgstr ""
1076
 
1077
+ #: includes/class-listing.php:736
1078
  msgctxt "listing status"
1079
  msgid "Pending Renewal"
1080
  msgstr ""
1081
 
1082
+ #: includes/class-listing.php:737
1083
  msgctxt "listing status"
1084
  msgid "Abandoned"
1085
  msgstr ""
1135
  msgstr ""
1136
 
1137
  #: includes/admin/class-admin.php:157
1138
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:67
1139
  msgctxt "listing metabox"
1140
  msgid "Never"
1141
  msgstr ""
1142
 
1143
  #: includes/admin/class-admin.php:158
1144
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1145
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1146
  msgctxt "listing metabox"
1147
  msgid "Yes"
1148
  msgstr ""
1149
 
1150
  #: includes/admin/class-admin.php:159
1151
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:91
1152
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:98
1153
  msgctxt "listing metabox"
1154
  msgid "No"
1155
  msgstr ""
1190
  msgstr ""
1191
 
1192
  #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
1193
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:23
1194
  msgctxt "listing metabox"
1195
  msgid "N/A"
1196
  msgstr ""
1200
  msgid "Last renew date"
1201
  msgstr ""
1202
 
1203
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:27
1204
  msgctxt "listing metabox"
1205
  msgid "Plan Details"
1206
  msgstr ""
1207
 
1208
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:29
1209
  msgctxt "listing metabox"
1210
  msgid "Fee Plan"
1211
  msgstr ""
1212
 
1213
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:38
1214
  msgctxt "listing metabox"
1215
  msgid "Change plan"
1216
  msgstr ""
1217
 
1218
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:50
1219
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:70
1220
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:84
1221
  msgctxt "listing metabox"
1222
  msgid "OK"
1223
  msgstr ""
1224
 
1225
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:51
1226
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:71
1227
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:85
1228
  msgctxt "listing metabox"
1229
  msgid "Cancel"
1230
  msgstr ""
1231
 
1232
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:54
1233
  msgctxt "listing metabox"
1234
  msgid "Amount"
1235
  msgstr ""
1236
 
1237
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:60
1238
  msgctxt "listing metabox"
1239
  msgid "Expires On"
1240
  msgstr ""
1241
 
1242
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:65
1243
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
1244
  msgctxt "listing metabox"
1245
  msgid "Edit"
1246
  msgstr ""
1247
 
1248
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:75
1249
  msgctxt "listing metabox"
1250
  msgid "# of images"
1251
  msgstr ""
1252
 
1253
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:88
1254
  msgctxt "listing metabox"
1255
  msgid "Is Featured?"
1256
  msgstr ""
1257
 
1258
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:95
1259
  msgctxt "listing metabox"
1260
  msgid "Is Recurring?"
1261
  msgstr ""
3140
  msgstr ""
3141
 
3142
  #: includes/admin/settings/class-settings-bootstrap.php:516
3143
+ #: includes/functions.php:1010
3144
  msgctxt "admin settings"
3145
  msgid "Date posted"
3146
  msgstr ""
3147
 
3148
  #: includes/admin/settings/class-settings-bootstrap.php:517
3149
+ #: includes/functions.php:1011
3150
  msgctxt "admin settings"
3151
  msgid "Date last modified"
3152
  msgstr ""
3441
  msgid "Checkout URL link"
3442
  msgstr ""
3443
 
3444
+ #: includes/admin/settings/class-settings-bootstrap.php:1157
3445
  msgctxt "admin settings"
3446
  msgid ""
3447
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility "
3448
  "Module\". Please remove the file \"%s\" manually or deactivate the plugin."
3449
  msgstr ""
3450
 
3451
+ #: includes/admin/settings/class-settings-bootstrap.php:1170
3452
  msgctxt "admin settings"
3453
  msgid ""
3454
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
3455
  "be created."
3456
  msgstr ""
3457
 
3458
+ #: includes/admin/settings/class-settings-bootstrap.php:1175
3459
  msgctxt "admin settings"
3460
  msgid ""
3461
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
3462
  "not activated."
3463
  msgstr ""
3464
 
3465
+ #: includes/functions.php:1008
3466
  msgctxt "admin settings"
3467
  msgid "User"
3468
  msgstr ""
3469
 
3470
+ #: includes/functions.php:1009
3471
  msgctxt "admin settings"
3472
  msgid "User registration date"
3473
  msgstr ""
3492
  msgid "Delete"
3493
  msgstr ""
3494
 
3495
+ #: includes/admin/settings/class-settings-admin.php:422
3496
  msgctxt "expiration notices"
3497
  msgid "recurring and non-recurring"
3498
  msgstr ""
3499
 
3500
+ #: includes/admin/settings/class-settings-admin.php:424
3501
  msgctxt "expiration notices"
3502
  msgid "recurring only"
3503
  msgstr ""
3504
 
3505
+ #: includes/admin/settings/class-settings-admin.php:426
3506
  msgctxt "expiration notices"
3507
  msgid "non-recurring only"
3508
  msgstr ""
3509
 
3510
+ #: includes/admin/settings/class-settings-admin.php:430
3511
  msgctxt "expiration notices"
3512
  msgid "Sent when a listing (%s) is renewed."
3513
  msgstr ""
3514
 
3515
+ #: includes/admin/settings/class-settings-admin.php:435
3516
  msgctxt "expiration notices"
3517
  msgid "Sent when a listing (%s) expires."
3518
  msgstr ""
3519
 
3520
+ #: includes/admin/settings/class-settings-admin.php:443
3521
  msgctxt "expiration notices"
3522
  msgid "%d day"
3523
  msgid_plural "%d days"
3524
  msgstr[0] ""
3525
  msgstr[1] ""
3526
 
3527
+ #: includes/admin/settings/class-settings-admin.php:446
3528
  msgctxt "expiration notices"
3529
  msgid "%d week"
3530
  msgid_plural "%d weeks"
3531
  msgstr[0] ""
3532
  msgstr[1] ""
3533
 
3534
+ #: includes/admin/settings/class-settings-admin.php:449
3535
  msgctxt "expiration notices"
3536
  msgid "%d month"
3537
  msgid_plural "%d months"
3538
  msgstr[0] ""
3539
  msgstr[1] ""
3540
 
3541
+ #: includes/admin/settings/class-settings-admin.php:455
3542
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3543
  #. non-recuring only)
3544
  msgctxt "expiration notices"
3545
  msgid "Sent %1$s before a listing (%2$s) expires."
3546
  msgstr ""
3547
 
3548
+ #: includes/admin/settings/class-settings-admin.php:458
3549
  #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
3550
  #. non-recuring only)
3551
  msgctxt "expiration notices"
3552
  msgid "Sent %1$s after a listing (%2$s) expires."
3553
  msgstr ""
3554
 
3555
+ #: includes/admin/settings/class-settings-admin.php:475
3556
  msgctxt "expiration notices"
3557
  msgid "At the time of expiration"
3558
  msgstr ""
3559
 
3560
+ #: includes/admin/settings/class-settings-admin.php:476
3561
  msgctxt "expiration notices"
3562
  msgid "Right after a successful renewal"
3563
  msgstr ""
3564
 
3565
+ #: includes/admin/settings/class-settings-admin.php:485
3566
  msgctxt "expiration notices"
3567
  msgid "%d day before expiration"
3568
  msgid_plural "%d days before expiration"
3569
  msgstr[0] ""
3570
  msgstr[1] ""
3571
 
3572
+ #: includes/admin/settings/class-settings-admin.php:485
3573
  msgctxt "expiration notices"
3574
  msgid "%d day after expiration"
3575
  msgid_plural "%d days after expiration"
3576
  msgstr[0] ""
3577
  msgstr[1] ""
3578
 
3579
+ #: includes/admin/settings/class-settings-admin.php:488
3580
  msgctxt "expiration notices"
3581
  msgid "%d week before expiration"
3582
  msgid_plural "%d weeks before expiration"
3583
  msgstr[0] ""
3584
  msgstr[1] ""
3585
 
3586
+ #: includes/admin/settings/class-settings-admin.php:488
3587
  msgctxt "expiration notices"
3588
  msgid "%d week after expiration"
3589
  msgid_plural "%d weeks after expiration"
3590
  msgstr[0] ""
3591
  msgstr[1] ""
3592
 
3593
+ #: includes/admin/settings/class-settings-admin.php:491
3594
  msgctxt "expiration notices"
3595
  msgid "%d month before expiration"
3596
  msgid_plural "%d months before expiration"
3597
  msgstr[0] ""
3598
  msgstr[1] ""
3599
 
3600
+ #: includes/admin/settings/class-settings-admin.php:491
3601
  msgctxt "expiration notices"
3602
  msgid "%d month after expiration"
3603
  msgid_plural "%d months after expiration"
3604
  msgstr[0] ""
3605
  msgstr[1] ""
3606
 
3607
+ #: includes/admin/settings/class-settings-admin.php:518
3608
  msgctxt "expiration notices"
3609
  msgid "Applies to"
3610
  msgstr ""
3611
 
3612
+ #: includes/admin/settings/class-settings-admin.php:521
3613
  msgctxt "expiration notices"
3614
  msgid "Non-recurring listings"
3615
  msgstr ""
3616
 
3617
+ #: includes/admin/settings/class-settings-admin.php:522
3618
  msgctxt "expiration notices"
3619
  msgid "Recurring listings"
3620
  msgstr ""
3621
 
3622
+ #: includes/admin/settings/class-settings-admin.php:523
3623
  msgctxt "expiration notices"
3624
  msgid "Recurring and non-recurring listings"
3625
  msgstr ""
3626
 
3627
+ #: includes/admin/settings/class-settings-admin.php:528
3628
  msgctxt "expiration notices"
3629
  msgid "When to send?"
3630
  msgstr ""
3634
  msgid "E-mail body text"
3635
  msgstr ""
3636
 
3637
+ #: includes/admin/settings/class-settings-admin.php:398
3638
+ msgctxt "settings"
3639
+ msgid "Site title (with link)"
3640
+ msgstr ""
3641
+
3642
+ #: includes/admin/settings/class-settings-admin.php:399
3643
+ msgctxt "settings"
3644
+ msgid "Author's name"
3645
+ msgstr ""
3646
+
3647
+ #: includes/admin/settings/class-settings-admin.php:400
3648
+ msgctxt "settings"
3649
+ msgid "Listing's name (with link)"
3650
+ msgstr ""
3651
+
3652
+ #: includes/admin/settings/class-settings-admin.php:401
3653
+ msgctxt "settings"
3654
+ msgid "Listing's expiration date"
3655
+ msgstr ""
3656
+
3657
+ #: includes/admin/settings/class-settings-admin.php:402
3658
+ msgctxt "settings"
3659
+ msgid "Listing's renewal link"
3660
+ msgstr ""
3661
+
3662
+ #: includes/admin/settings/class-settings-admin.php:403
3663
+ msgctxt "settings"
3664
+ msgid "Listing's categories"
3665
+ msgstr ""
3666
+
3667
+ #: includes/admin/settings/class-settings-admin.php:404
3668
+ msgctxt "settings"
3669
+ msgid "Listing's last payment date"
3670
+ msgstr ""
3671
+
3672
+ #: includes/admin/settings/class-settings-admin.php:405
3673
+ msgctxt "settings"
3674
+ msgid "Listing's access key"
3675
+ msgstr ""
3676
+
3677
+ #: includes/admin/settings/class-settings-admin.php:560
3678
  msgctxt "settings"
3679
  msgid "Settings reset to default."
3680
  msgstr ""
4946
  msgid "Add New Listing"
4947
  msgstr ""
4948
 
4949
+ #: includes/class-listing.php:318
4950
  msgctxt "listing"
4951
  msgid "Listing expired"
4952
  msgstr ""
4953
 
4954
+ #: includes/class-listing.php:470
4955
  msgctxt "listing"
4956
  msgid "(Unavailable Plan)"
4957
  msgstr ""
4958
 
4959
+ #: includes/class-listing.php:626
4960
  msgctxt "listing"
4961
  msgid "Plan \"%s\" (recurring)"
4962
  msgstr ""
4963
 
4964
+ #: includes/class-listing.php:628
4965
  msgctxt "listing"
4966
  msgid "Plan \"%s\""
4967
  msgstr ""
5014
  msgid "Free Listing"
5015
  msgstr ""
5016
 
5017
+ #: includes/class-listing-email-notification.php:151
5018
  msgctxt "notify email"
5019
  msgid "[%s] New listing notification"
5020
  msgstr ""
5021
 
5022
+ #: includes/class-listing-email-notification.php:186
5023
  msgctxt "notify email"
5024
  msgid "[%s] Listing edit notification"
5025
  msgstr ""
5026
 
5027
+ #: includes/class-listing-email-notification.php:240
5028
  msgctxt "notify email"
5029
  msgid "[%s] Reported listing notification"
5030
  msgstr ""
5064
  msgid "Admin URL"
5065
  msgstr ""
5066
 
5067
+ #: templates/email/listing-added.tpl.php:21
 
 
5068
  msgctxt "notify email"
5069
+ msgid "Category"
5070
+ msgid_plural "Categories"
5071
+ msgstr[0] ""
5072
+ msgstr[1] ""
5073
 
5074
+ #: templates/email/listing-added.tpl.php:27
5075
  #: templates/email/listing-edited.tpl.php:20
5076
  #: templates/email/listing-reported.tpl.php:19
5077
  msgctxt "notify email"
5078
  msgid "Posted By"
5079
  msgstr ""
5080
 
5081
+ #: templates/email/listing-added.tpl.php:36
5082
+ msgctxt "notify email"
5083
+ msgid "Annonymous User"
5084
+ msgstr ""
5085
+
5086
+ #: templates/email/listing-edited.tpl.php:17
5087
+ #: templates/email/listing-reported.tpl.php:17
5088
+ msgctxt "notify email"
5089
+ msgid "Categories"
5090
+ msgstr ""
5091
+
5092
  #: templates/email/listing-reported.tpl.php:21
5093
  msgctxt "notify email"
5094
  msgid "Report IP"
5305
  msgid "Account Creation"
5306
  msgstr ""
5307
 
5308
+ #: includes/views/submit_listing.php:365
5309
  msgctxt "submit listing"
5310
  msgid "Terms and Conditions"
5311
  msgstr ""
5340
  msgid "Please choose a valid fee plan for your category selection."
5341
  msgstr ""
5342
 
5343
+ #: includes/views/submit_listing.php:725
5344
  msgctxt "submit listing"
5345
  msgid "Please enter your desired username."
5346
  msgstr ""
5347
 
5348
+ #: includes/views/submit_listing.php:730
5349
  msgctxt "submit listing"
5350
  msgid "Please enter the e-mail for your new account."
5351
  msgstr ""
5352
 
5353
+ #: includes/views/submit_listing.php:735
5354
  msgctxt "submit listing"
5355
  msgid "Please enter the password for your new account."
5356
  msgstr ""
5357
 
5358
+ #: includes/views/submit_listing.php:745
5359
  msgctxt "submit listing"
5360
  msgid "The username you chose is already in use. Please use a different one."
5361
  msgstr ""
5362
 
5363
+ #: includes/views/submit_listing.php:750
5364
  msgctxt "submit listing"
5365
  msgid "The e-mail address you chose for your account is already in use."
5366
  msgstr ""
5367
 
5368
+ #: includes/views/submit_listing.php:765
5369
  msgctxt "submit listing"
5370
  msgid "Create a user account on this site"
5371
  msgstr ""
5372
 
5373
+ #: includes/views/submit_listing.php:772
5374
  msgctxt "submit listing"
5375
  msgid "You need to create an account on the site. Please fill out the form below."
5376
  msgstr ""
5377
 
5378
+ #: includes/views/submit_listing.php:778
5379
  msgctxt "submit listing"
5380
  msgid "Username:"
5381
  msgstr ""
5382
 
5383
+ #: includes/views/submit_listing.php:787
5384
  msgctxt "submit listing"
5385
  msgid "Email:"
5386
  msgstr ""
5387
 
5388
+ #: includes/views/submit_listing.php:796
5389
  msgctxt "submit listing"
5390
  msgid "Password:"
5391
  msgstr ""
5425
  msgid "reCAPTCHA"
5426
  msgstr ""
5427
 
5428
+ #: includes/class-wpbdp.php:249
5429
  msgctxt "admin plugins"
5430
  msgid "Settings"
5431
  msgstr ""
5432
 
5433
+ #: includes/class-wpbdp.php:331
5434
  msgctxt "listing image upload"
5435
  msgid "Can not upload any more images for this listing."
5436
  msgstr ""
5437
 
5438
+ #: includes/class-wpbdp.php:335
5439
  msgctxt "listing image upload"
5440
  msgid ""
5441
  "You're trying to upload %d images, but only have %d slot available. Please "
6434
  msgid "View not available."
6435
  msgstr ""
6436
 
6437
+ #: includes/views/submit_listing.php:834
6438
  msgctxt "templates"
6439
  msgid "Please agree to the Terms and Conditions."
6440
  msgstr ""
6441
 
6442
+ #: includes/views/submit_listing.php:842
6443
  msgctxt "templates"
6444
  msgid "Terms and Conditions:"
6445
  msgstr ""
6446
 
6447
+ #: includes/views/submit_listing.php:851
6448
  msgctxt "templates"
6449
  msgid "I agree to the <a>Terms and Conditions</a>"
6450
  msgstr ""
6451
 
6452
  #: templates/businessdirectory-listings.tpl.php:27
6453
+ #: templates/deprecated/search.tpl.php:21 templates/listings.tpl.php:8
6454
  #: templates/search.tpl.php:17
6455
  msgctxt "templates"
6456
  msgid "No listings found."
6457
  msgstr ""
6458
 
6459
  #: templates/businessdirectory-listings.tpl.php:38
6460
+ #: templates/listings.tpl.php:24
6461
  msgctxt "templates"
6462
  msgid "&laquo; Previous "
6463
  msgstr ""
6464
 
6465
  #: templates/businessdirectory-listings.tpl.php:39
6466
+ #: templates/listings.tpl.php:25
6467
  msgctxt "templates"
6468
  msgid "Next &raquo;"
6469
  msgstr ""
6743
  msgid "(Reset)"
6744
  msgstr ""
6745
 
6746
+ #: includes/utils.php:179
6747
  msgctxt "utils"
6748
  msgid "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
6749
  msgstr ""
6750
 
6751
+ #: includes/utils.php:226
6752
  msgctxt "utils"
6753
  msgid "File size (%s) exceeds maximum file size of %s"
6754
  msgstr ""
6755
 
6756
+ #: includes/utils.php:234
6757
  msgctxt "utils"
6758
  msgid "File size (%s) is inferior to the required minimum file size of %s"
6759
  msgstr ""
6760
 
6761
+ #: includes/utils.php:243 includes/utils.php:250
6762
  msgctxt "utils"
6763
  msgid "File type \"%s\" is not allowed"
6764
  msgstr ""
6765
 
6766
+ #: includes/utils.php:257
6767
  msgctxt "utils"
6768
  msgid "Unkown error while uploading file."
6769
  msgstr ""
6770
 
6771
+ #: includes/utils.php:276
6772
  msgctxt "utils"
6773
  msgid "Uploaded file is not an image"
6774
  msgstr ""
6775
 
6776
+ #: includes/utils.php:285
6777
  msgctxt "utils"
6778
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
6779
  msgstr ""
6780
 
6781
+ #: includes/utils.php:291
6782
  msgctxt "utils"
6783
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
6784
  msgstr ""
6785
 
6786
+ #: includes/utils.php:297
6787
  msgctxt "utils"
6788
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
6789
  msgstr ""
6790
 
6791
+ #: includes/utils.php:303
6792
  msgctxt "utils"
6793
  msgid "Image height (%s px) is greater than maximum required height of %s px."
6794
  msgstr ""
6795
 
6796
+ #: includes/utils.php:317
6797
  msgctxt "utils"
6798
  msgid "Error while uploading file"
6799
  msgstr ""
7084
  "submit again."
7085
  msgstr ""
7086
 
7087
+ #: includes/views/submit_listing.php:677
7088
  msgctxt "listing submit"
7089
  msgid ""
7090
  "Image upload is required, please provide at least one image and submit "
7497
  msgid "Access Key"
7498
  msgstr ""
7499
 
7500
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
7501
  msgctxt "admin infometabox"
7502
  msgid "Renewal url (copy & paste)"
7503
  msgstr ""
7504
 
7505
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:105
7506
  msgctxt "admin infometabox"
7507
  msgid "Get renewal URL"
7508
  msgstr ""
7509
 
7510
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:107
7511
  msgctxt "admin infometabox"
7512
  msgid "Send renewal e-mail"
7513
  msgstr ""
7514
 
7515
+ #: templates/admin/metaboxes-listing-information-plan.tpl.php:112
7516
  msgctxt "admin infometabox"
7517
  msgid "Renew listing"
7518
  msgstr ""
templates/admin/csv-export.tpl.php CHANGED
@@ -15,8 +15,8 @@ $notice = _x( "Please note that the export process is a resource intensive task.
15
  'admin csv-export',
16
  'WPBDM' );
17
  $notice = str_replace( array( 'memory_limit', 'max_execution_time' ),
18
- array( '<a href="http://www.php.net/manual/en/ini.core.php#ini.memory-limit" target="_blank">memory_limit</a>',
19
- '<a href="http://www.php.net/manual/en/info.configuration.php#ini.max-execution-time" target="_blank">max_execution_time</a>' ),
20
  $notice );
21
  echo $notice;
22
  ?>
15
  'admin csv-export',
16
  'WPBDM' );
17
  $notice = str_replace( array( 'memory_limit', 'max_execution_time' ),
18
+ array( '<a href="http://www.php.net/manual/en/ini.core.php#ini.memory-limit" target="_blank" rel="noopener">memory_limit</a>',
19
+ '<a href="http://www.php.net/manual/en/info.configuration.php#ini.max-execution-time" target="_blank" rel="noopener">max_execution_time</a>' ),
20
  $notice );
21
  echo $notice;
22
  ?>
templates/admin/csv-import.tpl.php CHANGED
@@ -18,7 +18,7 @@ _ex( 'Here, you can import data into your directory using the CSV format.',
18
  <?php
19
  echo str_replace(
20
  '<a>',
21
- '<a href="https://businessdirectoryplugin.com/knowledge-base/csv-import-export/" target="_blank">',
22
  _x( 'We strongly recommend reading our <a>CSV import documentation</a> first to help you do things in the right order.',
23
  'admin csv-import',
24
  'WPBDM' ) );
18
  <?php
19
  echo str_replace(
20
  '<a>',
21
+ '<a href="https://businessdirectoryplugin.com/knowledge-base/csv-import-export/" target="_blank" rel="noopener">',
22
  _x( 'We strongly recommend reading our <a>CSV import documentation</a> first to help you do things in the right order.',
23
  'admin csv-import',
24
  'WPBDM' ) );
templates/admin/fees-index.tpl.php CHANGED
@@ -100,7 +100,7 @@
100
  echo str_replace( '<a>',
101
  '<a href="' . admin_url( 'admin.php' ) . '?page=wpbdp_settings&tab=payment">',
102
  sprintf ( _x( 'It does not appear you have any of the payment gateway modules enabled. Either <a>enable the default Authorize.net gateway</a> with your account info, or purchase a different payment gateway module in order to charge a fee for listings. To purchase additional payment gateways use the buttons below or visit %s.','admin templates', 'WPBDM' ),
103
- '<a href="http://businessdirectoryplugin.com/premium-modules/" target="_blank">http://businessdirectoryplugin.com/premium-modules/</a>' ) );
104
  ?></p>
105
  <?php endif; ?>
106
 
@@ -109,7 +109,7 @@
109
  foreach ( $modules as $mod_info ):
110
  ?>
111
  <div class="gateway <?php echo $mod_info[0]; ?> <?php echo wpbdp_has_module( $mod_info[0] ) ? 'installed' : ''; ?>">
112
- <a href="http://businessdirectoryplugin.com/downloads/<?php echo $mod_info[1]; ?>/?ref=wp" target="_blank">
113
  <img src="<?php echo WPBDP_URL; ?>assets/images/<?php echo $mod_info[1]; ?>.png" class="gateway-logo"><br />
114
  <a href="http://">
115
  </a>
@@ -119,7 +119,7 @@
119
  <?php else: ?>
120
  <?php echo str_replace(
121
  '<a>',
122
- '<a href="http://businessdirectoryplugin.com/downloads/' . $mod_info[1] . '/?ref=wp" target="_blank">',
123
  sprintf( _x( 'You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your users.',
124
  'admin templates',
125
  'WPBDM' ), $mod_info[2], $mod_info[3] )
100
  echo str_replace( '<a>',
101
  '<a href="' . admin_url( 'admin.php' ) . '?page=wpbdp_settings&tab=payment">',
102
  sprintf ( _x( 'It does not appear you have any of the payment gateway modules enabled. Either <a>enable the default Authorize.net gateway</a> with your account info, or purchase a different payment gateway module in order to charge a fee for listings. To purchase additional payment gateways use the buttons below or visit %s.','admin templates', 'WPBDM' ),
103
+ '<a href="http://businessdirectoryplugin.com/premium-modules/" target="_blank" rel="noopener">http://businessdirectoryplugin.com/premium-modules/</a>' ) );
104
  ?></p>
105
  <?php endif; ?>
106
 
109
  foreach ( $modules as $mod_info ):
110
  ?>
111
  <div class="gateway <?php echo $mod_info[0]; ?> <?php echo wpbdp_has_module( $mod_info[0] ) ? 'installed' : ''; ?>">
112
+ <a href="http://businessdirectoryplugin.com/downloads/<?php echo $mod_info[1]; ?>/?ref=wp" target="_blank" rel="noopener">
113
  <img src="<?php echo WPBDP_URL; ?>assets/images/<?php echo $mod_info[1]; ?>.png" class="gateway-logo"><br />
114
  <a href="http://">
115
  </a>
119
  <?php else: ?>
120
  <?php echo str_replace(
121
  '<a>',
122
+ '<a href="http://businessdirectoryplugin.com/downloads/' . $mod_info[1] . '/?ref=wp" target="_blank" rel="noopener">',
123
  sprintf( _x( 'You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your users.',
124
  'admin templates',
125
  'WPBDM' ), $mod_info[2], $mod_info[3] )
templates/admin/form-fields.tpl.php CHANGED
@@ -14,7 +14,7 @@
14
  'WPBDM' ); ?><br />
15
  <?php
16
  echo str_replace( '<a>',
17
- '<a href="https://businessdirectoryplugin.com/knowledge-base/manage-form-fields/" target="_blank">',
18
  _x( 'Please see the <a>Form Fields documentation</a> for more details.',
19
  'form-fields admin',
20
  'WPBDM' ) ); ?>
14
  'WPBDM' ); ?><br />
15
  <?php
16
  echo str_replace( '<a>',
17
+ '<a href="https://businessdirectoryplugin.com/knowledge-base/manage-form-fields/" target="_blank" rel="noopener">',
18
  _x( 'Please see the <a>Form Fields documentation</a> for more details.',
19
  'form-fields admin',
20
  'WPBDM' ) ); ?>
templates/admin/home.tpl.php CHANGED
@@ -7,14 +7,14 @@
7
  'WPBDM' ); ?></p>
8
  <ul>
9
  <li>
10
- <?php echo str_replace( '<a>', '<a href="https://businessdirectoryplugin.com/knowledge-base/" target="_blank">',
11
  _x( 'Our complete documentation is <a>here</a> which we encourage you to use while setting things up.', 'admin home', 'WPBDM' ) ); ?>
12
  <li>
13
- <?php echo str_replace( '<a>', '<a href="http://businessdirectoryplugin.com/quick-start-guide/" target="_blank">',
14
  _x( 'We have some quick-start scenarios that you will find useful regarding setup and configuration <a>here</a>.', 'admin home', 'WPBDM' ) ); ?>
15
  </li>
16
  <li>
17
- <?php echo str_replace( '<a>', '<a href="http://businessdirectoryplugin.com/support-forum/" target="_blank">',
18
  _x( 'If you have questions, please post a comment on <a>support forum</a> and we\'ll answer it within 24 hours most days.', 'admin home', 'WPBDM' ) ); ?>
19
 
20
  </ul>
7
  'WPBDM' ); ?></p>
8
  <ul>
9
  <li>
10
+ <?php echo str_replace( '<a>', '<a href="https://businessdirectoryplugin.com/knowledge-base/" target="_blank" rel="noopener">',
11
  _x( 'Our complete documentation is <a>here</a> which we encourage you to use while setting things up.', 'admin home', 'WPBDM' ) ); ?>
12
  <li>
13
+ <?php echo str_replace( '<a>', '<a href="http://businessdirectoryplugin.com/quick-start-guide/" target="_blank" rel="noopener">',
14
  _x( 'We have some quick-start scenarios that you will find useful regarding setup and configuration <a>here</a>.', 'admin home', 'WPBDM' ) ); ?>
15
  </li>
16
  <li>
17
+ <?php echo str_replace( '<a>', '<a href="http://businessdirectoryplugin.com/support-forum/" target="_blank" rel="noopener">',
18
  _x( 'If you have questions, please post a comment on <a>support forum</a> and we\'ll answer it within 24 hours most days.', 'admin home', 'WPBDM' ) ); ?>
19
 
20
  </ul>
templates/admin/metaboxes-listing-information-plan.tpl.php CHANGED
@@ -17,7 +17,11 @@ echo wp_nonce_field( 'update listing plan', 'wpbdp-admin-listing-plan-nonce', fa
17
  <?php endif; ?>
18
  </dd>
19
  <dt><?php _ex( 'Last renew date', 'listing metabox', 'WPBDM' ); ?></dt>
 
 
 
20
  <dd><?php _ex( 'N/A', 'listing metabox', 'WPBDM' ); ?></dd>
 
21
  </dl>
22
 
23
  <h4><?php _ex( 'Plan Details', 'listing metabox', 'WPBDM' ); ?></h4>
@@ -56,7 +60,7 @@ echo wp_nonce_field( 'update listing plan', 'wpbdp-admin-listing-plan-nonce', fa
56
  <dt><?php _ex( 'Expires On', 'listing metabox', 'WPBDM' ); ?></dt>
57
  <dd>
58
  <span class="display-value" id="wpbdp-listing-plan-prop-expiration">
59
- <?php echo $current_plan ? $current_plan->expiration_date : '-'; ?>
60
  </span>
61
  <a href="#" class="edit-value-toggle"><?php _ex( 'Edit', 'listing metabox', 'WPBDM' ); ?></a>
62
  <div class="value-editor">
17
  <?php endif; ?>
18
  </dd>
19
  <dt><?php _ex( 'Last renew date', 'listing metabox', 'WPBDM' ); ?></dt>
20
+ <?php if ( $renewal_date = $listing->get_renewal_date() ): ?>
21
+ <dd><?php echo esc_html( $renewal_date ); ?></dd>
22
+ <?php else: ?>
23
  <dd><?php _ex( 'N/A', 'listing metabox', 'WPBDM' ); ?></dd>
24
+ <?php endif; ?>
25
  </dl>
26
 
27
  <h4><?php _ex( 'Plan Details', 'listing metabox', 'WPBDM' ); ?></h4>
60
  <dt><?php _ex( 'Expires On', 'listing metabox', 'WPBDM' ); ?></dt>
61
  <dd>
62
  <span class="display-value" id="wpbdp-listing-plan-prop-expiration">
63
+ <?php echo $current_plan ? wpbdp_date_full_format( strtotime( $current_plan->expiration_date ) ) : '-'; ?>
64
  </span>
65
  <a href="#" class="edit-value-toggle"><?php _ex( 'Edit', 'listing metabox', 'WPBDM' ); ?></a>
66
  <div class="value-editor">
templates/admin/sidebar.tpl.php CHANGED
@@ -46,7 +46,7 @@ $themes = array(
46
  <?php foreach ( $modules as $mod_info ): ?>
47
  <li class="li_link">
48
  <?php if ( isset( $mod_info[3] ) && 'new' == $mod_info[3] ): ?><span class="tag new"><?php _ex( 'new', 'admin sidebar', 'WPBDM' ); ?></span> <?php endif; ?>
49
- <a href="http://businessdirectoryplugin.com/downloads/<?php echo $mod_info[1]; ?>/?ref=wp" target="_blank"><?php echo $mod_info[2]; ?></a>
50
  </li>
51
  <?php endforeach; ?>
52
  </ul>
@@ -62,7 +62,7 @@ $themes = array(
62
  <?php foreach ( $themes as $mod_info ): ?>
63
  <li class="li_link">
64
  <?php if ( isset( $mod_info[2] ) && 'new' == $mod_info[2] ): ?><span class="tag new"><?php _ex( 'new', 'admin sidebar', 'WPBDM' ); ?></span> <?php endif; ?>
65
- <a href="http://businessdirectoryplugin.com/downloads/<?php echo $mod_info[0]; ?>/?ref=wp" target="_blank"><?php echo $mod_info[1]; ?></a>
66
  </li>
67
  <?php endforeach; ?>
68
  </ul>
@@ -75,13 +75,13 @@ $themes = array(
75
  <div class="inside">
76
  <p>
77
  <?php echo str_replace( '<a>',
78
- '<a href="http://businessdirectoryplugin.com/forums/" target="_blank">',
79
  _x( 'If you\'ve found a bug or need support <a>visit the forums!</a>', 'admin sidebar', 'WPBDM' ) ); ?>
80
  </p>
81
  <p>
82
- &#149; <a href="https://businessdirectoryplugin.com/knowledge-base/" target="_blank"><?php _ex( 'Full plugin documentation', 'admin sidebar', 'WPBDM' ); ?></a><br />
83
- &#149; <a href="http://businessdirectoryplugin.com/quick-start-guide/" target="_blank"><?php _ex( 'Quick Start Guide', 'admin sidebar', 'WPBDM' ); ?></a><br />
84
- &#149; <a href="http://businessdirectoryplugin.com/video-tutorials/" target="_blank"><?php _ex( 'Video Tutorials', 'admin sidebar', 'WPBDM' ); ?></a>
85
  </p>
86
  </div>
87
  </div>
@@ -97,7 +97,7 @@ $themes = array(
97
  foreach ( $modules as $mod_info ):
98
  ?>
99
  <li class="li_link">
100
- <a href="http://businessdirectoryplugin.com/downloads/<?php echo $mod_info[1]; ?>/?ref=wp" target="_blank"><?php echo $mod_info[2]; ?></a>:<br />
101
  <?php
102
  if ( wpbdp_has_module( $mod_info[0] ) ):
103
  echo _x( 'Installed', 'admin sidebar', 'WPBDM' );
46
  <?php foreach ( $modules as $mod_info ): ?>
47
  <li class="li_link">
48
  <?php if ( isset( $mod_info[3] ) && 'new' == $mod_info[3] ): ?><span class="tag new"><?php _ex( 'new', 'admin sidebar', 'WPBDM' ); ?></span> <?php endif; ?>
49
+ <a href="http://businessdirectoryplugin.com/downloads/<?php echo $mod_info[1]; ?>/?ref=wp" target="_blank" rel="noopener"><?php echo $mod_info[2]; ?></a>
50
  </li>
51
  <?php endforeach; ?>
52
  </ul>
62
  <?php foreach ( $themes as $mod_info ): ?>
63
  <li class="li_link">
64
  <?php if ( isset( $mod_info[2] ) && 'new' == $mod_info[2] ): ?><span class="tag new"><?php _ex( 'new', 'admin sidebar', 'WPBDM' ); ?></span> <?php endif; ?>
65
+ <a href="http://businessdirectoryplugin.com/downloads/<?php echo $mod_info[0]; ?>/?ref=wp" target="_blank" rel="noopener"><?php echo $mod_info[1]; ?></a>
66
  </li>
67
  <?php endforeach; ?>
68
  </ul>
75
  <div class="inside">
76
  <p>
77
  <?php echo str_replace( '<a>',
78
+ '<a href="http://businessdirectoryplugin.com/forums/" target="_blank" rel="noopener">',
79
  _x( 'If you\'ve found a bug or need support <a>visit the forums!</a>', 'admin sidebar', 'WPBDM' ) ); ?>
80
  </p>
81
  <p>
82
+ &#149; <a href="https://businessdirectoryplugin.com/knowledge-base/" target="_blank" rel="noopener"><?php _ex( 'Full plugin documentation', 'admin sidebar', 'WPBDM' ); ?></a><br />
83
+ &#149; <a href="http://businessdirectoryplugin.com/quick-start-guide/" target="_blank" rel="noopener"><?php _ex( 'Quick Start Guide', 'admin sidebar', 'WPBDM' ); ?></a><br />
84
+ &#149; <a href="http://businessdirectoryplugin.com/video-tutorials/" target="_blank" rel="noopener"><?php _ex( 'Video Tutorials', 'admin sidebar', 'WPBDM' ); ?></a>
85
  </p>
86
  </div>
87
  </div>
97
  foreach ( $modules as $mod_info ):
98
  ?>
99
  <li class="li_link">
100
+ <a href="http://businessdirectoryplugin.com/downloads/<?php echo $mod_info[1]; ?>/?ref=wp" target="_blank" rel="noopener"><?php echo $mod_info[2]; ?></a>:<br />
101
  <?php
102
  if ( wpbdp_has_module( $mod_info[0] ) ):
103
  echo _x( 'Installed', 'admin sidebar', 'WPBDM' );
templates/admin/themes.tpl.php CHANGED
@@ -11,7 +11,7 @@ echo wpbdp_admin_notices();
11
  <div class="wpbdp-note">
12
  <?php
13
  echo str_replace( '<a>',
14
- '<a href="http://businessdirectoryplugin.com/premium-themes/" target="_blank">',
15
  _x( '<a><b>Directory Themes</b></a> are pre-made templates for the <i>Business Directory Plugin</i> to change the look of the directory quickly and easily. We have a number of them available for purchase <a>here</a>.', 'themes', 'WPBDM' ) ); ?><br />
16
  <?php echo _x( 'They are <strong>different</strong> than your regular WordPress theme and they are <strong>not</strong> a replacement for WP themes either. They will change the look and feel of your business directory only.', 'themes', 'WPBDM' ); ?>
17
  </div>
11
  <div class="wpbdp-note">
12
  <?php
13
  echo str_replace( '<a>',
14
+ '<a href="http://businessdirectoryplugin.com/premium-themes/" target="_blank" rel="noopener">',
15
  _x( '<a><b>Directory Themes</b></a> are pre-made templates for the <i>Business Directory Plugin</i> to change the look of the directory quickly and easily. We have a number of them available for purchase <a>here</a>.', 'themes', 'WPBDM' ) ); ?><br />
16
  <?php echo _x( 'They are <strong>different</strong> than your regular WordPress theme and they are <strong>not</strong> a replacement for WP themes either. They will change the look and feel of your business directory only.', 'themes', 'WPBDM' ); ?>
17
  </div>
templates/email/listing-added.tpl.php CHANGED
@@ -14,7 +14,24 @@
14
 
15
  <?php _ex( 'Admin URL', 'notify email', 'WPBDM' ); ?>: <?php echo wpbdp_get_edit_post_link( $listing->get_id() ); ?>
16
 
17
- <?php _ex('Categories', 'notify email', 'WPBDM'); ?>: <?php foreach ( $listing->get_categories() as $category ): ?><?php echo $category->name; ?> / <?php endforeach; ?>
 
 
 
 
18
 
19
 
20
- <?php _ex('Posted By', 'notify email', 'WPBDM'); ?>: <?php echo $listing->get_author_meta( 'user_login' ); ?> (<?php echo $listing->get_author_meta( 'user_email' ); ?>)
 
 
 
 
 
 
 
 
 
 
 
 
 
14
 
15
  <?php _ex( 'Admin URL', 'notify email', 'WPBDM' ); ?>: <?php echo wpbdp_get_edit_post_link( $listing->get_id() ); ?>
16
 
17
+ <?php $categories = array();
18
+ foreach ( $listing->get_categories() as $category ):
19
+ $categories[] = $category->name;
20
+ endforeach; ?>
21
+ <?php echo _nx('Category', 'Categories', count( $listing->get_categories() ), 'notify email', 'WPBDM'); ?>: <?php echo implode( ' / ', $categories ); ?>
22
 
23
 
24
+ <?php
25
+ $name = $listing->get_author_meta( 'user_login' );
26
+ $email = $listing->get_author_meta( 'user_email' );
27
+ $author_text = _x( 'Posted By', 'notify email', 'WPBDM' ) . ': ';
28
+
29
+ if ( $name && $email ):
30
+ echo $author_text . $name . ' ' . '&lt;' . $email . '&gt;';
31
+ elseif ( $name ):
32
+ echo $author_text . $name;
33
+ elseif ( $email ):
34
+ echo $author_text . '&lt;' . $email . '&gt;';
35
+ else:
36
+ echo $author_text . _x( 'Annonymous User', 'notify email', 'WPBDM' );
37
+ endif; ?>
templates/listings.tpl.php CHANGED
@@ -1,4 +1,6 @@
1
- <?php wpbdp_the_listing_sort_options(); ?>
 
 
2
 
3
  <div class="listings wpbdp-listings-list list">
4
  <?php if ( ! $query->have_posts() ): ?>
@@ -6,16 +8,21 @@
6
  <?php _ex("No listings found.", 'templates', "WPBDM"); ?>
7
  </span>
8
  <?php else: ?>
9
- <?php while ( $query->have_posts() ): $query->the_post(); ?>
10
- <?php echo wpbdp_render_listing( null, 'excerpt' ); ?>
11
- <?php endwhile; ?>
 
 
 
12
 
13
  <div class="wpbdp-pagination">
14
- <?php if (function_exists('wp_pagenavi')) : ?>
15
- <?php wp_pagenavi( array( 'query' => $query ) ); ?>
16
- <?php else: ?>
 
 
17
  <span class="prev"><?php previous_posts_link( _x( '&laquo; Previous ', 'templates', 'WPBDM' ) ); ?></span>
18
- <span class="next"><?php next_posts_link( _x( 'Next &raquo;', 'templates', 'WPBDM'), $query->max_num_pages ); ?></span>
19
  <?php endif; ?>
20
  </div>
21
  <?php endif; ?>
1
+ <?php
2
+ wpbdp_the_listing_sort_options();
3
+ ?>
4
 
5
  <div class="listings wpbdp-listings-list list">
6
  <?php if ( ! $query->have_posts() ): ?>
8
  <?php _ex("No listings found.", 'templates', "WPBDM"); ?>
9
  </span>
10
  <?php else: ?>
11
+ <?php
12
+ while ( $query->have_posts() ) :
13
+ $query->the_post();
14
+ echo wpbdp_render_listing( null, 'excerpt' );
15
+ endwhile;
16
+ ?>
17
 
18
  <div class="wpbdp-pagination">
19
+ <?php
20
+ if ( function_exists('wp_pagenavi' ) ) :
21
+ wp_pagenavi( array( 'query' => $query ) );
22
+ else:
23
+ ?>
24
  <span class="prev"><?php previous_posts_link( _x( '&laquo; Previous ', 'templates', 'WPBDM' ) ); ?></span>
25
+ <span class="next"><?php next_posts_link( _x( 'Next &raquo;', 'templates', 'WPBDM' ), $query->max_num_pages ); ?></span>
26
  <?php endif; ?>
27
  </div>
28
  <?php endif; ?>
templates/parts/listing-buttons.tpl.php CHANGED
@@ -14,7 +14,7 @@
14
  <input type="button" value="←" onclick="window.location.href = '<?php echo wpbdp_url( '/' ); ?>'" class="wpbdp-show-on-mobile button back-to-dir wpbdp-button" />
15
  <?php endif; ?>
16
  <?php elseif ( $view == 'excerpt' ): ?>
17
- <?php if ( wpbdp_user_can( 'view', $listing_id ) ) : ?><a class="wpbdp-button button view-listing" href="<?php the_permalink(); ?>" <?php if ( wpbdp_get_option( 'listing-link-in-new-tab' ) ): ?>target="_blank"<?php endif; ?>><?php _ex('View', 'templates', 'WPBDM'); ?></a><?php endif; ?>
18
  <?php if ( wpbdp_user_can( 'edit', $listing_id ) ) : ?><a class="wpbdp-button button edit-listing" href="<?php echo wpbdp_url( 'edit_listing', $listing_id ); ?>"><?php _ex('Edit', 'templates', 'WPBDM'); ?></a><?php endif; ?>
19
  <?php if ( wpbdp_get_option( 'enable-listing-flagging' ) && wpbdp_user_can( 'flagging', $listing_id ) ): ?><a class="wpbdp-button button report-listing" href="<?php echo esc_url( wpbdp_url( 'flag_listing', $listing_id ) ); ?>"><?php echo apply_filters( 'wpbdp_listing_flagging_button_text', _x( 'Flag Listing', 'templates', 'WPBDM' ) ); ?></a><?php endif; ?>
20
  <?php if ( wpbdp_user_can( 'delete', $listing_id ) ) : ?><a class="wpbdp-button button delete-listing" href="<?php echo wpbdp_url( 'delete_listing', $listing_id ); ?>"><?php _ex( 'Delete', 'templates', 'WPBD"M' ); ?></a><?php endif; ?>
14
  <input type="button" value="←" onclick="window.location.href = '<?php echo wpbdp_url( '/' ); ?>'" class="wpbdp-show-on-mobile button back-to-dir wpbdp-button" />
15
  <?php endif; ?>
16
  <?php elseif ( $view == 'excerpt' ): ?>
17
+ <?php if ( wpbdp_user_can( 'view', $listing_id ) ) : ?><a class="wpbdp-button button view-listing" href="<?php the_permalink(); ?>" <?php if ( wpbdp_get_option( 'listing-link-in-new-tab' ) ): ?>target="_blank" rel="noopener" <?php endif; ?>><?php _ex('View', 'templates', 'WPBDM'); ?></a><?php endif; ?>
18
  <?php if ( wpbdp_user_can( 'edit', $listing_id ) ) : ?><a class="wpbdp-button button edit-listing" href="<?php echo wpbdp_url( 'edit_listing', $listing_id ); ?>"><?php _ex('Edit', 'templates', 'WPBDM'); ?></a><?php endif; ?>
19
  <?php if ( wpbdp_get_option( 'enable-listing-flagging' ) && wpbdp_user_can( 'flagging', $listing_id ) ): ?><a class="wpbdp-button button report-listing" href="<?php echo esc_url( wpbdp_url( 'flag_listing', $listing_id ) ); ?>"><?php echo apply_filters( 'wpbdp_listing_flagging_button_text', _x( 'Flag Listing', 'templates', 'WPBDM' ) ); ?></a><?php endif; ?>
20
  <?php if ( wpbdp_user_can( 'delete', $listing_id ) ) : ?><a class="wpbdp-button button delete-listing" href="<?php echo wpbdp_url( 'delete_listing', $listing_id ); ?>"><?php _ex( 'Delete', 'templates', 'WPBD"M' ); ?></a><?php endif; ?>