Version Description
Download this release
Release Info
Developer | businessdirectoryplugin |
Plugin | Business Directory Plugin |
Version | 5.0.3 |
Comparing to | |
See all releases |
Code changes from version 5.0.2 to 5.0.3
- README.TXT +15 -3
- assets/js/checkout.js +2 -0
- assets/js/checkout.min.js +1 -1
- assets/js/submit-listing.js +6 -1
- assets/js/submit-listing.min.js +1 -1
- business-directory-plugin.php +2 -1
- includes/admin/class-admin-listings.php +0 -3
- includes/admin/settings/class-settings-admin.php +1 -1
- includes/admin/upgrades/migrations/migration-18_0.php +13 -10
- includes/class-dispatcher.php +2 -0
- includes/class-fee-plan.php +2 -2
- includes/class-module.php +13 -0
- includes/class-wpbdp.php +1 -1
- includes/compatibility/class-wpml-compat.php +47 -2
- includes/functions.php +9 -0
- includes/views/login.php +7 -4
- languages/WPBDM-ar.po +38 -40
- languages/WPBDM-de_DE.po +38 -40
- languages/WPBDM-en_US.po +30 -40
- languages/WPBDM-es_ES.po +38 -40
- languages/WPBDM-fr_FR.po +38 -40
- languages/WPBDM-nl_NL.po +34 -40
- languages/WPBDM-pl_PL.po +42 -44
- languages/WPBDM-ru_RU.po +38 -40
- languages/WPBDM-sv_SE.po +38 -40
- languages/WPBDM.pot +31 -41
- templates/admin/fees-form.tpl.php +2 -0
- templates/login.tpl.php +21 -26
- templates/plan-selection-plan.tpl.php +1 -1
- templates/submit-listing.tpl.php +1 -1
README.TXT
CHANGED
@@ -4,9 +4,9 @@ Donate link: http://businessdirectoryplugin.com/premium-modules/
|
|
4 |
Tags: business directory, directory plugin, company business directory, chamber of commerce business directory, church directory, address book, contact directory, custom business directory, local business directory, listings directory, link directory, member directory, staff directory
|
5 |
Requires at least: 4.3
|
6 |
Requires PHP: 5.6
|
7 |
-
Tested up to: 4.8.
|
8 |
-
Last Updated: 2017-
|
9 |
-
Stable tag: 5.0.
|
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!
|
@@ -144,6 +144,18 @@ If you are having problems please visit [support forum](http://www.businessdirec
|
|
144 |
|
145 |
== Changelog ==
|
146 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
= Version 5.0.2 =
|
148 |
* Fix load_textdomain() in WPBDP class.
|
149 |
* Fix 'Undefined index: regions-slug' notice.
|
4 |
Tags: business directory, directory plugin, company business directory, chamber of commerce business directory, church directory, address book, contact directory, custom business directory, local business directory, listings directory, link directory, member directory, staff directory
|
5 |
Requires at least: 4.3
|
6 |
Requires PHP: 5.6
|
7 |
+
Tested up to: 4.8.3
|
8 |
+
Last Updated: 2017-Nov-1
|
9 |
+
Stable tag: 5.0.3
|
10 |
License: GPLv2 or later
|
11 |
|
12 |
Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory and much more!
|
144 |
|
145 |
== Changelog ==
|
146 |
|
147 |
+
= Version 5.0.3 =
|
148 |
+
* Support WPML integration during Ajax requests.
|
149 |
+
* Fix a problem in single-select category selector.
|
150 |
+
* Fix encoding problem with redirect_to argument in Login view.
|
151 |
+
* Listings can now be renewed before they expire.
|
152 |
+
* Show registration and password reminder links in login form again.
|
153 |
+
* Support migration from very old versions of BD.
|
154 |
+
* Remove upgrade/downgrade to featured from bulk actions.
|
155 |
+
* Fix bug that caused translation files for modules not to be loaded.
|
156 |
+
* Allow WPML to translate fee descriptions.
|
157 |
+
* Allow plugins to modify the settings callback on the admin.
|
158 |
+
|
159 |
= Version 5.0.2 =
|
160 |
* Fix load_textdomain() in WPBDP class.
|
161 |
* Fix 'Undefined index: regions-slug' notice.
|
assets/js/checkout.js
CHANGED
@@ -43,6 +43,8 @@ jQuery(function($) {
|
|
43 |
self.$container.removeClass().addClass( 'wpbdp-payment-gateway-' + gateway_id + '-form-fields' );
|
44 |
self.$container.html( res );
|
45 |
self.working = false;
|
|
|
|
|
46 |
} );
|
47 |
}
|
48 |
};
|
43 |
self.$container.removeClass().addClass( 'wpbdp-payment-gateway-' + gateway_id + '-form-fields' );
|
44 |
self.$container.html( res );
|
45 |
self.working = false;
|
46 |
+
|
47 |
+
$( window ).trigger( 'wpbdp-payment-gateway-loaded', gateway_id );
|
48 |
} );
|
49 |
}
|
50 |
};
|
assets/js/checkout.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(function($){var wpbdp_checkout={init:function(){var $form=$("form#wpbdp-checkout-form");if(0!=$form.length){var self=this;this.$form=$form,this.$container=this.$form.find("#wpbdp-checkout-form-fields"),this.payment_key=this.$form.find('input[name="payment"]').val(),this.nonce=this.$form.find('input[name="_wpnonce"]').val(),this.working=!1,this.$form.find('input[name="gateway"]').change(function(){if(!self.working){var gateway=self.$form.find('input[name="gateway"]:checked').val();gateway&&self.load_gateway(gateway)}})}},load_gateway:function(gateway_id){var self=this;self.$container.html(""),self.working=!0;var url=wpbdp_global.ajaxurl;url+=url.indexOf("?")>0?"&":"?",url+="payment="+self.payment_key+"&",url+="gateway="+gateway_id,$.post(url,{action:"wpbdp_ajax",handler:"checkout__load_gateway",_wpnonce:self.nonce},function(res){self.$container.removeClass().addClass("wpbdp-payment-gateway-"+gateway_id+"-form-fields"),self.$container.html(res),self.working=!1})}};wpbdp_checkout.init(),$(".wpbdp-payment-receipt-print").click(function(e){e.preventDefault(),window.print()})});
|
1 |
+
jQuery(function($){var wpbdp_checkout={init:function(){var $form=$("form#wpbdp-checkout-form");if(0!=$form.length){var self=this;this.$form=$form,this.$container=this.$form.find("#wpbdp-checkout-form-fields"),this.payment_key=this.$form.find('input[name="payment"]').val(),this.nonce=this.$form.find('input[name="_wpnonce"]').val(),this.working=!1,this.$form.find('input[name="gateway"]').change(function(){if(!self.working){var gateway=self.$form.find('input[name="gateway"]:checked').val();gateway&&self.load_gateway(gateway)}})}},load_gateway:function(gateway_id){var self=this;self.$container.html(""),self.working=!0;var url=wpbdp_global.ajaxurl;url+=url.indexOf("?")>0?"&":"?",url+="payment="+self.payment_key+"&",url+="gateway="+gateway_id,$.post(url,{action:"wpbdp_ajax",handler:"checkout__load_gateway",_wpnonce:self.nonce},function(res){self.$container.removeClass().addClass("wpbdp-payment-gateway-"+gateway_id+"-form-fields"),self.$container.html(res),self.working=!1,$(window).trigger("wpbdp-payment-gateway-loaded",gateway_id)})}};wpbdp_checkout.init(),$(".wpbdp-payment-receipt-print").click(function(e){e.preventDefault(),window.print()})});
|
assets/js/submit-listing.js
CHANGED
@@ -83,7 +83,10 @@ jQuery(function($) {
|
|
83 |
|
84 |
this.update_plan_list();
|
85 |
this.update_plan_prices();
|
86 |
-
|
|
|
|
|
|
|
87 |
|
88 |
if ( 0 == this.selected_categories.length ) {
|
89 |
this.plans.find( 'input[name="listing_plan"]' ).prop( {
|
@@ -179,6 +182,8 @@ jQuery(function($) {
|
|
179 |
}
|
180 |
});
|
181 |
|
|
|
|
|
182 |
if ( all_cats ) {
|
183 |
this._enable_categories( 'all' );
|
184 |
} else {
|
83 |
|
84 |
this.update_plan_list();
|
85 |
this.update_plan_prices();
|
86 |
+
|
87 |
+
if ( 'checkbox' == this.field_type || this.field.is( '[multiple]' ) ) {
|
88 |
+
this.maybe_limit_category_options();
|
89 |
+
}
|
90 |
|
91 |
if ( 0 == this.selected_categories.length ) {
|
92 |
this.plans.find( 'input[name="listing_plan"]' ).prop( {
|
182 |
}
|
183 |
});
|
184 |
|
185 |
+
console.log( this.available_plans, cats );
|
186 |
+
|
187 |
if ( all_cats ) {
|
188 |
this._enable_categories( 'all' );
|
189 |
} else {
|
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(),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.$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)}))}}),console.log(this.available_plans,cats),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.0.
|
7 |
* Author: D. Rodenbaugh
|
8 |
* Author URI: https://businessdirectoryplugin.com
|
9 |
* Text Domain: WPBDM
|
@@ -57,3 +57,4 @@ function wpbdp() {
|
|
57 |
|
58 |
// For backwards compatibility.
|
59 |
$GLOBALS['wpbdp'] = wpbdp();
|
|
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.0.3
|
7 |
* Author: D. Rodenbaugh
|
8 |
* Author URI: https://businessdirectoryplugin.com
|
9 |
* Text Domain: WPBDM
|
57 |
|
58 |
// For backwards compatibility.
|
59 |
$GLOBALS['wpbdp'] = wpbdp();
|
60 |
+
|
includes/admin/class-admin-listings.php
CHANGED
@@ -498,9 +498,6 @@ class WPBDP_Admin_Listings {
|
|
498 |
$bulk_actions = array('sep0' => '--',
|
499 |
'publish' => _x('Publish Listing', 'admin actions', 'WPBDM'),
|
500 |
'sep1' => '--',
|
501 |
-
'upgradefeatured' => _x('Upgrade to Featured', 'admin actions', 'WPBDM'),
|
502 |
-
'cancelfeatured' => _x('Downgrade to Normal', 'admin actions', 'WPBDM'),
|
503 |
-
'sep2' => '--',
|
504 |
'renewlisting' => _x( 'Renew Listing', 'admin actions', 'WPBDM' )
|
505 |
);
|
506 |
$bulk_actions = apply_filters( 'wpbdp_admin_directory_bulk_actions', $bulk_actions );
|
498 |
$bulk_actions = array('sep0' => '--',
|
499 |
'publish' => _x('Publish Listing', 'admin actions', 'WPBDM'),
|
500 |
'sep1' => '--',
|
|
|
|
|
|
|
501 |
'renewlisting' => _x( 'Renew Listing', 'admin actions', 'WPBDM' )
|
502 |
);
|
503 |
$bulk_actions = apply_filters( 'wpbdp_admin_directory_bulk_actions', $bulk_actions );
|
includes/admin/settings/class-settings-admin.php
CHANGED
@@ -147,7 +147,7 @@ class WPBDP__Settings_Admin {
|
|
147 |
|
148 |
$html = '';
|
149 |
$html .= '<div id="wpbdp-settings-' . $setting['id'] . '" class="wpbdp-settings-setting wpbdp-settings-type-' . $setting['type'] . '" ' . $attrs . '>';
|
150 |
-
$html .= $callback_html;
|
151 |
$html .= '<a name="' . $setting['id'] . '"></a>';
|
152 |
$html .= '</div>';
|
153 |
|
147 |
|
148 |
$html = '';
|
149 |
$html .= '<div id="wpbdp-settings-' . $setting['id'] . '" class="wpbdp-settings-setting wpbdp-settings-type-' . $setting['type'] . '" ' . $attrs . '>';
|
150 |
+
$html .= apply_filters( 'wpbdp_admin_settings_render', $callback_html, $setting );
|
151 |
$html .= '<a name="' . $setting['id'] . '"></a>';
|
152 |
$html .= '</div>';
|
153 |
|
includes/admin/upgrades/migrations/migration-18_0.php
CHANGED
@@ -223,15 +223,15 @@ class WPBDP__Migrations__18_0 extends WPBDP__Migration {
|
|
223 |
'id' => $fee->id,
|
224 |
'label' => $fee->label,
|
225 |
'amount' => $fee->amount,
|
226 |
-
'days' => $fee->days,
|
227 |
-
'images' => $fee->images,
|
228 |
-
'sticky' => $fee->sticky,
|
229 |
'pricing_model' => 'flat',
|
230 |
'supported_categories' => $categories ? $categories : 'all',
|
231 |
-
'weight' => $fee->weight,
|
232 |
-
'enabled' => $fee->enabled,
|
233 |
-
'description' => $fee->description,
|
234 |
-
'tag' => $fee->tag,
|
235 |
'recurring' => ( 0 != $fee->days && $fee->amount > 0.0 && get_option( 'wpbdp-listing-renewal-auto' ) && get_option( 'wpbdp-listing-renewal-auto-dontask' ) ) ? 1 : 0
|
236 |
);
|
237 |
|
@@ -239,6 +239,8 @@ class WPBDP__Migrations__18_0 extends WPBDP__Migration {
|
|
239 |
$exists = (bool) $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->prefix}wpbdp_plans WHERE id = %d", $fee->id ) );
|
240 |
$success = true;
|
241 |
|
|
|
|
|
242 |
if ( $exists ) {
|
243 |
$success = ( false !== $wpdb->update( $wpdb->prefix . 'wpbdp_plans', $row, array( 'id' => $fee->id ) ) );
|
244 |
} else {
|
@@ -360,9 +362,9 @@ class WPBDP__Migrations__18_0 extends WPBDP__Migration {
|
|
360 |
'listing_id' => $listing_id,
|
361 |
'fee_id' => $free_plan->id,
|
362 |
'fee_price' => 0.0,
|
363 |
-
'fee_days' => $free_plan->days,
|
364 |
-
'fee_images' => $free_plan->images,
|
365 |
-
'is_sticky' => $free_plan->sticky,
|
366 |
);
|
367 |
|
368 |
if ( $expiration = $free_plan->calculate_expiration_time() )
|
@@ -483,6 +485,7 @@ class WPBDP__Migrations__18_0 extends WPBDP__Migration {
|
|
483 |
|
484 |
$res['is_recurring'] = 0;
|
485 |
$res['subscription_id'] = '';
|
|
|
486 |
|
487 |
return $res;
|
488 |
}
|
223 |
'id' => $fee->id,
|
224 |
'label' => $fee->label,
|
225 |
'amount' => $fee->amount,
|
226 |
+
'days' => absint( $fee->days ),
|
227 |
+
'images' => ! empty( $fee->images ) ? absint( $fee->images ) : 0,
|
228 |
+
'sticky' => ! empty( $fee->sticky ),
|
229 |
'pricing_model' => 'flat',
|
230 |
'supported_categories' => $categories ? $categories : 'all',
|
231 |
+
'weight' => ! empty( $fee->weight ) ? $fee->weight : 0,
|
232 |
+
'enabled' => ! empty( $fee->enabled ),
|
233 |
+
'description' => ! empty( $fee->description ) ? $fee->description : '',
|
234 |
+
'tag' => ! empty( $fee->tag ) ? $fee->tag : '',
|
235 |
'recurring' => ( 0 != $fee->days && $fee->amount > 0.0 && get_option( 'wpbdp-listing-renewal-auto' ) && get_option( 'wpbdp-listing-renewal-auto-dontask' ) ) ? 1 : 0
|
236 |
);
|
237 |
|
239 |
$exists = (bool) $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->prefix}wpbdp_plans WHERE id = %d", $fee->id ) );
|
240 |
$success = true;
|
241 |
|
242 |
+
global $wpdb;
|
243 |
+
$wpdb->show_errors();
|
244 |
if ( $exists ) {
|
245 |
$success = ( false !== $wpdb->update( $wpdb->prefix . 'wpbdp_plans', $row, array( 'id' => $fee->id ) ) );
|
246 |
} else {
|
362 |
'listing_id' => $listing_id,
|
363 |
'fee_id' => $free_plan->id,
|
364 |
'fee_price' => 0.0,
|
365 |
+
'fee_days' => ! empty( $free_plan->days ) ? $free_plan->days : get_option( 'wpbdp-listing-duration', 0 ),
|
366 |
+
'fee_images' => ! empty( $free_plan->images ) ? absint( $free_plan->images ) : get_option( 'wpbdp-free-images', 0 ),
|
367 |
+
'is_sticky' => ! empty( $free_plan->sticky ),
|
368 |
);
|
369 |
|
370 |
if ( $expiration = $free_plan->calculate_expiration_time() )
|
485 |
|
486 |
$res['is_recurring'] = 0;
|
487 |
$res['subscription_id'] = '';
|
488 |
+
$res['is_sticky'] = ! empty( $res['is_sticky'] );
|
489 |
|
490 |
return $res;
|
491 |
}
|
includes/class-dispatcher.php
CHANGED
@@ -115,6 +115,8 @@ class WPBDP__Dispatcher {
|
|
115 |
if ( ! method_exists( $view, $function ) )
|
116 |
return;
|
117 |
|
|
|
|
|
118 |
return call_user_func( array( $view, $function ) );
|
119 |
}
|
120 |
|
115 |
if ( ! method_exists( $view, $function ) )
|
116 |
return;
|
117 |
|
118 |
+
do_action( 'wpbdp_before_ajax_dispatch', $handler );
|
119 |
+
|
120 |
return call_user_func( array( $view, $function ) );
|
121 |
}
|
122 |
|
includes/class-fee-plan.php
CHANGED
@@ -32,11 +32,11 @@ final class WPBDP__Fee_Plan {
|
|
32 |
}
|
33 |
}
|
34 |
|
35 |
-
public function __get( $key ) {
|
36 |
if ( method_exists( $this, 'get_' . $key ) ) {
|
37 |
$value = call_user_func( array( $this, 'get_' . $key ) );
|
38 |
} else {
|
39 |
-
$value =
|
40 |
}
|
41 |
|
42 |
return $value;
|
32 |
}
|
33 |
}
|
34 |
|
35 |
+
public function &__get( $key ) {
|
36 |
if ( method_exists( $this, 'get_' . $key ) ) {
|
37 |
$value = call_user_func( array( $this, 'get_' . $key ) );
|
38 |
} else {
|
39 |
+
$value = &$this->{$key};
|
40 |
}
|
41 |
|
42 |
return $value;
|
includes/class-module.php
CHANGED
@@ -36,6 +36,19 @@ final class WPBDP__Module {
|
|
36 |
$this->text_domain = empty( $obj->text_domain ) ? $plugin_data[2] : $obj->text_domain;
|
37 |
$this->text_domain_path = empty( $obj->domain_path ) ? $plugin_data[3] : $obj->domain_path;
|
38 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
$this->required_bd_version = isset( $obj->required_bd_version ) ? $obj->required_bd_version : '';
|
40 |
$this->is_premium_module = ! in_array( $this->id, array( 'categories' ), true );
|
41 |
}
|
36 |
$this->text_domain = empty( $obj->text_domain ) ? $plugin_data[2] : $obj->text_domain;
|
37 |
$this->text_domain_path = empty( $obj->domain_path ) ? $plugin_data[3] : $obj->domain_path;
|
38 |
|
39 |
+
if ( empty( $this->text_domain ) ) {
|
40 |
+
$this->text_domain = 'wpbdp-' . $this->id;
|
41 |
+
}
|
42 |
+
|
43 |
+
if ( empty( $this->text_domain_path ) ) {
|
44 |
+
foreach ( array( 'translations', 'languages' ) as $d ) {
|
45 |
+
if ( is_dir( plugin_dir_path( $this->file ) . $d ) ) {
|
46 |
+
$this->text_domain_path = '/' . $d;
|
47 |
+
break;
|
48 |
+
}
|
49 |
+
}
|
50 |
+
}
|
51 |
+
|
52 |
$this->required_bd_version = isset( $obj->required_bd_version ) ? $obj->required_bd_version : '';
|
53 |
$this->is_premium_module = ! in_array( $this->id, array( 'categories' ), true );
|
54 |
}
|
includes/class-wpbdp.php
CHANGED
@@ -19,7 +19,7 @@ final class WPBDP {
|
|
19 |
}
|
20 |
|
21 |
private function setup_constants() {
|
22 |
-
define( 'WPBDP_VERSION', '5.0.
|
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.0.3' );
|
23 |
|
24 |
define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
|
25 |
define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
|
includes/compatibility/class-wpml-compat.php
CHANGED
@@ -6,19 +6,21 @@ class WPBDP_WPML_Compat {
|
|
6 |
function __construct() {
|
7 |
$this->wpml = $GLOBALS['sitepress'];
|
8 |
|
9 |
-
if ( ! is_admin() ) {
|
10 |
add_filter( 'wpbdp_get_page_id', array( &$this, 'page_id'), 10, 2 );
|
11 |
|
12 |
add_filter( 'wpbdp_listing_link', array( &$this, 'add_lang_to_link' ) );
|
13 |
add_filter( 'wpbdp_category_link', array( &$this, 'add_lang_to_link' ) );
|
14 |
add_filter( 'wpbdp_url_base_url', array( &$this, 'fix_get_page_link' ), 10, 2 );
|
15 |
add_filter( 'wpbdp_url', array( &$this, 'correct_page_link' ), 10, 3 );
|
|
|
16 |
|
17 |
add_filter( 'wpbdp_render_field_label', array( &$this, 'translate_form_field_label' ), 10, 2 );
|
18 |
add_filter( 'wpbdp_render_field_description', array( &$this, 'translate_form_field_description' ), 10, 2 );
|
19 |
add_filter( 'wpbdp_display_field_label', array( &$this, 'translate_form_field_label' ), 10, 2 );
|
20 |
|
21 |
add_filter( 'wpbdp_category_fee_selection_label', array( &$this, 'translate_fee_label' ), 10, 2 );
|
|
|
22 |
|
23 |
add_filter( 'icl_ls_languages', array( &$this, 'language_switcher' ) );
|
24 |
|
@@ -27,6 +29,8 @@ class WPBDP_WPML_Compat {
|
|
27 |
|
28 |
// Work around non-unique slugs for pages.
|
29 |
add_action( 'wpbdp_query_flags', array( $this, 'maybe_change_query' ) );
|
|
|
|
|
30 |
}
|
31 |
|
32 |
add_action( 'admin_footer-directory-admin_page_wpbdp_admin_formfields', array( &$this, 'register_form_fields_strings' ) );
|
@@ -37,6 +41,10 @@ class WPBDP_WPML_Compat {
|
|
37 |
add_action( 'wpbdp_regions_clean_cache', array( &$this, 'clean_cache_per_lang' ) );
|
38 |
}
|
39 |
|
|
|
|
|
|
|
|
|
40 |
function get_current_language() {
|
41 |
return $this->wpml->get_current_language();
|
42 |
}
|
@@ -114,6 +122,23 @@ class WPBDP_WPML_Compat {
|
|
114 |
return $link;
|
115 |
}
|
116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
function correct_page_link( $link, $name = '', $arg0 = '' ) {
|
118 |
$lang = $this->get_current_language();
|
119 |
|
@@ -264,6 +289,14 @@ class WPBDP_WPML_Compat {
|
|
264 |
$query->set( 'page_id', $trans_id );
|
265 |
}
|
266 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
267 |
// {{{ Form Fields integration.
|
268 |
|
269 |
function register_form_fields_strings() {
|
@@ -315,7 +348,10 @@ class WPBDP_WPML_Compat {
|
|
315 |
foreach ( $fees as &$f ) {
|
316 |
icl_register_string( 'Business Directory Plugin',
|
317 |
sprintf( 'Fee label (#%d)', $f->id ),
|
318 |
-
|
|
|
|
|
|
|
319 |
}
|
320 |
}
|
321 |
|
@@ -328,6 +364,15 @@ class WPBDP_WPML_Compat {
|
|
328 |
$fee->label );
|
329 |
}
|
330 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
331 |
// }}}
|
332 |
|
333 |
// Regions. {{{
|
6 |
function __construct() {
|
7 |
$this->wpml = $GLOBALS['sitepress'];
|
8 |
|
9 |
+
if ( ! is_admin() || $this->is_doing_ajax() ) {
|
10 |
add_filter( 'wpbdp_get_page_id', array( &$this, 'page_id'), 10, 2 );
|
11 |
|
12 |
add_filter( 'wpbdp_listing_link', array( &$this, 'add_lang_to_link' ) );
|
13 |
add_filter( 'wpbdp_category_link', array( &$this, 'add_lang_to_link' ) );
|
14 |
add_filter( 'wpbdp_url_base_url', array( &$this, 'fix_get_page_link' ), 10, 2 );
|
15 |
add_filter( 'wpbdp_url', array( &$this, 'correct_page_link' ), 10, 3 );
|
16 |
+
add_filter( 'wpbdp_ajax_url', array( $this, 'filter_ajax_url' ) );
|
17 |
|
18 |
add_filter( 'wpbdp_render_field_label', array( &$this, 'translate_form_field_label' ), 10, 2 );
|
19 |
add_filter( 'wpbdp_render_field_description', array( &$this, 'translate_form_field_description' ), 10, 2 );
|
20 |
add_filter( 'wpbdp_display_field_label', array( &$this, 'translate_form_field_label' ), 10, 2 );
|
21 |
|
22 |
add_filter( 'wpbdp_category_fee_selection_label', array( &$this, 'translate_fee_label' ), 10, 2 );
|
23 |
+
add_filter( 'wpbdp_plan_description_for_display', array( $this, 'translate_fee_description' ), 10, 2 );
|
24 |
|
25 |
add_filter( 'icl_ls_languages', array( &$this, 'language_switcher' ) );
|
26 |
|
29 |
|
30 |
// Work around non-unique slugs for pages.
|
31 |
add_action( 'wpbdp_query_flags', array( $this, 'maybe_change_query' ) );
|
32 |
+
|
33 |
+
add_action( 'wpbdp_before_ajax_dispatch', array( $this, 'before_ajax_dispatch' ) );
|
34 |
}
|
35 |
|
36 |
add_action( 'admin_footer-directory-admin_page_wpbdp_admin_formfields', array( &$this, 'register_form_fields_strings' ) );
|
41 |
add_action( 'wpbdp_regions_clean_cache', array( &$this, 'clean_cache_per_lang' ) );
|
42 |
}
|
43 |
|
44 |
+
protected function is_doing_ajax() {
|
45 |
+
return defined( 'DOING_AJAX' ) && DOING_AJAX;
|
46 |
+
}
|
47 |
+
|
48 |
function get_current_language() {
|
49 |
return $this->wpml->get_current_language();
|
50 |
}
|
122 |
return $link;
|
123 |
}
|
124 |
|
125 |
+
/**
|
126 |
+
* Add current language to the URL used in BD's ajax requests.
|
127 |
+
*
|
128 |
+
* @param $ajax_url string Default value for Ajax URL.
|
129 |
+
*
|
130 |
+
* @since 5.0.3
|
131 |
+
*/
|
132 |
+
public function filter_ajax_url( $ajax_url ) {
|
133 |
+
$lang = $this->get_current_language();
|
134 |
+
|
135 |
+
if ( ! $lang ) {
|
136 |
+
return $ajax_url;
|
137 |
+
}
|
138 |
+
|
139 |
+
return add_query_arg( 'lang', $lang, $ajax_url );
|
140 |
+
}
|
141 |
+
|
142 |
function correct_page_link( $link, $name = '', $arg0 = '' ) {
|
143 |
$lang = $this->get_current_language();
|
144 |
|
289 |
$query->set( 'page_id', $trans_id );
|
290 |
}
|
291 |
|
292 |
+
public function before_ajax_dispatch( $handler ) {
|
293 |
+
if ( empty( $_GET['lang'] ) ) {
|
294 |
+
return;
|
295 |
+
}
|
296 |
+
|
297 |
+
do_action( 'wpml_switch_language', $_GET['lang'] );
|
298 |
+
}
|
299 |
+
|
300 |
// {{{ Form Fields integration.
|
301 |
|
302 |
function register_form_fields_strings() {
|
348 |
foreach ( $fees as &$f ) {
|
349 |
icl_register_string( 'Business Directory Plugin',
|
350 |
sprintf( 'Fee label (#%d)', $f->id ),
|
351 |
+
$f->label );
|
352 |
+
icl_register_string( 'Business Directory Plugin',
|
353 |
+
sprintf( 'Fee description (#%d)', $f->id ),
|
354 |
+
$f->description );
|
355 |
}
|
356 |
}
|
357 |
|
364 |
$fee->label );
|
365 |
}
|
366 |
|
367 |
+
function translate_fee_description( $desc, $fee ) {
|
368 |
+
if ( ! function_exists( 'icl_t' ) )
|
369 |
+
return $desc;
|
370 |
+
|
371 |
+
return icl_t( 'Business Directory Plugin',
|
372 |
+
sprintf( 'Fee description (#%d)', $fee->id ),
|
373 |
+
$fee->description );
|
374 |
+
}
|
375 |
+
|
376 |
// }}}
|
377 |
|
378 |
// Regions. {{{
|
includes/functions.php
CHANGED
@@ -591,6 +591,15 @@ function wpbdp_url( $pathorview = '/', $args = array() ) {
|
|
591 |
return $url;
|
592 |
}
|
593 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
594 |
// TODO: update before themes-release
|
595 |
// TODO: Sometimes this functions is called from
|
596 |
// WPBDP_WPML_Compat->language_switcher even though no category
|
591 |
return $url;
|
592 |
}
|
593 |
|
594 |
+
/**
|
595 |
+
* Generates Ajax URL and allows plugins to alter it through a filter.
|
596 |
+
*
|
597 |
+
* @since 5.0.3
|
598 |
+
*/
|
599 |
+
function wpbdp_ajax_url() {
|
600 |
+
return apply_filters( 'wpbdp_ajax_url', admin_url( 'admin-ajax.php' ) );
|
601 |
+
}
|
602 |
+
|
603 |
// TODO: update before themes-release
|
604 |
// TODO: Sometimes this functions is called from
|
605 |
// WPBDP_WPML_Compat->language_switcher even though no category
|
includes/views/login.php
CHANGED
@@ -7,16 +7,18 @@ class WPBDP__Views__Login extends WPBDP__View {
|
|
7 |
public function dispatch() {
|
8 |
$redirect_to = ! empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : wp_get_referer();
|
9 |
$redirect_to = remove_query_arg( 'access_key_hash', $redirect_to );
|
10 |
-
|
11 |
$key_access_enabled = wpbdp_get_option( 'enable-key-access' );
|
12 |
|
13 |
-
if ( is_user_logged_in() )
|
14 |
return $this->_redirect( $redirect_to );
|
|
|
15 |
|
16 |
$login_url = trim( wpbdp_get_option( 'login-url' ) );
|
17 |
|
18 |
-
if ( $login_url )
|
19 |
-
return $this->_redirect( add_query_arg( 'redirect_to', $redirect_to, $login_url ) );
|
|
|
20 |
|
21 |
if ( ! empty( $_POST['method'] ) && 'access_key' == $_POST['method'] ) {
|
22 |
$email = trim( $_POST['email'] );
|
@@ -32,6 +34,7 @@ class WPBDP__Views__Login extends WPBDP__View {
|
|
32 |
}
|
33 |
|
34 |
$params = array(
|
|
|
35 |
'access_key_enabled' => $key_access_enabled,
|
36 |
'request_access_key_url' => wpbdp_url( 'request_access_keys' ),
|
37 |
);
|
7 |
public function dispatch() {
|
8 |
$redirect_to = ! empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : wp_get_referer();
|
9 |
$redirect_to = remove_query_arg( 'access_key_hash', $redirect_to );
|
10 |
+
|
11 |
$key_access_enabled = wpbdp_get_option( 'enable-key-access' );
|
12 |
|
13 |
+
if ( is_user_logged_in() ) {
|
14 |
return $this->_redirect( $redirect_to );
|
15 |
+
}
|
16 |
|
17 |
$login_url = trim( wpbdp_get_option( 'login-url' ) );
|
18 |
|
19 |
+
if ( $login_url ) {
|
20 |
+
return $this->_redirect( add_query_arg( 'redirect_to', urlencode( $redirect_to ), $login_url ) );
|
21 |
+
}
|
22 |
|
23 |
if ( ! empty( $_POST['method'] ) && 'access_key' == $_POST['method'] ) {
|
24 |
$email = trim( $_POST['email'] );
|
34 |
}
|
35 |
|
36 |
$params = array(
|
37 |
+
'redirect_to' => $redirect_to,
|
38 |
'access_key_enabled' => $key_access_enabled,
|
39 |
'request_access_key_url' => wpbdp_url( 'request_access_keys' ),
|
40 |
);
|
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-
|
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"
|
@@ -1075,16 +1075,6 @@ msgstr "نشر إعلان"
|
|
1075 |
|
1076 |
#: includes/admin/class-admin-listings.php:501
|
1077 |
msgctxt "admin actions"
|
1078 |
-
msgid "Upgrade to Featured"
|
1079 |
-
msgstr "ترقية إلى الخطة المميزة"
|
1080 |
-
|
1081 |
-
#: includes/admin/class-admin-listings.php:502
|
1082 |
-
msgctxt "admin actions"
|
1083 |
-
msgid "Downgrade to Normal"
|
1084 |
-
msgstr "الرجوع إلى النظام العادي"
|
1085 |
-
|
1086 |
-
#: includes/admin/class-admin-listings.php:504
|
1087 |
-
msgctxt "admin actions"
|
1088 |
msgid "Renew Listing"
|
1089 |
msgstr "تجديد الإعلان"
|
1090 |
|
@@ -2024,7 +2014,7 @@ msgctxt "fees admin"
|
|
2024 |
msgid "Status"
|
2025 |
msgstr "الحالة"
|
2026 |
|
2027 |
-
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:
|
2028 |
msgctxt "fees admin"
|
2029 |
msgid "Add Listing Fee"
|
2030 |
msgstr "إضافة رسوم الإعلان"
|
@@ -2193,7 +2183,7 @@ msgctxt "fees admin"
|
|
2193 |
msgid "Extra amount (per category)"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
-
#: templates/admin/fees-form.tpl.php:
|
2197 |
#, fuzzy
|
2198 |
msgctxt "fees admin"
|
2199 |
msgid "Save Changes"
|
@@ -4403,13 +4393,13 @@ msgid "Author"
|
|
4403 |
msgstr "الكاتب"
|
4404 |
|
4405 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
4406 |
-
#: includes/functions.php:
|
4407 |
msgctxt "admin settings"
|
4408 |
msgid "Date posted"
|
4409 |
msgstr "تاريخ النشر"
|
4410 |
|
4411 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
4412 |
-
#: includes/functions.php:
|
4413 |
msgctxt "admin settings"
|
4414 |
msgid "Date last modified"
|
4415 |
msgstr "تاريخ آخر تعديل"
|
@@ -4700,12 +4690,12 @@ msgid ""
|
|
4700 |
"not activated."
|
4701 |
msgstr "تعذر نسخ إضافة التوافق أجاكس \"%s\". لم يتم تفعيل وضع التوافق."
|
4702 |
|
4703 |
-
#: includes/functions.php:
|
4704 |
msgctxt "admin settings"
|
4705 |
msgid "User"
|
4706 |
msgstr "عضو"
|
4707 |
|
4708 |
-
#: includes/functions.php:
|
4709 |
msgctxt "admin settings"
|
4710 |
msgid "User registration date"
|
4711 |
msgstr "تاريخ تسجيل العضو"
|
@@ -5011,24 +5001,24 @@ msgctxt "installer"
|
|
5011 |
msgid "Migrating fee plans..."
|
5012 |
msgstr "ترخيص مفعل"
|
5013 |
|
5014 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5015 |
#, fuzzy
|
5016 |
msgctxt "installer"
|
5017 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
5018 |
msgstr "تعذر تحديث القالب : %s"
|
5019 |
|
5020 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5021 |
#, fuzzy
|
5022 |
msgctxt "installer"
|
5023 |
msgid "! Could not migrate payment #%d"
|
5024 |
msgstr "تعذر معالجة الدفع."
|
5025 |
|
5026 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5027 |
msgctxt "installer"
|
5028 |
msgid "Updating payment items format: %d items remaining..."
|
5029 |
msgstr ""
|
5030 |
|
5031 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5032 |
msgctxt "installer"
|
5033 |
msgid "Migrating listing information: %d items remaining..."
|
5034 |
msgstr ""
|
@@ -6606,7 +6596,7 @@ msgctxt "templates"
|
|
6606 |
msgid "Featured Listing"
|
6607 |
msgstr "إعلان مميز"
|
6608 |
|
6609 |
-
#: templates/login.tpl.php:
|
6610 |
msgctxt "templates"
|
6611 |
msgid ""
|
6612 |
"You are not currently logged in. Please login or register first. When "
|
@@ -6617,6 +6607,16 @@ msgstr ""
|
|
6617 |
"تتلقى رسالة بريد إلكتروني للتفعيل. يجب التأكد من مراجعة البريد المزعج الخاص "
|
6618 |
"بك إذا لم تراه في بريدك الإلكتروني خلال 60 دقيقة."
|
6619 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6620 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
6621 |
msgctxt "templates"
|
6622 |
msgid ""
|
@@ -6658,16 +6658,6 @@ msgctxt "templates"
|
|
6658 |
msgid "Login"
|
6659 |
msgstr "تسجيل الدخول"
|
6660 |
|
6661 |
-
#: templates/parts/login-required.tpl.php:31
|
6662 |
-
msgctxt "templates"
|
6663 |
-
msgid "Not yet registered?"
|
6664 |
-
msgstr "لم تتسجل بعد؟"
|
6665 |
-
|
6666 |
-
#: templates/parts/login-required.tpl.php:33
|
6667 |
-
msgctxt "templates"
|
6668 |
-
msgid "Lost your password?"
|
6669 |
-
msgstr "فقدت كلمة المرور؟"
|
6670 |
-
|
6671 |
#: templates/renew-listing.tpl.php:3
|
6672 |
msgctxt "templates"
|
6673 |
msgid "Renew Listing"
|
@@ -6979,49 +6969,49 @@ msgctxt "contact form"
|
|
6979 |
msgid "This contact form is temporarily disabled. Please try again later."
|
6980 |
msgstr "نموذج الاتصال هذا معطل مؤقتا. المرجو المحاولة مرة أخرى لاحقا."
|
6981 |
|
6982 |
-
#: includes/views/login.php:
|
6983 |
#, fuzzy
|
6984 |
msgctxt "views:login"
|
6985 |
msgid "Please enter a valid e-mail/access key combination."
|
6986 |
msgstr "المرجو إدخال بريد إلكتروني صحيح."
|
6987 |
|
6988 |
-
#: templates/login.tpl.php:
|
6989 |
#, fuzzy
|
6990 |
msgctxt "views:login"
|
6991 |
msgid "Login"
|
6992 |
msgstr "تسجيل الدخول"
|
6993 |
|
6994 |
-
#: templates/login.tpl.php:
|
6995 |
#, fuzzy
|
6996 |
msgctxt "views:login"
|
6997 |
msgid "... or use an Access Key"
|
6998 |
msgstr "مفاتيح وصول الإعلان"
|
6999 |
|
7000 |
-
#: templates/login.tpl.php:
|
7001 |
#, fuzzy
|
7002 |
msgctxt "views:login"
|
7003 |
msgid "Please enter your access key and e-mail address."
|
7004 |
msgstr "المرجو إدخال بريد إلكتروني صحيح."
|
7005 |
|
7006 |
-
#: templates/login.tpl.php:
|
7007 |
#, fuzzy
|
7008 |
msgctxt "views:login"
|
7009 |
msgid "E-Mail Address"
|
7010 |
msgstr "عنوان البريد الإلكتروني:"
|
7011 |
|
7012 |
-
#: templates/login.tpl.php:
|
7013 |
#, fuzzy
|
7014 |
msgctxt "views:login"
|
7015 |
msgid "Access Key"
|
7016 |
msgstr "مفتاح الوصول"
|
7017 |
|
7018 |
-
#: templates/login.tpl.php:
|
7019 |
#, fuzzy
|
7020 |
msgctxt "views:login"
|
7021 |
msgid "Use Access Key"
|
7022 |
msgstr "مفتاح الوصول"
|
7023 |
|
7024 |
-
#: templates/login.tpl.php:
|
7025 |
msgctxt "views:login"
|
7026 |
msgid "Request access key?"
|
7027 |
msgstr ""
|
@@ -8032,6 +8022,14 @@ msgctxt "themes/default"
|
|
8032 |
msgid "Address"
|
8033 |
msgstr "العنوان"
|
8034 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8035 |
#~ msgctxt "admin csv-export"
|
8036 |
#~ msgid "Sticky/featured status"
|
8037 |
#~ 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-01 21:27:46+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"
|
1075 |
|
1076 |
#: includes/admin/class-admin-listings.php:501
|
1077 |
msgctxt "admin actions"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1078 |
msgid "Renew Listing"
|
1079 |
msgstr "تجديد الإعلان"
|
1080 |
|
2014 |
msgid "Status"
|
2015 |
msgstr "الحالة"
|
2016 |
|
2017 |
+
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:207
|
2018 |
msgctxt "fees admin"
|
2019 |
msgid "Add Listing Fee"
|
2020 |
msgstr "إضافة رسوم الإعلان"
|
2183 |
msgid "Extra amount (per category)"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: templates/admin/fees-form.tpl.php:207
|
2187 |
#, fuzzy
|
2188 |
msgctxt "fees admin"
|
2189 |
msgid "Save Changes"
|
4393 |
msgstr "الكاتب"
|
4394 |
|
4395 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
4396 |
+
#: includes/functions.php:981
|
4397 |
msgctxt "admin settings"
|
4398 |
msgid "Date posted"
|
4399 |
msgstr "تاريخ النشر"
|
4400 |
|
4401 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
4402 |
+
#: includes/functions.php:982
|
4403 |
msgctxt "admin settings"
|
4404 |
msgid "Date last modified"
|
4405 |
msgstr "تاريخ آخر تعديل"
|
4690 |
"not activated."
|
4691 |
msgstr "تعذر نسخ إضافة التوافق أجاكس \"%s\". لم يتم تفعيل وضع التوافق."
|
4692 |
|
4693 |
+
#: includes/functions.php:979
|
4694 |
msgctxt "admin settings"
|
4695 |
msgid "User"
|
4696 |
msgstr "عضو"
|
4697 |
|
4698 |
+
#: includes/functions.php:980
|
4699 |
msgctxt "admin settings"
|
4700 |
msgid "User registration date"
|
4701 |
msgstr "تاريخ تسجيل العضو"
|
5001 |
msgid "Migrating fee plans..."
|
5002 |
msgstr "ترخيص مفعل"
|
5003 |
|
5004 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:251
|
5005 |
#, fuzzy
|
5006 |
msgctxt "installer"
|
5007 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
5008 |
msgstr "تعذر تحديث القالب : %s"
|
5009 |
|
5010 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:318
|
5011 |
#, fuzzy
|
5012 |
msgctxt "installer"
|
5013 |
msgid "! Could not migrate payment #%d"
|
5014 |
msgstr "تعذر معالجة الدفع."
|
5015 |
|
5016 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:323
|
5017 |
msgctxt "installer"
|
5018 |
msgid "Updating payment items format: %d items remaining..."
|
5019 |
msgstr ""
|
5020 |
|
5021 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:385
|
5022 |
msgctxt "installer"
|
5023 |
msgid "Migrating listing information: %d items remaining..."
|
5024 |
msgstr ""
|
6596 |
msgid "Featured Listing"
|
6597 |
msgstr "إعلان مميز"
|
6598 |
|
6599 |
+
#: templates/login.tpl.php:21 templates/parts/login-required.tpl.php:7
|
6600 |
msgctxt "templates"
|
6601 |
msgid ""
|
6602 |
"You are not currently logged in. Please login or register first. When "
|
6607 |
"تتلقى رسالة بريد إلكتروني للتفعيل. يجب التأكد من مراجعة البريد المزعج الخاص "
|
6608 |
"بك إذا لم تراه في بريدك الإلكتروني خلال 60 دقيقة."
|
6609 |
|
6610 |
+
#: templates/login.tpl.php:32 templates/parts/login-required.tpl.php:31
|
6611 |
+
msgctxt "templates"
|
6612 |
+
msgid "Not yet registered?"
|
6613 |
+
msgstr "لم تتسجل بعد؟"
|
6614 |
+
|
6615 |
+
#: templates/login.tpl.php:34 templates/parts/login-required.tpl.php:33
|
6616 |
+
msgctxt "templates"
|
6617 |
+
msgid "Lost your password?"
|
6618 |
+
msgstr "فقدت كلمة المرور؟"
|
6619 |
+
|
6620 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
6621 |
msgctxt "templates"
|
6622 |
msgid ""
|
6658 |
msgid "Login"
|
6659 |
msgstr "تسجيل الدخول"
|
6660 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6661 |
#: templates/renew-listing.tpl.php:3
|
6662 |
msgctxt "templates"
|
6663 |
msgid "Renew Listing"
|
6969 |
msgid "This contact form is temporarily disabled. Please try again later."
|
6970 |
msgstr "نموذج الاتصال هذا معطل مؤقتا. المرجو المحاولة مرة أخرى لاحقا."
|
6971 |
|
6972 |
+
#: includes/views/login.php:32
|
6973 |
#, fuzzy
|
6974 |
msgctxt "views:login"
|
6975 |
msgid "Please enter a valid e-mail/access key combination."
|
6976 |
msgstr "المرجو إدخال بريد إلكتروني صحيح."
|
6977 |
|
6978 |
+
#: templates/login.tpl.php:27
|
6979 |
#, fuzzy
|
6980 |
msgctxt "views:login"
|
6981 |
msgid "Login"
|
6982 |
msgstr "تسجيل الدخول"
|
6983 |
|
6984 |
+
#: templates/login.tpl.php:40
|
6985 |
#, fuzzy
|
6986 |
msgctxt "views:login"
|
6987 |
msgid "... or use an Access Key"
|
6988 |
msgstr "مفاتيح وصول الإعلان"
|
6989 |
|
6990 |
+
#: templates/login.tpl.php:41
|
6991 |
#, fuzzy
|
6992 |
msgctxt "views:login"
|
6993 |
msgid "Please enter your access key and e-mail address."
|
6994 |
msgstr "المرجو إدخال بريد إلكتروني صحيح."
|
6995 |
|
6996 |
+
#: templates/login.tpl.php:45
|
6997 |
#, fuzzy
|
6998 |
msgctxt "views:login"
|
6999 |
msgid "E-Mail Address"
|
7000 |
msgstr "عنوان البريد الإلكتروني:"
|
7001 |
|
7002 |
+
#: templates/login.tpl.php:46
|
7003 |
#, fuzzy
|
7004 |
msgctxt "views:login"
|
7005 |
msgid "Access Key"
|
7006 |
msgstr "مفتاح الوصول"
|
7007 |
|
7008 |
+
#: templates/login.tpl.php:47
|
7009 |
#, fuzzy
|
7010 |
msgctxt "views:login"
|
7011 |
msgid "Use Access Key"
|
7012 |
msgstr "مفتاح الوصول"
|
7013 |
|
7014 |
+
#: templates/login.tpl.php:48
|
7015 |
msgctxt "views:login"
|
7016 |
msgid "Request access key?"
|
7017 |
msgstr ""
|
8022 |
msgid "Address"
|
8023 |
msgstr "العنوان"
|
8024 |
|
8025 |
+
#~ msgctxt "admin actions"
|
8026 |
+
#~ msgid "Upgrade to Featured"
|
8027 |
+
#~ msgstr "ترقية إلى الخطة المميزة"
|
8028 |
+
|
8029 |
+
#~ msgctxt "admin actions"
|
8030 |
+
#~ msgid "Downgrade to Normal"
|
8031 |
+
#~ msgstr "الرجوع إلى النظام العادي"
|
8032 |
+
|
8033 |
#~ msgctxt "admin csv-export"
|
8034 |
#~ msgid "Sticky/featured status"
|
8035 |
#~ 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-
|
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."
|
@@ -1090,16 +1090,6 @@ msgstr "Eintrag veröffentlichen"
|
|
1090 |
|
1091 |
#: includes/admin/class-admin-listings.php:501
|
1092 |
msgctxt "admin actions"
|
1093 |
-
msgid "Upgrade to Featured"
|
1094 |
-
msgstr "Aktualisieren auf Eingestellt"
|
1095 |
-
|
1096 |
-
#: includes/admin/class-admin-listings.php:502
|
1097 |
-
msgctxt "admin actions"
|
1098 |
-
msgid "Downgrade to Normal"
|
1099 |
-
msgstr "Zurücksetzen auf Normal"
|
1100 |
-
|
1101 |
-
#: includes/admin/class-admin-listings.php:504
|
1102 |
-
msgctxt "admin actions"
|
1103 |
msgid "Renew Listing"
|
1104 |
msgstr "Eintrag erneuern"
|
1105 |
|
@@ -2062,7 +2052,7 @@ msgctxt "fees admin"
|
|
2062 |
msgid "Status"
|
2063 |
msgstr "Status"
|
2064 |
|
2065 |
-
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:
|
2066 |
msgctxt "fees admin"
|
2067 |
msgid "Add Listing Fee"
|
2068 |
msgstr "Preispaket hinzufügen"
|
@@ -2231,7 +2221,7 @@ msgctxt "fees admin"
|
|
2231 |
msgid "Extra amount (per category)"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
-
#: templates/admin/fees-form.tpl.php:
|
2235 |
#, fuzzy
|
2236 |
msgctxt "fees admin"
|
2237 |
msgid "Save Changes"
|
@@ -4398,13 +4388,13 @@ msgid "Author"
|
|
4398 |
msgstr "Author"
|
4399 |
|
4400 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
4401 |
-
#: includes/functions.php:
|
4402 |
msgctxt "admin settings"
|
4403 |
msgid "Date posted"
|
4404 |
msgstr "Datum gepostet"
|
4405 |
|
4406 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
4407 |
-
#: includes/functions.php:
|
4408 |
msgctxt "admin settings"
|
4409 |
msgid "Date last modified"
|
4410 |
msgstr "Datum zuletzt verändert"
|
@@ -4694,12 +4684,12 @@ msgid ""
|
|
4694 |
"not activated."
|
4695 |
msgstr ""
|
4696 |
|
4697 |
-
#: includes/functions.php:
|
4698 |
msgctxt "admin settings"
|
4699 |
msgid "User"
|
4700 |
msgstr "Benutzer"
|
4701 |
|
4702 |
-
#: includes/functions.php:
|
4703 |
msgctxt "admin settings"
|
4704 |
msgid "User registration date"
|
4705 |
msgstr "Eintrag Enddatum"
|
@@ -5003,24 +4993,24 @@ msgctxt "installer"
|
|
5003 |
msgid "Migrating fee plans..."
|
5004 |
msgstr "Aktiviere Lizenz..."
|
5005 |
|
5006 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5007 |
#, fuzzy
|
5008 |
msgctxt "installer"
|
5009 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
5010 |
msgstr "Konnte Lizenz nicht deaktivieren: %s"
|
5011 |
|
5012 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5013 |
#, fuzzy
|
5014 |
msgctxt "installer"
|
5015 |
msgid "! Could not migrate payment #%d"
|
5016 |
msgstr "Bezahlung ausführen"
|
5017 |
|
5018 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5019 |
msgctxt "installer"
|
5020 |
msgid "Updating payment items format: %d items remaining..."
|
5021 |
msgstr ""
|
5022 |
|
5023 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5024 |
msgctxt "installer"
|
5025 |
msgid "Migrating listing information: %d items remaining..."
|
5026 |
msgstr ""
|
@@ -6601,7 +6591,7 @@ msgctxt "templates"
|
|
6601 |
msgid "Featured Listing"
|
6602 |
msgstr "Hervorgehobene Einträge"
|
6603 |
|
6604 |
-
#: templates/login.tpl.php:
|
6605 |
msgctxt "templates"
|
6606 |
msgid ""
|
6607 |
"You are not currently logged in. Please login or register first. When "
|
@@ -6613,6 +6603,16 @@ msgstr ""
|
|
6613 |
"Prüfen Sie auch Ihr Spam Postfach, wenn die E-mail nicht innerhalb von 60 "
|
6614 |
"Minuten in Ihrem Postfach ist."
|
6615 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6616 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
6617 |
msgctxt "templates"
|
6618 |
msgid ""
|
@@ -6654,16 +6654,6 @@ msgctxt "templates"
|
|
6654 |
msgid "Login"
|
6655 |
msgstr "Login"
|
6656 |
|
6657 |
-
#: templates/parts/login-required.tpl.php:31
|
6658 |
-
msgctxt "templates"
|
6659 |
-
msgid "Not yet registered?"
|
6660 |
-
msgstr "Noch nicht registriert?"
|
6661 |
-
|
6662 |
-
#: templates/parts/login-required.tpl.php:33
|
6663 |
-
msgctxt "templates"
|
6664 |
-
msgid "Lost your password?"
|
6665 |
-
msgstr "Passwort verloren?"
|
6666 |
-
|
6667 |
#: templates/renew-listing.tpl.php:3
|
6668 |
msgctxt "templates"
|
6669 |
msgid "Renew Listing"
|
@@ -6985,49 +6975,49 @@ msgstr ""
|
|
6985 |
"Diese Kontaktform ist momentan temporär deaktiviert. Bitte versuchen Sie es "
|
6986 |
"später erneut."
|
6987 |
|
6988 |
-
#: includes/views/login.php:
|
6989 |
#, fuzzy
|
6990 |
msgctxt "views:login"
|
6991 |
msgid "Please enter a valid e-mail/access key combination."
|
6992 |
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
6993 |
|
6994 |
-
#: templates/login.tpl.php:
|
6995 |
#, fuzzy
|
6996 |
msgctxt "views:login"
|
6997 |
msgid "Login"
|
6998 |
msgstr "Login"
|
6999 |
|
7000 |
-
#: templates/login.tpl.php:
|
7001 |
#, fuzzy
|
7002 |
msgctxt "views:login"
|
7003 |
msgid "... or use an Access Key"
|
7004 |
msgstr "Eintrag Felder / Bilder"
|
7005 |
|
7006 |
-
#: templates/login.tpl.php:
|
7007 |
#, fuzzy
|
7008 |
msgctxt "views:login"
|
7009 |
msgid "Please enter your access key and e-mail address."
|
7010 |
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
7011 |
|
7012 |
-
#: templates/login.tpl.php:
|
7013 |
#, fuzzy
|
7014 |
msgctxt "views:login"
|
7015 |
msgid "E-Mail Address"
|
7016 |
msgstr "E-Mail Adresse:"
|
7017 |
|
7018 |
-
#: templates/login.tpl.php:
|
7019 |
#, fuzzy
|
7020 |
msgctxt "views:login"
|
7021 |
msgid "Access Key"
|
7022 |
msgstr "Eintrag Felder / Bilder"
|
7023 |
|
7024 |
-
#: templates/login.tpl.php:
|
7025 |
#, fuzzy
|
7026 |
msgctxt "views:login"
|
7027 |
msgid "Use Access Key"
|
7028 |
msgstr "Eintrag Felder / Bilder"
|
7029 |
|
7030 |
-
#: templates/login.tpl.php:
|
7031 |
msgctxt "views:login"
|
7032 |
msgid "Request access key?"
|
7033 |
msgstr ""
|
@@ -8053,6 +8043,14 @@ msgctxt "themes/default"
|
|
8053 |
msgid "Address"
|
8054 |
msgstr "Adresse"
|
8055 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8056 |
#~ msgctxt "admin csv-export"
|
8057 |
#~ msgid "Sticky/featured status"
|
8058 |
#~ msgstr "Unterstützter/Unbeweglicher Status"
|
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-01 21:27:46+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."
|
1090 |
|
1091 |
#: includes/admin/class-admin-listings.php:501
|
1092 |
msgctxt "admin actions"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1093 |
msgid "Renew Listing"
|
1094 |
msgstr "Eintrag erneuern"
|
1095 |
|
2052 |
msgid "Status"
|
2053 |
msgstr "Status"
|
2054 |
|
2055 |
+
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:207
|
2056 |
msgctxt "fees admin"
|
2057 |
msgid "Add Listing Fee"
|
2058 |
msgstr "Preispaket hinzufügen"
|
2221 |
msgid "Extra amount (per category)"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: templates/admin/fees-form.tpl.php:207
|
2225 |
#, fuzzy
|
2226 |
msgctxt "fees admin"
|
2227 |
msgid "Save Changes"
|
4388 |
msgstr "Author"
|
4389 |
|
4390 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
4391 |
+
#: includes/functions.php:981
|
4392 |
msgctxt "admin settings"
|
4393 |
msgid "Date posted"
|
4394 |
msgstr "Datum gepostet"
|
4395 |
|
4396 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
4397 |
+
#: includes/functions.php:982
|
4398 |
msgctxt "admin settings"
|
4399 |
msgid "Date last modified"
|
4400 |
msgstr "Datum zuletzt verändert"
|
4684 |
"not activated."
|
4685 |
msgstr ""
|
4686 |
|
4687 |
+
#: includes/functions.php:979
|
4688 |
msgctxt "admin settings"
|
4689 |
msgid "User"
|
4690 |
msgstr "Benutzer"
|
4691 |
|
4692 |
+
#: includes/functions.php:980
|
4693 |
msgctxt "admin settings"
|
4694 |
msgid "User registration date"
|
4695 |
msgstr "Eintrag Enddatum"
|
4993 |
msgid "Migrating fee plans..."
|
4994 |
msgstr "Aktiviere Lizenz..."
|
4995 |
|
4996 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:251
|
4997 |
#, fuzzy
|
4998 |
msgctxt "installer"
|
4999 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
5000 |
msgstr "Konnte Lizenz nicht deaktivieren: %s"
|
5001 |
|
5002 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:318
|
5003 |
#, fuzzy
|
5004 |
msgctxt "installer"
|
5005 |
msgid "! Could not migrate payment #%d"
|
5006 |
msgstr "Bezahlung ausführen"
|
5007 |
|
5008 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:323
|
5009 |
msgctxt "installer"
|
5010 |
msgid "Updating payment items format: %d items remaining..."
|
5011 |
msgstr ""
|
5012 |
|
5013 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:385
|
5014 |
msgctxt "installer"
|
5015 |
msgid "Migrating listing information: %d items remaining..."
|
5016 |
msgstr ""
|
6591 |
msgid "Featured Listing"
|
6592 |
msgstr "Hervorgehobene Einträge"
|
6593 |
|
6594 |
+
#: templates/login.tpl.php:21 templates/parts/login-required.tpl.php:7
|
6595 |
msgctxt "templates"
|
6596 |
msgid ""
|
6597 |
"You are not currently logged in. Please login or register first. When "
|
6603 |
"Prüfen Sie auch Ihr Spam Postfach, wenn die E-mail nicht innerhalb von 60 "
|
6604 |
"Minuten in Ihrem Postfach ist."
|
6605 |
|
6606 |
+
#: templates/login.tpl.php:32 templates/parts/login-required.tpl.php:31
|
6607 |
+
msgctxt "templates"
|
6608 |
+
msgid "Not yet registered?"
|
6609 |
+
msgstr "Noch nicht registriert?"
|
6610 |
+
|
6611 |
+
#: templates/login.tpl.php:34 templates/parts/login-required.tpl.php:33
|
6612 |
+
msgctxt "templates"
|
6613 |
+
msgid "Lost your password?"
|
6614 |
+
msgstr "Passwort verloren?"
|
6615 |
+
|
6616 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
6617 |
msgctxt "templates"
|
6618 |
msgid ""
|
6654 |
msgid "Login"
|
6655 |
msgstr "Login"
|
6656 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6657 |
#: templates/renew-listing.tpl.php:3
|
6658 |
msgctxt "templates"
|
6659 |
msgid "Renew Listing"
|
6975 |
"Diese Kontaktform ist momentan temporär deaktiviert. Bitte versuchen Sie es "
|
6976 |
"später erneut."
|
6977 |
|
6978 |
+
#: includes/views/login.php:32
|
6979 |
#, fuzzy
|
6980 |
msgctxt "views:login"
|
6981 |
msgid "Please enter a valid e-mail/access key combination."
|
6982 |
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
6983 |
|
6984 |
+
#: templates/login.tpl.php:27
|
6985 |
#, fuzzy
|
6986 |
msgctxt "views:login"
|
6987 |
msgid "Login"
|
6988 |
msgstr "Login"
|
6989 |
|
6990 |
+
#: templates/login.tpl.php:40
|
6991 |
#, fuzzy
|
6992 |
msgctxt "views:login"
|
6993 |
msgid "... or use an Access Key"
|
6994 |
msgstr "Eintrag Felder / Bilder"
|
6995 |
|
6996 |
+
#: templates/login.tpl.php:41
|
6997 |
#, fuzzy
|
6998 |
msgctxt "views:login"
|
6999 |
msgid "Please enter your access key and e-mail address."
|
7000 |
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
7001 |
|
7002 |
+
#: templates/login.tpl.php:45
|
7003 |
#, fuzzy
|
7004 |
msgctxt "views:login"
|
7005 |
msgid "E-Mail Address"
|
7006 |
msgstr "E-Mail Adresse:"
|
7007 |
|
7008 |
+
#: templates/login.tpl.php:46
|
7009 |
#, fuzzy
|
7010 |
msgctxt "views:login"
|
7011 |
msgid "Access Key"
|
7012 |
msgstr "Eintrag Felder / Bilder"
|
7013 |
|
7014 |
+
#: templates/login.tpl.php:47
|
7015 |
#, fuzzy
|
7016 |
msgctxt "views:login"
|
7017 |
msgid "Use Access Key"
|
7018 |
msgstr "Eintrag Felder / Bilder"
|
7019 |
|
7020 |
+
#: templates/login.tpl.php:48
|
7021 |
msgctxt "views:login"
|
7022 |
msgid "Request access key?"
|
7023 |
msgstr ""
|
8043 |
msgid "Address"
|
8044 |
msgstr "Adresse"
|
8045 |
|
8046 |
+
#~ msgctxt "admin actions"
|
8047 |
+
#~ msgid "Upgrade to Featured"
|
8048 |
+
#~ msgstr "Aktualisieren auf Eingestellt"
|
8049 |
+
|
8050 |
+
#~ msgctxt "admin actions"
|
8051 |
+
#~ msgid "Downgrade to Normal"
|
8052 |
+
#~ msgstr "Zurücksetzen auf Normal"
|
8053 |
+
|
8054 |
#~ msgctxt "admin csv-export"
|
8055 |
#~ msgid "Sticky/featured status"
|
8056 |
#~ msgstr "Unterstützter/Unbeweglicher Status"
|
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-
|
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"
|
@@ -988,16 +988,6 @@ msgstr ""
|
|
988 |
|
989 |
#: includes/admin/class-admin-listings.php:501
|
990 |
msgctxt "admin actions"
|
991 |
-
msgid "Upgrade to Featured"
|
992 |
-
msgstr ""
|
993 |
-
|
994 |
-
#: includes/admin/class-admin-listings.php:502
|
995 |
-
msgctxt "admin actions"
|
996 |
-
msgid "Downgrade to Normal"
|
997 |
-
msgstr ""
|
998 |
-
|
999 |
-
#: includes/admin/class-admin-listings.php:504
|
1000 |
-
msgctxt "admin actions"
|
1001 |
msgid "Renew Listing"
|
1002 |
msgstr ""
|
1003 |
|
@@ -1860,7 +1850,7 @@ msgctxt "fees admin"
|
|
1860 |
msgid "Status"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:
|
1864 |
msgctxt "fees admin"
|
1865 |
msgid "Add Listing Fee"
|
1866 |
msgstr ""
|
@@ -2017,7 +2007,7 @@ msgctxt "fees admin"
|
|
2017 |
msgid "Extra amount (per category)"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#: templates/admin/fees-form.tpl.php:
|
2021 |
msgctxt "fees admin"
|
2022 |
msgid "Save Changes"
|
2023 |
msgstr ""
|
@@ -3920,13 +3910,13 @@ msgid "Author"
|
|
3920 |
msgstr ""
|
3921 |
|
3922 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
3923 |
-
#: includes/functions.php:
|
3924 |
msgctxt "admin settings"
|
3925 |
msgid "Date posted"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
3929 |
-
#: includes/functions.php:
|
3930 |
msgctxt "admin settings"
|
3931 |
msgid "Date last modified"
|
3932 |
msgstr ""
|
@@ -4207,12 +4197,12 @@ msgid ""
|
|
4207 |
"not activated."
|
4208 |
msgstr ""
|
4209 |
|
4210 |
-
#: includes/functions.php:
|
4211 |
msgctxt "admin settings"
|
4212 |
msgid "User"
|
4213 |
msgstr ""
|
4214 |
|
4215 |
-
#: includes/functions.php:
|
4216 |
msgctxt "admin settings"
|
4217 |
msgid "User registration date"
|
4218 |
msgstr ""
|
@@ -4493,22 +4483,22 @@ msgctxt "installer"
|
|
4493 |
msgid "Migrating fee plans..."
|
4494 |
msgstr ""
|
4495 |
|
4496 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
4497 |
msgctxt "installer"
|
4498 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
4499 |
msgstr ""
|
4500 |
|
4501 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
4502 |
msgctxt "installer"
|
4503 |
msgid "! Could not migrate payment #%d"
|
4504 |
msgstr ""
|
4505 |
|
4506 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
4507 |
msgctxt "installer"
|
4508 |
msgid "Updating payment items format: %d items remaining..."
|
4509 |
msgstr ""
|
4510 |
|
4511 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
4512 |
msgctxt "installer"
|
4513 |
msgid "Migrating listing information: %d items remaining..."
|
4514 |
msgstr ""
|
@@ -5959,7 +5949,7 @@ msgctxt "templates"
|
|
5959 |
msgid "Featured Listing"
|
5960 |
msgstr ""
|
5961 |
|
5962 |
-
#: templates/login.tpl.php:
|
5963 |
msgctxt "templates"
|
5964 |
msgid ""
|
5965 |
"You are not currently logged in. Please login or register first. When "
|
@@ -5967,6 +5957,16 @@ msgid ""
|
|
5967 |
"spam if you don't see it in your email within 60 minutes."
|
5968 |
msgstr ""
|
5969 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5970 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
5971 |
msgctxt "templates"
|
5972 |
msgid ""
|
@@ -6006,16 +6006,6 @@ msgctxt "templates"
|
|
6006 |
msgid "Login"
|
6007 |
msgstr ""
|
6008 |
|
6009 |
-
#: templates/parts/login-required.tpl.php:31
|
6010 |
-
msgctxt "templates"
|
6011 |
-
msgid "Not yet registered?"
|
6012 |
-
msgstr ""
|
6013 |
-
|
6014 |
-
#: templates/parts/login-required.tpl.php:33
|
6015 |
-
msgctxt "templates"
|
6016 |
-
msgid "Lost your password?"
|
6017 |
-
msgstr ""
|
6018 |
-
|
6019 |
#: templates/renew-listing.tpl.php:3
|
6020 |
msgctxt "templates"
|
6021 |
msgid "Renew Listing"
|
@@ -6315,42 +6305,42 @@ msgctxt "contact form"
|
|
6315 |
msgid "This contact form is temporarily disabled. Please try again later."
|
6316 |
msgstr ""
|
6317 |
|
6318 |
-
#: includes/views/login.php:
|
6319 |
msgctxt "views:login"
|
6320 |
msgid "Please enter a valid e-mail/access key combination."
|
6321 |
msgstr ""
|
6322 |
|
6323 |
-
#: templates/login.tpl.php:
|
6324 |
msgctxt "views:login"
|
6325 |
msgid "Login"
|
6326 |
msgstr ""
|
6327 |
|
6328 |
-
#: templates/login.tpl.php:
|
6329 |
msgctxt "views:login"
|
6330 |
msgid "... or use an Access Key"
|
6331 |
msgstr ""
|
6332 |
|
6333 |
-
#: templates/login.tpl.php:
|
6334 |
msgctxt "views:login"
|
6335 |
msgid "Please enter your access key and e-mail address."
|
6336 |
msgstr ""
|
6337 |
|
6338 |
-
#: templates/login.tpl.php:
|
6339 |
msgctxt "views:login"
|
6340 |
msgid "E-Mail Address"
|
6341 |
msgstr ""
|
6342 |
|
6343 |
-
#: templates/login.tpl.php:
|
6344 |
msgctxt "views:login"
|
6345 |
msgid "Access Key"
|
6346 |
msgstr ""
|
6347 |
|
6348 |
-
#: templates/login.tpl.php:
|
6349 |
msgctxt "views:login"
|
6350 |
msgid "Use Access Key"
|
6351 |
msgstr ""
|
6352 |
|
6353 |
-
#: templates/login.tpl.php:
|
6354 |
msgctxt "views:login"
|
6355 |
msgid "Request access key?"
|
6356 |
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-01 21:27:46+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"
|
988 |
|
989 |
#: includes/admin/class-admin-listings.php:501
|
990 |
msgctxt "admin actions"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
991 |
msgid "Renew Listing"
|
992 |
msgstr ""
|
993 |
|
1850 |
msgid "Status"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:207
|
1854 |
msgctxt "fees admin"
|
1855 |
msgid "Add Listing Fee"
|
1856 |
msgstr ""
|
2007 |
msgid "Extra amount (per category)"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: templates/admin/fees-form.tpl.php:207
|
2011 |
msgctxt "fees admin"
|
2012 |
msgid "Save Changes"
|
2013 |
msgstr ""
|
3910 |
msgstr ""
|
3911 |
|
3912 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
3913 |
+
#: includes/functions.php:981
|
3914 |
msgctxt "admin settings"
|
3915 |
msgid "Date posted"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
3919 |
+
#: includes/functions.php:982
|
3920 |
msgctxt "admin settings"
|
3921 |
msgid "Date last modified"
|
3922 |
msgstr ""
|
4197 |
"not activated."
|
4198 |
msgstr ""
|
4199 |
|
4200 |
+
#: includes/functions.php:979
|
4201 |
msgctxt "admin settings"
|
4202 |
msgid "User"
|
4203 |
msgstr ""
|
4204 |
|
4205 |
+
#: includes/functions.php:980
|
4206 |
msgctxt "admin settings"
|
4207 |
msgid "User registration date"
|
4208 |
msgstr ""
|
4483 |
msgid "Migrating fee plans..."
|
4484 |
msgstr ""
|
4485 |
|
4486 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:251
|
4487 |
msgctxt "installer"
|
4488 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
4489 |
msgstr ""
|
4490 |
|
4491 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:318
|
4492 |
msgctxt "installer"
|
4493 |
msgid "! Could not migrate payment #%d"
|
4494 |
msgstr ""
|
4495 |
|
4496 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:323
|
4497 |
msgctxt "installer"
|
4498 |
msgid "Updating payment items format: %d items remaining..."
|
4499 |
msgstr ""
|
4500 |
|
4501 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:385
|
4502 |
msgctxt "installer"
|
4503 |
msgid "Migrating listing information: %d items remaining..."
|
4504 |
msgstr ""
|
5949 |
msgid "Featured Listing"
|
5950 |
msgstr ""
|
5951 |
|
5952 |
+
#: templates/login.tpl.php:21 templates/parts/login-required.tpl.php:7
|
5953 |
msgctxt "templates"
|
5954 |
msgid ""
|
5955 |
"You are not currently logged in. Please login or register first. When "
|
5957 |
"spam if you don't see it in your email within 60 minutes."
|
5958 |
msgstr ""
|
5959 |
|
5960 |
+
#: templates/login.tpl.php:32 templates/parts/login-required.tpl.php:31
|
5961 |
+
msgctxt "templates"
|
5962 |
+
msgid "Not yet registered?"
|
5963 |
+
msgstr ""
|
5964 |
+
|
5965 |
+
#: templates/login.tpl.php:34 templates/parts/login-required.tpl.php:33
|
5966 |
+
msgctxt "templates"
|
5967 |
+
msgid "Lost your password?"
|
5968 |
+
msgstr ""
|
5969 |
+
|
5970 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
5971 |
msgctxt "templates"
|
5972 |
msgid ""
|
6006 |
msgid "Login"
|
6007 |
msgstr ""
|
6008 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6009 |
#: templates/renew-listing.tpl.php:3
|
6010 |
msgctxt "templates"
|
6011 |
msgid "Renew Listing"
|
6305 |
msgid "This contact form is temporarily disabled. Please try again later."
|
6306 |
msgstr ""
|
6307 |
|
6308 |
+
#: includes/views/login.php:32
|
6309 |
msgctxt "views:login"
|
6310 |
msgid "Please enter a valid e-mail/access key combination."
|
6311 |
msgstr ""
|
6312 |
|
6313 |
+
#: templates/login.tpl.php:27
|
6314 |
msgctxt "views:login"
|
6315 |
msgid "Login"
|
6316 |
msgstr ""
|
6317 |
|
6318 |
+
#: templates/login.tpl.php:40
|
6319 |
msgctxt "views:login"
|
6320 |
msgid "... or use an Access Key"
|
6321 |
msgstr ""
|
6322 |
|
6323 |
+
#: templates/login.tpl.php:41
|
6324 |
msgctxt "views:login"
|
6325 |
msgid "Please enter your access key and e-mail address."
|
6326 |
msgstr ""
|
6327 |
|
6328 |
+
#: templates/login.tpl.php:45
|
6329 |
msgctxt "views:login"
|
6330 |
msgid "E-Mail Address"
|
6331 |
msgstr ""
|
6332 |
|
6333 |
+
#: templates/login.tpl.php:46
|
6334 |
msgctxt "views:login"
|
6335 |
msgid "Access Key"
|
6336 |
msgstr ""
|
6337 |
|
6338 |
+
#: templates/login.tpl.php:47
|
6339 |
msgctxt "views:login"
|
6340 |
msgid "Use Access Key"
|
6341 |
msgstr ""
|
6342 |
|
6343 |
+
#: templates/login.tpl.php:48
|
6344 |
msgctxt "views:login"
|
6345 |
msgid "Request access key?"
|
6346 |
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-
|
9 |
"PO-Revision-Date: 2017-10-27 16:42-0500\n"
|
10 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
@@ -1088,16 +1088,6 @@ msgstr "Publicar Listado"
|
|
1088 |
|
1089 |
#: includes/admin/class-admin-listings.php:501
|
1090 |
msgctxt "admin actions"
|
1091 |
-
msgid "Upgrade to Featured"
|
1092 |
-
msgstr "Mejorar a Destacado"
|
1093 |
-
|
1094 |
-
#: includes/admin/class-admin-listings.php:502
|
1095 |
-
msgctxt "admin actions"
|
1096 |
-
msgid "Downgrade to Normal"
|
1097 |
-
msgstr "Degradar a Normal"
|
1098 |
-
|
1099 |
-
#: includes/admin/class-admin-listings.php:504
|
1100 |
-
msgctxt "admin actions"
|
1101 |
msgid "Renew Listing"
|
1102 |
msgstr "Renovar Listado"
|
1103 |
|
@@ -2051,7 +2041,7 @@ msgctxt "fees admin"
|
|
2051 |
msgid "Status"
|
2052 |
msgstr "Estado"
|
2053 |
|
2054 |
-
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:
|
2055 |
msgctxt "fees admin"
|
2056 |
msgid "Add Listing Fee"
|
2057 |
msgstr "Agregar Comisión de Listado"
|
@@ -2220,7 +2210,7 @@ msgctxt "fees admin"
|
|
2220 |
msgid "Extra amount (per category)"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: templates/admin/fees-form.tpl.php:
|
2224 |
#, fuzzy
|
2225 |
msgctxt "fees admin"
|
2226 |
msgid "Save Changes"
|
@@ -4430,13 +4420,13 @@ msgid "Author"
|
|
4430 |
msgstr "Autor"
|
4431 |
|
4432 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
4433 |
-
#: includes/functions.php:
|
4434 |
msgctxt "admin settings"
|
4435 |
msgid "Date posted"
|
4436 |
msgstr "Fecha de publicación"
|
4437 |
|
4438 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
4439 |
-
#: includes/functions.php:
|
4440 |
msgctxt "admin settings"
|
4441 |
msgid "Date last modified"
|
4442 |
msgstr "Fecha de última modificación"
|
@@ -4734,12 +4724,12 @@ msgstr ""
|
|
4734 |
"No se pudo copiar el plugin de compatibilidad AJAX \"%s\". El modo de "
|
4735 |
"compatibilidad no fue activado."
|
4736 |
|
4737 |
-
#: includes/functions.php:
|
4738 |
msgctxt "admin settings"
|
4739 |
msgid "User"
|
4740 |
msgstr "Usuario"
|
4741 |
|
4742 |
-
#: includes/functions.php:
|
4743 |
msgctxt "admin settings"
|
4744 |
msgid "User registration date"
|
4745 |
msgstr "Fecha de registro del usuario"
|
@@ -5044,24 +5034,24 @@ msgctxt "installer"
|
|
5044 |
msgid "Migrating fee plans..."
|
5045 |
msgstr "Activando licencia..."
|
5046 |
|
5047 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5048 |
#, fuzzy
|
5049 |
msgctxt "installer"
|
5050 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
5051 |
msgstr "No se pudo actualizar el tema: %s"
|
5052 |
|
5053 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5054 |
#, fuzzy
|
5055 |
msgctxt "installer"
|
5056 |
msgid "! Could not migrate payment #%d"
|
5057 |
msgstr "No se pudo procesar el pago."
|
5058 |
|
5059 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5060 |
msgctxt "installer"
|
5061 |
msgid "Updating payment items format: %d items remaining..."
|
5062 |
msgstr ""
|
5063 |
|
5064 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5065 |
msgctxt "installer"
|
5066 |
msgid "Migrating listing information: %d items remaining..."
|
5067 |
msgstr ""
|
@@ -6664,7 +6654,7 @@ msgctxt "templates"
|
|
6664 |
msgid "Featured Listing"
|
6665 |
msgstr "Listado Destacado"
|
6666 |
|
6667 |
-
#: templates/login.tpl.php:
|
6668 |
msgctxt "templates"
|
6669 |
msgid ""
|
6670 |
"You are not currently logged in. Please login or register first. When "
|
@@ -6675,6 +6665,16 @@ msgstr ""
|
|
6675 |
"registre, recibirá un correo electrónico de activación. Asegúrese de revisar "
|
6676 |
"en SPAM si no ve el correo en su buzón dentro de los siguientes 60 minutos."
|
6677 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6678 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
6679 |
msgctxt "templates"
|
6680 |
msgid ""
|
@@ -6717,16 +6717,6 @@ msgctxt "templates"
|
|
6717 |
msgid "Login"
|
6718 |
msgstr "Ingresar"
|
6719 |
|
6720 |
-
#: templates/parts/login-required.tpl.php:31
|
6721 |
-
msgctxt "templates"
|
6722 |
-
msgid "Not yet registered?"
|
6723 |
-
msgstr "No se ha registrado?"
|
6724 |
-
|
6725 |
-
#: templates/parts/login-required.tpl.php:33
|
6726 |
-
msgctxt "templates"
|
6727 |
-
msgid "Lost your password?"
|
6728 |
-
msgstr "Perdió su contraseña?"
|
6729 |
-
|
6730 |
#: templates/renew-listing.tpl.php:3
|
6731 |
msgctxt "templates"
|
6732 |
msgid "Renew Listing"
|
@@ -7044,49 +7034,49 @@ msgstr ""
|
|
7044 |
"El formulario de contacto está temporalmente deshabilitado. Por favor "
|
7045 |
"intente más tarde."
|
7046 |
|
7047 |
-
#: includes/views/login.php:
|
7048 |
#, fuzzy
|
7049 |
msgctxt "views:login"
|
7050 |
msgid "Please enter a valid e-mail/access key combination."
|
7051 |
msgstr "Por favor ingrese un correo electrónico válido."
|
7052 |
|
7053 |
-
#: templates/login.tpl.php:
|
7054 |
#, fuzzy
|
7055 |
msgctxt "views:login"
|
7056 |
msgid "Login"
|
7057 |
msgstr "Ingresar"
|
7058 |
|
7059 |
-
#: templates/login.tpl.php:
|
7060 |
#, fuzzy
|
7061 |
msgctxt "views:login"
|
7062 |
msgid "... or use an Access Key"
|
7063 |
msgstr "Claves de Acceso de Listado"
|
7064 |
|
7065 |
-
#: templates/login.tpl.php:
|
7066 |
#, fuzzy
|
7067 |
msgctxt "views:login"
|
7068 |
msgid "Please enter your access key and e-mail address."
|
7069 |
msgstr "Por favor ingrese un correo electrónico válido."
|
7070 |
|
7071 |
-
#: templates/login.tpl.php:
|
7072 |
#, fuzzy
|
7073 |
msgctxt "views:login"
|
7074 |
msgid "E-Mail Address"
|
7075 |
msgstr "Correo electrónico:"
|
7076 |
|
7077 |
-
#: templates/login.tpl.php:
|
7078 |
#, fuzzy
|
7079 |
msgctxt "views:login"
|
7080 |
msgid "Access Key"
|
7081 |
msgstr "Clave de acceso"
|
7082 |
|
7083 |
-
#: templates/login.tpl.php:
|
7084 |
#, fuzzy
|
7085 |
msgctxt "views:login"
|
7086 |
msgid "Use Access Key"
|
7087 |
msgstr "Clave de acceso"
|
7088 |
|
7089 |
-
#: templates/login.tpl.php:
|
7090 |
msgctxt "views:login"
|
7091 |
msgid "Request access key?"
|
7092 |
msgstr ""
|
@@ -8114,6 +8104,14 @@ msgctxt "themes/default"
|
|
8114 |
msgid "Address"
|
8115 |
msgstr "Dirección"
|
8116 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8117 |
#~ msgctxt "admin csv-export"
|
8118 |
#~ msgid "Sticky/featured status"
|
8119 |
#~ msgstr "Estado destacado/sticky"
|
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-01 21:27:46+00:00\n"
|
9 |
"PO-Revision-Date: 2017-10-27 16:42-0500\n"
|
10 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
1088 |
|
1089 |
#: includes/admin/class-admin-listings.php:501
|
1090 |
msgctxt "admin actions"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1091 |
msgid "Renew Listing"
|
1092 |
msgstr "Renovar Listado"
|
1093 |
|
2041 |
msgid "Status"
|
2042 |
msgstr "Estado"
|
2043 |
|
2044 |
+
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:207
|
2045 |
msgctxt "fees admin"
|
2046 |
msgid "Add Listing Fee"
|
2047 |
msgstr "Agregar Comisión de Listado"
|
2210 |
msgid "Extra amount (per category)"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
+
#: templates/admin/fees-form.tpl.php:207
|
2214 |
#, fuzzy
|
2215 |
msgctxt "fees admin"
|
2216 |
msgid "Save Changes"
|
4420 |
msgstr "Autor"
|
4421 |
|
4422 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
4423 |
+
#: includes/functions.php:981
|
4424 |
msgctxt "admin settings"
|
4425 |
msgid "Date posted"
|
4426 |
msgstr "Fecha de publicación"
|
4427 |
|
4428 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
4429 |
+
#: includes/functions.php:982
|
4430 |
msgctxt "admin settings"
|
4431 |
msgid "Date last modified"
|
4432 |
msgstr "Fecha de última modificación"
|
4724 |
"No se pudo copiar el plugin de compatibilidad AJAX \"%s\". El modo de "
|
4725 |
"compatibilidad no fue activado."
|
4726 |
|
4727 |
+
#: includes/functions.php:979
|
4728 |
msgctxt "admin settings"
|
4729 |
msgid "User"
|
4730 |
msgstr "Usuario"
|
4731 |
|
4732 |
+
#: includes/functions.php:980
|
4733 |
msgctxt "admin settings"
|
4734 |
msgid "User registration date"
|
4735 |
msgstr "Fecha de registro del usuario"
|
5034 |
msgid "Migrating fee plans..."
|
5035 |
msgstr "Activando licencia..."
|
5036 |
|
5037 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:251
|
5038 |
#, fuzzy
|
5039 |
msgctxt "installer"
|
5040 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
5041 |
msgstr "No se pudo actualizar el tema: %s"
|
5042 |
|
5043 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:318
|
5044 |
#, fuzzy
|
5045 |
msgctxt "installer"
|
5046 |
msgid "! Could not migrate payment #%d"
|
5047 |
msgstr "No se pudo procesar el pago."
|
5048 |
|
5049 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:323
|
5050 |
msgctxt "installer"
|
5051 |
msgid "Updating payment items format: %d items remaining..."
|
5052 |
msgstr ""
|
5053 |
|
5054 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:385
|
5055 |
msgctxt "installer"
|
5056 |
msgid "Migrating listing information: %d items remaining..."
|
5057 |
msgstr ""
|
6654 |
msgid "Featured Listing"
|
6655 |
msgstr "Listado Destacado"
|
6656 |
|
6657 |
+
#: templates/login.tpl.php:21 templates/parts/login-required.tpl.php:7
|
6658 |
msgctxt "templates"
|
6659 |
msgid ""
|
6660 |
"You are not currently logged in. Please login or register first. When "
|
6665 |
"registre, recibirá un correo electrónico de activación. Asegúrese de revisar "
|
6666 |
"en SPAM si no ve el correo en su buzón dentro de los siguientes 60 minutos."
|
6667 |
|
6668 |
+
#: templates/login.tpl.php:32 templates/parts/login-required.tpl.php:31
|
6669 |
+
msgctxt "templates"
|
6670 |
+
msgid "Not yet registered?"
|
6671 |
+
msgstr "No se ha registrado?"
|
6672 |
+
|
6673 |
+
#: templates/login.tpl.php:34 templates/parts/login-required.tpl.php:33
|
6674 |
+
msgctxt "templates"
|
6675 |
+
msgid "Lost your password?"
|
6676 |
+
msgstr "Perdió su contraseña?"
|
6677 |
+
|
6678 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
6679 |
msgctxt "templates"
|
6680 |
msgid ""
|
6717 |
msgid "Login"
|
6718 |
msgstr "Ingresar"
|
6719 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6720 |
#: templates/renew-listing.tpl.php:3
|
6721 |
msgctxt "templates"
|
6722 |
msgid "Renew Listing"
|
7034 |
"El formulario de contacto está temporalmente deshabilitado. Por favor "
|
7035 |
"intente más tarde."
|
7036 |
|
7037 |
+
#: includes/views/login.php:32
|
7038 |
#, fuzzy
|
7039 |
msgctxt "views:login"
|
7040 |
msgid "Please enter a valid e-mail/access key combination."
|
7041 |
msgstr "Por favor ingrese un correo electrónico válido."
|
7042 |
|
7043 |
+
#: templates/login.tpl.php:27
|
7044 |
#, fuzzy
|
7045 |
msgctxt "views:login"
|
7046 |
msgid "Login"
|
7047 |
msgstr "Ingresar"
|
7048 |
|
7049 |
+
#: templates/login.tpl.php:40
|
7050 |
#, fuzzy
|
7051 |
msgctxt "views:login"
|
7052 |
msgid "... or use an Access Key"
|
7053 |
msgstr "Claves de Acceso de Listado"
|
7054 |
|
7055 |
+
#: templates/login.tpl.php:41
|
7056 |
#, fuzzy
|
7057 |
msgctxt "views:login"
|
7058 |
msgid "Please enter your access key and e-mail address."
|
7059 |
msgstr "Por favor ingrese un correo electrónico válido."
|
7060 |
|
7061 |
+
#: templates/login.tpl.php:45
|
7062 |
#, fuzzy
|
7063 |
msgctxt "views:login"
|
7064 |
msgid "E-Mail Address"
|
7065 |
msgstr "Correo electrónico:"
|
7066 |
|
7067 |
+
#: templates/login.tpl.php:46
|
7068 |
#, fuzzy
|
7069 |
msgctxt "views:login"
|
7070 |
msgid "Access Key"
|
7071 |
msgstr "Clave de acceso"
|
7072 |
|
7073 |
+
#: templates/login.tpl.php:47
|
7074 |
#, fuzzy
|
7075 |
msgctxt "views:login"
|
7076 |
msgid "Use Access Key"
|
7077 |
msgstr "Clave de acceso"
|
7078 |
|
7079 |
+
#: templates/login.tpl.php:48
|
7080 |
msgctxt "views:login"
|
7081 |
msgid "Request access key?"
|
7082 |
msgstr ""
|
8104 |
msgid "Address"
|
8105 |
msgstr "Dirección"
|
8106 |
|
8107 |
+
#~ msgctxt "admin actions"
|
8108 |
+
#~ msgid "Upgrade to Featured"
|
8109 |
+
#~ msgstr "Mejorar a Destacado"
|
8110 |
+
|
8111 |
+
#~ msgctxt "admin actions"
|
8112 |
+
#~ msgid "Downgrade to Normal"
|
8113 |
+
#~ msgstr "Degradar a Normal"
|
8114 |
+
|
8115 |
#~ msgctxt "admin csv-export"
|
8116 |
#~ msgid "Sticky/featured status"
|
8117 |
#~ msgstr "Estado destacado/sticky"
|
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-
|
9 |
"PO-Revision-Date: 2017-10-25 18:12+0100\n"
|
10 |
"Last-Translator: Laurent Provin <lprovin@yahoo.fr>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
@@ -1097,16 +1097,6 @@ msgstr "Publier l'annonce"
|
|
1097 |
|
1098 |
#: includes/admin/class-admin-listings.php:501
|
1099 |
msgctxt "admin actions"
|
1100 |
-
msgid "Upgrade to Featured"
|
1101 |
-
msgstr "Mettre à jour vers la version sélectionnée"
|
1102 |
-
|
1103 |
-
#: includes/admin/class-admin-listings.php:502
|
1104 |
-
msgctxt "admin actions"
|
1105 |
-
msgid "Downgrade to Normal"
|
1106 |
-
msgstr "Rétrograder vers le mode Normal "
|
1107 |
-
|
1108 |
-
#: includes/admin/class-admin-listings.php:504
|
1109 |
-
msgctxt "admin actions"
|
1110 |
msgid "Renew Listing"
|
1111 |
msgstr "Renouveler l'annonce"
|
1112 |
|
@@ -2068,7 +2058,7 @@ msgctxt "fees admin"
|
|
2068 |
msgid "Status"
|
2069 |
msgstr "Statut"
|
2070 |
|
2071 |
-
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:
|
2072 |
msgctxt "fees admin"
|
2073 |
msgid "Add Listing Fee"
|
2074 |
msgstr "Ajouter les droits d'inscription"
|
@@ -2239,7 +2229,7 @@ msgctxt "fees admin"
|
|
2239 |
msgid "Extra amount (per category)"
|
2240 |
msgstr "Montant supplémentaire (par catégorie)"
|
2241 |
|
2242 |
-
#: templates/admin/fees-form.tpl.php:
|
2243 |
#, fuzzy
|
2244 |
msgctxt "fees admin"
|
2245 |
msgid "Save Changes"
|
@@ -4468,13 +4458,13 @@ msgid "Author"
|
|
4468 |
msgstr "Auteur"
|
4469 |
|
4470 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
4471 |
-
#: includes/functions.php:
|
4472 |
msgctxt "admin settings"
|
4473 |
msgid "Date posted"
|
4474 |
msgstr "Date d'ajout"
|
4475 |
|
4476 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
4477 |
-
#: includes/functions.php:
|
4478 |
msgctxt "admin settings"
|
4479 |
msgid "Date last modified"
|
4480 |
msgstr "Date de dernière modification"
|
@@ -4776,12 +4766,12 @@ msgstr ""
|
|
4776 |
"Impossible de copier le plugin de compatibilité AJAX \"% s\". Le mode de "
|
4777 |
"compatibilité n'a pas été activé."
|
4778 |
|
4779 |
-
#: includes/functions.php:
|
4780 |
msgctxt "admin settings"
|
4781 |
msgid "User"
|
4782 |
msgstr "Utilisateur"
|
4783 |
|
4784 |
-
#: includes/functions.php:
|
4785 |
msgctxt "admin settings"
|
4786 |
msgid "User registration date"
|
4787 |
msgstr "Date d'expiration de l'annonce"
|
@@ -5110,25 +5100,25 @@ msgctxt "installer"
|
|
5110 |
msgid "Migrating fee plans..."
|
5111 |
msgstr "Activation de la license"
|
5112 |
|
5113 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5114 |
#, fuzzy
|
5115 |
msgctxt "installer"
|
5116 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
5117 |
msgstr "Impossible de mettre à jour le thème: %s."
|
5118 |
|
5119 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5120 |
#, fuzzy
|
5121 |
msgctxt "installer"
|
5122 |
msgid "! Could not migrate payment #%d"
|
5123 |
msgstr "Impossible de procéder au paiement."
|
5124 |
|
5125 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5126 |
msgctxt "installer"
|
5127 |
msgid "Updating payment items format: %d items remaining..."
|
5128 |
msgstr ""
|
5129 |
"Mise à jour du format des éléments de paiement : %d éléments restants..."
|
5130 |
|
5131 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5132 |
msgctxt "installer"
|
5133 |
msgid "Migrating listing information: %d items remaining..."
|
5134 |
msgstr "Migration des informations de soumission : %d éléments restants..."
|
@@ -6761,7 +6751,7 @@ msgctxt "templates"
|
|
6761 |
msgid "Featured Listing"
|
6762 |
msgstr "Annonce sélectionnée"
|
6763 |
|
6764 |
-
#: templates/login.tpl.php:
|
6765 |
msgctxt "templates"
|
6766 |
msgid ""
|
6767 |
"You are not currently logged in. Please login or register first. When "
|
@@ -6774,6 +6764,16 @@ msgstr ""
|
|
6774 |
"vérifier vos autres dossiers (indésirable, spam, inconnu) dans les 60 "
|
6775 |
"minutes qui suivent votre inscription."
|
6776 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6777 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
6778 |
msgctxt "templates"
|
6779 |
msgid ""
|
@@ -6816,16 +6816,6 @@ msgctxt "templates"
|
|
6816 |
msgid "Login"
|
6817 |
msgstr "Connexion"
|
6818 |
|
6819 |
-
#: templates/parts/login-required.tpl.php:31
|
6820 |
-
msgctxt "templates"
|
6821 |
-
msgid "Not yet registered?"
|
6822 |
-
msgstr "Pas encore inscrit ?"
|
6823 |
-
|
6824 |
-
#: templates/parts/login-required.tpl.php:33
|
6825 |
-
msgctxt "templates"
|
6826 |
-
msgid "Lost your password?"
|
6827 |
-
msgstr "Mot de passe perdu ?"
|
6828 |
-
|
6829 |
#: templates/renew-listing.tpl.php:3
|
6830 |
msgctxt "templates"
|
6831 |
msgid "Renew Listing"
|
@@ -7156,49 +7146,49 @@ msgstr ""
|
|
7156 |
"Ce formulaire de contact est temporairement désactivé. Veuillez réessayer "
|
7157 |
"plus tard."
|
7158 |
|
7159 |
-
#: includes/views/login.php:
|
7160 |
#, fuzzy
|
7161 |
msgctxt "views:login"
|
7162 |
msgid "Please enter a valid e-mail/access key combination."
|
7163 |
msgstr "Veuillez entrer un e-mail valide."
|
7164 |
|
7165 |
-
#: templates/login.tpl.php:
|
7166 |
#, fuzzy
|
7167 |
msgctxt "views:login"
|
7168 |
msgid "Login"
|
7169 |
msgstr "Connexion"
|
7170 |
|
7171 |
-
#: templates/login.tpl.php:
|
7172 |
#, fuzzy
|
7173 |
msgctxt "views:login"
|
7174 |
msgid "... or use an Access Key"
|
7175 |
msgstr "Champs des annonces / Images "
|
7176 |
|
7177 |
-
#: templates/login.tpl.php:
|
7178 |
#, fuzzy
|
7179 |
msgctxt "views:login"
|
7180 |
msgid "Please enter your access key and e-mail address."
|
7181 |
msgstr "Veuillez entrer un e-mail valide."
|
7182 |
|
7183 |
-
#: templates/login.tpl.php:
|
7184 |
#, fuzzy
|
7185 |
msgctxt "views:login"
|
7186 |
msgid "E-Mail Address"
|
7187 |
msgstr "Adresse e-mail:"
|
7188 |
|
7189 |
-
#: templates/login.tpl.php:
|
7190 |
#, fuzzy
|
7191 |
msgctxt "views:login"
|
7192 |
msgid "Access Key"
|
7193 |
msgstr "Champs des annonces / Images "
|
7194 |
|
7195 |
-
#: templates/login.tpl.php:
|
7196 |
#, fuzzy
|
7197 |
msgctxt "views:login"
|
7198 |
msgid "Use Access Key"
|
7199 |
msgstr "Champs des annonces / Images "
|
7200 |
|
7201 |
-
#: templates/login.tpl.php:
|
7202 |
msgctxt "views:login"
|
7203 |
msgid "Request access key?"
|
7204 |
msgstr "Demander une clé d'accès ?"
|
@@ -8245,6 +8235,14 @@ msgctxt "themes/default"
|
|
8245 |
msgid "Address"
|
8246 |
msgstr "Adresse"
|
8247 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8248 |
#~ msgctxt "admin csv-export"
|
8249 |
#~ msgid "Sticky/featured status"
|
8250 |
#~ msgstr "Etat Post-it/Sélectionné"
|
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-01 21:27:46+00:00\n"
|
9 |
"PO-Revision-Date: 2017-10-25 18:12+0100\n"
|
10 |
"Last-Translator: Laurent Provin <lprovin@yahoo.fr>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
1097 |
|
1098 |
#: includes/admin/class-admin-listings.php:501
|
1099 |
msgctxt "admin actions"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1100 |
msgid "Renew Listing"
|
1101 |
msgstr "Renouveler l'annonce"
|
1102 |
|
2058 |
msgid "Status"
|
2059 |
msgstr "Statut"
|
2060 |
|
2061 |
+
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:207
|
2062 |
msgctxt "fees admin"
|
2063 |
msgid "Add Listing Fee"
|
2064 |
msgstr "Ajouter les droits d'inscription"
|
2229 |
msgid "Extra amount (per category)"
|
2230 |
msgstr "Montant supplémentaire (par catégorie)"
|
2231 |
|
2232 |
+
#: templates/admin/fees-form.tpl.php:207
|
2233 |
#, fuzzy
|
2234 |
msgctxt "fees admin"
|
2235 |
msgid "Save Changes"
|
4458 |
msgstr "Auteur"
|
4459 |
|
4460 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
4461 |
+
#: includes/functions.php:981
|
4462 |
msgctxt "admin settings"
|
4463 |
msgid "Date posted"
|
4464 |
msgstr "Date d'ajout"
|
4465 |
|
4466 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
4467 |
+
#: includes/functions.php:982
|
4468 |
msgctxt "admin settings"
|
4469 |
msgid "Date last modified"
|
4470 |
msgstr "Date de dernière modification"
|
4766 |
"Impossible de copier le plugin de compatibilité AJAX \"% s\". Le mode de "
|
4767 |
"compatibilité n'a pas été activé."
|
4768 |
|
4769 |
+
#: includes/functions.php:979
|
4770 |
msgctxt "admin settings"
|
4771 |
msgid "User"
|
4772 |
msgstr "Utilisateur"
|
4773 |
|
4774 |
+
#: includes/functions.php:980
|
4775 |
msgctxt "admin settings"
|
4776 |
msgid "User registration date"
|
4777 |
msgstr "Date d'expiration de l'annonce"
|
5100 |
msgid "Migrating fee plans..."
|
5101 |
msgstr "Activation de la license"
|
5102 |
|
5103 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:251
|
5104 |
#, fuzzy
|
5105 |
msgctxt "installer"
|
5106 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
5107 |
msgstr "Impossible de mettre à jour le thème: %s."
|
5108 |
|
5109 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:318
|
5110 |
#, fuzzy
|
5111 |
msgctxt "installer"
|
5112 |
msgid "! Could not migrate payment #%d"
|
5113 |
msgstr "Impossible de procéder au paiement."
|
5114 |
|
5115 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:323
|
5116 |
msgctxt "installer"
|
5117 |
msgid "Updating payment items format: %d items remaining..."
|
5118 |
msgstr ""
|
5119 |
"Mise à jour du format des éléments de paiement : %d éléments restants..."
|
5120 |
|
5121 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:385
|
5122 |
msgctxt "installer"
|
5123 |
msgid "Migrating listing information: %d items remaining..."
|
5124 |
msgstr "Migration des informations de soumission : %d éléments restants..."
|
6751 |
msgid "Featured Listing"
|
6752 |
msgstr "Annonce sélectionnée"
|
6753 |
|
6754 |
+
#: templates/login.tpl.php:21 templates/parts/login-required.tpl.php:7
|
6755 |
msgctxt "templates"
|
6756 |
msgid ""
|
6757 |
"You are not currently logged in. Please login or register first. When "
|
6764 |
"vérifier vos autres dossiers (indésirable, spam, inconnu) dans les 60 "
|
6765 |
"minutes qui suivent votre inscription."
|
6766 |
|
6767 |
+
#: templates/login.tpl.php:32 templates/parts/login-required.tpl.php:31
|
6768 |
+
msgctxt "templates"
|
6769 |
+
msgid "Not yet registered?"
|
6770 |
+
msgstr "Pas encore inscrit ?"
|
6771 |
+
|
6772 |
+
#: templates/login.tpl.php:34 templates/parts/login-required.tpl.php:33
|
6773 |
+
msgctxt "templates"
|
6774 |
+
msgid "Lost your password?"
|
6775 |
+
msgstr "Mot de passe perdu ?"
|
6776 |
+
|
6777 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
6778 |
msgctxt "templates"
|
6779 |
msgid ""
|
6816 |
msgid "Login"
|
6817 |
msgstr "Connexion"
|
6818 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6819 |
#: templates/renew-listing.tpl.php:3
|
6820 |
msgctxt "templates"
|
6821 |
msgid "Renew Listing"
|
7146 |
"Ce formulaire de contact est temporairement désactivé. Veuillez réessayer "
|
7147 |
"plus tard."
|
7148 |
|
7149 |
+
#: includes/views/login.php:32
|
7150 |
#, fuzzy
|
7151 |
msgctxt "views:login"
|
7152 |
msgid "Please enter a valid e-mail/access key combination."
|
7153 |
msgstr "Veuillez entrer un e-mail valide."
|
7154 |
|
7155 |
+
#: templates/login.tpl.php:27
|
7156 |
#, fuzzy
|
7157 |
msgctxt "views:login"
|
7158 |
msgid "Login"
|
7159 |
msgstr "Connexion"
|
7160 |
|
7161 |
+
#: templates/login.tpl.php:40
|
7162 |
#, fuzzy
|
7163 |
msgctxt "views:login"
|
7164 |
msgid "... or use an Access Key"
|
7165 |
msgstr "Champs des annonces / Images "
|
7166 |
|
7167 |
+
#: templates/login.tpl.php:41
|
7168 |
#, fuzzy
|
7169 |
msgctxt "views:login"
|
7170 |
msgid "Please enter your access key and e-mail address."
|
7171 |
msgstr "Veuillez entrer un e-mail valide."
|
7172 |
|
7173 |
+
#: templates/login.tpl.php:45
|
7174 |
#, fuzzy
|
7175 |
msgctxt "views:login"
|
7176 |
msgid "E-Mail Address"
|
7177 |
msgstr "Adresse e-mail:"
|
7178 |
|
7179 |
+
#: templates/login.tpl.php:46
|
7180 |
#, fuzzy
|
7181 |
msgctxt "views:login"
|
7182 |
msgid "Access Key"
|
7183 |
msgstr "Champs des annonces / Images "
|
7184 |
|
7185 |
+
#: templates/login.tpl.php:47
|
7186 |
#, fuzzy
|
7187 |
msgctxt "views:login"
|
7188 |
msgid "Use Access Key"
|
7189 |
msgstr "Champs des annonces / Images "
|
7190 |
|
7191 |
+
#: templates/login.tpl.php:48
|
7192 |
msgctxt "views:login"
|
7193 |
msgid "Request access key?"
|
7194 |
msgstr "Demander une clé d'accès ?"
|
8235 |
msgid "Address"
|
8236 |
msgstr "Adresse"
|
8237 |
|
8238 |
+
#~ msgctxt "admin actions"
|
8239 |
+
#~ msgid "Upgrade to Featured"
|
8240 |
+
#~ msgstr "Mettre à jour vers la version sélectionnée"
|
8241 |
+
|
8242 |
+
#~ msgctxt "admin actions"
|
8243 |
+
#~ msgid "Downgrade to Normal"
|
8244 |
+
#~ msgstr "Rétrograder vers le mode Normal "
|
8245 |
+
|
8246 |
#~ msgctxt "admin csv-export"
|
8247 |
#~ msgid "Sticky/featured status"
|
8248 |
#~ msgstr "Etat Post-it/Sélectionné"
|
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-
|
7 |
"PO-Revision-Date: 2017-07-04 12:37+0000\n"
|
8 |
"Last-Translator: admin <info@nederlofcentrum.nl>\n"
|
9 |
"Language-Team: Dutch\n"
|
@@ -1009,16 +1009,6 @@ msgstr "Registratie publiceren"
|
|
1009 |
|
1010 |
#: includes/admin/class-admin-listings.php:501
|
1011 |
msgctxt "admin actions"
|
1012 |
-
msgid "Upgrade to Featured"
|
1013 |
-
msgstr "Upgrade naar Aanbieding"
|
1014 |
-
|
1015 |
-
#: includes/admin/class-admin-listings.php:502
|
1016 |
-
msgctxt "admin actions"
|
1017 |
-
msgid "Downgrade to Normal"
|
1018 |
-
msgstr ""
|
1019 |
-
|
1020 |
-
#: includes/admin/class-admin-listings.php:504
|
1021 |
-
msgctxt "admin actions"
|
1022 |
msgid "Renew Listing"
|
1023 |
msgstr "Vernieuw registratie"
|
1024 |
|
@@ -1906,7 +1896,7 @@ msgctxt "fees admin"
|
|
1906 |
msgid "Status"
|
1907 |
msgstr "Status"
|
1908 |
|
1909 |
-
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:
|
1910 |
msgctxt "fees admin"
|
1911 |
msgid "Add Listing Fee"
|
1912 |
msgstr ""
|
@@ -2066,7 +2056,7 @@ msgctxt "fees admin"
|
|
2066 |
msgid "Extra amount (per category)"
|
2067 |
msgstr ""
|
2068 |
|
2069 |
-
#: templates/admin/fees-form.tpl.php:
|
2070 |
#, fuzzy
|
2071 |
msgctxt "fees admin"
|
2072 |
msgid "Save Changes"
|
@@ -4176,13 +4166,13 @@ msgid "Author"
|
|
4176 |
msgstr "Auteur"
|
4177 |
|
4178 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
4179 |
-
#: includes/functions.php:
|
4180 |
msgctxt "admin settings"
|
4181 |
msgid "Date posted"
|
4182 |
msgstr "Datum ingediend"
|
4183 |
|
4184 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
4185 |
-
#: includes/functions.php:
|
4186 |
msgctxt "admin settings"
|
4187 |
msgid "Date last modified"
|
4188 |
msgstr ""
|
@@ -4469,12 +4459,12 @@ msgid ""
|
|
4469 |
"not activated."
|
4470 |
msgstr ""
|
4471 |
|
4472 |
-
#: includes/functions.php:
|
4473 |
msgctxt "admin settings"
|
4474 |
msgid "User"
|
4475 |
msgstr "Gebruiker"
|
4476 |
|
4477 |
-
#: includes/functions.php:
|
4478 |
msgctxt "admin settings"
|
4479 |
msgid "User registration date"
|
4480 |
msgstr "Gebruikers registratie datum"
|
@@ -4764,22 +4754,22 @@ msgctxt "installer"
|
|
4764 |
msgid "Migrating fee plans..."
|
4765 |
msgstr ""
|
4766 |
|
4767 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
4768 |
msgctxt "installer"
|
4769 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
4770 |
msgstr ""
|
4771 |
|
4772 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
4773 |
msgctxt "installer"
|
4774 |
msgid "! Could not migrate payment #%d"
|
4775 |
msgstr ""
|
4776 |
|
4777 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
4778 |
msgctxt "installer"
|
4779 |
msgid "Updating payment items format: %d items remaining..."
|
4780 |
msgstr ""
|
4781 |
|
4782 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
4783 |
msgctxt "installer"
|
4784 |
msgid "Migrating listing information: %d items remaining..."
|
4785 |
msgstr ""
|
@@ -6282,7 +6272,7 @@ msgctxt "templates"
|
|
6282 |
msgid "Featured Listing"
|
6283 |
msgstr "Aanbieding Registratie/Vermelding"
|
6284 |
|
6285 |
-
#: templates/login.tpl.php:
|
6286 |
msgctxt "templates"
|
6287 |
msgid ""
|
6288 |
"You are not currently logged in. Please login or register first. When "
|
@@ -6290,6 +6280,16 @@ msgid ""
|
|
6290 |
"spam if you don't see it in your email within 60 minutes."
|
6291 |
msgstr ""
|
6292 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6293 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
6294 |
msgctxt "templates"
|
6295 |
msgid ""
|
@@ -6329,16 +6329,6 @@ msgctxt "templates"
|
|
6329 |
msgid "Login"
|
6330 |
msgstr "Inloggen"
|
6331 |
|
6332 |
-
#: templates/parts/login-required.tpl.php:31
|
6333 |
-
msgctxt "templates"
|
6334 |
-
msgid "Not yet registered?"
|
6335 |
-
msgstr ""
|
6336 |
-
|
6337 |
-
#: templates/parts/login-required.tpl.php:33
|
6338 |
-
msgctxt "templates"
|
6339 |
-
msgid "Lost your password?"
|
6340 |
-
msgstr ""
|
6341 |
-
|
6342 |
#: templates/renew-listing.tpl.php:3
|
6343 |
msgctxt "templates"
|
6344 |
msgid "Renew Listing"
|
@@ -6641,44 +6631,44 @@ msgctxt "contact form"
|
|
6641 |
msgid "This contact form is temporarily disabled. Please try again later."
|
6642 |
msgstr ""
|
6643 |
|
6644 |
-
#: includes/views/login.php:
|
6645 |
msgctxt "views:login"
|
6646 |
msgid "Please enter a valid e-mail/access key combination."
|
6647 |
msgstr ""
|
6648 |
|
6649 |
-
#: templates/login.tpl.php:
|
6650 |
#, fuzzy
|
6651 |
msgctxt "views:login"
|
6652 |
msgid "Login"
|
6653 |
msgstr "Inloggen"
|
6654 |
|
6655 |
-
#: templates/login.tpl.php:
|
6656 |
msgctxt "views:login"
|
6657 |
msgid "... or use an Access Key"
|
6658 |
msgstr ""
|
6659 |
|
6660 |
-
#: templates/login.tpl.php:
|
6661 |
msgctxt "views:login"
|
6662 |
msgid "Please enter your access key and e-mail address."
|
6663 |
msgstr ""
|
6664 |
|
6665 |
-
#: templates/login.tpl.php:
|
6666 |
#, fuzzy
|
6667 |
msgctxt "views:login"
|
6668 |
msgid "E-Mail Address"
|
6669 |
msgstr "Email Adres:"
|
6670 |
|
6671 |
-
#: templates/login.tpl.php:
|
6672 |
msgctxt "views:login"
|
6673 |
msgid "Access Key"
|
6674 |
msgstr ""
|
6675 |
|
6676 |
-
#: templates/login.tpl.php:
|
6677 |
msgctxt "views:login"
|
6678 |
msgid "Use Access Key"
|
6679 |
msgstr ""
|
6680 |
|
6681 |
-
#: templates/login.tpl.php:
|
6682 |
msgctxt "views:login"
|
6683 |
msgid "Request access key?"
|
6684 |
msgstr ""
|
@@ -7657,6 +7647,10 @@ msgctxt "themes/default"
|
|
7657 |
msgid "Address"
|
7658 |
msgstr ""
|
7659 |
|
|
|
|
|
|
|
|
|
7660 |
#~ msgid "Payment Status"
|
7661 |
#~ msgstr "Betaling status"
|
7662 |
|
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-01 21:27:46+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"
|
1009 |
|
1010 |
#: includes/admin/class-admin-listings.php:501
|
1011 |
msgctxt "admin actions"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1012 |
msgid "Renew Listing"
|
1013 |
msgstr "Vernieuw registratie"
|
1014 |
|
1896 |
msgid "Status"
|
1897 |
msgstr "Status"
|
1898 |
|
1899 |
+
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:207
|
1900 |
msgctxt "fees admin"
|
1901 |
msgid "Add Listing Fee"
|
1902 |
msgstr ""
|
2056 |
msgid "Extra amount (per category)"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: templates/admin/fees-form.tpl.php:207
|
2060 |
#, fuzzy
|
2061 |
msgctxt "fees admin"
|
2062 |
msgid "Save Changes"
|
4166 |
msgstr "Auteur"
|
4167 |
|
4168 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
4169 |
+
#: includes/functions.php:981
|
4170 |
msgctxt "admin settings"
|
4171 |
msgid "Date posted"
|
4172 |
msgstr "Datum ingediend"
|
4173 |
|
4174 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
4175 |
+
#: includes/functions.php:982
|
4176 |
msgctxt "admin settings"
|
4177 |
msgid "Date last modified"
|
4178 |
msgstr ""
|
4459 |
"not activated."
|
4460 |
msgstr ""
|
4461 |
|
4462 |
+
#: includes/functions.php:979
|
4463 |
msgctxt "admin settings"
|
4464 |
msgid "User"
|
4465 |
msgstr "Gebruiker"
|
4466 |
|
4467 |
+
#: includes/functions.php:980
|
4468 |
msgctxt "admin settings"
|
4469 |
msgid "User registration date"
|
4470 |
msgstr "Gebruikers registratie datum"
|
4754 |
msgid "Migrating fee plans..."
|
4755 |
msgstr ""
|
4756 |
|
4757 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:251
|
4758 |
msgctxt "installer"
|
4759 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
4760 |
msgstr ""
|
4761 |
|
4762 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:318
|
4763 |
msgctxt "installer"
|
4764 |
msgid "! Could not migrate payment #%d"
|
4765 |
msgstr ""
|
4766 |
|
4767 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:323
|
4768 |
msgctxt "installer"
|
4769 |
msgid "Updating payment items format: %d items remaining..."
|
4770 |
msgstr ""
|
4771 |
|
4772 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:385
|
4773 |
msgctxt "installer"
|
4774 |
msgid "Migrating listing information: %d items remaining..."
|
4775 |
msgstr ""
|
6272 |
msgid "Featured Listing"
|
6273 |
msgstr "Aanbieding Registratie/Vermelding"
|
6274 |
|
6275 |
+
#: templates/login.tpl.php:21 templates/parts/login-required.tpl.php:7
|
6276 |
msgctxt "templates"
|
6277 |
msgid ""
|
6278 |
"You are not currently logged in. Please login or register first. When "
|
6280 |
"spam if you don't see it in your email within 60 minutes."
|
6281 |
msgstr ""
|
6282 |
|
6283 |
+
#: templates/login.tpl.php:32 templates/parts/login-required.tpl.php:31
|
6284 |
+
msgctxt "templates"
|
6285 |
+
msgid "Not yet registered?"
|
6286 |
+
msgstr ""
|
6287 |
+
|
6288 |
+
#: templates/login.tpl.php:34 templates/parts/login-required.tpl.php:33
|
6289 |
+
msgctxt "templates"
|
6290 |
+
msgid "Lost your password?"
|
6291 |
+
msgstr ""
|
6292 |
+
|
6293 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
6294 |
msgctxt "templates"
|
6295 |
msgid ""
|
6329 |
msgid "Login"
|
6330 |
msgstr "Inloggen"
|
6331 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6332 |
#: templates/renew-listing.tpl.php:3
|
6333 |
msgctxt "templates"
|
6334 |
msgid "Renew Listing"
|
6631 |
msgid "This contact form is temporarily disabled. Please try again later."
|
6632 |
msgstr ""
|
6633 |
|
6634 |
+
#: includes/views/login.php:32
|
6635 |
msgctxt "views:login"
|
6636 |
msgid "Please enter a valid e-mail/access key combination."
|
6637 |
msgstr ""
|
6638 |
|
6639 |
+
#: templates/login.tpl.php:27
|
6640 |
#, fuzzy
|
6641 |
msgctxt "views:login"
|
6642 |
msgid "Login"
|
6643 |
msgstr "Inloggen"
|
6644 |
|
6645 |
+
#: templates/login.tpl.php:40
|
6646 |
msgctxt "views:login"
|
6647 |
msgid "... or use an Access Key"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
+
#: templates/login.tpl.php:41
|
6651 |
msgctxt "views:login"
|
6652 |
msgid "Please enter your access key and e-mail address."
|
6653 |
msgstr ""
|
6654 |
|
6655 |
+
#: templates/login.tpl.php:45
|
6656 |
#, fuzzy
|
6657 |
msgctxt "views:login"
|
6658 |
msgid "E-Mail Address"
|
6659 |
msgstr "Email Adres:"
|
6660 |
|
6661 |
+
#: templates/login.tpl.php:46
|
6662 |
msgctxt "views:login"
|
6663 |
msgid "Access Key"
|
6664 |
msgstr ""
|
6665 |
|
6666 |
+
#: templates/login.tpl.php:47
|
6667 |
msgctxt "views:login"
|
6668 |
msgid "Use Access Key"
|
6669 |
msgstr ""
|
6670 |
|
6671 |
+
#: templates/login.tpl.php:48
|
6672 |
msgctxt "views:login"
|
6673 |
msgid "Request access key?"
|
6674 |
msgstr ""
|
7647 |
msgid "Address"
|
7648 |
msgstr ""
|
7649 |
|
7650 |
+
#~ msgctxt "admin actions"
|
7651 |
+
#~ msgid "Upgrade to Featured"
|
7652 |
+
#~ msgstr "Upgrade naar Aanbieding"
|
7653 |
+
|
7654 |
#~ msgid "Payment Status"
|
7655 |
#~ msgstr "Betaling status"
|
7656 |
|
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-
|
7 |
"PO-Revision-Date: 2017-01-16 17:49-0500\n"
|
8 |
"Last-Translator: HomeSupport <admin@homesupport.pl>\n"
|
9 |
"Language-Team: HomeSupport\n"
|
@@ -1245,18 +1245,6 @@ msgstr "Publikuj Ofertę"
|
|
1245 |
# @ WPBDM
|
1246 |
#: includes/admin/class-admin-listings.php:501
|
1247 |
msgctxt "admin actions"
|
1248 |
-
msgid "Upgrade to Featured"
|
1249 |
-
msgstr "Podnieś status do \"Wyróżnione\""
|
1250 |
-
|
1251 |
-
# @ WPBDM
|
1252 |
-
#: includes/admin/class-admin-listings.php:502
|
1253 |
-
msgctxt "admin actions"
|
1254 |
-
msgid "Downgrade to Normal"
|
1255 |
-
msgstr "Obniż status do \"normalna\""
|
1256 |
-
|
1257 |
-
# @ WPBDM
|
1258 |
-
#: includes/admin/class-admin-listings.php:504
|
1259 |
-
msgctxt "admin actions"
|
1260 |
msgid "Renew Listing"
|
1261 |
msgstr "Odnów Ofertę"
|
1262 |
|
@@ -2306,7 +2294,7 @@ msgid "Status"
|
|
2306 |
msgstr "Status"
|
2307 |
|
2308 |
# @ WPBDM
|
2309 |
-
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:
|
2310 |
msgctxt "fees admin"
|
2311 |
msgid "Add Listing Fee"
|
2312 |
msgstr "Dodaj Abonament oferty"
|
@@ -2492,7 +2480,7 @@ msgid "Extra amount (per category)"
|
|
2492 |
msgstr ""
|
2493 |
|
2494 |
# @ WPBDM
|
2495 |
-
#: templates/admin/fees-form.tpl.php:
|
2496 |
#, fuzzy
|
2497 |
msgctxt "fees admin"
|
2498 |
msgid "Save Changes"
|
@@ -4947,14 +4935,14 @@ msgstr "Autor"
|
|
4947 |
|
4948 |
# @ WPBDM
|
4949 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
4950 |
-
#: includes/functions.php:
|
4951 |
msgctxt "admin settings"
|
4952 |
msgid "Date posted"
|
4953 |
msgstr "Data publikacji"
|
4954 |
|
4955 |
# @ WPBDM
|
4956 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
4957 |
-
#: includes/functions.php:
|
4958 |
msgctxt "admin settings"
|
4959 |
msgid "Date last modified"
|
4960 |
msgstr "Data ostatnij modyfikacji"
|
@@ -5292,13 +5280,13 @@ msgstr ""
|
|
5292 |
"Nie można skopiować pluginu kompatybilności AJAX \"%s\". Tryb "
|
5293 |
"Kompatybilności nie został aktywowany."
|
5294 |
|
5295 |
-
#: includes/functions.php:
|
5296 |
msgctxt "admin settings"
|
5297 |
msgid "User"
|
5298 |
msgstr ""
|
5299 |
|
5300 |
# @ WPBDM
|
5301 |
-
#: includes/functions.php:
|
5302 |
msgctxt "admin settings"
|
5303 |
msgid "User registration date"
|
5304 |
msgstr "Data zakończenia emisji oferty"
|
@@ -5637,25 +5625,25 @@ msgid "Migrating fee plans..."
|
|
5637 |
msgstr "Aktywowanie Licencji"
|
5638 |
|
5639 |
# @ WPBDM
|
5640 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5641 |
#, fuzzy
|
5642 |
msgctxt "installer"
|
5643 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
5644 |
msgstr "Nie możemy deaktywować Licencji: %s."
|
5645 |
|
5646 |
# @ WPBDM
|
5647 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5648 |
#, fuzzy
|
5649 |
msgctxt "installer"
|
5650 |
msgid "! Could not migrate payment #%d"
|
5651 |
msgstr "Nie można kontynuować płatności."
|
5652 |
|
5653 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5654 |
msgctxt "installer"
|
5655 |
msgid "Updating payment items format: %d items remaining..."
|
5656 |
msgstr ""
|
5657 |
|
5658 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5659 |
msgctxt "installer"
|
5660 |
msgid "Migrating listing information: %d items remaining..."
|
5661 |
msgstr ""
|
@@ -7442,7 +7430,7 @@ msgid "Featured Listing"
|
|
7442 |
msgstr "Wyróżniona oferta"
|
7443 |
|
7444 |
# @ WPBDM
|
7445 |
-
#: templates/login.tpl.php:
|
7446 |
msgctxt "templates"
|
7447 |
msgid ""
|
7448 |
"You are not currently logged in. Please login or register first. When "
|
@@ -7454,6 +7442,18 @@ msgstr ""
|
|
7454 |
"nadal nie widzisz wiadomości, którą do ciebie wysłaliśmy - sprawdź opcje "
|
7455 |
"spamu w Twojej poczcie."
|
7456 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7457 |
# @ WPBDM
|
7458 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
7459 |
msgctxt "templates"
|
@@ -7502,18 +7502,6 @@ msgctxt "templates"
|
|
7502 |
msgid "Login"
|
7503 |
msgstr "Logowanie"
|
7504 |
|
7505 |
-
# @ WPBDM
|
7506 |
-
#: templates/parts/login-required.tpl.php:31
|
7507 |
-
msgctxt "templates"
|
7508 |
-
msgid "Not yet registered?"
|
7509 |
-
msgstr "Nie jesteś jeszcze zarejestrowany?"
|
7510 |
-
|
7511 |
-
# @ WPBDM
|
7512 |
-
#: templates/parts/login-required.tpl.php:33
|
7513 |
-
msgctxt "templates"
|
7514 |
-
msgid "Lost your password?"
|
7515 |
-
msgstr "Zapomniałeś lub zgubiłeś hasło?"
|
7516 |
-
|
7517 |
# @ WPBDM
|
7518 |
#: templates/renew-listing.tpl.php:3
|
7519 |
msgctxt "templates"
|
@@ -7884,55 +7872,55 @@ msgstr ""
|
|
7884 |
"Ten formularz kontaktu jest chwilowo wyłączony. Możesz spróbować pózniej."
|
7885 |
|
7886 |
# @ WPBDM
|
7887 |
-
#: includes/views/login.php:
|
7888 |
#, fuzzy
|
7889 |
msgctxt "views:login"
|
7890 |
msgid "Please enter a valid e-mail/access key combination."
|
7891 |
msgstr "Proszę wprowadzić poprawny adres e-mail."
|
7892 |
|
7893 |
# @ WPBDM
|
7894 |
-
#: templates/login.tpl.php:
|
7895 |
#, fuzzy
|
7896 |
msgctxt "views:login"
|
7897 |
msgid "Login"
|
7898 |
msgstr "Logowanie"
|
7899 |
|
7900 |
# @ WPBDM
|
7901 |
-
#: templates/login.tpl.php:
|
7902 |
#, fuzzy
|
7903 |
msgctxt "views:login"
|
7904 |
msgid "... or use an Access Key"
|
7905 |
msgstr "Pola/Obrazy"
|
7906 |
|
7907 |
# @ WPBDM
|
7908 |
-
#: templates/login.tpl.php:
|
7909 |
#, fuzzy
|
7910 |
msgctxt "views:login"
|
7911 |
msgid "Please enter your access key and e-mail address."
|
7912 |
msgstr "Proszę wprowadzić poprawny adres e-mail."
|
7913 |
|
7914 |
# @ WPBDM
|
7915 |
-
#: templates/login.tpl.php:
|
7916 |
#, fuzzy
|
7917 |
msgctxt "views:login"
|
7918 |
msgid "E-Mail Address"
|
7919 |
msgstr "Adres e-mail:"
|
7920 |
|
7921 |
# @ WPBDM
|
7922 |
-
#: templates/login.tpl.php:
|
7923 |
#, fuzzy
|
7924 |
msgctxt "views:login"
|
7925 |
msgid "Access Key"
|
7926 |
msgstr "Pola/Obrazy"
|
7927 |
|
7928 |
# @ WPBDM
|
7929 |
-
#: templates/login.tpl.php:
|
7930 |
#, fuzzy
|
7931 |
msgctxt "views:login"
|
7932 |
msgid "Use Access Key"
|
7933 |
msgstr "Pola/Obrazy"
|
7934 |
|
7935 |
-
#: templates/login.tpl.php:
|
7936 |
msgctxt "views:login"
|
7937 |
msgid "Request access key?"
|
7938 |
msgstr ""
|
@@ -9110,6 +9098,16 @@ msgctxt "themes/default"
|
|
9110 |
msgid "Address"
|
9111 |
msgstr "Adres e-mail:"
|
9112 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9113 |
# @ WPBDM
|
9114 |
#~ msgctxt "admin csv-export"
|
9115 |
#~ msgid "Sticky/featured status"
|
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-01 21:27:46+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"
|
1245 |
# @ WPBDM
|
1246 |
#: includes/admin/class-admin-listings.php:501
|
1247 |
msgctxt "admin actions"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1248 |
msgid "Renew Listing"
|
1249 |
msgstr "Odnów Ofertę"
|
1250 |
|
2294 |
msgstr "Status"
|
2295 |
|
2296 |
# @ WPBDM
|
2297 |
+
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:207
|
2298 |
msgctxt "fees admin"
|
2299 |
msgid "Add Listing Fee"
|
2300 |
msgstr "Dodaj Abonament oferty"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
# @ WPBDM
|
2483 |
+
#: templates/admin/fees-form.tpl.php:207
|
2484 |
#, fuzzy
|
2485 |
msgctxt "fees admin"
|
2486 |
msgid "Save Changes"
|
4935 |
|
4936 |
# @ WPBDM
|
4937 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
4938 |
+
#: includes/functions.php:981
|
4939 |
msgctxt "admin settings"
|
4940 |
msgid "Date posted"
|
4941 |
msgstr "Data publikacji"
|
4942 |
|
4943 |
# @ WPBDM
|
4944 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
4945 |
+
#: includes/functions.php:982
|
4946 |
msgctxt "admin settings"
|
4947 |
msgid "Date last modified"
|
4948 |
msgstr "Data ostatnij modyfikacji"
|
5280 |
"Nie można skopiować pluginu kompatybilności AJAX \"%s\". Tryb "
|
5281 |
"Kompatybilności nie został aktywowany."
|
5282 |
|
5283 |
+
#: includes/functions.php:979
|
5284 |
msgctxt "admin settings"
|
5285 |
msgid "User"
|
5286 |
msgstr ""
|
5287 |
|
5288 |
# @ WPBDM
|
5289 |
+
#: includes/functions.php:980
|
5290 |
msgctxt "admin settings"
|
5291 |
msgid "User registration date"
|
5292 |
msgstr "Data zakończenia emisji oferty"
|
5625 |
msgstr "Aktywowanie Licencji"
|
5626 |
|
5627 |
# @ WPBDM
|
5628 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:251
|
5629 |
#, fuzzy
|
5630 |
msgctxt "installer"
|
5631 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
5632 |
msgstr "Nie możemy deaktywować Licencji: %s."
|
5633 |
|
5634 |
# @ WPBDM
|
5635 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:318
|
5636 |
#, fuzzy
|
5637 |
msgctxt "installer"
|
5638 |
msgid "! Could not migrate payment #%d"
|
5639 |
msgstr "Nie można kontynuować płatności."
|
5640 |
|
5641 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:323
|
5642 |
msgctxt "installer"
|
5643 |
msgid "Updating payment items format: %d items remaining..."
|
5644 |
msgstr ""
|
5645 |
|
5646 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:385
|
5647 |
msgctxt "installer"
|
5648 |
msgid "Migrating listing information: %d items remaining..."
|
5649 |
msgstr ""
|
7430 |
msgstr "Wyróżniona oferta"
|
7431 |
|
7432 |
# @ WPBDM
|
7433 |
+
#: templates/login.tpl.php:21 templates/parts/login-required.tpl.php:7
|
7434 |
msgctxt "templates"
|
7435 |
msgid ""
|
7436 |
"You are not currently logged in. Please login or register first. When "
|
7442 |
"nadal nie widzisz wiadomości, którą do ciebie wysłaliśmy - sprawdź opcje "
|
7443 |
"spamu w Twojej poczcie."
|
7444 |
|
7445 |
+
# @ WPBDM
|
7446 |
+
#: templates/login.tpl.php:32 templates/parts/login-required.tpl.php:31
|
7447 |
+
msgctxt "templates"
|
7448 |
+
msgid "Not yet registered?"
|
7449 |
+
msgstr "Nie jesteś jeszcze zarejestrowany?"
|
7450 |
+
|
7451 |
+
# @ WPBDM
|
7452 |
+
#: templates/login.tpl.php:34 templates/parts/login-required.tpl.php:33
|
7453 |
+
msgctxt "templates"
|
7454 |
+
msgid "Lost your password?"
|
7455 |
+
msgstr "Zapomniałeś lub zgubiłeś hasło?"
|
7456 |
+
|
7457 |
# @ WPBDM
|
7458 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
7459 |
msgctxt "templates"
|
7502 |
msgid "Login"
|
7503 |
msgstr "Logowanie"
|
7504 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7505 |
# @ WPBDM
|
7506 |
#: templates/renew-listing.tpl.php:3
|
7507 |
msgctxt "templates"
|
7872 |
"Ten formularz kontaktu jest chwilowo wyłączony. Możesz spróbować pózniej."
|
7873 |
|
7874 |
# @ WPBDM
|
7875 |
+
#: includes/views/login.php:32
|
7876 |
#, fuzzy
|
7877 |
msgctxt "views:login"
|
7878 |
msgid "Please enter a valid e-mail/access key combination."
|
7879 |
msgstr "Proszę wprowadzić poprawny adres e-mail."
|
7880 |
|
7881 |
# @ WPBDM
|
7882 |
+
#: templates/login.tpl.php:27
|
7883 |
#, fuzzy
|
7884 |
msgctxt "views:login"
|
7885 |
msgid "Login"
|
7886 |
msgstr "Logowanie"
|
7887 |
|
7888 |
# @ WPBDM
|
7889 |
+
#: templates/login.tpl.php:40
|
7890 |
#, fuzzy
|
7891 |
msgctxt "views:login"
|
7892 |
msgid "... or use an Access Key"
|
7893 |
msgstr "Pola/Obrazy"
|
7894 |
|
7895 |
# @ WPBDM
|
7896 |
+
#: templates/login.tpl.php:41
|
7897 |
#, fuzzy
|
7898 |
msgctxt "views:login"
|
7899 |
msgid "Please enter your access key and e-mail address."
|
7900 |
msgstr "Proszę wprowadzić poprawny adres e-mail."
|
7901 |
|
7902 |
# @ WPBDM
|
7903 |
+
#: templates/login.tpl.php:45
|
7904 |
#, fuzzy
|
7905 |
msgctxt "views:login"
|
7906 |
msgid "E-Mail Address"
|
7907 |
msgstr "Adres e-mail:"
|
7908 |
|
7909 |
# @ WPBDM
|
7910 |
+
#: templates/login.tpl.php:46
|
7911 |
#, fuzzy
|
7912 |
msgctxt "views:login"
|
7913 |
msgid "Access Key"
|
7914 |
msgstr "Pola/Obrazy"
|
7915 |
|
7916 |
# @ WPBDM
|
7917 |
+
#: templates/login.tpl.php:47
|
7918 |
#, fuzzy
|
7919 |
msgctxt "views:login"
|
7920 |
msgid "Use Access Key"
|
7921 |
msgstr "Pola/Obrazy"
|
7922 |
|
7923 |
+
#: templates/login.tpl.php:48
|
7924 |
msgctxt "views:login"
|
7925 |
msgid "Request access key?"
|
7926 |
msgstr ""
|
9098 |
msgid "Address"
|
9099 |
msgstr "Adres e-mail:"
|
9100 |
|
9101 |
+
# @ WPBDM
|
9102 |
+
#~ msgctxt "admin actions"
|
9103 |
+
#~ msgid "Upgrade to Featured"
|
9104 |
+
#~ msgstr "Podnieś status do \"Wyróżnione\""
|
9105 |
+
|
9106 |
+
# @ WPBDM
|
9107 |
+
#~ msgctxt "admin actions"
|
9108 |
+
#~ msgid "Downgrade to Normal"
|
9109 |
+
#~ msgstr "Obniż status do \"normalna\""
|
9110 |
+
|
9111 |
# @ WPBDM
|
9112 |
#~ msgctxt "admin csv-export"
|
9113 |
#~ msgid "Sticky/featured status"
|
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-
|
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"
|
@@ -1084,16 +1084,6 @@ msgstr "Опубликовать запись"
|
|
1084 |
|
1085 |
#: includes/admin/class-admin-listings.php:501
|
1086 |
msgctxt "admin actions"
|
1087 |
-
msgid "Upgrade to Featured"
|
1088 |
-
msgstr "Поднять статус до Особой"
|
1089 |
-
|
1090 |
-
#: includes/admin/class-admin-listings.php:502
|
1091 |
-
msgctxt "admin actions"
|
1092 |
-
msgid "Downgrade to Normal"
|
1093 |
-
msgstr "Опустить статус до Обычная"
|
1094 |
-
|
1095 |
-
#: includes/admin/class-admin-listings.php:504
|
1096 |
-
msgctxt "admin actions"
|
1097 |
msgid "Renew Listing"
|
1098 |
msgstr "Продлить запись"
|
1099 |
|
@@ -2020,7 +2010,7 @@ msgctxt "fees admin"
|
|
2020 |
msgid "Status"
|
2021 |
msgstr "Новый статус:"
|
2022 |
|
2023 |
-
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:
|
2024 |
msgctxt "fees admin"
|
2025 |
msgid "Add Listing Fee"
|
2026 |
msgstr "Добавить тариф"
|
@@ -2187,7 +2177,7 @@ msgctxt "fees admin"
|
|
2187 |
msgid "Extra amount (per category)"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
-
#: templates/admin/fees-form.tpl.php:
|
2191 |
#, fuzzy
|
2192 |
msgctxt "fees admin"
|
2193 |
msgid "Save Changes"
|
@@ -4388,13 +4378,13 @@ msgid "Author"
|
|
4388 |
msgstr "По автору"
|
4389 |
|
4390 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
4391 |
-
#: includes/functions.php:
|
4392 |
msgctxt "admin settings"
|
4393 |
msgid "Date posted"
|
4394 |
msgstr "По дате публикации"
|
4395 |
|
4396 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
4397 |
-
#: includes/functions.php:
|
4398 |
msgctxt "admin settings"
|
4399 |
msgid "Date last modified"
|
4400 |
msgstr "По дате изменения"
|
@@ -4692,12 +4682,12 @@ msgstr ""
|
|
4692 |
"Не удалось скопировать плагин совместимости с AJAX \"%s\". Режим "
|
4693 |
"совместимости не был активирован."
|
4694 |
|
4695 |
-
#: includes/functions.php:
|
4696 |
msgctxt "admin settings"
|
4697 |
msgid "User"
|
4698 |
msgstr ""
|
4699 |
|
4700 |
-
#: includes/functions.php:
|
4701 |
msgctxt "admin settings"
|
4702 |
msgid "User registration date"
|
4703 |
msgstr "Дата окончания срока действия"
|
@@ -5004,24 +4994,24 @@ msgctxt "installer"
|
|
5004 |
msgid "Migrating fee plans..."
|
5005 |
msgstr "Активация лицензии..."
|
5006 |
|
5007 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5008 |
#, fuzzy
|
5009 |
msgctxt "installer"
|
5010 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
5011 |
msgstr "Не удалось обновить тему: %s"
|
5012 |
|
5013 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5014 |
#, fuzzy
|
5015 |
msgctxt "installer"
|
5016 |
msgid "! Could not migrate payment #%d"
|
5017 |
msgstr "Не удалось провести платёж."
|
5018 |
|
5019 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5020 |
msgctxt "installer"
|
5021 |
msgid "Updating payment items format: %d items remaining..."
|
5022 |
msgstr ""
|
5023 |
|
5024 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5025 |
msgctxt "installer"
|
5026 |
msgid "Migrating listing information: %d items remaining..."
|
5027 |
msgstr ""
|
@@ -6597,7 +6587,7 @@ msgctxt "templates"
|
|
6597 |
msgid "Featured Listing"
|
6598 |
msgstr "Особая запись"
|
6599 |
|
6600 |
-
#: templates/login.tpl.php:
|
6601 |
msgctxt "templates"
|
6602 |
msgid ""
|
6603 |
"You are not currently logged in. Please login or register first. When "
|
@@ -6608,6 +6598,16 @@ msgstr ""
|
|
6608 |
"регистрации Вы получите электронной письмо с кодом активации. Убедитесь, что "
|
6609 |
"это письмо не попадёт в папку Спама в вашей почтовой системе."
|
6610 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6611 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
6612 |
msgctxt "templates"
|
6613 |
msgid ""
|
@@ -6649,16 +6649,6 @@ msgctxt "templates"
|
|
6649 |
msgid "Login"
|
6650 |
msgstr "Войти в сайт"
|
6651 |
|
6652 |
-
#: templates/parts/login-required.tpl.php:31
|
6653 |
-
msgctxt "templates"
|
6654 |
-
msgid "Not yet registered?"
|
6655 |
-
msgstr "Ещё не зарегистрированы?"
|
6656 |
-
|
6657 |
-
#: templates/parts/login-required.tpl.php:33
|
6658 |
-
msgctxt "templates"
|
6659 |
-
msgid "Lost your password?"
|
6660 |
-
msgstr "Забыли пароль?"
|
6661 |
-
|
6662 |
#: templates/renew-listing.tpl.php:3
|
6663 |
msgctxt "templates"
|
6664 |
msgid "Renew Listing"
|
@@ -6978,49 +6968,49 @@ msgstr ""
|
|
6978 |
"Эта контактная форма временно отключена. Попробуйте открыть её ещё раз "
|
6979 |
"позднее."
|
6980 |
|
6981 |
-
#: includes/views/login.php:
|
6982 |
#, fuzzy
|
6983 |
msgctxt "views:login"
|
6984 |
msgid "Please enter a valid e-mail/access key combination."
|
6985 |
msgstr "Пожалуйста введите правильный электронный адрес."
|
6986 |
|
6987 |
-
#: templates/login.tpl.php:
|
6988 |
#, fuzzy
|
6989 |
msgctxt "views:login"
|
6990 |
msgid "Login"
|
6991 |
msgstr "Войти в сайт"
|
6992 |
|
6993 |
-
#: templates/login.tpl.php:
|
6994 |
#, fuzzy
|
6995 |
msgctxt "views:login"
|
6996 |
msgid "... or use an Access Key"
|
6997 |
msgstr "Поля и Изображения записи"
|
6998 |
|
6999 |
-
#: templates/login.tpl.php:
|
7000 |
#, fuzzy
|
7001 |
msgctxt "views:login"
|
7002 |
msgid "Please enter your access key and e-mail address."
|
7003 |
msgstr "Пожалуйста введите правильный электронный адрес."
|
7004 |
|
7005 |
-
#: templates/login.tpl.php:
|
7006 |
#, fuzzy
|
7007 |
msgctxt "views:login"
|
7008 |
msgid "E-Mail Address"
|
7009 |
msgstr "Электронный адрес:"
|
7010 |
|
7011 |
-
#: templates/login.tpl.php:
|
7012 |
#, fuzzy
|
7013 |
msgctxt "views:login"
|
7014 |
msgid "Access Key"
|
7015 |
msgstr "Поля и Изображения записи"
|
7016 |
|
7017 |
-
#: templates/login.tpl.php:
|
7018 |
#, fuzzy
|
7019 |
msgctxt "views:login"
|
7020 |
msgid "Use Access Key"
|
7021 |
msgstr "Поля и Изображения записи"
|
7022 |
|
7023 |
-
#: templates/login.tpl.php:
|
7024 |
msgctxt "views:login"
|
7025 |
msgid "Request access key?"
|
7026 |
msgstr ""
|
@@ -8042,6 +8032,14 @@ msgctxt "themes/default"
|
|
8042 |
msgid "Address"
|
8043 |
msgstr "Адрес"
|
8044 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8045 |
#~ msgctxt "admin csv-export"
|
8046 |
#~ msgid "Sticky/featured status"
|
8047 |
#~ 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-01 21:27:46+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"
|
1084 |
|
1085 |
#: includes/admin/class-admin-listings.php:501
|
1086 |
msgctxt "admin actions"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1087 |
msgid "Renew Listing"
|
1088 |
msgstr "Продлить запись"
|
1089 |
|
2010 |
msgid "Status"
|
2011 |
msgstr "Новый статус:"
|
2012 |
|
2013 |
+
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:207
|
2014 |
msgctxt "fees admin"
|
2015 |
msgid "Add Listing Fee"
|
2016 |
msgstr "Добавить тариф"
|
2177 |
msgid "Extra amount (per category)"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: templates/admin/fees-form.tpl.php:207
|
2181 |
#, fuzzy
|
2182 |
msgctxt "fees admin"
|
2183 |
msgid "Save Changes"
|
4378 |
msgstr "По автору"
|
4379 |
|
4380 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
4381 |
+
#: includes/functions.php:981
|
4382 |
msgctxt "admin settings"
|
4383 |
msgid "Date posted"
|
4384 |
msgstr "По дате публикации"
|
4385 |
|
4386 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
4387 |
+
#: includes/functions.php:982
|
4388 |
msgctxt "admin settings"
|
4389 |
msgid "Date last modified"
|
4390 |
msgstr "По дате изменения"
|
4682 |
"Не удалось скопировать плагин совместимости с AJAX \"%s\". Режим "
|
4683 |
"совместимости не был активирован."
|
4684 |
|
4685 |
+
#: includes/functions.php:979
|
4686 |
msgctxt "admin settings"
|
4687 |
msgid "User"
|
4688 |
msgstr ""
|
4689 |
|
4690 |
+
#: includes/functions.php:980
|
4691 |
msgctxt "admin settings"
|
4692 |
msgid "User registration date"
|
4693 |
msgstr "Дата окончания срока действия"
|
4994 |
msgid "Migrating fee plans..."
|
4995 |
msgstr "Активация лицензии..."
|
4996 |
|
4997 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:251
|
4998 |
#, fuzzy
|
4999 |
msgctxt "installer"
|
5000 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
5001 |
msgstr "Не удалось обновить тему: %s"
|
5002 |
|
5003 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:318
|
5004 |
#, fuzzy
|
5005 |
msgctxt "installer"
|
5006 |
msgid "! Could not migrate payment #%d"
|
5007 |
msgstr "Не удалось провести платёж."
|
5008 |
|
5009 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:323
|
5010 |
msgctxt "installer"
|
5011 |
msgid "Updating payment items format: %d items remaining..."
|
5012 |
msgstr ""
|
5013 |
|
5014 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:385
|
5015 |
msgctxt "installer"
|
5016 |
msgid "Migrating listing information: %d items remaining..."
|
5017 |
msgstr ""
|
6587 |
msgid "Featured Listing"
|
6588 |
msgstr "Особая запись"
|
6589 |
|
6590 |
+
#: templates/login.tpl.php:21 templates/parts/login-required.tpl.php:7
|
6591 |
msgctxt "templates"
|
6592 |
msgid ""
|
6593 |
"You are not currently logged in. Please login or register first. When "
|
6598 |
"регистрации Вы получите электронной письмо с кодом активации. Убедитесь, что "
|
6599 |
"это письмо не попадёт в папку Спама в вашей почтовой системе."
|
6600 |
|
6601 |
+
#: templates/login.tpl.php:32 templates/parts/login-required.tpl.php:31
|
6602 |
+
msgctxt "templates"
|
6603 |
+
msgid "Not yet registered?"
|
6604 |
+
msgstr "Ещё не зарегистрированы?"
|
6605 |
+
|
6606 |
+
#: templates/login.tpl.php:34 templates/parts/login-required.tpl.php:33
|
6607 |
+
msgctxt "templates"
|
6608 |
+
msgid "Lost your password?"
|
6609 |
+
msgstr "Забыли пароль?"
|
6610 |
+
|
6611 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
6612 |
msgctxt "templates"
|
6613 |
msgid ""
|
6649 |
msgid "Login"
|
6650 |
msgstr "Войти в сайт"
|
6651 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6652 |
#: templates/renew-listing.tpl.php:3
|
6653 |
msgctxt "templates"
|
6654 |
msgid "Renew Listing"
|
6968 |
"Эта контактная форма временно отключена. Попробуйте открыть её ещё раз "
|
6969 |
"позднее."
|
6970 |
|
6971 |
+
#: includes/views/login.php:32
|
6972 |
#, fuzzy
|
6973 |
msgctxt "views:login"
|
6974 |
msgid "Please enter a valid e-mail/access key combination."
|
6975 |
msgstr "Пожалуйста введите правильный электронный адрес."
|
6976 |
|
6977 |
+
#: templates/login.tpl.php:27
|
6978 |
#, fuzzy
|
6979 |
msgctxt "views:login"
|
6980 |
msgid "Login"
|
6981 |
msgstr "Войти в сайт"
|
6982 |
|
6983 |
+
#: templates/login.tpl.php:40
|
6984 |
#, fuzzy
|
6985 |
msgctxt "views:login"
|
6986 |
msgid "... or use an Access Key"
|
6987 |
msgstr "Поля и Изображения записи"
|
6988 |
|
6989 |
+
#: templates/login.tpl.php:41
|
6990 |
#, fuzzy
|
6991 |
msgctxt "views:login"
|
6992 |
msgid "Please enter your access key and e-mail address."
|
6993 |
msgstr "Пожалуйста введите правильный электронный адрес."
|
6994 |
|
6995 |
+
#: templates/login.tpl.php:45
|
6996 |
#, fuzzy
|
6997 |
msgctxt "views:login"
|
6998 |
msgid "E-Mail Address"
|
6999 |
msgstr "Электронный адрес:"
|
7000 |
|
7001 |
+
#: templates/login.tpl.php:46
|
7002 |
#, fuzzy
|
7003 |
msgctxt "views:login"
|
7004 |
msgid "Access Key"
|
7005 |
msgstr "Поля и Изображения записи"
|
7006 |
|
7007 |
+
#: templates/login.tpl.php:47
|
7008 |
#, fuzzy
|
7009 |
msgctxt "views:login"
|
7010 |
msgid "Use Access Key"
|
7011 |
msgstr "Поля и Изображения записи"
|
7012 |
|
7013 |
+
#: templates/login.tpl.php:48
|
7014 |
msgctxt "views:login"
|
7015 |
msgid "Request access key?"
|
7016 |
msgstr ""
|
8032 |
msgid "Address"
|
8033 |
msgstr "Адрес"
|
8034 |
|
8035 |
+
#~ msgctxt "admin actions"
|
8036 |
+
#~ msgid "Upgrade to Featured"
|
8037 |
+
#~ msgstr "Поднять статус до Особой"
|
8038 |
+
|
8039 |
+
#~ msgctxt "admin actions"
|
8040 |
+
#~ msgid "Downgrade to Normal"
|
8041 |
+
#~ msgstr "Опустить статус до Обычная"
|
8042 |
+
|
8043 |
#~ msgctxt "admin csv-export"
|
8044 |
#~ msgid "Sticky/featured status"
|
8045 |
#~ 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-
|
9 |
"PO-Revision-Date: 2017-01-16 17:49-0500\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
@@ -1075,16 +1075,6 @@ msgstr "Publicera annons"
|
|
1075 |
|
1076 |
#: includes/admin/class-admin-listings.php:501
|
1077 |
msgctxt "admin actions"
|
1078 |
-
msgid "Upgrade to Featured"
|
1079 |
-
msgstr "Uppgradera till Utvald"
|
1080 |
-
|
1081 |
-
#: includes/admin/class-admin-listings.php:502
|
1082 |
-
msgctxt "admin actions"
|
1083 |
-
msgid "Downgrade to Normal"
|
1084 |
-
msgstr "Nedgradera till normal"
|
1085 |
-
|
1086 |
-
#: includes/admin/class-admin-listings.php:504
|
1087 |
-
msgctxt "admin actions"
|
1088 |
msgid "Renew Listing"
|
1089 |
msgstr "Förnya annons"
|
1090 |
|
@@ -2029,7 +2019,7 @@ msgctxt "fees admin"
|
|
2029 |
msgid "Status"
|
2030 |
msgstr "Status"
|
2031 |
|
2032 |
-
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:
|
2033 |
msgctxt "fees admin"
|
2034 |
msgid "Add Listing Fee"
|
2035 |
msgstr "Lägg till annonsavgift"
|
@@ -2198,7 +2188,7 @@ msgctxt "fees admin"
|
|
2198 |
msgid "Extra amount (per category)"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
-
#: templates/admin/fees-form.tpl.php:
|
2202 |
#, fuzzy
|
2203 |
msgctxt "fees admin"
|
2204 |
msgid "Save Changes"
|
@@ -4382,13 +4372,13 @@ msgid "Author"
|
|
4382 |
msgstr "Författare"
|
4383 |
|
4384 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
4385 |
-
#: includes/functions.php:
|
4386 |
msgctxt "admin settings"
|
4387 |
msgid "Date posted"
|
4388 |
msgstr "Datum inlagd"
|
4389 |
|
4390 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
4391 |
-
#: includes/functions.php:
|
4392 |
msgctxt "admin settings"
|
4393 |
msgid "Date last modified"
|
4394 |
msgstr "Senast ändrad"
|
@@ -4686,12 +4676,12 @@ msgstr ""
|
|
4686 |
"Det gick inte att kopiera AJAX kompatibilitetsplugin \"%s\". "
|
4687 |
"Kompatibilitetsläge aktiverades inte."
|
4688 |
|
4689 |
-
#: includes/functions.php:
|
4690 |
msgctxt "admin settings"
|
4691 |
msgid "User"
|
4692 |
msgstr "Användare"
|
4693 |
|
4694 |
-
#: includes/functions.php:
|
4695 |
msgctxt "admin settings"
|
4696 |
msgid "User registration date"
|
4697 |
msgstr "Användarens registreringsdatum"
|
@@ -4995,24 +4985,24 @@ msgctxt "installer"
|
|
4995 |
msgid "Migrating fee plans..."
|
4996 |
msgstr "Aktiverar licensen"
|
4997 |
|
4998 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
4999 |
#, fuzzy
|
5000 |
msgctxt "installer"
|
5001 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
5002 |
msgstr "Det gick inte att uppdatera tema:%s"
|
5003 |
|
5004 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5005 |
#, fuzzy
|
5006 |
msgctxt "installer"
|
5007 |
msgid "! Could not migrate payment #%d"
|
5008 |
msgstr "Det gick inte att bearbeta betalningen."
|
5009 |
|
5010 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5011 |
msgctxt "installer"
|
5012 |
msgid "Updating payment items format: %d items remaining..."
|
5013 |
msgstr ""
|
5014 |
|
5015 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
5016 |
msgctxt "installer"
|
5017 |
msgid "Migrating listing information: %d items remaining..."
|
5018 |
msgstr ""
|
@@ -6591,7 +6581,7 @@ msgctxt "templates"
|
|
6591 |
msgid "Featured Listing"
|
6592 |
msgstr "Utvald annons"
|
6593 |
|
6594 |
-
#: templates/login.tpl.php:
|
6595 |
msgctxt "templates"
|
6596 |
msgid ""
|
6597 |
"You are not currently logged in. Please login or register first. When "
|
@@ -6602,6 +6592,16 @@ msgstr ""
|
|
6602 |
"registrerar dig får du ett aktiveringsmejl. Vänligen kontrollera din "
|
6603 |
"skräppost om du inte ser mejlet inom 60 minuter."
|
6604 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6605 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
6606 |
msgctxt "templates"
|
6607 |
msgid ""
|
@@ -6643,16 +6643,6 @@ msgctxt "templates"
|
|
6643 |
msgid "Login"
|
6644 |
msgstr "Inloggning"
|
6645 |
|
6646 |
-
#: templates/parts/login-required.tpl.php:31
|
6647 |
-
msgctxt "templates"
|
6648 |
-
msgid "Not yet registered?"
|
6649 |
-
msgstr "Ännu inte registrerad?"
|
6650 |
-
|
6651 |
-
#: templates/parts/login-required.tpl.php:33
|
6652 |
-
msgctxt "templates"
|
6653 |
-
msgid "Lost your password?"
|
6654 |
-
msgstr "Glömt ditt lösenord?"
|
6655 |
-
|
6656 |
#: templates/renew-listing.tpl.php:3
|
6657 |
msgctxt "templates"
|
6658 |
msgid "Renew Listing"
|
@@ -6965,49 +6955,49 @@ msgctxt "contact form"
|
|
6965 |
msgid "This contact form is temporarily disabled. Please try again later."
|
6966 |
msgstr "Detta kontaktformulär är tillfälligt inaktiverat. Försök igen senare."
|
6967 |
|
6968 |
-
#: includes/views/login.php:
|
6969 |
#, fuzzy
|
6970 |
msgctxt "views:login"
|
6971 |
msgid "Please enter a valid e-mail/access key combination."
|
6972 |
msgstr "Vänligen ange en giltig e-postadress."
|
6973 |
|
6974 |
-
#: templates/login.tpl.php:
|
6975 |
#, fuzzy
|
6976 |
msgctxt "views:login"
|
6977 |
msgid "Login"
|
6978 |
msgstr "Inloggning"
|
6979 |
|
6980 |
-
#: templates/login.tpl.php:
|
6981 |
#, fuzzy
|
6982 |
msgctxt "views:login"
|
6983 |
msgid "... or use an Access Key"
|
6984 |
msgstr "Åtkomstnycklar till annons"
|
6985 |
|
6986 |
-
#: templates/login.tpl.php:
|
6987 |
#, fuzzy
|
6988 |
msgctxt "views:login"
|
6989 |
msgid "Please enter your access key and e-mail address."
|
6990 |
msgstr "Vänligen ange en giltig e-postadress."
|
6991 |
|
6992 |
-
#: templates/login.tpl.php:
|
6993 |
#, fuzzy
|
6994 |
msgctxt "views:login"
|
6995 |
msgid "E-Mail Address"
|
6996 |
msgstr "E-postadress:"
|
6997 |
|
6998 |
-
#: templates/login.tpl.php:
|
6999 |
#, fuzzy
|
7000 |
msgctxt "views:login"
|
7001 |
msgid "Access Key"
|
7002 |
msgstr "Åtkomstnyckel"
|
7003 |
|
7004 |
-
#: templates/login.tpl.php:
|
7005 |
#, fuzzy
|
7006 |
msgctxt "views:login"
|
7007 |
msgid "Use Access Key"
|
7008 |
msgstr "Åtkomstnyckel"
|
7009 |
|
7010 |
-
#: templates/login.tpl.php:
|
7011 |
msgctxt "views:login"
|
7012 |
msgid "Request access key?"
|
7013 |
msgstr ""
|
@@ -8025,6 +8015,14 @@ msgctxt "themes/default"
|
|
8025 |
msgid "Address"
|
8026 |
msgstr "Adress"
|
8027 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8028 |
#~ msgctxt "admin csv-export"
|
8029 |
#~ msgid "Sticky/featured status"
|
8030 |
#~ msgstr "Utvald (fäst) status"
|
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-01 21:27:46+00:00\n"
|
9 |
"PO-Revision-Date: 2017-01-16 17:49-0500\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
1075 |
|
1076 |
#: includes/admin/class-admin-listings.php:501
|
1077 |
msgctxt "admin actions"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1078 |
msgid "Renew Listing"
|
1079 |
msgstr "Förnya annons"
|
1080 |
|
2019 |
msgid "Status"
|
2020 |
msgstr "Status"
|
2021 |
|
2022 |
+
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:207
|
2023 |
msgctxt "fees admin"
|
2024 |
msgid "Add Listing Fee"
|
2025 |
msgstr "Lägg till annonsavgift"
|
2188 |
msgid "Extra amount (per category)"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
#: templates/admin/fees-form.tpl.php:207
|
2192 |
#, fuzzy
|
2193 |
msgctxt "fees admin"
|
2194 |
msgid "Save Changes"
|
4372 |
msgstr "Författare"
|
4373 |
|
4374 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
4375 |
+
#: includes/functions.php:981
|
4376 |
msgctxt "admin settings"
|
4377 |
msgid "Date posted"
|
4378 |
msgstr "Datum inlagd"
|
4379 |
|
4380 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
4381 |
+
#: includes/functions.php:982
|
4382 |
msgctxt "admin settings"
|
4383 |
msgid "Date last modified"
|
4384 |
msgstr "Senast ändrad"
|
4676 |
"Det gick inte att kopiera AJAX kompatibilitetsplugin \"%s\". "
|
4677 |
"Kompatibilitetsläge aktiverades inte."
|
4678 |
|
4679 |
+
#: includes/functions.php:979
|
4680 |
msgctxt "admin settings"
|
4681 |
msgid "User"
|
4682 |
msgstr "Användare"
|
4683 |
|
4684 |
+
#: includes/functions.php:980
|
4685 |
msgctxt "admin settings"
|
4686 |
msgid "User registration date"
|
4687 |
msgstr "Användarens registreringsdatum"
|
4985 |
msgid "Migrating fee plans..."
|
4986 |
msgstr "Aktiverar licensen"
|
4987 |
|
4988 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:251
|
4989 |
#, fuzzy
|
4990 |
msgctxt "installer"
|
4991 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
4992 |
msgstr "Det gick inte att uppdatera tema:%s"
|
4993 |
|
4994 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:318
|
4995 |
#, fuzzy
|
4996 |
msgctxt "installer"
|
4997 |
msgid "! Could not migrate payment #%d"
|
4998 |
msgstr "Det gick inte att bearbeta betalningen."
|
4999 |
|
5000 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:323
|
5001 |
msgctxt "installer"
|
5002 |
msgid "Updating payment items format: %d items remaining..."
|
5003 |
msgstr ""
|
5004 |
|
5005 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:385
|
5006 |
msgctxt "installer"
|
5007 |
msgid "Migrating listing information: %d items remaining..."
|
5008 |
msgstr ""
|
6581 |
msgid "Featured Listing"
|
6582 |
msgstr "Utvald annons"
|
6583 |
|
6584 |
+
#: templates/login.tpl.php:21 templates/parts/login-required.tpl.php:7
|
6585 |
msgctxt "templates"
|
6586 |
msgid ""
|
6587 |
"You are not currently logged in. Please login or register first. When "
|
6592 |
"registrerar dig får du ett aktiveringsmejl. Vänligen kontrollera din "
|
6593 |
"skräppost om du inte ser mejlet inom 60 minuter."
|
6594 |
|
6595 |
+
#: templates/login.tpl.php:32 templates/parts/login-required.tpl.php:31
|
6596 |
+
msgctxt "templates"
|
6597 |
+
msgid "Not yet registered?"
|
6598 |
+
msgstr "Ännu inte registrerad?"
|
6599 |
+
|
6600 |
+
#: templates/login.tpl.php:34 templates/parts/login-required.tpl.php:33
|
6601 |
+
msgctxt "templates"
|
6602 |
+
msgid "Lost your password?"
|
6603 |
+
msgstr "Glömt ditt lösenord?"
|
6604 |
+
|
6605 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
6606 |
msgctxt "templates"
|
6607 |
msgid ""
|
6643 |
msgid "Login"
|
6644 |
msgstr "Inloggning"
|
6645 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6646 |
#: templates/renew-listing.tpl.php:3
|
6647 |
msgctxt "templates"
|
6648 |
msgid "Renew Listing"
|
6955 |
msgid "This contact form is temporarily disabled. Please try again later."
|
6956 |
msgstr "Detta kontaktformulär är tillfälligt inaktiverat. Försök igen senare."
|
6957 |
|
6958 |
+
#: includes/views/login.php:32
|
6959 |
#, fuzzy
|
6960 |
msgctxt "views:login"
|
6961 |
msgid "Please enter a valid e-mail/access key combination."
|
6962 |
msgstr "Vänligen ange en giltig e-postadress."
|
6963 |
|
6964 |
+
#: templates/login.tpl.php:27
|
6965 |
#, fuzzy
|
6966 |
msgctxt "views:login"
|
6967 |
msgid "Login"
|
6968 |
msgstr "Inloggning"
|
6969 |
|
6970 |
+
#: templates/login.tpl.php:40
|
6971 |
#, fuzzy
|
6972 |
msgctxt "views:login"
|
6973 |
msgid "... or use an Access Key"
|
6974 |
msgstr "Åtkomstnycklar till annons"
|
6975 |
|
6976 |
+
#: templates/login.tpl.php:41
|
6977 |
#, fuzzy
|
6978 |
msgctxt "views:login"
|
6979 |
msgid "Please enter your access key and e-mail address."
|
6980 |
msgstr "Vänligen ange en giltig e-postadress."
|
6981 |
|
6982 |
+
#: templates/login.tpl.php:45
|
6983 |
#, fuzzy
|
6984 |
msgctxt "views:login"
|
6985 |
msgid "E-Mail Address"
|
6986 |
msgstr "E-postadress:"
|
6987 |
|
6988 |
+
#: templates/login.tpl.php:46
|
6989 |
#, fuzzy
|
6990 |
msgctxt "views:login"
|
6991 |
msgid "Access Key"
|
6992 |
msgstr "Åtkomstnyckel"
|
6993 |
|
6994 |
+
#: templates/login.tpl.php:47
|
6995 |
#, fuzzy
|
6996 |
msgctxt "views:login"
|
6997 |
msgid "Use Access Key"
|
6998 |
msgstr "Åtkomstnyckel"
|
6999 |
|
7000 |
+
#: templates/login.tpl.php:48
|
7001 |
msgctxt "views:login"
|
7002 |
msgid "Request access key?"
|
7003 |
msgstr ""
|
8015 |
msgid "Address"
|
8016 |
msgstr "Adress"
|
8017 |
|
8018 |
+
#~ msgctxt "admin actions"
|
8019 |
+
#~ msgid "Upgrade to Featured"
|
8020 |
+
#~ msgstr "Uppgradera till Utvald"
|
8021 |
+
|
8022 |
+
#~ msgctxt "admin actions"
|
8023 |
+
#~ msgid "Downgrade to Normal"
|
8024 |
+
#~ msgstr "Nedgradera till normal"
|
8025 |
+
|
8026 |
#~ msgctxt "admin csv-export"
|
8027 |
#~ msgid "Sticky/featured status"
|
8028 |
#~ msgstr "Utvald (fäst) status"
|
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.0.
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/business-directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2017-
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -986,16 +986,6 @@ msgstr ""
|
|
986 |
|
987 |
#: includes/admin/class-admin-listings.php:501
|
988 |
msgctxt "admin actions"
|
989 |
-
msgid "Upgrade to Featured"
|
990 |
-
msgstr ""
|
991 |
-
|
992 |
-
#: includes/admin/class-admin-listings.php:502
|
993 |
-
msgctxt "admin actions"
|
994 |
-
msgid "Downgrade to Normal"
|
995 |
-
msgstr ""
|
996 |
-
|
997 |
-
#: includes/admin/class-admin-listings.php:504
|
998 |
-
msgctxt "admin actions"
|
999 |
msgid "Renew Listing"
|
1000 |
msgstr ""
|
1001 |
|
@@ -1856,7 +1846,7 @@ msgctxt "fees admin"
|
|
1856 |
msgid "Status"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:
|
1860 |
msgctxt "fees admin"
|
1861 |
msgid "Add Listing Fee"
|
1862 |
msgstr ""
|
@@ -2013,7 +2003,7 @@ msgctxt "fees admin"
|
|
2013 |
msgid "Extra amount (per category)"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#: templates/admin/fees-form.tpl.php:
|
2017 |
msgctxt "fees admin"
|
2018 |
msgid "Save Changes"
|
2019 |
msgstr ""
|
@@ -3914,13 +3904,13 @@ msgid "Author"
|
|
3914 |
msgstr ""
|
3915 |
|
3916 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
3917 |
-
#: includes/functions.php:
|
3918 |
msgctxt "admin settings"
|
3919 |
msgid "Date posted"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
3923 |
-
#: includes/functions.php:
|
3924 |
msgctxt "admin settings"
|
3925 |
msgid "Date last modified"
|
3926 |
msgstr ""
|
@@ -4201,12 +4191,12 @@ msgid ""
|
|
4201 |
"not activated."
|
4202 |
msgstr ""
|
4203 |
|
4204 |
-
#: includes/functions.php:
|
4205 |
msgctxt "admin settings"
|
4206 |
msgid "User"
|
4207 |
msgstr ""
|
4208 |
|
4209 |
-
#: includes/functions.php:
|
4210 |
msgctxt "admin settings"
|
4211 |
msgid "User registration date"
|
4212 |
msgstr ""
|
@@ -4488,22 +4478,22 @@ msgctxt "installer"
|
|
4488 |
msgid "Migrating fee plans..."
|
4489 |
msgstr ""
|
4490 |
|
4491 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
4492 |
msgctxt "installer"
|
4493 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
4494 |
msgstr ""
|
4495 |
|
4496 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
4497 |
msgctxt "installer"
|
4498 |
msgid "! Could not migrate payment #%d"
|
4499 |
msgstr ""
|
4500 |
|
4501 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
4502 |
msgctxt "installer"
|
4503 |
msgid "Updating payment items format: %d items remaining..."
|
4504 |
msgstr ""
|
4505 |
|
4506 |
-
#: includes/admin/upgrades/migrations/migration-18_0.php:
|
4507 |
msgctxt "installer"
|
4508 |
msgid "Migrating listing information: %d items remaining..."
|
4509 |
msgstr ""
|
@@ -5951,7 +5941,7 @@ msgctxt "templates"
|
|
5951 |
msgid "Featured Listing"
|
5952 |
msgstr ""
|
5953 |
|
5954 |
-
#: templates/login.tpl.php:
|
5955 |
msgctxt "templates"
|
5956 |
msgid ""
|
5957 |
"You are not currently logged in. Please login or register first. When "
|
@@ -5959,6 +5949,16 @@ msgid ""
|
|
5959 |
"spam if you don't see it in your email within 60 minutes."
|
5960 |
msgstr ""
|
5961 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5962 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
5963 |
msgctxt "templates"
|
5964 |
msgid ""
|
@@ -5998,16 +5998,6 @@ msgctxt "templates"
|
|
5998 |
msgid "Login"
|
5999 |
msgstr ""
|
6000 |
|
6001 |
-
#: templates/parts/login-required.tpl.php:31
|
6002 |
-
msgctxt "templates"
|
6003 |
-
msgid "Not yet registered?"
|
6004 |
-
msgstr ""
|
6005 |
-
|
6006 |
-
#: templates/parts/login-required.tpl.php:33
|
6007 |
-
msgctxt "templates"
|
6008 |
-
msgid "Lost your password?"
|
6009 |
-
msgstr ""
|
6010 |
-
|
6011 |
#: templates/renew-listing.tpl.php:3
|
6012 |
msgctxt "templates"
|
6013 |
msgid "Renew Listing"
|
@@ -6306,42 +6296,42 @@ msgctxt "contact form"
|
|
6306 |
msgid "This contact form is temporarily disabled. Please try again later."
|
6307 |
msgstr ""
|
6308 |
|
6309 |
-
#: includes/views/login.php:
|
6310 |
msgctxt "views:login"
|
6311 |
msgid "Please enter a valid e-mail/access key combination."
|
6312 |
msgstr ""
|
6313 |
|
6314 |
-
#: templates/login.tpl.php:
|
6315 |
msgctxt "views:login"
|
6316 |
msgid "Login"
|
6317 |
msgstr ""
|
6318 |
|
6319 |
-
#: templates/login.tpl.php:
|
6320 |
msgctxt "views:login"
|
6321 |
msgid "... or use an Access Key"
|
6322 |
msgstr ""
|
6323 |
|
6324 |
-
#: templates/login.tpl.php:
|
6325 |
msgctxt "views:login"
|
6326 |
msgid "Please enter your access key and e-mail address."
|
6327 |
msgstr ""
|
6328 |
|
6329 |
-
#: templates/login.tpl.php:
|
6330 |
msgctxt "views:login"
|
6331 |
msgid "E-Mail Address"
|
6332 |
msgstr ""
|
6333 |
|
6334 |
-
#: templates/login.tpl.php:
|
6335 |
msgctxt "views:login"
|
6336 |
msgid "Access Key"
|
6337 |
msgstr ""
|
6338 |
|
6339 |
-
#: templates/login.tpl.php:
|
6340 |
msgctxt "views:login"
|
6341 |
msgid "Use Access Key"
|
6342 |
msgstr ""
|
6343 |
|
6344 |
-
#: templates/login.tpl.php:
|
6345 |
msgctxt "views:login"
|
6346 |
msgid "Request access key?"
|
6347 |
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.0.3\n"
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/business-directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2017-11-01 21:27:46+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
986 |
|
987 |
#: includes/admin/class-admin-listings.php:501
|
988 |
msgctxt "admin actions"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
989 |
msgid "Renew Listing"
|
990 |
msgstr ""
|
991 |
|
1846 |
msgid "Status"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: templates/admin/fees-add-fee.tpl.php:1 templates/admin/fees-form.tpl.php:207
|
1850 |
msgctxt "fees admin"
|
1851 |
msgid "Add Listing Fee"
|
1852 |
msgstr ""
|
2003 |
msgid "Extra amount (per category)"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
+
#: templates/admin/fees-form.tpl.php:207
|
2007 |
msgctxt "fees admin"
|
2008 |
msgid "Save Changes"
|
2009 |
msgstr ""
|
3904 |
msgstr ""
|
3905 |
|
3906 |
#: includes/admin/settings/class-settings-bootstrap.php:467
|
3907 |
+
#: includes/functions.php:981
|
3908 |
msgctxt "admin settings"
|
3909 |
msgid "Date posted"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
#: includes/admin/settings/class-settings-bootstrap.php:468
|
3913 |
+
#: includes/functions.php:982
|
3914 |
msgctxt "admin settings"
|
3915 |
msgid "Date last modified"
|
3916 |
msgstr ""
|
4191 |
"not activated."
|
4192 |
msgstr ""
|
4193 |
|
4194 |
+
#: includes/functions.php:979
|
4195 |
msgctxt "admin settings"
|
4196 |
msgid "User"
|
4197 |
msgstr ""
|
4198 |
|
4199 |
+
#: includes/functions.php:980
|
4200 |
msgctxt "admin settings"
|
4201 |
msgid "User registration date"
|
4202 |
msgstr ""
|
4478 |
msgid "Migrating fee plans..."
|
4479 |
msgstr ""
|
4480 |
|
4481 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:251
|
4482 |
msgctxt "installer"
|
4483 |
msgid "! Could not migrate fee \"%s\" (%d)"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:318
|
4487 |
msgctxt "installer"
|
4488 |
msgid "! Could not migrate payment #%d"
|
4489 |
msgstr ""
|
4490 |
|
4491 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:323
|
4492 |
msgctxt "installer"
|
4493 |
msgid "Updating payment items format: %d items remaining..."
|
4494 |
msgstr ""
|
4495 |
|
4496 |
+
#: includes/admin/upgrades/migrations/migration-18_0.php:385
|
4497 |
msgctxt "installer"
|
4498 |
msgid "Migrating listing information: %d items remaining..."
|
4499 |
msgstr ""
|
5941 |
msgid "Featured Listing"
|
5942 |
msgstr ""
|
5943 |
|
5944 |
+
#: templates/login.tpl.php:21 templates/parts/login-required.tpl.php:7
|
5945 |
msgctxt "templates"
|
5946 |
msgid ""
|
5947 |
"You are not currently logged in. Please login or register first. When "
|
5949 |
"spam if you don't see it in your email within 60 minutes."
|
5950 |
msgstr ""
|
5951 |
|
5952 |
+
#: templates/login.tpl.php:32 templates/parts/login-required.tpl.php:31
|
5953 |
+
msgctxt "templates"
|
5954 |
+
msgid "Not yet registered?"
|
5955 |
+
msgstr ""
|
5956 |
+
|
5957 |
+
#: templates/login.tpl.php:34 templates/parts/login-required.tpl.php:33
|
5958 |
+
msgctxt "templates"
|
5959 |
+
msgid "Lost your password?"
|
5960 |
+
msgstr ""
|
5961 |
+
|
5962 |
#: templates/manage-listings.tpl.php:3 templates/manage_listings.tpl.php:3
|
5963 |
msgctxt "templates"
|
5964 |
msgid ""
|
5998 |
msgid "Login"
|
5999 |
msgstr ""
|
6000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6001 |
#: templates/renew-listing.tpl.php:3
|
6002 |
msgctxt "templates"
|
6003 |
msgid "Renew Listing"
|
6296 |
msgid "This contact form is temporarily disabled. Please try again later."
|
6297 |
msgstr ""
|
6298 |
|
6299 |
+
#: includes/views/login.php:32
|
6300 |
msgctxt "views:login"
|
6301 |
msgid "Please enter a valid e-mail/access key combination."
|
6302 |
msgstr ""
|
6303 |
|
6304 |
+
#: templates/login.tpl.php:27
|
6305 |
msgctxt "views:login"
|
6306 |
msgid "Login"
|
6307 |
msgstr ""
|
6308 |
|
6309 |
+
#: templates/login.tpl.php:40
|
6310 |
msgctxt "views:login"
|
6311 |
msgid "... or use an Access Key"
|
6312 |
msgstr ""
|
6313 |
|
6314 |
+
#: templates/login.tpl.php:41
|
6315 |
msgctxt "views:login"
|
6316 |
msgid "Please enter your access key and e-mail address."
|
6317 |
msgstr ""
|
6318 |
|
6319 |
+
#: templates/login.tpl.php:45
|
6320 |
msgctxt "views:login"
|
6321 |
msgid "E-Mail Address"
|
6322 |
msgstr ""
|
6323 |
|
6324 |
+
#: templates/login.tpl.php:46
|
6325 |
msgctxt "views:login"
|
6326 |
msgid "Access Key"
|
6327 |
msgstr ""
|
6328 |
|
6329 |
+
#: templates/login.tpl.php:47
|
6330 |
msgctxt "views:login"
|
6331 |
msgid "Use Access Key"
|
6332 |
msgstr ""
|
6333 |
|
6334 |
+
#: templates/login.tpl.php:48
|
6335 |
msgctxt "views:login"
|
6336 |
msgid "Request access key?"
|
6337 |
msgstr ""
|
templates/admin/fees-form.tpl.php
CHANGED
@@ -202,6 +202,8 @@ endif;
|
|
202 |
</tbody>
|
203 |
</table>
|
204 |
|
|
|
|
|
205 |
<?php echo submit_button( $fee->id ? _x( 'Save Changes', 'fees admin', 'WPBDM' ) : _x( 'Add Listing Fee', 'fees admin', 'WPBDM' ) ); ?>
|
206 |
</form>
|
207 |
|
202 |
</tbody>
|
203 |
</table>
|
204 |
|
205 |
+
<?php do_action( 'wpbdp_after_admin_fee_form', $fee ); ?>
|
206 |
+
|
207 |
<?php echo submit_button( $fee->id ? _x( 'Save Changes', 'fees admin', 'WPBDM' ) : _x( 'Add Listing Fee', 'fees admin', 'WPBDM' ) ); ?>
|
208 |
</form>
|
209 |
|
templates/login.tpl.php
CHANGED
@@ -1,5 +1,18 @@
|
|
1 |
<?php
|
2 |
$show_message = isset( $show_message ) ? $show_message : true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
?>
|
4 |
|
5 |
<div id="wpbdp-login-view">
|
@@ -12,7 +25,14 @@ $show_message = isset( $show_message ) ? $show_message : true;
|
|
12 |
|
13 |
<div id="wpbdp-login-form" class="wpbdp-login-option">
|
14 |
<h4><?php _ex( 'Login', 'views:login', 'WPBDM' ); ?></h4>
|
15 |
-
<?php wp_login_form(); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
</div>
|
17 |
|
18 |
<?php if ( $access_key_enabled ): ?>
|
@@ -29,29 +49,4 @@ $show_message = isset( $show_message ) ? $show_message : true;
|
|
29 |
</form>
|
30 |
</div>
|
31 |
<?php endif; ?>
|
32 |
-
|
33 |
-
<?php
|
34 |
-
/*$registration_url = trim( wpbdp_get_option( 'registration-url', '' ) );
|
35 |
-
|
36 |
-
if ( ! $registration_url && get_option( 'users_can_register' ) ) {
|
37 |
-
if ( function_exists( 'wp_registration_url' ) ) {
|
38 |
-
$registration_url = wp_registration_url();
|
39 |
-
} else {
|
40 |
-
$registration_url = site_url( 'wp-login.php?action=register', 'login' );
|
41 |
-
}
|
42 |
-
}
|
43 |
-
|
44 |
-
$current_url = ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
|
45 |
-
$registration_url = $registration_url ? add_query_arg( array( 'redirect_to' => urlencode( $current_url ) ), $registration_url ) : '';
|
46 |
-
$lost_password_url = add_query_arg( 'redirect_to', urlencode( $current_url ), wp_lostpassword_url() );
|
47 |
-
|
48 |
-
<p>
|
49 |
-
<?php if ( $registration_url ): ?>
|
50 |
-
<a href="<?php echo esc_url( $registration_url ); ?>"><?php _ex( 'Not yet registered?', 'templates', 'WPBDM' ); ?></a> |
|
51 |
-
<?php endif; ?>
|
52 |
-
<a href="<?php echo esc_url( $lost_password_url ); ?>"><?php _ex( 'Lost your password?', 'templates', 'WPBDM' ); ?></a>
|
53 |
-
</p>
|
54 |
-
*/
|
55 |
-
?>
|
56 |
-
|
57 |
</div>
|
1 |
<?php
|
2 |
$show_message = isset( $show_message ) ? $show_message : true;
|
3 |
+
|
4 |
+
$registration_url = trim( wpbdp_get_option( 'registration-url', '' ) );
|
5 |
+
|
6 |
+
if ( ! $registration_url && get_option( 'users_can_register' ) ) {
|
7 |
+
if ( function_exists( 'wp_registration_url' ) ) {
|
8 |
+
$registration_url = wp_registration_url();
|
9 |
+
} else {
|
10 |
+
$registration_url = site_url( 'wp-login.php?action=register', 'login' );
|
11 |
+
}
|
12 |
+
}
|
13 |
+
|
14 |
+
$registration_url = $registration_url ? add_query_arg( array( 'redirect_to' => urlencode( $redirect_to ) ), $registration_url ) : '';
|
15 |
+
$lost_password_url = add_query_arg( 'redirect_to', urlencode( $redirect_to ), wp_lostpassword_url() );
|
16 |
?>
|
17 |
|
18 |
<div id="wpbdp-login-view">
|
25 |
|
26 |
<div id="wpbdp-login-form" class="wpbdp-login-option">
|
27 |
<h4><?php _ex( 'Login', 'views:login', 'WPBDM' ); ?></h4>
|
28 |
+
<?php wp_login_form( array( 'redirect' => $redirect_to ) ); ?>
|
29 |
+
|
30 |
+
<p class="wpbdp-login-form-extra-links">
|
31 |
+
<?php if ( $registration_url ): ?>
|
32 |
+
<a href="<?php echo esc_url( $registration_url ); ?>"><?php _ex( 'Not yet registered?', 'templates', 'WPBDM' ); ?></a> |
|
33 |
+
<?php endif; ?>
|
34 |
+
<a href="<?php echo esc_url( $lost_password_url ); ?>"><?php _ex( 'Lost your password?', 'templates', 'WPBDM' ); ?></a>
|
35 |
+
</p>
|
36 |
</div>
|
37 |
|
38 |
<?php if ( $access_key_enabled ): ?>
|
49 |
</form>
|
50 |
</div>
|
51 |
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
</div>
|
templates/plan-selection-plan.tpl.php
CHANGED
@@ -4,7 +4,7 @@ $display_only = isset( $display_only ) ? $display_only : false;
|
|
4 |
$disabled = isset( $disabled ) ? $disabled : false;
|
5 |
$selected = isset( $selected ) ? $selected : 0;
|
6 |
|
7 |
-
$description = $plan->description ? wpautop( wp_kses_post( $plan->description ) ) : '';
|
8 |
$description = apply_filters( 'wpbdp_fee_selection_fee_description', $description, $plan );
|
9 |
?>
|
10 |
<div class="wpbdp-plan wpbdp-plan-<?php echo $plan->id; ?> wpbdp-plan-info-box wpbdp-clearfix <?php if ( $display_only ): ?>display-only<?php endif; ?> <?php if ( $disabled ): ?>wpbdp-plan-disabled<?php endif; ?>"
|
4 |
$disabled = isset( $disabled ) ? $disabled : false;
|
5 |
$selected = isset( $selected ) ? $selected : 0;
|
6 |
|
7 |
+
$description = $plan->description ? wpautop( wp_kses_post( apply_filters( 'wpbdp_plan_description_for_display', $plan->description, $plan ) ) ) : '';
|
8 |
$description = apply_filters( 'wpbdp_fee_selection_fee_description', $description, $plan );
|
9 |
?>
|
10 |
<div class="wpbdp-plan wpbdp-plan-<?php echo $plan->id; ?> wpbdp-plan-info-box wpbdp-clearfix <?php if ( $display_only ): ?>display-only<?php endif; ?> <?php if ( $disabled ): ?>wpbdp-plan-disabled<?php endif; ?>"
|
templates/submit-listing.tpl.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php do_action( 'wpbdp_before_submit_listing_page', $listing ); ?>
|
2 |
<div id="wpbdp-submit-listing" class="wpbdp-submit-page wpbdp-page">
|
3 |
-
<form action="" method="post" data-ajax-url="<?php echo
|
4 |
<?php wp_nonce_field( 'listing submit' ); ?>
|
5 |
<input type="hidden" name="listing_id" value="<?php echo $listing->get_id(); ?>" />
|
6 |
<input type="hidden" name="editing" value="<?php echo $editing ? '1' : '0'; ?>" />
|
1 |
<?php do_action( 'wpbdp_before_submit_listing_page', $listing ); ?>
|
2 |
<div id="wpbdp-submit-listing" class="wpbdp-submit-page wpbdp-page">
|
3 |
+
<form action="" method="post" data-ajax-url="<?php echo wpbdp_ajax_url(); ?>" enctype="multipart/form-data">
|
4 |
<?php wp_nonce_field( 'listing submit' ); ?>
|
5 |
<input type="hidden" name="listing_id" value="<?php echo $listing->get_id(); ?>" />
|
6 |
<input type="hidden" name="editing" value="<?php echo $editing ? '1' : '0'; ?>" />
|