Business Directory Plugin - Version 5.1.2

Version Description

Download this release

Release Info

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

Code changes from version 5.1.1 to 5.1.2

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: 2017-Nov-16
9
- Stable tag: 5.1.1
10
  License: GPLv2 or later
11
 
12
  Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory and much more!
@@ -143,13 +143,19 @@ If you are having problems please visit [support forum](http://www.businessdirec
143
 
144
 
145
  == Changelog ==
 
 
 
 
 
 
146
 
147
  = Version 5.1.1 =
148
- - Improve format detection for expiration dates on CSV imports.
149
- - Updated French translation.
150
- - Fix support for reCAPTCHA for listing submits.
151
- - Fix PHP notice in checkout view.
152
- - Execute admin views in a more adequate hook.
153
 
154
  = Version 5.1 =
155
  * Update CSV import & export to include/support fee plan information.
5
  Requires at least: 4.3
6
  Requires PHP: 5.6
7
  Tested up to: 4.9
8
+ Last Updated: 2017-Nov-21
9
+ Stable tag: 5.1.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!
143
 
144
 
145
  == Changelog ==
146
+ = Version 5.1.2 =
147
+ * Do not automatically select the first available category during listing submit.
148
+ * Do not show payment receipt at the end of the submit process when listing is free.
149
+ * Skip plan selection when there's only one plan available.
150
+ * Do not show "Continue to Payment" label when directory is in free mode.
151
+ * Add some compatibility code to prevent fatal errors when using the Facebook Open Tags plugin.
152
 
153
  = Version 5.1.1 =
154
+ * Improve format detection for expiration dates on CSV imports.
155
+ * Updated French translation.
156
+ * Fix support for reCAPTCHA for listing submits.
157
+ * Fix PHP notice in checkout view.
158
+ * Execute admin views in a more adequate hook.
159
 
160
  = Version 5.1 =
161
  * Update CSV import & export to include/support fee plan information.
assets/js/submit-listing.js CHANGED
@@ -37,6 +37,15 @@ jQuery(function($) {
37
  return;
38
  }
39
 
 
 
 
 
 
 
 
 
 
40
  this.$plans_container = $( '.wpbdp-plan-selection-wrapper' );
41
  this.$plan_selection = this.$plans_container.find( '.wpbdp-plan-selection' );
42
  this.plans = this.$plan_selection.find( '.wpbdp-plan' );
37
  return;
38
  }
39
 
40
+ this.skip_plan_selection = ( 1 == $( 'input[type="hidden"][name="skip_plan_selection"][value="1"]' ).length );
41
+ if ( this.skip_plan_selection ) {
42
+ return;
43
+ // alert('skip plan');
44
+ // this.field.change( function() {
45
+ // } );
46
+ // return;
47
+ }
48
+
49
  this.$plans_container = $( '.wpbdp-plan-selection-wrapper' );
50
  this.$plan_selection = this.$plans_container.find( '.wpbdp-plan-selection' );
51
  this.plans = this.$plan_selection.find( '.wpbdp-plan' );
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="",$(".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.$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})})}},_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"))})}}),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))})},$.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.editing){var $plan=this.$form.find(".wpbdp-current-plan .wpbdp-plan"),plan_cats=$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($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="",$(".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})})}},_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"))})}}),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))})},$.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.editing){var $plan=this.$form.find(".wpbdp-current-plan .wpbdp-plan"),plan_cats=$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($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: http://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.1
7
  * Author: D. Rodenbaugh
8
  * Author URI: https://businessdirectoryplugin.com
9
  * Text Domain: WPBDM
3
  * Plugin Name: Business Directory Plugin
4
  * Plugin URI: http://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.2
7
  * Author: D. Rodenbaugh
8
  * Author URI: https://businessdirectoryplugin.com
9
  * Text Domain: WPBDM
includes/admin/helpers/class-listing-timeline.php CHANGED
@@ -78,6 +78,10 @@ class WPBDP__Listing_Timeline {
78
  private function process_listing_payment( $item ) {
79
  $payment = WPBDP_Payment::objects()->get( $item->rel_object_id );
80
 
 
 
 
 
81
  // switch ( $payment->payment_type ) {
82
  // case 'initial':
83
  // $item->html .= 'Initial Payment';
78
  private function process_listing_payment( $item ) {
79
  $payment = WPBDP_Payment::objects()->get( $item->rel_object_id );
80
 
81
+ if ( ! $payment ) {
82
+ return $item;
83
+ }
84
+
85
  // switch ( $payment->payment_type ) {
86
  // case 'initial':
87
  // $item->html .= 'Initial Payment';
includes/class-listings-api.php CHANGED
@@ -92,7 +92,16 @@ class WPBDP_Listings_API {
92
 
93
  // }}}
94
 
 
 
 
 
 
 
 
95
 
 
 
96
 
97
  }
98
 
92
 
93
  // }}}
94
 
95
+ /**
96
+ * @deprecated since 5.0. Added back in 5.1.2 for compatibility with other plugins (#3178)
97
+ */
98
+ public function get_thumbnail_id( $listing_id ) {
99
+ if ( $listing = wpbdp_get_listing( $listing_id ) ) {
100
+ return $listing->get_thumbnail_id();
101
+ }
102
 
103
+ return 0;
104
+ }
105
 
106
  }
107
 
includes/class-wpbdp.php CHANGED
@@ -19,7 +19,7 @@ final class WPBDP {
19
  }
20
 
21
  private function setup_constants() {
22
- define( 'WPBDP_VERSION', '5.1.1' );
23
 
24
  define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
25
  define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
19
  }
20
 
21
  private function setup_constants() {
22
+ define( 'WPBDP_VERSION', '5.1.2' );
23
 
24
  define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
25
  define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
includes/fields/class-fieldtypes-select.php CHANGED
@@ -68,43 +68,56 @@ class WPBDP_FieldTypes_Select extends WPBDP_Form_Field_Type {
68
  $size = $field->data( 'size', 4 );
69
 
70
  if ( $field->get_association() == 'category' ) {
71
- $html .= wp_dropdown_categories( apply_filters( 'wpbdp_field_type_select_categories_args', array(
72
- 'taxonomy' => $field->get_association() == 'tags' ? WPBDP_TAGS_TAX : WPBDP_CATEGORY_TAX,
73
- 'show_option_none' => $context == 'search' ? ( $this->is_multiple() ? _x( '-- Choose Terms --', 'form-fields-api category-select', 'WPBDM' ) : _x( '-- Choose One --', 'form-fields-api category-select', 'WPBDM' ) ) : null,
74
- 'orderby' => wpbdp_get_option( 'categories-order-by' ),
75
- 'selected' => ( $this->is_multiple() ? null : ( $value ? $value[0] : null ) ),
76
- 'order' => wpbdp_get_option('categories-sort' ),
77
- 'hide_empty' => $context == 'search' && wpbdp_get_option( 'hide-empty-categories' ) ? 1 : 0,
78
- 'hierarchical' => 1,
79
- 'echo' => 0,
80
- 'id' => 'wpbdp-field-' . $field->get_id(),
81
- 'name' => 'listingfields[' . $field->get_id() . ']',
82
- 'class' => 'wpbdp-js-select2'
83
- ), $field, $value, $context, $extra, $field_settings )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  );
85
 
86
- if ( $this->is_multiple() ) {
87
- $html = preg_replace(
88
- "/\\<select(.*)name=('|\")(.*)('|\")(.*)\\>/uiUs",
89
- sprintf( "<select name=\"$3[]\" multiple=\"multiple\" $1 $5 size=\"%d\">", $size ),
90
- $html
91
- );
92
-
93
- if ($value) {
94
- foreach ( $value as $catid ) {
95
- $html = preg_replace( "/\\<option(.*)value=('|\"){$catid}('|\")(.*)\\>/uiU",
96
- "<option value=\"{$catid}\" selected=\"selected\" $1 $4>",
97
- $html );
98
- }
99
  }
100
  }
 
101
 
102
- if ( 'search' == $context && $this->is_multiple() ) {
103
- // Disable "Choose Terms".
104
- $html = preg_replace( "/\\<option(.*)value=('|\")-1('|\")(.*)\\>/uiU",
105
- "<option value=\"-1\" disabled=\"disabled\" $1 $4>",
106
- $html );
107
- }
108
  } else {
109
  $html .= sprintf( '<select id="%s" name="%s" %s class="%s %s" %s>',
110
  'wpbdp-field-' . $field->get_id(),
68
  $size = $field->data( 'size', 4 );
69
 
70
  if ( $field->get_association() == 'category' ) {
71
+ $args = array(
72
+ 'taxonomy' => $field->get_association() == 'tags' ? WPBDP_TAGS_TAX : WPBDP_CATEGORY_TAX,
73
+ 'show_option_none' => null,
74
+ 'orderby' => wpbdp_get_option( 'categories-order-by' ),
75
+ 'selected' => ( $this->is_multiple() ? null : ( $value ? $value[0] : null ) ),
76
+ 'order' => wpbdp_get_option('categories-sort' ),
77
+ 'hide_empty' => $context == 'search' && wpbdp_get_option( 'hide-empty-categories' ) ? 1 : 0,
78
+ 'hierarchical' => 1,
79
+ 'echo' => 0,
80
+ 'id' => 'wpbdp-field-' . $field->get_id(),
81
+ 'name' => 'listingfields[' . $field->get_id() . ']',
82
+ 'class' => 'wpbdp-js-select2'
83
+ );
84
+
85
+ if ( ( 'submit' == $context || 'search' == $context ) && ! $this->is_multiple() ) {
86
+ $args['show_option_none'] = _x( '-- Choose One --', 'form-fields-api category-select', 'WPBDM' );
87
+
88
+ if ( 'submit' == $context ) {
89
+ $args['option_none_value'] = '';
90
+ }
91
+ } else if ( 'search' == $context && $this->is_multiple() ) {
92
+ $args['show_option_none'] = _x( '-- Choose Terms --', 'form-fields-api category-select', 'WPBDM' );
93
+ }
94
+
95
+ $args = apply_filters( 'wpbdp_field_type_select_categories_args', $args, $field, $value, $context, $extra, $field_settings );
96
+
97
+ $html .= wp_dropdown_categories( $args );
98
+
99
+ if ( $this->is_multiple() ) {
100
+ $html = preg_replace(
101
+ "/\\<select(.*)name=('|\")(.*)('|\")(.*)\\>/uiUs",
102
+ sprintf( "<select name=\"$3[]\" multiple=\"multiple\" $1 $5 size=\"%d\">", $size ),
103
+ $html
104
  );
105
 
106
+ if ($value) {
107
+ foreach ( $value as $catid ) {
108
+ $html = preg_replace( "/\\<option(.*)value=('|\"){$catid}('|\")(.*)\\>/uiU",
109
+ "<option value=\"{$catid}\" selected=\"selected\" $1 $4>",
110
+ $html );
 
 
 
 
 
 
 
 
111
  }
112
  }
113
+ }
114
 
115
+ if ( 'search' == $context && $this->is_multiple() ) {
116
+ // Disable "Choose Terms".
117
+ $html = preg_replace( "/\\<option(.*)value=('|\")-1('|\")(.*)\\>/uiU",
118
+ "<option value=\"-1\" disabled=\"disabled\" $1 $4>",
119
+ $html );
120
+ }
121
  } else {
122
  $html .= sprintf( '<select id="%s" name="%s" %s class="%s %s" %s>',
123
  'wpbdp-field-' . $field->get_id(),
includes/views/submit_listing.php CHANGED
@@ -12,6 +12,11 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
12
  protected $data = array();
13
  protected $messages = array( 'general' => array() );
14
 
 
 
 
 
 
15
 
16
  public function get_title() {
17
  return _x( 'Submit A Listing', 'views', 'WPBDM' );
@@ -92,6 +97,7 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
92
  }
93
  }
94
 
 
95
  $this->sections = $this->submit_sections();
96
  $this->prepare_sections();
97
 
@@ -132,7 +138,9 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
132
  'sections' => $this->sections,
133
  'messages' => $messages,
134
  'is_admin' => current_user_can( 'administrator' ),
135
- 'editing' => $this->editing ),
 
 
136
  false );
137
  return $html;
138
  }
@@ -163,6 +171,33 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
163
  $this->ajax_sections();
164
  }
165
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  public function ajax_sections() {
167
  $res = new WPBDP_Ajax_Response();
168
 
@@ -176,6 +211,7 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
176
  unset( $_POST['save_listing'] );
177
  }
178
 
 
179
  $this->sections = $this->submit_sections();
180
  $this->prepare_sections();
181
 
@@ -275,7 +311,7 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
275
 
276
  if ( $this->can_edit_plan_or_categories() ) {
277
  $sections['plan_selection'] = array(
278
- 'title' => _x( 'Category & plan selection', 'submit listing', 'WPBDM' )
279
  );
280
  }
281
 
@@ -318,6 +354,9 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
318
  }
319
 
320
  $plan = $this->listing->get_fee_plan();
 
 
 
321
 
322
  if ( 'flat' == $plan->fee->pricing_model ) {
323
  return true;
@@ -364,11 +403,14 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
364
 
365
  $section['flags'][] = $section['state'];
366
  }
 
 
367
  }
368
 
369
  private function section_render( $template, $vars = array(), $result = true ) {
370
  $vars['listing'] = $this->listing;
371
  $vars['editing'] = $this->editing;
 
372
  $output = wpbdp_render( $template, $vars, false );
373
 
374
  return array( $result, $output );
@@ -377,8 +419,8 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
377
  private function plan_selection() {
378
  global $wpbdp;
379
 
 
380
  $category_field = wpbdp_get_form_fields( 'association=category&unique=1' ) or die( '' );
381
- $plans = wpbdp_get_fee_plans();
382
 
383
  if ( ! $plans )
384
  wp_die( _x( 'Can not submit a listing at this moment. Please try again later.', 'submit listing', 'WPBDM' ) );
@@ -395,7 +437,21 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
395
  }
396
  } else {
397
  $categories = $category_field->value_from_POST();
398
- $plan_id = ! empty( $_POST['listing_plan'] ) ? absint( $_POST['listing_plan'] ) : 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
399
  }
400
 
401
  $errors = array();
@@ -425,6 +481,8 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
425
  $this->listing->set_fee_plan( $plan );
426
  }
427
  }
 
 
428
  }
429
 
430
  if ( $this->editing ) {
@@ -432,15 +490,24 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
432
  $this->prevent_save = true;
433
  }
434
  } else {
435
- if ( $this->listing->get_fee_plan() ) {
436
- return $this->section_render( 'submit-listing-plan-selection-complete' );
 
437
  } else {
438
- $this->prevent_save = true;
 
 
 
 
439
  }
440
  }
441
 
442
  if ( ! $this->editing ) {
443
  $selected_plan = ! empty( $this->data['previous_plan'] ) ? $this->data['previous_plan'] : 0;
 
 
 
 
444
  } else {
445
  $selected_plan = $plan_id;
446
  }
12
  protected $data = array();
13
  protected $messages = array( 'general' => array() );
14
 
15
+ private $available_plans = array();
16
+ public $skip_plan_selection = false;
17
+ public $skip_plan_payment = false;
18
+ public $fixed_plan_id = 0;
19
+
20
 
21
  public function get_title() {
22
  return _x( 'Submit A Listing', 'views', 'WPBDM' );
97
  }
98
  }
99
 
100
+ $this->configure();
101
  $this->sections = $this->submit_sections();
102
  $this->prepare_sections();
103
 
138
  'sections' => $this->sections,
139
  'messages' => $messages,
140
  'is_admin' => current_user_can( 'administrator' ),
141
+ 'editing' => $this->editing,
142
+ 'submit' => $this,
143
+ ),
144
  false );
145
  return $html;
146
  }
171
  $this->ajax_sections();
172
  }
173
 
174
+ /**
175
+ * Additional configuration for the submit process, prior to the sections being called.
176
+ * @since 5.1.2
177
+ */
178
+ private function configure() {
179
+ $this->available_plans = wpbdp_get_fee_plans();
180
+
181
+ // Show "Complete Listing" instead of "Continue to Payment" if all fees are free.
182
+ $this->skip_plan_payment = true;
183
+ foreach ( $this->available_plans as $plan ) {
184
+ if ( 'flat' != $plan->pricing_model || 0.0 != $plan->amount ) {
185
+ $this->skip_plan_payment = false;
186
+ break;
187
+ }
188
+ }
189
+
190
+ // Maybe skip plan selection?
191
+ if ( $this->skip_plan_payment ) {
192
+ $this->skip_plan_selection = ( 1 == count( $this->available_plans ) );
193
+
194
+ if ( $this->skip_plan_selection ) {
195
+ $plan = $this->available_plans[0];
196
+ $this->fixed_plan_id = $plan->id;
197
+ }
198
+ }
199
+ }
200
+
201
  public function ajax_sections() {
202
  $res = new WPBDP_Ajax_Response();
203
 
211
  unset( $_POST['save_listing'] );
212
  }
213
 
214
+ $this->configure();
215
  $this->sections = $this->submit_sections();
216
  $this->prepare_sections();
217
 
311
 
312
  if ( $this->can_edit_plan_or_categories() ) {
313
  $sections['plan_selection'] = array(
314
+ 'title' => $this->skip_plan_selection ? _x( 'Category selection', 'submit listing', 'WPBDM' ) : _x( 'Category & plan selection', 'submit listing', 'WPBDM' )
315
  );
316
  }
317
 
354
  }
355
 
356
  $plan = $this->listing->get_fee_plan();
357
+ if ( ! $plan->fee ) {
358
+ return false;
359
+ }
360
 
361
  if ( 'flat' == $plan->fee->pricing_model ) {
362
  return true;
403
 
404
  $section['flags'][] = $section['state'];
405
  }
406
+
407
+ $this->sections = apply_filters( 'wpbdp_submit_prepare_sections', $this->sections, $this );
408
  }
409
 
410
  private function section_render( $template, $vars = array(), $result = true ) {
411
  $vars['listing'] = $this->listing;
412
  $vars['editing'] = $this->editing;
413
+ $vars['_submit'] = $this;
414
  $output = wpbdp_render( $template, $vars, false );
415
 
416
  return array( $result, $output );
419
  private function plan_selection() {
420
  global $wpbdp;
421
 
422
+ $plans = $this->available_plans;
423
  $category_field = wpbdp_get_form_fields( 'association=category&unique=1' ) or die( '' );
 
424
 
425
  if ( ! $plans )
426
  wp_die( _x( 'Can not submit a listing at this moment. Please try again later.', 'submit listing', 'WPBDM' ) );
437
  }
438
  } else {
439
  $categories = $category_field->value_from_POST();
440
+
441
+ if ( $this->skip_plan_selection ) {
442
+ $plan_id = $this->fixed_plan_id;
443
+
444
+ if ( ! $this->listing->get_fee_plan() ) {
445
+ $this->listing->set_fee_plan( $plan_id );
446
+ }
447
+
448
+ if ( $this->saving() && ! $categories ) {
449
+ $this->messages( _x( 'Please select a category for your listing.', 'submit listing', 'WPBDM' ), 'error', 'plan_selection' );
450
+ $this->prevent_save = true;
451
+ }
452
+ } else {
453
+ $plan_id = ! empty( $_POST['listing_plan'] ) ? absint( $_POST['listing_plan'] ) : 0;
454
+ }
455
  }
456
 
457
  $errors = array();
481
  $this->listing->set_fee_plan( $plan );
482
  }
483
  }
484
+ } else if ( ! $categories && $this->skip_plan_selection ) {
485
+ wp_set_post_terms( $this->listing->get_id(), array(), WPBDP_CATEGORY_TAX, false );
486
  }
487
 
488
  if ( $this->editing ) {
490
  $this->prevent_save = true;
491
  }
492
  } else {
493
+
494
+ if ( $this->skip_plan_selection ) {
495
+ $this->data['previous_categories'] = $this->listing->get_categories( 'ids' );
496
  } else {
497
+ if ( $this->listing->get_fee_plan() ) {
498
+ return $this->section_render( 'submit-listing-plan-selection-complete' );
499
+ } else {
500
+ $this->prevent_save = true;
501
+ }
502
  }
503
  }
504
 
505
  if ( ! $this->editing ) {
506
  $selected_plan = ! empty( $this->data['previous_plan'] ) ? $this->data['previous_plan'] : 0;
507
+
508
+ if ( $this->skip_plan_selection ) {
509
+ $selected_plan = $plan_id;
510
+ }
511
  } else {
512
  $selected_plan = $plan_id;
513
  }
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: 2017-11-16 23:46:36+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"
@@ -2503,19 +2503,19 @@ msgstr "تم تحديث الوسوم"
2503
 
2504
  #: includes/fields/class-fieldtypes-checkbox.php:74
2505
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2506
- #: includes/fields/class-fieldtypes-select.php:173
2507
  msgctxt "form-fields admin"
2508
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2509
  msgstr "خيارات الحقل (لتحديد القوائم وأزرار الخيارات وخانات الاختيار)."
2510
 
2511
  #: includes/fields/class-fieldtypes-checkbox.php:95
2512
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2513
- #: includes/fields/class-fieldtypes-select.php:201
2514
  msgctxt "form-fields admin"
2515
  msgid "Field list of options is required."
2516
  msgstr "قائمة خيارات الحقل مطلوبة."
2517
 
2518
- #: includes/fields/class-fieldtypes-select.php:184
2519
  msgctxt "form-fields admin"
2520
  msgid "Allow empty selection on search?"
2521
  msgstr "السماح بالتحديد الفارغ في البحث؟"
@@ -5324,7 +5324,7 @@ msgctxt "rss feed"
5324
  msgid "%s Feed"
5325
  msgstr "تغذية %s"
5326
 
5327
- #: includes/class-meta.php:155 includes/views/submit_listing.php:17
5328
  msgctxt "views"
5329
  msgid "Submit A Listing"
5330
  msgstr "إضافة إعلان"
@@ -5456,24 +5456,24 @@ msgctxt "submit listing"
5456
  msgid "Listing submitted by admin. Payment skipped."
5457
  msgstr "Poster annonce(paiement initial)"
5458
 
5459
- #: includes/views/submit_listing.php:42
5460
  msgctxt "submit listing"
5461
  msgid "Click this field to add categories"
5462
  msgstr ""
5463
 
5464
- #: includes/views/submit_listing.php:43 templates/submit-listing.tpl.php:23
5465
  #, fuzzy
5466
  msgctxt "submit listing"
5467
  msgid "Complete Listing"
5468
  msgstr "حذف الإعلان"
5469
 
5470
- #: includes/views/submit_listing.php:44 templates/submit-listing.tpl.php:28
5471
  #, fuzzy
5472
  msgctxt "submit listing"
5473
  msgid "Continue to Payment"
5474
  msgstr "الدفعة الأولية"
5475
 
5476
- #: includes/views/submit_listing.php:86
5477
  msgctxt "submit listing"
5478
  msgid ""
5479
  "This listing can't be edited at this time because it has no fee plan "
@@ -5481,54 +5481,60 @@ msgid ""
5481
  "to a fee plan."
5482
  msgstr ""
5483
 
5484
- #: includes/views/submit_listing.php:91
5485
  msgctxt "submit listing"
5486
  msgid ""
5487
  "This listing can't be edited at this time. Please try again later or contact "
5488
  "the admin if the problem persists."
5489
  msgstr ""
5490
 
5491
- #: includes/views/submit_listing.php:112
5492
  #, fuzzy
5493
  msgctxt "submit listing"
5494
  msgid "You're logged in as admin, payment will be skipped."
5495
  msgstr "لقد تم تسجيل دخولك كمدير. سيتم تخطي أي خطوات للدفع."
5496
 
5497
- #: includes/views/submit_listing.php:278
 
 
 
 
 
 
5498
  #, fuzzy
5499
  msgctxt "submit listing"
5500
  msgid "Category & plan selection"
5501
  msgstr "إختيار تصنيف"
5502
 
5503
- #: includes/views/submit_listing.php:283
5504
  #, fuzzy
5505
  msgctxt "submit listing"
5506
  msgid "Listing Information"
5507
  msgstr "معلومات حول الإعلان"
5508
 
5509
- #: includes/views/submit_listing.php:287
5510
  #, fuzzy
5511
  msgctxt "submit listing"
5512
  msgid "Listing Images"
5513
  msgstr "صور الإعلانات"
5514
 
5515
- #: includes/views/submit_listing.php:293
5516
  msgctxt "submit listing"
5517
  msgid "Account Creation"
5518
  msgstr ""
5519
 
5520
- #: includes/views/submit_listing.php:299
5521
  #, fuzzy
5522
  msgctxt "submit listing"
5523
  msgid "Terms and Conditions"
5524
  msgstr "شروط وأحكام"
5525
 
5526
- #: includes/views/submit_listing.php:336
5527
  msgctxt "submit listing"
5528
  msgid "(Please choose a fee plan above)"
5529
  msgstr ""
5530
 
5531
- #: includes/views/submit_listing.php:384
5532
  #, fuzzy
5533
  msgctxt "submit listing"
5534
  msgid "Can not submit a listing at this moment. Please try again later."
@@ -5536,74 +5542,80 @@ msgstr ""
5536
  "لا يمكن أن نقوم بمعالجة الدفع الخاص بك في هذه اللحظة. المرجو المحاولة مرة "
5537
  "أخرى لاحقاً."
5538
 
5539
- #: includes/views/submit_listing.php:394
5540
  #, fuzzy
5541
  msgctxt "submit listing"
5542
  msgid "Please select a category."
5543
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
5544
 
5545
- #: includes/views/submit_listing.php:413
 
 
 
 
 
 
5546
  msgctxt "submit listing"
5547
  msgid "Please choose a valid category for your plan."
5548
  msgstr ""
5549
 
5550
- #: includes/views/submit_listing.php:415
5551
  #, fuzzy
5552
  msgctxt "submit listing"
5553
  msgid "Please choose a valid fee plan for your category selection."
5554
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
5555
 
5556
- #: includes/views/submit_listing.php:608
5557
  #, fuzzy
5558
  msgctxt "submit listing"
5559
  msgid "Please enter your desired username."
5560
  msgstr "يرجى إدخال إسمك."
5561
 
5562
- #: includes/views/submit_listing.php:613
5563
  #, fuzzy
5564
  msgctxt "submit listing"
5565
  msgid "Please enter the e-mail for your new account."
5566
  msgstr "يرجى إدخال إسمك."
5567
 
5568
- #: includes/views/submit_listing.php:618
5569
  msgctxt "submit listing"
5570
  msgid "Please enter the password for your new account."
5571
  msgstr ""
5572
 
5573
- #: includes/views/submit_listing.php:628
5574
  msgctxt "submit listing"
5575
  msgid "The username you chose is already in use. Please use a different one."
5576
  msgstr ""
5577
 
5578
- #: includes/views/submit_listing.php:633
5579
  msgctxt "submit listing"
5580
  msgid "The e-mail address you chose for your account is already in use."
5581
  msgstr ""
5582
 
5583
- #: includes/views/submit_listing.php:648
5584
  msgctxt "submit listing"
5585
  msgid "Create a user account on this site"
5586
  msgstr ""
5587
 
5588
- #: includes/views/submit_listing.php:655
5589
  msgctxt "submit listing"
5590
  msgid ""
5591
  "You need to create an account on the site. Please fill out the form below."
5592
  msgstr ""
5593
 
5594
- #: includes/views/submit_listing.php:661
5595
  #, fuzzy
5596
  msgctxt "submit listing"
5597
  msgid "Username:"
5598
  msgstr "عضو"
5599
 
5600
- #: includes/views/submit_listing.php:670
5601
  #, fuzzy
5602
  msgctxt "submit listing"
5603
  msgid "Email:"
5604
  msgstr "البريد الإلكتروني: %s"
5605
 
5606
- #: includes/views/submit_listing.php:679
5607
  msgctxt "submit listing"
5608
  msgid "Password:"
5609
  msgstr ""
@@ -5920,18 +5932,18 @@ msgid ""
5920
  "of options."
5921
  msgstr ""
5922
 
5923
- #: includes/fields/class-fieldtypes-select.php:73
5924
- msgctxt "form-fields-api category-select"
5925
- msgid "-- Choose Terms --"
5926
- msgstr "- اختيار البنود -"
5927
-
5928
- #: includes/fields/class-fieldtypes-select.php:73
5929
- #: includes/fields/class-fieldtypes-select.php:120
5930
  msgctxt "form-fields-api category-select"
5931
  msgid "-- Choose One --"
5932
  msgstr "-- اختار واحد --"
5933
 
5934
- #: includes/fields/class-fieldtypes-select.php:130
 
 
 
 
 
5935
  msgctxt "form-fields-api select"
5936
  msgid "— None —"
5937
  msgstr ""
@@ -6561,7 +6573,7 @@ msgctxt "templates"
6561
  msgid "Recurring Fee Management"
6562
  msgstr "إدارة الرسوم المتكررة"
6563
 
6564
- #: includes/views/submit_listing.php:234
6565
  msgctxt "templates"
6566
  msgid ""
6567
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
@@ -6570,22 +6582,22 @@ msgstr ""
6570
  "<b>المشاهدة غير متوفرة</b>. هل لديك \"تعطيل إضافة إعلان من واجهة الموقع؟\" "
6571
  "محددة في الإعدادات؟"
6572
 
6573
- #: includes/views/submit_listing.php:236
6574
  msgctxt "templates"
6575
  msgid "View not available."
6576
  msgstr "المشاهدة غير متوفرة."
6577
 
6578
- #: includes/views/submit_listing.php:717
6579
  msgctxt "templates"
6580
  msgid "Please agree to the Terms and Conditions."
6581
  msgstr "يرجى الموافقة على الشروط والأحكام."
6582
 
6583
- #: includes/views/submit_listing.php:725
6584
  msgctxt "templates"
6585
  msgid "Terms and Conditions:"
6586
  msgstr "شروط وأحكام:"
6587
 
6588
- #: includes/views/submit_listing.php:734
6589
  #, fuzzy
6590
  msgctxt "templates"
6591
  msgid "I agree to the <a>Terms and Conditions</a>"
@@ -7265,7 +7277,7 @@ msgstr ""
7265
  "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
7266
  "publiée."
7267
 
7268
- #: includes/views/submit_listing.php:496
7269
  msgctxt "listing submit"
7270
  msgid ""
7271
  "Something went wrong. Please check the form for errors, correct them and "
@@ -8183,7 +8195,13 @@ msgid ""
8183
  "fee plans for your listing."
8184
  msgstr ""
8185
 
8186
- #: templates/submit-listing-plan-selection.tpl.php:24
 
 
 
 
 
 
8187
  msgctxt "submit"
8188
  msgid "Please choose a fee plan for your listing:"
8189
  msgstr ""
@@ -9179,10 +9197,6 @@ msgstr "العنوان"
9179
  #~ "\"%s\"."
9180
  #~ msgstr "أنت على وشك تجديد الإعلان \"%s\" النشر داخل التصنيف \"%s\"."
9181
 
9182
- #~ msgctxt "templates"
9183
- #~ msgid "Category Selection"
9184
- #~ msgstr "إختيار تصنيف"
9185
-
9186
  #~ msgctxt "templates"
9187
  #~ msgid "Delete Image"
9188
  #~ 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: 2017-11-21 22:20:29+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"
2503
 
2504
  #: includes/fields/class-fieldtypes-checkbox.php:74
2505
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2506
+ #: includes/fields/class-fieldtypes-select.php:186
2507
  msgctxt "form-fields admin"
2508
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2509
  msgstr "خيارات الحقل (لتحديد القوائم وأزرار الخيارات وخانات الاختيار)."
2510
 
2511
  #: includes/fields/class-fieldtypes-checkbox.php:95
2512
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2513
+ #: includes/fields/class-fieldtypes-select.php:214
2514
  msgctxt "form-fields admin"
2515
  msgid "Field list of options is required."
2516
  msgstr "قائمة خيارات الحقل مطلوبة."
2517
 
2518
+ #: includes/fields/class-fieldtypes-select.php:197
2519
  msgctxt "form-fields admin"
2520
  msgid "Allow empty selection on search?"
2521
  msgstr "السماح بالتحديد الفارغ في البحث؟"
5324
  msgid "%s Feed"
5325
  msgstr "تغذية %s"
5326
 
5327
+ #: includes/class-meta.php:155 includes/views/submit_listing.php:22
5328
  msgctxt "views"
5329
  msgid "Submit A Listing"
5330
  msgstr "إضافة إعلان"
5456
  msgid "Listing submitted by admin. Payment skipped."
5457
  msgstr "Poster annonce(paiement initial)"
5458
 
5459
+ #: includes/views/submit_listing.php:47
5460
  msgctxt "submit listing"
5461
  msgid "Click this field to add categories"
5462
  msgstr ""
5463
 
5464
+ #: includes/views/submit_listing.php:48 templates/submit-listing.tpl.php:23
5465
  #, fuzzy
5466
  msgctxt "submit listing"
5467
  msgid "Complete Listing"
5468
  msgstr "حذف الإعلان"
5469
 
5470
+ #: includes/views/submit_listing.php:49 templates/submit-listing.tpl.php:28
5471
  #, fuzzy
5472
  msgctxt "submit listing"
5473
  msgid "Continue to Payment"
5474
  msgstr "الدفعة الأولية"
5475
 
5476
+ #: includes/views/submit_listing.php:91
5477
  msgctxt "submit listing"
5478
  msgid ""
5479
  "This listing can't be edited at this time because it has no fee plan "
5481
  "to a fee plan."
5482
  msgstr ""
5483
 
5484
+ #: includes/views/submit_listing.php:96
5485
  msgctxt "submit listing"
5486
  msgid ""
5487
  "This listing can't be edited at this time. Please try again later or contact "
5488
  "the admin if the problem persists."
5489
  msgstr ""
5490
 
5491
+ #: includes/views/submit_listing.php:118
5492
  #, fuzzy
5493
  msgctxt "submit listing"
5494
  msgid "You're logged in as admin, payment will be skipped."
5495
  msgstr "لقد تم تسجيل دخولك كمدير. سيتم تخطي أي خطوات للدفع."
5496
 
5497
+ #: includes/views/submit_listing.php:314
5498
+ #, fuzzy
5499
+ msgctxt "submit listing"
5500
+ msgid "Category selection"
5501
+ msgstr "إختيار تصنيف"
5502
+
5503
+ #: includes/views/submit_listing.php:314
5504
  #, fuzzy
5505
  msgctxt "submit listing"
5506
  msgid "Category & plan selection"
5507
  msgstr "إختيار تصنيف"
5508
 
5509
+ #: includes/views/submit_listing.php:319
5510
  #, fuzzy
5511
  msgctxt "submit listing"
5512
  msgid "Listing Information"
5513
  msgstr "معلومات حول الإعلان"
5514
 
5515
+ #: includes/views/submit_listing.php:323
5516
  #, fuzzy
5517
  msgctxt "submit listing"
5518
  msgid "Listing Images"
5519
  msgstr "صور الإعلانات"
5520
 
5521
+ #: includes/views/submit_listing.php:329
5522
  msgctxt "submit listing"
5523
  msgid "Account Creation"
5524
  msgstr ""
5525
 
5526
+ #: includes/views/submit_listing.php:335
5527
  #, fuzzy
5528
  msgctxt "submit listing"
5529
  msgid "Terms and Conditions"
5530
  msgstr "شروط وأحكام"
5531
 
5532
+ #: includes/views/submit_listing.php:375
5533
  msgctxt "submit listing"
5534
  msgid "(Please choose a fee plan above)"
5535
  msgstr ""
5536
 
5537
+ #: includes/views/submit_listing.php:426
5538
  #, fuzzy
5539
  msgctxt "submit listing"
5540
  msgid "Can not submit a listing at this moment. Please try again later."
5542
  "لا يمكن أن نقوم بمعالجة الدفع الخاص بك في هذه اللحظة. المرجو المحاولة مرة "
5543
  "أخرى لاحقاً."
5544
 
5545
+ #: includes/views/submit_listing.php:436
5546
  #, fuzzy
5547
  msgctxt "submit listing"
5548
  msgid "Please select a category."
5549
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
5550
 
5551
+ #: includes/views/submit_listing.php:449
5552
+ #, fuzzy
5553
+ msgctxt "submit listing"
5554
+ msgid "Please select a category for your listing."
5555
+ msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
5556
+
5557
+ #: includes/views/submit_listing.php:469
5558
  msgctxt "submit listing"
5559
  msgid "Please choose a valid category for your plan."
5560
  msgstr ""
5561
 
5562
+ #: includes/views/submit_listing.php:471
5563
  #, fuzzy
5564
  msgctxt "submit listing"
5565
  msgid "Please choose a valid fee plan for your category selection."
5566
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
5567
 
5568
+ #: includes/views/submit_listing.php:675
5569
  #, fuzzy
5570
  msgctxt "submit listing"
5571
  msgid "Please enter your desired username."
5572
  msgstr "يرجى إدخال إسمك."
5573
 
5574
+ #: includes/views/submit_listing.php:680
5575
  #, fuzzy
5576
  msgctxt "submit listing"
5577
  msgid "Please enter the e-mail for your new account."
5578
  msgstr "يرجى إدخال إسمك."
5579
 
5580
+ #: includes/views/submit_listing.php:685
5581
  msgctxt "submit listing"
5582
  msgid "Please enter the password for your new account."
5583
  msgstr ""
5584
 
5585
+ #: includes/views/submit_listing.php:695
5586
  msgctxt "submit listing"
5587
  msgid "The username you chose is already in use. Please use a different one."
5588
  msgstr ""
5589
 
5590
+ #: includes/views/submit_listing.php:700
5591
  msgctxt "submit listing"
5592
  msgid "The e-mail address you chose for your account is already in use."
5593
  msgstr ""
5594
 
5595
+ #: includes/views/submit_listing.php:715
5596
  msgctxt "submit listing"
5597
  msgid "Create a user account on this site"
5598
  msgstr ""
5599
 
5600
+ #: includes/views/submit_listing.php:722
5601
  msgctxt "submit listing"
5602
  msgid ""
5603
  "You need to create an account on the site. Please fill out the form below."
5604
  msgstr ""
5605
 
5606
+ #: includes/views/submit_listing.php:728
5607
  #, fuzzy
5608
  msgctxt "submit listing"
5609
  msgid "Username:"
5610
  msgstr "عضو"
5611
 
5612
+ #: includes/views/submit_listing.php:737
5613
  #, fuzzy
5614
  msgctxt "submit listing"
5615
  msgid "Email:"
5616
  msgstr "البريد الإلكتروني: %s"
5617
 
5618
+ #: includes/views/submit_listing.php:746
5619
  msgctxt "submit listing"
5620
  msgid "Password:"
5621
  msgstr ""
5932
  "of options."
5933
  msgstr ""
5934
 
5935
+ #: includes/fields/class-fieldtypes-select.php:86
5936
+ #: includes/fields/class-fieldtypes-select.php:133
 
 
 
 
 
5937
  msgctxt "form-fields-api category-select"
5938
  msgid "-- Choose One --"
5939
  msgstr "-- اختار واحد --"
5940
 
5941
+ #: includes/fields/class-fieldtypes-select.php:92
5942
+ msgctxt "form-fields-api category-select"
5943
+ msgid "-- Choose Terms --"
5944
+ msgstr "- اختيار البنود -"
5945
+
5946
+ #: includes/fields/class-fieldtypes-select.php:143
5947
  msgctxt "form-fields-api select"
5948
  msgid "— None —"
5949
  msgstr ""
6573
  msgid "Recurring Fee Management"
6574
  msgstr "إدارة الرسوم المتكررة"
6575
 
6576
+ #: includes/views/submit_listing.php:270
6577
  msgctxt "templates"
6578
  msgid ""
6579
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6582
  "<b>المشاهدة غير متوفرة</b>. هل لديك \"تعطيل إضافة إعلان من واجهة الموقع؟\" "
6583
  "محددة في الإعدادات؟"
6584
 
6585
+ #: includes/views/submit_listing.php:272
6586
  msgctxt "templates"
6587
  msgid "View not available."
6588
  msgstr "المشاهدة غير متوفرة."
6589
 
6590
+ #: includes/views/submit_listing.php:784
6591
  msgctxt "templates"
6592
  msgid "Please agree to the Terms and Conditions."
6593
  msgstr "يرجى الموافقة على الشروط والأحكام."
6594
 
6595
+ #: includes/views/submit_listing.php:792
6596
  msgctxt "templates"
6597
  msgid "Terms and Conditions:"
6598
  msgstr "شروط وأحكام:"
6599
 
6600
+ #: includes/views/submit_listing.php:801
6601
  #, fuzzy
6602
  msgctxt "templates"
6603
  msgid "I agree to the <a>Terms and Conditions</a>"
7277
  "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
7278
  "publiée."
7279
 
7280
+ #: includes/views/submit_listing.php:563
7281
  msgctxt "listing submit"
7282
  msgid ""
7283
  "Something went wrong. Please check the form for errors, correct them and "
8195
  "fee plans for your listing."
8196
  msgstr ""
8197
 
8198
+ #: templates/submit-listing-plan-selection.tpl.php:25
8199
+ #, fuzzy
8200
+ msgctxt "submit"
8201
+ msgid "Your plan's details:"
8202
+ msgstr "تفاصيل الخطة"
8203
+
8204
+ #: templates/submit-listing-plan-selection.tpl.php:37
8205
  msgctxt "submit"
8206
  msgid "Please choose a fee plan for your listing:"
8207
  msgstr ""
9197
  #~ "\"%s\"."
9198
  #~ msgstr "أنت على وشك تجديد الإعلان \"%s\" النشر داخل التصنيف \"%s\"."
9199
 
 
 
 
 
9200
  #~ msgctxt "templates"
9201
  #~ msgid "Delete Image"
9202
  #~ msgstr "حذف الصورة"
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: 2017-11-16 23:46:36+00:00\n"
9
  "PO-Revision-Date: 2017-03-29 10:08+0200\n"
10
  "Last-Translator: Axel J. Metayer <axel@kfz.net>\n"
11
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
@@ -2545,7 +2545,7 @@ msgstr "Einstellungen aktualisiert."
2545
 
2546
  #: includes/fields/class-fieldtypes-checkbox.php:74
2547
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2548
- #: includes/fields/class-fieldtypes-select.php:173
2549
  msgctxt "form-fields admin"
2550
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2551
  msgstr ""
@@ -2553,12 +2553,12 @@ msgstr ""
2553
 
2554
  #: includes/fields/class-fieldtypes-checkbox.php:95
2555
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2556
- #: includes/fields/class-fieldtypes-select.php:201
2557
  msgctxt "form-fields admin"
2558
  msgid "Field list of options is required."
2559
  msgstr "Feldliste von Optionen wird benötigt."
2560
 
2561
- #: includes/fields/class-fieldtypes-select.php:184
2562
  msgctxt "form-fields admin"
2563
  msgid "Allow empty selection on search?"
2564
  msgstr "Erlaube leere Auswahl bei Suche?"
@@ -5315,7 +5315,7 @@ msgctxt "rss feed"
5315
  msgid "%s Feed"
5316
  msgstr "% Feed"
5317
 
5318
- #: includes/class-meta.php:155 includes/views/submit_listing.php:17
5319
  msgctxt "views"
5320
  msgid "Submit A Listing"
5321
  msgstr "Eintrag erstellen"
@@ -5448,24 +5448,24 @@ msgctxt "submit listing"
5448
  msgid "Listing submitted by admin. Payment skipped."
5449
  msgstr "Eintrag zusenden (Initialbezahlung)"
5450
 
5451
- #: includes/views/submit_listing.php:42
5452
  msgctxt "submit listing"
5453
  msgid "Click this field to add categories"
5454
  msgstr ""
5455
 
5456
- #: includes/views/submit_listing.php:43 templates/submit-listing.tpl.php:23
5457
  #, fuzzy
5458
  msgctxt "submit listing"
5459
  msgid "Complete Listing"
5460
  msgstr "Eintrag Löschen"
5461
 
5462
- #: includes/views/submit_listing.php:44 templates/submit-listing.tpl.php:28
5463
  #, fuzzy
5464
  msgctxt "submit listing"
5465
  msgid "Continue to Payment"
5466
  msgstr "Initialbezahlung"
5467
 
5468
- #: includes/views/submit_listing.php:86
5469
  msgctxt "submit listing"
5470
  msgid ""
5471
  "This listing can't be edited at this time because it has no fee plan "
@@ -5473,14 +5473,14 @@ msgid ""
5473
  "to a fee plan."
5474
  msgstr ""
5475
 
5476
- #: includes/views/submit_listing.php:91
5477
  msgctxt "submit listing"
5478
  msgid ""
5479
  "This listing can't be edited at this time. Please try again later or contact "
5480
  "the admin if the problem persists."
5481
  msgstr ""
5482
 
5483
- #: includes/views/submit_listing.php:112
5484
  #, fuzzy
5485
  msgctxt "submit listing"
5486
  msgid "You're logged in as admin, payment will be skipped."
@@ -5488,41 +5488,47 @@ msgstr ""
5488
  "Du bist als Administrator eingeloggt. Alle Bezahlungsschritte werden "
5489
  "übersprungen."
5490
 
5491
- #: includes/views/submit_listing.php:278
 
 
 
 
 
 
5492
  #, fuzzy
5493
  msgctxt "submit listing"
5494
  msgid "Category & plan selection"
5495
  msgstr "Kategorien auswählen"
5496
 
5497
- #: includes/views/submit_listing.php:283
5498
  #, fuzzy
5499
  msgctxt "submit listing"
5500
  msgid "Listing Information"
5501
  msgstr "Eintrag Informationen"
5502
 
5503
- #: includes/views/submit_listing.php:287
5504
  #, fuzzy
5505
  msgctxt "submit listing"
5506
  msgid "Listing Images"
5507
  msgstr "Eintrag Bilder"
5508
 
5509
- #: includes/views/submit_listing.php:293
5510
  msgctxt "submit listing"
5511
  msgid "Account Creation"
5512
  msgstr ""
5513
 
5514
- #: includes/views/submit_listing.php:299
5515
  #, fuzzy
5516
  msgctxt "submit listing"
5517
  msgid "Terms and Conditions"
5518
  msgstr "Bedingungen und Konditionen"
5519
 
5520
- #: includes/views/submit_listing.php:336
5521
  msgctxt "submit listing"
5522
  msgid "(Please choose a fee plan above)"
5523
  msgstr ""
5524
 
5525
- #: includes/views/submit_listing.php:384
5526
  #, fuzzy
5527
  msgctxt "submit listing"
5528
  msgid "Can not submit a listing at this moment. Please try again later."
@@ -5530,74 +5536,80 @@ msgstr ""
5530
  "Ihre Zahlung kann momentan nicht ausgeführt werden. Bitte versuchen Sie es "
5531
  "später noch einmal."
5532
 
5533
- #: includes/views/submit_listing.php:394
5534
  #, fuzzy
5535
  msgctxt "submit listing"
5536
  msgid "Please select a category."
5537
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
5538
 
5539
- #: includes/views/submit_listing.php:413
 
 
 
 
 
 
5540
  msgctxt "submit listing"
5541
  msgid "Please choose a valid category for your plan."
5542
  msgstr ""
5543
 
5544
- #: includes/views/submit_listing.php:415
5545
  #, fuzzy
5546
  msgctxt "submit listing"
5547
  msgid "Please choose a valid fee plan for your category selection."
5548
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
5549
 
5550
- #: includes/views/submit_listing.php:608
5551
  #, fuzzy
5552
  msgctxt "submit listing"
5553
  msgid "Please enter your desired username."
5554
  msgstr "Bitte geben Sie einen Namen ein."
5555
 
5556
- #: includes/views/submit_listing.php:613
5557
  #, fuzzy
5558
  msgctxt "submit listing"
5559
  msgid "Please enter the e-mail for your new account."
5560
  msgstr "Bitte geben Sie einen Namen ein."
5561
 
5562
- #: includes/views/submit_listing.php:618
5563
  msgctxt "submit listing"
5564
  msgid "Please enter the password for your new account."
5565
  msgstr ""
5566
 
5567
- #: includes/views/submit_listing.php:628
5568
  msgctxt "submit listing"
5569
  msgid "The username you chose is already in use. Please use a different one."
5570
  msgstr ""
5571
 
5572
- #: includes/views/submit_listing.php:633
5573
  msgctxt "submit listing"
5574
  msgid "The e-mail address you chose for your account is already in use."
5575
  msgstr ""
5576
 
5577
- #: includes/views/submit_listing.php:648
5578
  msgctxt "submit listing"
5579
  msgid "Create a user account on this site"
5580
  msgstr ""
5581
 
5582
- #: includes/views/submit_listing.php:655
5583
  msgctxt "submit listing"
5584
  msgid ""
5585
  "You need to create an account on the site. Please fill out the form below."
5586
  msgstr ""
5587
 
5588
- #: includes/views/submit_listing.php:661
5589
  #, fuzzy
5590
  msgctxt "submit listing"
5591
  msgid "Username:"
5592
  msgstr "Benutzer"
5593
 
5594
- #: includes/views/submit_listing.php:670
5595
  #, fuzzy
5596
  msgctxt "submit listing"
5597
  msgid "Email:"
5598
  msgstr "E-mail: %s"
5599
 
5600
- #: includes/views/submit_listing.php:679
5601
  msgctxt "submit listing"
5602
  msgid "Password:"
5603
  msgstr ""
@@ -5916,18 +5928,18 @@ msgid ""
5916
  "of options."
5917
  msgstr "Die Höhe der Liste wird and die Anzahl von Optionen angepasst."
5918
 
5919
- #: includes/fields/class-fieldtypes-select.php:73
5920
- msgctxt "form-fields-api category-select"
5921
- msgid "-- Choose Terms --"
5922
- msgstr "-- Bedingungen auswählen --"
5923
-
5924
- #: includes/fields/class-fieldtypes-select.php:73
5925
- #: includes/fields/class-fieldtypes-select.php:120
5926
  msgctxt "form-fields-api category-select"
5927
  msgid "-- Choose One --"
5928
  msgstr "-- Auswählen --"
5929
 
5930
- #: includes/fields/class-fieldtypes-select.php:130
 
 
 
 
 
5931
  msgctxt "form-fields-api select"
5932
  msgid "— None —"
5933
  msgstr ""
@@ -6556,7 +6568,7 @@ msgctxt "templates"
6556
  msgid "Recurring Fee Management"
6557
  msgstr "Wiederholte Preise verwalten"
6558
 
6559
- #: includes/views/submit_listing.php:234
6560
  msgctxt "templates"
6561
  msgid ""
6562
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
@@ -6565,22 +6577,22 @@ msgstr ""
6565
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6566
  "Submission?\" setting checked?"
6567
 
6568
- #: includes/views/submit_listing.php:236
6569
  msgctxt "templates"
6570
  msgid "View not available."
6571
  msgstr "verfügbare Bilder:"
6572
 
6573
- #: includes/views/submit_listing.php:717
6574
  msgctxt "templates"
6575
  msgid "Please agree to the Terms and Conditions."
6576
  msgstr "Bitte akzeptieren Sie die Allgemeinen Geschäftsbedingungen."
6577
 
6578
- #: includes/views/submit_listing.php:725
6579
  msgctxt "templates"
6580
  msgid "Terms and Conditions:"
6581
  msgstr "AGBs:"
6582
 
6583
- #: includes/views/submit_listing.php:734
6584
  #, fuzzy
6585
  msgctxt "templates"
6586
  msgid "I agree to the <a>Terms and Conditions</a>"
@@ -7271,7 +7283,7 @@ msgctxt "preview"
7271
  msgid "This is just a preview. The listing has not been published yet."
7272
  msgstr "Dies ist nur eine Vorschau. Der Eintrag wurde bisher nicht publiziert."
7273
 
7274
- #: includes/views/submit_listing.php:496
7275
  msgctxt "listing submit"
7276
  msgid ""
7277
  "Something went wrong. Please check the form for errors, correct them and "
@@ -8206,7 +8218,13 @@ msgid ""
8206
  "fee plans for your listing."
8207
  msgstr ""
8208
 
8209
- #: templates/submit-listing-plan-selection.tpl.php:24
 
 
 
 
 
 
8210
  msgctxt "submit"
8211
  msgid "Please choose a fee plan for your listing:"
8212
  msgstr ""
@@ -9117,10 +9135,6 @@ msgstr "Adresse"
9117
  #~ msgstr ""
9118
  #~ "Sie sind dabei Ihren Eintrag \"%s\" in der Kategorie \"%s\" zu erneuern."
9119
 
9120
- #~ msgctxt "templates"
9121
- #~ msgid "Category Selection"
9122
- #~ msgstr "Kategorien auswählen"
9123
-
9124
  #~ msgctxt "templates"
9125
  #~ msgid "Delete Image"
9126
  #~ msgstr "Bild löschen"
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: 2017-11-21 22:20:29+00:00\n"
9
  "PO-Revision-Date: 2017-03-29 10:08+0200\n"
10
  "Last-Translator: Axel J. Metayer <axel@kfz.net>\n"
11
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
2545
 
2546
  #: includes/fields/class-fieldtypes-checkbox.php:74
2547
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2548
+ #: includes/fields/class-fieldtypes-select.php:186
2549
  msgctxt "form-fields admin"
2550
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2551
  msgstr ""
2553
 
2554
  #: includes/fields/class-fieldtypes-checkbox.php:95
2555
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2556
+ #: includes/fields/class-fieldtypes-select.php:214
2557
  msgctxt "form-fields admin"
2558
  msgid "Field list of options is required."
2559
  msgstr "Feldliste von Optionen wird benötigt."
2560
 
2561
+ #: includes/fields/class-fieldtypes-select.php:197
2562
  msgctxt "form-fields admin"
2563
  msgid "Allow empty selection on search?"
2564
  msgstr "Erlaube leere Auswahl bei Suche?"
5315
  msgid "%s Feed"
5316
  msgstr "% Feed"
5317
 
5318
+ #: includes/class-meta.php:155 includes/views/submit_listing.php:22
5319
  msgctxt "views"
5320
  msgid "Submit A Listing"
5321
  msgstr "Eintrag erstellen"
5448
  msgid "Listing submitted by admin. Payment skipped."
5449
  msgstr "Eintrag zusenden (Initialbezahlung)"
5450
 
5451
+ #: includes/views/submit_listing.php:47
5452
  msgctxt "submit listing"
5453
  msgid "Click this field to add categories"
5454
  msgstr ""
5455
 
5456
+ #: includes/views/submit_listing.php:48 templates/submit-listing.tpl.php:23
5457
  #, fuzzy
5458
  msgctxt "submit listing"
5459
  msgid "Complete Listing"
5460
  msgstr "Eintrag Löschen"
5461
 
5462
+ #: includes/views/submit_listing.php:49 templates/submit-listing.tpl.php:28
5463
  #, fuzzy
5464
  msgctxt "submit listing"
5465
  msgid "Continue to Payment"
5466
  msgstr "Initialbezahlung"
5467
 
5468
+ #: includes/views/submit_listing.php:91
5469
  msgctxt "submit listing"
5470
  msgid ""
5471
  "This listing can't be edited at this time because it has no fee plan "
5473
  "to a fee plan."
5474
  msgstr ""
5475
 
5476
+ #: includes/views/submit_listing.php:96
5477
  msgctxt "submit listing"
5478
  msgid ""
5479
  "This listing can't be edited at this time. Please try again later or contact "
5480
  "the admin if the problem persists."
5481
  msgstr ""
5482
 
5483
+ #: includes/views/submit_listing.php:118
5484
  #, fuzzy
5485
  msgctxt "submit listing"
5486
  msgid "You're logged in as admin, payment will be skipped."
5488
  "Du bist als Administrator eingeloggt. Alle Bezahlungsschritte werden "
5489
  "übersprungen."
5490
 
5491
+ #: includes/views/submit_listing.php:314
5492
+ #, fuzzy
5493
+ msgctxt "submit listing"
5494
+ msgid "Category selection"
5495
+ msgstr "Kategorien auswählen"
5496
+
5497
+ #: includes/views/submit_listing.php:314
5498
  #, fuzzy
5499
  msgctxt "submit listing"
5500
  msgid "Category & plan selection"
5501
  msgstr "Kategorien auswählen"
5502
 
5503
+ #: includes/views/submit_listing.php:319
5504
  #, fuzzy
5505
  msgctxt "submit listing"
5506
  msgid "Listing Information"
5507
  msgstr "Eintrag Informationen"
5508
 
5509
+ #: includes/views/submit_listing.php:323
5510
  #, fuzzy
5511
  msgctxt "submit listing"
5512
  msgid "Listing Images"
5513
  msgstr "Eintrag Bilder"
5514
 
5515
+ #: includes/views/submit_listing.php:329
5516
  msgctxt "submit listing"
5517
  msgid "Account Creation"
5518
  msgstr ""
5519
 
5520
+ #: includes/views/submit_listing.php:335
5521
  #, fuzzy
5522
  msgctxt "submit listing"
5523
  msgid "Terms and Conditions"
5524
  msgstr "Bedingungen und Konditionen"
5525
 
5526
+ #: includes/views/submit_listing.php:375
5527
  msgctxt "submit listing"
5528
  msgid "(Please choose a fee plan above)"
5529
  msgstr ""
5530
 
5531
+ #: includes/views/submit_listing.php:426
5532
  #, fuzzy
5533
  msgctxt "submit listing"
5534
  msgid "Can not submit a listing at this moment. Please try again later."
5536
  "Ihre Zahlung kann momentan nicht ausgeführt werden. Bitte versuchen Sie es "
5537
  "später noch einmal."
5538
 
5539
+ #: includes/views/submit_listing.php:436
5540
  #, fuzzy
5541
  msgctxt "submit listing"
5542
  msgid "Please select a category."
5543
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
5544
 
5545
+ #: includes/views/submit_listing.php:449
5546
+ #, fuzzy
5547
+ msgctxt "submit listing"
5548
+ msgid "Please select a category for your listing."
5549
+ msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
5550
+
5551
+ #: includes/views/submit_listing.php:469
5552
  msgctxt "submit listing"
5553
  msgid "Please choose a valid category for your plan."
5554
  msgstr ""
5555
 
5556
+ #: includes/views/submit_listing.php:471
5557
  #, fuzzy
5558
  msgctxt "submit listing"
5559
  msgid "Please choose a valid fee plan for your category selection."
5560
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
5561
 
5562
+ #: includes/views/submit_listing.php:675
5563
  #, fuzzy
5564
  msgctxt "submit listing"
5565
  msgid "Please enter your desired username."
5566
  msgstr "Bitte geben Sie einen Namen ein."
5567
 
5568
+ #: includes/views/submit_listing.php:680
5569
  #, fuzzy
5570
  msgctxt "submit listing"
5571
  msgid "Please enter the e-mail for your new account."
5572
  msgstr "Bitte geben Sie einen Namen ein."
5573
 
5574
+ #: includes/views/submit_listing.php:685
5575
  msgctxt "submit listing"
5576
  msgid "Please enter the password for your new account."
5577
  msgstr ""
5578
 
5579
+ #: includes/views/submit_listing.php:695
5580
  msgctxt "submit listing"
5581
  msgid "The username you chose is already in use. Please use a different one."
5582
  msgstr ""
5583
 
5584
+ #: includes/views/submit_listing.php:700
5585
  msgctxt "submit listing"
5586
  msgid "The e-mail address you chose for your account is already in use."
5587
  msgstr ""
5588
 
5589
+ #: includes/views/submit_listing.php:715
5590
  msgctxt "submit listing"
5591
  msgid "Create a user account on this site"
5592
  msgstr ""
5593
 
5594
+ #: includes/views/submit_listing.php:722
5595
  msgctxt "submit listing"
5596
  msgid ""
5597
  "You need to create an account on the site. Please fill out the form below."
5598
  msgstr ""
5599
 
5600
+ #: includes/views/submit_listing.php:728
5601
  #, fuzzy
5602
  msgctxt "submit listing"
5603
  msgid "Username:"
5604
  msgstr "Benutzer"
5605
 
5606
+ #: includes/views/submit_listing.php:737
5607
  #, fuzzy
5608
  msgctxt "submit listing"
5609
  msgid "Email:"
5610
  msgstr "E-mail: %s"
5611
 
5612
+ #: includes/views/submit_listing.php:746
5613
  msgctxt "submit listing"
5614
  msgid "Password:"
5615
  msgstr ""
5928
  "of options."
5929
  msgstr "Die Höhe der Liste wird and die Anzahl von Optionen angepasst."
5930
 
5931
+ #: includes/fields/class-fieldtypes-select.php:86
5932
+ #: includes/fields/class-fieldtypes-select.php:133
 
 
 
 
 
5933
  msgctxt "form-fields-api category-select"
5934
  msgid "-- Choose One --"
5935
  msgstr "-- Auswählen --"
5936
 
5937
+ #: includes/fields/class-fieldtypes-select.php:92
5938
+ msgctxt "form-fields-api category-select"
5939
+ msgid "-- Choose Terms --"
5940
+ msgstr "-- Bedingungen auswählen --"
5941
+
5942
+ #: includes/fields/class-fieldtypes-select.php:143
5943
  msgctxt "form-fields-api select"
5944
  msgid "— None —"
5945
  msgstr ""
6568
  msgid "Recurring Fee Management"
6569
  msgstr "Wiederholte Preise verwalten"
6570
 
6571
+ #: includes/views/submit_listing.php:270
6572
  msgctxt "templates"
6573
  msgid ""
6574
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6577
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6578
  "Submission?\" setting checked?"
6579
 
6580
+ #: includes/views/submit_listing.php:272
6581
  msgctxt "templates"
6582
  msgid "View not available."
6583
  msgstr "verfügbare Bilder:"
6584
 
6585
+ #: includes/views/submit_listing.php:784
6586
  msgctxt "templates"
6587
  msgid "Please agree to the Terms and Conditions."
6588
  msgstr "Bitte akzeptieren Sie die Allgemeinen Geschäftsbedingungen."
6589
 
6590
+ #: includes/views/submit_listing.php:792
6591
  msgctxt "templates"
6592
  msgid "Terms and Conditions:"
6593
  msgstr "AGBs:"
6594
 
6595
+ #: includes/views/submit_listing.php:801
6596
  #, fuzzy
6597
  msgctxt "templates"
6598
  msgid "I agree to the <a>Terms and Conditions</a>"
7283
  msgid "This is just a preview. The listing has not been published yet."
7284
  msgstr "Dies ist nur eine Vorschau. Der Eintrag wurde bisher nicht publiziert."
7285
 
7286
+ #: includes/views/submit_listing.php:563
7287
  msgctxt "listing submit"
7288
  msgid ""
7289
  "Something went wrong. Please check the form for errors, correct them and "
8218
  "fee plans for your listing."
8219
  msgstr ""
8220
 
8221
+ #: templates/submit-listing-plan-selection.tpl.php:25
8222
+ #, fuzzy
8223
+ msgctxt "submit"
8224
+ msgid "Your plan's details:"
8225
+ msgstr "Details planen"
8226
+
8227
+ #: templates/submit-listing-plan-selection.tpl.php:37
8228
  msgctxt "submit"
8229
  msgid "Please choose a fee plan for your listing:"
8230
  msgstr ""
9135
  #~ msgstr ""
9136
  #~ "Sie sind dabei Ihren Eintrag \"%s\" in der Kategorie \"%s\" zu erneuern."
9137
 
 
 
 
 
9138
  #~ msgctxt "templates"
9139
  #~ msgid "Delete Image"
9140
  #~ msgstr "Bild löschen"
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: 2017-11-16 23:46:36+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"
@@ -2308,19 +2308,19 @@ msgstr ""
2308
 
2309
  #: includes/fields/class-fieldtypes-checkbox.php:74
2310
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2311
- #: includes/fields/class-fieldtypes-select.php:173
2312
  msgctxt "form-fields admin"
2313
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2314
  msgstr ""
2315
 
2316
  #: includes/fields/class-fieldtypes-checkbox.php:95
2317
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2318
- #: includes/fields/class-fieldtypes-select.php:201
2319
  msgctxt "form-fields admin"
2320
  msgid "Field list of options is required."
2321
  msgstr ""
2322
 
2323
- #: includes/fields/class-fieldtypes-select.php:184
2324
  msgctxt "form-fields admin"
2325
  msgid "Allow empty selection on search?"
2326
  msgstr ""
@@ -4781,7 +4781,7 @@ msgctxt "rss feed"
4781
  msgid "%s Feed"
4782
  msgstr ""
4783
 
4784
- #: includes/class-meta.php:155 includes/views/submit_listing.php:17
4785
  msgctxt "views"
4786
  msgid "Submit A Listing"
4787
  msgstr ""
@@ -4897,22 +4897,22 @@ msgctxt "submit listing"
4897
  msgid "Listing submitted by admin. Payment skipped."
4898
  msgstr ""
4899
 
4900
- #: includes/views/submit_listing.php:42
4901
  msgctxt "submit listing"
4902
  msgid "Click this field to add categories"
4903
  msgstr ""
4904
 
4905
- #: includes/views/submit_listing.php:43 templates/submit-listing.tpl.php:23
4906
  msgctxt "submit listing"
4907
  msgid "Complete Listing"
4908
  msgstr ""
4909
 
4910
- #: includes/views/submit_listing.php:44 templates/submit-listing.tpl.php:28
4911
  msgctxt "submit listing"
4912
  msgid "Continue to Payment"
4913
  msgstr ""
4914
 
4915
- #: includes/views/submit_listing.php:86
4916
  msgctxt "submit listing"
4917
  msgid ""
4918
  "This listing can't be edited at this time because it has no fee plan "
@@ -4920,115 +4920,125 @@ msgid ""
4920
  "to a fee plan."
4921
  msgstr ""
4922
 
4923
- #: includes/views/submit_listing.php:91
4924
  msgctxt "submit listing"
4925
  msgid ""
4926
  "This listing can't be edited at this time. Please try again later or contact "
4927
  "the admin if the problem persists."
4928
  msgstr ""
4929
 
4930
- #: includes/views/submit_listing.php:112
4931
  msgctxt "submit listing"
4932
  msgid "You're logged in as admin, payment will be skipped."
4933
  msgstr ""
4934
 
4935
- #: includes/views/submit_listing.php:278
 
 
 
 
 
4936
  msgctxt "submit listing"
4937
  msgid "Category & plan selection"
4938
  msgstr ""
4939
 
4940
- #: includes/views/submit_listing.php:283
4941
  msgctxt "submit listing"
4942
  msgid "Listing Information"
4943
  msgstr ""
4944
 
4945
- #: includes/views/submit_listing.php:287
4946
  msgctxt "submit listing"
4947
  msgid "Listing Images"
4948
  msgstr ""
4949
 
4950
- #: includes/views/submit_listing.php:293
4951
  msgctxt "submit listing"
4952
  msgid "Account Creation"
4953
  msgstr ""
4954
 
4955
- #: includes/views/submit_listing.php:299
4956
  msgctxt "submit listing"
4957
  msgid "Terms and Conditions"
4958
  msgstr ""
4959
 
4960
- #: includes/views/submit_listing.php:336
4961
  msgctxt "submit listing"
4962
  msgid "(Please choose a fee plan above)"
4963
  msgstr ""
4964
 
4965
- #: includes/views/submit_listing.php:384
4966
  msgctxt "submit listing"
4967
  msgid "Can not submit a listing at this moment. Please try again later."
4968
  msgstr ""
4969
 
4970
- #: includes/views/submit_listing.php:394
4971
  msgctxt "submit listing"
4972
  msgid "Please select a category."
4973
  msgstr ""
4974
 
4975
- #: includes/views/submit_listing.php:413
 
 
 
 
 
4976
  msgctxt "submit listing"
4977
  msgid "Please choose a valid category for your plan."
4978
  msgstr ""
4979
 
4980
- #: includes/views/submit_listing.php:415
4981
  msgctxt "submit listing"
4982
  msgid "Please choose a valid fee plan for your category selection."
4983
  msgstr ""
4984
 
4985
- #: includes/views/submit_listing.php:608
4986
  msgctxt "submit listing"
4987
  msgid "Please enter your desired username."
4988
  msgstr ""
4989
 
4990
- #: includes/views/submit_listing.php:613
4991
  msgctxt "submit listing"
4992
  msgid "Please enter the e-mail for your new account."
4993
  msgstr ""
4994
 
4995
- #: includes/views/submit_listing.php:618
4996
  msgctxt "submit listing"
4997
  msgid "Please enter the password for your new account."
4998
  msgstr ""
4999
 
5000
- #: includes/views/submit_listing.php:628
5001
  msgctxt "submit listing"
5002
  msgid "The username you chose is already in use. Please use a different one."
5003
  msgstr ""
5004
 
5005
- #: includes/views/submit_listing.php:633
5006
  msgctxt "submit listing"
5007
  msgid "The e-mail address you chose for your account is already in use."
5008
  msgstr ""
5009
 
5010
- #: includes/views/submit_listing.php:648
5011
  msgctxt "submit listing"
5012
  msgid "Create a user account on this site"
5013
  msgstr ""
5014
 
5015
- #: includes/views/submit_listing.php:655
5016
  msgctxt "submit listing"
5017
  msgid ""
5018
  "You need to create an account on the site. Please fill out the form below."
5019
  msgstr ""
5020
 
5021
- #: includes/views/submit_listing.php:661
5022
  msgctxt "submit listing"
5023
  msgid "Username:"
5024
  msgstr ""
5025
 
5026
- #: includes/views/submit_listing.php:670
5027
  msgctxt "submit listing"
5028
  msgid "Email:"
5029
  msgstr ""
5030
 
5031
- #: includes/views/submit_listing.php:679
5032
  msgctxt "submit listing"
5033
  msgid "Password:"
5034
  msgstr ""
@@ -5335,18 +5345,18 @@ msgid ""
5335
  "of options."
5336
  msgstr ""
5337
 
5338
- #: includes/fields/class-fieldtypes-select.php:73
 
5339
  msgctxt "form-fields-api category-select"
5340
- msgid "-- Choose Terms --"
5341
  msgstr ""
5342
 
5343
- #: includes/fields/class-fieldtypes-select.php:73
5344
- #: includes/fields/class-fieldtypes-select.php:120
5345
  msgctxt "form-fields-api category-select"
5346
- msgid "-- Choose One --"
5347
  msgstr ""
5348
 
5349
- #: includes/fields/class-fieldtypes-select.php:130
5350
  msgctxt "form-fields-api select"
5351
  msgid "— None —"
5352
  msgstr ""
@@ -5915,29 +5925,29 @@ msgctxt "templates"
5915
  msgid "Recurring Fee Management"
5916
  msgstr ""
5917
 
5918
- #: includes/views/submit_listing.php:234
5919
  msgctxt "templates"
5920
  msgid ""
5921
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
5922
  "Submission?\" setting checked?"
5923
  msgstr ""
5924
 
5925
- #: includes/views/submit_listing.php:236
5926
  msgctxt "templates"
5927
  msgid "View not available."
5928
  msgstr ""
5929
 
5930
- #: includes/views/submit_listing.php:717
5931
  msgctxt "templates"
5932
  msgid "Please agree to the Terms and Conditions."
5933
  msgstr ""
5934
 
5935
- #: includes/views/submit_listing.php:725
5936
  msgctxt "templates"
5937
  msgid "Terms and Conditions:"
5938
  msgstr ""
5939
 
5940
- #: includes/views/submit_listing.php:734
5941
  msgctxt "templates"
5942
  msgid "I agree to the <a>Terms and Conditions</a>"
5943
  msgstr ""
@@ -6573,7 +6583,7 @@ msgctxt "preview"
6573
  msgid "This is just a preview. The listing has not been published yet."
6574
  msgstr ""
6575
 
6576
- #: includes/views/submit_listing.php:496
6577
  msgctxt "listing submit"
6578
  msgid ""
6579
  "Something went wrong. Please check the form for errors, correct them and "
@@ -7451,7 +7461,12 @@ msgid ""
7451
  "fee plans for your listing."
7452
  msgstr ""
7453
 
7454
- #: templates/submit-listing-plan-selection.tpl.php:24
 
 
 
 
 
7455
  msgctxt "submit"
7456
  msgid "Please choose a fee plan for your listing:"
7457
  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: 2017-11-21 22:20:29+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"
2308
 
2309
  #: includes/fields/class-fieldtypes-checkbox.php:74
2310
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2311
+ #: includes/fields/class-fieldtypes-select.php:186
2312
  msgctxt "form-fields admin"
2313
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2314
  msgstr ""
2315
 
2316
  #: includes/fields/class-fieldtypes-checkbox.php:95
2317
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2318
+ #: includes/fields/class-fieldtypes-select.php:214
2319
  msgctxt "form-fields admin"
2320
  msgid "Field list of options is required."
2321
  msgstr ""
2322
 
2323
+ #: includes/fields/class-fieldtypes-select.php:197
2324
  msgctxt "form-fields admin"
2325
  msgid "Allow empty selection on search?"
2326
  msgstr ""
4781
  msgid "%s Feed"
4782
  msgstr ""
4783
 
4784
+ #: includes/class-meta.php:155 includes/views/submit_listing.php:22
4785
  msgctxt "views"
4786
  msgid "Submit A Listing"
4787
  msgstr ""
4897
  msgid "Listing submitted by admin. Payment skipped."
4898
  msgstr ""
4899
 
4900
+ #: includes/views/submit_listing.php:47
4901
  msgctxt "submit listing"
4902
  msgid "Click this field to add categories"
4903
  msgstr ""
4904
 
4905
+ #: includes/views/submit_listing.php:48 templates/submit-listing.tpl.php:23
4906
  msgctxt "submit listing"
4907
  msgid "Complete Listing"
4908
  msgstr ""
4909
 
4910
+ #: includes/views/submit_listing.php:49 templates/submit-listing.tpl.php:28
4911
  msgctxt "submit listing"
4912
  msgid "Continue to Payment"
4913
  msgstr ""
4914
 
4915
+ #: includes/views/submit_listing.php:91
4916
  msgctxt "submit listing"
4917
  msgid ""
4918
  "This listing can't be edited at this time because it has no fee plan "
4920
  "to a fee plan."
4921
  msgstr ""
4922
 
4923
+ #: includes/views/submit_listing.php:96
4924
  msgctxt "submit listing"
4925
  msgid ""
4926
  "This listing can't be edited at this time. Please try again later or contact "
4927
  "the admin if the problem persists."
4928
  msgstr ""
4929
 
4930
+ #: includes/views/submit_listing.php:118
4931
  msgctxt "submit listing"
4932
  msgid "You're logged in as admin, payment will be skipped."
4933
  msgstr ""
4934
 
4935
+ #: includes/views/submit_listing.php:314
4936
+ msgctxt "submit listing"
4937
+ msgid "Category selection"
4938
+ msgstr ""
4939
+
4940
+ #: includes/views/submit_listing.php:314
4941
  msgctxt "submit listing"
4942
  msgid "Category & plan selection"
4943
  msgstr ""
4944
 
4945
+ #: includes/views/submit_listing.php:319
4946
  msgctxt "submit listing"
4947
  msgid "Listing Information"
4948
  msgstr ""
4949
 
4950
+ #: includes/views/submit_listing.php:323
4951
  msgctxt "submit listing"
4952
  msgid "Listing Images"
4953
  msgstr ""
4954
 
4955
+ #: includes/views/submit_listing.php:329
4956
  msgctxt "submit listing"
4957
  msgid "Account Creation"
4958
  msgstr ""
4959
 
4960
+ #: includes/views/submit_listing.php:335
4961
  msgctxt "submit listing"
4962
  msgid "Terms and Conditions"
4963
  msgstr ""
4964
 
4965
+ #: includes/views/submit_listing.php:375
4966
  msgctxt "submit listing"
4967
  msgid "(Please choose a fee plan above)"
4968
  msgstr ""
4969
 
4970
+ #: includes/views/submit_listing.php:426
4971
  msgctxt "submit listing"
4972
  msgid "Can not submit a listing at this moment. Please try again later."
4973
  msgstr ""
4974
 
4975
+ #: includes/views/submit_listing.php:436
4976
  msgctxt "submit listing"
4977
  msgid "Please select a category."
4978
  msgstr ""
4979
 
4980
+ #: includes/views/submit_listing.php:449
4981
+ msgctxt "submit listing"
4982
+ msgid "Please select a category for your listing."
4983
+ msgstr ""
4984
+
4985
+ #: includes/views/submit_listing.php:469
4986
  msgctxt "submit listing"
4987
  msgid "Please choose a valid category for your plan."
4988
  msgstr ""
4989
 
4990
+ #: includes/views/submit_listing.php:471
4991
  msgctxt "submit listing"
4992
  msgid "Please choose a valid fee plan for your category selection."
4993
  msgstr ""
4994
 
4995
+ #: includes/views/submit_listing.php:675
4996
  msgctxt "submit listing"
4997
  msgid "Please enter your desired username."
4998
  msgstr ""
4999
 
5000
+ #: includes/views/submit_listing.php:680
5001
  msgctxt "submit listing"
5002
  msgid "Please enter the e-mail for your new account."
5003
  msgstr ""
5004
 
5005
+ #: includes/views/submit_listing.php:685
5006
  msgctxt "submit listing"
5007
  msgid "Please enter the password for your new account."
5008
  msgstr ""
5009
 
5010
+ #: includes/views/submit_listing.php:695
5011
  msgctxt "submit listing"
5012
  msgid "The username you chose is already in use. Please use a different one."
5013
  msgstr ""
5014
 
5015
+ #: includes/views/submit_listing.php:700
5016
  msgctxt "submit listing"
5017
  msgid "The e-mail address you chose for your account is already in use."
5018
  msgstr ""
5019
 
5020
+ #: includes/views/submit_listing.php:715
5021
  msgctxt "submit listing"
5022
  msgid "Create a user account on this site"
5023
  msgstr ""
5024
 
5025
+ #: includes/views/submit_listing.php:722
5026
  msgctxt "submit listing"
5027
  msgid ""
5028
  "You need to create an account on the site. Please fill out the form below."
5029
  msgstr ""
5030
 
5031
+ #: includes/views/submit_listing.php:728
5032
  msgctxt "submit listing"
5033
  msgid "Username:"
5034
  msgstr ""
5035
 
5036
+ #: includes/views/submit_listing.php:737
5037
  msgctxt "submit listing"
5038
  msgid "Email:"
5039
  msgstr ""
5040
 
5041
+ #: includes/views/submit_listing.php:746
5042
  msgctxt "submit listing"
5043
  msgid "Password:"
5044
  msgstr ""
5345
  "of options."
5346
  msgstr ""
5347
 
5348
+ #: includes/fields/class-fieldtypes-select.php:86
5349
+ #: includes/fields/class-fieldtypes-select.php:133
5350
  msgctxt "form-fields-api category-select"
5351
+ msgid "-- Choose One --"
5352
  msgstr ""
5353
 
5354
+ #: includes/fields/class-fieldtypes-select.php:92
 
5355
  msgctxt "form-fields-api category-select"
5356
+ msgid "-- Choose Terms --"
5357
  msgstr ""
5358
 
5359
+ #: includes/fields/class-fieldtypes-select.php:143
5360
  msgctxt "form-fields-api select"
5361
  msgid "— None —"
5362
  msgstr ""
5925
  msgid "Recurring Fee Management"
5926
  msgstr ""
5927
 
5928
+ #: includes/views/submit_listing.php:270
5929
  msgctxt "templates"
5930
  msgid ""
5931
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
5932
  "Submission?\" setting checked?"
5933
  msgstr ""
5934
 
5935
+ #: includes/views/submit_listing.php:272
5936
  msgctxt "templates"
5937
  msgid "View not available."
5938
  msgstr ""
5939
 
5940
+ #: includes/views/submit_listing.php:784
5941
  msgctxt "templates"
5942
  msgid "Please agree to the Terms and Conditions."
5943
  msgstr ""
5944
 
5945
+ #: includes/views/submit_listing.php:792
5946
  msgctxt "templates"
5947
  msgid "Terms and Conditions:"
5948
  msgstr ""
5949
 
5950
+ #: includes/views/submit_listing.php:801
5951
  msgctxt "templates"
5952
  msgid "I agree to the <a>Terms and Conditions</a>"
5953
  msgstr ""
6583
  msgid "This is just a preview. The listing has not been published yet."
6584
  msgstr ""
6585
 
6586
+ #: includes/views/submit_listing.php:563
6587
  msgctxt "listing submit"
6588
  msgid ""
6589
  "Something went wrong. Please check the form for errors, correct them and "
7461
  "fee plans for your listing."
7462
  msgstr ""
7463
 
7464
+ #: templates/submit-listing-plan-selection.tpl.php:25
7465
+ msgctxt "submit"
7466
+ msgid "Your plan's details:"
7467
+ msgstr ""
7468
+
7469
+ #: templates/submit-listing-plan-selection.tpl.php:37
7470
  msgctxt "submit"
7471
  msgid "Please choose a fee plan for your listing:"
7472
  msgstr ""
languages/WPBDM-es_ES.po CHANGED
@@ -5,7 +5,7 @@ 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: 2017-11-16 23:46:36+00:00\n"
9
  "PO-Revision-Date: 2017-11-06 15:27-0500\n"
10
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -2533,7 +2533,7 @@ msgstr "Etiquetas actualizadas."
2533
 
2534
  #: includes/fields/class-fieldtypes-checkbox.php:74
2535
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2536
- #: includes/fields/class-fieldtypes-select.php:173
2537
  msgctxt "form-fields admin"
2538
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2539
  msgstr ""
@@ -2542,12 +2542,12 @@ msgstr ""
2542
 
2543
  #: includes/fields/class-fieldtypes-checkbox.php:95
2544
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2545
- #: includes/fields/class-fieldtypes-select.php:201
2546
  msgctxt "form-fields admin"
2547
  msgid "Field list of options is required."
2548
  msgstr "La lista de opciones del campo es requerida."
2549
 
2550
- #: includes/fields/class-fieldtypes-select.php:184
2551
  msgctxt "form-fields admin"
2552
  msgid "Allow empty selection on search?"
2553
  msgstr "Permitir selección vacía en las búsquedas?"
@@ -5352,7 +5352,7 @@ msgctxt "rss feed"
5352
  msgid "%s Feed"
5353
  msgstr "Feed %s"
5354
 
5355
- #: includes/class-meta.php:155 includes/views/submit_listing.php:17
5356
  msgctxt "views"
5357
  msgid "Submit A Listing"
5358
  msgstr "Enviar un Listado"
@@ -5486,24 +5486,24 @@ msgctxt "submit listing"
5486
  msgid "Listing submitted by admin. Payment skipped."
5487
  msgstr "Envío de Listado (Pago Inicial)"
5488
 
5489
- #: includes/views/submit_listing.php:42
5490
  msgctxt "submit listing"
5491
  msgid "Click this field to add categories"
5492
  msgstr ""
5493
 
5494
- #: includes/views/submit_listing.php:43 templates/submit-listing.tpl.php:23
5495
  #, fuzzy
5496
  msgctxt "submit listing"
5497
  msgid "Complete Listing"
5498
  msgstr "Eliminar Listado"
5499
 
5500
- #: includes/views/submit_listing.php:44 templates/submit-listing.tpl.php:28
5501
  #, fuzzy
5502
  msgctxt "submit listing"
5503
  msgid "Continue to Payment"
5504
  msgstr "Pago Inicial"
5505
 
5506
- #: includes/views/submit_listing.php:86
5507
  msgctxt "submit listing"
5508
  msgid ""
5509
  "This listing can't be edited at this time because it has no fee plan "
@@ -5511,7 +5511,7 @@ msgid ""
5511
  "to a fee plan."
5512
  msgstr ""
5513
 
5514
- #: includes/views/submit_listing.php:91
5515
  #, fuzzy
5516
  msgctxt "submit listing"
5517
  msgid ""
@@ -5522,121 +5522,133 @@ msgstr ""
5522
  "minutos e intente nuevamente, o contacte al administrador si los problemas "
5523
  "persisten."
5524
 
5525
- #: includes/views/submit_listing.php:112
5526
  #, fuzzy
5527
  msgctxt "submit listing"
5528
  msgid "You're logged in as admin, payment will be skipped."
5529
  msgstr ""
5530
  "Ha ingresado como administrador. Todos los pasos de pago serán saltados."
5531
 
5532
- #: includes/views/submit_listing.php:278
 
 
 
 
 
 
5533
  #, fuzzy
5534
  msgctxt "submit listing"
5535
  msgid "Category & plan selection"
5536
  msgstr "Selección de Categoría"
5537
 
5538
- #: includes/views/submit_listing.php:283
5539
  #, fuzzy
5540
  msgctxt "submit listing"
5541
  msgid "Listing Information"
5542
  msgstr "Información del Listado"
5543
 
5544
- #: includes/views/submit_listing.php:287
5545
  #, fuzzy
5546
  msgctxt "submit listing"
5547
  msgid "Listing Images"
5548
  msgstr "Imágenes del Listado"
5549
 
5550
- #: includes/views/submit_listing.php:293
5551
  msgctxt "submit listing"
5552
  msgid "Account Creation"
5553
  msgstr ""
5554
 
5555
- #: includes/views/submit_listing.php:299
5556
  #, fuzzy
5557
  msgctxt "submit listing"
5558
  msgid "Terms and Conditions"
5559
  msgstr "Términos y Condiciones"
5560
 
5561
- #: includes/views/submit_listing.php:336
5562
  msgctxt "submit listing"
5563
  msgid "(Please choose a fee plan above)"
5564
  msgstr ""
5565
 
5566
- #: includes/views/submit_listing.php:384
5567
  #, fuzzy
5568
  msgctxt "submit listing"
5569
  msgid "Can not submit a listing at this moment. Please try again later."
5570
  msgstr ""
5571
  "No podemos procesar su pago en este momento. Por favor intente más tarde."
5572
 
5573
- #: includes/views/submit_listing.php:394
5574
  #, fuzzy
5575
  msgctxt "submit listing"
5576
  msgid "Please select a category."
5577
  msgstr "Por favor seleccione un método de pago válido."
5578
 
5579
- #: includes/views/submit_listing.php:413
 
 
 
 
 
 
5580
  msgctxt "submit listing"
5581
  msgid "Please choose a valid category for your plan."
5582
  msgstr ""
5583
 
5584
- #: includes/views/submit_listing.php:415
5585
  #, fuzzy
5586
  msgctxt "submit listing"
5587
  msgid "Please choose a valid fee plan for your category selection."
5588
  msgstr "Por favor elija una opción de pago para la categoría \"%s\"."
5589
 
5590
- #: includes/views/submit_listing.php:608
5591
  #, fuzzy
5592
  msgctxt "submit listing"
5593
  msgid "Please enter your desired username."
5594
  msgstr "Por favor ingrese su nombre."
5595
 
5596
- #: includes/views/submit_listing.php:613
5597
  #, fuzzy
5598
  msgctxt "submit listing"
5599
  msgid "Please enter the e-mail for your new account."
5600
  msgstr "Por favor ingrese su nombre."
5601
 
5602
- #: includes/views/submit_listing.php:618
5603
  msgctxt "submit listing"
5604
  msgid "Please enter the password for your new account."
5605
  msgstr ""
5606
 
5607
- #: includes/views/submit_listing.php:628
5608
  msgctxt "submit listing"
5609
  msgid "The username you chose is already in use. Please use a different one."
5610
  msgstr ""
5611
 
5612
- #: includes/views/submit_listing.php:633
5613
  msgctxt "submit listing"
5614
  msgid "The e-mail address you chose for your account is already in use."
5615
  msgstr ""
5616
 
5617
- #: includes/views/submit_listing.php:648
5618
  msgctxt "submit listing"
5619
  msgid "Create a user account on this site"
5620
  msgstr ""
5621
 
5622
- #: includes/views/submit_listing.php:655
5623
  msgctxt "submit listing"
5624
  msgid ""
5625
  "You need to create an account on the site. Please fill out the form below."
5626
  msgstr ""
5627
 
5628
- #: includes/views/submit_listing.php:661
5629
  msgctxt "submit listing"
5630
  msgid "Username:"
5631
  msgstr "Nombre de usuario"
5632
 
5633
- #: includes/views/submit_listing.php:670
5634
  #, fuzzy
5635
  msgctxt "submit listing"
5636
  msgid "Email:"
5637
  msgstr "Correo Electrónico:"
5638
 
5639
- #: includes/views/submit_listing.php:679
5640
  msgctxt "submit listing"
5641
  msgid "Password:"
5642
  msgstr ""
@@ -5955,18 +5967,18 @@ msgstr ""
5955
  "La altura de la lista será ajustada para incluir el número especificado de "
5956
  "opciones."
5957
 
5958
- #: includes/fields/class-fieldtypes-select.php:73
5959
- msgctxt "form-fields-api category-select"
5960
- msgid "-- Choose Terms --"
5961
- msgstr "-- Elija los términos --"
5962
-
5963
- #: includes/fields/class-fieldtypes-select.php:73
5964
- #: includes/fields/class-fieldtypes-select.php:120
5965
  msgctxt "form-fields-api category-select"
5966
  msgid "-- Choose One --"
5967
  msgstr "-- Elija Uno --"
5968
 
5969
- #: includes/fields/class-fieldtypes-select.php:130
 
 
 
 
 
5970
  msgctxt "form-fields-api select"
5971
  msgid "— None —"
5972
  msgstr "— Ninguno —"
@@ -6616,7 +6628,7 @@ msgctxt "templates"
6616
  msgid "Recurring Fee Management"
6617
  msgstr "Manejo de Pago Recurrente"
6618
 
6619
- #: includes/views/submit_listing.php:234
6620
  msgctxt "templates"
6621
  msgid ""
6622
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
@@ -6625,22 +6637,22 @@ msgstr ""
6625
  "<b>Vista no disponible</b>. ¿Tiene \"Deshabilitar envío de listados desde el "
6626
  "frontend\" habilitado?"
6627
 
6628
- #: includes/views/submit_listing.php:236
6629
  msgctxt "templates"
6630
  msgid "View not available."
6631
  msgstr "Vista no disponible."
6632
 
6633
- #: includes/views/submit_listing.php:717
6634
  msgctxt "templates"
6635
  msgid "Please agree to the Terms and Conditions."
6636
  msgstr "Por favor acepte los Términos y Condiciones."
6637
 
6638
- #: includes/views/submit_listing.php:725
6639
  msgctxt "templates"
6640
  msgid "Terms and Conditions:"
6641
  msgstr "Términos y Condiciones:"
6642
 
6643
- #: includes/views/submit_listing.php:734
6644
  #, fuzzy
6645
  msgctxt "templates"
6646
  msgid "I agree to the <a>Terms and Conditions</a>"
@@ -7330,7 +7342,7 @@ msgid "This is just a preview. The listing has not been published yet."
7330
  msgstr ""
7331
  "Esta es tan solo una previsualización. El listado no ha sido publicado aún."
7332
 
7333
- #: includes/views/submit_listing.php:496
7334
  msgctxt "listing submit"
7335
  msgid ""
7336
  "Something went wrong. Please check the form for errors, correct them and "
@@ -8262,7 +8274,13 @@ msgid ""
8262
  "fee plans for your listing."
8263
  msgstr ""
8264
 
8265
- #: templates/submit-listing-plan-selection.tpl.php:24
 
 
 
 
 
 
8266
  msgctxt "submit"
8267
  msgid "Please choose a fee plan for your listing:"
8268
  msgstr ""
@@ -9295,10 +9313,6 @@ msgstr "Dirección"
9295
  #~ "Está a punto de renovar la publicación de su listado \"%\" dentro de la "
9296
  #~ "categoría \"%s\"."
9297
 
9298
- #~ msgctxt "templates"
9299
- #~ msgid "Category Selection"
9300
- #~ msgstr "Selección de Categoría"
9301
-
9302
  #~ msgctxt "templates"
9303
  #~ msgid "Delete Image"
9304
  #~ msgstr "Eliminar Imagen"
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: 2017-11-21 22:20:29+00:00\n"
9
  "PO-Revision-Date: 2017-11-06 15:27-0500\n"
10
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
2533
 
2534
  #: includes/fields/class-fieldtypes-checkbox.php:74
2535
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2536
+ #: includes/fields/class-fieldtypes-select.php:186
2537
  msgctxt "form-fields admin"
2538
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2539
  msgstr ""
2542
 
2543
  #: includes/fields/class-fieldtypes-checkbox.php:95
2544
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2545
+ #: includes/fields/class-fieldtypes-select.php:214
2546
  msgctxt "form-fields admin"
2547
  msgid "Field list of options is required."
2548
  msgstr "La lista de opciones del campo es requerida."
2549
 
2550
+ #: includes/fields/class-fieldtypes-select.php:197
2551
  msgctxt "form-fields admin"
2552
  msgid "Allow empty selection on search?"
2553
  msgstr "Permitir selección vacía en las búsquedas?"
5352
  msgid "%s Feed"
5353
  msgstr "Feed %s"
5354
 
5355
+ #: includes/class-meta.php:155 includes/views/submit_listing.php:22
5356
  msgctxt "views"
5357
  msgid "Submit A Listing"
5358
  msgstr "Enviar un Listado"
5486
  msgid "Listing submitted by admin. Payment skipped."
5487
  msgstr "Envío de Listado (Pago Inicial)"
5488
 
5489
+ #: includes/views/submit_listing.php:47
5490
  msgctxt "submit listing"
5491
  msgid "Click this field to add categories"
5492
  msgstr ""
5493
 
5494
+ #: includes/views/submit_listing.php:48 templates/submit-listing.tpl.php:23
5495
  #, fuzzy
5496
  msgctxt "submit listing"
5497
  msgid "Complete Listing"
5498
  msgstr "Eliminar Listado"
5499
 
5500
+ #: includes/views/submit_listing.php:49 templates/submit-listing.tpl.php:28
5501
  #, fuzzy
5502
  msgctxt "submit listing"
5503
  msgid "Continue to Payment"
5504
  msgstr "Pago Inicial"
5505
 
5506
+ #: includes/views/submit_listing.php:91
5507
  msgctxt "submit listing"
5508
  msgid ""
5509
  "This listing can't be edited at this time because it has no fee plan "
5511
  "to a fee plan."
5512
  msgstr ""
5513
 
5514
+ #: includes/views/submit_listing.php:96
5515
  #, fuzzy
5516
  msgctxt "submit listing"
5517
  msgid ""
5522
  "minutos e intente nuevamente, o contacte al administrador si los problemas "
5523
  "persisten."
5524
 
5525
+ #: includes/views/submit_listing.php:118
5526
  #, fuzzy
5527
  msgctxt "submit listing"
5528
  msgid "You're logged in as admin, payment will be skipped."
5529
  msgstr ""
5530
  "Ha ingresado como administrador. Todos los pasos de pago serán saltados."
5531
 
5532
+ #: includes/views/submit_listing.php:314
5533
+ #, fuzzy
5534
+ msgctxt "submit listing"
5535
+ msgid "Category selection"
5536
+ msgstr "Selección de Categoría"
5537
+
5538
+ #: includes/views/submit_listing.php:314
5539
  #, fuzzy
5540
  msgctxt "submit listing"
5541
  msgid "Category & plan selection"
5542
  msgstr "Selección de Categoría"
5543
 
5544
+ #: includes/views/submit_listing.php:319
5545
  #, fuzzy
5546
  msgctxt "submit listing"
5547
  msgid "Listing Information"
5548
  msgstr "Información del Listado"
5549
 
5550
+ #: includes/views/submit_listing.php:323
5551
  #, fuzzy
5552
  msgctxt "submit listing"
5553
  msgid "Listing Images"
5554
  msgstr "Imágenes del Listado"
5555
 
5556
+ #: includes/views/submit_listing.php:329
5557
  msgctxt "submit listing"
5558
  msgid "Account Creation"
5559
  msgstr ""
5560
 
5561
+ #: includes/views/submit_listing.php:335
5562
  #, fuzzy
5563
  msgctxt "submit listing"
5564
  msgid "Terms and Conditions"
5565
  msgstr "Términos y Condiciones"
5566
 
5567
+ #: includes/views/submit_listing.php:375
5568
  msgctxt "submit listing"
5569
  msgid "(Please choose a fee plan above)"
5570
  msgstr ""
5571
 
5572
+ #: includes/views/submit_listing.php:426
5573
  #, fuzzy
5574
  msgctxt "submit listing"
5575
  msgid "Can not submit a listing at this moment. Please try again later."
5576
  msgstr ""
5577
  "No podemos procesar su pago en este momento. Por favor intente más tarde."
5578
 
5579
+ #: includes/views/submit_listing.php:436
5580
  #, fuzzy
5581
  msgctxt "submit listing"
5582
  msgid "Please select a category."
5583
  msgstr "Por favor seleccione un método de pago válido."
5584
 
5585
+ #: includes/views/submit_listing.php:449
5586
+ #, fuzzy
5587
+ msgctxt "submit listing"
5588
+ msgid "Please select a category for your listing."
5589
+ msgstr "Por favor seleccione un método de pago válido."
5590
+
5591
+ #: includes/views/submit_listing.php:469
5592
  msgctxt "submit listing"
5593
  msgid "Please choose a valid category for your plan."
5594
  msgstr ""
5595
 
5596
+ #: includes/views/submit_listing.php:471
5597
  #, fuzzy
5598
  msgctxt "submit listing"
5599
  msgid "Please choose a valid fee plan for your category selection."
5600
  msgstr "Por favor elija una opción de pago para la categoría \"%s\"."
5601
 
5602
+ #: includes/views/submit_listing.php:675
5603
  #, fuzzy
5604
  msgctxt "submit listing"
5605
  msgid "Please enter your desired username."
5606
  msgstr "Por favor ingrese su nombre."
5607
 
5608
+ #: includes/views/submit_listing.php:680
5609
  #, fuzzy
5610
  msgctxt "submit listing"
5611
  msgid "Please enter the e-mail for your new account."
5612
  msgstr "Por favor ingrese su nombre."
5613
 
5614
+ #: includes/views/submit_listing.php:685
5615
  msgctxt "submit listing"
5616
  msgid "Please enter the password for your new account."
5617
  msgstr ""
5618
 
5619
+ #: includes/views/submit_listing.php:695
5620
  msgctxt "submit listing"
5621
  msgid "The username you chose is already in use. Please use a different one."
5622
  msgstr ""
5623
 
5624
+ #: includes/views/submit_listing.php:700
5625
  msgctxt "submit listing"
5626
  msgid "The e-mail address you chose for your account is already in use."
5627
  msgstr ""
5628
 
5629
+ #: includes/views/submit_listing.php:715
5630
  msgctxt "submit listing"
5631
  msgid "Create a user account on this site"
5632
  msgstr ""
5633
 
5634
+ #: includes/views/submit_listing.php:722
5635
  msgctxt "submit listing"
5636
  msgid ""
5637
  "You need to create an account on the site. Please fill out the form below."
5638
  msgstr ""
5639
 
5640
+ #: includes/views/submit_listing.php:728
5641
  msgctxt "submit listing"
5642
  msgid "Username:"
5643
  msgstr "Nombre de usuario"
5644
 
5645
+ #: includes/views/submit_listing.php:737
5646
  #, fuzzy
5647
  msgctxt "submit listing"
5648
  msgid "Email:"
5649
  msgstr "Correo Electrónico:"
5650
 
5651
+ #: includes/views/submit_listing.php:746
5652
  msgctxt "submit listing"
5653
  msgid "Password:"
5654
  msgstr ""
5967
  "La altura de la lista será ajustada para incluir el número especificado de "
5968
  "opciones."
5969
 
5970
+ #: includes/fields/class-fieldtypes-select.php:86
5971
+ #: includes/fields/class-fieldtypes-select.php:133
 
 
 
 
 
5972
  msgctxt "form-fields-api category-select"
5973
  msgid "-- Choose One --"
5974
  msgstr "-- Elija Uno --"
5975
 
5976
+ #: includes/fields/class-fieldtypes-select.php:92
5977
+ msgctxt "form-fields-api category-select"
5978
+ msgid "-- Choose Terms --"
5979
+ msgstr "-- Elija los términos --"
5980
+
5981
+ #: includes/fields/class-fieldtypes-select.php:143
5982
  msgctxt "form-fields-api select"
5983
  msgid "— None —"
5984
  msgstr "— Ninguno —"
6628
  msgid "Recurring Fee Management"
6629
  msgstr "Manejo de Pago Recurrente"
6630
 
6631
+ #: includes/views/submit_listing.php:270
6632
  msgctxt "templates"
6633
  msgid ""
6634
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6637
  "<b>Vista no disponible</b>. ¿Tiene \"Deshabilitar envío de listados desde el "
6638
  "frontend\" habilitado?"
6639
 
6640
+ #: includes/views/submit_listing.php:272
6641
  msgctxt "templates"
6642
  msgid "View not available."
6643
  msgstr "Vista no disponible."
6644
 
6645
+ #: includes/views/submit_listing.php:784
6646
  msgctxt "templates"
6647
  msgid "Please agree to the Terms and Conditions."
6648
  msgstr "Por favor acepte los Términos y Condiciones."
6649
 
6650
+ #: includes/views/submit_listing.php:792
6651
  msgctxt "templates"
6652
  msgid "Terms and Conditions:"
6653
  msgstr "Términos y Condiciones:"
6654
 
6655
+ #: includes/views/submit_listing.php:801
6656
  #, fuzzy
6657
  msgctxt "templates"
6658
  msgid "I agree to the <a>Terms and Conditions</a>"
7342
  msgstr ""
7343
  "Esta es tan solo una previsualización. El listado no ha sido publicado aún."
7344
 
7345
+ #: includes/views/submit_listing.php:563
7346
  msgctxt "listing submit"
7347
  msgid ""
7348
  "Something went wrong. Please check the form for errors, correct them and "
8274
  "fee plans for your listing."
8275
  msgstr ""
8276
 
8277
+ #: templates/submit-listing-plan-selection.tpl.php:25
8278
+ #, fuzzy
8279
+ msgctxt "submit"
8280
+ msgid "Your plan's details:"
8281
+ msgstr "Detalles del Plan"
8282
+
8283
+ #: templates/submit-listing-plan-selection.tpl.php:37
8284
  msgctxt "submit"
8285
  msgid "Please choose a fee plan for your listing:"
8286
  msgstr ""
9313
  #~ "Está a punto de renovar la publicación de su listado \"%\" dentro de la "
9314
  #~ "categoría \"%s\"."
9315
 
 
 
 
 
9316
  #~ msgctxt "templates"
9317
  #~ msgid "Delete Image"
9318
  #~ msgstr "Eliminar Imagen"
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: 2017-11-16 23:46:36+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"
@@ -2479,7 +2479,7 @@ msgstr "Étiquettes mises à jour."
2479
 
2480
  #: includes/fields/class-fieldtypes-checkbox.php:74
2481
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2482
- #: includes/fields/class-fieldtypes-select.php:173
2483
  msgctxt "form-fields admin"
2484
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2485
  msgstr ""
@@ -2488,12 +2488,12 @@ msgstr ""
2488
 
2489
  #: includes/fields/class-fieldtypes-checkbox.php:95
2490
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2491
- #: includes/fields/class-fieldtypes-select.php:201
2492
  msgctxt "form-fields admin"
2493
  msgid "Field list of options is required."
2494
  msgstr "La liste des options est obligatoire."
2495
 
2496
- #: includes/fields/class-fieldtypes-select.php:184
2497
  msgctxt "form-fields admin"
2498
  msgid "Allow empty selection on search?"
2499
  msgstr "Permettre la sélection vide sur la recherche?"
@@ -5127,7 +5127,7 @@ msgctxt "rss feed"
5127
  msgid "%s Feed"
5128
  msgstr "%s diffusion"
5129
 
5130
- #: includes/class-meta.php:155 includes/views/submit_listing.php:17
5131
  msgctxt "views"
5132
  msgid "Submit A Listing"
5133
  msgstr "Soumettre une annonce"
@@ -5250,22 +5250,22 @@ msgctxt "submit listing"
5250
  msgid "Listing submitted by admin. Payment skipped."
5251
  msgstr "Annonce soumis par admin. Paiement sauté."
5252
 
5253
- #: includes/views/submit_listing.php:42
5254
  msgctxt "submit listing"
5255
  msgid "Click this field to add categories"
5256
  msgstr "Cliquez sur ce champ pour sélectionner une catégorie"
5257
 
5258
- #: includes/views/submit_listing.php:43 templates/submit-listing.tpl.php:23
5259
  msgctxt "submit listing"
5260
  msgid "Complete Listing"
5261
  msgstr "Soumettre l'annonce"
5262
 
5263
- #: includes/views/submit_listing.php:44 templates/submit-listing.tpl.php:28
5264
  msgctxt "submit listing"
5265
  msgid "Continue to Payment"
5266
  msgstr "Continuer le paiement"
5267
 
5268
- #: includes/views/submit_listing.php:86
5269
  msgctxt "submit listing"
5270
  msgid ""
5271
  "This listing can't be edited at this time because it has no fee plan "
@@ -5276,7 +5276,7 @@ msgstr ""
5276
  "frais n'est associé. S'il vous plaît <a>modifier l'annonce</a> sur le "
5277
  "backend et l'associer à un plan de frais."
5278
 
5279
- #: includes/views/submit_listing.php:91
5280
  msgctxt "submit listing"
5281
  msgid ""
5282
  "This listing can't be edited at this time. Please try again later or contact "
@@ -5285,100 +5285,112 @@ msgstr ""
5285
  "L'annuaire n'est pas disponible pour le moment. Veuillez réessayer dans "
5286
  "quelques minutes ou contactez l'administrateur si le problème persiste."
5287
 
5288
- #: includes/views/submit_listing.php:112
5289
  msgctxt "submit listing"
5290
  msgid "You're logged in as admin, payment will be skipped."
5291
  msgstr ""
5292
  "Vous êtes connecté en tant qu'administrateur. Toutes les étapes de paiement "
5293
  "seront passées."
5294
 
5295
- #: includes/views/submit_listing.php:278
 
 
 
 
 
 
5296
  msgctxt "submit listing"
5297
  msgid "Category & plan selection"
5298
  msgstr "Sélection Catégorie et plan"
5299
 
5300
- #: includes/views/submit_listing.php:283
5301
  msgctxt "submit listing"
5302
  msgid "Listing Information"
5303
  msgstr "Information sur l'annonce"
5304
 
5305
- #: includes/views/submit_listing.php:287
5306
  msgctxt "submit listing"
5307
  msgid "Listing Images"
5308
  msgstr "Liste des images"
5309
 
5310
- #: includes/views/submit_listing.php:293
5311
  msgctxt "submit listing"
5312
  msgid "Account Creation"
5313
  msgstr "Création de compte"
5314
 
5315
- #: includes/views/submit_listing.php:299
5316
  msgctxt "submit listing"
5317
  msgid "Terms and Conditions"
5318
  msgstr "Conditions d'utilisation"
5319
 
5320
- #: includes/views/submit_listing.php:336
5321
  msgctxt "submit listing"
5322
  msgid "(Please choose a fee plan above)"
5323
  msgstr "(Veuillez choisir un tarif ci-dessus)"
5324
 
5325
- #: includes/views/submit_listing.php:384
5326
  msgctxt "submit listing"
5327
  msgid "Can not submit a listing at this moment. Please try again later."
5328
  msgstr ""
5329
  "Impossible de soumettre une liste en ce moment. Veuillez réessayer plus tard."
5330
 
5331
- #: includes/views/submit_listing.php:394
5332
  msgctxt "submit listing"
5333
  msgid "Please select a category."
5334
  msgstr "Veuillez sélectionner une catégorie."
5335
 
5336
- #: includes/views/submit_listing.php:413
 
 
 
 
 
 
5337
  msgctxt "submit listing"
5338
  msgid "Please choose a valid category for your plan."
5339
  msgstr "Veuillez choisir une catégorie valide pour votre annonce."
5340
 
5341
- #: includes/views/submit_listing.php:415
5342
  msgctxt "submit listing"
5343
  msgid "Please choose a valid fee plan for your category selection."
5344
  msgstr ""
5345
  "S'il vous plaît choisir un plan tarifaire valable pour votre sélection de "
5346
  "catégorie."
5347
 
5348
- #: includes/views/submit_listing.php:608
5349
  msgctxt "submit listing"
5350
  msgid "Please enter your desired username."
5351
  msgstr "S'il vous plaît entrer votre nom d'utilisateur souhaité."
5352
 
5353
- #: includes/views/submit_listing.php:613
5354
  msgctxt "submit listing"
5355
  msgid "Please enter the e-mail for your new account."
5356
  msgstr "S'il vous plaît entrer votre e-mail pour votre nouveau compte."
5357
 
5358
- #: includes/views/submit_listing.php:618
5359
  msgctxt "submit listing"
5360
  msgid "Please enter the password for your new account."
5361
  msgstr "Veuillez entrer le mot de passe de votre nouveau compte."
5362
 
5363
- #: includes/views/submit_listing.php:628
5364
  msgctxt "submit listing"
5365
  msgid "The username you chose is already in use. Please use a different one."
5366
  msgstr ""
5367
  "Le nom d'utilisateur que vous avez choisi est déjà utilisé. Veuillez en "
5368
  "utiliser un autre."
5369
 
5370
- #: includes/views/submit_listing.php:633
5371
  msgctxt "submit listing"
5372
  msgid "The e-mail address you chose for your account is already in use."
5373
  msgstr ""
5374
  "L'adresse e-mail que vous avez choisie pour votre compte est déjà utilisée."
5375
 
5376
- #: includes/views/submit_listing.php:648
5377
  msgctxt "submit listing"
5378
  msgid "Create a user account on this site"
5379
  msgstr "Créer un compte utilisateur sur ce site"
5380
 
5381
- #: includes/views/submit_listing.php:655
5382
  msgctxt "submit listing"
5383
  msgid ""
5384
  "You need to create an account on the site. Please fill out the form below."
@@ -5386,17 +5398,17 @@ msgstr ""
5386
  "Vous devez créer un compte sur le site. Veuillez remplir le formulaire ci-"
5387
  "dessous."
5388
 
5389
- #: includes/views/submit_listing.php:661
5390
  msgctxt "submit listing"
5391
  msgid "Username:"
5392
  msgstr "Nom d'utilisateur (login) :"
5393
 
5394
- #: includes/views/submit_listing.php:670
5395
  msgctxt "submit listing"
5396
  msgid "Email:"
5397
  msgstr "E-Mail:"
5398
 
5399
- #: includes/views/submit_listing.php:679
5400
  msgctxt "submit listing"
5401
  msgid "Password:"
5402
  msgstr "Mot de passe :"
@@ -5718,18 +5730,18 @@ msgstr ""
5718
  "La hauteur de l'annonce sera ajustée pour s'adapter au nombre d'options "
5719
  "spécifié."
5720
 
5721
- #: includes/fields/class-fieldtypes-select.php:73
5722
- msgctxt "form-fields-api category-select"
5723
- msgid "-- Choose Terms --"
5724
- msgstr "-- Choisissez les conditions --"
5725
-
5726
- #: includes/fields/class-fieldtypes-select.php:73
5727
- #: includes/fields/class-fieldtypes-select.php:120
5728
  msgctxt "form-fields-api category-select"
5729
  msgid "-- Choose One --"
5730
  msgstr "-- Choisissez --"
5731
 
5732
- #: includes/fields/class-fieldtypes-select.php:130
 
 
 
 
 
5733
  msgctxt "form-fields-api select"
5734
  msgid "— None —"
5735
  msgstr "— Aucun —"
@@ -6353,7 +6365,7 @@ msgctxt "templates"
6353
  msgid "Recurring Fee Management"
6354
  msgstr "Gestion des frais récurrents"
6355
 
6356
- #: includes/views/submit_listing.php:234
6357
  msgctxt "templates"
6358
  msgid ""
6359
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
@@ -6362,22 +6374,22 @@ msgstr ""
6362
  "<b>Aperçu non disponible</b>. Avez-vous coché le paramètre \"Désactiver la "
6363
  "soumission de l'annonce publique ?\" ?"
6364
 
6365
- #: includes/views/submit_listing.php:236
6366
  msgctxt "templates"
6367
  msgid "View not available."
6368
  msgstr "Emplacements d'image disponibles."
6369
 
6370
- #: includes/views/submit_listing.php:717
6371
  msgctxt "templates"
6372
  msgid "Please agree to the Terms and Conditions."
6373
  msgstr "Veuillez accepter les conditions d'utilisation."
6374
 
6375
- #: includes/views/submit_listing.php:725
6376
  msgctxt "templates"
6377
  msgid "Terms and Conditions:"
6378
  msgstr "Conditions d'utilisation:"
6379
 
6380
- #: includes/views/submit_listing.php:734
6381
  msgctxt "templates"
6382
  msgid "I agree to the <a>Terms and Conditions</a>"
6383
  msgstr "J'accepte <a> Conditions générales </a>"
@@ -7069,7 +7081,7 @@ msgstr ""
7069
  "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
7070
  "publiée."
7071
 
7072
- #: includes/views/submit_listing.php:496
7073
  msgctxt "listing submit"
7074
  msgid ""
7075
  "Something went wrong. Please check the form for errors, correct them and "
@@ -8004,7 +8016,13 @@ msgstr ""
8004
  "Vous devez choisir les catégories d'abord, puis ensuite voir les plans "
8005
  "tarifaires disponibles pour votre liste."
8006
 
8007
- #: templates/submit-listing-plan-selection.tpl.php:24
 
 
 
 
 
 
8008
  msgctxt "submit"
8009
  msgid "Please choose a fee plan for your listing:"
8010
  msgstr "Merci de choisir un tarif pour votre annonce:"
@@ -8976,10 +8994,6 @@ msgstr "Adresse"
8976
  #~ "Vous êtes sur le point de renouveler votre annonce \"%s\" publication "
8977
  #~ "dans la catégorie \"%s\"."
8978
 
8979
- #~ msgctxt "templates"
8980
- #~ msgid "Category Selection"
8981
- #~ msgstr "Sélection de la catégorie"
8982
-
8983
  #~ msgctxt "templates"
8984
  #~ msgid "Delete Image"
8985
  #~ msgstr "Effacer l'image"
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: 2017-11-21 22:20:29+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"
2479
 
2480
  #: includes/fields/class-fieldtypes-checkbox.php:74
2481
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2482
+ #: includes/fields/class-fieldtypes-select.php:186
2483
  msgctxt "form-fields admin"
2484
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2485
  msgstr ""
2488
 
2489
  #: includes/fields/class-fieldtypes-checkbox.php:95
2490
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2491
+ #: includes/fields/class-fieldtypes-select.php:214
2492
  msgctxt "form-fields admin"
2493
  msgid "Field list of options is required."
2494
  msgstr "La liste des options est obligatoire."
2495
 
2496
+ #: includes/fields/class-fieldtypes-select.php:197
2497
  msgctxt "form-fields admin"
2498
  msgid "Allow empty selection on search?"
2499
  msgstr "Permettre la sélection vide sur la recherche?"
5127
  msgid "%s Feed"
5128
  msgstr "%s diffusion"
5129
 
5130
+ #: includes/class-meta.php:155 includes/views/submit_listing.php:22
5131
  msgctxt "views"
5132
  msgid "Submit A Listing"
5133
  msgstr "Soumettre une annonce"
5250
  msgid "Listing submitted by admin. Payment skipped."
5251
  msgstr "Annonce soumis par admin. Paiement sauté."
5252
 
5253
+ #: includes/views/submit_listing.php:47
5254
  msgctxt "submit listing"
5255
  msgid "Click this field to add categories"
5256
  msgstr "Cliquez sur ce champ pour sélectionner une catégorie"
5257
 
5258
+ #: includes/views/submit_listing.php:48 templates/submit-listing.tpl.php:23
5259
  msgctxt "submit listing"
5260
  msgid "Complete Listing"
5261
  msgstr "Soumettre l'annonce"
5262
 
5263
+ #: includes/views/submit_listing.php:49 templates/submit-listing.tpl.php:28
5264
  msgctxt "submit listing"
5265
  msgid "Continue to Payment"
5266
  msgstr "Continuer le paiement"
5267
 
5268
+ #: includes/views/submit_listing.php:91
5269
  msgctxt "submit listing"
5270
  msgid ""
5271
  "This listing can't be edited at this time because it has no fee plan "
5276
  "frais n'est associé. S'il vous plaît <a>modifier l'annonce</a> sur le "
5277
  "backend et l'associer à un plan de frais."
5278
 
5279
+ #: includes/views/submit_listing.php:96
5280
  msgctxt "submit listing"
5281
  msgid ""
5282
  "This listing can't be edited at this time. Please try again later or contact "
5285
  "L'annuaire n'est pas disponible pour le moment. Veuillez réessayer dans "
5286
  "quelques minutes ou contactez l'administrateur si le problème persiste."
5287
 
5288
+ #: includes/views/submit_listing.php:118
5289
  msgctxt "submit listing"
5290
  msgid "You're logged in as admin, payment will be skipped."
5291
  msgstr ""
5292
  "Vous êtes connecté en tant qu'administrateur. Toutes les étapes de paiement "
5293
  "seront passées."
5294
 
5295
+ #: includes/views/submit_listing.php:314
5296
+ #, fuzzy
5297
+ msgctxt "submit listing"
5298
+ msgid "Category selection"
5299
+ msgstr "Sélection de la catégorie"
5300
+
5301
+ #: includes/views/submit_listing.php:314
5302
  msgctxt "submit listing"
5303
  msgid "Category & plan selection"
5304
  msgstr "Sélection Catégorie et plan"
5305
 
5306
+ #: includes/views/submit_listing.php:319
5307
  msgctxt "submit listing"
5308
  msgid "Listing Information"
5309
  msgstr "Information sur l'annonce"
5310
 
5311
+ #: includes/views/submit_listing.php:323
5312
  msgctxt "submit listing"
5313
  msgid "Listing Images"
5314
  msgstr "Liste des images"
5315
 
5316
+ #: includes/views/submit_listing.php:329
5317
  msgctxt "submit listing"
5318
  msgid "Account Creation"
5319
  msgstr "Création de compte"
5320
 
5321
+ #: includes/views/submit_listing.php:335
5322
  msgctxt "submit listing"
5323
  msgid "Terms and Conditions"
5324
  msgstr "Conditions d'utilisation"
5325
 
5326
+ #: includes/views/submit_listing.php:375
5327
  msgctxt "submit listing"
5328
  msgid "(Please choose a fee plan above)"
5329
  msgstr "(Veuillez choisir un tarif ci-dessus)"
5330
 
5331
+ #: includes/views/submit_listing.php:426
5332
  msgctxt "submit listing"
5333
  msgid "Can not submit a listing at this moment. Please try again later."
5334
  msgstr ""
5335
  "Impossible de soumettre une liste en ce moment. Veuillez réessayer plus tard."
5336
 
5337
+ #: includes/views/submit_listing.php:436
5338
  msgctxt "submit listing"
5339
  msgid "Please select a category."
5340
  msgstr "Veuillez sélectionner une catégorie."
5341
 
5342
+ #: includes/views/submit_listing.php:449
5343
+ #, fuzzy
5344
+ msgctxt "submit listing"
5345
+ msgid "Please select a category for your listing."
5346
+ msgstr "Veuillez choisir une catégorie valide pour votre annonce."
5347
+
5348
+ #: includes/views/submit_listing.php:469
5349
  msgctxt "submit listing"
5350
  msgid "Please choose a valid category for your plan."
5351
  msgstr "Veuillez choisir une catégorie valide pour votre annonce."
5352
 
5353
+ #: includes/views/submit_listing.php:471
5354
  msgctxt "submit listing"
5355
  msgid "Please choose a valid fee plan for your category selection."
5356
  msgstr ""
5357
  "S'il vous plaît choisir un plan tarifaire valable pour votre sélection de "
5358
  "catégorie."
5359
 
5360
+ #: includes/views/submit_listing.php:675
5361
  msgctxt "submit listing"
5362
  msgid "Please enter your desired username."
5363
  msgstr "S'il vous plaît entrer votre nom d'utilisateur souhaité."
5364
 
5365
+ #: includes/views/submit_listing.php:680
5366
  msgctxt "submit listing"
5367
  msgid "Please enter the e-mail for your new account."
5368
  msgstr "S'il vous plaît entrer votre e-mail pour votre nouveau compte."
5369
 
5370
+ #: includes/views/submit_listing.php:685
5371
  msgctxt "submit listing"
5372
  msgid "Please enter the password for your new account."
5373
  msgstr "Veuillez entrer le mot de passe de votre nouveau compte."
5374
 
5375
+ #: includes/views/submit_listing.php:695
5376
  msgctxt "submit listing"
5377
  msgid "The username you chose is already in use. Please use a different one."
5378
  msgstr ""
5379
  "Le nom d'utilisateur que vous avez choisi est déjà utilisé. Veuillez en "
5380
  "utiliser un autre."
5381
 
5382
+ #: includes/views/submit_listing.php:700
5383
  msgctxt "submit listing"
5384
  msgid "The e-mail address you chose for your account is already in use."
5385
  msgstr ""
5386
  "L'adresse e-mail que vous avez choisie pour votre compte est déjà utilisée."
5387
 
5388
+ #: includes/views/submit_listing.php:715
5389
  msgctxt "submit listing"
5390
  msgid "Create a user account on this site"
5391
  msgstr "Créer un compte utilisateur sur ce site"
5392
 
5393
+ #: includes/views/submit_listing.php:722
5394
  msgctxt "submit listing"
5395
  msgid ""
5396
  "You need to create an account on the site. Please fill out the form below."
5398
  "Vous devez créer un compte sur le site. Veuillez remplir le formulaire ci-"
5399
  "dessous."
5400
 
5401
+ #: includes/views/submit_listing.php:728
5402
  msgctxt "submit listing"
5403
  msgid "Username:"
5404
  msgstr "Nom d'utilisateur (login) :"
5405
 
5406
+ #: includes/views/submit_listing.php:737
5407
  msgctxt "submit listing"
5408
  msgid "Email:"
5409
  msgstr "E-Mail:"
5410
 
5411
+ #: includes/views/submit_listing.php:746
5412
  msgctxt "submit listing"
5413
  msgid "Password:"
5414
  msgstr "Mot de passe :"
5730
  "La hauteur de l'annonce sera ajustée pour s'adapter au nombre d'options "
5731
  "spécifié."
5732
 
5733
+ #: includes/fields/class-fieldtypes-select.php:86
5734
+ #: includes/fields/class-fieldtypes-select.php:133
 
 
 
 
 
5735
  msgctxt "form-fields-api category-select"
5736
  msgid "-- Choose One --"
5737
  msgstr "-- Choisissez --"
5738
 
5739
+ #: includes/fields/class-fieldtypes-select.php:92
5740
+ msgctxt "form-fields-api category-select"
5741
+ msgid "-- Choose Terms --"
5742
+ msgstr "-- Choisissez les conditions --"
5743
+
5744
+ #: includes/fields/class-fieldtypes-select.php:143
5745
  msgctxt "form-fields-api select"
5746
  msgid "— None —"
5747
  msgstr "— Aucun —"
6365
  msgid "Recurring Fee Management"
6366
  msgstr "Gestion des frais récurrents"
6367
 
6368
+ #: includes/views/submit_listing.php:270
6369
  msgctxt "templates"
6370
  msgid ""
6371
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6374
  "<b>Aperçu non disponible</b>. Avez-vous coché le paramètre \"Désactiver la "
6375
  "soumission de l'annonce publique ?\" ?"
6376
 
6377
+ #: includes/views/submit_listing.php:272
6378
  msgctxt "templates"
6379
  msgid "View not available."
6380
  msgstr "Emplacements d'image disponibles."
6381
 
6382
+ #: includes/views/submit_listing.php:784
6383
  msgctxt "templates"
6384
  msgid "Please agree to the Terms and Conditions."
6385
  msgstr "Veuillez accepter les conditions d'utilisation."
6386
 
6387
+ #: includes/views/submit_listing.php:792
6388
  msgctxt "templates"
6389
  msgid "Terms and Conditions:"
6390
  msgstr "Conditions d'utilisation:"
6391
 
6392
+ #: includes/views/submit_listing.php:801
6393
  msgctxt "templates"
6394
  msgid "I agree to the <a>Terms and Conditions</a>"
6395
  msgstr "J'accepte <a> Conditions générales </a>"
7081
  "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
7082
  "publiée."
7083
 
7084
+ #: includes/views/submit_listing.php:563
7085
  msgctxt "listing submit"
7086
  msgid ""
7087
  "Something went wrong. Please check the form for errors, correct them and "
8016
  "Vous devez choisir les catégories d'abord, puis ensuite voir les plans "
8017
  "tarifaires disponibles pour votre liste."
8018
 
8019
+ #: templates/submit-listing-plan-selection.tpl.php:25
8020
+ #, fuzzy
8021
+ msgctxt "submit"
8022
+ msgid "Your plan's details:"
8023
+ msgstr "Détails des plans"
8024
+
8025
+ #: templates/submit-listing-plan-selection.tpl.php:37
8026
  msgctxt "submit"
8027
  msgid "Please choose a fee plan for your listing:"
8028
  msgstr "Merci de choisir un tarif pour votre annonce:"
8994
  #~ "Vous êtes sur le point de renouveler votre annonce \"%s\" publication "
8995
  #~ "dans la catégorie \"%s\"."
8996
 
 
 
 
 
8997
  #~ msgctxt "templates"
8998
  #~ msgid "Delete Image"
8999
  #~ msgstr "Effacer l'image"
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: 2017-11-16 23:46:36+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"
@@ -2359,19 +2359,19 @@ msgstr ""
2359
 
2360
  #: includes/fields/class-fieldtypes-checkbox.php:74
2361
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2362
- #: includes/fields/class-fieldtypes-select.php:173
2363
  msgctxt "form-fields admin"
2364
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2365
  msgstr ""
2366
 
2367
  #: includes/fields/class-fieldtypes-checkbox.php:95
2368
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2369
- #: includes/fields/class-fieldtypes-select.php:201
2370
  msgctxt "form-fields admin"
2371
  msgid "Field list of options is required."
2372
  msgstr ""
2373
 
2374
- #: includes/fields/class-fieldtypes-select.php:184
2375
  msgctxt "form-fields admin"
2376
  msgid "Allow empty selection on search?"
2377
  msgstr ""
@@ -5066,7 +5066,7 @@ msgctxt "rss feed"
5066
  msgid "%s Feed"
5067
  msgstr ""
5068
 
5069
- #: includes/class-meta.php:155 includes/views/submit_listing.php:17
5070
  msgctxt "views"
5071
  msgid "Submit A Listing"
5072
  msgstr "Registratie Creëren"
@@ -5187,23 +5187,23 @@ msgctxt "submit listing"
5187
  msgid "Listing submitted by admin. Payment skipped."
5188
  msgstr ""
5189
 
5190
- #: includes/views/submit_listing.php:42
5191
  msgctxt "submit listing"
5192
  msgid "Click this field to add categories"
5193
  msgstr ""
5194
 
5195
- #: includes/views/submit_listing.php:43 templates/submit-listing.tpl.php:23
5196
  #, fuzzy
5197
  msgctxt "submit listing"
5198
  msgid "Complete Listing"
5199
  msgstr "Registratie verwijderen"
5200
 
5201
- #: includes/views/submit_listing.php:44 templates/submit-listing.tpl.php:28
5202
  msgctxt "submit listing"
5203
  msgid "Continue to Payment"
5204
  msgstr ""
5205
 
5206
- #: includes/views/submit_listing.php:86
5207
  msgctxt "submit listing"
5208
  msgid ""
5209
  "This listing can't be edited at this time because it has no fee plan "
@@ -5211,14 +5211,14 @@ msgid ""
5211
  "to a fee plan."
5212
  msgstr ""
5213
 
5214
- #: includes/views/submit_listing.php:91
5215
  msgctxt "submit listing"
5216
  msgid ""
5217
  "This listing can't be edited at this time. Please try again later or contact "
5218
  "the admin if the problem persists."
5219
  msgstr ""
5220
 
5221
- #: includes/views/submit_listing.php:112
5222
  #, fuzzy
5223
  msgctxt "submit listing"
5224
  msgid "You're logged in as admin, payment will be skipped."
@@ -5226,109 +5226,120 @@ msgstr ""
5226
  "Je bent ingelogd als een beheerder (admin). De betaalstappen worden "
5227
  "overgeslagen."
5228
 
5229
- #: includes/views/submit_listing.php:278
 
 
 
 
 
 
5230
  #, fuzzy
5231
  msgctxt "submit listing"
5232
  msgid "Category & plan selection"
5233
  msgstr "categorie selectie"
5234
 
5235
- #: includes/views/submit_listing.php:283
5236
  #, fuzzy
5237
  msgctxt "submit listing"
5238
  msgid "Listing Information"
5239
  msgstr "Registratie informatie"
5240
 
5241
- #: includes/views/submit_listing.php:287
5242
  #, fuzzy
5243
  msgctxt "submit listing"
5244
  msgid "Listing Images"
5245
  msgstr "Beelden bij de registratie"
5246
 
5247
- #: includes/views/submit_listing.php:293
5248
  msgctxt "submit listing"
5249
  msgid "Account Creation"
5250
  msgstr ""
5251
 
5252
- #: includes/views/submit_listing.php:299
5253
  #, fuzzy
5254
  msgctxt "submit listing"
5255
  msgid "Terms and Conditions"
5256
  msgstr "Voorwaarden en condities"
5257
 
5258
- #: includes/views/submit_listing.php:336
5259
  msgctxt "submit listing"
5260
  msgid "(Please choose a fee plan above)"
5261
  msgstr ""
5262
 
5263
- #: includes/views/submit_listing.php:384
5264
  msgctxt "submit listing"
5265
  msgid "Can not submit a listing at this moment. Please try again later."
5266
  msgstr ""
5267
 
5268
- #: includes/views/submit_listing.php:394
5269
  msgctxt "submit listing"
5270
  msgid "Please select a category."
5271
  msgstr ""
5272
 
5273
- #: includes/views/submit_listing.php:413
 
 
 
 
 
5274
  msgctxt "submit listing"
5275
  msgid "Please choose a valid category for your plan."
5276
  msgstr ""
5277
 
5278
- #: includes/views/submit_listing.php:415
5279
  msgctxt "submit listing"
5280
  msgid "Please choose a valid fee plan for your category selection."
5281
  msgstr ""
5282
 
5283
- #: includes/views/submit_listing.php:608
5284
  msgctxt "submit listing"
5285
  msgid "Please enter your desired username."
5286
  msgstr ""
5287
 
5288
- #: includes/views/submit_listing.php:613
5289
  msgctxt "submit listing"
5290
  msgid "Please enter the e-mail for your new account."
5291
  msgstr ""
5292
 
5293
- #: includes/views/submit_listing.php:618
5294
  msgctxt "submit listing"
5295
  msgid "Please enter the password for your new account."
5296
  msgstr ""
5297
 
5298
- #: includes/views/submit_listing.php:628
5299
  msgctxt "submit listing"
5300
  msgid "The username you chose is already in use. Please use a different one."
5301
  msgstr ""
5302
 
5303
- #: includes/views/submit_listing.php:633
5304
  msgctxt "submit listing"
5305
  msgid "The e-mail address you chose for your account is already in use."
5306
  msgstr ""
5307
 
5308
- #: includes/views/submit_listing.php:648
5309
  msgctxt "submit listing"
5310
  msgid "Create a user account on this site"
5311
  msgstr ""
5312
 
5313
- #: includes/views/submit_listing.php:655
5314
  msgctxt "submit listing"
5315
  msgid ""
5316
  "You need to create an account on the site. Please fill out the form below."
5317
  msgstr ""
5318
 
5319
- #: includes/views/submit_listing.php:661
5320
  #, fuzzy
5321
  msgctxt "submit listing"
5322
  msgid "Username:"
5323
  msgstr "Gebruiker"
5324
 
5325
- #: includes/views/submit_listing.php:670
5326
  #, fuzzy
5327
  msgctxt "submit listing"
5328
  msgid "Email:"
5329
  msgstr "Jouw email"
5330
 
5331
- #: includes/views/submit_listing.php:679
5332
  msgctxt "submit listing"
5333
  msgid "Password:"
5334
  msgstr ""
@@ -5640,18 +5651,18 @@ msgid ""
5640
  "of options."
5641
  msgstr ""
5642
 
5643
- #: includes/fields/class-fieldtypes-select.php:73
5644
- msgctxt "form-fields-api category-select"
5645
- msgid "-- Choose Terms --"
5646
- msgstr "-- Kies termen --"
5647
-
5648
- #: includes/fields/class-fieldtypes-select.php:73
5649
- #: includes/fields/class-fieldtypes-select.php:120
5650
  msgctxt "form-fields-api category-select"
5651
  msgid "-- Choose One --"
5652
  msgstr "-- =Kies er een --"
5653
 
5654
- #: includes/fields/class-fieldtypes-select.php:130
 
 
 
 
 
5655
  msgctxt "form-fields-api select"
5656
  msgid "— None —"
5657
  msgstr "— Geen —"
@@ -6239,29 +6250,29 @@ msgctxt "templates"
6239
  msgid "Recurring Fee Management"
6240
  msgstr ""
6241
 
6242
- #: includes/views/submit_listing.php:234
6243
  msgctxt "templates"
6244
  msgid ""
6245
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6246
  "Submission?\" setting checked?"
6247
  msgstr ""
6248
 
6249
- #: includes/views/submit_listing.php:236
6250
  msgctxt "templates"
6251
  msgid "View not available."
6252
  msgstr ""
6253
 
6254
- #: includes/views/submit_listing.php:717
6255
  msgctxt "templates"
6256
  msgid "Please agree to the Terms and Conditions."
6257
  msgstr "Ga s.v.p. akkoord met de voorwaarden"
6258
 
6259
- #: includes/views/submit_listing.php:725
6260
  msgctxt "templates"
6261
  msgid "Terms and Conditions:"
6262
  msgstr "Voorwaarden"
6263
 
6264
- #: includes/views/submit_listing.php:734
6265
  #, fuzzy
6266
  msgctxt "templates"
6267
  msgid "I agree to the <a>Terms and Conditions</a>"
@@ -6910,7 +6921,7 @@ msgid "This is just a preview. The listing has not been published yet."
6910
  msgstr ""
6911
  "Dit is alleen een voorvertoning. De registratie is nog niet gepubliceerd."
6912
 
6913
- #: includes/views/submit_listing.php:496
6914
  msgctxt "listing submit"
6915
  msgid ""
6916
  "Something went wrong. Please check the form for errors, correct them and "
@@ -7805,7 +7816,13 @@ msgid ""
7805
  "fee plans for your listing."
7806
  msgstr ""
7807
 
7808
- #: templates/submit-listing-plan-selection.tpl.php:24
 
 
 
 
 
 
7809
  msgctxt "submit"
7810
  msgid "Please choose a fee plan for your listing:"
7811
  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: 2017-11-21 22:20:29+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"
2359
 
2360
  #: includes/fields/class-fieldtypes-checkbox.php:74
2361
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2362
+ #: includes/fields/class-fieldtypes-select.php:186
2363
  msgctxt "form-fields admin"
2364
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2365
  msgstr ""
2366
 
2367
  #: includes/fields/class-fieldtypes-checkbox.php:95
2368
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2369
+ #: includes/fields/class-fieldtypes-select.php:214
2370
  msgctxt "form-fields admin"
2371
  msgid "Field list of options is required."
2372
  msgstr ""
2373
 
2374
+ #: includes/fields/class-fieldtypes-select.php:197
2375
  msgctxt "form-fields admin"
2376
  msgid "Allow empty selection on search?"
2377
  msgstr ""
5066
  msgid "%s Feed"
5067
  msgstr ""
5068
 
5069
+ #: includes/class-meta.php:155 includes/views/submit_listing.php:22
5070
  msgctxt "views"
5071
  msgid "Submit A Listing"
5072
  msgstr "Registratie Creëren"
5187
  msgid "Listing submitted by admin. Payment skipped."
5188
  msgstr ""
5189
 
5190
+ #: includes/views/submit_listing.php:47
5191
  msgctxt "submit listing"
5192
  msgid "Click this field to add categories"
5193
  msgstr ""
5194
 
5195
+ #: includes/views/submit_listing.php:48 templates/submit-listing.tpl.php:23
5196
  #, fuzzy
5197
  msgctxt "submit listing"
5198
  msgid "Complete Listing"
5199
  msgstr "Registratie verwijderen"
5200
 
5201
+ #: includes/views/submit_listing.php:49 templates/submit-listing.tpl.php:28
5202
  msgctxt "submit listing"
5203
  msgid "Continue to Payment"
5204
  msgstr ""
5205
 
5206
+ #: includes/views/submit_listing.php:91
5207
  msgctxt "submit listing"
5208
  msgid ""
5209
  "This listing can't be edited at this time because it has no fee plan "
5211
  "to a fee plan."
5212
  msgstr ""
5213
 
5214
+ #: includes/views/submit_listing.php:96
5215
  msgctxt "submit listing"
5216
  msgid ""
5217
  "This listing can't be edited at this time. Please try again later or contact "
5218
  "the admin if the problem persists."
5219
  msgstr ""
5220
 
5221
+ #: includes/views/submit_listing.php:118
5222
  #, fuzzy
5223
  msgctxt "submit listing"
5224
  msgid "You're logged in as admin, payment will be skipped."
5226
  "Je bent ingelogd als een beheerder (admin). De betaalstappen worden "
5227
  "overgeslagen."
5228
 
5229
+ #: includes/views/submit_listing.php:314
5230
+ #, fuzzy
5231
+ msgctxt "submit listing"
5232
+ msgid "Category selection"
5233
+ msgstr "categorie selectie"
5234
+
5235
+ #: includes/views/submit_listing.php:314
5236
  #, fuzzy
5237
  msgctxt "submit listing"
5238
  msgid "Category & plan selection"
5239
  msgstr "categorie selectie"
5240
 
5241
+ #: includes/views/submit_listing.php:319
5242
  #, fuzzy
5243
  msgctxt "submit listing"
5244
  msgid "Listing Information"
5245
  msgstr "Registratie informatie"
5246
 
5247
+ #: includes/views/submit_listing.php:323
5248
  #, fuzzy
5249
  msgctxt "submit listing"
5250
  msgid "Listing Images"
5251
  msgstr "Beelden bij de registratie"
5252
 
5253
+ #: includes/views/submit_listing.php:329
5254
  msgctxt "submit listing"
5255
  msgid "Account Creation"
5256
  msgstr ""
5257
 
5258
+ #: includes/views/submit_listing.php:335
5259
  #, fuzzy
5260
  msgctxt "submit listing"
5261
  msgid "Terms and Conditions"
5262
  msgstr "Voorwaarden en condities"
5263
 
5264
+ #: includes/views/submit_listing.php:375
5265
  msgctxt "submit listing"
5266
  msgid "(Please choose a fee plan above)"
5267
  msgstr ""
5268
 
5269
+ #: includes/views/submit_listing.php:426
5270
  msgctxt "submit listing"
5271
  msgid "Can not submit a listing at this moment. Please try again later."
5272
  msgstr ""
5273
 
5274
+ #: includes/views/submit_listing.php:436
5275
  msgctxt "submit listing"
5276
  msgid "Please select a category."
5277
  msgstr ""
5278
 
5279
+ #: includes/views/submit_listing.php:449
5280
+ msgctxt "submit listing"
5281
+ msgid "Please select a category for your listing."
5282
+ msgstr ""
5283
+
5284
+ #: includes/views/submit_listing.php:469
5285
  msgctxt "submit listing"
5286
  msgid "Please choose a valid category for your plan."
5287
  msgstr ""
5288
 
5289
+ #: includes/views/submit_listing.php:471
5290
  msgctxt "submit listing"
5291
  msgid "Please choose a valid fee plan for your category selection."
5292
  msgstr ""
5293
 
5294
+ #: includes/views/submit_listing.php:675
5295
  msgctxt "submit listing"
5296
  msgid "Please enter your desired username."
5297
  msgstr ""
5298
 
5299
+ #: includes/views/submit_listing.php:680
5300
  msgctxt "submit listing"
5301
  msgid "Please enter the e-mail for your new account."
5302
  msgstr ""
5303
 
5304
+ #: includes/views/submit_listing.php:685
5305
  msgctxt "submit listing"
5306
  msgid "Please enter the password for your new account."
5307
  msgstr ""
5308
 
5309
+ #: includes/views/submit_listing.php:695
5310
  msgctxt "submit listing"
5311
  msgid "The username you chose is already in use. Please use a different one."
5312
  msgstr ""
5313
 
5314
+ #: includes/views/submit_listing.php:700
5315
  msgctxt "submit listing"
5316
  msgid "The e-mail address you chose for your account is already in use."
5317
  msgstr ""
5318
 
5319
+ #: includes/views/submit_listing.php:715
5320
  msgctxt "submit listing"
5321
  msgid "Create a user account on this site"
5322
  msgstr ""
5323
 
5324
+ #: includes/views/submit_listing.php:722
5325
  msgctxt "submit listing"
5326
  msgid ""
5327
  "You need to create an account on the site. Please fill out the form below."
5328
  msgstr ""
5329
 
5330
+ #: includes/views/submit_listing.php:728
5331
  #, fuzzy
5332
  msgctxt "submit listing"
5333
  msgid "Username:"
5334
  msgstr "Gebruiker"
5335
 
5336
+ #: includes/views/submit_listing.php:737
5337
  #, fuzzy
5338
  msgctxt "submit listing"
5339
  msgid "Email:"
5340
  msgstr "Jouw email"
5341
 
5342
+ #: includes/views/submit_listing.php:746
5343
  msgctxt "submit listing"
5344
  msgid "Password:"
5345
  msgstr ""
5651
  "of options."
5652
  msgstr ""
5653
 
5654
+ #: includes/fields/class-fieldtypes-select.php:86
5655
+ #: includes/fields/class-fieldtypes-select.php:133
 
 
 
 
 
5656
  msgctxt "form-fields-api category-select"
5657
  msgid "-- Choose One --"
5658
  msgstr "-- =Kies er een --"
5659
 
5660
+ #: includes/fields/class-fieldtypes-select.php:92
5661
+ msgctxt "form-fields-api category-select"
5662
+ msgid "-- Choose Terms --"
5663
+ msgstr "-- Kies termen --"
5664
+
5665
+ #: includes/fields/class-fieldtypes-select.php:143
5666
  msgctxt "form-fields-api select"
5667
  msgid "— None —"
5668
  msgstr "— Geen —"
6250
  msgid "Recurring Fee Management"
6251
  msgstr ""
6252
 
6253
+ #: includes/views/submit_listing.php:270
6254
  msgctxt "templates"
6255
  msgid ""
6256
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6257
  "Submission?\" setting checked?"
6258
  msgstr ""
6259
 
6260
+ #: includes/views/submit_listing.php:272
6261
  msgctxt "templates"
6262
  msgid "View not available."
6263
  msgstr ""
6264
 
6265
+ #: includes/views/submit_listing.php:784
6266
  msgctxt "templates"
6267
  msgid "Please agree to the Terms and Conditions."
6268
  msgstr "Ga s.v.p. akkoord met de voorwaarden"
6269
 
6270
+ #: includes/views/submit_listing.php:792
6271
  msgctxt "templates"
6272
  msgid "Terms and Conditions:"
6273
  msgstr "Voorwaarden"
6274
 
6275
+ #: includes/views/submit_listing.php:801
6276
  #, fuzzy
6277
  msgctxt "templates"
6278
  msgid "I agree to the <a>Terms and Conditions</a>"
6921
  msgstr ""
6922
  "Dit is alleen een voorvertoning. De registratie is nog niet gepubliceerd."
6923
 
6924
+ #: includes/views/submit_listing.php:563
6925
  msgctxt "listing submit"
6926
  msgid ""
6927
  "Something went wrong. Please check the form for errors, correct them and "
7816
  "fee plans for your listing."
7817
  msgstr ""
7818
 
7819
+ #: templates/submit-listing-plan-selection.tpl.php:25
7820
+ #, fuzzy
7821
+ msgctxt "submit"
7822
+ msgid "Your plan's details:"
7823
+ msgstr "Details kosten"
7824
+
7825
+ #: templates/submit-listing-plan-selection.tpl.php:37
7826
  msgctxt "submit"
7827
  msgid "Please choose a fee plan for your listing:"
7828
  msgstr ""
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: 2017-11-16 23:46:36+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"
@@ -2832,7 +2832,7 @@ msgstr "Ustawienia zapisane"
2832
  # @ WPBDM
2833
  #: includes/fields/class-fieldtypes-checkbox.php:74
2834
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2835
- #: includes/fields/class-fieldtypes-select.php:173
2836
  msgctxt "form-fields admin"
2837
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2838
  msgstr "Opcje Pola (aby wybrać listy, przycisk radio i czeklisty)."
@@ -2840,13 +2840,13 @@ msgstr "Opcje Pola (aby wybrać listy, przycisk radio i czeklisty)."
2840
  # @ WPBDM
2841
  #: includes/fields/class-fieldtypes-checkbox.php:95
2842
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2843
- #: includes/fields/class-fieldtypes-select.php:201
2844
  msgctxt "form-fields admin"
2845
  msgid "Field list of options is required."
2846
  msgstr "Pole listy opcji wymagane."
2847
 
2848
  # @ WPBDM
2849
- #: includes/fields/class-fieldtypes-select.php:184
2850
  msgctxt "form-fields admin"
2851
  msgid "Allow empty selection on search?"
2852
  msgstr "Zezwolić na wyszukiwanie pustych pól wyborów?"
@@ -5993,7 +5993,7 @@ msgid "%s Feed"
5993
  msgstr "%s RSS"
5994
 
5995
  # @ WPBDM
5996
- #: includes/class-meta.php:155 includes/views/submit_listing.php:17
5997
  msgctxt "views"
5998
  msgid "Submit A Listing"
5999
  msgstr "Dodaj Firmę"
@@ -6141,26 +6141,26 @@ msgctxt "submit listing"
6141
  msgid "Listing submitted by admin. Payment skipped."
6142
  msgstr "Prześlij ofertę"
6143
 
6144
- #: includes/views/submit_listing.php:42
6145
  msgctxt "submit listing"
6146
  msgid "Click this field to add categories"
6147
  msgstr ""
6148
 
6149
  # @ WPBDM
6150
- #: includes/views/submit_listing.php:43 templates/submit-listing.tpl.php:23
6151
  #, fuzzy
6152
  msgctxt "submit listing"
6153
  msgid "Complete Listing"
6154
  msgstr "Usuń Ofertę"
6155
 
6156
  # @ WPBDM
6157
- #: includes/views/submit_listing.php:44 templates/submit-listing.tpl.php:28
6158
  #, fuzzy
6159
  msgctxt "submit listing"
6160
  msgid "Continue to Payment"
6161
  msgstr "Inicjacja Płatności"
6162
 
6163
- #: includes/views/submit_listing.php:86
6164
  msgctxt "submit listing"
6165
  msgid ""
6166
  "This listing can't be edited at this time because it has no fee plan "
@@ -6168,7 +6168,7 @@ msgid ""
6168
  "to a fee plan."
6169
  msgstr ""
6170
 
6171
- #: includes/views/submit_listing.php:91
6172
  msgctxt "submit listing"
6173
  msgid ""
6174
  "This listing can't be edited at this time. Please try again later or contact "
@@ -6176,7 +6176,7 @@ msgid ""
6176
  msgstr ""
6177
 
6178
  # @ WPBDM
6179
- #: includes/views/submit_listing.php:112
6180
  #, fuzzy
6181
  msgctxt "submit listing"
6182
  msgid "You're logged in as admin, payment will be skipped."
@@ -6185,45 +6185,52 @@ msgstr ""
6185
  "pominięte."
6186
 
6187
  # @ WPBDM
6188
- #: includes/views/submit_listing.php:278
 
 
 
 
 
 
 
6189
  #, fuzzy
6190
  msgctxt "submit listing"
6191
  msgid "Category & plan selection"
6192
  msgstr "Wybór Kategorii"
6193
 
6194
  # @ WPBDM
6195
- #: includes/views/submit_listing.php:283
6196
  #, fuzzy
6197
  msgctxt "submit listing"
6198
  msgid "Listing Information"
6199
  msgstr "Informacje o firmie"
6200
 
6201
  # @ WPBDM
6202
- #: includes/views/submit_listing.php:287
6203
  #, fuzzy
6204
  msgctxt "submit listing"
6205
  msgid "Listing Images"
6206
  msgstr "Obrazy"
6207
 
6208
- #: includes/views/submit_listing.php:293
6209
  msgctxt "submit listing"
6210
  msgid "Account Creation"
6211
  msgstr ""
6212
 
6213
  # @ WPBDM
6214
- #: includes/views/submit_listing.php:299
6215
  #, fuzzy
6216
  msgctxt "submit listing"
6217
  msgid "Terms and Conditions"
6218
  msgstr "Warunki i regulamin korzystania z serwisu."
6219
 
6220
- #: includes/views/submit_listing.php:336
6221
  msgctxt "submit listing"
6222
  msgid "(Please choose a fee plan above)"
6223
  msgstr ""
6224
 
6225
  # @ WPBDM
6226
- #: includes/views/submit_listing.php:384
6227
  #, fuzzy
6228
  msgctxt "submit listing"
6229
  msgid "Can not submit a listing at this moment. Please try again later."
@@ -6232,77 +6239,84 @@ msgstr ""
6232
  "później."
6233
 
6234
  # @ WPBDM
6235
- #: includes/views/submit_listing.php:394
6236
  #, fuzzy
6237
  msgctxt "submit listing"
6238
  msgid "Please select a category."
6239
  msgstr "Wybierz abonament dla tegj kategori \"%s\"."
6240
 
6241
- #: includes/views/submit_listing.php:413
 
 
 
 
 
 
 
6242
  msgctxt "submit listing"
6243
  msgid "Please choose a valid category for your plan."
6244
  msgstr ""
6245
 
6246
  # @ WPBDM
6247
- #: includes/views/submit_listing.php:415
6248
  #, fuzzy
6249
  msgctxt "submit listing"
6250
  msgid "Please choose a valid fee plan for your category selection."
6251
  msgstr "Wybierz abonament dla tegj kategori \"%s\"."
6252
 
6253
  # @ WPBDM
6254
- #: includes/views/submit_listing.php:608
6255
  #, fuzzy
6256
  msgctxt "submit listing"
6257
  msgid "Please enter your desired username."
6258
  msgstr "Proszę wprowadzić Imię"
6259
 
6260
  # @ WPBDM
6261
- #: includes/views/submit_listing.php:613
6262
  #, fuzzy
6263
  msgctxt "submit listing"
6264
  msgid "Please enter the e-mail for your new account."
6265
  msgstr "Proszę wprowadzić Imię"
6266
 
6267
- #: includes/views/submit_listing.php:618
6268
  msgctxt "submit listing"
6269
  msgid "Please enter the password for your new account."
6270
  msgstr ""
6271
 
6272
- #: includes/views/submit_listing.php:628
6273
  msgctxt "submit listing"
6274
  msgid "The username you chose is already in use. Please use a different one."
6275
  msgstr ""
6276
 
6277
- #: includes/views/submit_listing.php:633
6278
  msgctxt "submit listing"
6279
  msgid "The e-mail address you chose for your account is already in use."
6280
  msgstr ""
6281
 
6282
- #: includes/views/submit_listing.php:648
6283
  msgctxt "submit listing"
6284
  msgid "Create a user account on this site"
6285
  msgstr ""
6286
 
6287
- #: includes/views/submit_listing.php:655
6288
  msgctxt "submit listing"
6289
  msgid ""
6290
  "You need to create an account on the site. Please fill out the form below."
6291
  msgstr ""
6292
 
6293
- #: includes/views/submit_listing.php:661
6294
  msgctxt "submit listing"
6295
  msgid "Username:"
6296
  msgstr ""
6297
 
6298
  # @ WPBDM
6299
- #: includes/views/submit_listing.php:670
6300
  #, fuzzy
6301
  msgctxt "submit listing"
6302
  msgid "Email:"
6303
  msgstr "E-Mail: %s"
6304
 
6305
- #: includes/views/submit_listing.php:679
6306
  msgctxt "submit listing"
6307
  msgid "Password:"
6308
  msgstr ""
@@ -6672,19 +6686,19 @@ msgid ""
6672
  msgstr ""
6673
 
6674
  # @ WPBDM
6675
- #: includes/fields/class-fieldtypes-select.php:73
 
6676
  msgctxt "form-fields-api category-select"
6677
- msgid "-- Choose Terms --"
6678
- msgstr "-- Wybierz Warunki --"
6679
 
6680
  # @ WPBDM
6681
- #: includes/fields/class-fieldtypes-select.php:73
6682
- #: includes/fields/class-fieldtypes-select.php:120
6683
  msgctxt "form-fields-api category-select"
6684
- msgid "-- Choose One --"
6685
- msgstr "-- Wybierz Jeden --"
6686
 
6687
- #: includes/fields/class-fieldtypes-select.php:130
6688
  msgctxt "form-fields-api select"
6689
  msgid "— None —"
6690
  msgstr ""
@@ -7386,7 +7400,7 @@ msgctxt "templates"
7386
  msgid "Recurring Fee Management"
7387
  msgstr "Zarządzanie powtarzającymi sie Abonamentami"
7388
 
7389
- #: includes/views/submit_listing.php:234
7390
  msgctxt "templates"
7391
  msgid ""
7392
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
@@ -7394,25 +7408,25 @@ msgid ""
7394
  msgstr ""
7395
 
7396
  # @ WPBDM
7397
- #: includes/views/submit_listing.php:236
7398
  msgctxt "templates"
7399
  msgid "View not available."
7400
  msgstr "Dostępne miejsca na Obrazy:"
7401
 
7402
  # @ WPBDM
7403
- #: includes/views/submit_listing.php:717
7404
  msgctxt "templates"
7405
  msgid "Please agree to the Terms and Conditions."
7406
  msgstr "Musisz zaakceptować nasze warunki i regulamin korzystania z serwisu."
7407
 
7408
  # @ WPBDM
7409
- #: includes/views/submit_listing.php:725
7410
  msgctxt "templates"
7411
  msgid "Terms and Conditions:"
7412
  msgstr "Warunki i regulamin:"
7413
 
7414
  # @ WPBDM
7415
- #: includes/views/submit_listing.php:734
7416
  #, fuzzy
7417
  msgctxt "templates"
7418
  msgid "I agree to the <a>Terms and Conditions</a>"
@@ -8203,7 +8217,7 @@ msgctxt "preview"
8203
  msgid "This is just a preview. The listing has not been published yet."
8204
  msgstr "To jest tylko podgląd. Oferta nie została jeszcze opublikowana."
8205
 
8206
- #: includes/views/submit_listing.php:496
8207
  msgctxt "listing submit"
8208
  msgid ""
8209
  "Something went wrong. Please check the form for errors, correct them and "
@@ -9271,7 +9285,14 @@ msgid ""
9271
  "fee plans for your listing."
9272
  msgstr ""
9273
 
9274
- #: templates/submit-listing-plan-selection.tpl.php:24
 
 
 
 
 
 
 
9275
  msgctxt "submit"
9276
  msgid "Please choose a fee plan for your listing:"
9277
  msgstr ""
@@ -10412,11 +10433,6 @@ msgstr "Adres e-mail:"
10412
  #~ "\"%s\"."
10413
  #~ msgstr "Masz zamiar odnowić ofertę \"%s\" w kategorii \"%s\"."
10414
 
10415
- # @ WPBDM
10416
- #~ msgctxt "templates"
10417
- #~ msgid "Category Selection"
10418
- #~ msgstr "Wybór Kategorii"
10419
-
10420
  # @ WPBDM
10421
  #~ msgctxt "templates"
10422
  #~ msgid "Delete Image"
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: 2017-11-21 22:20:29+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"
2832
  # @ WPBDM
2833
  #: includes/fields/class-fieldtypes-checkbox.php:74
2834
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2835
+ #: includes/fields/class-fieldtypes-select.php:186
2836
  msgctxt "form-fields admin"
2837
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2838
  msgstr "Opcje Pola (aby wybrać listy, przycisk radio i czeklisty)."
2840
  # @ WPBDM
2841
  #: includes/fields/class-fieldtypes-checkbox.php:95
2842
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2843
+ #: includes/fields/class-fieldtypes-select.php:214
2844
  msgctxt "form-fields admin"
2845
  msgid "Field list of options is required."
2846
  msgstr "Pole listy opcji wymagane."
2847
 
2848
  # @ WPBDM
2849
+ #: includes/fields/class-fieldtypes-select.php:197
2850
  msgctxt "form-fields admin"
2851
  msgid "Allow empty selection on search?"
2852
  msgstr "Zezwolić na wyszukiwanie pustych pól wyborów?"
5993
  msgstr "%s RSS"
5994
 
5995
  # @ WPBDM
5996
+ #: includes/class-meta.php:155 includes/views/submit_listing.php:22
5997
  msgctxt "views"
5998
  msgid "Submit A Listing"
5999
  msgstr "Dodaj Firmę"
6141
  msgid "Listing submitted by admin. Payment skipped."
6142
  msgstr "Prześlij ofertę"
6143
 
6144
+ #: includes/views/submit_listing.php:47
6145
  msgctxt "submit listing"
6146
  msgid "Click this field to add categories"
6147
  msgstr ""
6148
 
6149
  # @ WPBDM
6150
+ #: includes/views/submit_listing.php:48 templates/submit-listing.tpl.php:23
6151
  #, fuzzy
6152
  msgctxt "submit listing"
6153
  msgid "Complete Listing"
6154
  msgstr "Usuń Ofertę"
6155
 
6156
  # @ WPBDM
6157
+ #: includes/views/submit_listing.php:49 templates/submit-listing.tpl.php:28
6158
  #, fuzzy
6159
  msgctxt "submit listing"
6160
  msgid "Continue to Payment"
6161
  msgstr "Inicjacja Płatności"
6162
 
6163
+ #: includes/views/submit_listing.php:91
6164
  msgctxt "submit listing"
6165
  msgid ""
6166
  "This listing can't be edited at this time because it has no fee plan "
6168
  "to a fee plan."
6169
  msgstr ""
6170
 
6171
+ #: includes/views/submit_listing.php:96
6172
  msgctxt "submit listing"
6173
  msgid ""
6174
  "This listing can't be edited at this time. Please try again later or contact "
6176
  msgstr ""
6177
 
6178
  # @ WPBDM
6179
+ #: includes/views/submit_listing.php:118
6180
  #, fuzzy
6181
  msgctxt "submit listing"
6182
  msgid "You're logged in as admin, payment will be skipped."
6185
  "pominięte."
6186
 
6187
  # @ WPBDM
6188
+ #: includes/views/submit_listing.php:314
6189
+ #, fuzzy
6190
+ msgctxt "submit listing"
6191
+ msgid "Category selection"
6192
+ msgstr "Wybór Kategorii"
6193
+
6194
+ # @ WPBDM
6195
+ #: includes/views/submit_listing.php:314
6196
  #, fuzzy
6197
  msgctxt "submit listing"
6198
  msgid "Category & plan selection"
6199
  msgstr "Wybór Kategorii"
6200
 
6201
  # @ WPBDM
6202
+ #: includes/views/submit_listing.php:319
6203
  #, fuzzy
6204
  msgctxt "submit listing"
6205
  msgid "Listing Information"
6206
  msgstr "Informacje o firmie"
6207
 
6208
  # @ WPBDM
6209
+ #: includes/views/submit_listing.php:323
6210
  #, fuzzy
6211
  msgctxt "submit listing"
6212
  msgid "Listing Images"
6213
  msgstr "Obrazy"
6214
 
6215
+ #: includes/views/submit_listing.php:329
6216
  msgctxt "submit listing"
6217
  msgid "Account Creation"
6218
  msgstr ""
6219
 
6220
  # @ WPBDM
6221
+ #: includes/views/submit_listing.php:335
6222
  #, fuzzy
6223
  msgctxt "submit listing"
6224
  msgid "Terms and Conditions"
6225
  msgstr "Warunki i regulamin korzystania z serwisu."
6226
 
6227
+ #: includes/views/submit_listing.php:375
6228
  msgctxt "submit listing"
6229
  msgid "(Please choose a fee plan above)"
6230
  msgstr ""
6231
 
6232
  # @ WPBDM
6233
+ #: includes/views/submit_listing.php:426
6234
  #, fuzzy
6235
  msgctxt "submit listing"
6236
  msgid "Can not submit a listing at this moment. Please try again later."
6239
  "później."
6240
 
6241
  # @ WPBDM
6242
+ #: includes/views/submit_listing.php:436
6243
  #, fuzzy
6244
  msgctxt "submit listing"
6245
  msgid "Please select a category."
6246
  msgstr "Wybierz abonament dla tegj kategori \"%s\"."
6247
 
6248
+ # @ WPBDM
6249
+ #: includes/views/submit_listing.php:449
6250
+ #, fuzzy
6251
+ msgctxt "submit listing"
6252
+ msgid "Please select a category for your listing."
6253
+ msgstr "Wybierz abonament dla tegj kategori \"%s\"."
6254
+
6255
+ #: includes/views/submit_listing.php:469
6256
  msgctxt "submit listing"
6257
  msgid "Please choose a valid category for your plan."
6258
  msgstr ""
6259
 
6260
  # @ WPBDM
6261
+ #: includes/views/submit_listing.php:471
6262
  #, fuzzy
6263
  msgctxt "submit listing"
6264
  msgid "Please choose a valid fee plan for your category selection."
6265
  msgstr "Wybierz abonament dla tegj kategori \"%s\"."
6266
 
6267
  # @ WPBDM
6268
+ #: includes/views/submit_listing.php:675
6269
  #, fuzzy
6270
  msgctxt "submit listing"
6271
  msgid "Please enter your desired username."
6272
  msgstr "Proszę wprowadzić Imię"
6273
 
6274
  # @ WPBDM
6275
+ #: includes/views/submit_listing.php:680
6276
  #, fuzzy
6277
  msgctxt "submit listing"
6278
  msgid "Please enter the e-mail for your new account."
6279
  msgstr "Proszę wprowadzić Imię"
6280
 
6281
+ #: includes/views/submit_listing.php:685
6282
  msgctxt "submit listing"
6283
  msgid "Please enter the password for your new account."
6284
  msgstr ""
6285
 
6286
+ #: includes/views/submit_listing.php:695
6287
  msgctxt "submit listing"
6288
  msgid "The username you chose is already in use. Please use a different one."
6289
  msgstr ""
6290
 
6291
+ #: includes/views/submit_listing.php:700
6292
  msgctxt "submit listing"
6293
  msgid "The e-mail address you chose for your account is already in use."
6294
  msgstr ""
6295
 
6296
+ #: includes/views/submit_listing.php:715
6297
  msgctxt "submit listing"
6298
  msgid "Create a user account on this site"
6299
  msgstr ""
6300
 
6301
+ #: includes/views/submit_listing.php:722
6302
  msgctxt "submit listing"
6303
  msgid ""
6304
  "You need to create an account on the site. Please fill out the form below."
6305
  msgstr ""
6306
 
6307
+ #: includes/views/submit_listing.php:728
6308
  msgctxt "submit listing"
6309
  msgid "Username:"
6310
  msgstr ""
6311
 
6312
  # @ WPBDM
6313
+ #: includes/views/submit_listing.php:737
6314
  #, fuzzy
6315
  msgctxt "submit listing"
6316
  msgid "Email:"
6317
  msgstr "E-Mail: %s"
6318
 
6319
+ #: includes/views/submit_listing.php:746
6320
  msgctxt "submit listing"
6321
  msgid "Password:"
6322
  msgstr ""
6686
  msgstr ""
6687
 
6688
  # @ WPBDM
6689
+ #: includes/fields/class-fieldtypes-select.php:86
6690
+ #: includes/fields/class-fieldtypes-select.php:133
6691
  msgctxt "form-fields-api category-select"
6692
+ msgid "-- Choose One --"
6693
+ msgstr "-- Wybierz Jeden --"
6694
 
6695
  # @ WPBDM
6696
+ #: includes/fields/class-fieldtypes-select.php:92
 
6697
  msgctxt "form-fields-api category-select"
6698
+ msgid "-- Choose Terms --"
6699
+ msgstr "-- Wybierz Warunki --"
6700
 
6701
+ #: includes/fields/class-fieldtypes-select.php:143
6702
  msgctxt "form-fields-api select"
6703
  msgid "— None —"
6704
  msgstr ""
7400
  msgid "Recurring Fee Management"
7401
  msgstr "Zarządzanie powtarzającymi sie Abonamentami"
7402
 
7403
+ #: includes/views/submit_listing.php:270
7404
  msgctxt "templates"
7405
  msgid ""
7406
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
7408
  msgstr ""
7409
 
7410
  # @ WPBDM
7411
+ #: includes/views/submit_listing.php:272
7412
  msgctxt "templates"
7413
  msgid "View not available."
7414
  msgstr "Dostępne miejsca na Obrazy:"
7415
 
7416
  # @ WPBDM
7417
+ #: includes/views/submit_listing.php:784
7418
  msgctxt "templates"
7419
  msgid "Please agree to the Terms and Conditions."
7420
  msgstr "Musisz zaakceptować nasze warunki i regulamin korzystania z serwisu."
7421
 
7422
  # @ WPBDM
7423
+ #: includes/views/submit_listing.php:792
7424
  msgctxt "templates"
7425
  msgid "Terms and Conditions:"
7426
  msgstr "Warunki i regulamin:"
7427
 
7428
  # @ WPBDM
7429
+ #: includes/views/submit_listing.php:801
7430
  #, fuzzy
7431
  msgctxt "templates"
7432
  msgid "I agree to the <a>Terms and Conditions</a>"
8217
  msgid "This is just a preview. The listing has not been published yet."
8218
  msgstr "To jest tylko podgląd. Oferta nie została jeszcze opublikowana."
8219
 
8220
+ #: includes/views/submit_listing.php:563
8221
  msgctxt "listing submit"
8222
  msgid ""
8223
  "Something went wrong. Please check the form for errors, correct them and "
9285
  "fee plans for your listing."
9286
  msgstr ""
9287
 
9288
+ # @ WPBDM
9289
+ #: templates/submit-listing-plan-selection.tpl.php:25
9290
+ #, fuzzy
9291
+ msgctxt "submit"
9292
+ msgid "Your plan's details:"
9293
+ msgstr "Szczegóły Planu"
9294
+
9295
+ #: templates/submit-listing-plan-selection.tpl.php:37
9296
  msgctxt "submit"
9297
  msgid "Please choose a fee plan for your listing:"
9298
  msgstr ""
10433
  #~ "\"%s\"."
10434
  #~ msgstr "Masz zamiar odnowić ofertę \"%s\" w kategorii \"%s\"."
10435
 
 
 
 
 
 
10436
  # @ WPBDM
10437
  #~ msgctxt "templates"
10438
  #~ msgid "Delete Image"
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: 2017-11-16 23:46:36+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"
@@ -2489,19 +2489,19 @@ msgstr "Метки сохранены."
2489
 
2490
  #: includes/fields/class-fieldtypes-checkbox.php:74
2491
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2492
- #: includes/fields/class-fieldtypes-select.php:173
2493
  msgctxt "form-fields admin"
2494
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2495
  msgstr "Параметры поля (для выбранных списков и кнопок)."
2496
 
2497
  #: includes/fields/class-fieldtypes-checkbox.php:95
2498
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2499
- #: includes/fields/class-fieldtypes-select.php:201
2500
  msgctxt "form-fields admin"
2501
  msgid "Field list of options is required."
2502
  msgstr "Список вариантов поля обязателен."
2503
 
2504
- #: includes/fields/class-fieldtypes-select.php:184
2505
  msgctxt "form-fields admin"
2506
  msgid "Allow empty selection on search?"
2507
  msgstr "Разрешить поиск по пустой строке?"
@@ -5317,7 +5317,7 @@ msgctxt "rss feed"
5317
  msgid "%s Feed"
5318
  msgstr "Лента %ы"
5319
 
5320
- #: includes/class-meta.php:155 includes/views/submit_listing.php:17
5321
  msgctxt "views"
5322
  msgid "Submit A Listing"
5323
  msgstr "Создать запись"
@@ -5450,24 +5450,24 @@ msgctxt "submit listing"
5450
  msgid "Listing submitted by admin. Payment skipped."
5451
  msgstr ""
5452
 
5453
- #: includes/views/submit_listing.php:42
5454
  msgctxt "submit listing"
5455
  msgid "Click this field to add categories"
5456
  msgstr ""
5457
 
5458
- #: includes/views/submit_listing.php:43 templates/submit-listing.tpl.php:23
5459
  #, fuzzy
5460
  msgctxt "submit listing"
5461
  msgid "Complete Listing"
5462
  msgstr "Удалить запись"
5463
 
5464
- #: includes/views/submit_listing.php:44 templates/submit-listing.tpl.php:28
5465
  #, fuzzy
5466
  msgctxt "submit listing"
5467
  msgid "Continue to Payment"
5468
  msgstr "Начальный платёж"
5469
 
5470
- #: includes/views/submit_listing.php:86
5471
  msgctxt "submit listing"
5472
  msgid ""
5473
  "This listing can't be edited at this time because it has no fee plan "
@@ -5475,54 +5475,60 @@ msgid ""
5475
  "to a fee plan."
5476
  msgstr ""
5477
 
5478
- #: includes/views/submit_listing.php:91
5479
  msgctxt "submit listing"
5480
  msgid ""
5481
  "This listing can't be edited at this time. Please try again later or contact "
5482
  "the admin if the problem persists."
5483
  msgstr ""
5484
 
5485
- #: includes/views/submit_listing.php:112
5486
  #, fuzzy
5487
  msgctxt "submit listing"
5488
  msgid "You're logged in as admin, payment will be skipped."
5489
  msgstr "Вы вошли на сайт как Администратор. Все шаги оплаты будут пропущены."
5490
 
5491
- #: includes/views/submit_listing.php:278
 
 
 
 
 
 
5492
  #, fuzzy
5493
  msgctxt "submit listing"
5494
  msgid "Category & plan selection"
5495
  msgstr "Выбор рубрики"
5496
 
5497
- #: includes/views/submit_listing.php:283
5498
  #, fuzzy
5499
  msgctxt "submit listing"
5500
  msgid "Listing Information"
5501
  msgstr "Информация о бизнесе"
5502
 
5503
- #: includes/views/submit_listing.php:287
5504
  #, fuzzy
5505
  msgctxt "submit listing"
5506
  msgid "Listing Images"
5507
  msgstr "Изображение записи"
5508
 
5509
- #: includes/views/submit_listing.php:293
5510
  msgctxt "submit listing"
5511
  msgid "Account Creation"
5512
  msgstr ""
5513
 
5514
- #: includes/views/submit_listing.php:299
5515
  #, fuzzy
5516
  msgctxt "submit listing"
5517
  msgid "Terms and Conditions"
5518
  msgstr "Условия и положения"
5519
 
5520
- #: includes/views/submit_listing.php:336
5521
  msgctxt "submit listing"
5522
  msgid "(Please choose a fee plan above)"
5523
  msgstr ""
5524
 
5525
- #: includes/views/submit_listing.php:384
5526
  #, fuzzy
5527
  msgctxt "submit listing"
5528
  msgid "Can not submit a listing at this moment. Please try again later."
@@ -5530,73 +5536,79 @@ msgstr ""
5530
  "В настоящее время вы не можем провести Вашу оплату. Попробуйте позже "
5531
  "пожалуйста."
5532
 
5533
- #: includes/views/submit_listing.php:394
5534
  #, fuzzy
5535
  msgctxt "submit listing"
5536
  msgid "Please select a category."
5537
  msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
5538
 
5539
- #: includes/views/submit_listing.php:413
 
 
 
 
 
 
5540
  msgctxt "submit listing"
5541
  msgid "Please choose a valid category for your plan."
5542
  msgstr ""
5543
 
5544
- #: includes/views/submit_listing.php:415
5545
  #, fuzzy
5546
  msgctxt "submit listing"
5547
  msgid "Please choose a valid fee plan for your category selection."
5548
  msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
5549
 
5550
- #: includes/views/submit_listing.php:608
5551
  #, fuzzy
5552
  msgctxt "submit listing"
5553
  msgid "Please enter your desired username."
5554
  msgstr "Пожалуйста введите Ваше имя."
5555
 
5556
- #: includes/views/submit_listing.php:613
5557
  #, fuzzy
5558
  msgctxt "submit listing"
5559
  msgid "Please enter the e-mail for your new account."
5560
  msgstr "Пожалуйста введите Ваше имя."
5561
 
5562
- #: includes/views/submit_listing.php:618
5563
  msgctxt "submit listing"
5564
  msgid "Please enter the password for your new account."
5565
  msgstr ""
5566
 
5567
- #: includes/views/submit_listing.php:628
5568
  msgctxt "submit listing"
5569
  msgid "The username you chose is already in use. Please use a different one."
5570
  msgstr ""
5571
 
5572
- #: includes/views/submit_listing.php:633
5573
  msgctxt "submit listing"
5574
  msgid "The e-mail address you chose for your account is already in use."
5575
  msgstr ""
5576
 
5577
- #: includes/views/submit_listing.php:648
5578
  msgctxt "submit listing"
5579
  msgid "Create a user account on this site"
5580
  msgstr ""
5581
 
5582
- #: includes/views/submit_listing.php:655
5583
  msgctxt "submit listing"
5584
  msgid ""
5585
  "You need to create an account on the site. Please fill out the form below."
5586
  msgstr ""
5587
 
5588
- #: includes/views/submit_listing.php:661
5589
  msgctxt "submit listing"
5590
  msgid "Username:"
5591
  msgstr ""
5592
 
5593
- #: includes/views/submit_listing.php:670
5594
  #, fuzzy
5595
  msgctxt "submit listing"
5596
  msgid "Email:"
5597
  msgstr "Адрес: %s"
5598
 
5599
- #: includes/views/submit_listing.php:679
5600
  msgctxt "submit listing"
5601
  msgid "Password:"
5602
  msgstr ""
@@ -5915,18 +5927,18 @@ msgid ""
5915
  "of options."
5916
  msgstr ""
5917
 
5918
- #: includes/fields/class-fieldtypes-select.php:73
 
5919
  msgctxt "form-fields-api category-select"
5920
- msgid "-- Choose Terms --"
5921
  msgstr "-- Выберите --"
5922
 
5923
- #: includes/fields/class-fieldtypes-select.php:73
5924
- #: includes/fields/class-fieldtypes-select.php:120
5925
  msgctxt "form-fields-api category-select"
5926
- msgid "-- Choose One --"
5927
  msgstr "-- Выберите --"
5928
 
5929
- #: includes/fields/class-fieldtypes-select.php:130
5930
  msgctxt "form-fields-api select"
5931
  msgid "— None —"
5932
  msgstr ""
@@ -6555,29 +6567,29 @@ msgctxt "templates"
6555
  msgid "Recurring Fee Management"
6556
  msgstr "Управление периодический оплатой"
6557
 
6558
- #: includes/views/submit_listing.php:234
6559
  msgctxt "templates"
6560
  msgid ""
6561
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6562
  "Submission?\" setting checked?"
6563
  msgstr ""
6564
 
6565
- #: includes/views/submit_listing.php:236
6566
  msgctxt "templates"
6567
  msgid "View not available."
6568
  msgstr "Свободных мест для загрузки изображений:"
6569
 
6570
- #: includes/views/submit_listing.php:717
6571
  msgctxt "templates"
6572
  msgid "Please agree to the Terms and Conditions."
6573
  msgstr "Пожалуйста примите наши Условия и Положения."
6574
 
6575
- #: includes/views/submit_listing.php:725
6576
  msgctxt "templates"
6577
  msgid "Terms and Conditions:"
6578
  msgstr "Условия и Положения:"
6579
 
6580
- #: includes/views/submit_listing.php:734
6581
  #, fuzzy
6582
  msgctxt "templates"
6583
  msgid "I agree to the <a>Terms and Conditions</a>"
@@ -7262,7 +7274,7 @@ msgctxt "preview"
7262
  msgid "This is just a preview. The listing has not been published yet."
7263
  msgstr "Это просто предварительный просмотр. Запись ещё не была опубликована."
7264
 
7265
- #: includes/views/submit_listing.php:496
7266
  msgctxt "listing submit"
7267
  msgid ""
7268
  "Something went wrong. Please check the form for errors, correct them and "
@@ -8195,7 +8207,13 @@ msgid ""
8195
  "fee plans for your listing."
8196
  msgstr ""
8197
 
8198
- #: templates/submit-listing-plan-selection.tpl.php:24
 
 
 
 
 
 
8199
  msgctxt "submit"
8200
  msgid "Please choose a fee plan for your listing:"
8201
  msgstr ""
@@ -9185,10 +9203,6 @@ msgstr "Адрес"
9185
  #~ "\"%s\"."
9186
  #~ msgstr "Вы приступаете к продлению вашей записи \"%s\" в рубрике \"%s\"."
9187
 
9188
- #~ msgctxt "templates"
9189
- #~ msgid "Category Selection"
9190
- #~ msgstr "Выбор рубрики"
9191
-
9192
  #~ msgctxt "templates"
9193
  #~ msgid "Delete Image"
9194
  #~ 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: 2017-11-21 22:20:29+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"
2489
 
2490
  #: includes/fields/class-fieldtypes-checkbox.php:74
2491
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2492
+ #: includes/fields/class-fieldtypes-select.php:186
2493
  msgctxt "form-fields admin"
2494
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2495
  msgstr "Параметры поля (для выбранных списков и кнопок)."
2496
 
2497
  #: includes/fields/class-fieldtypes-checkbox.php:95
2498
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2499
+ #: includes/fields/class-fieldtypes-select.php:214
2500
  msgctxt "form-fields admin"
2501
  msgid "Field list of options is required."
2502
  msgstr "Список вариантов поля обязателен."
2503
 
2504
+ #: includes/fields/class-fieldtypes-select.php:197
2505
  msgctxt "form-fields admin"
2506
  msgid "Allow empty selection on search?"
2507
  msgstr "Разрешить поиск по пустой строке?"
5317
  msgid "%s Feed"
5318
  msgstr "Лента %ы"
5319
 
5320
+ #: includes/class-meta.php:155 includes/views/submit_listing.php:22
5321
  msgctxt "views"
5322
  msgid "Submit A Listing"
5323
  msgstr "Создать запись"
5450
  msgid "Listing submitted by admin. Payment skipped."
5451
  msgstr ""
5452
 
5453
+ #: includes/views/submit_listing.php:47
5454
  msgctxt "submit listing"
5455
  msgid "Click this field to add categories"
5456
  msgstr ""
5457
 
5458
+ #: includes/views/submit_listing.php:48 templates/submit-listing.tpl.php:23
5459
  #, fuzzy
5460
  msgctxt "submit listing"
5461
  msgid "Complete Listing"
5462
  msgstr "Удалить запись"
5463
 
5464
+ #: includes/views/submit_listing.php:49 templates/submit-listing.tpl.php:28
5465
  #, fuzzy
5466
  msgctxt "submit listing"
5467
  msgid "Continue to Payment"
5468
  msgstr "Начальный платёж"
5469
 
5470
+ #: includes/views/submit_listing.php:91
5471
  msgctxt "submit listing"
5472
  msgid ""
5473
  "This listing can't be edited at this time because it has no fee plan "
5475
  "to a fee plan."
5476
  msgstr ""
5477
 
5478
+ #: includes/views/submit_listing.php:96
5479
  msgctxt "submit listing"
5480
  msgid ""
5481
  "This listing can't be edited at this time. Please try again later or contact "
5482
  "the admin if the problem persists."
5483
  msgstr ""
5484
 
5485
+ #: includes/views/submit_listing.php:118
5486
  #, fuzzy
5487
  msgctxt "submit listing"
5488
  msgid "You're logged in as admin, payment will be skipped."
5489
  msgstr "Вы вошли на сайт как Администратор. Все шаги оплаты будут пропущены."
5490
 
5491
+ #: includes/views/submit_listing.php:314
5492
+ #, fuzzy
5493
+ msgctxt "submit listing"
5494
+ msgid "Category selection"
5495
+ msgstr "Выбор рубрики"
5496
+
5497
+ #: includes/views/submit_listing.php:314
5498
  #, fuzzy
5499
  msgctxt "submit listing"
5500
  msgid "Category & plan selection"
5501
  msgstr "Выбор рубрики"
5502
 
5503
+ #: includes/views/submit_listing.php:319
5504
  #, fuzzy
5505
  msgctxt "submit listing"
5506
  msgid "Listing Information"
5507
  msgstr "Информация о бизнесе"
5508
 
5509
+ #: includes/views/submit_listing.php:323
5510
  #, fuzzy
5511
  msgctxt "submit listing"
5512
  msgid "Listing Images"
5513
  msgstr "Изображение записи"
5514
 
5515
+ #: includes/views/submit_listing.php:329
5516
  msgctxt "submit listing"
5517
  msgid "Account Creation"
5518
  msgstr ""
5519
 
5520
+ #: includes/views/submit_listing.php:335
5521
  #, fuzzy
5522
  msgctxt "submit listing"
5523
  msgid "Terms and Conditions"
5524
  msgstr "Условия и положения"
5525
 
5526
+ #: includes/views/submit_listing.php:375
5527
  msgctxt "submit listing"
5528
  msgid "(Please choose a fee plan above)"
5529
  msgstr ""
5530
 
5531
+ #: includes/views/submit_listing.php:426
5532
  #, fuzzy
5533
  msgctxt "submit listing"
5534
  msgid "Can not submit a listing at this moment. Please try again later."
5536
  "В настоящее время вы не можем провести Вашу оплату. Попробуйте позже "
5537
  "пожалуйста."
5538
 
5539
+ #: includes/views/submit_listing.php:436
5540
  #, fuzzy
5541
  msgctxt "submit listing"
5542
  msgid "Please select a category."
5543
  msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
5544
 
5545
+ #: includes/views/submit_listing.php:449
5546
+ #, fuzzy
5547
+ msgctxt "submit listing"
5548
+ msgid "Please select a category for your listing."
5549
+ msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
5550
+
5551
+ #: includes/views/submit_listing.php:469
5552
  msgctxt "submit listing"
5553
  msgid "Please choose a valid category for your plan."
5554
  msgstr ""
5555
 
5556
+ #: includes/views/submit_listing.php:471
5557
  #, fuzzy
5558
  msgctxt "submit listing"
5559
  msgid "Please choose a valid fee plan for your category selection."
5560
  msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
5561
 
5562
+ #: includes/views/submit_listing.php:675
5563
  #, fuzzy
5564
  msgctxt "submit listing"
5565
  msgid "Please enter your desired username."
5566
  msgstr "Пожалуйста введите Ваше имя."
5567
 
5568
+ #: includes/views/submit_listing.php:680
5569
  #, fuzzy
5570
  msgctxt "submit listing"
5571
  msgid "Please enter the e-mail for your new account."
5572
  msgstr "Пожалуйста введите Ваше имя."
5573
 
5574
+ #: includes/views/submit_listing.php:685
5575
  msgctxt "submit listing"
5576
  msgid "Please enter the password for your new account."
5577
  msgstr ""
5578
 
5579
+ #: includes/views/submit_listing.php:695
5580
  msgctxt "submit listing"
5581
  msgid "The username you chose is already in use. Please use a different one."
5582
  msgstr ""
5583
 
5584
+ #: includes/views/submit_listing.php:700
5585
  msgctxt "submit listing"
5586
  msgid "The e-mail address you chose for your account is already in use."
5587
  msgstr ""
5588
 
5589
+ #: includes/views/submit_listing.php:715
5590
  msgctxt "submit listing"
5591
  msgid "Create a user account on this site"
5592
  msgstr ""
5593
 
5594
+ #: includes/views/submit_listing.php:722
5595
  msgctxt "submit listing"
5596
  msgid ""
5597
  "You need to create an account on the site. Please fill out the form below."
5598
  msgstr ""
5599
 
5600
+ #: includes/views/submit_listing.php:728
5601
  msgctxt "submit listing"
5602
  msgid "Username:"
5603
  msgstr ""
5604
 
5605
+ #: includes/views/submit_listing.php:737
5606
  #, fuzzy
5607
  msgctxt "submit listing"
5608
  msgid "Email:"
5609
  msgstr "Адрес: %s"
5610
 
5611
+ #: includes/views/submit_listing.php:746
5612
  msgctxt "submit listing"
5613
  msgid "Password:"
5614
  msgstr ""
5927
  "of options."
5928
  msgstr ""
5929
 
5930
+ #: includes/fields/class-fieldtypes-select.php:86
5931
+ #: includes/fields/class-fieldtypes-select.php:133
5932
  msgctxt "form-fields-api category-select"
5933
+ msgid "-- Choose One --"
5934
  msgstr "-- Выберите --"
5935
 
5936
+ #: includes/fields/class-fieldtypes-select.php:92
 
5937
  msgctxt "form-fields-api category-select"
5938
+ msgid "-- Choose Terms --"
5939
  msgstr "-- Выберите --"
5940
 
5941
+ #: includes/fields/class-fieldtypes-select.php:143
5942
  msgctxt "form-fields-api select"
5943
  msgid "— None —"
5944
  msgstr ""
6567
  msgid "Recurring Fee Management"
6568
  msgstr "Управление периодический оплатой"
6569
 
6570
+ #: includes/views/submit_listing.php:270
6571
  msgctxt "templates"
6572
  msgid ""
6573
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6574
  "Submission?\" setting checked?"
6575
  msgstr ""
6576
 
6577
+ #: includes/views/submit_listing.php:272
6578
  msgctxt "templates"
6579
  msgid "View not available."
6580
  msgstr "Свободных мест для загрузки изображений:"
6581
 
6582
+ #: includes/views/submit_listing.php:784
6583
  msgctxt "templates"
6584
  msgid "Please agree to the Terms and Conditions."
6585
  msgstr "Пожалуйста примите наши Условия и Положения."
6586
 
6587
+ #: includes/views/submit_listing.php:792
6588
  msgctxt "templates"
6589
  msgid "Terms and Conditions:"
6590
  msgstr "Условия и Положения:"
6591
 
6592
+ #: includes/views/submit_listing.php:801
6593
  #, fuzzy
6594
  msgctxt "templates"
6595
  msgid "I agree to the <a>Terms and Conditions</a>"
7274
  msgid "This is just a preview. The listing has not been published yet."
7275
  msgstr "Это просто предварительный просмотр. Запись ещё не была опубликована."
7276
 
7277
+ #: includes/views/submit_listing.php:563
7278
  msgctxt "listing submit"
7279
  msgid ""
7280
  "Something went wrong. Please check the form for errors, correct them and "
8207
  "fee plans for your listing."
8208
  msgstr ""
8209
 
8210
+ #: templates/submit-listing-plan-selection.tpl.php:25
8211
+ #, fuzzy
8212
+ msgctxt "submit"
8213
+ msgid "Your plan's details:"
8214
+ msgstr "Детали плана"
8215
+
8216
+ #: templates/submit-listing-plan-selection.tpl.php:37
8217
  msgctxt "submit"
8218
  msgid "Please choose a fee plan for your listing:"
8219
  msgstr ""
9203
  #~ "\"%s\"."
9204
  #~ msgstr "Вы приступаете к продлению вашей записи \"%s\" в рубрике \"%s\"."
9205
 
 
 
 
 
9206
  #~ msgctxt "templates"
9207
  #~ msgid "Delete Image"
9208
  #~ msgstr "Удалить изображение"
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: 2017-11-16 23:46:36+00:00\n"
9
  "PO-Revision-Date: 2017-01-16 17:49-0500\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
@@ -2510,19 +2510,19 @@ msgstr "Taggar uppdateras."
2510
 
2511
  #: includes/fields/class-fieldtypes-checkbox.php:74
2512
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2513
- #: includes/fields/class-fieldtypes-select.php:173
2514
  msgctxt "form-fields admin"
2515
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2516
  msgstr "Fältalternativ (för utvalda annonser, radioknappar och kryssrutor)"
2517
 
2518
  #: includes/fields/class-fieldtypes-checkbox.php:95
2519
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2520
- #: includes/fields/class-fieldtypes-select.php:201
2521
  msgctxt "form-fields admin"
2522
  msgid "Field list of options is required."
2523
  msgstr "Lista på alternativ krävs."
2524
 
2525
- #: includes/fields/class-fieldtypes-select.php:184
2526
  msgctxt "form-fields admin"
2527
  msgid "Allow empty selection on search?"
2528
  msgstr "Tillåt tomt urval på sök?"
@@ -5307,7 +5307,7 @@ msgctxt "rss feed"
5307
  msgid "%s Feed"
5308
  msgstr "%s-flöde"
5309
 
5310
- #: includes/class-meta.php:155 includes/views/submit_listing.php:17
5311
  msgctxt "views"
5312
  msgid "Submit A Listing"
5313
  msgstr "Sätt in en annons"
@@ -5439,24 +5439,24 @@ msgctxt "submit listing"
5439
  msgid "Listing submitted by admin. Payment skipped."
5440
  msgstr ""
5441
 
5442
- #: includes/views/submit_listing.php:42
5443
  msgctxt "submit listing"
5444
  msgid "Click this field to add categories"
5445
  msgstr ""
5446
 
5447
- #: includes/views/submit_listing.php:43 templates/submit-listing.tpl.php:23
5448
  #, fuzzy
5449
  msgctxt "submit listing"
5450
  msgid "Complete Listing"
5451
  msgstr "Ta bort annons"
5452
 
5453
- #: includes/views/submit_listing.php:44 templates/submit-listing.tpl.php:28
5454
  #, fuzzy
5455
  msgctxt "submit listing"
5456
  msgid "Continue to Payment"
5457
  msgstr "Första betalning"
5458
 
5459
- #: includes/views/submit_listing.php:86
5460
  msgctxt "submit listing"
5461
  msgid ""
5462
  "This listing can't be edited at this time because it has no fee plan "
@@ -5464,7 +5464,7 @@ msgid ""
5464
  "to a fee plan."
5465
  msgstr ""
5466
 
5467
- #: includes/views/submit_listing.php:91
5468
  #, fuzzy
5469
  msgctxt "submit listing"
5470
  msgid ""
@@ -5474,120 +5474,132 @@ msgstr ""
5474
  "Katalogen är inte tillgänglig just nu. Vänligen försök igen om en lite stund "
5475
  "eller kontakta administratören om problemet kvarstår."
5476
 
5477
- #: includes/views/submit_listing.php:112
5478
  #, fuzzy
5479
  msgctxt "submit listing"
5480
  msgid "You're logged in as admin, payment will be skipped."
5481
  msgstr "Du är inloggad som administratör. Alla betalningssteg hoppas över."
5482
 
5483
- #: includes/views/submit_listing.php:278
 
 
 
 
 
 
5484
  #, fuzzy
5485
  msgctxt "submit listing"
5486
  msgid "Category & plan selection"
5487
  msgstr "Val av kategori"
5488
 
5489
- #: includes/views/submit_listing.php:283
5490
  #, fuzzy
5491
  msgctxt "submit listing"
5492
  msgid "Listing Information"
5493
  msgstr "Information om annons"
5494
 
5495
- #: includes/views/submit_listing.php:287
5496
  #, fuzzy
5497
  msgctxt "submit listing"
5498
  msgid "Listing Images"
5499
  msgstr "Annonsbilder"
5500
 
5501
- #: includes/views/submit_listing.php:293
5502
  msgctxt "submit listing"
5503
  msgid "Account Creation"
5504
  msgstr ""
5505
 
5506
- #: includes/views/submit_listing.php:299
5507
  #, fuzzy
5508
  msgctxt "submit listing"
5509
  msgid "Terms and Conditions"
5510
  msgstr "Villkor"
5511
 
5512
- #: includes/views/submit_listing.php:336
5513
  msgctxt "submit listing"
5514
  msgid "(Please choose a fee plan above)"
5515
  msgstr ""
5516
 
5517
- #: includes/views/submit_listing.php:384
5518
  #, fuzzy
5519
  msgctxt "submit listing"
5520
  msgid "Can not submit a listing at this moment. Please try again later."
5521
  msgstr "Vi kan inte behandla din betalning just nu. Försök igen senare."
5522
 
5523
- #: includes/views/submit_listing.php:394
5524
  #, fuzzy
5525
  msgctxt "submit listing"
5526
  msgid "Please select a category."
5527
  msgstr "Välj en avgift alternativ för \"%s\" kategorin ."
5528
 
5529
- #: includes/views/submit_listing.php:413
 
 
 
 
 
 
5530
  msgctxt "submit listing"
5531
  msgid "Please choose a valid category for your plan."
5532
  msgstr ""
5533
 
5534
- #: includes/views/submit_listing.php:415
5535
  #, fuzzy
5536
  msgctxt "submit listing"
5537
  msgid "Please choose a valid fee plan for your category selection."
5538
  msgstr "Välj en avgift alternativ för \"%s\" kategorin ."
5539
 
5540
- #: includes/views/submit_listing.php:608
5541
  #, fuzzy
5542
  msgctxt "submit listing"
5543
  msgid "Please enter your desired username."
5544
  msgstr "Fyll i ditt namn"
5545
 
5546
- #: includes/views/submit_listing.php:613
5547
  #, fuzzy
5548
  msgctxt "submit listing"
5549
  msgid "Please enter the e-mail for your new account."
5550
  msgstr "Fyll i ditt namn"
5551
 
5552
- #: includes/views/submit_listing.php:618
5553
  msgctxt "submit listing"
5554
  msgid "Please enter the password for your new account."
5555
  msgstr ""
5556
 
5557
- #: includes/views/submit_listing.php:628
5558
  msgctxt "submit listing"
5559
  msgid "The username you chose is already in use. Please use a different one."
5560
  msgstr ""
5561
 
5562
- #: includes/views/submit_listing.php:633
5563
  msgctxt "submit listing"
5564
  msgid "The e-mail address you chose for your account is already in use."
5565
  msgstr ""
5566
 
5567
- #: includes/views/submit_listing.php:648
5568
  msgctxt "submit listing"
5569
  msgid "Create a user account on this site"
5570
  msgstr ""
5571
 
5572
- #: includes/views/submit_listing.php:655
5573
  msgctxt "submit listing"
5574
  msgid ""
5575
  "You need to create an account on the site. Please fill out the form below."
5576
  msgstr ""
5577
 
5578
- #: includes/views/submit_listing.php:661
5579
  #, fuzzy
5580
  msgctxt "submit listing"
5581
  msgid "Username:"
5582
  msgstr "Användare"
5583
 
5584
- #: includes/views/submit_listing.php:670
5585
  #, fuzzy
5586
  msgctxt "submit listing"
5587
  msgid "Email:"
5588
  msgstr "E-postadress:"
5589
 
5590
- #: includes/views/submit_listing.php:679
5591
  msgctxt "submit listing"
5592
  msgid "Password:"
5593
  msgstr ""
@@ -5903,18 +5915,18 @@ msgid ""
5903
  "of options."
5904
  msgstr "Höjden på listan justeras för att passa angivet antal."
5905
 
5906
- #: includes/fields/class-fieldtypes-select.php:73
5907
- msgctxt "form-fields-api category-select"
5908
- msgid "-- Choose Terms --"
5909
- msgstr "- Välj Villkor -"
5910
-
5911
- #: includes/fields/class-fieldtypes-select.php:73
5912
- #: includes/fields/class-fieldtypes-select.php:120
5913
  msgctxt "form-fields-api category-select"
5914
  msgid "-- Choose One --"
5915
  msgstr "— Välj ett —"
5916
 
5917
- #: includes/fields/class-fieldtypes-select.php:130
 
 
 
 
 
5918
  msgctxt "form-fields-api select"
5919
  msgid "— None —"
5920
  msgstr "— Inget —"
@@ -6547,7 +6559,7 @@ msgctxt "templates"
6547
  msgid "Recurring Fee Management"
6548
  msgstr "Hantera återkommande avgifter"
6549
 
6550
- #: includes/views/submit_listing.php:234
6551
  msgctxt "templates"
6552
  msgid ""
6553
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
@@ -6556,22 +6568,22 @@ msgstr ""
6556
  "<b>Vyn inte tillgänglig.</b> Har du \"Inaktivera inlämning av annons på "
6557
  "framsidan?\"-inställningen markerad?"
6558
 
6559
- #: includes/views/submit_listing.php:236
6560
  msgctxt "templates"
6561
  msgid "View not available."
6562
  msgstr "Vy ej tillgänglig."
6563
 
6564
- #: includes/views/submit_listing.php:717
6565
  msgctxt "templates"
6566
  msgid "Please agree to the Terms and Conditions."
6567
  msgstr "Vänligen godkänn villkoren"
6568
 
6569
- #: includes/views/submit_listing.php:725
6570
  msgctxt "templates"
6571
  msgid "Terms and Conditions:"
6572
  msgstr "Villkor"
6573
 
6574
- #: includes/views/submit_listing.php:734
6575
  #, fuzzy
6576
  msgctxt "templates"
6577
  msgid "I agree to the <a>Terms and Conditions</a>"
@@ -7252,7 +7264,7 @@ msgid "This is just a preview. The listing has not been published yet."
7252
  msgstr ""
7253
  "Detta är enbart en förhandsgranskning, annonsen har inte publicerats ännu."
7254
 
7255
- #: includes/views/submit_listing.php:496
7256
  msgctxt "listing submit"
7257
  msgid ""
7258
  "Something went wrong. Please check the form for errors, correct them and "
@@ -8177,7 +8189,13 @@ msgid ""
8177
  "fee plans for your listing."
8178
  msgstr ""
8179
 
8180
- #: templates/submit-listing-plan-selection.tpl.php:24
 
 
 
 
 
 
8181
  msgctxt "submit"
8182
  msgid "Please choose a fee plan for your listing:"
8183
  msgstr ""
@@ -9217,10 +9235,6 @@ msgstr "Adress"
9217
  #~ "\"%s\"."
9218
  #~ msgstr "Du är på väg att förnya din annons \"%s\" i kategorin \"%s\"."
9219
 
9220
- #~ msgctxt "templates"
9221
- #~ msgid "Category Selection"
9222
- #~ msgstr "Val av kategori"
9223
-
9224
  #~ msgctxt "templates"
9225
  #~ msgid "Delete Image"
9226
  #~ msgstr "Ta bort bild"
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: 2017-11-21 22:20:29+00:00\n"
9
  "PO-Revision-Date: 2017-01-16 17:49-0500\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
2510
 
2511
  #: includes/fields/class-fieldtypes-checkbox.php:74
2512
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2513
+ #: includes/fields/class-fieldtypes-select.php:186
2514
  msgctxt "form-fields admin"
2515
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2516
  msgstr "Fältalternativ (för utvalda annonser, radioknappar och kryssrutor)"
2517
 
2518
  #: includes/fields/class-fieldtypes-checkbox.php:95
2519
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2520
+ #: includes/fields/class-fieldtypes-select.php:214
2521
  msgctxt "form-fields admin"
2522
  msgid "Field list of options is required."
2523
  msgstr "Lista på alternativ krävs."
2524
 
2525
+ #: includes/fields/class-fieldtypes-select.php:197
2526
  msgctxt "form-fields admin"
2527
  msgid "Allow empty selection on search?"
2528
  msgstr "Tillåt tomt urval på sök?"
5307
  msgid "%s Feed"
5308
  msgstr "%s-flöde"
5309
 
5310
+ #: includes/class-meta.php:155 includes/views/submit_listing.php:22
5311
  msgctxt "views"
5312
  msgid "Submit A Listing"
5313
  msgstr "Sätt in en annons"
5439
  msgid "Listing submitted by admin. Payment skipped."
5440
  msgstr ""
5441
 
5442
+ #: includes/views/submit_listing.php:47
5443
  msgctxt "submit listing"
5444
  msgid "Click this field to add categories"
5445
  msgstr ""
5446
 
5447
+ #: includes/views/submit_listing.php:48 templates/submit-listing.tpl.php:23
5448
  #, fuzzy
5449
  msgctxt "submit listing"
5450
  msgid "Complete Listing"
5451
  msgstr "Ta bort annons"
5452
 
5453
+ #: includes/views/submit_listing.php:49 templates/submit-listing.tpl.php:28
5454
  #, fuzzy
5455
  msgctxt "submit listing"
5456
  msgid "Continue to Payment"
5457
  msgstr "Första betalning"
5458
 
5459
+ #: includes/views/submit_listing.php:91
5460
  msgctxt "submit listing"
5461
  msgid ""
5462
  "This listing can't be edited at this time because it has no fee plan "
5464
  "to a fee plan."
5465
  msgstr ""
5466
 
5467
+ #: includes/views/submit_listing.php:96
5468
  #, fuzzy
5469
  msgctxt "submit listing"
5470
  msgid ""
5474
  "Katalogen är inte tillgänglig just nu. Vänligen försök igen om en lite stund "
5475
  "eller kontakta administratören om problemet kvarstår."
5476
 
5477
+ #: includes/views/submit_listing.php:118
5478
  #, fuzzy
5479
  msgctxt "submit listing"
5480
  msgid "You're logged in as admin, payment will be skipped."
5481
  msgstr "Du är inloggad som administratör. Alla betalningssteg hoppas över."
5482
 
5483
+ #: includes/views/submit_listing.php:314
5484
+ #, fuzzy
5485
+ msgctxt "submit listing"
5486
+ msgid "Category selection"
5487
+ msgstr "Val av kategori"
5488
+
5489
+ #: includes/views/submit_listing.php:314
5490
  #, fuzzy
5491
  msgctxt "submit listing"
5492
  msgid "Category & plan selection"
5493
  msgstr "Val av kategori"
5494
 
5495
+ #: includes/views/submit_listing.php:319
5496
  #, fuzzy
5497
  msgctxt "submit listing"
5498
  msgid "Listing Information"
5499
  msgstr "Information om annons"
5500
 
5501
+ #: includes/views/submit_listing.php:323
5502
  #, fuzzy
5503
  msgctxt "submit listing"
5504
  msgid "Listing Images"
5505
  msgstr "Annonsbilder"
5506
 
5507
+ #: includes/views/submit_listing.php:329
5508
  msgctxt "submit listing"
5509
  msgid "Account Creation"
5510
  msgstr ""
5511
 
5512
+ #: includes/views/submit_listing.php:335
5513
  #, fuzzy
5514
  msgctxt "submit listing"
5515
  msgid "Terms and Conditions"
5516
  msgstr "Villkor"
5517
 
5518
+ #: includes/views/submit_listing.php:375
5519
  msgctxt "submit listing"
5520
  msgid "(Please choose a fee plan above)"
5521
  msgstr ""
5522
 
5523
+ #: includes/views/submit_listing.php:426
5524
  #, fuzzy
5525
  msgctxt "submit listing"
5526
  msgid "Can not submit a listing at this moment. Please try again later."
5527
  msgstr "Vi kan inte behandla din betalning just nu. Försök igen senare."
5528
 
5529
+ #: includes/views/submit_listing.php:436
5530
  #, fuzzy
5531
  msgctxt "submit listing"
5532
  msgid "Please select a category."
5533
  msgstr "Välj en avgift alternativ för \"%s\" kategorin ."
5534
 
5535
+ #: includes/views/submit_listing.php:449
5536
+ #, fuzzy
5537
+ msgctxt "submit listing"
5538
+ msgid "Please select a category for your listing."
5539
+ msgstr "Välj en avgift alternativ för \"%s\" kategorin ."
5540
+
5541
+ #: includes/views/submit_listing.php:469
5542
  msgctxt "submit listing"
5543
  msgid "Please choose a valid category for your plan."
5544
  msgstr ""
5545
 
5546
+ #: includes/views/submit_listing.php:471
5547
  #, fuzzy
5548
  msgctxt "submit listing"
5549
  msgid "Please choose a valid fee plan for your category selection."
5550
  msgstr "Välj en avgift alternativ för \"%s\" kategorin ."
5551
 
5552
+ #: includes/views/submit_listing.php:675
5553
  #, fuzzy
5554
  msgctxt "submit listing"
5555
  msgid "Please enter your desired username."
5556
  msgstr "Fyll i ditt namn"
5557
 
5558
+ #: includes/views/submit_listing.php:680
5559
  #, fuzzy
5560
  msgctxt "submit listing"
5561
  msgid "Please enter the e-mail for your new account."
5562
  msgstr "Fyll i ditt namn"
5563
 
5564
+ #: includes/views/submit_listing.php:685
5565
  msgctxt "submit listing"
5566
  msgid "Please enter the password for your new account."
5567
  msgstr ""
5568
 
5569
+ #: includes/views/submit_listing.php:695
5570
  msgctxt "submit listing"
5571
  msgid "The username you chose is already in use. Please use a different one."
5572
  msgstr ""
5573
 
5574
+ #: includes/views/submit_listing.php:700
5575
  msgctxt "submit listing"
5576
  msgid "The e-mail address you chose for your account is already in use."
5577
  msgstr ""
5578
 
5579
+ #: includes/views/submit_listing.php:715
5580
  msgctxt "submit listing"
5581
  msgid "Create a user account on this site"
5582
  msgstr ""
5583
 
5584
+ #: includes/views/submit_listing.php:722
5585
  msgctxt "submit listing"
5586
  msgid ""
5587
  "You need to create an account on the site. Please fill out the form below."
5588
  msgstr ""
5589
 
5590
+ #: includes/views/submit_listing.php:728
5591
  #, fuzzy
5592
  msgctxt "submit listing"
5593
  msgid "Username:"
5594
  msgstr "Användare"
5595
 
5596
+ #: includes/views/submit_listing.php:737
5597
  #, fuzzy
5598
  msgctxt "submit listing"
5599
  msgid "Email:"
5600
  msgstr "E-postadress:"
5601
 
5602
+ #: includes/views/submit_listing.php:746
5603
  msgctxt "submit listing"
5604
  msgid "Password:"
5605
  msgstr ""
5915
  "of options."
5916
  msgstr "Höjden på listan justeras för att passa angivet antal."
5917
 
5918
+ #: includes/fields/class-fieldtypes-select.php:86
5919
+ #: includes/fields/class-fieldtypes-select.php:133
 
 
 
 
 
5920
  msgctxt "form-fields-api category-select"
5921
  msgid "-- Choose One --"
5922
  msgstr "— Välj ett —"
5923
 
5924
+ #: includes/fields/class-fieldtypes-select.php:92
5925
+ msgctxt "form-fields-api category-select"
5926
+ msgid "-- Choose Terms --"
5927
+ msgstr "- Välj Villkor -"
5928
+
5929
+ #: includes/fields/class-fieldtypes-select.php:143
5930
  msgctxt "form-fields-api select"
5931
  msgid "— None —"
5932
  msgstr "— Inget —"
6559
  msgid "Recurring Fee Management"
6560
  msgstr "Hantera återkommande avgifter"
6561
 
6562
+ #: includes/views/submit_listing.php:270
6563
  msgctxt "templates"
6564
  msgid ""
6565
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6568
  "<b>Vyn inte tillgänglig.</b> Har du \"Inaktivera inlämning av annons på "
6569
  "framsidan?\"-inställningen markerad?"
6570
 
6571
+ #: includes/views/submit_listing.php:272
6572
  msgctxt "templates"
6573
  msgid "View not available."
6574
  msgstr "Vy ej tillgänglig."
6575
 
6576
+ #: includes/views/submit_listing.php:784
6577
  msgctxt "templates"
6578
  msgid "Please agree to the Terms and Conditions."
6579
  msgstr "Vänligen godkänn villkoren"
6580
 
6581
+ #: includes/views/submit_listing.php:792
6582
  msgctxt "templates"
6583
  msgid "Terms and Conditions:"
6584
  msgstr "Villkor"
6585
 
6586
+ #: includes/views/submit_listing.php:801
6587
  #, fuzzy
6588
  msgctxt "templates"
6589
  msgid "I agree to the <a>Terms and Conditions</a>"
7264
  msgstr ""
7265
  "Detta är enbart en förhandsgranskning, annonsen har inte publicerats ännu."
7266
 
7267
+ #: includes/views/submit_listing.php:563
7268
  msgctxt "listing submit"
7269
  msgid ""
7270
  "Something went wrong. Please check the form for errors, correct them and "
8189
  "fee plans for your listing."
8190
  msgstr ""
8191
 
8192
+ #: templates/submit-listing-plan-selection.tpl.php:25
8193
+ #, fuzzy
8194
+ msgctxt "submit"
8195
+ msgid "Your plan's details:"
8196
+ msgstr "Detaljer för plan"
8197
+
8198
+ #: templates/submit-listing-plan-selection.tpl.php:37
8199
  msgctxt "submit"
8200
  msgid "Please choose a fee plan for your listing:"
8201
  msgstr ""
9235
  #~ "\"%s\"."
9236
  #~ msgstr "Du är på väg att förnya din annons \"%s\" i kategorin \"%s\"."
9237
 
 
 
 
 
9238
  #~ msgctxt "templates"
9239
  #~ msgid "Delete Image"
9240
  #~ msgstr "Ta bort bild"
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.1\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/business-directory-plugin\n"
8
- "POT-Creation-Date: 2017-11-16 23:46:36+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -2305,19 +2305,19 @@ msgstr ""
2305
 
2306
  #: includes/fields/class-fieldtypes-checkbox.php:74
2307
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2308
- #: includes/fields/class-fieldtypes-select.php:173
2309
  msgctxt "form-fields admin"
2310
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2311
  msgstr ""
2312
 
2313
  #: includes/fields/class-fieldtypes-checkbox.php:95
2314
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2315
- #: includes/fields/class-fieldtypes-select.php:201
2316
  msgctxt "form-fields admin"
2317
  msgid "Field list of options is required."
2318
  msgstr ""
2319
 
2320
- #: includes/fields/class-fieldtypes-select.php:184
2321
  msgctxt "form-fields admin"
2322
  msgid "Allow empty selection on search?"
2323
  msgstr ""
@@ -4776,7 +4776,7 @@ msgctxt "rss feed"
4776
  msgid "%s Feed"
4777
  msgstr ""
4778
 
4779
- #: includes/class-meta.php:155 includes/views/submit_listing.php:17
4780
  msgctxt "views"
4781
  msgid "Submit A Listing"
4782
  msgstr ""
@@ -4892,22 +4892,22 @@ msgctxt "submit listing"
4892
  msgid "Listing submitted by admin. Payment skipped."
4893
  msgstr ""
4894
 
4895
- #: includes/views/submit_listing.php:42
4896
  msgctxt "submit listing"
4897
  msgid "Click this field to add categories"
4898
  msgstr ""
4899
 
4900
- #: includes/views/submit_listing.php:43 templates/submit-listing.tpl.php:23
4901
  msgctxt "submit listing"
4902
  msgid "Complete Listing"
4903
  msgstr ""
4904
 
4905
- #: includes/views/submit_listing.php:44 templates/submit-listing.tpl.php:28
4906
  msgctxt "submit listing"
4907
  msgid "Continue to Payment"
4908
  msgstr ""
4909
 
4910
- #: includes/views/submit_listing.php:86
4911
  msgctxt "submit listing"
4912
  msgid ""
4913
  "This listing can't be edited at this time because it has no fee plan "
@@ -4915,114 +4915,124 @@ msgid ""
4915
  "to a fee plan."
4916
  msgstr ""
4917
 
4918
- #: includes/views/submit_listing.php:91
4919
  msgctxt "submit listing"
4920
  msgid ""
4921
  "This listing can't be edited at this time. Please try again later or "
4922
  "contact the admin if the problem persists."
4923
  msgstr ""
4924
 
4925
- #: includes/views/submit_listing.php:112
4926
  msgctxt "submit listing"
4927
  msgid "You're logged in as admin, payment will be skipped."
4928
  msgstr ""
4929
 
4930
- #: includes/views/submit_listing.php:278
 
 
 
 
 
4931
  msgctxt "submit listing"
4932
  msgid "Category & plan selection"
4933
  msgstr ""
4934
 
4935
- #: includes/views/submit_listing.php:283
4936
  msgctxt "submit listing"
4937
  msgid "Listing Information"
4938
  msgstr ""
4939
 
4940
- #: includes/views/submit_listing.php:287
4941
  msgctxt "submit listing"
4942
  msgid "Listing Images"
4943
  msgstr ""
4944
 
4945
- #: includes/views/submit_listing.php:293
4946
  msgctxt "submit listing"
4947
  msgid "Account Creation"
4948
  msgstr ""
4949
 
4950
- #: includes/views/submit_listing.php:299
4951
  msgctxt "submit listing"
4952
  msgid "Terms and Conditions"
4953
  msgstr ""
4954
 
4955
- #: includes/views/submit_listing.php:336
4956
  msgctxt "submit listing"
4957
  msgid "(Please choose a fee plan above)"
4958
  msgstr ""
4959
 
4960
- #: includes/views/submit_listing.php:384
4961
  msgctxt "submit listing"
4962
  msgid "Can not submit a listing at this moment. Please try again later."
4963
  msgstr ""
4964
 
4965
- #: includes/views/submit_listing.php:394
4966
  msgctxt "submit listing"
4967
  msgid "Please select a category."
4968
  msgstr ""
4969
 
4970
- #: includes/views/submit_listing.php:413
 
 
 
 
 
4971
  msgctxt "submit listing"
4972
  msgid "Please choose a valid category for your plan."
4973
  msgstr ""
4974
 
4975
- #: includes/views/submit_listing.php:415
4976
  msgctxt "submit listing"
4977
  msgid "Please choose a valid fee plan for your category selection."
4978
  msgstr ""
4979
 
4980
- #: includes/views/submit_listing.php:608
4981
  msgctxt "submit listing"
4982
  msgid "Please enter your desired username."
4983
  msgstr ""
4984
 
4985
- #: includes/views/submit_listing.php:613
4986
  msgctxt "submit listing"
4987
  msgid "Please enter the e-mail for your new account."
4988
  msgstr ""
4989
 
4990
- #: includes/views/submit_listing.php:618
4991
  msgctxt "submit listing"
4992
  msgid "Please enter the password for your new account."
4993
  msgstr ""
4994
 
4995
- #: includes/views/submit_listing.php:628
4996
  msgctxt "submit listing"
4997
  msgid "The username you chose is already in use. Please use a different one."
4998
  msgstr ""
4999
 
5000
- #: includes/views/submit_listing.php:633
5001
  msgctxt "submit listing"
5002
  msgid "The e-mail address you chose for your account is already in use."
5003
  msgstr ""
5004
 
5005
- #: includes/views/submit_listing.php:648
5006
  msgctxt "submit listing"
5007
  msgid "Create a user account on this site"
5008
  msgstr ""
5009
 
5010
- #: includes/views/submit_listing.php:655
5011
  msgctxt "submit listing"
5012
  msgid "You need to create an account on the site. Please fill out the form below."
5013
  msgstr ""
5014
 
5015
- #: includes/views/submit_listing.php:661
5016
  msgctxt "submit listing"
5017
  msgid "Username:"
5018
  msgstr ""
5019
 
5020
- #: includes/views/submit_listing.php:670
5021
  msgctxt "submit listing"
5022
  msgid "Email:"
5023
  msgstr ""
5024
 
5025
- #: includes/views/submit_listing.php:679
5026
  msgctxt "submit listing"
5027
  msgid "Password:"
5028
  msgstr ""
@@ -5329,18 +5339,18 @@ msgid ""
5329
  "of options."
5330
  msgstr ""
5331
 
5332
- #: includes/fields/class-fieldtypes-select.php:73
 
5333
  msgctxt "form-fields-api category-select"
5334
- msgid "-- Choose Terms --"
5335
  msgstr ""
5336
 
5337
- #: includes/fields/class-fieldtypes-select.php:73
5338
- #: includes/fields/class-fieldtypes-select.php:120
5339
  msgctxt "form-fields-api category-select"
5340
- msgid "-- Choose One --"
5341
  msgstr ""
5342
 
5343
- #: includes/fields/class-fieldtypes-select.php:130
5344
  msgctxt "form-fields-api select"
5345
  msgid "— None —"
5346
  msgstr ""
@@ -5907,29 +5917,29 @@ msgctxt "templates"
5907
  msgid "Recurring Fee Management"
5908
  msgstr ""
5909
 
5910
- #: includes/views/submit_listing.php:234
5911
  msgctxt "templates"
5912
  msgid ""
5913
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
5914
  "Submission?\" setting checked?"
5915
  msgstr ""
5916
 
5917
- #: includes/views/submit_listing.php:236
5918
  msgctxt "templates"
5919
  msgid "View not available."
5920
  msgstr ""
5921
 
5922
- #: includes/views/submit_listing.php:717
5923
  msgctxt "templates"
5924
  msgid "Please agree to the Terms and Conditions."
5925
  msgstr ""
5926
 
5927
- #: includes/views/submit_listing.php:725
5928
  msgctxt "templates"
5929
  msgid "Terms and Conditions:"
5930
  msgstr ""
5931
 
5932
- #: includes/views/submit_listing.php:734
5933
  msgctxt "templates"
5934
  msgid "I agree to the <a>Terms and Conditions</a>"
5935
  msgstr ""
@@ -6564,7 +6574,7 @@ msgctxt "preview"
6564
  msgid "This is just a preview. The listing has not been published yet."
6565
  msgstr ""
6566
 
6567
- #: includes/views/submit_listing.php:496
6568
  msgctxt "listing submit"
6569
  msgid ""
6570
  "Something went wrong. Please check the form for errors, correct them and "
@@ -7442,7 +7452,12 @@ msgid ""
7442
  "available fee plans for your listing."
7443
  msgstr ""
7444
 
7445
- #: templates/submit-listing-plan-selection.tpl.php:24
 
 
 
 
 
7446
  msgctxt "submit"
7447
  msgid "Please choose a fee plan for your listing:"
7448
  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.1.2\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/business-directory-plugin\n"
8
+ "POT-Creation-Date: 2017-11-21 22:20:29+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
2305
 
2306
  #: includes/fields/class-fieldtypes-checkbox.php:74
2307
  #: includes/fields/class-fieldtypes-radiobutton.php:71
2308
+ #: includes/fields/class-fieldtypes-select.php:186
2309
  msgctxt "form-fields admin"
2310
  msgid "Field Options (for select lists, radio buttons and checkboxes)."
2311
  msgstr ""
2312
 
2313
  #: includes/fields/class-fieldtypes-checkbox.php:95
2314
  #: includes/fields/class-fieldtypes-radiobutton.php:90
2315
+ #: includes/fields/class-fieldtypes-select.php:214
2316
  msgctxt "form-fields admin"
2317
  msgid "Field list of options is required."
2318
  msgstr ""
2319
 
2320
+ #: includes/fields/class-fieldtypes-select.php:197
2321
  msgctxt "form-fields admin"
2322
  msgid "Allow empty selection on search?"
2323
  msgstr ""
4776
  msgid "%s Feed"
4777
  msgstr ""
4778
 
4779
+ #: includes/class-meta.php:155 includes/views/submit_listing.php:22
4780
  msgctxt "views"
4781
  msgid "Submit A Listing"
4782
  msgstr ""
4892
  msgid "Listing submitted by admin. Payment skipped."
4893
  msgstr ""
4894
 
4895
+ #: includes/views/submit_listing.php:47
4896
  msgctxt "submit listing"
4897
  msgid "Click this field to add categories"
4898
  msgstr ""
4899
 
4900
+ #: includes/views/submit_listing.php:48 templates/submit-listing.tpl.php:23
4901
  msgctxt "submit listing"
4902
  msgid "Complete Listing"
4903
  msgstr ""
4904
 
4905
+ #: includes/views/submit_listing.php:49 templates/submit-listing.tpl.php:28
4906
  msgctxt "submit listing"
4907
  msgid "Continue to Payment"
4908
  msgstr ""
4909
 
4910
+ #: includes/views/submit_listing.php:91
4911
  msgctxt "submit listing"
4912
  msgid ""
4913
  "This listing can't be edited at this time because it has no fee plan "
4915
  "to a fee plan."
4916
  msgstr ""
4917
 
4918
+ #: includes/views/submit_listing.php:96
4919
  msgctxt "submit listing"
4920
  msgid ""
4921
  "This listing can't be edited at this time. Please try again later or "
4922
  "contact the admin if the problem persists."
4923
  msgstr ""
4924
 
4925
+ #: includes/views/submit_listing.php:118
4926
  msgctxt "submit listing"
4927
  msgid "You're logged in as admin, payment will be skipped."
4928
  msgstr ""
4929
 
4930
+ #: includes/views/submit_listing.php:314
4931
+ msgctxt "submit listing"
4932
+ msgid "Category selection"
4933
+ msgstr ""
4934
+
4935
+ #: includes/views/submit_listing.php:314
4936
  msgctxt "submit listing"
4937
  msgid "Category & plan selection"
4938
  msgstr ""
4939
 
4940
+ #: includes/views/submit_listing.php:319
4941
  msgctxt "submit listing"
4942
  msgid "Listing Information"
4943
  msgstr ""
4944
 
4945
+ #: includes/views/submit_listing.php:323
4946
  msgctxt "submit listing"
4947
  msgid "Listing Images"
4948
  msgstr ""
4949
 
4950
+ #: includes/views/submit_listing.php:329
4951
  msgctxt "submit listing"
4952
  msgid "Account Creation"
4953
  msgstr ""
4954
 
4955
+ #: includes/views/submit_listing.php:335
4956
  msgctxt "submit listing"
4957
  msgid "Terms and Conditions"
4958
  msgstr ""
4959
 
4960
+ #: includes/views/submit_listing.php:375
4961
  msgctxt "submit listing"
4962
  msgid "(Please choose a fee plan above)"
4963
  msgstr ""
4964
 
4965
+ #: includes/views/submit_listing.php:426
4966
  msgctxt "submit listing"
4967
  msgid "Can not submit a listing at this moment. Please try again later."
4968
  msgstr ""
4969
 
4970
+ #: includes/views/submit_listing.php:436
4971
  msgctxt "submit listing"
4972
  msgid "Please select a category."
4973
  msgstr ""
4974
 
4975
+ #: includes/views/submit_listing.php:449
4976
+ msgctxt "submit listing"
4977
+ msgid "Please select a category for your listing."
4978
+ msgstr ""
4979
+
4980
+ #: includes/views/submit_listing.php:469
4981
  msgctxt "submit listing"
4982
  msgid "Please choose a valid category for your plan."
4983
  msgstr ""
4984
 
4985
+ #: includes/views/submit_listing.php:471
4986
  msgctxt "submit listing"
4987
  msgid "Please choose a valid fee plan for your category selection."
4988
  msgstr ""
4989
 
4990
+ #: includes/views/submit_listing.php:675
4991
  msgctxt "submit listing"
4992
  msgid "Please enter your desired username."
4993
  msgstr ""
4994
 
4995
+ #: includes/views/submit_listing.php:680
4996
  msgctxt "submit listing"
4997
  msgid "Please enter the e-mail for your new account."
4998
  msgstr ""
4999
 
5000
+ #: includes/views/submit_listing.php:685
5001
  msgctxt "submit listing"
5002
  msgid "Please enter the password for your new account."
5003
  msgstr ""
5004
 
5005
+ #: includes/views/submit_listing.php:695
5006
  msgctxt "submit listing"
5007
  msgid "The username you chose is already in use. Please use a different one."
5008
  msgstr ""
5009
 
5010
+ #: includes/views/submit_listing.php:700
5011
  msgctxt "submit listing"
5012
  msgid "The e-mail address you chose for your account is already in use."
5013
  msgstr ""
5014
 
5015
+ #: includes/views/submit_listing.php:715
5016
  msgctxt "submit listing"
5017
  msgid "Create a user account on this site"
5018
  msgstr ""
5019
 
5020
+ #: includes/views/submit_listing.php:722
5021
  msgctxt "submit listing"
5022
  msgid "You need to create an account on the site. Please fill out the form below."
5023
  msgstr ""
5024
 
5025
+ #: includes/views/submit_listing.php:728
5026
  msgctxt "submit listing"
5027
  msgid "Username:"
5028
  msgstr ""
5029
 
5030
+ #: includes/views/submit_listing.php:737
5031
  msgctxt "submit listing"
5032
  msgid "Email:"
5033
  msgstr ""
5034
 
5035
+ #: includes/views/submit_listing.php:746
5036
  msgctxt "submit listing"
5037
  msgid "Password:"
5038
  msgstr ""
5339
  "of options."
5340
  msgstr ""
5341
 
5342
+ #: includes/fields/class-fieldtypes-select.php:86
5343
+ #: includes/fields/class-fieldtypes-select.php:133
5344
  msgctxt "form-fields-api category-select"
5345
+ msgid "-- Choose One --"
5346
  msgstr ""
5347
 
5348
+ #: includes/fields/class-fieldtypes-select.php:92
 
5349
  msgctxt "form-fields-api category-select"
5350
+ msgid "-- Choose Terms --"
5351
  msgstr ""
5352
 
5353
+ #: includes/fields/class-fieldtypes-select.php:143
5354
  msgctxt "form-fields-api select"
5355
  msgid "— None —"
5356
  msgstr ""
5917
  msgid "Recurring Fee Management"
5918
  msgstr ""
5919
 
5920
+ #: includes/views/submit_listing.php:270
5921
  msgctxt "templates"
5922
  msgid ""
5923
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
5924
  "Submission?\" setting checked?"
5925
  msgstr ""
5926
 
5927
+ #: includes/views/submit_listing.php:272
5928
  msgctxt "templates"
5929
  msgid "View not available."
5930
  msgstr ""
5931
 
5932
+ #: includes/views/submit_listing.php:784
5933
  msgctxt "templates"
5934
  msgid "Please agree to the Terms and Conditions."
5935
  msgstr ""
5936
 
5937
+ #: includes/views/submit_listing.php:792
5938
  msgctxt "templates"
5939
  msgid "Terms and Conditions:"
5940
  msgstr ""
5941
 
5942
+ #: includes/views/submit_listing.php:801
5943
  msgctxt "templates"
5944
  msgid "I agree to the <a>Terms and Conditions</a>"
5945
  msgstr ""
6574
  msgid "This is just a preview. The listing has not been published yet."
6575
  msgstr ""
6576
 
6577
+ #: includes/views/submit_listing.php:563
6578
  msgctxt "listing submit"
6579
  msgid ""
6580
  "Something went wrong. Please check the form for errors, correct them and "
7452
  "available fee plans for your listing."
7453
  msgstr ""
7454
 
7455
+ #: templates/submit-listing-plan-selection.tpl.php:25
7456
+ msgctxt "submit"
7457
+ msgid "Your plan's details:"
7458
+ msgstr ""
7459
+
7460
+ #: templates/submit-listing-plan-selection.tpl.php:37
7461
  msgctxt "submit"
7462
  msgid "Please choose a fee plan for your listing:"
7463
  msgstr ""
templates/submit-listing-done.tpl.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  <?php if ( ! $editing ): ?>
4
  <p><?php _ex( 'Your listing has been submitted.', 'templates', 'WPBDM' ); ?></p>
5
- <?php if ( $payment ): ?>
6
  <div id="wpbdp-checkout-confirmation-receipt">
7
  <?php echo wpbdp()->payments->render_receipt( $payment ); ?>
8
  </div>
2
 
3
  <?php if ( ! $editing ): ?>
4
  <p><?php _ex( 'Your listing has been submitted.', 'templates', 'WPBDM' ); ?></p>
5
+ <?php if ( $payment && $payment->amount > 0.0 ): ?>
6
  <div id="wpbdp-checkout-confirmation-receipt">
7
  <?php echo wpbdp()->payments->render_receipt( $payment ); ?>
8
  </div>
templates/submit-listing-plan-selection.tpl.php CHANGED
@@ -18,19 +18,33 @@
18
  <?php endif; ?>
19
  </div>
20
 
21
- <div class="wpbdp-plan-selection-wrapper" data-breakpoints='{"tiny": [0,410], "small": [410,560], "medium": [560,710], "large": [710,999999]}' data-breakpoints-class-prefix="wpbdp-size">
22
- <?php if ( ! $editing ): ?>
23
- <div class="wpbdp-plan-selection wpbdp-plan-selection-with-tip">
24
- <div class="wpbdp-msg tip"><?php _ex( 'Please choose a fee plan for your listing:', 'submit', 'WPBDM' ); ?></div>
25
- <?php
26
- echo wpbdp_render( 'plan-selection',
27
- array( 'plans' => $plans,
28
- 'selected' => ( ! empty( $selected_plan ) ? $selected_plan : 0 ) ) );
29
- ?>
 
30
  </div>
31
- <?php else: ?>
32
- <div class="wpbdp-current-plan">
33
- <?php echo wpbdp_render( 'plan-selection-plan', array( 'plan' => wpbdp_get_fee_plan( $selected_plan ), 'categories' => array(), 'display_only' => true, 'extra' ) ); ?>
34
  </div>
35
- <?php endif; ?>
36
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  <?php endif; ?>
19
  </div>
20
 
21
+ <?php if ( $_submit->skip_plan_selection ): ?>
22
+ <input type="hidden" name="listing_plan" value="<?php echo $_submit->fixed_plan_id; ?>" />
23
+ <input type="hidden" name="skip_plan_selection" value="1" />
24
+
25
+ <div class="wpbdp-msg tip"><?php _ex( 'Your plan\'s details:', 'submit', 'WPBDM' ); ?></div>
26
+ <div class="wpbdp-plan-selection-wrapper" data-breakpoints='{"tiny": [0,410], "small": [410,560], "medium": [560,710], "large": [710,999999]}' data-breakpoints-class-prefix="wpbdp-size">
27
+ <div class="wpbdp-plan-selection">
28
+ <div class="wpbdp-plan-selection-list">
29
+ <?php echo wpbdp_render( 'plan-selection-plan', array( 'plan' => wpbdp_get_fee_plan( $selected_plan ), 'categories' => $selected_categories, 'display_only' => true, 'extra' ) ); ?>
30
+ </div>
31
  </div>
 
 
 
32
  </div>
33
+ <?php else: ?>
34
+ <div class="wpbdp-plan-selection-wrapper" data-breakpoints='{"tiny": [0,410], "small": [410,560], "medium": [560,710], "large": [710,999999]}' data-breakpoints-class-prefix="wpbdp-size">
35
+ <?php if ( ! $editing ): ?>
36
+ <div class="wpbdp-plan-selection wpbdp-plan-selection-with-tip">
37
+ <div class="wpbdp-msg tip"><?php _ex( 'Please choose a fee plan for your listing:', 'submit', 'WPBDM' ); ?></div>
38
+ <?php
39
+ echo wpbdp_render( 'plan-selection',
40
+ array( 'plans' => $plans,
41
+ 'selected' => ( ! empty( $selected_plan ) ? $selected_plan : 0 ) ) );
42
+ ?>
43
+ </div>
44
+ <?php else: ?>
45
+ <div class="wpbdp-current-plan">
46
+ <?php echo wpbdp_render( 'plan-selection-plan', array( 'plan' => wpbdp_get_fee_plan( $selected_plan ), 'categories' => array(), 'display_only' => true, 'extra' ) ); ?>
47
+ </div>
48
+ <?php endif; ?>
49
+ </div>
50
+ <?php endif; ?>
templates/submit-listing.tpl.php CHANGED
@@ -19,7 +19,7 @@
19
 
20
  <div class="wpbdp-submit-listing-form-actions">
21
  <input type="reset" value="<?php _ex( 'Clear Form', 'submit listing', 'WPBDM' ); ?>" />
22
- <?php if ( $is_admin || ! wpbdp_payments_possible() ): ?>
23
  <input type="submit" value="<?php _ex( 'Complete Listing', 'submit listing', 'WPBDM' ); ?>" id="wpbdp-submit-listing-submit-btn" />
24
  <?php else: ?>
25
  <?php if ( $editing ): ?>
19
 
20
  <div class="wpbdp-submit-listing-form-actions">
21
  <input type="reset" value="<?php _ex( 'Clear Form', 'submit listing', 'WPBDM' ); ?>" />
22
+ <?php if ( $is_admin || ! wpbdp_payments_possible() || $submit->skip_plan_payment ): ?>
23
  <input type="submit" value="<?php _ex( 'Complete Listing', 'submit listing', 'WPBDM' ); ?>" id="wpbdp-submit-listing-submit-btn" />
24
  <?php else: ?>
25
  <?php if ( $editing ): ?>