Business Directory Plugin - Version 4.1.2

Version Description

Download this release

Release Info

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

Code changes from version 4.1.1 to 4.1.2

README.TXT CHANGED
@@ -3,9 +3,9 @@ Contributors: businessdirectoryplugin
3
  Donate link: http://businessdirectoryplugin.com/premium-modules/
4
  Tags: address book, business directory, chamber of commerce business directory, church directory, company business directory, contact directory, custom business directory, directory, listings directory, local business directory, link directory, member directory, staff directory, directory plugin
5
  Requires at least: 4.1
6
- Tested up to: 4.6
7
- Last Updated: 2016-Aug-25
8
- Stable tag: tags/4.1.1
9
  License: GPLv2 or later
10
 
11
  Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory and much more!
@@ -131,6 +131,17 @@ If you are having problems please visit [support forum](http://www.businessdirec
131
 
132
  == Changelog ==
133
 
 
 
 
 
 
 
 
 
 
 
 
134
  = Version 4.1.1 =
135
  * Fix searching involving multivalued fields.
136
  * Re-enable user template overrides for core and theme templates
3
  Donate link: http://businessdirectoryplugin.com/premium-modules/
4
  Tags: address book, business directory, chamber of commerce business directory, church directory, company business directory, contact directory, custom business directory, directory, listings directory, local business directory, link directory, member directory, staff directory, directory plugin
5
  Requires at least: 4.1
6
+ Tested up to: 4.6.1
7
+ Last Updated: 2016-Sep 20
8
+ Stable tag: tags/4.1.2
9
  License: GPLv2 or later
10
 
11
  Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory and much more!
131
 
132
  == Changelog ==
133
 
134
+ = Version 4.1.2 =
135
+ * Fix meta tag generation when CPT integration is disabled.
136
+ * Add option to display single view in a new browser tab/window
137
+ * Fix typo in French translation.
138
+ * Improve behavior of "Preview" button on listings backend.
139
+ * Add some missing translatable strings.
140
+ * Fix for search form not working when permalinks were disabled.
141
+ * Fix shortcode execution in content fields under certain circumstances.
142
+ * Fix fatal error trying to create a category in CSV Import.
143
+ * Add rewrite rules for feed URLs for categories and tags
144
+
145
  = Version 4.1.1 =
146
  * Fix searching involving multivalued fields.
147
  * Re-enable user template overrides for core and theme templates
admin/class-admin.php CHANGED
@@ -85,13 +85,24 @@ class WPBDP_Admin {
85
  array( 'jquery', 'thickbox', 'jquery-ui-sortable' ) );
86
 
87
  if ( 'post-new.php' == $pagenow || 'post.php' == $pagenow ) {
88
- wp_enqueue_style( 'wpbdp-jquery-ui-css',
89
- 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/themes/redmond/jquery-ui.css' );
90
  wp_enqueue_script( 'jquery-ui-datepicker' );
91
  wp_enqueue_style( 'wpbdp-listing-admin-metabox', WPBDP_URL . 'admin/css/listing-metabox.min.css' );
92
 
93
  wp_enqueue_style( 'wpbdp-dnd-upload' );
94
- wp_enqueue_script( 'wpbdp-admin-listing', WPBDP_URL . 'admin/js/listing.js', array( 'wpbdp-admin-js', 'wpbdp-dnd-upload' ) );
 
 
 
 
 
 
 
 
 
 
 
95
  }
96
 
97
  // Ask for site tracking if needed.
85
  array( 'jquery', 'thickbox', 'jquery-ui-sortable' ) );
86
 
87
  if ( 'post-new.php' == $pagenow || 'post.php' == $pagenow ) {
88
+ wpbdp_enqueue_jquery_ui_style();
89
+
90
  wp_enqueue_script( 'jquery-ui-datepicker' );
91
  wp_enqueue_style( 'wpbdp-listing-admin-metabox', WPBDP_URL . 'admin/css/listing-metabox.min.css' );
92
 
93
  wp_enqueue_style( 'wpbdp-dnd-upload' );
94
+ wp_enqueue_script(
95
+ 'wpbdp-admin-listing',
96
+ WPBDP_URL . 'admin/js/listing.js',
97
+ array( 'wpbdp-admin-js', 'wpbdp-dnd-upload', 'jquery-ui-tooltip' )
98
+ );
99
+
100
+ wp_localize_script( 'wpbdp-admin-listing', 'WPBDP_admin_listings_config', array(
101
+ 'messages' => array(
102
+ 'preview_button_tooltip' => __( "Preview is only available after you've saved the first draft. This is due
103
+ to how WordPress stores the data.", 'WPBDM' )
104
+ )
105
+ ) );
106
  }
107
 
108
  // Ask for site tracking if needed.
admin/js/csv-import.js CHANGED
@@ -115,11 +115,6 @@ jQuery(function( $ ) {
115
  var $with_reason = $fatal_error.find( '.with-reason' );
116
  var $no_reason = $fatal_error.find( '.no-reason' );
117
 
118
- if ( t.processed_rows > 0 ) {
119
- var $last_line = $fatal_error.find( '.last-imported-line' );
120
- $last_line.find( '.placeholder' ).html( t.processed_rows );
121
- }
122
-
123
  if ( msg ) {
124
  $with_reason.html( $with_reason.html().replace( '%s', msg ) ).show();
125
  } else {
115
  var $with_reason = $fatal_error.find( '.with-reason' );
116
  var $no_reason = $fatal_error.find( '.no-reason' );
117
 
 
 
 
 
 
118
  if ( msg ) {
119
  $with_reason.html( $with_reason.html().replace( '%s', msg ) ).show();
120
  } else {
admin/js/csv-import.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(function($){var csvimport={};csvimport.CSV_Import=function(){this.import_id=$("#wpbdp-csv-import-state").attr("data-import-id");this.in_progress=false;this.canceled=false;this.processed_rows=0;this.total_rows=0;this.imported_rows=0;this.rejected_rows=0;this.warnings=[];this.$state=$("#wpbdp-csv-import-state");this.$success=$("#wpbdp-csv-import-summary");this.$progress_bar=new WPBDP_Admin.ProgressBar($(".import-progress"));this._setup_events()};$.extend(csvimport.CSV_Import.prototype,{_setup_events:function(){var t=this;$("a.cancel-import").click(function(e){e.preventDefault();t.cancel()});$("a.resume-import").click(function(e){e.preventDefault();t.start_or_resume()})},_advance:function(){var t=this;if(!t.in_progress){return}if(t.in_progress&&t.canceled){t.in_progress=false}$.ajax({url:ajaxurl,type:"POST",dataType:"json",data:{action:"wpbdp-csv-import",import_id:t.import_id},success:function(res){if(!res||!res.success){return t._fatal_error(res.error)}t.processed_rows=res.data.progress;t.total_rows=res.data.total;t.imported_rows=res.data.imported;t.rejected_rows=res.data.rejected;t.$progress_bar.set(t.processed_rows,t.total_rows);if(res.data.done){t.in_progress=false;t.warnings=res.data.warnings;t._show_success_screen()}else{t._advance()}},error:function(){return t._fatal_error()}})},_show_success_screen:function(){var t=this;t.$state.fadeOut(function(){t.$state.remove();t.$success.find(".placeholder-imported-rows").html(t.imported_rows);t.$success.find(".placeholder-rejected-rows").html(t.rejected_rows);if(0==t.warnings.length){t.$success.find(".no-warnings").show();t.$success.fadeIn("fast");return}var $warnings_table=t.$success.find(".wpbdp-csv-import-warnings tbody");var $template_row=$warnings_table.find(".row-template");$.each(t.warnings,function(i,v){var $r=$template_row.clone();$r.find(".col-line-no").html(v.line);$r.find(".col-line-content").html(v.content);$r.find(".col-warning").html(v.error);$warnings_table.append($r.show())});t.$success.find(".with-warnings").show();t.$success.find(".wpbdp-csv-import-warnings").show();t.$success.fadeIn("fast")})},_fatal_error:function(msg){var t=this;var $fatal_error=$("#wpbdp-csv-import-fatal-error");var $with_reason=$fatal_error.find(".with-reason");var $no_reason=$fatal_error.find(".no-reason");if(t.processed_rows>0){var $last_line=$fatal_error.find(".last-imported-line");$last_line.find(".placeholder").html(t.processed_rows)}if(msg){$with_reason.html($with_reason.html().replace("%s",msg)).show()}else{$no_reason.show()}$fatal_error.show();$("html, body").animate({scrollTop:0},"medium");t.cancel()},start_or_resume:function(){if(this.in_progress||this.canceled){return}this.in_progress=true;$("a.resume-import").css("opacity","0.4");$(".status-msg .not-started").hide();$(".status-msg .in-progress").show();this._advance()},cancel:function(){var t=this;t.canceled=true;$(".canceled-import").show();t.$state.remove();$.ajax({url:ajaxurl,type:"POST",dataType:"json",data:{action:"wpbdp-csv-import",import_id:t.import_id,cleanup:1}})}});if($("#wpbdp-csv-import-state").length>0){var import_in_page=new csvimport.CSV_Import();return}$(".wpbdp-page-csv-import .file-local-selection a.toggle-selection").click(function(e){e.preventDefault();var $files=$(this).siblings("ul");$files.toggle();if(!$files.is(":visible")){$files.find('input[type="radio"]').prop("checked",false)}});$('.wpbdp-page-csv-import .file-local-selection input[type="radio"]').change(function(e){var sel=$(this).filter(":checked").val();if(""==sel){$(this).prop("checked",false);$(this).parents(".file-local-selection").hide()}});(function(){var $form=$("form#wpbdp-csv-import-form"),$use_default_user_checkbox=$form.find("input.use-default-listing-user"),$default_user_field;$form.find("input.assign-listings-to-user").change(function(e){if($(this).is(":checked")){$form.find(".default-user-selection").show()}else{$form.find(".default-user-selection").hide()}$use_default_user_checkbox.change()}).change();$use_default_user_checkbox.change(function(){if($(this).is(":checked")){$form.find("select.default-user, input.default-user").closest("tr").show()}else{$form.find("select.default-user, input.default-user").closest("tr").hide()}}).change();function update_textfield_value(event,ui){event.preventDefault();if(typeof ui.item=="undefined"){return}$default_user_field.val(ui.item.label);$default_user_field.siblings("#"+$default_user_field.attr("data-hidden-field")).val(ui.item.value)}$default_user_field=$form.find(".wpbdp-user-autocomplete").autocomplete({source:ajaxurl+"?action=wpbdp-autocomplete-user",delay:500,minLength:2,select:update_textfield_value,focus:update_textfield_value})})()});
1
+ jQuery(function($){var csvimport={};csvimport.CSV_Import=function(){this.import_id=$("#wpbdp-csv-import-state").attr("data-import-id");this.in_progress=false;this.canceled=false;this.processed_rows=0;this.total_rows=0;this.imported_rows=0;this.rejected_rows=0;this.warnings=[];this.$state=$("#wpbdp-csv-import-state");this.$success=$("#wpbdp-csv-import-summary");this.$progress_bar=new WPBDP_Admin.ProgressBar($(".import-progress"));this._setup_events()};$.extend(csvimport.CSV_Import.prototype,{_setup_events:function(){var t=this;$("a.cancel-import").click(function(e){e.preventDefault();t.cancel()});$("a.resume-import").click(function(e){e.preventDefault();t.start_or_resume()})},_advance:function(){var t=this;if(!t.in_progress){return}if(t.in_progress&&t.canceled){t.in_progress=false}$.ajax({url:ajaxurl,type:"POST",dataType:"json",data:{action:"wpbdp-csv-import",import_id:t.import_id},success:function(res){if(!res||!res.success){return t._fatal_error(res.error)}t.processed_rows=res.data.progress;t.total_rows=res.data.total;t.imported_rows=res.data.imported;t.rejected_rows=res.data.rejected;t.$progress_bar.set(t.processed_rows,t.total_rows);if(res.data.done){t.in_progress=false;t.warnings=res.data.warnings;t._show_success_screen()}else{t._advance()}},error:function(){return t._fatal_error()}})},_show_success_screen:function(){var t=this;t.$state.fadeOut(function(){t.$state.remove();t.$success.find(".placeholder-imported-rows").html(t.imported_rows);t.$success.find(".placeholder-rejected-rows").html(t.rejected_rows);if(0==t.warnings.length){t.$success.find(".no-warnings").show();t.$success.fadeIn("fast");return}var $warnings_table=t.$success.find(".wpbdp-csv-import-warnings tbody");var $template_row=$warnings_table.find(".row-template");$.each(t.warnings,function(i,v){var $r=$template_row.clone();$r.find(".col-line-no").html(v.line);$r.find(".col-line-content").html(v.content);$r.find(".col-warning").html(v.error);$warnings_table.append($r.show())});t.$success.find(".with-warnings").show();t.$success.find(".wpbdp-csv-import-warnings").show();t.$success.fadeIn("fast")})},_fatal_error:function(msg){var t=this;var $fatal_error=$("#wpbdp-csv-import-fatal-error");var $with_reason=$fatal_error.find(".with-reason");var $no_reason=$fatal_error.find(".no-reason");if(msg){$with_reason.html($with_reason.html().replace("%s",msg)).show()}else{$no_reason.show()}$fatal_error.show();$("html, body").animate({scrollTop:0},"medium");t.cancel()},start_or_resume:function(){if(this.in_progress||this.canceled){return}this.in_progress=true;$("a.resume-import").css("opacity","0.4");$(".status-msg .not-started").hide();$(".status-msg .in-progress").show();this._advance()},cancel:function(){var t=this;t.canceled=true;$(".canceled-import").show();t.$state.remove();$.ajax({url:ajaxurl,type:"POST",dataType:"json",data:{action:"wpbdp-csv-import",import_id:t.import_id,cleanup:1}})}});if($("#wpbdp-csv-import-state").length>0){var import_in_page=new csvimport.CSV_Import();return}$(".wpbdp-page-csv-import .file-local-selection a.toggle-selection").click(function(e){e.preventDefault();var $files=$(this).siblings("ul");$files.toggle();if(!$files.is(":visible")){$files.find('input[type="radio"]').prop("checked",false)}});$('.wpbdp-page-csv-import .file-local-selection input[type="radio"]').change(function(e){var sel=$(this).filter(":checked").val();if(""==sel){$(this).prop("checked",false);$(this).parents(".file-local-selection").hide()}});(function(){var $form=$("form#wpbdp-csv-import-form"),$use_default_user_checkbox=$form.find("input.use-default-listing-user"),$default_user_field;$form.find("input.assign-listings-to-user").change(function(e){if($(this).is(":checked")){$form.find(".default-user-selection").show()}else{$form.find(".default-user-selection").hide()}$use_default_user_checkbox.change()}).change();$use_default_user_checkbox.change(function(){if($(this).is(":checked")){$form.find("select.default-user, input.default-user").closest("tr").show()}else{$form.find("select.default-user, input.default-user").closest("tr").hide()}}).change();function update_textfield_value(event,ui){event.preventDefault();if(typeof ui.item=="undefined"){return}$default_user_field.val(ui.item.label);$default_user_field.siblings("#"+$default_user_field.attr("data-hidden-field")).val(ui.item.value)}$default_user_field=$form.find(".wpbdp-user-autocomplete").autocomplete({source:ajaxurl+"?action=wpbdp-autocomplete-user",delay:500,minLength:2,select:update_textfield_value,focus:update_textfield_value})})()});
admin/js/listing.js CHANGED
@@ -61,4 +61,28 @@ var admin = wpbdp.admin = wpbdp.admin || {};
61
  images.init();
62
  } );
63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  } )( jQuery );
61
  images.init();
62
  } );
63
 
64
+ // Disable Preview button until the first draft is saved
65
+ $( document ).ready( function() {
66
+
67
+ var $form = $( 'body.post-type-wpbdp_listing form#post' ),
68
+ post_status = $form.find( '#original_post_status' );
69
+
70
+ if ( post_status.length == 0 || post_status.val() != 'auto-draft' ) {
71
+ return;
72
+ }
73
+
74
+ $form.find( '#preview-action .button' ).addClass( 'disabled' );
75
+
76
+ $form.find( '#minor-publishing' ).tooltip( {
77
+ items: '#preview-action',
78
+ content: WPBDP_admin_listings_config.messages.preview_button_tooltip,
79
+ position: {
80
+ my: "left top+40",
81
+ at: "left bottom",
82
+ collision: "flipfit",
83
+ within: '#minor-publishing'
84
+ }
85
+ } );
86
+ } );
87
+
88
  } )( jQuery );
admin/js/listing.min.js CHANGED
@@ -1 +1 @@
1
- var wpbdp=window.wpbdp||{};var admin=wpbdp.admin=wpbdp.admin||{};(function($){var listing=admin.listing=admin.listing||{};var images=listing.images=wpbdp.admin.listing.images={init:function(){var t=this;$("#wpbdp-uploaded-images").delegate(".delete-image","click",function(e){e.preventDefault();$.post($(this).attr("data-action"),{},function(res){if(!res.success){return}$('#wpbdp-uploaded-images .wpbdp-image[data-imageid="'+res.data.imageId+'"]').remove();if(0==$("#wpbdp-uploaded-images .wpbdp-image").length){$("#no-images-message").show()}},"json")});$("#wpbdp-uploaded-images").sortable({placeholder:"wpbdp-image-draggable-highlight",update:function(event,ui){var sorted=$("#wpbdp-uploaded-images").sortable("toArray",{attribute:"data-imageid"});var no_images=sorted.length;$.each(sorted,function(i,v){$('input[name="images_meta['+v+'][order]"]').val(no_images-i)})}});wpbdp.dnd.setup($("#image-upload-dnd-area"),{validate:function(data){$(this).siblings(".wpbdp-msg").remove();return true},done:function(res){var uploadErrors=("undefined"!==typeof res.data.uploadErrors)?res.data.uploadErrors:false;if(uploadErrors){var errorMsg=$("<div>").addClass("wpbdp-msg error").html("<p>"+res.data.uploadErrors+"</p>");$(".area-and-conditions").prepend(errorMsg);return}$("#no-images-message").hide();$("#wpbdp-uploaded-images").append(res.data.html)}})}};$(document).ready(function(){images.init()})})(jQuery);
1
+ var wpbdp=window.wpbdp||{};var admin=wpbdp.admin=wpbdp.admin||{};(function($){var listing=admin.listing=admin.listing||{};var images=listing.images=wpbdp.admin.listing.images={init:function(){var t=this;$("#wpbdp-uploaded-images").delegate(".delete-image","click",function(e){e.preventDefault();$.post($(this).attr("data-action"),{},function(res){if(!res.success){return}$('#wpbdp-uploaded-images .wpbdp-image[data-imageid="'+res.data.imageId+'"]').remove();if(0==$("#wpbdp-uploaded-images .wpbdp-image").length){$("#no-images-message").show()}},"json")});$("#wpbdp-uploaded-images").sortable({placeholder:"wpbdp-image-draggable-highlight",update:function(event,ui){var sorted=$("#wpbdp-uploaded-images").sortable("toArray",{attribute:"data-imageid"});var no_images=sorted.length;$.each(sorted,function(i,v){$('input[name="images_meta['+v+'][order]"]').val(no_images-i)})}});wpbdp.dnd.setup($("#image-upload-dnd-area"),{validate:function(data){$(this).siblings(".wpbdp-msg").remove();return true},done:function(res){var uploadErrors=("undefined"!==typeof res.data.uploadErrors)?res.data.uploadErrors:false;if(uploadErrors){var errorMsg=$("<div>").addClass("wpbdp-msg error").html("<p>"+res.data.uploadErrors+"</p>");$(".area-and-conditions").prepend(errorMsg);return}$("#no-images-message").hide();$("#wpbdp-uploaded-images").append(res.data.html)}})}};$(document).ready(function(){images.init()});$(document).ready(function(){var $form=$("body.post-type-wpbdp_listing form#post"),post_status=$form.find("#original_post_status");if(post_status.length==0||post_status.val()!="auto-draft"){return}$form.find("#preview-action .button").addClass("disabled");$form.find("#minor-publishing").tooltip({items:"#preview-action",content:WPBDP_admin_listings_config.messages.preview_button_tooltip,position:{my:"left top+40",at:"left bottom",collision:"flipfit",within:"#minor-publishing"}})})})(jQuery);
admin/templates/csv-import-progress.tpl.php CHANGED
@@ -10,11 +10,6 @@
10
  <?php _ex( 'A fatal error occurred during the import. If connection wasn\'t lost during the import, please make sure that you have enough free disk space and memory available to PHP. Check your error logs for details.', 'admin csv-import', 'WPBDM' ); ?>
11
  </p>
12
 
13
- <p class="last-imported-line">
14
- <?php _ex( 'Last imported line from file:', 'admin csv-import', 'WPBDM' ); ?>
15
- <span class="placeholder">0</span>.
16
- </P>
17
-
18
  <p><a href="" class="button"><?php _ex( '← Return to CSV Import', 'admin csv-import', 'WPBDM' ); ?></a></p>
19
  </div>
20
 
10
  <?php _ex( 'A fatal error occurred during the import. If connection wasn\'t lost during the import, please make sure that you have enough free disk space and memory available to PHP. Check your error logs for details.', 'admin csv-import', 'WPBDM' ); ?>
11
  </p>
12
 
 
 
 
 
 
13
  <p><a href="" class="button"><?php _ex( '← Return to CSV Import', 'admin csv-import', 'WPBDM' ); ?></a></p>
14
  </div>
15
 
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: 4.1.1
7
  * Author: D. Rodenbaugh
8
  * Author URI: http://businessdirectoryplugin.com
9
  * Text Domain: WPBDM
@@ -31,7 +31,7 @@
31
  if( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) )
32
  exit();
33
 
34
- define( 'WPBDP_VERSION', '4.1.1' );
35
 
36
  define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( __FILE__ ) ) );
37
  define( 'WPBDP_URL', trailingslashit( plugins_url( '/', __FILE__ ) ) );
@@ -305,14 +305,20 @@ class WPBDP_Plugin {
305
 
306
  $rules['(' . $rewrite_base . ')/' . $wp_rewrite->pagination_base . '/?([0-9]{1,})/?$'] = 'index.php?page_id=' . $page_id . '&paged=$matches[2]';
307
 
 
 
 
308
  if ( ! wpbdp_get_option( 'disable-cpt' ) ) {
309
- $rules['(' . $rewrite_base . ')/' . $category_slug . '/(.+?)/' . $wp_rewrite->pagination_base . '/?([0-9]{1,})/?$'] = 'index.php?wpbdp_category=$matches[2]&paged=$matches[3]';
310
- $rules['(' . $rewrite_base . ')/' . $category_slug . '/(.+?)/?$'] = 'index.php?wpbdp_category=$matches[2]';
311
  } else {
312
  $rules['(' . $rewrite_base . ')/' . $category_slug . '/(.+?)/' . $wp_rewrite->pagination_base . '/?([0-9]{1,})/?$'] = 'index.php?page_id=' . $page_id . '&_' . $category_slug . '=$matches[2]&paged=$matches[3]';
313
  $rules['(' . $rewrite_base . ')/' . $category_slug . '/(.+?)/?$'] = 'index.php?page_id=' . $page_id . '&_' . $category_slug . '=$matches[2]';
314
  }
315
 
 
 
 
316
  if ( ! wpbdp_get_option( 'disable-cpt') ) {
317
  $rules['(' . $rewrite_base . ')/' . $tags_slug . '/(.+?)/' . $wp_rewrite->pagination_base . '/?([0-9]{1,})/?$'] = 'index.php?' . WPBDP_TAGS_TAX . '=$matches[2]&paged=$matches[3]';
318
  $rules['(' . $rewrite_base . ')/' . $tags_slug . '/(.+?)$'] = 'index.php?' . WPBDP_TAGS_TAX . '=$matches[2]';
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: 4.1.2
7
  * Author: D. Rodenbaugh
8
  * Author URI: http://businessdirectoryplugin.com
9
  * Text Domain: WPBDM
31
  if( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) )
32
  exit();
33
 
34
+ define( 'WPBDP_VERSION', '4.1.2' );
35
 
36
  define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( __FILE__ ) ) );
37
  define( 'WPBDP_URL', trailingslashit( plugins_url( '/', __FILE__ ) ) );
305
 
306
  $rules['(' . $rewrite_base . ')/' . $wp_rewrite->pagination_base . '/?([0-9]{1,})/?$'] = 'index.php?page_id=' . $page_id . '&paged=$matches[2]';
307
 
308
+ $rules['(' . $rewrite_base . ')/' . $category_slug . '/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$'] = 'index.php?' . WPBDP_CATEGORY_TAX . '=$matches[2]&feed=$matches[3]';
309
+ $rules['(' . $rewrite_base . ')/' . $category_slug . '/(.+?)/(feed|rdf|rss|rss2|atom)/?$'] = 'index.php?' . WPBDP_CATEGORY_TAX . '=$matches[2]&feed=$matches[3]';
310
+
311
  if ( ! wpbdp_get_option( 'disable-cpt' ) ) {
312
+ $rules['(' . $rewrite_base . ')/' . $category_slug . '/(.+?)/' . $wp_rewrite->pagination_base . '/?([0-9]{1,})/?$'] = 'index.php?' . WPBDP_CATEGORY_TAX . '=$matches[2]&paged=$matches[3]';
313
+ $rules['(' . $rewrite_base . ')/' . $category_slug . '/(.+?)/?$'] = 'index.php?' . WPBDP_CATEGORY_TAX . '=$matches[2]';
314
  } else {
315
  $rules['(' . $rewrite_base . ')/' . $category_slug . '/(.+?)/' . $wp_rewrite->pagination_base . '/?([0-9]{1,})/?$'] = 'index.php?page_id=' . $page_id . '&_' . $category_slug . '=$matches[2]&paged=$matches[3]';
316
  $rules['(' . $rewrite_base . ')/' . $category_slug . '/(.+?)/?$'] = 'index.php?page_id=' . $page_id . '&_' . $category_slug . '=$matches[2]';
317
  }
318
 
319
+ $rules['(' . $rewrite_base . ')/' . $tags_slug . '/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$'] = 'index.php?' . WPBDP_TAGS_TAX . '=$matches[2]&feed=$matches[3]';
320
+ $rules['(' . $rewrite_base . ')/' . $tags_slug . '/(.+?)/(feed|rdf|rss|rss2|atom)/?$'] = 'index.php?' . WPBDP_TAGS_TAX . '=$matches[2]&feed=$matches[3]';
321
+
322
  if ( ! wpbdp_get_option( 'disable-cpt') ) {
323
  $rules['(' . $rewrite_base . ')/' . $tags_slug . '/(.+?)/' . $wp_rewrite->pagination_base . '/?([0-9]{1,})/?$'] = 'index.php?' . WPBDP_TAGS_TAX . '=$matches[2]&paged=$matches[3]';
324
  $rules['(' . $rewrite_base . ')/' . $tags_slug . '/(.+?)$'] = 'index.php?' . WPBDP_TAGS_TAX . '=$matches[2]';
core/api.php CHANGED
@@ -280,14 +280,18 @@ function wpbdp_user_can($action, $listing_id=null, $user_id=null) {
280
  if ($post->post_type != WPBDP_POST_TYPE)
281
  return false;
282
 
283
- if ( isset($_GET['preview']) )
284
  return false;
285
 
286
  $res = false;
287
 
288
  switch ($action) {
289
  case 'view':
290
- $res = true;
 
 
 
 
291
  // return apply_filters( 'wpbdp_user_can_view', true, $action, $listing_id );
292
  break;
293
  case 'edit':
280
  if ($post->post_type != WPBDP_POST_TYPE)
281
  return false;
282
 
283
+ if ( isset( $_GET['preview'] ) && ( $action != 'view' ) )
284
  return false;
285
 
286
  $res = false;
287
 
288
  switch ($action) {
289
  case 'view':
290
+ if ( isset( $_GET['preview'] ) ) {
291
+ $res = user_can( $user_id, 'administrator' ) || ( $post->post_author && $post->post_author == $user_id );
292
+ } else {
293
+ $res = true;
294
+ }
295
  // return apply_filters( 'wpbdp_user_can_view', true, $action, $listing_id );
296
  break;
297
  case 'edit':
core/class-csv-import.php CHANGED
@@ -385,8 +385,17 @@ class WPBDP_CSV_Import {
385
  if ( $t = term_exists( str_replace( '&', '&amp;', $c['name'] ), WPBDP_CATEGORY_TAX ) ) {
386
  $c['term_id'] = $t['term_id'];
387
  } else {
388
- if ( $t = wp_insert_term( str_replace( '&amp;', '&', $c['name'] ), WPBDP_CATEGORY_TAX ) ) {
 
 
 
389
  $c['term_id'] = $t['term_id'];
 
 
 
 
 
 
390
  } else {
391
  $errors[] = sprintf( _x( 'Could not create listing category "%s"', 'admin csv-import', 'WPBDM'), $c['name'] );
392
  }
385
  if ( $t = term_exists( str_replace( '&', '&amp;', $c['name'] ), WPBDP_CATEGORY_TAX ) ) {
386
  $c['term_id'] = $t['term_id'];
387
  } else {
388
+ $t = wp_insert_term( str_replace( '&amp;', '&', $c['name'] ), WPBDP_CATEGORY_TAX );
389
+ $a = $t['term_id'];
390
+
391
+ if ( is_array( $t ) && isset( $t['term_id'] ) ) {
392
  $c['term_id'] = $t['term_id'];
393
+ } else if ( is_wp_error( $t ) ) {
394
+ $message = _x( 'Could not create listing category "<category-name>". The operation failed with the following error: <error-message>.', 'admin csv-import', 'WPBDM' );
395
+ $message = str_replace( '<category-name>', $c['name'], $message );
396
+ $message = str_replace( '<error-message>', $t->get_error_message(), $message );
397
+
398
+ $errors[] = $message;
399
  } else {
400
  $errors[] = sprintf( _x( 'Could not create listing category "%s"', 'admin csv-import', 'WPBDM'), $c['name'] );
401
  }
core/class-form-field-type.php CHANGED
@@ -92,7 +92,10 @@ class WPBDP_Form_Field_Type {
92
 
93
  switch ( $field->get_association() ) {
94
  case 'title':
95
- $value = sprintf( '<a href="%s">%s</a>', get_permalink( $post_id ), get_the_title( $post_id ) );
 
 
 
96
  break;
97
  case 'excerpt':
98
  $value = apply_filters( 'get_the_excerpt', wpautop( $post->post_excerpt, true ) );
@@ -213,7 +216,7 @@ class WPBDP_Form_Field_Type {
213
  $html .= '<div class="wpbdp-form-field-html wpbdp-form-field-inner">';
214
 
215
  $field_inner = $this->render_field_inner( $field, $value, $render_context, $extra, $field_settings );
216
- $field_inner = apply_filters_ref_array( 'wpbdp_render_field_inner', array( $field_inner, &$field, $value, $render_context, &$extra ) );
217
 
218
  $html .= $field_inner;
219
  $html .= '</div>';
92
 
93
  switch ( $field->get_association() ) {
94
  case 'title':
95
+ $value = sprintf( '<a href="%s" target="%s" >%s</a>',
96
+ get_permalink( $post_id ),
97
+ wpbdp_get_option( 'listing-link-in-new-tab' ) ? '_blank' : '_self',
98
+ get_the_title( $post_id ) );
99
  break;
100
  case 'excerpt':
101
  $value = apply_filters( 'get_the_excerpt', wpautop( $post->post_excerpt, true ) );
216
  $html .= '<div class="wpbdp-form-field-html wpbdp-form-field-inner">';
217
 
218
  $field_inner = $this->render_field_inner( $field, $value, $render_context, $extra, $field_settings );
219
+ $field_inner = apply_filters_ref_array( 'wpbdp_render_field_inner', array( $field_inner, &$field, $value, $render_context, &$extra ) );
220
 
221
  $html .= $field_inner;
222
  $html .= '</div>';
core/class-settings.php CHANGED
@@ -62,7 +62,7 @@ class WPBDP_Settings {
62
  false );
63
  $this->add_setting($s, 'recaptcha-public-key', _x('reCAPTCHA Public Key', 'admin settings', 'WPBDM'));
64
  $this->add_setting($s, 'recaptcha-private-key', _x('reCAPTCHA Private Key', 'admin settings', 'WPBDM'));
65
-
66
 
67
  // {{ Registration settings.
68
  // $s = $this->add_group( 'registration',
@@ -195,6 +195,11 @@ class WPBDP_Settings {
195
  'boolean',
196
  true,
197
  _x( 'Allows visitors to contact listing authors privately. Authors will receive the messages via email.', 'admin settings', 'WPBDM' ) );
 
 
 
 
 
198
  $this->add_setting( $s,
199
  'contact-form-require-login',
200
  _x( 'Require login for using the contact form?', 'admin settings', 'WPBDM' ),
@@ -1336,6 +1341,8 @@ EOF;
1336
  if ( $setting->validator || ( $setting->type == 'choice' && isset( $setting->args['multiple'] ) && $setting->args['multiple'] ) ) {
1337
  add_filter('pre_update_option_' . self::PREFIX . $setting->name, create_function('$n, $o=null', 'return WPBDP_Settings::_validate_setting("' . $setting->name . '", $n, $o);'), 10, 2);
1338
  }
 
 
1339
  }
1340
  }
1341
  }
@@ -1375,6 +1382,10 @@ EOF;
1375
  return call_user_func($setting->validator, $setting, $newvalue, $api->get($setting->name));
1376
  }
1377
 
 
 
 
 
1378
  /* upgrade from old-style settings to new options */
1379
  public function pre_2_0_options() {
1380
  static $option_translations = array(
62
  false );
63
  $this->add_setting($s, 'recaptcha-public-key', _x('reCAPTCHA Public Key', 'admin settings', 'WPBDM'));
64
  $this->add_setting($s, 'recaptcha-private-key', _x('reCAPTCHA Private Key', 'admin settings', 'WPBDM'));
65
+
66
 
67
  // {{ Registration settings.
68
  // $s = $this->add_group( 'registration',
195
  'boolean',
196
  true,
197
  _x( 'Allows visitors to contact listing authors privately. Authors will receive the messages via email.', 'admin settings', 'WPBDM' ) );
198
+ $this->add_setting( $s,
199
+ 'listing-link-in-new-tab',
200
+ _x( 'Open detailed view of listing in new tab?', 'admin settings', 'WPBDM' ),
201
+ 'boolean',
202
+ false);
203
  $this->add_setting( $s,
204
  'contact-form-require-login',
205
  _x( 'Require login for using the contact form?', 'admin settings', 'WPBDM' ),
1341
  if ( $setting->validator || ( $setting->type == 'choice' && isset( $setting->args['multiple'] ) && $setting->args['multiple'] ) ) {
1342
  add_filter('pre_update_option_' . self::PREFIX . $setting->name, create_function('$n, $o=null', 'return WPBDP_Settings::_validate_setting("' . $setting->name . '", $n, $o);'), 10, 2);
1343
  }
1344
+
1345
+ add_action( 'update_option_' . self::PREFIX . $setting->name, array( $this, '_option_updated' ), 10, 3 );
1346
  }
1347
  }
1348
  }
1382
  return call_user_func($setting->validator, $setting, $newvalue, $api->get($setting->name));
1383
  }
1384
 
1385
+ public function _option_updated( $old_value, $new_value, $option_name ) {
1386
+ do_action( 'wpbdp_option_updated_' . str_replace( self::PREFIX, '', $option_name ), $old_value, $new_value );
1387
+ }
1388
+
1389
  /* upgrade from old-style settings to new options */
1390
  public function pre_2_0_options() {
1391
  static $option_translations = array(
core/fieldtypes/class-fieldtypes-date.php CHANGED
@@ -70,8 +70,7 @@ class WPBDP_FieldTypes_Date extends WPBDP_FieldTypes_TextField {
70
  static $enqueued = false;
71
 
72
  if ( ! $enqueued ) {
73
- wp_enqueue_style( 'wpbdp-jquery-ui-css',
74
- 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/themes/smoothness/jquery-ui.css' );
75
  wp_enqueue_script( 'jquery-ui-datepicker', false, false, false, true );
76
  $enqueued = true;
77
  }
70
  static $enqueued = false;
71
 
72
  if ( ! $enqueued ) {
73
+ wpbdp_enqueue_jquery_ui_style();
 
74
  wp_enqueue_script( 'jquery-ui-datepicker', false, false, false, true );
75
  $enqueued = true;
76
  }
core/fieldtypes/class-fieldtypes-textarea.php CHANGED
@@ -151,10 +151,12 @@ class WPBDP_FieldTypes_TextArea extends WPBDP_Form_Field_Type {
151
  global $post;
152
  // Try to protect us from sortcodes messing things for us.
153
  $current_post = $post;
154
- // TODO: With #1530 this no longer seems to be necessary or it can lead to problems. Review for a
155
- // future release.
156
- // $value = do_shortcode( shortcode_unautop( wpautop( $value ) ) );
157
  $value = wpautop( $value );
 
 
 
 
158
  $post = $current_post;
159
  } else {
160
  $value = wpautop( $value );
151
  global $post;
152
  // Try to protect us from sortcodes messing things for us.
153
  $current_post = $post;
154
+
 
 
155
  $value = wpautop( $value );
156
+
157
+ if ( wpbdp_get_option( 'disable-cpt' ) )
158
+ $value = do_shortcode( shortcode_unautop( $value ) );
159
+
160
  $post = $current_post;
161
  } else {
162
  $value = wpautop( $value );
core/templates-ui.php CHANGED
@@ -352,6 +352,7 @@ function wpbdp_listing_thumbnail( $listing_id=null, $args=array() ) {
352
  $main_image = false;
353
  $image_img = '';
354
  $image_link = '';
 
355
  $image_classes = 'wpbdp-thumbnail attachment-wpbdp-thumb ' . $args['class'];
356
 
357
  if ( $thumbnail_id = wpbdp_listings_api()->get_thumbnail_id( $listing_id ) ) {
@@ -393,15 +394,18 @@ function wpbdp_listing_thumbnail( $listing_id=null, $args=array() ) {
393
 
394
  }
395
 
396
- if ( !$image_link && $args['link'] == 'listing' )
397
  $image_link = get_permalink( $listing_id );
 
 
398
 
399
  if ( $image_img ) {
400
  if ( !$image_link ) {
401
  return $image_img;
402
  } else {
403
- return sprintf( '<div class="listing-thumbnail"><a href="%s" class="%s" %s>%s</a></div>',
404
  $image_link,
 
405
  $args['link'] == 'picture' ? 'thickbox' : '',
406
  $args['link'] == 'picture' ? 'data-lightbox="wpbdpgal" rel="wpbdpgal"' : '',
407
  $image_img );
352
  $main_image = false;
353
  $image_img = '';
354
  $image_link = '';
355
+ $listing_link_in_new_tab = '';
356
  $image_classes = 'wpbdp-thumbnail attachment-wpbdp-thumb ' . $args['class'];
357
 
358
  if ( $thumbnail_id = wpbdp_listings_api()->get_thumbnail_id( $listing_id ) ) {
394
 
395
  }
396
 
397
+ if ( !$image_link && $args['link'] == 'listing' ){
398
  $image_link = get_permalink( $listing_id );
399
+ $listing_link_in_new_tab = wpbdp_get_option( 'listing-link-in-new-tab' ) ? '_blank' : '_self';
400
+ }
401
 
402
  if ( $image_img ) {
403
  if ( !$image_link ) {
404
  return $image_img;
405
  } else {
406
+ return sprintf( '<div class="listing-thumbnail"><a href="%s" target="%s" class="%s" %s>%s</a></div>',
407
  $image_link,
408
+ $listing_link_in_new_tab,
409
  $args['link'] == 'picture' ? 'thickbox' : '',
410
  $args['link'] == 'picture' ? 'data-lightbox="wpbdpgal" rel="wpbdpgal"' : '',
411
  $image_img );
core/templates/search.tpl.php CHANGED
@@ -1,4 +1,4 @@
1
- <div id="wpbdp-search-page" class="wpbdp-search-page businessdirectory-search businessdirectory wpbdp-page">
2
  <div class="wpbdp-bar cf"><?php wpbdp_the_main_links(); ?></div>
3
  <h2 class="title"><?php _ex('Search', 'search', 'WPBDM'); ?></h2>
4
 
1
+ <div id="wpbdp-search-page" class="wpbdp-search-page businessdirectory-search businessdirectory wpbdp-page <?php echo $_class; ?>">
2
  <div class="wpbdp-bar cf"><?php wpbdp_the_main_links(); ?></div>
3
  <h2 class="title"><?php _ex('Search', 'search', 'WPBDM'); ?></h2>
4
 
core/utils.php CHANGED
@@ -694,3 +694,18 @@ function wpbdp_render_user_field( $args = array() ) {
694
 
695
  return $output;
696
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
694
 
695
  return $output;
696
  }
697
+
698
+ function wpbdp_enqueue_jquery_ui_style() {
699
+ global $wp_scripts;
700
+
701
+ if ( is_object( $wp_scripts ) && isset( $wp_scripts->registered[ 'jquery-ui-core' ] ) ) {
702
+ $ui_version = $wp_scripts->registered['jquery-ui-core']->ver;
703
+ } else {
704
+ $ui_version = '1.8.21';
705
+ }
706
+
707
+ wp_enqueue_style(
708
+ 'wpbdp-jquery-ui-css',
709
+ 'http://ajax.googleapis.com/ajax/libs/jqueryui/' . $ui_version . '/themes/redmond/jquery-ui.css'
710
+ );
711
+ }
languages/WPBDM-ar.mo CHANGED
Binary file
languages/WPBDM-ar.po CHANGED
@@ -4,17 +4,17 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 4.0.8\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-07-08 02:21+0000\n"
8
- "PO-Revision-Date: 2016-07-08 16:14+0000\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language: ar\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.8.8\n"
16
- "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && "
17
- "n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
 
20
  #: admin/class-admin-listings.php:40
@@ -29,8 +29,8 @@ msgid ""
29
  "its respective fee) is required in order to determine the features available "
30
  "to this listing, as well as handling renewals."
31
  msgstr ""
32
- "هذا الإعلان لا يملك أي تصنيف معين. تصنيف واحد على الأقل (والرسوم الخاصة به) "
33
- "مطلوب من أجل تحديد الميزات المتوفرة لهذا الإعلان، زائد التعامل مع تجديد "
34
  "الاشتراك."
35
 
36
  #: admin/class-admin-listings.php:138
@@ -124,134 +124,142 @@ msgctxt "admin actions"
124
  msgid "Renew Listing"
125
  msgstr "تجديد الإعلان"
126
 
127
- #: admin/class-admin.php:124
 
 
 
 
 
 
 
 
128
  msgctxt "drip pointer"
129
  msgid ""
130
- "Find out how to create a compelling, thriving business directory from scratch "
131
- "in this ridiculously actionable (and FREE) 5-part email course. Get a FREE "
132
- "premium module just for signing up."
133
  msgstr ""
134
  "تعرف على كيفية إنشاء دليل أعمال مقنع ومزدهر انطلاقا من الصفر في هذه الدروس "
135
  "(مجانا) مكونة من 5 أجزاء (ترسل عبر البريد الإلكتروني). أحصل على وحدة ممتازة "
136
  "(premium module) مجانا بمجرد تسجيلك."
137
 
138
- #: admin/class-admin.php:126
139
  msgctxt "drip pointer"
140
  msgid "Email Address:"
141
  msgstr "عنوان البريد الإلكتروني:"
142
 
143
- #: admin/class-admin.php:132
144
  msgctxt "drip pointer"
145
  msgid "Want to know the Secrets of Building an Awesome Business Directory?"
146
  msgstr "هل تريد معرفة \"أسرار بناء\" \"دليل أعمال مدهش\"؟"
147
 
148
- #: admin/class-admin.php:134
149
  msgctxt "drip pointer"
150
  msgid "Yes, please!"
151
  msgstr "نعم، من فضلك!"
152
 
153
- #: admin/class-admin.php:136
154
  msgctxt "drip pointer"
155
  msgid "No, thanks"
156
  msgstr "لا، شكرًا"
157
 
158
- #: admin/class-admin.php:153
159
  msgctxt "admin"
160
  msgid "Business Directory"
161
  msgstr "دليل الأعمال"
162
 
163
- #: admin/class-admin.php:164
164
  msgctxt "admin"
165
  msgid "You're all set. Visit your new <a>Business Directory</a> page."
166
  msgstr "أنت مستعد. قم بزيارة صفحة <a>دليل الأعمال</a> الجديدة."
167
 
168
- #: admin/class-admin.php:185
169
  msgctxt "drip pointer"
170
  msgid "Invalid e-mail address."
171
  msgstr "عنوان البريد الإلكتروني غير صالح!"
172
 
173
- #: admin/class-admin.php:219
174
  msgctxt "admin menu"
175
  msgid "Business Directory Admin"
176
  msgstr "مدير دليل الأعمال"
177
 
178
- #: admin/class-admin.php:220
179
  msgctxt "admin menu"
180
  msgid "Dir. Admin"
181
  msgstr "مدير الدليل"
182
 
183
- #: admin/class-admin.php:220
184
  msgctxt "admin menu"
185
  msgid "Directory Admin"
186
  msgstr "مدير الدليل"
187
 
188
- #: admin/class-admin.php:226 admin/class-admin.php:227
189
  msgctxt "admin menu"
190
  msgid "Add New Listing"
191
  msgstr "إضافة إعلان جديد"
192
 
193
- #: admin/class-admin.php:232 admin/class-admin.php:233
194
  msgctxt "admin menu"
195
  msgid "Manage Options"
196
  msgstr "إدارة الخيارات"
197
 
198
- #: admin/class-admin.php:238 admin/class-admin.php:239
199
  msgctxt "admin menu"
200
  msgid "Manage Fees"
201
  msgstr "إدارة الرسوم"
202
 
203
- #: admin/class-admin.php:244 admin/class-admin.php:245
204
  msgctxt "admin menu"
205
  msgid "Manage Form Fields"
206
  msgstr "إدارة حقول الاستمارة"
207
 
208
- #: admin/class-admin.php:250 admin/class-admin.php:251
209
  msgctxt "admin menu"
210
  msgid "Listings"
211
  msgstr "الإعلانات"
212
 
213
- #: admin/class-admin.php:265 admin/class-admin.php:266
214
  msgctxt "admin menu"
215
  msgid "CSV Import"
216
  msgstr "استيراد CSV"
217
 
218
- #: admin/class-admin.php:271 admin/class-admin.php:272
219
  msgctxt "admin menu"
220
  msgid "CSV Export"
221
  msgstr "تصدير CSV"
222
 
223
- #: admin/class-admin.php:277 admin/class-admin.php:278
224
  msgctxt "admin menu"
225
  msgid "Debug"
226
  msgstr "تصحيح الأخطاء"
227
 
228
- #: admin/class-admin.php:287
229
  msgctxt "admin menu"
230
  msgid "Main Menu"
231
  msgstr "القائمة الرئيسية"
232
 
233
- #: admin/class-admin.php:298
234
  msgctxt "admin menu"
235
  msgid "Uninstall Business Directory Plugin"
236
  msgstr "حذف إضافة دليل الأعمال"
237
 
238
- #: admin/class-admin.php:299
239
  msgctxt "admin menu"
240
  msgid "Uninstall"
241
  msgstr "حذف"
242
 
243
- #: admin/class-admin.php:413
244
  #: admin/templates/listing-metabox-categories.tpl.php:69
245
  msgctxt "admin infometabox"
246
  msgid "never"
247
  msgstr "أبداً"
248
 
249
- #: admin/class-admin.php:507
250
  msgctxt "admin"
251
  msgid "Dismiss this notice."
252
  msgstr "إخفاء هذا التنبيه."
253
 
254
- #: admin/class-admin.php:535
255
  msgctxt "admin"
256
  msgid "The listing has been published."
257
  msgid_plural "The listings have been published."
@@ -262,7 +270,7 @@ msgstr[3] "تم نشر الإعلانات."
262
  msgstr[4] "تم نشر الإعلانات."
263
  msgstr[5] "تم نشر الإعلانات."
264
 
265
- #: admin/class-admin.php:553
266
  msgctxt "admin"
267
  msgid "The listing status has been set as paid."
268
  msgid_plural "The listings status has been set as paid."
@@ -273,7 +281,7 @@ msgstr[3] "تم تعيين الإعلانات مدفوعة."
273
  msgstr[4] "تم تعيين الإعلانات مدفوعة."
274
  msgstr[5] "تم تعيين الإعلانات مدفوعة."
275
 
276
- #: admin/class-admin.php:559
277
  msgctxt "admin"
278
  msgid ""
279
  "Only invoices containing non-recurring items were marked as paid. Please "
@@ -303,7 +311,7 @@ msgstr[5] ""
303
  "فقط الفواتير التي تحتوي على البنود غير المتكررة تسجل كمدفوعة. المدفوعات "
304
  "المتكررة يجب إدارتها من خلال لوحة التحكم الخاصة بك."
305
 
306
- #: admin/class-admin.php:578
307
  msgctxt "admin"
308
  msgid "The listing has been modified."
309
  msgid_plural "The listings have been modified."
@@ -314,7 +322,7 @@ msgstr[3] "تم تعديل الإعلانات."
314
  msgstr[4] "تم تعديل الإعلانات."
315
  msgstr[5] "تم تعديل الإعلانات."
316
 
317
- #: admin/class-admin.php:591
318
  msgctxt "admin"
319
  msgid "The listing has been upgraded."
320
  msgid_plural "The listings have been upgraded."
@@ -325,7 +333,7 @@ msgstr[3] "تمت ترقية الإعلانات."
325
  msgstr[4] "تمت ترقية الإعلانات."
326
  msgstr[5] "تمت ترقية الإعلانات."
327
 
328
- #: admin/class-admin.php:603
329
  msgctxt "admin"
330
  msgid "The listing has been downgraded."
331
  msgid_plural "The listings have been downgraded."
@@ -336,32 +344,33 @@ msgstr[3] "تم خفض اشتراك الإعلانات."
336
  msgstr[4] "تم خفض اشتراك الإعلانات."
337
  msgstr[5] "تم خفض اشتراك الإعلانات."
338
 
339
- #: admin/class-admin.php:614
340
  msgctxt "admin payments"
341
  msgid ""
342
  "The payment status was not changed. Recurring payments can't be manually "
343
  "approved. Please check your gateway's backend to see if the payment really "
344
  "went through."
345
  msgstr ""
346
- "لم يتم تغيير حالة الدفع. لا يمكن الموافقة على المدفوعات المتكررة يدوياً. الرجاء "
347
- "التحقق في لوحة التحكم الخاصة بك لمعرفة إذا كان الدفع ذهب حقاً من خلالها."
 
348
 
349
- #: admin/class-admin.php:619
350
  msgctxt "admin"
351
  msgid "The transaction has been approved."
352
  msgstr "تمت الموافقة على المعاملة."
353
 
354
- #: admin/class-admin.php:629
355
  msgctxt "admin"
356
  msgid "The transaction has been rejected."
357
  msgstr "المعاملة رفضت."
358
 
359
- #: admin/class-admin.php:635
360
  msgctxt "admin"
361
  msgid "The fee was successfully assigned."
362
  msgstr "تم تعيين الرسوم بنجاح."
363
 
364
- #: admin/class-admin.php:644
365
  msgctxt "admin"
366
  msgid "Listing was renewed."
367
  msgid_plural "Listings were renewed."
@@ -372,22 +381,22 @@ msgstr[3] "تم تجديد الإعلانات."
372
  msgstr[4] "تم تجديد الإعلانات."
373
  msgstr[5] "تم تجديد الإعلانات."
374
 
375
- #: admin/class-admin.php:651
376
  msgctxt "admin"
377
  msgid "Renewal email sent."
378
  msgstr "تم إرسال بريد التجديد."
379
 
380
- #: admin/class-admin.php:685
381
  msgctxt "admin category id"
382
  msgid "ID"
383
  msgstr "المعرف"
384
 
385
- #: admin/class-admin.php:687 admin/class-admin.php:693
386
  msgctxt "admin"
387
  msgid "Listing Count"
388
  msgstr "عدد الإعلانات"
389
 
390
- #: admin/class-admin.php:802
391
  msgctxt "admin"
392
  msgid ""
393
  "<b>Business Directory Plugin</b> requires fields with the following "
@@ -396,16 +405,16 @@ msgstr ""
396
  "<b>إضافة دليل الأعمال</b> تتطلب حقول مع المرتبطات التالية بالترتيب لكي تعمل "
397
  "بشكل صحيح: <b>%s</b>."
398
 
399
- #: admin/class-admin.php:804
400
  msgctxt "admin"
401
  msgid ""
402
- "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> association "
403
- "in order to work correctly."
404
  msgstr ""
405
  "<b>إضافة دليل الأعمال</b> تتطلب حقل مع <b>%s</b> المرتبطات التالية بالترتيب "
406
  "لكي تعمل بشكل صحيح."
407
 
408
- #: admin/class-admin.php:808
409
  msgctxt "admin"
410
  msgid ""
411
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
@@ -414,17 +423,17 @@ msgstr ""
414
  "يمكنك إنشاء هذه الحقول المخصصة بنفسك داخل \"إدارة الحقول\" أو السماح لدليل "
415
  "الأعمال للقيام بذلك نيابة عنك تلقائياً."
416
 
417
- #: admin/class-admin.php:812
418
  msgctxt "admin"
419
  msgid "Go to \"Manage Form Fields\""
420
  msgstr "إنتقل إلى \"إدارة حقول\""
421
 
422
- #: admin/class-admin.php:815
423
  msgctxt "admin"
424
  msgid "Create these required fields for me"
425
  msgstr "إنشاء هذه الحقول المطلوبة نيابة عني"
426
 
427
- #: admin/class-admin.php:824
428
  msgctxt "admin"
429
  msgid ""
430
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -433,44 +442,45 @@ msgstr ""
433
  "<b>إضافة دليل الأعمال</b> تتطلب صفحة فيها الكود القصير "
434
  "<tt>[businessdirectory]</tt> لكي تعمل بشكل صحيح."
435
 
436
- #: admin/class-admin.php:826
437
  msgctxt "admin"
438
  msgid ""
439
- "You can create this page by yourself or let Business Directory do this for you "
440
- "automatically."
441
  msgstr ""
442
- "يمكنك إنشاء هذه الصفحة بنفسك أو ترك دليل الأعمال القيام بذلك نيابة عنك تلقائياً."
 
443
 
444
- #: admin/class-admin.php:830
445
  msgctxt "admin"
446
  msgid "Create required pages for me"
447
  msgstr "إنشاء الصفحات المطلوب نيابة عني"
448
 
449
- #: admin/class-admin.php:870
450
  msgctxt "admin compat"
451
  msgid "Installed: %s"
452
  msgstr "تم التنصيب: %s"
453
 
454
- #: admin/class-admin.php:870
455
  msgctxt "admin compat"
456
  msgid "N/A"
457
  msgstr "N/A غير قابل للتطبيق"
458
 
459
- #: admin/class-admin.php:873
460
  msgctxt "admin compat"
461
  msgid "Required: %s"
462
  msgstr "مطلوب: %s"
463
 
464
- #: admin/class-admin.php:885
465
  msgctxt "admin compat"
466
  msgid ""
467
  "Business Directory has detected some incompatible premium module versions "
468
  "installed."
469
  msgstr ""
470
- "الإضافة اكتشفت أن هناك إصدارات مثبتة لوحدة ممتازة (premium module) أو أكثر غير "
471
- "متوافقة."
472
 
473
- #: admin/class-admin.php:887
474
  msgctxt "admin compat"
475
  msgid ""
476
  "Please upgrade to the required versions indicated below to make sure "
@@ -479,16 +489,16 @@ msgstr ""
479
  "الرجاء الترقية إلى الإصدارات المطلوبة المبينة أسفله للتأكد من أن كل شيء يعمل "
480
  "بشكل صحيح."
481
 
482
- #: admin/class-admin.php:907
483
  msgctxt "admin"
484
  msgid ""
485
  "We noticed you want your Business Directory users to register before posting "
486
- "listings, but Registration for your site is currently disabled. Go [here] and "
487
- "check \"Anyone can register\" to make sure BD works properly."
488
  msgstr ""
489
  "لاحظنا أنك تريد من أعضاء دليل الأعمال التسجيل قبل نشر الإعلانات، ولكنك حاليا "
490
- "تعطل التسجيل في موقعك. إذهب [هنا] واختر \"السماح بالتسجيل\" لجعل دليل الأعمال "
491
- "يعمل بشكل صحيح."
492
 
493
  #: admin/class-listing-fields-metabox.php:21
494
  msgctxt "admin"
@@ -518,7 +528,8 @@ msgstr "قوالب الدليل"
518
 
519
  #: admin/class-themes-admin.php:94
520
  msgctxt "admin themes"
521
- msgid "Business Directory Plugin - Your template overrides need to be reviewed!"
 
522
  msgstr "إضافة دليل الأعمال - تجاوز القالب الخاص بك يحتاج إلى مراجعة!"
523
 
524
  #: admin/class-themes-admin.php:96
@@ -533,8 +544,8 @@ msgstr ""
533
  #: admin/class-themes-admin.php:98
534
  msgctxt "admin themes"
535
  msgid ""
536
- "Because of this, your template overrides below have been disabled. You should "
537
- "<a>review our documentation on customization</a> in order adjust your "
538
  "templates."
539
  msgstr ""
540
  "وبسبب هذا، تم تعطيل تجاوز القالب الخاص بك أدناه. يجب عليك <a>مراجعة وثائق "
@@ -562,8 +573,8 @@ msgstr "القالب النشط تغير إلى \"%s\"."
562
  #: admin/class-themes-admin.php:205
563
  msgctxt "themes"
564
  msgid ""
565
- "%s requires that you tag your existing fields to match some places we want to "
566
- "put your data on the theme. Below are fields we think are missing."
567
  msgstr ""
568
  "%s يتطلب أن تضيف وسوم في الحقول الموجودة الخاصة بك لمطابقة بعض الأماكن لأننا "
569
  "نريد وضع البيانات الخاصة بك في القالب. وفيما يلي الحقول التي نظن أنها مفقودة."
@@ -609,7 +620,8 @@ msgctxt "licensing"
609
  msgid "Could not contact licensing server"
610
  msgstr "لا يمكن الاتصال بخادم الترخيص"
611
 
612
- #: admin/class-themes-admin.php:370 core/licensing.php:132 core/licensing.php:166
 
613
  msgctxt "licensing"
614
  msgid "License key is invalid"
615
  msgstr "مفتاح الترخيص غير صالح"
@@ -637,7 +649,7 @@ msgstr "تم إلغاء تفعيل الترخيص"
637
  #: admin/class-themes-admin.php:464
638
  msgctxt "themes"
639
  msgid "Activate your <a>license key</a> to use this theme."
640
- msgstr "فعِّل <a>مفتاح الترخيص</a> الخاص بك لاستخدام هذا القالب."
641
 
642
  #: admin/csv-export.php:136
643
  msgctxt "admin csv-export"
@@ -676,13 +688,13 @@ msgstr "← العودة إلى \"استيراد CSV\""
676
 
677
  #: admin/csv-import.php:255
678
  msgid ""
679
- "A valid temporary directory with write permissions is required for CSV imports "
680
- "to function properly. Your server is using \"%s\" but this path does not seem "
681
- "to be writable. Please consult with your host."
682
  msgstr ""
683
- "مطلوب مجلد مؤقت صالح مع صلاحية الكتابة لاستيراد CSV لكي يعمل بشكل صحيح. الخادم "
684
- "الخاص بك يستخدام \"%s\" ولكن هذا المسار لا يبدو أنه قابل للكتابة. يرجى استشارة "
685
- "الاستضافة الخاص بك."
686
 
687
  #: admin/csv-import.php:289
688
  msgctxt "admin csv-import"
@@ -804,13 +816,13 @@ msgctxt "fees admin"
804
  msgid ""
805
  "This is the default free plan for your directory. You can't delete it and "
806
  "it's always free, but you can edit the name and other settings. It's only "
807
- "available when the directory is in Free mode. You can always create other fee "
808
- "plans, including ones for 0.00 (free) if you wish."
809
  msgstr ""
810
  "هذه هي الخطة الافتراضية المجانية للدليل الخاص بك. لا يمكنك حذفه، وهي دائما "
811
- "مجانية، ولكن يمكنك تعديل الإسم وإعدادات أخرى. إنه يتوفر فقط عندما يكون الدليل "
812
- "في الوضع المجاني. ويمكنك دائماً إنشاء خطط رسوم أخرى، بما في ذلك تلك الخاصة بـ "
813
- "0.00 (مجاناً) إذا كنت ترغب."
814
 
815
  #: admin/fees.php:187
816
  msgctxt "fees admin"
@@ -994,126 +1006,115 @@ msgctxt "form-fields admin"
994
  msgid "In Listing"
995
  msgstr "في الإعلان"
996
 
997
- #: admin/form-fields.php:174
998
- msgctxt "formfields-preview"
999
- msgid ""
1000
- "This is a preview of the form as it will appear during \"Submit a Listing\". "
1001
- "The users may not see all fields from \"Manage Form Fields\" because you have "
1002
- "\"Featured Levels\" active and this is showing the base level."
1003
- msgstr ""
1004
- "هذا عرض مسبق لشكل الاستمارة كما ستظهر خلال \"إضافة إعلان\". الأعضاء قد لا يرون "
1005
- "كافة الحقول من \"إدارة حقول الاستمارة\" لأنه لديك \"مستويات مميزة\" مفعلة وهذا "
1006
- "يظهر المستوى الأساسي."
1007
-
1008
- #: admin/form-fields.php:180
1009
  msgctxt "form-fields admin"
1010
  msgid "Form Preview"
1011
  msgstr "معاينة الاستمارة"
1012
 
1013
- #: admin/form-fields.php:181
1014
  msgctxt "form-fields admin"
1015
  msgid "← Return to \"Manage Form Fields\""
1016
  msgstr "← العودة إلى \"إدارة حقول الاستمارة\""
1017
 
1018
- #: admin/form-fields.php:212
1019
  msgctxt "form-fields admin"
1020
  msgid "Form fields updated."
1021
  msgstr "تم تحديث الاستمارة."
1022
 
1023
- #: admin/form-fields.php:228
1024
  msgctxt "form-fields admin"
1025
  msgid ""
1026
- "<b>Important</b>: Since the \"<a>Display email address fields publicly?</a>\" "
1027
- "setting is disabled, display settings below will not be honored and this field "
1028
- "will not be displayed on the frontend. If you want e-mail addresses to show on "
1029
- "the frontend, you can <a>enable public display of e-mails</a>."
1030
  msgstr ""
1031
- "<b>هام</b>: نظرا لأن إعدادات \"<a>عرض حقول عنوان البريد الإلكتروني للعموم؟</a>"
1032
- "\" معطلة، عرض الإعدادات أدناه لن يتم إظهاره ولن يتم عرض هذا الحقل على الواجهة. "
1033
- "إذا كنت تريد إظهار عناوين البريد الإلكتروني في الواجهة، يمكنك <a>تمكين عرض "
1034
- "البريد الإلكتروني للعموم</a>."
1035
 
1036
- #: admin/form-fields.php:262
1037
  msgctxt "form-fields admin"
1038
  msgid "Field deleted."
1039
  msgstr "تم حذف الحقل."
1040
 
1041
- #: admin/form-fields.php:278
1042
  msgctxt "form-fields admin"
1043
  msgid "Required fields created successfully."
1044
  msgstr "الحقول المطلوبة أنشئت بنجاح."
1045
 
1046
- #: admin/form-fields.php:291
1047
  msgctxt "form-fields admin"
1048
  msgid "Title"
1049
  msgstr "العنوان"
1050
 
1051
- #: admin/form-fields.php:292
1052
  msgctxt "form-fields admin"
1053
  msgid "Category"
1054
  msgstr "التصنيف"
1055
 
1056
- #: admin/form-fields.php:293
1057
  msgctxt "form-fields admin"
1058
  msgid "Excerpt"
1059
  msgstr "مقتطف"
1060
 
1061
- #: admin/form-fields.php:294
1062
  msgctxt "form-fields admin"
1063
  msgid "Content"
1064
  msgstr "المحتوى"
1065
 
1066
- #: admin/form-fields.php:295
1067
  msgctxt "form-fields admin"
1068
  msgid "Tags"
1069
  msgstr "الوسوم"
1070
 
1071
- #: admin/form-fields.php:296
1072
  msgctxt "form-fields admin"
1073
  msgid "Address"
1074
  msgstr "العنوان"
1075
 
1076
- #: admin/form-fields.php:297
1077
  msgctxt "form-fields admin"
1078
  msgid "City"
1079
  msgstr "المدينة"
1080
 
1081
- #: admin/form-fields.php:298
1082
  msgctxt "form-fields admin"
1083
  msgid "State"
1084
  msgstr "الولاية"
1085
 
1086
- #: admin/form-fields.php:299
1087
  msgctxt "form-fields admin"
1088
  msgid "ZIP Code"
1089
  msgstr "الرمز البريدي"
1090
 
1091
- #: admin/form-fields.php:300
1092
  msgctxt "form-fields admin"
1093
  msgid "FAX Number"
1094
  msgstr "رقم الفاكس"
1095
 
1096
- #: admin/form-fields.php:301
1097
  msgctxt "form-fields admin"
1098
  msgid "Phone Number"
1099
  msgstr "رقم الهاتف"
1100
 
1101
- #: admin/form-fields.php:302
1102
  msgctxt "form-fields admin"
1103
  msgid "Ratings Field"
1104
  msgstr "حقول التقييم"
1105
 
1106
- #: admin/form-fields.php:303
1107
  msgctxt "form-fields admin"
1108
  msgid "Twitter"
1109
  msgstr "تويتر"
1110
 
1111
- #: admin/form-fields.php:304
1112
  msgctxt "form-fields admin"
1113
  msgid "Website"
1114
  msgstr "موقع الأنترنيت"
1115
 
1116
- #: admin/form-fields.php:325
1117
  msgctxt "form-fields admin"
1118
  msgid "Tags updated."
1119
  msgstr "تم تحديث الوسوم"
@@ -1205,12 +1206,13 @@ msgstr "اختبار إعداد SSL..."
1205
  #: admin/templates/csv-export.tpl.php:9
1206
  msgctxt "admin csv-export"
1207
  msgid ""
1208
- "An unknown error occurred during the export. Please make sure you have enough "
1209
- "free disk space and memory available to PHP. Check your error logs for details."
 
1210
  msgstr ""
1211
  "حدث خطأ غير معروف أثناء عملية التصدير. الرجاء التأكد من أن لديك ما يكفي من "
1212
- "المساحة الفارغة على القرص والذاكرة المتاحة إلى بي إتش بي. تحقق من سجلات الخطأ "
1213
- "الخاص بك للحصول على التفاصيل."
1214
 
1215
  #: admin/templates/csv-export.tpl.php:18
1216
  msgctxt "admin csv-export"
@@ -1270,8 +1272,8 @@ msgid ""
1270
  "When checked, instead of just a CSV file a ZIP file will be generated with "
1271
  "both a CSV file and listing images."
1272
  msgstr ""
1273
- "عند اختيار الخانة، بدلاً من مجرد ملف CSV سيتم إنشاء ملف مضغوط مع ملف CSV ولائحة "
1274
- "الصور."
1275
 
1276
  #: admin/templates/csv-export.tpl.php:62
1277
  msgctxt "admin csv-export"
@@ -1286,11 +1288,11 @@ msgstr "تتضمن معرفات (IDs) فريدة لكل إعلان (عمود seq
1286
  #: admin/templates/csv-export.tpl.php:69
1287
  msgctxt "admin csv-export"
1288
  msgid ""
1289
- "If you plan to re-import the listings into BD and don't want new ones created, "
1290
- "select this option!"
1291
  msgstr ""
1292
- "إذا كنت تخطط لإعادة استيراد الإعلانات إلى \"دليل الأعمال\" ولا تريد إنشاء أخرى "
1293
- "جديدة، قم بتحديد هذا الخيار!"
1294
 
1295
  #: admin/templates/csv-export.tpl.php:75
1296
  msgctxt "admin csv-export"
@@ -1319,8 +1321,10 @@ msgstr "فاصلة الأعمدة"
1319
 
1320
  #: admin/templates/csv-export.tpl.php:94 admin/templates/csv-export.tpl.php:105
1321
  #: admin/templates/csv-export.tpl.php:116 admin/templates/csv-import.tpl.php:43
1322
- #: admin/templates/csv-import.tpl.php:109 admin/templates/csv-import.tpl.php:120
1323
- #: admin/templates/csv-import.tpl.php:131 admin/templates/csv-import.tpl.php:158
 
 
1324
  msgctxt "admin forms"
1325
  msgid "required"
1326
  msgstr "مطلوب"
@@ -1348,8 +1352,8 @@ msgstr "جاري التصدير..."
1348
  #: admin/templates/csv-export.tpl.php:135
1349
  msgctxt "admin csv-export"
1350
  msgid ""
1351
- "Your export file is being prepared. Please <u>do not leave</u> this page until "
1352
- "the export finishes."
1353
  msgstr ""
1354
  "جاري إعداد ملف التصدير. المرجو <u>عدم ترك</u> هذه الصفحة حتى انتهاء التصدير."
1355
 
@@ -1422,8 +1426,8 @@ msgstr "حدث خطأ فادح أثناء عملية الاستيراد. وكا
1422
  #: admin/templates/csv-import-progress.tpl.php:10
1423
  msgctxt "admin csv-import"
1424
  msgid ""
1425
- "A fatal error occurred during the import. If connection wasn't lost during the "
1426
- "import, please make sure that you have enough free disk space and memory "
1427
  "available to PHP. Check your error logs for details."
1428
  msgstr ""
1429
  "حدث خطأ فادح أثناء عملية الاستيراد. إذا لم يكن الاتصال قد قطع أثناء عملية "
@@ -1431,117 +1435,112 @@ msgstr ""
1431
  "والذاكرة المتاحة إلى بي إتش بي. تحقق من سجلات الخطأ الخاص بك للحصول على "
1432
  "التفاصيل."
1433
 
1434
- #: admin/templates/csv-import-progress.tpl.php:14
1435
- msgctxt "admin csv-import"
1436
- msgid "Last imported line from file:"
1437
- msgstr "السطر الأخير الذي تم استيراده من الملف:"
1438
-
1439
- #: admin/templates/csv-import-progress.tpl.php:18
1440
- #: admin/templates/csv-import-progress.tpl.php:25
1441
  msgctxt "admin csv-import"
1442
  msgid "← Return to CSV Import"
1443
  msgstr "← العودة إلى \"استيراد CSV\""
1444
 
1445
- #: admin/templates/csv-import-progress.tpl.php:23
1446
  msgctxt "admin csv-import"
1447
  msgid "Import Canceled"
1448
  msgstr "ألغي الاستيراد"
1449
 
1450
- #: admin/templates/csv-import-progress.tpl.php:24
1451
  msgctxt "admin csv-import"
1452
  msgid "The import has been canceled."
1453
  msgstr "تم إلغاء الاستيراد."
1454
 
1455
- #: admin/templates/csv-import-progress.tpl.php:31
1456
  msgid "Import Progress"
1457
  msgstr "تقدم الاستيراد"
1458
 
1459
- #: admin/templates/csv-import-progress.tpl.php:34
1460
  msgctxt "admin csv-import"
1461
  msgid "Files"
1462
  msgstr "ملفات"
1463
 
1464
- #: admin/templates/csv-import-progress.tpl.php:37
1465
  msgctxt "admin csv-import"
1466
  msgid "Rows in file"
1467
  msgstr "السطور في ملف"
1468
 
1469
- #: admin/templates/csv-import-progress.tpl.php:40
1470
  msgctxt "admin csv-import"
1471
  msgid "Progress"
1472
  msgstr "التقدم"
1473
 
1474
- #: admin/templates/csv-import-progress.tpl.php:44
1475
  msgctxt "admin csv-import"
1476
  msgid "Import has not started. Click \"Start Import\" to begin."
1477
  msgstr "لم يبدأ الاستيراد. إضغط على \"استيراد\" للبدء."
1478
 
1479
- #: admin/templates/csv-import-progress.tpl.php:45
1480
  msgctxt "admin csv-import"
1481
  msgid "Importing CSV file..."
1482
  msgstr "استيراد ملف CSV..."
1483
 
1484
- #: admin/templates/csv-import-progress.tpl.php:51
1485
  msgctxt "admin csv-import"
1486
  msgid "Start Import"
1487
  msgstr "بدء الاستيراد"
1488
 
1489
- #: admin/templates/csv-import-progress.tpl.php:52
1490
  msgctxt "admin csv-import"
1491
  msgid "Cancel Import"
1492
  msgstr "إلغاء الاستيراد"
1493
 
1494
- #: admin/templates/csv-import-progress.tpl.php:59
1495
  msgctxt "admin csv-import"
1496
  msgid "Import finished"
1497
  msgstr "إنتهاء الاستيراد"
1498
 
1499
- #: admin/templates/csv-import-progress.tpl.php:62
1500
  msgctxt "admin csv-import"
1501
  msgid "Import was completed successfully."
1502
  msgstr "تم الاستيراد بنجاح."
1503
 
1504
- #: admin/templates/csv-import-progress.tpl.php:66
1505
  msgctxt "admin csv-import"
1506
  msgid "Import was completed but some rows were rejected."
1507
  msgstr "تم إكمال عملية الاستيراد ولكن رفضت بعض السطور."
1508
 
1509
- #: admin/templates/csv-import-progress.tpl.php:69
1510
  msgctxt "admin csv-import"
1511
  msgid "Import Summary"
1512
  msgstr "ملخص الاستيراد"
1513
 
1514
- #: admin/templates/csv-import-progress.tpl.php:71
1515
  msgctxt "admin csv-import"
1516
  msgid "Rows in file:"
1517
  msgstr "السطور في ملف:"
1518
 
1519
- #: admin/templates/csv-import-progress.tpl.php:74
1520
  msgctxt "admin csv-import"
1521
  msgid "Imported rows:"
1522
  msgstr "السطور المستوردة:"
1523
 
1524
- #: admin/templates/csv-import-progress.tpl.php:77
1525
  msgctxt "admin csv-import"
1526
  msgid "Rejected rows:"
1527
  msgstr "السطور المرفوضة:"
1528
 
1529
- #: admin/templates/csv-import-progress.tpl.php:82
1530
  msgctxt "admin csv-import"
1531
  msgid "Import Warnings"
1532
  msgstr "تحذيرات الاستيراد "
1533
 
1534
- #: admin/templates/csv-import-progress.tpl.php:85
1535
  msgctxt "admin csv-import"
1536
  msgid "Line #"
1537
  msgstr "سطر #"
1538
 
1539
- #: admin/templates/csv-import-progress.tpl.php:86
1540
  msgctxt "admin csv-import"
1541
  msgid "Line"
1542
  msgstr "سطر"
1543
 
1544
- #: admin/templates/csv-import-progress.tpl.php:87
1545
  msgctxt "admin csv-import"
1546
  msgid "Warning"
1547
  msgstr "تحذير"
@@ -1673,10 +1672,11 @@ msgstr "استخدام العضو الافتراضي للإعلانات؟"
1673
  #: admin/templates/csv-import.tpl.php:199
1674
  msgctxt "admin csv-import"
1675
  msgid ""
1676
- "Select a default user to be used if the username column is not present in the "
1677
- "CSV file."
1678
  msgstr ""
1679
- "حدد العضو الافتراضي لاستخدامه إذا كان العمود إسم المستخدم غير موجود في ملف CSV."
 
1680
 
1681
  #: admin/templates/csv-import.tpl.php:204
1682
  msgctxt "admin csv-import"
@@ -1713,9 +1713,9 @@ msgstr "استيراد الإعلانات"
1713
  msgctxt "admin csv-import"
1714
  msgid ""
1715
  "The following are the valid header names to be used in the CSV file. "
1716
- "Multivalued fields (such as category or tags) can appear multiple times in the "
1717
- "file. Click <a href=\"%s\">\"See an example CSV import file\"</a> to see how "
1718
- "an import file should look like."
1719
  msgstr ""
1720
  "فيما يلي أسماء رؤوس صالحة لاستخدامها في ملف CSV. يمكن أن تظهر حقول متعددة "
1721
  "القيم (مثل تصنيف أو وسوم) عدة مرات في الملف. إضغط فوق <a href=\"%s\">\"انظر "
@@ -1758,8 +1758,10 @@ msgstr "إسم مستخدم كاتب الإعلان"
1758
 
1759
  #: admin/templates/csv-import.tpl.php:282
1760
  msgctxt "admin csv-import"
1761
- msgid "Internal Sequence ID used to allow listing updates from external sources."
1762
- msgstr "معرف (ID) تسلسل داخلي يستخدم للسماح للإعلان بالتحديثات من مصادر خارجية."
 
 
1763
 
1764
  #: admin/templates/csv-import.tpl.php:289
1765
  msgctxt "admin csv-import"
@@ -1773,8 +1775,8 @@ msgstr ""
1773
  #: admin/templates/debug-info.tpl.php:5
1774
  msgctxt "debug-info"
1775
  msgid ""
1776
- "The following information can help BD developers debug possible problems with "
1777
- "your setup."
1778
  msgstr ""
1779
  "المعلومات التالية يمكن أن تساعد مطورين \"دليل الأعمال\" لتصحيح المشاكل "
1780
  "المحتملة مع الإعدادات الخاص بك."
@@ -1782,8 +1784,8 @@ msgstr ""
1782
  #: admin/templates/debug-info.tpl.php:6
1783
  msgctxt "debug-info"
1784
  msgid ""
1785
- "The debug information does not contain personal or sensitive information such "
1786
- "as passwords or private keys."
1787
  msgstr ""
1788
  "بيانات تصحيح الأخطاء لا تحتوي على معلومات شخصية أو حساسة مثل كلمات السر أو "
1789
  "المفاتيح الخاصة."
@@ -1863,12 +1865,17 @@ msgctxt "fees admin"
1863
  msgid "* All Categories *"
1864
  msgstr "* جميع التصنيفات *"
1865
 
1866
- #: admin/templates/fees-addoredit.tpl.php:134
 
 
 
 
 
1867
  msgctxt "fees admin"
1868
  msgid "Add Fee"
1869
  msgstr "إضافة رسم"
1870
 
1871
- #: admin/templates/fees-addoredit.tpl.php:134
1872
  msgctxt "fees admin"
1873
  msgid "Update Fee"
1874
  msgstr "تحديث الرسم"
@@ -1911,8 +1918,8 @@ msgstr "نظام الدفع متوقف حاليا."
1911
  #: admin/templates/fees.tpl.php:13
1912
  msgctxt "fees admin"
1913
  msgid ""
1914
- "To manage fees you need to go to the <a>Manage Options - Payment</a> page and "
1915
- "check the box next to 'Turn On Payments' under 'Payment Settings'."
1916
  msgstr ""
1917
  "لإدارة الرسوم أنت بحاجة للذهاب إلى صفحة <a>إدارة الخيارات - الدفع</a> وحدد "
1918
  "المربع بجوار 'تشغيل الدفعات' تحت 'إعدادات الدفع'."
@@ -1941,13 +1948,13 @@ msgstr "سحب وإسقاط لإعادة ترتيب الرسوم."
1941
  msgctxt "fees admin"
1942
  msgid ""
1943
  "These are all of the fee plans displayed to the user when they place a "
1944
- "listing. Your current mode of \"%s\" restricts what you see here. Those on the "
1945
- "<a>Not Available</a> filter will become active when you change the payment "
1946
- "mode."
1947
  msgstr ""
1948
- "هذه جميع خطط الرسوم المعروضة للعضو عندما يضع إعلانا. الوضع الحالي الخاص بك هو "
1949
- "\"%s\" يحصر ما تراه هنا. بالنسبة لتلك التي في عامل التصفية <a>غير متوفرة</a> "
1950
- "سوف تصبح مفعلة عندما تقوم بتغيير وضع الدفع."
1951
 
1952
  #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
1953
  #: admin/templates/fees.tpl.php:77
@@ -1964,9 +1971,9 @@ msgstr "مجاني"
1964
  #: admin/templates/fees.tpl.php:60
1965
  msgctxt "fees admin"
1966
  msgid ""
1967
- "These are all of the fee plans that aren't available because you're in \"%s\" "
1968
- "mode. Those on the Active filter will become Not Available when you change the "
1969
- "payment mode."
1970
  msgstr ""
1971
  "هذه كلها من خطط الرسوم التي لم تكن متوفرة لأنك في وضع \"%s\". تلك المتعلقة "
1972
  "بالتصفية المفعلة سوف تصبح \"غير متوفرة\" عندما تقوم بتغيير وضع الدفع."
@@ -1977,18 +1984,18 @@ msgid ""
1977
  "These fee plans were disabled by the admin and will not show to the end user "
1978
  "regardless of mode until you enable them."
1979
  msgstr ""
1980
- "خطط الرسوم هذه كانت معطلة من قبل الإدارة ولن تظهر للعضو بغض النظر عن الوضع حتى "
1981
- "تقوم بفعيلها."
1982
 
1983
  #: admin/templates/fees.tpl.php:74
1984
  msgctxt "fees admin"
1985
  msgid ""
1986
  "These are all of the fee plans you have configured. Not all of them are "
1987
- "available for the current mode (currently set to \"%s\"). To see the fee plans "
1988
- "for this mode click <a>Active</a>."
1989
  msgstr ""
1990
- "هذه كلها من خطط الرسوم التي قمت بإعدادها. ليست كلها متاحة للوضع الحالي (حاليا "
1991
- "الوضع في \"%s\"). لمشاهدة خطط الرسوم لهذا الوضع إضغط <a>مفعل</a>."
1992
 
1993
  #: admin/templates/fees.tpl.php:89 admin/templates/sidebar.tpl.php:13
1994
  msgctxt "admin sidebar"
@@ -2013,11 +2020,11 @@ msgstr "وحدة الدفع سترايب (Stripe)"
2013
  #: admin/templates/fees.tpl.php:102
2014
  msgctxt "admin templates"
2015
  msgid ""
2016
- "It does not appear you have any of the payment gateway modules enabled. Either "
2017
- "<a>enable the default Authorize.net gateway</a> with your account info, or "
2018
- "purchase a different payment gateway module in order to charge a fee for "
2019
- "listings. To purchase additional payment gateways use the buttons below or "
2020
- "visit %s."
2021
  msgstr ""
2022
  "لا يظهر لديك أي من وحدات بوابات الدفع مفعلة. إما <a>فعل بوابة Authorize.net "
2023
  "الافتراضية</a> مع معلومات الحساب الخاص بك، أو قم بشراء وحدة بوابة دفع مختلفة "
@@ -2032,7 +2039,8 @@ msgstr "مُركب مسبقا"
2032
  #: admin/templates/fees.tpl.php:123
2033
  msgctxt "admin templates"
2034
  msgid ""
2035
- "You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your users."
 
2036
  msgstr "يمكنك شراء <a>%s</a> لإضافة <a>%s</a> كخيار دفع للأعضاء."
2037
 
2038
  #: admin/templates/form-fields-addoredit.tpl.php:1
@@ -2228,14 +2236,15 @@ msgid ""
2228
  "ones, change the order and visibility of the fields as well as configure "
2229
  "special options for them."
2230
  msgstr ""
2231
- "هنا، يمكنك إنشاء حقول جديدة لإعلاناتك، تحرير أو حذف الموجود منها، وتغيير ترتيب "
2232
- "وإبراز الحقول فضلا عن إعداد خيارات خاصة لهم."
2233
 
2234
  #: admin/templates/form-fields.tpl.php:18
2235
  msgctxt "form-fields admin"
2236
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2237
  msgstr "المرجو مراجعة <a>وثائق حقول الاستمارة</a> للحصول على مزيد من التفاصيل."
2238
 
 
2239
  #. Plugin Name of the plugin/theme
2240
  #: admin/templates/header.tpl.php:4
2241
  msgid "Business Directory Plugin"
@@ -2249,15 +2258,16 @@ msgstr "مرحبا بكم في إضافة دليل الأعمال. أنت تست
2249
  #: admin/templates/home.tpl.php:5
2250
  msgctxt "admin home"
2251
  msgid ""
2252
- "Thanks for choosing us. There's a lot you probably want to get done, so let's "
2253
- "jump right in!"
2254
- msgstr "شكرا لاختيارك لنا. هناك ربما الكثير الذي تريد القيام به، لذلك هيا بنا!"
 
2255
 
2256
  #: admin/templates/home.tpl.php:11
2257
  msgctxt "admin home"
2258
  msgid ""
2259
- "Our complete documentation is <a>here</a> which we encourage you to use while "
2260
- "setting things up."
2261
  msgstr ""
2262
  "لدينا وثائق شرح كاملة <a>هنا</a> ونشجعك على استخدامها أثناء إعداد الإضافة."
2263
 
@@ -2267,17 +2277,17 @@ msgid ""
2267
  "We have some quick-start scenarios that you will find useful regarding setup "
2268
  "and configuration <a>here</a>."
2269
  msgstr ""
2270
- "لدينا بعض سيناريوهات البداية السريعة التي سوف تجدها مفيدة فيما يتعلق بالتثبيت "
2271
- "والإعداد<a> هنا</a>."
2272
 
2273
  #: admin/templates/home.tpl.php:18
2274
  msgctxt "admin home"
2275
  msgid ""
2276
- "If you have questions, please post a comment on <a>support forum</a> and we'll "
2277
- "answer it within 24 hours most days."
2278
  msgstr ""
2279
- "إذا كانت لديك أسئلة، المرجو نشر تعليق في <a>منتدى الدعم</a> وسوف نقوم بالإجابة "
2280
- "عليه في غضون 24 ساعة معظم الأيام."
2281
 
2282
  #: admin/templates/home.tpl.php:25
2283
  msgid "Configure/Manage Options"
@@ -2470,9 +2480,11 @@ msgstr ""
2470
  #: admin/templates/listing-metabox-fees.tpl.php:12
2471
  msgctxt "admin infometabox"
2472
  msgid ""
2473
- "Note: In Free mode, the fee plans will always be set to \"Free Listing\" below."
 
2474
  msgstr ""
2475
- "ملاحظة: في الوضع المجاني، رسم الخطط سيكون دائما معين إلى \"إعلان مجاني\" أدناه."
 
2476
 
2477
  #: admin/templates/listing-metabox-fees.tpl.php:22
2478
  #: admin/templates/listing-metabox-feesummary.tpl.php:12
@@ -2576,9 +2588,11 @@ msgstr "← العودة إلى \"إدارة الخيارات\""
2576
 
2577
  #: admin/templates/settings-reset.tpl.php:10
2578
  msgid ""
2579
- "Use this option if you want to go back to the original factory settings for BD."
 
2580
  msgstr ""
2581
- "استخدم هذا الخيار إذا كنت تريد العودة إلى إعدادات المصنع الأصلية لدليل الأعمال."
 
2582
 
2583
  #: admin/templates/settings-reset.tpl.php:11
2584
  msgid "Please note that all of your existing settings will be lost."
@@ -2597,7 +2611,7 @@ msgctxt "settings"
2597
  msgid "Reset Defaults"
2598
  msgstr "إعادة تعيين الوضع الافتراضي"
2599
 
2600
- #: admin/templates/settings.tpl.php:22
2601
  msgid "Settings updated."
2602
  msgstr "تم تحديث الإعدادات"
2603
 
@@ -2881,9 +2895,9 @@ msgstr ""
2881
  #: admin/templates/themes.tpl.php:16
2882
  msgctxt "themes"
2883
  msgid ""
2884
- "They are <strong>different</strong> than your regular WordPress theme and they "
2885
- "are <strong>not</strong> a replacement for WP themes either. They will change "
2886
- "the look and feel of your business directory only."
2887
  msgstr ""
2888
  "إنها <strong>مختلفة</strong> عن قوالب ووردبريس العادية الخاصة بك، و "
2889
  "<strong>ليست</strong> بديلاً عن قوالب ووردبريس. سوف تغير الشكل والمظهر لدليل "
@@ -2923,10 +2937,11 @@ msgstr "أخرى"
2923
  msgctxt "uninstall"
2924
  msgid ""
2925
  "We're sorry to see you leave. Could you take 10 seconds and answer one "
2926
- "question for us to help us make the product better for everyone in the future?"
 
2927
  msgstr ""
2928
- "نحن آسفون لرؤيتكم تتركنا. يمكن أن تعطينا 10 ثوان من وقتك للإجابة على سؤال واحد "
2929
- "لمساعدتنا على جعل المنتج أفضل للجميع في المستقبل؟"
2930
 
2931
  #: admin/templates/uninstall-capture-form.tpl.php:19
2932
  msgctxt "uninstall"
@@ -2975,8 +2990,9 @@ msgid ""
2975
  "personal, non-identifying information to help us in testing the plugin for "
2976
  "future releases?"
2977
  msgstr ""
2978
- "هل يمكن الاحتفاظ بتعقب \"دليل الأعمال\" لقالبك، والإضافات، وغيرها من المعلومات "
2979
- "غير الشخصية، والتي لا تعرف بك لمساعدتنا في اختبار الإضافة للإصدارات المستقبلية؟"
 
2980
 
2981
  #: admin/tracking.php:192
2982
  msgctxt "tracking"
@@ -2993,56 +3009,63 @@ msgctxt "tracking"
2993
  msgid "Allow Tracking"
2994
  msgstr "السماح بالتتبع"
2995
 
2996
- #: business-directory-plugin.php:660
2997
  msgctxt "admin plugins"
2998
  msgid "Settings"
2999
  msgstr "الإعدادات"
3000
 
3001
- #: business-directory-plugin.php:768 business-directory-plugin.php:775
3002
  msgctxt "rss feed"
3003
  msgid "%s Feed"
3004
  msgstr "تغذية %s"
3005
 
3006
- #: business-directory-plugin.php:1113
3007
  msgctxt "title"
3008
  msgid "Submit A Listing"
3009
  msgstr "إضافة إعلان"
3010
 
3011
- #: business-directory-plugin.php:1123
3012
  msgctxt "title"
3013
  msgid "Find a Listing"
3014
  msgstr "العثور على إعلان"
3015
 
3016
- #: business-directory-plugin.php:1133
3017
  msgctxt "title"
3018
  msgid "View All Listings"
3019
  msgstr "عرض جميع الإعلانات"
3020
 
3021
- #: business-directory-plugin.php:1153
3022
  msgctxt "title"
3023
  msgid "Listings tagged: %s"
3024
  msgstr "إعلانات ذات وسم: %s"
3025
 
3026
- #: core/api.php:397
3027
  msgid "Free"
3028
  msgstr "مجاني"
3029
 
3030
- #: core/class-csv-import.php:391
 
 
 
 
 
 
 
3031
  msgctxt "admin csv-import"
3032
  msgid "Could not create listing category \"%s\""
3033
  msgstr "لا يمكن إنشاء تصنيف الإعلان \"%s\""
3034
 
3035
- #: core/class-csv-import.php:535
3036
  msgctxt "admin csv-import"
3037
  msgid "Username \"%s\" does not exist"
3038
  msgstr "إسم المستخدم \"%s\" غير موجود"
3039
 
3040
- #: core/class-csv-import.php:567
3041
  msgctxt "admin csv-import"
3042
  msgid "Missing required field: %s"
3043
  msgstr "حقل مطلوب مفقود: %s"
3044
 
3045
- #: core/class-csv-import.php:587
3046
  msgctxt "admin csv-import"
3047
  msgid "Listing category \"%s\" does not exist"
3048
  msgstr "تصنيف الإعلان \"%s\" غير موجود"
@@ -3077,40 +3100,41 @@ msgctxt "form-fields-api"
3077
  msgid "Invalid form field type"
3078
  msgstr "نوع حقل استمارة غير صحيح"
3079
 
3080
- #: core/class-form-field.php:493
3081
  msgctxt "form-fields-api"
3082
  msgid "Field label is required."
3083
  msgstr "تسمية الحقل مطلوب."
3084
 
3085
- #: core/class-form-field.php:503
3086
  msgctxt "form-fields-api"
3087
  msgid "Requested field type change is incompatible. Type will not be modified."
3088
  msgstr "تغيير نوع الحقل المطلوب غير متوافق. لن يتم تعديل النوع."
3089
 
3090
- #: core/class-form-field.php:523
3091
  msgctxt "form-fields-api"
3092
  msgid ""
3093
  "There can only be one field with association \"%s\". Please select another "
3094
  "association."
3095
  msgstr "يمكن أن يكون هناك حقل واحد مع رابطة \"%s\". المرجو تحديد رابطة أخرى."
3096
 
3097
- #: core/class-form-field.php:533
3098
  msgctxt "form-fields-api"
3099
  msgid "\"%s\" is an invalid field type for this association."
3100
  msgstr "\"%s\" نوع حقل غير صالح لهذه الرابطة."
3101
 
3102
- #: core/class-form-field.php:571
3103
  msgctxt "form-fields-api"
3104
  msgid "Invalid field ID"
3105
  msgstr "معرف حقل غير صالح"
3106
 
3107
- #: core/class-form-field.php:580
3108
  msgctxt "form-fields api"
3109
  msgid ""
3110
- "This form field can't be deleted because it is required for the plugin to work."
 
3111
  msgstr "لا يمكن حذف هذا الحقل لأنه مطلوب لعمل الإضافة."
3112
 
3113
- #: core/class-form-field.php:592
3114
  msgctxt "form-fields-api"
3115
  msgid "An error occurred while trying to delete this field."
3116
  msgstr "حدث خطأ أثناء محاولة حذف هذا الحقل."
@@ -3215,12 +3239,12 @@ msgctxt "widgets"
3215
  msgid "Leave blank for automatic height."
3216
  msgstr "أترك المساحة فارغة للارتفاع التلقائي."
3217
 
3218
- #: core/class-payment.php:223 core/view-submit-listing.php:465
3219
  msgctxt "listings"
3220
  msgid "Fee \"%s\" for category \"%s\"%s"
3221
  msgstr "رسوم \"%s\" للتصنيف '%s' %s"
3222
 
3223
- #: core/class-payment.php:226 core/view-submit-listing.php:468
3224
  msgctxt "listings"
3225
  msgid "(recurring)"
3226
  msgstr "(متكرر)"
@@ -3274,8 +3298,8 @@ msgctxt "admin settings"
3274
  msgid ""
3275
  "The slug can't be in use by another term. Avoid \"category\", for instance."
3276
  msgstr ""
3277
- "لا يمكن أن يكون الرابط اللطيف مستخدم من طرف مصطلح آخر. تجنب \"category\"، على "
3278
- "سبيل المثال."
3279
 
3280
  #: core/class-settings.php:40
3281
  msgctxt "admin settings"
@@ -3286,8 +3310,8 @@ msgstr "رابط لطيف للوسوم"
3286
  msgctxt "admin settings"
3287
  msgid "The slug can't be in use by another term. Avoid \"tag\", for instance."
3288
  msgstr ""
3289
- "لا يمكن أن يكون الرابط اللطيف مستخدم من طرف مصطلح آخر. تجنب \"tag\"، على سبيل "
3290
- "المثال."
3291
 
3292
  #: core/class-settings.php:43
3293
  msgctxt "admin settings"
@@ -3298,8 +3322,8 @@ msgstr "إزالة معرف الإعلان من روابط URLs الدليل؟"
3298
  msgctxt "admin settings"
3299
  msgid ""
3300
  "Prior to 3.5.1, we included the ID in the listing URL, like \"/business-"
3301
- "directory/1809/listing-title\". Check this setting to remove the ID for better "
3302
- "SEO."
3303
  msgstr ""
3304
  "قبل الإصدار 3.5.1، كنا ندرج المعرف في الرابط url الخاص بالإعلان، مثل \"/دليل-"
3305
  "الأعمال/1809/عنوان-الإعلان\". تحقق من هذا الإعداد لإزالة المعرف لأفضل أرشفة "
@@ -3390,11 +3414,11 @@ msgstr "رابط التسجيل"
3390
  #: core/class-settings.php:90
3391
  msgctxt "admin settings"
3392
  msgid ""
3393
- "URL of your membership plugin's registration page. Only enter this if using a "
3394
- "membership plugin or custom registration page."
3395
  msgstr ""
3396
- "رابط URL لصفحة التسجيل في عضوية الإضافة الخاصة بك. فقط أدخل هذا إذا كان هناك "
3397
- "استخدام لعضوية الإضافة أو صفحة تسجيل مخصصة."
3398
 
3399
  #: core/class-settings.php:95 core/class-settings.php:104
3400
  msgctxt "admin settings"
@@ -3421,8 +3445,8 @@ msgid ""
3421
  "Enter text or a URL starting with http. If you use a URL, the Terms and "
3422
  "Conditions text will be replaced by a link to the appropiate page."
3423
  msgstr ""
3424
- "أدخل النص أو عنوان URL يبدأ ب http. إذا كنت تستخدم عنوان URL، سيتم استبدال نص "
3425
- "الأحكام والشروط برابط إلى الصفحة المناسبة."
3426
 
3427
  #: core/class-settings.php:111
3428
  msgctxt "admin settings"
@@ -3431,86 +3455,91 @@ msgstr "خيارات عرض الدليل"
3431
 
3432
  #: core/class-settings.php:112
3433
  msgctxt "admin settings"
 
 
 
 
 
3434
  msgid "Show the \"Submit listing\" button."
3435
  msgstr "إظهار زر \"إضافة إعلان\"."
3436
 
3437
- #: core/class-settings.php:113
3438
  msgctxt "admin settings"
3439
  msgid "Show \"Search listings\"."
3440
  msgstr "إظهار \"البحث في الإعلانات\"."
3441
 
3442
- #: core/class-settings.php:114
3443
  msgctxt "admin settings"
3444
  msgid "Show the \"View Listings\" button."
3445
  msgstr "إظهار زر \"مشاهدة الإعلانات\"."
3446
 
3447
- #: core/class-settings.php:115
3448
  msgctxt "admin settings"
3449
  msgid "Show the \"Directory\" button."
3450
  msgstr "إظهار زر \"الدليل\"."
3451
 
3452
- #: core/class-settings.php:116
3453
  msgctxt "admin settings"
3454
- msgid "Disable advanced CPT integration."
3455
- msgstr "تعطيل التكامل CPT المتقدم."
3456
 
3457
- #: core/class-settings.php:121
3458
  msgctxt "admin settings"
3459
  msgid "Directory Search"
3460
  msgstr "البحث في الدليل"
3461
 
3462
- #: core/class-settings.php:129
3463
  msgctxt "admin settings"
3464
  msgid "Search form display"
3465
  msgstr "عرض نموذج البحث"
3466
 
3467
- #: core/class-settings.php:133
3468
  msgctxt "admin settings"
3469
  msgid "Above results"
3470
  msgstr "أعلى النتائج"
3471
 
3472
- #: core/class-settings.php:134
3473
  msgctxt "admin settings"
3474
  msgid "Below results"
3475
  msgstr "أسفل النتائج"
3476
 
3477
- #: core/class-settings.php:135
3478
  msgctxt "admin settings"
3479
  msgid "Don't show with results"
3480
  msgstr "لا تظهر مع النتائج"
3481
 
3482
- #: core/class-settings.php:140
3483
  msgctxt "admin settings"
3484
  msgid ""
3485
- "You have selected a textarea field to be included in quick searches. Searches "
3486
- "involving those fields are very expensive and could result in timeouts and/or "
3487
- "general slowness."
3488
  msgstr ""
3489
- "لقد حددت حقل إدراج نص ليتم تضمينها في عمليات البحث السريعة. عمليات البحث التي "
3490
- "تنطوي على تلك الحقول تتطلب موارد كثيرة ويمكن أن تؤدي الى انتهاء المهلة و/ أو "
3491
- "البطء العام."
3492
 
3493
- #: core/class-settings.php:142
3494
  msgctxt "admin settings"
3495
  msgid ""
3496
  "Use Ctrl-Click to include multiple fields in the search. Choosing too many "
3497
  "fields for inclusion into Quick Search can result in very slow search "
3498
  "performance."
3499
  msgstr ""
3500
- "إستخدم Ctrl-Click لتشمل حقول متعددة في البحث. اختيار العديد من الحقول لإدراجها "
3501
- "في البحث السريع يؤدي إلى أداء بحث بطيئ جدا."
3502
 
3503
- #: core/class-settings.php:145
3504
  msgctxt "admin settings"
3505
  msgid "Quick search fields"
3506
  msgstr "حقول البحث السريع"
3507
 
3508
- #: core/class-settings.php:153
3509
  msgctxt "admin settings"
3510
  msgid "Enable high performance searches?"
3511
  msgstr "تمكين عمليات البحث عالية الأداء؟"
3512
 
3513
- #: core/class-settings.php:156
3514
  msgctxt "admin settings"
3515
  msgid ""
3516
  "Enabling this makes BD sacrifice result quality to improve speed. This is "
@@ -3520,12 +3549,12 @@ msgstr ""
3520
  "تمكين هذا يجعل \"دليل الأعمال\" يضحي بجودة النتيجة لتحسين السرعة. وهذا مفيد "
3521
  "إذا كنت على خطط استضافة مشتركة، حيث أداء قاعدة البيانات يعد مشكلة."
3522
 
3523
- #: core/class-settings.php:161
3524
  msgctxt "admin settings"
3525
  msgid "Miscellaneous Settings"
3526
  msgstr "إعدادات متنوعة"
3527
 
3528
- #: core/class-settings.php:165
3529
  msgctxt "admin settings"
3530
  msgid ""
3531
  "Check this if you are having trouble with BD, particularly when importing or "
@@ -3534,162 +3563,168 @@ msgstr ""
3534
  "حدد هذا الخيار إذا كنت تواجه مشكلة مع دليل الأعمال، ولا سيما عند استيراد أو "
3535
  "تصدير ملفات CSV."
3536
 
3537
- #: core/class-settings.php:168
3538
  msgctxt "admin settings"
3539
  msgid ""
3540
- "If this compatibility mode doesn't solve your issue, you may be experiencing a "
3541
- "more serious conflict. <a>Here is an article</a> about how to test for theme "
3542
- "and plugin conflicts with Business Directory."
3543
  msgstr ""
3544
  " إذا كان وضع التوافق لا يحل مشكلتك، فقد تعاني من تعارض أكثر خطورة. <a>وإليك "
3545
  "مقال</a> حول كيفية اختبار تعارضات القالب والإضافات مع \"دليل الأعمال\"."
3546
 
3547
- #: core/class-settings.php:171
3548
  msgctxt "admin settings"
3549
  msgid "Enable AJAX compatibility mode?"
3550
  msgstr "تمكين وضع التوافق أجاكس؟"
3551
 
3552
- #: core/class-settings.php:179 core/class-settings.php:658
3553
  msgctxt "admin settings"
3554
  msgid "Listings"
3555
  msgstr "الإعلانات"
3556
 
3557
- #: core/class-settings.php:180 core/class-settings.php:328
3558
- #: core/class-settings.php:615
3559
  msgctxt "admin settings"
3560
  msgid "General Settings"
3561
  msgstr "الإعدادات العامة"
3562
 
3563
- #: core/class-settings.php:182
3564
  msgctxt "admin settings"
3565
  msgid "Listings per page"
3566
  msgstr "الإعلانات حسب الصفحة"
3567
 
3568
- #: core/class-settings.php:183
3569
  msgctxt "admin settings"
3570
  msgid ""
3571
- "Number of listings to show per page. Use a value of \"0\" to show all listings."
 
3572
  msgstr ""
3573
  "عدد الإعلانات التي تظهر في كل صفحة. استخدام قيمة \"0\" لإظهار كل الإعلانات."
3574
 
3575
- #: core/class-settings.php:185
3576
  msgctxt "admin settings"
3577
  msgid "Listing duration for no-fee sites (in days)"
3578
  msgstr "مدة الإعلان للمواقع بلا رسوم (بالأيام)"
3579
 
3580
- #: core/class-settings.php:186
3581
  msgctxt "admin settings"
3582
  msgid ""
3583
  "Use a value of \"0\" to keep a listing alive indefinitely or enter a number "
3584
  "less than 10 years (3650 days)."
3585
  msgstr ""
3586
- "استخدام قيمة \"0\" للإبقاء على الإعلان إلى أجل غير مسمى، أو قم بإدخال عدد أقل "
3587
- "من 10 سنوات (3650 يوما)."
3588
 
3589
- #: core/class-settings.php:192
3590
  msgctxt "admin settings"
3591
  msgid "Include listing contact form on listing pages?"
3592
  msgstr "إدراج الإعلان مع نموذج الاتصال في صفحات الإعلان؟"
3593
 
3594
- #: core/class-settings.php:195
3595
  msgctxt "admin settings"
3596
  msgid ""
3597
- "Allows visitors to contact listing authors privately. Authors will receive the "
3598
- "messages via email."
3599
  msgstr ""
3600
  "يسمح للزوار بالاتصال بكتاب الإعلان بشكل خاص. الكتاب سوف يتلقون رسائل عبر "
3601
  "البريد الإلكتروني."
3602
 
3603
- #: core/class-settings.php:198
 
 
 
 
 
3604
  msgctxt "admin settings"
3605
  msgid "Require login for using the contact form?"
3606
  msgstr "يتطلب تسجيل الدخول لاستخدام نموذج الاتصال؟"
3607
 
3608
- #: core/class-settings.php:204
3609
  msgctxt "admin settings"
3610
  msgid "Maximum number of contact form submits per day"
3611
  msgstr "الحد الأقصى لعدد إرسال الاتصالات يوميا"
3612
 
3613
- #: core/class-settings.php:207
3614
  msgctxt "admin settings"
3615
  msgid ""
3616
- "Use this to prevent spamming of listing owners. 0 means unlimited submits per "
3617
- "day."
3618
  msgstr ""
3619
  "إستخدم هذا لمنع الرسائل المزعجة لأصحاب الإعلانات. 0 تعني إرسال غير محدود في "
3620
  "اليوم الواحد."
3621
 
3622
- #: core/class-settings.php:213
3623
  msgctxt "admin settings"
3624
  msgid "Include comment form on listing pages?"
3625
  msgstr "يتضمن نموذج التعليق على صفحات الإعلانات؟"
3626
 
3627
- #: core/class-settings.php:216
3628
  msgctxt "admin settings"
3629
  msgid ""
3630
- "Allow visitors to discuss listings using the standard WordPress comment form. "
3631
- "Comments are public."
3632
  msgstr ""
3633
  "السماح للزوار بمناقشة الإعلانات باستخدام نموذج التعليق القياسي لووردبريس. "
3634
  "التعليقات مشاهدة للعموم."
3635
 
3636
- #: core/class-settings.php:217
3637
  msgctxt "admin settings"
3638
  msgid "Show listings under categories on main page?"
3639
  msgstr "إظهار الإعلانات تحت التصنيفات على الصفحة الرئيسية؟"
3640
 
3641
- #: core/class-settings.php:218
3642
  msgctxt "admin settings"
3643
  msgid "Status of listings upon uninstalling plugin"
3644
  msgstr "حالة الإعلانات عند إلغاء تثبيت الإضافة"
3645
 
3646
- #: core/class-settings.php:219 core/class-settings.php:221
3647
  msgctxt "post status"
3648
  msgid "Draft"
3649
  msgstr "مسودة"
3650
 
3651
- #: core/class-settings.php:219 core/class-settings.php:221
3652
  msgctxt "post status"
3653
  msgid "Trash"
3654
  msgstr "سلة المهملات"
3655
 
3656
- #: core/class-settings.php:220
3657
  msgctxt "admin settings"
3658
  msgid "Status of deleted listings"
3659
  msgstr "حالة الإعلانات المحذوفة"
3660
 
3661
- #: core/class-settings.php:222
3662
  msgctxt "admin settings"
3663
  msgid "Submit Listing instructions message"
3664
  msgstr "إرسال رسالة تعليمات الإعلانات"
3665
 
3666
- #: core/class-settings.php:222
3667
  msgctxt "admin settings"
3668
  msgid ""
3669
  "This text is displayed at the first page of the Submit Listing process for "
3670
- "Business Directory. You can use it for instructions about filling out the form "
3671
- "or anything you want to tell users before they get started."
3672
  msgstr ""
3673
  "يتم عرض هذا النص على الصفحة الأولى من عملية إرسال إعلان لدليل الأعمال. يمكنك "
3674
- "استخدامه لإعطاء إرشادات حول تعبئة النموذج أو أي شيء تريد إعلام الأعضاء به قبل "
3675
- "أن يبدأوا."
3676
 
3677
- #: core/class-settings.php:224
3678
  msgctxt "admin settings"
3679
  msgid "Listing Renewal"
3680
  msgstr "تجديد الإعلان"
3681
 
3682
- #: core/class-settings.php:225
3683
  msgctxt "admin settings"
3684
  msgid "Turn on listing renewal option?"
3685
  msgstr "قم بتشغيل خيار تجديد الإعلان؟"
3686
 
3687
- #: core/class-settings.php:228
3688
  msgctxt "admin settings"
3689
  msgid "Allow recurring renewal payments?"
3690
  msgstr "السماح بتجديد الدفعات المتكررة؟"
3691
 
3692
- #: core/class-settings.php:231
3693
  msgctxt "admin settings"
3694
  msgid ""
3695
  "Allow users to opt in for automatic renewal of their listings. The fee is "
@@ -3698,256 +3733,257 @@ msgstr ""
3698
  "السماح للأعضاء باختيار التجديد التلقائي لإعلاناتهم. الرسوم تستوفى وقت انتهاء "
3699
  "تاريخ الإعلان دون تدخل العضو."
3700
 
3701
- #: core/class-settings.php:235
3702
  msgctxt "admin settings"
3703
  msgid "Use recurring payments as the default payment method?"
3704
  msgstr "استخدام المدفوعات المتكررة كطريقة الدفع الافتراضية؟"
3705
 
3706
- #: core/class-settings.php:238
3707
  msgctxt "admin settings"
3708
  msgid ""
3709
- "Enable automatic renewal without having users opt in during the submit process."
 
3710
  msgstr "تمكين التجديد التلقائي دون إخبار الأعضاء أثناء عملية الإرسال."
3711
 
3712
- #: core/class-settings.php:243
3713
  msgctxt "admin settings"
3714
  msgid "Listing renewal e-mail threshold (in days)"
3715
  msgstr "عتبة رسالة البريد الإلكتروني لتجديد الإعلان (بالأيام)"
3716
 
3717
- #: core/class-settings.php:246
3718
  msgctxt "admin settings"
3719
  msgid ""
3720
  "Configure how many days before listing expiration is the renewal e-mail sent."
3721
  msgstr ""
3722
  "حدد عدد الأيام قبل انتهاء تاريخ الإعلان لإرسال رسالة بريد إلكتروني لتجديده."
3723
 
3724
- #: core/class-settings.php:250
3725
  msgctxt "admin settings"
3726
  msgid ""
3727
  "Send expiration notices including a cancel links to auto-renewed listings?"
3728
  msgstr ""
3729
  "إرسال إشعارات انتهاء التاريخ مصحوبة بروابط إلغاء التجديد التلقائي للإعلانات؟"
3730
 
3731
- #: core/class-settings.php:257
3732
  msgctxt "admin settings"
3733
  msgid "Remind listing owners of expired listings (past due)?"
3734
- msgstr "ذكِّر أصحاب الإعلانات المنتهية التاريخ (مستحقة)؟"
3735
 
3736
- #: core/class-settings.php:262
3737
  msgctxt "admin settings"
3738
  msgid "Listing renewal reminder e-mail threshold (in days)"
3739
  msgstr "عتبة التذكير بالبريد الإلكتروني لتجديد الإعلان (بالأيام)"
3740
 
3741
- #: core/class-settings.php:265
3742
  msgctxt "admin settings"
3743
  msgid ""
3744
  "Configure how many days after the expiration of a listing an e-mail reminder "
3745
  "should be sent to the owner."
3746
  msgstr ""
3747
- "حدد عدد الأيام بعد انتهاء تاريخ الإعلان لإرسال رسالة بريد إلكتروني لتذكير صاحب "
3748
- "الإعلان."
3749
 
3750
- #: core/class-settings.php:268
3751
  msgctxt "admin settings"
3752
  msgid "Post/Category Settings"
3753
  msgstr "إعدادات الإعلان/التصنيف"
3754
 
3755
- #: core/class-settings.php:269
3756
  msgctxt "admin settings"
3757
  msgid "Default new post status"
3758
  msgstr "حالة الإعلان الجديد الافتراضية"
3759
 
3760
- #: core/class-settings.php:270 core/class-settings.php:273
3761
  msgctxt "post status"
3762
  msgid "Published"
3763
  msgstr "نشرت"
3764
 
3765
- #: core/class-settings.php:270 core/class-settings.php:273
3766
  msgctxt "post status"
3767
  msgid "Pending"
3768
  msgstr " في الانتظار"
3769
 
3770
- #: core/class-settings.php:272
3771
  msgctxt "admin settings"
3772
  msgid "Edit post status"
3773
  msgstr "تعديل حالة الإعلان"
3774
 
3775
- #: core/class-settings.php:274
3776
  msgctxt "admin settings"
3777
  msgid "Order categories list by"
3778
  msgstr "ترتيب قائمة التصنيفات حسب"
3779
 
3780
- #: core/class-settings.php:276
3781
  msgctxt "admin settings"
3782
  msgid "Name"
3783
  msgstr "الإسم"
3784
 
3785
- #: core/class-settings.php:277
3786
  msgctxt "admin settings"
3787
  msgid "Slug"
3788
  msgstr "رابط لطيف"
3789
 
3790
- #: core/class-settings.php:278
3791
  msgctxt "admin settings"
3792
  msgid "Listing Count"
3793
  msgstr "عداد الإعلانات"
3794
 
3795
- #: core/class-settings.php:280
3796
  msgctxt "admin settings"
3797
  msgid "Sort order for categories"
3798
  msgstr "ترتيب فرز التصنيفات"
3799
 
3800
- #: core/class-settings.php:281 core/class-settings.php:299
3801
  msgctxt "admin settings"
3802
  msgid "Ascending"
3803
  msgstr "تصاعدي"
3804
 
3805
- #: core/class-settings.php:281 core/class-settings.php:299
3806
  msgctxt "admin settings"
3807
  msgid "Descending"
3808
  msgstr "تنازلي"
3809
 
3810
- #: core/class-settings.php:282
3811
  msgctxt "admin settings"
3812
  msgid "Show category post count?"
3813
  msgstr "إظهار عدد إعلانات التصنيف؟"
3814
 
3815
- #: core/class-settings.php:283
3816
  msgctxt "admin settings"
3817
  msgid "Hide empty categories?"
3818
  msgstr "إخفاء التصنيفات الفارغة؟"
3819
 
3820
- #: core/class-settings.php:284
3821
  msgctxt "admin settings"
3822
  msgid "Show only parent categories in category list?"
3823
  msgstr "إظهار التصنيفات الأبوية فقط في قائمة التصنيف؟"
3824
 
3825
- #: core/class-settings.php:286
3826
  msgctxt "admin settings"
3827
  msgid "Listings Sorting"
3828
  msgstr "فرز الإعلانات"
3829
 
3830
- #: core/class-settings.php:287
3831
  msgctxt "admin settings"
3832
  msgid "Order directory listings by"
3833
  msgstr "ترتيب إعلانات الدليل حسب"
3834
 
3835
- #: core/class-settings.php:289
3836
  msgctxt "admin settings"
3837
  msgid "Title"
3838
  msgstr "العنوان"
3839
 
3840
- #: core/class-settings.php:290
3841
  msgctxt "admin settings"
3842
  msgid "Author"
3843
  msgstr "الكاتب"
3844
 
3845
- #: core/class-settings.php:291 core/class-settings.php:701
3846
  msgctxt "admin settings"
3847
  msgid "Date posted"
3848
  msgstr "تاريخ النشر"
3849
 
3850
- #: core/class-settings.php:292 core/class-settings.php:702
3851
  msgctxt "admin settings"
3852
  msgid "Date last modified"
3853
  msgstr "تاريخ آخر تعديل"
3854
 
3855
- #: core/class-settings.php:293
3856
  msgctxt "admin settings"
3857
  msgid "Random"
3858
  msgstr "عشوائية"
3859
 
3860
- #: core/class-settings.php:294
3861
  msgctxt "admin settings"
3862
  msgid "Paid first then free. Inside each group by date."
3863
  msgstr "تدفع أولاً ثم مجاناً. داخل كل مجموعة حسب التاريخ."
3864
 
3865
- #: core/class-settings.php:295
3866
  msgctxt "admin settings"
3867
  msgid "Paid first then free. Inside each group by title."
3868
  msgstr "تدفع أولاً ثم مجاناً. داخل كل مجموعة بعنوان."
3869
 
3870
- #: core/class-settings.php:297
3871
  msgctxt "admin settings"
3872
  msgid "Sort directory listings by"
3873
  msgstr "فرز إعلانات الدليل حسب"
3874
 
3875
- #: core/class-settings.php:298
3876
  msgctxt "admin settings"
3877
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3878
  msgstr "ترتيب تصاعدي من أ إلى ي، ترتيب تنازلي من ي إلى أ"
3879
 
3880
- #: core/class-settings.php:303
3881
  msgctxt "admin settings"
3882
  msgid "Enable sort bar?"
3883
  msgstr "تمكين شريط الفرز؟"
3884
 
3885
- #: core/class-settings.php:308
3886
  msgctxt "admin settings"
3887
  msgid "Sortbar Fields"
3888
  msgstr "حقول شريط الفرز"
3889
 
3890
- #: core/class-settings.php:317
3891
  msgctxt "admin settings"
3892
  msgid "Featured (Sticky) listing settings"
3893
  msgstr "إعدادات الإعلانات (المثبتة) المميزة"
3894
 
3895
- #: core/class-settings.php:318
3896
  msgctxt "admin settings"
3897
  msgid "Offer sticky listings?"
3898
  msgstr "عروض الإعلانات المثبتة"
3899
 
3900
- #: core/class-settings.php:319
3901
  msgctxt "admin settings"
3902
  msgid "Offer upgrades during submit process?"
3903
  msgstr "عرض الترقية خلال عملية إضافة إعلان؟"
3904
 
3905
- #: core/class-settings.php:320
3906
  msgctxt "admin settings"
3907
  msgid "Sticky listing price"
3908
  msgstr "سعر الإعلان المثبت"
3909
 
3910
- #: core/class-settings.php:321
3911
  msgctxt "admin settings"
3912
  msgid "Sticky listing page description text"
3913
  msgstr "نص وصف صفحة الإعلان المثبت"
3914
 
3915
- #: core/class-settings.php:322
3916
  msgctxt "admin settings"
3917
  msgid ""
3918
- "You can upgrade your listing to featured status. Featured listings will always "
3919
- "appear on top of regular listings."
3920
  msgstr ""
3921
  "يمكنك ترقية إعلانك إلى الحالة المميزة. الإعلانات المميزة سوف تظهر دائماً أعلى "
3922
  "الإعلانات العادية."
3923
 
3924
- #: core/class-settings.php:327
3925
  msgctxt "admin settings"
3926
  msgid "E-Mail"
3927
  msgstr "البريد الإلكتروني"
3928
 
3929
- #: core/class-settings.php:331
3930
  msgctxt "admin settings"
3931
  msgid "Display email address fields publicly?"
3932
  msgstr "عرض حقول عنوان البريد الإلكتروني علنا؟"
3933
 
3934
- #: core/class-settings.php:334
3935
  msgctxt "admin settings"
3936
  msgid ""
3937
- "Shows the email address of the listing owner to all web users. NOT RECOMMENDED "
3938
- "as this increases spam to the address and allows spam bots to harvest it for "
3939
- "future use."
3940
  msgstr ""
3941
  "إظهار عنوان البريد الإلكتروني لمالك الإعلان لجميع مستخدمي الويب. لا ينصح به "
3942
  "لأن هذا يزيد من الرسائل المزعجة إلى العنوان ويسمح للمتطفلين بجمع عنوانين "
3943
  "البريد للاستخدام في المستقبل."
3944
 
3945
- #: core/class-settings.php:337
3946
  msgctxt "admin settings"
3947
  msgid "How to determine the listing's email address?"
3948
  msgstr "كيفية تحديد عنوان البريد الإلكتروني في الإعلان؟"
3949
 
3950
- #: core/class-settings.php:340
3951
  msgctxt "admin settings"
3952
  msgid ""
3953
  "This affects emails sent to listing owners via contact forms or when their "
@@ -3956,147 +3992,148 @@ msgstr ""
3956
  "هذا يؤثر على رسائل البريد الإلكتروني المرسلة إلى مالكي الإعلانات عبر نموذج "
3957
  "الاتصال أو عندما ينتهي تاريخ الإعلانات."
3958
 
3959
- #: core/class-settings.php:342
3960
  msgctxt "admin settings"
3961
  msgid "Try listing's email field first, then author's email."
3962
  msgstr "جرب البريد الإلكتروني للإعلانات أولاً، ثم البريد الإلكتروني للكاتب."
3963
 
3964
- #: core/class-settings.php:343
3965
  msgctxt "admin settings"
3966
  msgid "Try author's email first and then listing's email field."
3967
  msgstr "جرب البريد الإلكتروني للكاتب أولاً، ثم البريد الإلكتروني للإعلانات."
3968
 
3969
- #: core/class-settings.php:347
3970
  msgctxt "admin settings"
3971
  msgid "E-Mail Notifications"
3972
  msgstr "تنبيهات البريد الإلكتروني"
3973
 
3974
- #: core/class-settings.php:350
3975
  msgctxt "admin settings"
3976
  msgid "Notify admin via e-mail when..."
3977
  msgstr "إبلاغ المدير عن طريق البريد الإلكتروني عندما..."
3978
 
3979
- #: core/class-settings.php:354
3980
  msgctxt "admin settings"
3981
  msgid "A new listing is submitted."
3982
  msgstr "يتم إضافة إعلان جديد"
3983
 
3984
- #: core/class-settings.php:355
3985
  msgctxt "admin settings"
3986
  msgid "A listing is edited."
3987
  msgstr "تم تحرير الإعلان"
3988
 
3989
- #: core/class-settings.php:356
3990
  msgctxt "admin settings"
3991
  msgid "A listing expires."
3992
  msgstr "الإعلان منتهي التاريخ"
3993
 
3994
- #: core/class-settings.php:357
3995
  msgctxt "admin settings"
3996
  msgid "A contact message is sent to a listing's owner."
3997
  msgstr "يتم إرسال رسالة اتصال لمالك الإعلان."
3998
 
3999
- #: core/class-settings.php:363
4000
  msgctxt "admin settings"
4001
  msgid "CC this e-mail address too"
4002
  msgstr "إرسال نسخة من الرسالة الى عنوان البريد الإلكتروني هذا أيضا"
4003
 
4004
- #: core/class-settings.php:369
4005
  msgctxt "admin settings"
4006
  msgid "Notify users via e-mail when..."
4007
  msgstr "إعلام الأعضاء عن طريق البريد الإلكتروني عندما..."
4008
 
4009
- #: core/class-settings.php:372
4010
  msgctxt "admin settings"
4011
  msgid "You can modify the text template used for most of these e-mails below."
4012
- msgstr "يمكنك تعديل قالب النص المستخدم لمعظم رسائل البريد الإلكتروني هذه أدناه."
 
4013
 
4014
- #: core/class-settings.php:373
4015
  msgctxt "admin settings"
4016
  msgid "Their listing is submitted."
4017
  msgstr "يتم إضافة الإعلان الخاص بهم"
4018
 
4019
- #: core/class-settings.php:374
4020
  msgctxt "admin settings"
4021
  msgid "Their listing is approved/published."
4022
  msgstr "تمت الموافقة ونشر الإعلان الخاص بهم"
4023
 
4024
- #: core/class-settings.php:383
4025
  msgctxt "contact email"
4026
  msgid "You have received a reply from your listing at %s."
4027
  msgstr "تلقيت ردا من الإعلان الخاص بك في %s."
4028
 
4029
- #: core/class-settings.php:384
4030
  msgctxt "contact email"
4031
  msgid "Name: %s"
4032
  msgstr "الإسم: %s"
4033
 
4034
- #: core/class-settings.php:385
4035
  msgctxt "contact email"
4036
  msgid "E-Mail: %s"
4037
  msgstr "البريد الإلكتروني: %s"
4038
 
4039
- #: core/class-settings.php:386
4040
  msgctxt "contact email"
4041
  msgid "Message:"
4042
  msgstr "الرسالة:"
4043
 
4044
- #: core/class-settings.php:388
4045
  msgctxt "contact email"
4046
  msgid "Time: %s"
4047
  msgstr "الوقت: %s"
4048
 
4049
- #: core/class-settings.php:390
4050
  msgctxt "admin settings"
4051
  msgid "E-Mail Templates"
4052
  msgstr "قوالب البريد الإلكتروني"
4053
 
4054
- #: core/class-settings.php:393
4055
  msgctxt "admin settings"
4056
  msgid "Email confirmation message"
4057
  msgstr "رسالة تأكيد البريد الإلكتروني"
4058
 
4059
- #: core/class-settings.php:397
4060
  msgctxt "admin settings"
4061
  msgid "Sent after a listing has been submitted."
4062
  msgstr "ترسل بعد أن يضاف الإعلان."
4063
 
4064
- #: core/class-settings.php:398 core/class-settings.php:406
4065
- #: core/class-settings.php:447
4066
  msgctxt "admin settings"
4067
  msgid "Listing's title"
4068
  msgstr "عنوان الإعلان"
4069
 
4070
- #: core/class-settings.php:401
4071
  msgctxt "admin settings"
4072
  msgid "Listing published message"
4073
  msgstr "رسالة نشر الإعلان"
4074
 
4075
- #: core/class-settings.php:404
4076
  msgctxt "admin settings"
4077
  msgid ""
4078
- "Your listing \"[listing]\" is now available at [listing-url] and can be viewed "
4079
- "by the public."
4080
  msgstr ""
4081
- "القائمة الخاصة بك \"[listing]\" متوفر الآن في [listing-url] ويمكن مشاهدتها من "
4082
- "قبل العموم."
4083
 
4084
- #: core/class-settings.php:405
4085
  msgctxt "admin settings"
4086
  msgid "Sent when the listing has been published or approved by an admin."
4087
  msgstr "ترسل عندما يتم نشر الإعلان أو الموافقة عليه من طرف المدير."
4088
 
4089
- #: core/class-settings.php:407
4090
  msgctxt "admin settings"
4091
  msgid "Listing's URL"
4092
  msgstr "عنوان URL الإعلان"
4093
 
4094
- #: core/class-settings.php:411
4095
  msgctxt "admin settings"
4096
  msgid "Listing Contact Message"
4097
  msgstr "رسالة اتصال الإعلان"
4098
 
4099
- #: core/class-settings.php:415
4100
  msgctxt "admin settings"
4101
  msgid ""
4102
  "Sent to listing owners when someone uses the contact form on their listing "
@@ -4105,46 +4142,46 @@ msgstr ""
4105
  "ترسل إلى مالكي الإعلانات عندما يستخدم شخص ما نموذج جهة الاتصال في صفحات "
4106
  "الإعلانات الخاصة بهم."
4107
 
4108
- #: core/class-settings.php:425
4109
  msgctxt "admin settings"
4110
  msgid "Payment related"
4111
  msgstr "المدفوعات ذات الصلة"
4112
 
4113
- #: core/class-settings.php:442
4114
  msgctxt "admin settings"
4115
  msgid "Payment abandoned reminder message"
4116
  msgstr "رسالة تذكير بالتخلي عن الدفع"
4117
 
4118
- #: core/class-settings.php:446
4119
  msgctxt "admin settings"
4120
  msgid "Sent some time after a pending payment is abandoned by users."
4121
  msgstr "ترسل أحيانا بعد أن يتخلي الأعضاء عن الدفعة المنتظرة."
4122
 
4123
- #: core/class-settings.php:448
4124
  msgctxt "admin settings"
4125
  msgid "Checkout URL link"
4126
  msgstr "رابط URL إتمام الشراء"
4127
 
4128
- #: core/class-settings.php:454
4129
  msgctxt "admin settings"
4130
  msgid "Renewal Reminders"
4131
  msgstr "رسائل تذكير التجديد"
4132
 
4133
- #: core/class-settings.php:457
4134
  msgctxt "admin settings"
4135
  msgid ""
4136
  "This section refers only to the text of the renewal/expiration notices. You "
4137
  "can also <a>configure when the e-mails are sent</a>."
4138
  msgstr ""
4139
- "هذا القسم يحيل فقط إلى نص إشعارات التجديد/انتهاء التاريخ. يمكنك أيضا <a>إعداد "
4140
- "متى يتم إرسال رسائل البريد الإلكتروني</a>."
4141
 
4142
- #: core/class-settings.php:461
4143
  msgctxt "admin settings"
4144
  msgid "Pending expiration e-mail message"
4145
  msgstr "رسالة البريد الإلكتروني أثناء انتظار انتهاء التاريخ"
4146
 
4147
- #: core/class-settings.php:465
4148
  msgctxt "settings"
4149
  msgid ""
4150
  "Sent some time before the listing expires. Applies to non-recurring renewals "
@@ -4153,67 +4190,68 @@ msgstr ""
4153
  "ترسل أحيانا قبل انتهاء تاريخ الإعلان. تنطبق على عمليات التجديد غير المتكررة "
4154
  "فقط."
4155
 
4156
- #: core/class-settings.php:466 core/class-settings.php:479
4157
- #: core/class-settings.php:492 core/class-settings.php:505
4158
- #: core/class-settings.php:518
4159
  msgctxt "settings"
4160
  msgid "Listing's name (with link)"
4161
  msgstr "إسم الإعلان (مع رابط)"
4162
 
4163
- #: core/class-settings.php:467 core/class-settings.php:480
4164
- #: core/class-settings.php:493 core/class-settings.php:506
4165
- #: core/class-settings.php:519
4166
  msgctxt "settings"
4167
  msgid "Author's name"
4168
  msgstr "إسم الكاتب"
4169
 
4170
- #: core/class-settings.php:468 core/class-settings.php:481
4171
- #: core/class-settings.php:520
4172
  msgctxt "settings"
4173
  msgid "Expiration date"
4174
  msgstr "تاريخ انتهاء التاريخ"
4175
 
4176
- #: core/class-settings.php:469
4177
  msgctxt "settings"
4178
  msgid "Category that is going to expire"
4179
  msgstr "التصنيف الذي سوف ينتهي"
4180
 
4181
- #: core/class-settings.php:470 core/class-settings.php:483
4182
- #: core/class-settings.php:522
4183
  msgctxt "settings"
4184
  msgid "Link to renewal page"
4185
  msgstr "رابط إلى صفحة التجديد"
4186
 
4187
- #: core/class-settings.php:471 core/class-settings.php:484
4188
- #: core/class-settings.php:496 core/class-settings.php:509
4189
- #: core/class-settings.php:523
4190
  msgctxt "settings"
4191
  msgid "Link to your site"
4192
  msgstr "رابط إلى موقعك"
4193
 
4194
- #: core/class-settings.php:474
4195
  msgctxt "admin settings"
4196
  msgid "Listing Renewal e-mail message"
4197
  msgstr "رسالة البريد الإلكتروني لتجديد الإعلان"
4198
 
4199
- #: core/class-settings.php:478
4200
  msgctxt "settings"
4201
  msgid ""
4202
- "Sent at the time of listing expiration. Applies to non-recurring renewals only."
 
4203
  msgstr ""
4204
  "ترسل وقت انتهاء تاريخ الإعلان. تنطبق على عمليات التجديد غير المتكررة فقط."
4205
 
4206
- #: core/class-settings.php:482 core/class-settings.php:521
4207
  msgctxt "settings"
4208
  msgid "Category that expired"
4209
  msgstr "التصنيف الذي انتهى وقته"
4210
 
4211
- #: core/class-settings.php:487
4212
  msgctxt "admin settings"
4213
  msgid "Listing auto-renewal reminder (recurring payments)"
4214
  msgstr "تذكير بالتجديد التلقائي للإعلان (الدفعات المتكررة)"
4215
 
4216
- #: core/class-settings.php:491
4217
  msgctxt "settings"
4218
  msgid ""
4219
  "Sent some time before the listing is auto-renewed. Applies to recurring "
@@ -4222,44 +4260,44 @@ msgstr ""
4222
  "ترسل أحيانا قبل التجديد التلقائي للإعلان. تنطبق على عمليات التجديد المتكررة "
4223
  "فقط."
4224
 
4225
- #: core/class-settings.php:494 core/class-settings.php:508
4226
  msgctxt "settings"
4227
  msgid "Renewal date"
4228
  msgstr "تاريخ التجديد"
4229
 
4230
- #: core/class-settings.php:495
4231
  msgctxt "settings"
4232
  msgid "Category that is going to be renewed"
4233
  msgstr "التصنيف الذي سيتم تجديده"
4234
 
4235
- #: core/class-settings.php:497
4236
  msgctxt "settings"
4237
  msgid "Link to manage subscriptions"
4238
  msgstr "رابط لإدارة الاشتراكات"
4239
 
4240
- #: core/class-settings.php:500
4241
  msgctxt "admin settings"
4242
  msgid "Listing Renewal e-mail message (recurring payments)"
4243
  msgstr "رسالة البريد الإلكتروني لتجديد الإعلان (الدفعات المتكررة)"
4244
 
4245
- #: core/class-settings.php:504
4246
  msgctxt "settings"
4247
  msgid ""
4248
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4249
  msgstr ""
4250
  "ترسل بعد التجديد التلقائي للإعلان. تنطبق على عمليات التجديد المتكررة فقط."
4251
 
4252
- #: core/class-settings.php:507
4253
  msgctxt "settings"
4254
  msgid "Renewed category"
4255
  msgstr "تم تجديد التصنيف"
4256
 
4257
- #: core/class-settings.php:513
4258
  msgctxt "admin settings"
4259
  msgid "Renewal reminder e-mail message"
4260
  msgstr "رسالة البريد الإلكتروني للتذكير بالتجديد"
4261
 
4262
- #: core/class-settings.php:517
4263
  msgctxt "settings"
4264
  msgid ""
4265
  "Sent some time after listing expiration and when no renewal has occurred. "
@@ -4268,196 +4306,196 @@ msgstr ""
4268
  "ترسل أحيانا بعد انتهاء تاريخ الإعلان وحينما لا يتم التجديد. تنطبق على عمليات "
4269
  "التجديد المتكررة وغير المتكررة."
4270
 
4271
- #: core/class-settings.php:527
4272
  msgctxt "admin settings"
4273
  msgid "Payment"
4274
  msgstr "الدفع"
4275
 
4276
- #: core/class-settings.php:528
4277
  msgctxt "admin settings"
4278
  msgid "Payment Settings"
4279
  msgstr "إعدادات الدفع"
4280
 
4281
- #: core/class-settings.php:531
4282
  msgctxt "admin settings"
4283
  msgid "Turn On payments?"
4284
  msgstr "تشغيل الدفعات؟"
4285
 
4286
- #: core/class-settings.php:533
4287
  msgctxt "admin settings"
4288
  msgid "Put payment gateways in test mode?"
4289
  msgstr "وضع بوابات الدفع في وضع الاختبار؟"
4290
 
4291
- #: core/class-settings.php:538
4292
  msgctxt "admin settings"
4293
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4294
  msgstr "تنفيذ إنهاء الشراء على الإصدار الآمن (HTTPS) لموقع الويب الخاص بك؟"
4295
 
4296
- #: core/class-settings.php:541
4297
  msgctxt "admin settings"
4298
  msgid ""
4299
  "Recommended for added security. For this to work you need to enable HTTPS on "
4300
  "your server and <a>obtain an SSL certificate</a>."
4301
  msgstr ""
4302
- "موصى به لأمن أكثر. لكي يعمل هذا أنت بحاجة إلى تمكين HTTPS على الخادم الخاص بك "
4303
- "و <a>الحصول على شهادة SSL</a>."
4304
 
4305
- #: core/class-settings.php:545
4306
  msgctxt "admin settings"
4307
  msgid "Currency Code"
4308
  msgstr "رمز العملة"
4309
 
4310
- #: core/class-settings.php:547
4311
  msgctxt "admin settings"
4312
  msgid "Australian Dollar (AUD)"
4313
  msgstr "الدولار الأسترالي (AUD)"
4314
 
4315
- #: core/class-settings.php:548
4316
  msgctxt "admin settings"
4317
  msgid "Brazilian Real (BRL)"
4318
  msgstr "الريال البرازيلي (BRL)"
4319
 
4320
- #: core/class-settings.php:549
4321
  msgctxt "admin settings"
4322
  msgid "Canadian Dollar (CAD)"
4323
  msgstr "الدولار الكندي (CAD)"
4324
 
4325
- #: core/class-settings.php:550
4326
  msgctxt "admin settings"
4327
  msgid "Czech Koruna (CZK)"
4328
  msgstr "الكورونا التشيكية (CZK)"
4329
 
4330
- #: core/class-settings.php:551
4331
  msgctxt "admin settings"
4332
  msgid "Danish Krone (DKK)"
4333
  msgstr "الكرونة الدانماركية (DKK)"
4334
 
4335
- #: core/class-settings.php:552
4336
  msgctxt "admin settings"
4337
  msgid "Euro (EUR)"
4338
  msgstr "اليورو (EUR)"
4339
 
4340
- #: core/class-settings.php:553
4341
  msgctxt "admin settings"
4342
  msgid "Hong Kong Dollar (HKD)"
4343
  msgstr "دولار هونج كونج (HKD)"
4344
 
4345
- #: core/class-settings.php:554
4346
  msgctxt "admin settings"
4347
  msgid "Hungarian Forint (HUF)"
4348
  msgstr "الفورنت الهنغاري (HUF)"
4349
 
4350
- #: core/class-settings.php:555
4351
  msgctxt "admin settings"
4352
  msgid "Israeli New Shequel (ILS)"
4353
  msgstr "الشكيل الإسرائيلي الجديد (ILS)"
4354
 
4355
- #: core/class-settings.php:556
4356
  msgctxt "admin settings"
4357
  msgid "Japanese Yen (JPY)"
4358
  msgstr "الين الياباني (JPY)"
4359
 
4360
- #: core/class-settings.php:557
4361
  msgctxt "admin settings"
4362
  msgid "Malasian Ringgit (MYR)"
4363
  msgstr "الرينغيت الماليزي (MYR)"
4364
 
4365
- #: core/class-settings.php:558
4366
  msgctxt "admin settings"
4367
  msgid "Mexican Peso (MXN)"
4368
  msgstr "بيزو مكسيكي (MXN)"
4369
 
4370
- #: core/class-settings.php:559
4371
  msgctxt "admin settings"
4372
  msgid "Norwegian Krone (NOK)"
4373
  msgstr "الكرون النرويجي (NOK)"
4374
 
4375
- #: core/class-settings.php:560
4376
  msgctxt "admin settings"
4377
  msgid "New Zealand Dollar (NZD)"
4378
  msgstr "الدولار النيوزيلندي (NZD)"
4379
 
4380
- #: core/class-settings.php:561
4381
  msgctxt "admin settings"
4382
  msgid "Philippine Peso (PHP)"
4383
  msgstr "بيزو فلبيني (PHP)"
4384
 
4385
- #: core/class-settings.php:562
4386
  msgctxt "admin settings"
4387
  msgid "Polish Zloty (PLN)"
4388
  msgstr "الزلوتي البولندي (PLN)"
4389
 
4390
- #: core/class-settings.php:563
4391
  msgctxt "admin settings"
4392
  msgid "Pound Sterling (GBP)"
4393
  msgstr "الجنيه الإسترليني (GBP)"
4394
 
4395
- #: core/class-settings.php:564
4396
  msgctxt "admin settings"
4397
  msgid "Singapore Dollar (SGD)"
4398
  msgstr "دولار سنغافوري (SGD)"
4399
 
4400
- #: core/class-settings.php:565
4401
  msgctxt "admin settings"
4402
  msgid "Swedish Krona (SEK)"
4403
  msgstr "الكرونا السويدية (SEK)"
4404
 
4405
- #: core/class-settings.php:566
4406
  msgctxt "admin settings"
4407
  msgid "Swiss Franc (CHF)"
4408
  msgstr "الفرنك السويسري (CHF)"
4409
 
4410
- #: core/class-settings.php:567
4411
  msgctxt "admin settings"
4412
  msgid "Taiwan Dollar (TWD)"
4413
  msgstr "الدولار التايواني (TWD)"
4414
 
4415
- #: core/class-settings.php:568
4416
  msgctxt "admin settings"
4417
  msgid "Thai Baht (THB)"
4418
  msgstr "البات التايلندي (THB)"
4419
 
4420
- #: core/class-settings.php:569
4421
  msgctxt "admin settings"
4422
  msgid "Turkish Lira (TRY)"
4423
  msgstr "الليرة التركية (TRY)"
4424
 
4425
- #: core/class-settings.php:570
4426
  msgctxt "admin settings"
4427
  msgid "U.S. Dollar (USD)"
4428
  msgstr "الدولار الأمريكي (USD)"
4429
 
4430
- #: core/class-settings.php:574
4431
  msgctxt "admin settings"
4432
  msgid "Currency Symbol"
4433
  msgstr "رمز العملة"
4434
 
4435
- #: core/class-settings.php:579
4436
  msgctxt "admin settings"
4437
  msgid "Currency symbol display"
4438
  msgstr "عرض رمز العملة"
4439
 
4440
- #: core/class-settings.php:583
4441
  msgctxt "admin settings"
4442
  msgid "Show currency symbol on the left"
4443
  msgstr "إظهار رمز العملة على اليسار"
4444
 
4445
- #: core/class-settings.php:584
4446
  msgctxt "admin settings"
4447
  msgid "Show currency symbol on the right"
4448
  msgstr "إظهار رمز العملة على اليمين"
4449
 
4450
- #: core/class-settings.php:585
4451
  msgctxt "admin settings"
4452
  msgid "Do not show currency symbol"
4453
  msgstr "عدم إظهار رمز العملة"
4454
 
4455
- #: core/class-settings.php:587
4456
  msgctxt "admin settings"
4457
  msgid "Thank you for payment message"
4458
  msgstr "رسالة الشكر على الدفع"
4459
 
4460
- #: core/class-settings.php:588
4461
  msgctxt "admin settings"
4462
  msgid ""
4463
  "Thank you for your payment. Your payment is being verified and your listing "
@@ -4466,124 +4504,125 @@ msgstr ""
4466
  "شكرا لك على الدفع. يتم الآن التحقق من الدفع وفحص إعلانك. يمكن أن تأخذ عملية "
4467
  "التحقق والمراجعة مدة 48 ساعة."
4468
 
4469
- #: core/class-settings.php:593
4470
  msgctxt "admin settings"
4471
  msgid "Ask users to come back for abandoned payments?"
4472
  msgstr "أطلب من الأعضاء العودة للمدفوعات المتخلى عنها؟"
4473
 
4474
- #: core/class-settings.php:596
4475
  msgctxt "admin settings"
4476
  msgid ""
4477
  "An abandoned payment is when a user attempts to place a listing and gets to "
4478
- "the end, but fails to complete their payment for the listing. This results in "
4479
- "listings that look like they failed, when the user simply didn't complete the "
4480
- "transaction. BD can remind them to come back and continue."
4481
  msgstr ""
4482
- "دفعة مهجورة هي عندما يحاول عضو وضع إعلان ويصل إلى النهاية، ولكنه يفشل في إتمام "
4483
- "الدفع للإعلان. هذا ينتج عنه أن الإعلانات تبدو وكأنها فشلت، وذلك عندما لا يكمل "
4484
- "العضو المعاملة ببساطة. دليل الأعمال يستطيع تذكيرهم للعودة والاستمرار."
4485
 
4486
- #: core/class-settings.php:602
4487
  msgctxt "admin settings"
4488
  msgid "Listing abandonment threshold (hours)"
4489
  msgstr "عتبة التخلي على الإعلان (ساعات)"
4490
 
4491
- #: core/class-settings.php:607
4492
  msgctxt "admin settings"
4493
  msgid ""
4494
  "Listings with pending payments are marked as abandoned after this time. You "
4495
  "can also <a>customize the e-mail</a> users receive."
4496
  msgstr ""
4497
- "الإعلانات مع الدفعات المعلقة تعد متخلى عنها بعد هذا الوقت. يمكنك أيضا <a>تخصيص "
4498
- "البريد الإلكتروني</a> الذي يتلقاه الأعضاء."
4499
 
4500
- #: core/class-settings.php:612
4501
  msgctxt "admin settings"
4502
  msgid "Themes"
4503
  msgstr "القوالب"
4504
 
4505
- #: core/class-settings.php:614
4506
  msgctxt "admin settings"
4507
  msgid "You can manage your themes on <a>Directory Themes</a>."
4508
  msgstr "يمكنك إدارة قوالبك في <a>قوالب الدليل</a>."
4509
 
4510
- #: core/class-settings.php:619
4511
  msgctxt "admin settings"
4512
  msgid "Theme button style"
4513
  msgstr "نمط زر القالب"
4514
 
4515
- #: core/class-settings.php:623
4516
  msgctxt "admin settings"
4517
  msgid "Use the BD theme style for BD buttons"
4518
  msgstr "إستخدم نمط قالب دليل الأعمال لأزرار دليل الأعمال"
4519
 
4520
- #: core/class-settings.php:624
4521
  msgctxt "admin settings"
4522
  msgid "Use the WP theme style for BD buttons"
4523
  msgstr "إستخدم نمط قالب ووردبريس لأزرار دليل الأعمال"
4524
 
4525
- #: core/class-settings.php:631
4526
  msgctxt "admin settings"
4527
  msgid "Image"
4528
  msgstr "الصورة"
4529
 
4530
- #: core/class-settings.php:632
4531
  msgctxt "admin settings"
4532
  msgid ""
4533
  "Any changes to these settings will affect new listings only. Existing "
4534
  "listings will not be affected. If you wish to change existing listings, you "
4535
- "will need to re-upload the image(s) on that listing after changing things here."
 
4536
  msgstr ""
4537
  "أية تغييرات على هذه الإعدادات سوف تؤثر على الإعلانات الجديدة فقط. الإعلانات "
4538
  "الموجودة لن تتأثر. إذا كنت ترغب في تغيير الإعلانات الحالية، تحتاج إلى إعادة "
4539
  "تحميل الصورة (الصور) إلى تلك الإعلانات بعد تغيير الأشياء هنا."
4540
 
4541
- #: core/class-settings.php:633
4542
  msgctxt "admin settings"
4543
  msgid "Image Settings"
4544
  msgstr "إعدادات الصورة"
4545
 
4546
- #: core/class-settings.php:634
4547
  msgctxt "admin settings"
4548
  msgid "Allow images?"
4549
  msgstr "السماح بالصور؟"
4550
 
4551
- #: core/class-settings.php:636
4552
  msgctxt "admin settings"
4553
  msgid "Min Image File Size (KB)"
4554
  msgstr "أقل حجم لملف الصورة (KB)"
4555
 
4556
- #: core/class-settings.php:637
4557
  msgctxt "admin settings"
4558
  msgid "Max Image File Size (KB)"
4559
  msgstr "أقصى حجم لملف الصورة (KB)"
4560
 
4561
- #: core/class-settings.php:639
4562
  msgctxt "admin settings"
4563
  msgid "Min image width (px)"
4564
  msgstr "أقل عرض للصورة (px)"
4565
 
4566
- #: core/class-settings.php:640
4567
  msgctxt "admin settings"
4568
  msgid "Min image height (px)"
4569
  msgstr "أقل ارتفاع للصورة (px)"
4570
 
4571
- #: core/class-settings.php:642
4572
  msgctxt "admin settings"
4573
  msgid "Max image width (px)"
4574
  msgstr "أقصى عرض للصورة (px)"
4575
 
4576
- #: core/class-settings.php:643
4577
  msgctxt "admin settings"
4578
  msgid "Max image height (px)"
4579
  msgstr "أقصى ارتفاع للصورة (px)"
4580
 
4581
- #: core/class-settings.php:645
4582
  msgctxt "admin settings"
4583
  msgid "Turn on thickbox/lightbox?"
4584
  msgstr "تشغيل thickbox/lightbox؟"
4585
 
4586
- #: core/class-settings.php:645
4587
  msgctxt "admin settings"
4588
  msgid ""
4589
  "Uncheck if it conflicts with other elements or plugins installed on your site"
@@ -4591,27 +4630,27 @@ msgstr ""
4591
  "قم بإلغاء التحديد إذا كان يتعارض مع العناصر الأخرى أو الإضافات المثبتة على "
4592
  "موقعك"
4593
 
4594
- #: core/class-settings.php:647
4595
  msgctxt "admin settings"
4596
  msgid "Thumbnails"
4597
  msgstr "الصور المصغرة"
4598
 
4599
- #: core/class-settings.php:648
4600
  msgctxt "admin settings"
4601
  msgid "Thumbnail width (px)"
4602
  msgstr "عرض الصور المصغرة (px)"
4603
 
4604
- #: core/class-settings.php:649
4605
  msgctxt "admin settings"
4606
  msgid "Thumbnail height (px)"
4607
  msgstr "ارتفاع الصورة المصغرة (px)"
4608
 
4609
- #: core/class-settings.php:652
4610
  msgctxt "admin settings"
4611
  msgid "Crop thumbnails to exact dimensions?"
4612
  msgstr "قطع الصور المصغرة للأبعاد المناسبة؟"
4613
 
4614
- #: core/class-settings.php:655
4615
  msgctxt "admin settings"
4616
  msgid ""
4617
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4619,159 +4658,159 @@ msgid ""
4619
  "match the specified width and their height will be adjusted proportionally. "
4620
  "Depending on the uploaded images, thumbnails may have different heights."
4621
  msgstr ""
4622
- "عند تمكين الصور ستطابق تماما الأبعاد أعلاه لكن جزءا من الصورة يمكن أن يقطع. في "
4623
- "حالة تعطيلها، سيتم تغيير حجم الصور المصغرة لمطابقة العرض المحدد وسيتم تعديل "
4624
- "الارتفاع بشكل متناسب. اعتماداً على الصور المرفوعة, قد تكون ارتفاعات الصور "
4625
- "المصغرة مختلفة."
4626
 
4627
- #: core/class-settings.php:661
4628
  msgctxt "admin settings"
4629
  msgid "Number of free images"
4630
  msgstr "عدد الصور المجانية"
4631
 
4632
- #: core/class-settings.php:666
4633
  msgctxt "admin settings"
4634
  msgid ""
4635
- "For paid listing images, configure that by adding or editing a <a>Fee Plan</a> "
4636
- "instead of this setting, which is ignored for paid listings."
4637
  msgstr ""
4638
- "بالنسبة لصور الإعلانات المدفوعة، قم بإعدادها بإضافة أو تحرير <a>رسوم الخطة</a> "
4639
- "بدلاً من هذا الإعداد، الذي هو تجاهل الإعلانات المدفوعة."
4640
 
4641
- #: core/class-settings.php:669
4642
  msgctxt "admin settings"
4643
  msgid "Use default picture for listings with no picture?"
4644
  msgstr "إستخدام الصورة الافتراضية للإعلانات التي بلا صورة؟"
4645
 
4646
- #: core/class-settings.php:670
4647
  msgctxt "admin settings"
4648
  msgid "Show Thumbnail on main listings page?"
4649
  msgstr "إظهار صورة مصغرة في صفحة الإعلانات الرئيسية؟"
4650
 
4651
- #: core/class-settings.php:699
4652
  msgctxt "admin settings"
4653
  msgid "User"
4654
  msgstr "عضو"
4655
 
4656
- #: core/class-settings.php:700
4657
  msgctxt "admin settings"
4658
  msgid "User registration date"
4659
  msgstr "تاريخ تسجيل العضو"
4660
 
4661
- #: core/class-settings.php:726
4662
  msgctxt "admin settings"
4663
  msgid ""
4664
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4665
  "not activated."
4666
  msgstr "تعذر نسخ إضافة التوافق أجاكس \"%s\". لم يتم تفعيل وضع التوافق."
4667
 
4668
- #: core/class-settings.php:734
4669
  msgctxt "admin settings"
4670
  msgid ""
4671
- "Could not activate AJAX Compatibility mode: the directory \"%s\" could not be "
4672
- "created."
4673
  msgstr "لا يمكن تفعيل وضع التوافق أجاكس: تعذر إنشاء المجلد \"%s\"."
4674
 
4675
- #: core/class-settings.php:743
4676
  msgctxt "admin settings"
4677
  msgid ""
4678
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4679
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4680
  msgstr ""
4681
- "تعذر إزالة \"إضافة دليل الأعمال – وحدة التوافق أجاكس\". المرجو إزالة الملف \"%s"
4682
- "\" يدوياً أو قم بإلغاء تفعيل الإضافة."
4683
 
4684
- #: core/class-settings.php:1063
4685
  msgctxt "settings"
4686
  msgid "Deactivate License"
4687
  msgstr "تعطيل الترخيص"
4688
 
4689
- #: core/class-settings.php:1065
4690
  msgctxt "settings"
4691
  msgid "Deactivating license..."
4692
  msgstr "ترخيص معطل..."
4693
 
4694
- #: core/class-settings.php:1068
4695
  msgctxt "settings"
4696
  msgid "Activate License"
4697
  msgstr "تفعيل الترخيص"
4698
 
4699
- #: core/class-settings.php:1070
4700
  msgctxt "settings"
4701
  msgid "Activating license..."
4702
  msgstr "ترخيص مفعل..."
4703
 
4704
- #: core/class-settings.php:1093
4705
  msgctxt "admin settings"
4706
  msgid "Valid placeholders: %s"
4707
  msgstr "العناصر النائبة صالحة: %s"
4708
 
4709
- #: core/class-settings.php:1127
4710
  msgctxt "settings email"
4711
  msgid "Click to edit e-mail"
4712
  msgstr "إضغط لتعديل البريد الإلكتروني"
4713
 
4714
- #: core/class-settings.php:1128
4715
  msgctxt "settings email"
4716
  msgid "Click to edit"
4717
  msgstr "اضغط لتعديل"
4718
 
4719
- #: core/class-settings.php:1141
4720
  msgctxt "settings email"
4721
  msgid "E-Mail Subject"
4722
  msgstr "عنوان البريد الإلكتروني"
4723
 
4724
- #: core/class-settings.php:1152
4725
  msgctxt "settings email"
4726
  msgid "E-Mail Body"
4727
  msgstr "نص البريد الإلكتروني"
4728
 
4729
- #: core/class-settings.php:1163
4730
  msgctxt "settings email"
4731
  msgid "You can use the following placeholders:"
4732
  msgstr "يمكنك استخدام العناصر النائبة التالية:"
4733
 
4734
- #: core/class-settings.php:1186
4735
  msgctxt "settings email"
4736
  msgid "Preview e-mail"
4737
  msgstr "معاينة البريد الإلكتروني"
4738
 
4739
- #: core/class-settings.php:1187
4740
  msgctxt "settings email"
4741
  msgid "Cancel"
4742
  msgstr "إلغاء"
4743
 
4744
- #: core/class-settings.php:1188
4745
  msgctxt "settings email"
4746
  msgid "Save Changes"
4747
  msgstr "حفظ التعديلات"
4748
 
4749
- #: core/class-settings.php:1207
4750
  msgctxt "settings email"
4751
  msgid "Site title"
4752
  msgstr "إسم الموقع"
4753
 
4754
- #: core/class-settings.php:1210
4755
  msgctxt "settings email"
4756
  msgid "Site title (with link)"
4757
  msgstr "إسم الموقع (مع الرابط)"
4758
 
4759
- #: core/class-settings.php:1213
4760
  msgctxt "settings email"
4761
  msgid "Site address (with link)"
4762
  msgstr "عنوان الموقع (مع الرابط)"
4763
 
4764
- #: core/class-settings.php:1216
4765
  msgctxt "settings email"
4766
  msgid "Directory URL (with link)"
4767
  msgstr "رابط URL الدليل (مع الرابط)"
4768
 
4769
- #: core/class-settings.php:1219
4770
  msgctxt "settings email"
4771
  msgid "Current date"
4772
  msgstr "التاريخ الحالي"
4773
 
4774
- #: core/class-settings.php:1222
4775
  msgctxt "settings email"
4776
  msgid "Current time"
4777
  msgstr "الوقت الحالي"
@@ -4978,11 +5017,11 @@ msgstr "السماح لوسوم IFRAME في المحتوى؟"
4978
  #: core/fieldtypes/class-fieldtypes-textarea.php:56
4979
  msgctxt "admin form-fields"
4980
  msgid ""
4981
- "Enabling iframe support in your listings can allow users to execute arbitrary "
4982
- "scripts on a page if they want, which can possibly infect your site with "
4983
- "malware. We do NOT recommend using this setting UNLESS you are posting the "
4984
- "listings yourself and have sole control over the content. Are you sure you "
4985
- "want to enable this?"
4986
  msgstr ""
4987
  "تمكين دعم iframe في الإعلانات يسمح للأعضاء بتنفيذ سكربتات تعسفية على الصفحة "
4988
  "إذا كانوا يريدون، والتي ربما يمكن أن تصيب موقعك بالبرامج الضارة. لا نوصي "
@@ -5012,8 +5051,8 @@ msgstr "عرض محرر WYSIWYG في واجهة الموقع؟"
5012
  #: core/fieldtypes/class-fieldtypes-textarea.php:69
5013
  msgctxt "form-fields admin"
5014
  msgid ""
5015
- "<b>Warning:</b> Users can use this feature to get around your image limits in "
5016
- "fee plans."
5017
  msgstr ""
5018
  "<b>تحذير:</b> يمكن للأعضاء استخدام هذه الميزة للقيام بتحايل على قيود الصورة "
5019
  "الخاصة بك في رسوم الخطط.."
@@ -5037,6 +5076,11 @@ msgctxt "form-fields admin"
5037
  msgid "Apply \"the_content\" filter before displaying this field?"
5038
  msgstr "تطبيق عامل تصفية \"the_content\" قبل عرض هذا الحقل؟"
5039
 
 
 
 
 
 
5040
  #: core/fieldtypes/class-fieldtypes-textfield.php:5
5041
  msgctxt "form-fields api"
5042
  msgid "Textfield"
@@ -5112,116 +5156,116 @@ msgctxt "form-fields api"
5112
  msgid "Custom"
5113
  msgstr "تخصيص"
5114
 
5115
- #: core/form-fields.php:314
5116
  msgid "Business Name"
5117
  msgstr "الإسم"
5118
 
5119
- #: core/form-fields.php:316
5120
  msgid "Business Genre"
5121
  msgstr "التصنيف"
5122
 
5123
- #: core/form-fields.php:318
5124
  msgid "Short Business Description"
5125
  msgstr "وصف قصير"
5126
 
5127
- #: core/form-fields.php:320
5128
  msgid "Long Business Description"
5129
  msgstr "وصف مطول"
5130
 
5131
- #: core/form-fields.php:322
5132
  msgid "Business Website Address"
5133
  msgstr "عنوان الموقع"
5134
 
5135
- #: core/form-fields.php:324
5136
  msgid "Business Phone Number"
5137
  msgstr "رقم الهاتف"
5138
 
5139
- #: core/form-fields.php:326
5140
  msgid "Business Fax"
5141
  msgstr "رقم الفاكس"
5142
 
5143
- #: core/form-fields.php:328
5144
  msgid "Business Contact Email"
5145
  msgstr "البريد الإلكتروني"
5146
 
5147
- #: core/form-fields.php:330
5148
  msgid "Business Tags"
5149
  msgstr "الوسوم"
5150
 
5151
- #: core/form-fields.php:332
5152
  msgid "Business Address"
5153
  msgstr "العنوان"
5154
 
5155
- #: core/form-fields.php:334
5156
  msgid "ZIP Code"
5157
  msgstr "الرمز البريدي"
5158
 
5159
- #: core/form-fields.php:454
5160
  msgctxt "form-fields-api"
5161
  msgid "Email Validator"
5162
  msgstr "المصادقة على البريد الإلكتروني"
5163
 
5164
- #: core/form-fields.php:455
5165
  msgctxt "form-fields-api"
5166
  msgid "URL Validator"
5167
  msgstr "المصادقة على URL"
5168
 
5169
- #: core/form-fields.php:456
5170
  msgctxt "form-fields-api"
5171
  msgid "Whole Number Validator"
5172
  msgstr "المصادقة على رقم صحيح"
5173
 
5174
- #: core/form-fields.php:457
5175
  msgctxt "form-fields-api"
5176
  msgid "Decimal Number Validator"
5177
  msgstr "المصادقة على رقم عشري"
5178
 
5179
- #: core/form-fields.php:458
5180
  msgctxt "form-fields-api"
5181
  msgid "Date Validator"
5182
  msgstr "المصادقة على التاريخ"
5183
 
5184
- #: core/form-fields.php:465
5185
  msgctxt "form-fields-api validation"
5186
  msgid "Field"
5187
  msgstr "حقل"
5188
 
5189
- #: core/form-fields.php:481 core/form-fields.php:485
5190
  msgctxt "form-fields-api validation"
5191
  msgid "%s is required."
5192
  msgstr "%s مطلوب."
5193
 
5194
- #: core/form-fields.php:494 core/form-fields.php:501
5195
  msgctxt "form-fields-api validation"
5196
  msgid "%s is badly formatted. Valid URL format required. Include http://"
5197
  msgstr "%s مهيأ بشكل سيئ. المطلوب تنسيق URL صالح. يتضمن http://"
5198
 
5199
- #: core/form-fields.php:515
5200
  msgctxt "form-fields-api validation"
5201
  msgid "%s is badly formatted. Valid Email format required."
5202
  msgstr "%s مهيأ بشكل سيئ. المطلوب تنسيق بريد إلكتروني صالح."
5203
 
5204
- #: core/form-fields.php:521
5205
  msgctxt "form-fields-api validation"
5206
  msgid "%s must be a number. Decimal values are not allowed."
5207
  msgstr "%s يجب أن تكون عددا. لا يسمح بالقيم العشرية."
5208
 
5209
- #: core/form-fields.php:527
5210
  msgctxt "form-fields-api validation"
5211
  msgid "%s must be a number."
5212
  msgstr "%s يجب أن تكون عددا."
5213
 
5214
- #: core/form-fields.php:540
5215
  msgctxt "form-fields-api validation"
5216
  msgid "%s must be in the format %s."
5217
  msgstr "%s يجب أن يكون بتنسيق %s."
5218
 
5219
- #: core/form-fields.php:575
5220
  msgctxt "form-fields-api validation"
5221
  msgid "%s must be a valid date."
5222
  msgstr "%s يجب أن يكون تاريخاً صالحاً."
5223
 
5224
- #: core/form-fields.php:586
5225
  msgctxt "form-fields-api validation"
5226
  msgid "%s is invalid. Value most be one of %s."
5227
  msgstr "%s غير صالح. يجب أن تكون القيمة واحدة من %s."
@@ -5251,8 +5295,8 @@ msgstr "مفتاح المعاملة مفقود."
5251
  #: core/gateways-authorize-net.php:92
5252
  msgctxt "authorize-net"
5253
  msgid ""
5254
- "The payment gateway didn't accept your credit card or billing information. The "
5255
- "following reason was given: \"%s\"."
5256
  msgstr ""
5257
  "لم تقبل بوابة الدفع بطاقة الائتمان أو معلومات الفوترة الخاصة بك. وذلك للسبب "
5258
  "التالي: \"%s\"."
@@ -5360,96 +5404,96 @@ msgctxt "installer"
5360
  msgid "Default Fee"
5361
  msgstr "رسوم افتراضية"
5362
 
5363
- #: core/installer.php:485
5364
  msgctxt "installer"
5365
  msgid ""
5366
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
5367
- "incompatible with the current version of Business Directory. Please update the "
5368
- "Regions module."
5369
  msgstr ""
5370
  "تم تعطيل <b>إضافة دليل الأعمال - وحدة المناطق</b> لأنه غير متوافق مع الإصدار "
5371
  "الحالي من الإضافة. يرجى تحديث وحدة المناطق."
5372
 
5373
- #: core/installer.php:551
5374
  msgctxt "installer"
5375
  msgid "Cleaning up listing fees information... %d/%d"
5376
  msgstr "تنظيف معلومات رسوم الإعلانات...%d/%d"
5377
 
5378
- #: core/installer.php:601
5379
  msgctxt "installer"
5380
  msgid "Migrating previous transactions to new Payments API... %d/%d"
5381
  msgstr "نقل المعاملات السابقة إلى المدفوعات الجديدة API ...%d/%d"
5382
 
5383
- #: core/installer.php:630
5384
  msgctxt "installer"
5385
  msgid "Initial listing payment (BD < 3.4)"
5386
  msgstr "دفعة الإعلان الأولية (BD < 3.4)"
5387
 
5388
- #: core/installer.php:641
5389
  msgctxt "installer"
5390
  msgid "Listing edit payment (BD < 3.4)"
5391
  msgstr "دفعة تحرير الإعلان (BD < 3.4)"
5392
 
5393
- #: core/installer.php:662
5394
  msgctxt "installer"
5395
  msgid "Renewal fee \"%s\" for category \"%s\""
5396
  msgstr "رسوم التجديد \"%s\" للتصنيف \"%s\""
5397
 
5398
- #: core/installer.php:681
5399
  msgctxt "installer"
5400
  msgid "Listing upgrade to featured"
5401
  msgstr "الترقية الى إعلان مميز"
5402
 
5403
- #: core/installer.php:940
5404
  msgid "Business Directory - Manual Upgrade Required"
5405
  msgstr "دليل الأعمال - ترقية يدوية مطلوبة"
5406
 
5407
- #: core/installer.php:942
5408
  msgid ""
5409
- "Business Directory features are currently disabled because the plugin needs to "
5410
- "perform a manual upgrade before continuing."
5411
  msgstr ""
5412
- "تم تعطيل ميزات دليل الأعمال حاليا بسبب أن الإضافة تحتاج إلى إجراء ترقية يدوية "
5413
- "قبل المتابعة."
5414
 
5415
- #: core/installer.php:944
5416
  msgid "Perform Manual Upgrade"
5417
  msgstr "أداء ترقية يدوية"
5418
 
5419
- #: core/installer.php:960 core/installer.php:961 core/installer.php:972
5420
  msgid "Business Directory - Manual Upgrade"
5421
  msgstr "دليل الأعمال - ترقية يدوية"
5422
 
5423
- #: core/installer.php:976
5424
  msgid ""
5425
- "Business Directory features are currently disabled because the plugin needs to "
5426
- "perform a manual upgrade before it can be used."
5427
  msgstr ""
5428
- "تم تعطيل ميزات دليل الأعمال حاليا بسبب أن الإضافة تحتاج إلى إجراء ترقية يدوية "
5429
- "قبل أن تصلح للاستخدام."
5430
 
5431
- #: core/installer.php:978
5432
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5433
  msgstr "إضغط على \"إبدأ الترقية\" وانتظر حتى انتهاء العملية."
5434
 
5435
- #: core/installer.php:981
5436
  msgctxt "manual-upgrade"
5437
  msgid "Start Upgrade"
5438
  msgstr "بدء الترقية"
5439
 
5440
- #: core/installer.php:983
5441
  msgctxt "manual-upgrade"
5442
  msgid "Pause Upgrade"
5443
  msgstr "توقيف الترقية"
5444
 
5445
- #: core/installer.php:989
5446
  msgctxt "manual-upgrade"
5447
  msgid ""
5448
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
5449
  "available."
5450
  msgstr "تم إجراء الترقية بنجاح. إضافة دليل الأعمال متاحة الآن."
5451
 
5452
- #: core/installer.php:992
5453
  msgctxt "manual-upgrade"
5454
  msgid "Go to \"Directory Admin\""
5455
  msgstr "إنتقل إلى \"مشرف الدليل\""
@@ -5503,12 +5547,12 @@ msgstr "دليل الأعمال - مفتاح الترخيص منتهي"
5503
  #: core/licensing.php:258
5504
  msgctxt "licensing"
5505
  msgid ""
5506
- "The license key for <span class=\"module-name\">%s %s</span> has expired. The "
5507
- "module will continue to work but you will not receive any more updates until "
5508
- "the license is renewed."
5509
  msgstr ""
5510
- "انتهت صلاحية مفتاح الترخيص <span class=\"module-name\">%s %s</span>. سوف يستمر "
5511
- "عمل الوحدة ولكن لن تتلقى أي مزيد من التحديثات حتى يتم تجديد الترخيص."
5512
 
5513
  #: core/licensing.php:262
5514
  msgctxt "licensing"
@@ -5528,9 +5572,10 @@ msgstr "لا يمكن إلغاء الترخيص: %s."
5528
  #: core/payment.php:91
5529
  msgctxt "payments-api"
5530
  msgid ""
5531
- "You are offering featured listings but have payments turned off. Go to <a href="
5532
- "\"%s\">Manage Options - Payment</a> to change the payment settings. Until you "
5533
- "change this, the <i>Upgrade to Featured</i> option will be disabled."
 
5534
  msgstr ""
5535
  "أنت تقدم إعلانات مميزة ولكن المدفوعات معطلة. إذهب إلى <a href=\"%s\">إدارة "
5536
  "الخيارات - الدفع</a> لتغيير إعدادات الدفع. حتى تقوم بتغيير ذلك، سيتم تعطيل "
@@ -5539,25 +5584,25 @@ msgstr ""
5539
  #: core/payment.php:109
5540
  msgctxt "payments-api"
5541
  msgid ""
5542
- "The <b>%s</b> gateway is active but not properly configured. The gateway won't "
5543
- "be available until the following problems are fixed: <b>%s</b>. <br/> Check "
5544
- "the <a href=\"%s\">payment settings</a>."
5545
  msgstr ""
5546
- "البوابة <b>%s</b> مفعلة ولكن لم يتم إعدادها بشكل صحيح. البوابة لن تكون متوفرة "
5547
- "حتى يتم إصلاح المشاكل التالية <b>%s</b>.<br/> تحقق من <a href=\"%s\">إعدادات "
5548
- "دفع</a> ."
5549
 
5550
  #: core/payment.php:119
5551
  msgctxt "admin"
5552
  msgid ""
5553
- "You have payments turned on but no gateway is active and properly configured. "
5554
- "Go to <a href=\"%s\">Manage Options - Payment</a> to change the payment "
5555
- "settings. Until you change this, the directory will operate in <i>Free Mode</"
5556
- "i>."
5557
  msgstr ""
5558
- "لديك مدفوعات مشغلة ولكن لا توجد بوابة مفعلة ومعدة بشكل صحيح. إذهب إلى <a href="
5559
- "\"%s\">إدارة الخيارات - الدفع</a> لتغيير إعدادات الدفع. حتى تقوم بتغيير ذلك، "
5560
- "فإن الدليل سيعمل بـ <i>الوضع المجاني.</i>"
5561
 
5562
  #: core/payment.php:123
5563
  msgid ""
@@ -5582,13 +5627,13 @@ msgstr ""
5582
 
5583
  #: core/payment.php:135
5584
  msgid ""
5585
- "You have payments enabled but there are no fees available. Users won't be able "
5586
- "to post listings. Please <a href=\"fees\">create some fees</a> or <a href="
5587
- "\"settings\">configure the Directory</a> to operate in \"Free Mode\"."
5588
  msgstr ""
5589
- "المدفوعات ممكَّنة لديك ولكن ليس هناك أي رسوم متاحة. الأعضاء لن يكونوا قادرين على "
5590
- "إضافة إعلانات. يرجى <a href=\"fees\">إنشاء بعض الرسوم</a> أو <a href=\"settings"
5591
- "\">إعداد الدليل</a> للعمل في \"الوضع المجاني\"."
5592
 
5593
  #: core/payment.php:169
5594
  msgctxt "payments-api"
@@ -5633,9 +5678,9 @@ msgstr ""
5633
  #: core/payment.php:434
5634
  msgctxt "payments"
5635
  msgid ""
5636
- "The payment has been rejected by the payment gateway. Please contact the site "
5637
- "administrator if you think there is an error or click \"Change Payment Method"
5638
- "\" to select another payment method and try again."
5639
  msgstr ""
5640
  "تم رفض الدفع عن طريق بوابة الدفع. يرجى الاتصال بمدير الموقع إذا كنت تعتقد أن "
5641
  "هناك خطأ أو إضغط فوق \"تغيير طريقة الدفع\" لتحديد طريقة دفع أخرى وحاول مرة "
@@ -5649,8 +5694,8 @@ msgstr "تغيير طريقة الدفع"
5649
  #: core/payment.php:437
5650
  msgctxt "payments"
5651
  msgid ""
5652
- "The payment has been rejected by the payment gateway. Please contact the site "
5653
- "administrator if you think there is an error."
5654
  msgstr ""
5655
  "تم رفض الدفع عن طريق بوابة الدفع. يرجى الاتصال بمدير الموقع إذا كنت تعتقد أن "
5656
  "هناك خطأ."
@@ -5701,8 +5746,8 @@ msgid ""
5701
  "Your current listings are shown below. To edit a listing click the edit "
5702
  "button. To delete a listing click the delete button."
5703
  msgstr ""
5704
- "أدناه توجد إعلاناتك الحالية. لتحرير إعلان ما إضغط على زر تحرير. لحذف إعلان ما "
5705
- "إضغط على زر حذف."
5706
 
5707
  #: core/templates/manage_listings.tpl.php:6 templates/manage-listings.tpl.php:6
5708
  msgctxt "templates"
@@ -5732,16 +5777,16 @@ msgid "No listing categories found."
5732
  msgstr "لم يتم العثور على تصنيفات الإعلانات."
5733
 
5734
  #: core/templates-ui.php:185
5735
- msgid "Submit A Listing"
5736
- msgstr "إضافة إعلان"
5737
 
5738
  #: core/templates-ui.php:191
5739
- msgid "View Listings"
5740
- msgstr "مشاهدة الإعلانات"
5741
 
5742
  #: core/templates-ui.php:197
5743
- msgid "Directory"
5744
- msgstr "الدليل"
5745
 
5746
  #: core/templates-ui.php:224
5747
  msgctxt "templates"
@@ -5768,29 +5813,30 @@ msgctxt "sort"
5768
  msgid "(Reset)"
5769
  msgstr "(إعادة تعيين)"
5770
 
5771
- #: core/themes.php:625
5772
  msgctxt "themes"
5773
  msgid "ZIP file is not a valid BD theme file."
5774
  msgstr "ملف الضغط ZIP ليس ملف قالب دليل الأعمال صالح."
5775
 
5776
- #: core/themes.php:631
5777
  msgctxt "themes"
5778
  msgid "Could not create themes directory."
5779
  msgstr "تعذر إنشاء مجلد القوالب."
5780
 
5781
- #: core/themes.php:639
5782
  msgctxt "themes"
5783
  msgid "Could not remove previous theme directory \"%s\"."
5784
  msgstr "تعذر إزالة مجلد القالب السابق \"%s\"."
5785
 
5786
- #: core/themes.php:645
5787
  msgctxt "themes"
5788
  msgid "Could not move new theme into theme directory."
5789
  msgstr "تعذر نقل القالب الجديد الى مجلد القالب."
5790
 
5791
  #: core/utils.php:106
5792
  msgctxt "utils"
5793
- msgid "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
 
5794
  msgstr ""
5795
  "تجاوزت البيانات التي تم نشرها الحد الأقصى لإعدادات PHP. أنظر توجيه "
5796
  "\"post_max_size\"."
@@ -5828,7 +5874,8 @@ msgstr "عرض الصورة (%s px) هو أقل من الحد الأدنى ل
5828
  #: core/utils.php:229
5829
  msgctxt "utils"
5830
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
5831
- msgstr "ارتفاع الصورة (%s px) هو أقل من الحد الأدنى للارتفاع المطلوب لـ %s px "
 
5832
 
5833
  #: core/utils.php:235
5834
  msgctxt "utils"
@@ -5838,7 +5885,8 @@ msgstr "عرض الصورة (%s px) هو أكبر من الحد الأقصى
5838
  #: core/utils.php:241
5839
  msgctxt "utils"
5840
  msgid "Image height (%s px) is greater than maximum required height of %s px."
5841
- msgstr "ارتفاع الصورة (%s px) هو أكبر من الحد الأقصى للارتفاع المطلوب لـ %s px "
 
5842
 
5843
  #: core/utils.php:255
5844
  msgctxt "utils"
@@ -5850,21 +5898,21 @@ msgctxt "templates"
5850
  msgid ""
5851
  "There are no categories assigned to the business directory yet. You need to "
5852
  "assign some categories to the business directory. Only admins can see this "
5853
- "message. Regular users are seeing a message that they cannot add their listing "
5854
- "at this time. Listings cannot be added until you assign categories to the "
5855
- "business directory."
5856
  msgstr ""
5857
- "لا توجد تصنيفات معينة إلى دليل الأعمال حتى الآن. تحتاج إلى تعيين بعض التصنيفات "
5858
- "إلى دليل الأعمال. المدراء فقط يمكن أن يروا هذه الرسالة. المستخدمين العاديين "
5859
- "يرون رسالة لا يمكن إضافة الإعلانات في هذا الوقت. لا يمكن إضافة الإعلانات حتى "
5860
- "تقوم بتعيين تصنيفات إلى دليل الأعمال."
5861
 
5862
  #: core/view-submit-listing.php:31
5863
  msgctxt "templates"
5864
  msgid ""
5865
- "Your listing cannot be added at this time. Please try again later. If this is "
5866
- "not the first time you see this warning, please ask the site administrator to "
5867
- "set up one or more categories inside the Directory."
5868
  msgstr ""
5869
  "لا يمكن إضافة الإعلان الخاصة بك في هذا الوقت. يرجى المحاولة مرة أخرى لاحقاً. "
5870
  "إذا كانت هذه ليست المرة الأولى التي ترى هذا التحذير، المرجو الطلب من مدير "
@@ -5887,7 +5935,8 @@ msgstr "إضافة إعلان"
5887
 
5888
  #: core/view-submit-listing.php:65
5889
  msgctxt "templates"
5890
- msgid "You are logged in as an administrator. Any payment steps will be skipped."
 
5891
  msgstr "لقد تم تسجيل دخولك كمدير. سيتم تخطي أي خطوات للدفع."
5892
 
5893
  #: core/view-submit-listing.php:221
@@ -5895,37 +5944,37 @@ msgctxt "templates"
5895
  msgid "Please select a fee option for the \"%s\" category."
5896
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
5897
 
5898
- #: core/view-submit-listing.php:289
5899
  msgctxt "templates"
5900
  msgid "Please agree to the Terms and Conditions."
5901
  msgstr "يرجى الموافقة على الشروط والأحكام."
5902
 
5903
- #: core/view-submit-listing.php:295
5904
  msgctxt "templates"
5905
  msgid "The reCAPTCHA wasn't entered correctly."
5906
  msgstr "لم يتم إدخال reCAPTCHA بشكل صحيح."
5907
 
5908
- #: core/view-submit-listing.php:312
5909
  msgctxt "templates"
5910
  msgid "Read our Terms and Conditions"
5911
  msgstr "إقرأ الشروط والأحكام الخاصة بنا"
5912
 
5913
- #: core/view-submit-listing.php:317
5914
  msgctxt "templates"
5915
  msgid "Terms and Conditions:"
5916
  msgstr "شروط وأحكام:"
5917
 
5918
- #: core/view-submit-listing.php:328
5919
  msgctxt "templates"
5920
  msgid "I agree to the Terms and Conditions"
5921
  msgstr "أوافق على الشروط والأحكام"
5922
 
5923
- #: core/view-submit-listing.php:478 core/views/upgrade_listing.php:49
5924
  msgctxt "submit"
5925
  msgid "Listing upgrade to featured"
5926
  msgstr "الترقية الى إعلان مميز"
5927
 
5928
- #: core/view-submit-listing.php:511
5929
  msgctxt "submit_state"
5930
  msgid "Invalid submit state."
5931
  msgstr "حالة إضافة غير صالحة"
@@ -5957,8 +6006,8 @@ msgstr ""
5957
  #: core/views/checkout.php:112
5958
  msgctxt "checkout"
5959
  msgid ""
5960
- "Your payment is being verified. This usually takes a few minutes but can take "
5961
- "up to 24 hours."
5962
  msgstr ""
5963
  "يتم الآن التحقق من الدفع الخاص بك. هذا عادة يستغرق بضع دقائق، لكن يمكن أن "
5964
  "يستغرق مدة تصل إلى 24 ساعة."
@@ -6032,12 +6081,17 @@ msgstr "إرسال رسالة إلى مالك الإعلان"
6032
  msgid "l F j, Y \\a\\t g:i a"
6033
  msgstr "l F j, Y \\a\\t g:i a"
6034
 
6035
- #: core/views/listing_contact.php:183
 
 
 
 
 
6036
  msgctxt "contact-message"
6037
  msgid "There was a problem encountered. Your message has not been sent"
6038
  msgstr "حدثت مشكلة . لم يتم إرسال الرسالة الخاصة بك."
6039
 
6040
- #: core/views/listing_contact.php:186
6041
  msgctxt "contact-message"
6042
  msgid "Return to listing."
6043
  msgstr "الرجوع إلى الإعلان."
@@ -6051,10 +6105,10 @@ msgid ""
6051
  "listings in the directory. Listings cannot be added until you assign "
6052
  "categories to the business directory."
6053
  msgstr ""
6054
- "لا توجد تصنيفات معينة إلى دليل الأعمال حتى الآن. تحتاج إلى تعيين بعض التصنيفات "
6055
- "إلى دليل الأعمال. المدراء فقط يمكن أن يروا هذه الرسالة. المستخدمين العاديين "
6056
- "يرون رسالة لا توجد إعلانات في الدليل. لا يمكن إضافة الإعلانات حتى تقوم بتعيين "
6057
- "تصنيفات إلى دليل الأعمال."
6058
 
6059
  #: core/views/main.php:9
6060
  msgctxt "templates"
@@ -6065,8 +6119,8 @@ msgstr "لا توجد حاليا إعلانات في الدليل."
6065
  msgctxt "templates"
6066
  msgid ""
6067
  "You have \"Hide Empty Categories\" on and some categories that don't have "
6068
- "listings in them. That means they won't show up on the front end of your site. "
6069
- "If you didn't want that, click <a>here</a> to change the setting."
6070
  msgstr ""
6071
  "قمت بـ \"إخفاء التصنيفات الفارغة\" وهناك بعض التصنيفات التي لا تحتوي على "
6072
  "إعلانات بداخلها. هذا يعني أنها لن تظهر على الواجهة الأمامية للموقع الخاص بك. "
@@ -6100,8 +6154,8 @@ msgstr "تم تعطيل تجديد الإعلان في هذه اللحظة. ير
6100
  #: core/views/renew_listing.php:16
6101
  msgctxt "renewal"
6102
  msgid ""
6103
- "Your renewal ID is invalid. Please use the URL you were given on the renewal e-"
6104
- "mail message."
6105
  msgstr ""
6106
  "معرف التجديد الخاص بك غير صالح. يرجى استخدام عنوان URL الذي أعطي لك في رسالة "
6107
  "التجديد بالبريد الإلكتروني."
@@ -6153,11 +6207,12 @@ msgstr "تاريخ انتهاء التاريخ:"
6153
  #: core/views/renew_listing.php:96
6154
  msgctxt "renew"
6155
  msgid ""
6156
- "However, if you want to cancel your subscription you can do that on this page. "
6157
- "When the renewal time comes you'll be able to change your settings again."
 
6158
  msgstr ""
6159
- "ومع ذلك، إذا كنت ترغب في إلغاء اشتراكك يمكنك عمل ذلك في هذه الصفحة. عندما يحين "
6160
- "وقت التجديد سوف تتمكن من تغيير الإعدادات الخاصة بك مرة أخرى."
6161
 
6162
  #: core/views/request_access_keys.php:17
6163
  msgctxt "request_access_keys"
@@ -6182,13 +6237,13 @@ msgstr "تم إرسال مفاتيح الوصول إلى عنوان بريدك
6182
  #: core/views/request_access_keys.php:32
6183
  msgctxt "request_access_keys"
6184
  msgid ""
6185
- "An error occurred while sending the access keys to your e-mail address. Please "
6186
- "try again."
6187
  msgstr ""
6188
- "حدث خطأ أثناء إرسال مفاتيح الوصول إلى عنوان بريدك الإلكتروني. المرجو المحاولة "
6189
- "مرة أخرى."
6190
 
6191
- #: core/views/search.php:6
6192
  msgctxt "views"
6193
  msgid "Find A Listing"
6194
  msgstr "العثور على إعلان"
@@ -6198,6 +6253,20 @@ msgctxt "views"
6198
  msgid "Submit A Listing"
6199
  msgstr "إضافة إعلان"
6200
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6201
  #: core/views/upgrade_listing.php:16
6202
  msgctxt "listing upgrade"
6203
  msgid "Invalid link followed."
@@ -6466,11 +6535,11 @@ msgstr ""
6466
  #: templates/delete-listing-confirm.tpl.php:12
6467
  msgctxt "delete listing"
6468
  msgid ""
6469
- "Please visit <a>Manage recurring payments</a> to review your current recurring "
6470
- "payments."
6471
  msgstr ""
6472
- "يرجى زيارة <a>إدارة المدفوعات المتكررة</a> لمراجعة المدفوعات المتكررة الحالية "
6473
- "الخاصة بك."
6474
 
6475
  #: templates/delete-listing-confirm.tpl.php:18
6476
  msgctxt "delete listing"
@@ -6523,14 +6592,20 @@ msgctxt "notify email"
6523
  msgid "(not published yet)"
6524
  msgstr "(لم تنشر بعد)"
6525
 
6526
- #: templates/email/listing-added.tpl.php:16
6527
- #: templates/email/listing-edited.tpl.php:16
 
 
 
 
 
 
6528
  msgctxt "notify email"
6529
  msgid "Categories"
6530
  msgstr "التصنيفات"
6531
 
6532
- #: templates/email/listing-added.tpl.php:19
6533
- #: templates/email/listing-edited.tpl.php:19
6534
  msgctxt "notify email"
6535
  msgid "Posted By"
6536
  msgstr "أضيفت بواسطة"
@@ -6545,11 +6620,11 @@ msgstr "تم تحرير إعلان في الدليل مؤخرا. يمكن الا
6545
  #: templates/email-access-keys.tpl.php:1
6546
  msgctxt "request_access_keys"
6547
  msgid ""
6548
- "Below you'll find the access keys for all the listings registered with your e-"
6549
- "mail address on our site."
6550
  msgstr ""
6551
- "ستجد أدناه مفاتيح الوصول لكافة الإعلانات القوائم مع عنوان بريدك الإلكتروني على "
6552
- "موقعنا."
6553
 
6554
  #: templates/email-access-keys.tpl.php:5
6555
  msgctxt "request_access_keys"
@@ -6569,8 +6644,8 @@ msgstr "عنوان الإعلان: "
6569
  #: templates/listing-contactform.tpl.php:16
6570
  msgctxt "templates"
6571
  msgid ""
6572
- "You are currently logged in as %s. Your message will be sent using your logged "
6573
- "in contact email."
6574
  msgstr ""
6575
  "أنت حاليا تسجل دخولك كـ %s. سيتم إرسال رسالتك باستخدام تسجيل دخولك في حساب "
6576
  "البريد الإلكتروني."
@@ -6605,6 +6680,21 @@ msgctxt "templates"
6605
  msgid "Upgrade listing to %s for %s."
6606
  msgstr "ترقية الإعلان الى %s لـ %s."
6607
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6608
  #: templates/manage-recurring-cancel.tpl.php:1
6609
  msgctxt "manage recurring"
6610
  msgid "Manage Recurring Payments - Cancel"
@@ -6746,12 +6836,12 @@ msgstr "مشاهدة"
6746
  msgctxt "templates"
6747
  msgid ""
6748
  "You are not currently logged in. Please login or register first. When "
6749
- "registering, you will receive an activation email. Be sure to check your spam "
6750
- "if you don't see it in your email within 60 minutes."
6751
  msgstr ""
6752
  "لم تسجل الدخول حاليا. المرجو تسجيل الدخول أو التسجيل أولاً. عند التسجيل، سوف "
6753
- "تتلقى رسالة بريد إلكتروني للتفعيل. يجب التأكد من مراجعة البريد المزعج الخاص بك "
6754
- "إذا لم تراه في بريدك الإلكتروني خلال 60 دقيقة."
6755
 
6756
  #: templates/parts/login-required.tpl.php:10
6757
  msgctxt "templates"
@@ -6787,8 +6877,8 @@ msgstr "مجموع"
6787
  msgctxt "templates"
6788
  msgid "We can not process your payment at this moment. Please try again later."
6789
  msgstr ""
6790
- "لا يمكن أن نقوم بمعالجة الدفع الخاص بك في هذه اللحظة. المرجو المحاولة مرة أخرى "
6791
- "لاحقاً."
6792
 
6793
  #: templates/renew-listing.tpl.php:3
6794
  msgctxt "templates"
@@ -6803,21 +6893,23 @@ msgstr "قم بإنهاء الشراء"
6803
  #: templates/renew-listing.tpl.php:10
6804
  msgctxt "templates"
6805
  msgid ""
6806
- "You are about to renew your listing \"%s\" publication inside category \"%s\"."
 
6807
  msgstr "أنت على وشك تجديد الإعلان \"%s\" النشر داخل التصنيف \"%s\"."
6808
 
6809
  #: templates/renew-listing.tpl.php:15
6810
  msgctxt "WPBDM"
6811
  msgid ""
6812
- "Please select a fee option or click \"Do not renew my listing\" to cancel your "
6813
- "renewal."
6814
  msgstr ""
6815
- "المرجو تحديد خيار رسم أو إضغط فوق \"عدم تجديد إعلاني\" لإلغاء التجديد الخاص بك."
 
6816
 
6817
  #: templates/renew-listing.tpl.php:22
6818
  #: templates/submit-listing/category-selection.tpl.php:8
6819
  #: templates/submit-listing/fee-selection.tpl.php:37
6820
- #: templates/submit-listing/images.tpl.php:38
6821
  #: templates/submit-listing/listing-fields.tpl.php:34
6822
  msgctxt "templates"
6823
  msgid "Continue"
@@ -6952,8 +7044,9 @@ msgstr "رفع %s ملف (ملفات)... المرجو الانتظار."
6952
  #: templates/submit-listing/images-upload-form.tpl.php:31
6953
  msgctxt "templates"
6954
  msgid ""
6955
- "Your image slots are all full at this time. You may click \"Continue\" if you "
6956
- "are done, or \"Delete Image\" to upload a new image in place of a current one."
 
6957
  msgstr ""
6958
  "أماكن الصورة الخاصة بك ممتلئة في هذا الوقت. يمكنك الضغط فوق \"متابعة\" إذا "
6959
  "كنت انتهيت، أو \"حذف الصورة\" لتحميل صورة جديدة بدلاً من الموجودة حاليا."
@@ -6965,13 +7058,25 @@ msgstr "أماكن الصورة المتاحة:"
6965
 
6966
  #: templates/submit-listing/images-upload-form.tpl.php:45
6967
  msgctxt "templates"
6968
- msgid "Min. file size:"
6969
- msgstr "أقل حجم الملف:"
6970
 
6971
- #: templates/submit-listing/images-upload-form.tpl.php:51
 
 
6972
  msgctxt "templates"
6973
- msgid "Max. file size:"
6974
- msgstr "أقصى حجم للملف:"
 
 
 
 
 
 
 
 
 
 
6975
 
6976
  #: templates/submit-listing/images.tpl.php:4
6977
  msgctxt "templates"
@@ -7007,17 +7112,17 @@ msgstr "العنوان"
7007
 
7008
  #: vendors/edd/EDD_SL_Plugin_Updater.php:178
7009
  msgid ""
7010
- "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox"
7011
- "\" href=\"%2$s\">View version %3$s details</a>."
7012
  msgstr ""
7013
  "هناك إصدار جديد من %1$s متاح. <a target=\"_blank\" class=\"thickbox\" href="
7014
  "\"%2$s\">مشاهدة تفاصيل النسخة %3$s</a>."
7015
 
7016
  #: vendors/edd/EDD_SL_Plugin_Updater.php:185
7017
  msgid ""
7018
- "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox"
7019
- "\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s\">update now</"
7020
- "a>."
7021
  msgstr ""
7022
  "هناك إصدار جديد من %1$s متاح. <a target=\"_blank\" class=\"thickbox\" href="
7023
  "\"%2$s\">مشاهدة تفاصيل النسخة %3$s</a> أو <a href=\"%4$s\">التحديث الآن</a>."
@@ -7039,7 +7144,8 @@ msgid ""
7039
  "Provides the ability to maintain a free or paid business directory on your "
7040
  "WordPress powered site."
7041
  msgstr ""
7042
- "يوفر القدرة للحفاظ على دليل أعمال مجاني أو مدفوع على موقعك المدعوم من ووردبريس."
 
7043
 
7044
  #. Author of the plugin/theme
7045
  msgid "D. Rodenbaugh"
@@ -7049,6 +7155,30 @@ msgstr "D. Rodenbaugh"
7049
  msgid "http://businessdirectoryplugin.com"
7050
  msgstr "http://businessdirectoryplugin.com"
7051
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7052
  #~ msgctxt "admin csv-import"
7053
  #~ msgid "Use spreadsheet information only."
7054
  #~ msgstr "استخدام جدول بيانات المعلومات فقط."
@@ -7134,8 +7264,8 @@ msgstr "http://businessdirectoryplugin.com"
7134
 
7135
  #~ msgctxt "google-wallet"
7136
  #~ msgid ""
7137
- #~ "For recurring payments to work you need to <a>specify a postback URL</a> in "
7138
- #~ "your Google Wallet settings."
7139
  #~ msgstr ""
7140
  #~ "Pour que les paiements récurrents fonctionnent, vous devez spécifier une "
7141
  #~ "<a> publication URL </a> dans vos paramètres Google Wallet."
@@ -7163,7 +7293,8 @@ msgstr "http://businessdirectoryplugin.com"
7163
 
7164
  #~ msgctxt "google-wallet"
7165
  #~ msgid "One time payment + recurring payment for renewal fees"
7166
- #~ msgstr "Paiement en une fois + paiement récurrent des frais de renouvellement"
 
7167
 
7168
  #~ msgctxt "google-wallet"
7169
  #~ msgid ""
@@ -7190,8 +7321,9 @@ msgstr "http://businessdirectoryplugin.com"
7190
  #~ msgstr "Les frais d'annonce doivent être un entier non-négatif."
7191
 
7192
  #~ msgid ""
7193
- #~ "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
7194
- #~ "supported by the gateway. All other fees will be charged as non-recurring."
 
7195
  #~ msgstr ""
7196
  #~ "En raison des limitations mensuels de Google Wallet (30 jours), les frais "
7197
  #~ "récurrents sont pris en charge par la passerelle. Tous les autres frais "
@@ -7208,8 +7340,8 @@ msgstr "http://businessdirectoryplugin.com"
7208
  #~ msgctxt "admin settings"
7209
  #~ msgid "Display search form when displaying search results?"
7210
  #~ msgstr ""
7211
- #~ "Afannoncer un formulaire de recherche lors de l'affichage des résultats de "
7212
- #~ "recherche?"
7213
 
7214
  #~ msgctxt "search"
7215
  #~ msgid "Return to Advanced Search"
@@ -7322,3 +7454,11 @@ msgstr "http://businessdirectoryplugin.com"
7322
  #~ msgctxt "admin settings"
7323
  #~ msgid "Paid first then free"
7324
  #~ msgstr "Payez pour en disposer gratuitement"
 
 
 
 
 
 
 
 
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 4.0.8\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-09-20 02:40:34+00:00\n"
8
+ "PO-Revision-Date: 2016-09-19 12:17-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language: ar\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.8.9\n"
16
+ "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
17
+ "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
 
20
  #: admin/class-admin-listings.php:40
29
  "its respective fee) is required in order to determine the features available "
30
  "to this listing, as well as handling renewals."
31
  msgstr ""
32
+ "هذا الإعلان لا يملك أي تصنيف معين. تصنيف واحد على الأقل (والرسوم الخاصة "
33
+ "به) مطلوب من أجل تحديد الميزات المتوفرة لهذا الإعلان، زائد التعامل مع تجديد "
34
  "الاشتراك."
35
 
36
  #: admin/class-admin-listings.php:138
124
  msgid "Renew Listing"
125
  msgstr "تجديد الإعلان"
126
 
127
+ #: admin/class-admin.php:102
128
+ msgid ""
129
+ "Preview is only available after you've saved the first draft. This is due\n"
130
+ "to how WordPress stores the data."
131
+ msgstr ""
132
+ "المعاينة متاحة فقط بعد أن تحفظ المسودة الأولى. ويرجع ذلك إلى طريقة حفظ "
133
+ "البيانات من طرف ووردبريس."
134
+
135
+ #: admin/class-admin.php:135
136
  msgctxt "drip pointer"
137
  msgid ""
138
+ "Find out how to create a compelling, thriving business directory from "
139
+ "scratch in this ridiculously actionable (and FREE) 5-part email course. Get "
140
+ "a FREE premium module just for signing up."
141
  msgstr ""
142
  "تعرف على كيفية إنشاء دليل أعمال مقنع ومزدهر انطلاقا من الصفر في هذه الدروس "
143
  "(مجانا) مكونة من 5 أجزاء (ترسل عبر البريد الإلكتروني). أحصل على وحدة ممتازة "
144
  "(premium module) مجانا بمجرد تسجيلك."
145
 
146
+ #: admin/class-admin.php:137
147
  msgctxt "drip pointer"
148
  msgid "Email Address:"
149
  msgstr "عنوان البريد الإلكتروني:"
150
 
151
+ #: admin/class-admin.php:143
152
  msgctxt "drip pointer"
153
  msgid "Want to know the Secrets of Building an Awesome Business Directory?"
154
  msgstr "هل تريد معرفة \"أسرار بناء\" \"دليل أعمال مدهش\"؟"
155
 
156
+ #: admin/class-admin.php:145
157
  msgctxt "drip pointer"
158
  msgid "Yes, please!"
159
  msgstr "نعم، من فضلك!"
160
 
161
+ #: admin/class-admin.php:147
162
  msgctxt "drip pointer"
163
  msgid "No, thanks"
164
  msgstr "لا، شكرًا"
165
 
166
+ #: admin/class-admin.php:164
167
  msgctxt "admin"
168
  msgid "Business Directory"
169
  msgstr "دليل الأعمال"
170
 
171
+ #: admin/class-admin.php:175
172
  msgctxt "admin"
173
  msgid "You're all set. Visit your new <a>Business Directory</a> page."
174
  msgstr "أنت مستعد. قم بزيارة صفحة <a>دليل الأعمال</a> الجديدة."
175
 
176
+ #: admin/class-admin.php:196
177
  msgctxt "drip pointer"
178
  msgid "Invalid e-mail address."
179
  msgstr "عنوان البريد الإلكتروني غير صالح!"
180
 
181
+ #: admin/class-admin.php:230
182
  msgctxt "admin menu"
183
  msgid "Business Directory Admin"
184
  msgstr "مدير دليل الأعمال"
185
 
186
+ #: admin/class-admin.php:231
187
  msgctxt "admin menu"
188
  msgid "Dir. Admin"
189
  msgstr "مدير الدليل"
190
 
191
+ #: admin/class-admin.php:231
192
  msgctxt "admin menu"
193
  msgid "Directory Admin"
194
  msgstr "مدير الدليل"
195
 
196
+ #: admin/class-admin.php:237 admin/class-admin.php:238
197
  msgctxt "admin menu"
198
  msgid "Add New Listing"
199
  msgstr "إضافة إعلان جديد"
200
 
201
+ #: admin/class-admin.php:243 admin/class-admin.php:244
202
  msgctxt "admin menu"
203
  msgid "Manage Options"
204
  msgstr "إدارة الخيارات"
205
 
206
+ #: admin/class-admin.php:249 admin/class-admin.php:250
207
  msgctxt "admin menu"
208
  msgid "Manage Fees"
209
  msgstr "إدارة الرسوم"
210
 
211
+ #: admin/class-admin.php:255 admin/class-admin.php:256
212
  msgctxt "admin menu"
213
  msgid "Manage Form Fields"
214
  msgstr "إدارة حقول الاستمارة"
215
 
216
+ #: admin/class-admin.php:261 admin/class-admin.php:262
217
  msgctxt "admin menu"
218
  msgid "Listings"
219
  msgstr "الإعلانات"
220
 
221
+ #: admin/class-admin.php:276 admin/class-admin.php:277
222
  msgctxt "admin menu"
223
  msgid "CSV Import"
224
  msgstr "استيراد CSV"
225
 
226
+ #: admin/class-admin.php:282 admin/class-admin.php:283
227
  msgctxt "admin menu"
228
  msgid "CSV Export"
229
  msgstr "تصدير CSV"
230
 
231
+ #: admin/class-admin.php:288 admin/class-admin.php:289
232
  msgctxt "admin menu"
233
  msgid "Debug"
234
  msgstr "تصحيح الأخطاء"
235
 
236
+ #: admin/class-admin.php:298
237
  msgctxt "admin menu"
238
  msgid "Main Menu"
239
  msgstr "القائمة الرئيسية"
240
 
241
+ #: admin/class-admin.php:309
242
  msgctxt "admin menu"
243
  msgid "Uninstall Business Directory Plugin"
244
  msgstr "حذف إضافة دليل الأعمال"
245
 
246
+ #: admin/class-admin.php:310
247
  msgctxt "admin menu"
248
  msgid "Uninstall"
249
  msgstr "حذف"
250
 
251
+ #: admin/class-admin.php:424
252
  #: admin/templates/listing-metabox-categories.tpl.php:69
253
  msgctxt "admin infometabox"
254
  msgid "never"
255
  msgstr "أبداً"
256
 
257
+ #: admin/class-admin.php:518
258
  msgctxt "admin"
259
  msgid "Dismiss this notice."
260
  msgstr "إخفاء هذا التنبيه."
261
 
262
+ #: admin/class-admin.php:546
263
  msgctxt "admin"
264
  msgid "The listing has been published."
265
  msgid_plural "The listings have been published."
270
  msgstr[4] "تم نشر الإعلانات."
271
  msgstr[5] "تم نشر الإعلانات."
272
 
273
+ #: admin/class-admin.php:564
274
  msgctxt "admin"
275
  msgid "The listing status has been set as paid."
276
  msgid_plural "The listings status has been set as paid."
281
  msgstr[4] "تم تعيين الإعلانات مدفوعة."
282
  msgstr[5] "تم تعيين الإعلانات مدفوعة."
283
 
284
+ #: admin/class-admin.php:570
285
  msgctxt "admin"
286
  msgid ""
287
  "Only invoices containing non-recurring items were marked as paid. Please "
311
  "فقط الفواتير التي تحتوي على البنود غير المتكررة تسجل كمدفوعة. المدفوعات "
312
  "المتكررة يجب إدارتها من خلال لوحة التحكم الخاصة بك."
313
 
314
+ #: admin/class-admin.php:589
315
  msgctxt "admin"
316
  msgid "The listing has been modified."
317
  msgid_plural "The listings have been modified."
322
  msgstr[4] "تم تعديل الإعلانات."
323
  msgstr[5] "تم تعديل الإعلانات."
324
 
325
+ #: admin/class-admin.php:602
326
  msgctxt "admin"
327
  msgid "The listing has been upgraded."
328
  msgid_plural "The listings have been upgraded."
333
  msgstr[4] "تمت ترقية الإعلانات."
334
  msgstr[5] "تمت ترقية الإعلانات."
335
 
336
+ #: admin/class-admin.php:614
337
  msgctxt "admin"
338
  msgid "The listing has been downgraded."
339
  msgid_plural "The listings have been downgraded."
344
  msgstr[4] "تم خفض اشتراك الإعلانات."
345
  msgstr[5] "تم خفض اشتراك الإعلانات."
346
 
347
+ #: admin/class-admin.php:625
348
  msgctxt "admin payments"
349
  msgid ""
350
  "The payment status was not changed. Recurring payments can't be manually "
351
  "approved. Please check your gateway's backend to see if the payment really "
352
  "went through."
353
  msgstr ""
354
+ "لم يتم تغيير حالة الدفع. لا يمكن الموافقة على المدفوعات المتكررة يدوياً. "
355
+ "الرجاء التحقق في لوحة التحكم الخاصة بك لمعرفة إذا كان الدفع ذهب حقاً من "
356
+ "خلالها."
357
 
358
+ #: admin/class-admin.php:630
359
  msgctxt "admin"
360
  msgid "The transaction has been approved."
361
  msgstr "تمت الموافقة على المعاملة."
362
 
363
+ #: admin/class-admin.php:640
364
  msgctxt "admin"
365
  msgid "The transaction has been rejected."
366
  msgstr "المعاملة رفضت."
367
 
368
+ #: admin/class-admin.php:646
369
  msgctxt "admin"
370
  msgid "The fee was successfully assigned."
371
  msgstr "تم تعيين الرسوم بنجاح."
372
 
373
+ #: admin/class-admin.php:655
374
  msgctxt "admin"
375
  msgid "Listing was renewed."
376
  msgid_plural "Listings were renewed."
381
  msgstr[4] "تم تجديد الإعلانات."
382
  msgstr[5] "تم تجديد الإعلانات."
383
 
384
+ #: admin/class-admin.php:662
385
  msgctxt "admin"
386
  msgid "Renewal email sent."
387
  msgstr "تم إرسال بريد التجديد."
388
 
389
+ #: admin/class-admin.php:696
390
  msgctxt "admin category id"
391
  msgid "ID"
392
  msgstr "المعرف"
393
 
394
+ #: admin/class-admin.php:698 admin/class-admin.php:704
395
  msgctxt "admin"
396
  msgid "Listing Count"
397
  msgstr "عدد الإعلانات"
398
 
399
+ #: admin/class-admin.php:813
400
  msgctxt "admin"
401
  msgid ""
402
  "<b>Business Directory Plugin</b> requires fields with the following "
405
  "<b>إضافة دليل الأعمال</b> تتطلب حقول مع المرتبطات التالية بالترتيب لكي تعمل "
406
  "بشكل صحيح: <b>%s</b>."
407
 
408
+ #: admin/class-admin.php:815
409
  msgctxt "admin"
410
  msgid ""
411
+ "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
412
+ "association in order to work correctly."
413
  msgstr ""
414
  "<b>إضافة دليل الأعمال</b> تتطلب حقل مع <b>%s</b> المرتبطات التالية بالترتيب "
415
  "لكي تعمل بشكل صحيح."
416
 
417
+ #: admin/class-admin.php:819
418
  msgctxt "admin"
419
  msgid ""
420
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
423
  "يمكنك إنشاء هذه الحقول المخصصة بنفسك داخل \"إدارة الحقول\" أو السماح لدليل "
424
  "الأعمال للقيام بذلك نيابة عنك تلقائياً."
425
 
426
+ #: admin/class-admin.php:823
427
  msgctxt "admin"
428
  msgid "Go to \"Manage Form Fields\""
429
  msgstr "إنتقل إلى \"إدارة حقول\""
430
 
431
+ #: admin/class-admin.php:826
432
  msgctxt "admin"
433
  msgid "Create these required fields for me"
434
  msgstr "إنشاء هذه الحقول المطلوبة نيابة عني"
435
 
436
+ #: admin/class-admin.php:835
437
  msgctxt "admin"
438
  msgid ""
439
  "<b>Business Directory Plugin</b> requires a page with the "
442
  "<b>إضافة دليل الأعمال</b> تتطلب صفحة فيها الكود القصير "
443
  "<tt>[businessdirectory]</tt> لكي تعمل بشكل صحيح."
444
 
445
+ #: admin/class-admin.php:837
446
  msgctxt "admin"
447
  msgid ""
448
+ "You can create this page by yourself or let Business Directory do this for "
449
+ "you automatically."
450
  msgstr ""
451
+ "يمكنك إنشاء هذه الصفحة بنفسك أو ترك دليل الأعمال القيام بذلك نيابة عنك "
452
+ "تلقائياً."
453
 
454
+ #: admin/class-admin.php:841
455
  msgctxt "admin"
456
  msgid "Create required pages for me"
457
  msgstr "إنشاء الصفحات المطلوب نيابة عني"
458
 
459
+ #: admin/class-admin.php:881
460
  msgctxt "admin compat"
461
  msgid "Installed: %s"
462
  msgstr "تم التنصيب: %s"
463
 
464
+ #: admin/class-admin.php:881
465
  msgctxt "admin compat"
466
  msgid "N/A"
467
  msgstr "N/A غير قابل للتطبيق"
468
 
469
+ #: admin/class-admin.php:884
470
  msgctxt "admin compat"
471
  msgid "Required: %s"
472
  msgstr "مطلوب: %s"
473
 
474
+ #: admin/class-admin.php:896
475
  msgctxt "admin compat"
476
  msgid ""
477
  "Business Directory has detected some incompatible premium module versions "
478
  "installed."
479
  msgstr ""
480
+ "الإضافة اكتشفت أن هناك إصدارات مثبتة لوحدة ممتازة (premium module) أو أكثر "
481
+ "غير متوافقة."
482
 
483
+ #: admin/class-admin.php:898
484
  msgctxt "admin compat"
485
  msgid ""
486
  "Please upgrade to the required versions indicated below to make sure "
489
  "الرجاء الترقية إلى الإصدارات المطلوبة المبينة أسفله للتأكد من أن كل شيء يعمل "
490
  "بشكل صحيح."
491
 
492
+ #: admin/class-admin.php:918
493
  msgctxt "admin"
494
  msgid ""
495
  "We noticed you want your Business Directory users to register before posting "
496
+ "listings, but Registration for your site is currently disabled. Go [here] "
497
+ "and check \"Anyone can register\" to make sure BD works properly."
498
  msgstr ""
499
  "لاحظنا أنك تريد من أعضاء دليل الأعمال التسجيل قبل نشر الإعلانات، ولكنك حاليا "
500
+ "تعطل التسجيل في موقعك. إذهب [هنا] واختر \"السماح بالتسجيل\" لجعل دليل "
501
+ "الأعمال يعمل بشكل صحيح."
502
 
503
  #: admin/class-listing-fields-metabox.php:21
504
  msgctxt "admin"
528
 
529
  #: admin/class-themes-admin.php:94
530
  msgctxt "admin themes"
531
+ msgid ""
532
+ "Business Directory Plugin - Your template overrides need to be reviewed!"
533
  msgstr "إضافة دليل الأعمال - تجاوز القالب الخاص بك يحتاج إلى مراجعة!"
534
 
535
  #: admin/class-themes-admin.php:96
544
  #: admin/class-themes-admin.php:98
545
  msgctxt "admin themes"
546
  msgid ""
547
+ "Because of this, your template overrides below have been disabled. You "
548
+ "should <a>review our documentation on customization</a> in order adjust your "
549
  "templates."
550
  msgstr ""
551
  "وبسبب هذا، تم تعطيل تجاوز القالب الخاص بك أدناه. يجب عليك <a>مراجعة وثائق "
573
  #: admin/class-themes-admin.php:205
574
  msgctxt "themes"
575
  msgid ""
576
+ "%s requires that you tag your existing fields to match some places we want "
577
+ "to put your data on the theme. Below are fields we think are missing."
578
  msgstr ""
579
  "%s يتطلب أن تضيف وسوم في الحقول الموجودة الخاصة بك لمطابقة بعض الأماكن لأننا "
580
  "نريد وضع البيانات الخاصة بك في القالب. وفيما يلي الحقول التي نظن أنها مفقودة."
620
  msgid "Could not contact licensing server"
621
  msgstr "لا يمكن الاتصال بخادم الترخيص"
622
 
623
+ #: admin/class-themes-admin.php:370 core/licensing.php:132
624
+ #: core/licensing.php:166
625
  msgctxt "licensing"
626
  msgid "License key is invalid"
627
  msgstr "مفتاح الترخيص غير صالح"
649
  #: admin/class-themes-admin.php:464
650
  msgctxt "themes"
651
  msgid "Activate your <a>license key</a> to use this theme."
652
+ msgstr "فعِّل <a>مفتاح الترخيص</a> الخاص بك لاستخدام هذا القالب."
653
 
654
  #: admin/csv-export.php:136
655
  msgctxt "admin csv-export"
688
 
689
  #: admin/csv-import.php:255
690
  msgid ""
691
+ "A valid temporary directory with write permissions is required for CSV "
692
+ "imports to function properly. Your server is using \"%s\" but this path does "
693
+ "not seem to be writable. Please consult with your host."
694
  msgstr ""
695
+ "مطلوب مجلد مؤقت صالح مع صلاحية الكتابة لاستيراد CSV لكي يعمل بشكل صحيح. "
696
+ "الخادم الخاص بك يستخدام \"%s\" ولكن هذا المسار لا يبدو أنه قابل للكتابة. "
697
+ "يرجى استشارة الاستضافة الخاص بك."
698
 
699
  #: admin/csv-import.php:289
700
  msgctxt "admin csv-import"
816
  msgid ""
817
  "This is the default free plan for your directory. You can't delete it and "
818
  "it's always free, but you can edit the name and other settings. It's only "
819
+ "available when the directory is in Free mode. You can always create other "
820
+ "fee plans, including ones for 0.00 (free) if you wish."
821
  msgstr ""
822
  "هذه هي الخطة الافتراضية المجانية للدليل الخاص بك. لا يمكنك حذفه، وهي دائما "
823
+ "مجانية، ولكن يمكنك تعديل الإسم وإعدادات أخرى. إنه يتوفر فقط عندما يكون "
824
+ "الدليل في الوضع المجاني. ويمكنك دائماً إنشاء خطط رسوم أخرى، بما في ذلك تلك "
825
+ "الخاصة بـ 0.00 (مجاناً) إذا كنت ترغب."
826
 
827
  #: admin/fees.php:187
828
  msgctxt "fees admin"
1006
  msgid "In Listing"
1007
  msgstr "في الإعلان"
1008
 
1009
+ #: admin/form-fields.php:175
 
 
 
 
 
 
 
 
 
 
 
1010
  msgctxt "form-fields admin"
1011
  msgid "Form Preview"
1012
  msgstr "معاينة الاستمارة"
1013
 
1014
+ #: admin/form-fields.php:176
1015
  msgctxt "form-fields admin"
1016
  msgid "← Return to \"Manage Form Fields\""
1017
  msgstr "← العودة إلى \"إدارة حقول الاستمارة\""
1018
 
1019
+ #: admin/form-fields.php:206
1020
  msgctxt "form-fields admin"
1021
  msgid "Form fields updated."
1022
  msgstr "تم تحديث الاستمارة."
1023
 
1024
+ #: admin/form-fields.php:222
1025
  msgctxt "form-fields admin"
1026
  msgid ""
1027
+ "<b>Important</b>: Since the \"<a>Display email address fields publicly?</a>"
1028
+ "\" setting is disabled, display settings below will not be honored and this "
1029
+ "field will not be displayed on the frontend. If you want e-mail addresses to "
1030
+ "show on the frontend, you can <a>enable public display of e-mails</a>."
1031
  msgstr ""
1032
+ "<b>هام</b>: نظرا لأن إعدادات \"<a>عرض حقول عنوان البريد الإلكتروني للعموم؟</"
1033
+ "a>\" معطلة، عرض الإعدادات أدناه لن يتم إظهاره ولن يتم عرض هذا الحقل على "
1034
+ "الواجهة. إذا كنت تريد إظهار عناوين البريد الإلكتروني في الواجهة، يمكنك "
1035
+ "<a>تمكين عرض البريد الإلكتروني للعموم</a>."
1036
 
1037
+ #: admin/form-fields.php:256
1038
  msgctxt "form-fields admin"
1039
  msgid "Field deleted."
1040
  msgstr "تم حذف الحقل."
1041
 
1042
+ #: admin/form-fields.php:272
1043
  msgctxt "form-fields admin"
1044
  msgid "Required fields created successfully."
1045
  msgstr "الحقول المطلوبة أنشئت بنجاح."
1046
 
1047
+ #: admin/form-fields.php:285
1048
  msgctxt "form-fields admin"
1049
  msgid "Title"
1050
  msgstr "العنوان"
1051
 
1052
+ #: admin/form-fields.php:286
1053
  msgctxt "form-fields admin"
1054
  msgid "Category"
1055
  msgstr "التصنيف"
1056
 
1057
+ #: admin/form-fields.php:287
1058
  msgctxt "form-fields admin"
1059
  msgid "Excerpt"
1060
  msgstr "مقتطف"
1061
 
1062
+ #: admin/form-fields.php:288
1063
  msgctxt "form-fields admin"
1064
  msgid "Content"
1065
  msgstr "المحتوى"
1066
 
1067
+ #: admin/form-fields.php:289
1068
  msgctxt "form-fields admin"
1069
  msgid "Tags"
1070
  msgstr "الوسوم"
1071
 
1072
+ #: admin/form-fields.php:290
1073
  msgctxt "form-fields admin"
1074
  msgid "Address"
1075
  msgstr "العنوان"
1076
 
1077
+ #: admin/form-fields.php:291
1078
  msgctxt "form-fields admin"
1079
  msgid "City"
1080
  msgstr "المدينة"
1081
 
1082
+ #: admin/form-fields.php:292
1083
  msgctxt "form-fields admin"
1084
  msgid "State"
1085
  msgstr "الولاية"
1086
 
1087
+ #: admin/form-fields.php:293
1088
  msgctxt "form-fields admin"
1089
  msgid "ZIP Code"
1090
  msgstr "الرمز البريدي"
1091
 
1092
+ #: admin/form-fields.php:294
1093
  msgctxt "form-fields admin"
1094
  msgid "FAX Number"
1095
  msgstr "رقم الفاكس"
1096
 
1097
+ #: admin/form-fields.php:295
1098
  msgctxt "form-fields admin"
1099
  msgid "Phone Number"
1100
  msgstr "رقم الهاتف"
1101
 
1102
+ #: admin/form-fields.php:296
1103
  msgctxt "form-fields admin"
1104
  msgid "Ratings Field"
1105
  msgstr "حقول التقييم"
1106
 
1107
+ #: admin/form-fields.php:297
1108
  msgctxt "form-fields admin"
1109
  msgid "Twitter"
1110
  msgstr "تويتر"
1111
 
1112
+ #: admin/form-fields.php:298
1113
  msgctxt "form-fields admin"
1114
  msgid "Website"
1115
  msgstr "موقع الأنترنيت"
1116
 
1117
+ #: admin/form-fields.php:319
1118
  msgctxt "form-fields admin"
1119
  msgid "Tags updated."
1120
  msgstr "تم تحديث الوسوم"
1206
  #: admin/templates/csv-export.tpl.php:9
1207
  msgctxt "admin csv-export"
1208
  msgid ""
1209
+ "An unknown error occurred during the export. Please make sure you have "
1210
+ "enough free disk space and memory available to PHP. Check your error logs "
1211
+ "for details."
1212
  msgstr ""
1213
  "حدث خطأ غير معروف أثناء عملية التصدير. الرجاء التأكد من أن لديك ما يكفي من "
1214
+ "المساحة الفارغة على القرص والذاكرة المتاحة إلى بي إتش بي. تحقق من سجلات "
1215
+ "الخطأ الخاص بك للحصول على التفاصيل."
1216
 
1217
  #: admin/templates/csv-export.tpl.php:18
1218
  msgctxt "admin csv-export"
1272
  "When checked, instead of just a CSV file a ZIP file will be generated with "
1273
  "both a CSV file and listing images."
1274
  msgstr ""
1275
+ "عند اختيار الخانة، بدلاً من مجرد ملف CSV سيتم إنشاء ملف مضغوط مع ملف CSV "
1276
+ "ولائحة الصور."
1277
 
1278
  #: admin/templates/csv-export.tpl.php:62
1279
  msgctxt "admin csv-export"
1288
  #: admin/templates/csv-export.tpl.php:69
1289
  msgctxt "admin csv-export"
1290
  msgid ""
1291
+ "If you plan to re-import the listings into BD and don't want new ones "
1292
+ "created, select this option!"
1293
  msgstr ""
1294
+ "إذا كنت تخطط لإعادة استيراد الإعلانات إلى \"دليل الأعمال\" ولا تريد إنشاء "
1295
+ "أخرى جديدة، قم بتحديد هذا الخيار!"
1296
 
1297
  #: admin/templates/csv-export.tpl.php:75
1298
  msgctxt "admin csv-export"
1321
 
1322
  #: admin/templates/csv-export.tpl.php:94 admin/templates/csv-export.tpl.php:105
1323
  #: admin/templates/csv-export.tpl.php:116 admin/templates/csv-import.tpl.php:43
1324
+ #: admin/templates/csv-import.tpl.php:109
1325
+ #: admin/templates/csv-import.tpl.php:120
1326
+ #: admin/templates/csv-import.tpl.php:131
1327
+ #: admin/templates/csv-import.tpl.php:158
1328
  msgctxt "admin forms"
1329
  msgid "required"
1330
  msgstr "مطلوب"
1352
  #: admin/templates/csv-export.tpl.php:135
1353
  msgctxt "admin csv-export"
1354
  msgid ""
1355
+ "Your export file is being prepared. Please <u>do not leave</u> this page "
1356
+ "until the export finishes."
1357
  msgstr ""
1358
  "جاري إعداد ملف التصدير. المرجو <u>عدم ترك</u> هذه الصفحة حتى انتهاء التصدير."
1359
 
1426
  #: admin/templates/csv-import-progress.tpl.php:10
1427
  msgctxt "admin csv-import"
1428
  msgid ""
1429
+ "A fatal error occurred during the import. If connection wasn't lost during "
1430
+ "the import, please make sure that you have enough free disk space and memory "
1431
  "available to PHP. Check your error logs for details."
1432
  msgstr ""
1433
  "حدث خطأ فادح أثناء عملية الاستيراد. إذا لم يكن الاتصال قد قطع أثناء عملية "
1435
  "والذاكرة المتاحة إلى بي إتش بي. تحقق من سجلات الخطأ الخاص بك للحصول على "
1436
  "التفاصيل."
1437
 
1438
+ #: admin/templates/csv-import-progress.tpl.php:13
1439
+ #: admin/templates/csv-import-progress.tpl.php:20
 
 
 
 
 
1440
  msgctxt "admin csv-import"
1441
  msgid "← Return to CSV Import"
1442
  msgstr "← العودة إلى \"استيراد CSV\""
1443
 
1444
+ #: admin/templates/csv-import-progress.tpl.php:18
1445
  msgctxt "admin csv-import"
1446
  msgid "Import Canceled"
1447
  msgstr "ألغي الاستيراد"
1448
 
1449
+ #: admin/templates/csv-import-progress.tpl.php:19
1450
  msgctxt "admin csv-import"
1451
  msgid "The import has been canceled."
1452
  msgstr "تم إلغاء الاستيراد."
1453
 
1454
+ #: admin/templates/csv-import-progress.tpl.php:26
1455
  msgid "Import Progress"
1456
  msgstr "تقدم الاستيراد"
1457
 
1458
+ #: admin/templates/csv-import-progress.tpl.php:29
1459
  msgctxt "admin csv-import"
1460
  msgid "Files"
1461
  msgstr "ملفات"
1462
 
1463
+ #: admin/templates/csv-import-progress.tpl.php:32
1464
  msgctxt "admin csv-import"
1465
  msgid "Rows in file"
1466
  msgstr "السطور في ملف"
1467
 
1468
+ #: admin/templates/csv-import-progress.tpl.php:35
1469
  msgctxt "admin csv-import"
1470
  msgid "Progress"
1471
  msgstr "التقدم"
1472
 
1473
+ #: admin/templates/csv-import-progress.tpl.php:39
1474
  msgctxt "admin csv-import"
1475
  msgid "Import has not started. Click \"Start Import\" to begin."
1476
  msgstr "لم يبدأ الاستيراد. إضغط على \"استيراد\" للبدء."
1477
 
1478
+ #: admin/templates/csv-import-progress.tpl.php:40
1479
  msgctxt "admin csv-import"
1480
  msgid "Importing CSV file..."
1481
  msgstr "استيراد ملف CSV..."
1482
 
1483
+ #: admin/templates/csv-import-progress.tpl.php:46
1484
  msgctxt "admin csv-import"
1485
  msgid "Start Import"
1486
  msgstr "بدء الاستيراد"
1487
 
1488
+ #: admin/templates/csv-import-progress.tpl.php:47
1489
  msgctxt "admin csv-import"
1490
  msgid "Cancel Import"
1491
  msgstr "إلغاء الاستيراد"
1492
 
1493
+ #: admin/templates/csv-import-progress.tpl.php:54
1494
  msgctxt "admin csv-import"
1495
  msgid "Import finished"
1496
  msgstr "إنتهاء الاستيراد"
1497
 
1498
+ #: admin/templates/csv-import-progress.tpl.php:57
1499
  msgctxt "admin csv-import"
1500
  msgid "Import was completed successfully."
1501
  msgstr "تم الاستيراد بنجاح."
1502
 
1503
+ #: admin/templates/csv-import-progress.tpl.php:61
1504
  msgctxt "admin csv-import"
1505
  msgid "Import was completed but some rows were rejected."
1506
  msgstr "تم إكمال عملية الاستيراد ولكن رفضت بعض السطور."
1507
 
1508
+ #: admin/templates/csv-import-progress.tpl.php:64
1509
  msgctxt "admin csv-import"
1510
  msgid "Import Summary"
1511
  msgstr "ملخص الاستيراد"
1512
 
1513
+ #: admin/templates/csv-import-progress.tpl.php:66
1514
  msgctxt "admin csv-import"
1515
  msgid "Rows in file:"
1516
  msgstr "السطور في ملف:"
1517
 
1518
+ #: admin/templates/csv-import-progress.tpl.php:69
1519
  msgctxt "admin csv-import"
1520
  msgid "Imported rows:"
1521
  msgstr "السطور المستوردة:"
1522
 
1523
+ #: admin/templates/csv-import-progress.tpl.php:72
1524
  msgctxt "admin csv-import"
1525
  msgid "Rejected rows:"
1526
  msgstr "السطور المرفوضة:"
1527
 
1528
+ #: admin/templates/csv-import-progress.tpl.php:77
1529
  msgctxt "admin csv-import"
1530
  msgid "Import Warnings"
1531
  msgstr "تحذيرات الاستيراد "
1532
 
1533
+ #: admin/templates/csv-import-progress.tpl.php:80
1534
  msgctxt "admin csv-import"
1535
  msgid "Line #"
1536
  msgstr "سطر #"
1537
 
1538
+ #: admin/templates/csv-import-progress.tpl.php:81
1539
  msgctxt "admin csv-import"
1540
  msgid "Line"
1541
  msgstr "سطر"
1542
 
1543
+ #: admin/templates/csv-import-progress.tpl.php:82
1544
  msgctxt "admin csv-import"
1545
  msgid "Warning"
1546
  msgstr "تحذير"
1672
  #: admin/templates/csv-import.tpl.php:199
1673
  msgctxt "admin csv-import"
1674
  msgid ""
1675
+ "Select a default user to be used if the username column is not present in "
1676
+ "the CSV file."
1677
  msgstr ""
1678
+ "حدد العضو الافتراضي لاستخدامه إذا كان العمود إسم المستخدم غير موجود في ملف "
1679
+ "CSV."
1680
 
1681
  #: admin/templates/csv-import.tpl.php:204
1682
  msgctxt "admin csv-import"
1713
  msgctxt "admin csv-import"
1714
  msgid ""
1715
  "The following are the valid header names to be used in the CSV file. "
1716
+ "Multivalued fields (such as category or tags) can appear multiple times in "
1717
+ "the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> to see "
1718
+ "how an import file should look like."
1719
  msgstr ""
1720
  "فيما يلي أسماء رؤوس صالحة لاستخدامها في ملف CSV. يمكن أن تظهر حقول متعددة "
1721
  "القيم (مثل تصنيف أو وسوم) عدة مرات في الملف. إضغط فوق <a href=\"%s\">\"انظر "
1758
 
1759
  #: admin/templates/csv-import.tpl.php:282
1760
  msgctxt "admin csv-import"
1761
+ msgid ""
1762
+ "Internal Sequence ID used to allow listing updates from external sources."
1763
+ msgstr ""
1764
+ "معرف (ID) تسلسل داخلي يستخدم للسماح للإعلان بالتحديثات من مصادر خارجية."
1765
 
1766
  #: admin/templates/csv-import.tpl.php:289
1767
  msgctxt "admin csv-import"
1775
  #: admin/templates/debug-info.tpl.php:5
1776
  msgctxt "debug-info"
1777
  msgid ""
1778
+ "The following information can help BD developers debug possible problems "
1779
+ "with your setup."
1780
  msgstr ""
1781
  "المعلومات التالية يمكن أن تساعد مطورين \"دليل الأعمال\" لتصحيح المشاكل "
1782
  "المحتملة مع الإعدادات الخاص بك."
1784
  #: admin/templates/debug-info.tpl.php:6
1785
  msgctxt "debug-info"
1786
  msgid ""
1787
+ "The debug information does not contain personal or sensitive information "
1788
+ "such as passwords or private keys."
1789
  msgstr ""
1790
  "بيانات تصحيح الأخطاء لا تحتوي على معلومات شخصية أو حساسة مثل كلمات السر أو "
1791
  "المفاتيح الخاصة."
1865
  msgid "* All Categories *"
1866
  msgstr "* جميع التصنيفات *"
1867
 
1868
+ #: admin/templates/fees-addoredit.tpl.php:128
1869
+ msgctxt "fees admin"
1870
+ msgid "Fee Description"
1871
+ msgstr "رسم الوصف"
1872
+
1873
+ #: admin/templates/fees-addoredit.tpl.php:143
1874
  msgctxt "fees admin"
1875
  msgid "Add Fee"
1876
  msgstr "إضافة رسم"
1877
 
1878
+ #: admin/templates/fees-addoredit.tpl.php:143
1879
  msgctxt "fees admin"
1880
  msgid "Update Fee"
1881
  msgstr "تحديث الرسم"
1918
  #: admin/templates/fees.tpl.php:13
1919
  msgctxt "fees admin"
1920
  msgid ""
1921
+ "To manage fees you need to go to the <a>Manage Options - Payment</a> page "
1922
+ "and check the box next to 'Turn On Payments' under 'Payment Settings'."
1923
  msgstr ""
1924
  "لإدارة الرسوم أنت بحاجة للذهاب إلى صفحة <a>إدارة الخيارات - الدفع</a> وحدد "
1925
  "المربع بجوار 'تشغيل الدفعات' تحت 'إعدادات الدفع'."
1948
  msgctxt "fees admin"
1949
  msgid ""
1950
  "These are all of the fee plans displayed to the user when they place a "
1951
+ "listing. Your current mode of \"%s\" restricts what you see here. Those on "
1952
+ "the <a>Not Available</a> filter will become active when you change the "
1953
+ "payment mode."
1954
  msgstr ""
1955
+ "هذه جميع خطط الرسوم المعروضة للعضو عندما يضع إعلانا. الوضع الحالي الخاص بك "
1956
+ "هو \"%s\" يحصر ما تراه هنا. بالنسبة لتلك التي في عامل التصفية <a>غير متوفرة</"
1957
+ "a> سوف تصبح مفعلة عندما تقوم بتغيير وضع الدفع."
1958
 
1959
  #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
1960
  #: admin/templates/fees.tpl.php:77
1971
  #: admin/templates/fees.tpl.php:60
1972
  msgctxt "fees admin"
1973
  msgid ""
1974
+ "These are all of the fee plans that aren't available because you're in \"%s"
1975
+ "\" mode. Those on the Active filter will become Not Available when you "
1976
+ "change the payment mode."
1977
  msgstr ""
1978
  "هذه كلها من خطط الرسوم التي لم تكن متوفرة لأنك في وضع \"%s\". تلك المتعلقة "
1979
  "بالتصفية المفعلة سوف تصبح \"غير متوفرة\" عندما تقوم بتغيير وضع الدفع."
1984
  "These fee plans were disabled by the admin and will not show to the end user "
1985
  "regardless of mode until you enable them."
1986
  msgstr ""
1987
+ "خطط الرسوم هذه كانت معطلة من قبل الإدارة ولن تظهر للعضو بغض النظر عن الوضع "
1988
+ "حتى تقوم بفعيلها."
1989
 
1990
  #: admin/templates/fees.tpl.php:74
1991
  msgctxt "fees admin"
1992
  msgid ""
1993
  "These are all of the fee plans you have configured. Not all of them are "
1994
+ "available for the current mode (currently set to \"%s\"). To see the fee "
1995
+ "plans for this mode click <a>Active</a>."
1996
  msgstr ""
1997
+ "هذه كلها من خطط الرسوم التي قمت بإعدادها. ليست كلها متاحة للوضع الحالي "
1998
+ "(حاليا الوضع في \"%s\"). لمشاهدة خطط الرسوم لهذا الوضع إضغط <a>مفعل</a>."
1999
 
2000
  #: admin/templates/fees.tpl.php:89 admin/templates/sidebar.tpl.php:13
2001
  msgctxt "admin sidebar"
2020
  #: admin/templates/fees.tpl.php:102
2021
  msgctxt "admin templates"
2022
  msgid ""
2023
+ "It does not appear you have any of the payment gateway modules enabled. "
2024
+ "Either <a>enable the default Authorize.net gateway</a> with your account "
2025
+ "info, or purchase a different payment gateway module in order to charge a "
2026
+ "fee for listings. To purchase additional payment gateways use the buttons "
2027
+ "below or visit %s."
2028
  msgstr ""
2029
  "لا يظهر لديك أي من وحدات بوابات الدفع مفعلة. إما <a>فعل بوابة Authorize.net "
2030
  "الافتراضية</a> مع معلومات الحساب الخاص بك، أو قم بشراء وحدة بوابة دفع مختلفة "
2039
  #: admin/templates/fees.tpl.php:123
2040
  msgctxt "admin templates"
2041
  msgid ""
2042
+ "You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your "
2043
+ "users."
2044
  msgstr "يمكنك شراء <a>%s</a> لإضافة <a>%s</a> كخيار دفع للأعضاء."
2045
 
2046
  #: admin/templates/form-fields-addoredit.tpl.php:1
2236
  "ones, change the order and visibility of the fields as well as configure "
2237
  "special options for them."
2238
  msgstr ""
2239
+ "هنا، يمكنك إنشاء حقول جديدة لإعلاناتك، تحرير أو حذف الموجود منها، وتغيير "
2240
+ "ترتيب وإبراز الحقول فضلا عن إعداد خيارات خاصة لهم."
2241
 
2242
  #: admin/templates/form-fields.tpl.php:18
2243
  msgctxt "form-fields admin"
2244
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2245
  msgstr "المرجو مراجعة <a>وثائق حقول الاستمارة</a> للحصول على مزيد من التفاصيل."
2246
 
2247
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.2) #-#-#-#-#
2248
  #. Plugin Name of the plugin/theme
2249
  #: admin/templates/header.tpl.php:4
2250
  msgid "Business Directory Plugin"
2258
  #: admin/templates/home.tpl.php:5
2259
  msgctxt "admin home"
2260
  msgid ""
2261
+ "Thanks for choosing us. There's a lot you probably want to get done, so "
2262
+ "let's jump right in!"
2263
+ msgstr ""
2264
+ "شكرا لاختيارك لنا. هناك ربما الكثير الذي تريد القيام به، لذلك هيا بنا!"
2265
 
2266
  #: admin/templates/home.tpl.php:11
2267
  msgctxt "admin home"
2268
  msgid ""
2269
+ "Our complete documentation is <a>here</a> which we encourage you to use "
2270
+ "while setting things up."
2271
  msgstr ""
2272
  "لدينا وثائق شرح كاملة <a>هنا</a> ونشجعك على استخدامها أثناء إعداد الإضافة."
2273
 
2277
  "We have some quick-start scenarios that you will find useful regarding setup "
2278
  "and configuration <a>here</a>."
2279
  msgstr ""
2280
+ "لدينا بعض سيناريوهات البداية السريعة التي سوف تجدها مفيدة فيما يتعلق "
2281
+ "بالتثبيت والإعداد<a> هنا</a>."
2282
 
2283
  #: admin/templates/home.tpl.php:18
2284
  msgctxt "admin home"
2285
  msgid ""
2286
+ "If you have questions, please post a comment on <a>support forum</a> and "
2287
+ "we'll answer it within 24 hours most days."
2288
  msgstr ""
2289
+ "إذا كانت لديك أسئلة، المرجو نشر تعليق في <a>منتدى الدعم</a> وسوف نقوم "
2290
+ "بالإجابة عليه في غضون 24 ساعة معظم الأيام."
2291
 
2292
  #: admin/templates/home.tpl.php:25
2293
  msgid "Configure/Manage Options"
2480
  #: admin/templates/listing-metabox-fees.tpl.php:12
2481
  msgctxt "admin infometabox"
2482
  msgid ""
2483
+ "Note: In Free mode, the fee plans will always be set to \"Free Listing\" "
2484
+ "below."
2485
  msgstr ""
2486
+ "ملاحظة: في الوضع المجاني، رسم الخطط سيكون دائما معين إلى \"إعلان مجاني\" "
2487
+ "أدناه."
2488
 
2489
  #: admin/templates/listing-metabox-fees.tpl.php:22
2490
  #: admin/templates/listing-metabox-feesummary.tpl.php:12
2588
 
2589
  #: admin/templates/settings-reset.tpl.php:10
2590
  msgid ""
2591
+ "Use this option if you want to go back to the original factory settings for "
2592
+ "BD."
2593
  msgstr ""
2594
+ "استخدم هذا الخيار إذا كنت تريد العودة إلى إعدادات المصنع الأصلية لدليل "
2595
+ "الأعمال."
2596
 
2597
  #: admin/templates/settings-reset.tpl.php:11
2598
  msgid "Please note that all of your existing settings will be lost."
2611
  msgid "Reset Defaults"
2612
  msgstr "إعادة تعيين الوضع الافتراضي"
2613
 
2614
+ #: admin/templates/settings.tpl.php:21
2615
  msgid "Settings updated."
2616
  msgstr "تم تحديث الإعدادات"
2617
 
2895
  #: admin/templates/themes.tpl.php:16
2896
  msgctxt "themes"
2897
  msgid ""
2898
+ "They are <strong>different</strong> than your regular WordPress theme and "
2899
+ "they are <strong>not</strong> a replacement for WP themes either. They will "
2900
+ "change the look and feel of your business directory only."
2901
  msgstr ""
2902
  "إنها <strong>مختلفة</strong> عن قوالب ووردبريس العادية الخاصة بك، و "
2903
  "<strong>ليست</strong> بديلاً عن قوالب ووردبريس. سوف تغير الشكل والمظهر لدليل "
2937
  msgctxt "uninstall"
2938
  msgid ""
2939
  "We're sorry to see you leave. Could you take 10 seconds and answer one "
2940
+ "question for us to help us make the product better for everyone in the "
2941
+ "future?"
2942
  msgstr ""
2943
+ "نحن آسفون لرؤيتكم تتركنا. يمكن أن تعطينا 10 ثوان من وقتك للإجابة على سؤال "
2944
+ "واحد لمساعدتنا على جعل المنتج أفضل للجميع في المستقبل؟"
2945
 
2946
  #: admin/templates/uninstall-capture-form.tpl.php:19
2947
  msgctxt "uninstall"
2990
  "personal, non-identifying information to help us in testing the plugin for "
2991
  "future releases?"
2992
  msgstr ""
2993
+ "هل يمكن الاحتفاظ بتعقب \"دليل الأعمال\" لقالبك، والإضافات، وغيرها من "
2994
+ "المعلومات غير الشخصية، والتي لا تعرف بك لمساعدتنا في اختبار الإضافة "
2995
+ "للإصدارات المستقبلية؟"
2996
 
2997
  #: admin/tracking.php:192
2998
  msgctxt "tracking"
3009
  msgid "Allow Tracking"
3010
  msgstr "السماح بالتتبع"
3011
 
3012
+ #: business-directory-plugin.php:666
3013
  msgctxt "admin plugins"
3014
  msgid "Settings"
3015
  msgstr "الإعدادات"
3016
 
3017
+ #: business-directory-plugin.php:774 business-directory-plugin.php:781
3018
  msgctxt "rss feed"
3019
  msgid "%s Feed"
3020
  msgstr "تغذية %s"
3021
 
3022
+ #: business-directory-plugin.php:1119
3023
  msgctxt "title"
3024
  msgid "Submit A Listing"
3025
  msgstr "إضافة إعلان"
3026
 
3027
+ #: business-directory-plugin.php:1129
3028
  msgctxt "title"
3029
  msgid "Find a Listing"
3030
  msgstr "العثور على إعلان"
3031
 
3032
+ #: business-directory-plugin.php:1139
3033
  msgctxt "title"
3034
  msgid "View All Listings"
3035
  msgstr "عرض جميع الإعلانات"
3036
 
3037
+ #: business-directory-plugin.php:1159
3038
  msgctxt "title"
3039
  msgid "Listings tagged: %s"
3040
  msgstr "إعلانات ذات وسم: %s"
3041
 
3042
+ #: core/api.php:401
3043
  msgid "Free"
3044
  msgstr "مجاني"
3045
 
3046
+ #: core/class-csv-import.php:394
3047
+ msgctxt "admin csv-import"
3048
+ msgid ""
3049
+ "Could not create listing category \"<category-name>\". The operation failed "
3050
+ "with the following error: <error-message>."
3051
+ msgstr ""
3052
+
3053
+ #: core/class-csv-import.php:400
3054
  msgctxt "admin csv-import"
3055
  msgid "Could not create listing category \"%s\""
3056
  msgstr "لا يمكن إنشاء تصنيف الإعلان \"%s\""
3057
 
3058
+ #: core/class-csv-import.php:544
3059
  msgctxt "admin csv-import"
3060
  msgid "Username \"%s\" does not exist"
3061
  msgstr "إسم المستخدم \"%s\" غير موجود"
3062
 
3063
+ #: core/class-csv-import.php:576
3064
  msgctxt "admin csv-import"
3065
  msgid "Missing required field: %s"
3066
  msgstr "حقل مطلوب مفقود: %s"
3067
 
3068
+ #: core/class-csv-import.php:596
3069
  msgctxt "admin csv-import"
3070
  msgid "Listing category \"%s\" does not exist"
3071
  msgstr "تصنيف الإعلان \"%s\" غير موجود"
3100
  msgid "Invalid form field type"
3101
  msgstr "نوع حقل استمارة غير صحيح"
3102
 
3103
+ #: core/class-form-field.php:498
3104
  msgctxt "form-fields-api"
3105
  msgid "Field label is required."
3106
  msgstr "تسمية الحقل مطلوب."
3107
 
3108
+ #: core/class-form-field.php:508
3109
  msgctxt "form-fields-api"
3110
  msgid "Requested field type change is incompatible. Type will not be modified."
3111
  msgstr "تغيير نوع الحقل المطلوب غير متوافق. لن يتم تعديل النوع."
3112
 
3113
+ #: core/class-form-field.php:528
3114
  msgctxt "form-fields-api"
3115
  msgid ""
3116
  "There can only be one field with association \"%s\". Please select another "
3117
  "association."
3118
  msgstr "يمكن أن يكون هناك حقل واحد مع رابطة \"%s\". المرجو تحديد رابطة أخرى."
3119
 
3120
+ #: core/class-form-field.php:538
3121
  msgctxt "form-fields-api"
3122
  msgid "\"%s\" is an invalid field type for this association."
3123
  msgstr "\"%s\" نوع حقل غير صالح لهذه الرابطة."
3124
 
3125
+ #: core/class-form-field.php:576
3126
  msgctxt "form-fields-api"
3127
  msgid "Invalid field ID"
3128
  msgstr "معرف حقل غير صالح"
3129
 
3130
+ #: core/class-form-field.php:585
3131
  msgctxt "form-fields api"
3132
  msgid ""
3133
+ "This form field can't be deleted because it is required for the plugin to "
3134
+ "work."
3135
  msgstr "لا يمكن حذف هذا الحقل لأنه مطلوب لعمل الإضافة."
3136
 
3137
+ #: core/class-form-field.php:597
3138
  msgctxt "form-fields-api"
3139
  msgid "An error occurred while trying to delete this field."
3140
  msgstr "حدث خطأ أثناء محاولة حذف هذا الحقل."
3239
  msgid "Leave blank for automatic height."
3240
  msgstr "أترك المساحة فارغة للارتفاع التلقائي."
3241
 
3242
+ #: core/class-payment.php:223 core/view-submit-listing.php:488
3243
  msgctxt "listings"
3244
  msgid "Fee \"%s\" for category \"%s\"%s"
3245
  msgstr "رسوم \"%s\" للتصنيف '%s' %s"
3246
 
3247
+ #: core/class-payment.php:226 core/view-submit-listing.php:491
3248
  msgctxt "listings"
3249
  msgid "(recurring)"
3250
  msgstr "(متكرر)"
3298
  msgid ""
3299
  "The slug can't be in use by another term. Avoid \"category\", for instance."
3300
  msgstr ""
3301
+ "لا يمكن أن يكون الرابط اللطيف مستخدم من طرف مصطلح آخر. تجنب \"category\"، "
3302
+ "على سبيل المثال."
3303
 
3304
  #: core/class-settings.php:40
3305
  msgctxt "admin settings"
3310
  msgctxt "admin settings"
3311
  msgid "The slug can't be in use by another term. Avoid \"tag\", for instance."
3312
  msgstr ""
3313
+ "لا يمكن أن يكون الرابط اللطيف مستخدم من طرف مصطلح آخر. تجنب \"tag\"، على "
3314
+ "سبيل المثال."
3315
 
3316
  #: core/class-settings.php:43
3317
  msgctxt "admin settings"
3322
  msgctxt "admin settings"
3323
  msgid ""
3324
  "Prior to 3.5.1, we included the ID in the listing URL, like \"/business-"
3325
+ "directory/1809/listing-title\". Check this setting to remove the ID for "
3326
+ "better SEO."
3327
  msgstr ""
3328
  "قبل الإصدار 3.5.1، كنا ندرج المعرف في الرابط url الخاص بالإعلان، مثل \"/دليل-"
3329
  "الأعمال/1809/عنوان-الإعلان\". تحقق من هذا الإعداد لإزالة المعرف لأفضل أرشفة "
3414
  #: core/class-settings.php:90
3415
  msgctxt "admin settings"
3416
  msgid ""
3417
+ "URL of your membership plugin's registration page. Only enter this if using "
3418
+ "a membership plugin or custom registration page."
3419
  msgstr ""
3420
+ "رابط URL لصفحة التسجيل في عضوية الإضافة الخاصة بك. فقط أدخل هذا إذا كان "
3421
+ "هناك استخدام لعضوية الإضافة أو صفحة تسجيل مخصصة."
3422
 
3423
  #: core/class-settings.php:95 core/class-settings.php:104
3424
  msgctxt "admin settings"
3445
  "Enter text or a URL starting with http. If you use a URL, the Terms and "
3446
  "Conditions text will be replaced by a link to the appropiate page."
3447
  msgstr ""
3448
+ "أدخل النص أو عنوان URL يبدأ ب http. إذا كنت تستخدم عنوان URL، سيتم استبدال "
3449
+ "نص الأحكام والشروط برابط إلى الصفحة المناسبة."
3450
 
3451
  #: core/class-settings.php:111
3452
  msgctxt "admin settings"
3455
 
3456
  #: core/class-settings.php:112
3457
  msgctxt "admin settings"
3458
+ msgid "Disable Frontend Listing Submission?"
3459
+ msgstr "تعطيل إضافة إعلان من واجهة الموقع؟"
3460
+
3461
+ #: core/class-settings.php:113
3462
+ msgctxt "admin settings"
3463
  msgid "Show the \"Submit listing\" button."
3464
  msgstr "إظهار زر \"إضافة إعلان\"."
3465
 
3466
+ #: core/class-settings.php:115
3467
  msgctxt "admin settings"
3468
  msgid "Show \"Search listings\"."
3469
  msgstr "إظهار \"البحث في الإعلانات\"."
3470
 
3471
+ #: core/class-settings.php:116
3472
  msgctxt "admin settings"
3473
  msgid "Show the \"View Listings\" button."
3474
  msgstr "إظهار زر \"مشاهدة الإعلانات\"."
3475
 
3476
+ #: core/class-settings.php:117
3477
  msgctxt "admin settings"
3478
  msgid "Show the \"Directory\" button."
3479
  msgstr "إظهار زر \"الدليل\"."
3480
 
3481
+ #: core/class-settings.php:118
3482
  msgctxt "admin settings"
3483
+ msgid "Disable advanced CPT integration?"
3484
+ msgstr "تعطيل التكامل CPT المتقدم؟"
3485
 
3486
+ #: core/class-settings.php:123
3487
  msgctxt "admin settings"
3488
  msgid "Directory Search"
3489
  msgstr "البحث في الدليل"
3490
 
3491
+ #: core/class-settings.php:131
3492
  msgctxt "admin settings"
3493
  msgid "Search form display"
3494
  msgstr "عرض نموذج البحث"
3495
 
3496
+ #: core/class-settings.php:135
3497
  msgctxt "admin settings"
3498
  msgid "Above results"
3499
  msgstr "أعلى النتائج"
3500
 
3501
+ #: core/class-settings.php:136
3502
  msgctxt "admin settings"
3503
  msgid "Below results"
3504
  msgstr "أسفل النتائج"
3505
 
3506
+ #: core/class-settings.php:137
3507
  msgctxt "admin settings"
3508
  msgid "Don't show with results"
3509
  msgstr "لا تظهر مع النتائج"
3510
 
3511
+ #: core/class-settings.php:142
3512
  msgctxt "admin settings"
3513
  msgid ""
3514
+ "You have selected a textarea field to be included in quick searches. "
3515
+ "Searches involving those fields are very expensive and could result in "
3516
+ "timeouts and/or general slowness."
3517
  msgstr ""
3518
+ "لقد حددت حقل إدراج نص ليتم تضمينها في عمليات البحث السريعة. عمليات البحث "
3519
+ "التي تنطوي على تلك الحقول تتطلب موارد كثيرة ويمكن أن تؤدي الى انتهاء المهلة "
3520
+ "و/ أو البطء العام."
3521
 
3522
+ #: core/class-settings.php:144
3523
  msgctxt "admin settings"
3524
  msgid ""
3525
  "Use Ctrl-Click to include multiple fields in the search. Choosing too many "
3526
  "fields for inclusion into Quick Search can result in very slow search "
3527
  "performance."
3528
  msgstr ""
3529
+ "إستخدم Ctrl-Click لتشمل حقول متعددة في البحث. اختيار العديد من الحقول "
3530
+ "لإدراجها في البحث السريع يؤدي إلى أداء بحث بطيئ جدا."
3531
 
3532
+ #: core/class-settings.php:147
3533
  msgctxt "admin settings"
3534
  msgid "Quick search fields"
3535
  msgstr "حقول البحث السريع"
3536
 
3537
+ #: core/class-settings.php:155
3538
  msgctxt "admin settings"
3539
  msgid "Enable high performance searches?"
3540
  msgstr "تمكين عمليات البحث عالية الأداء؟"
3541
 
3542
+ #: core/class-settings.php:158
3543
  msgctxt "admin settings"
3544
  msgid ""
3545
  "Enabling this makes BD sacrifice result quality to improve speed. This is "
3549
  "تمكين هذا يجعل \"دليل الأعمال\" يضحي بجودة النتيجة لتحسين السرعة. وهذا مفيد "
3550
  "إذا كنت على خطط استضافة مشتركة، حيث أداء قاعدة البيانات يعد مشكلة."
3551
 
3552
+ #: core/class-settings.php:163
3553
  msgctxt "admin settings"
3554
  msgid "Miscellaneous Settings"
3555
  msgstr "إعدادات متنوعة"
3556
 
3557
+ #: core/class-settings.php:167
3558
  msgctxt "admin settings"
3559
  msgid ""
3560
  "Check this if you are having trouble with BD, particularly when importing or "
3563
  "حدد هذا الخيار إذا كنت تواجه مشكلة مع دليل الأعمال، ولا سيما عند استيراد أو "
3564
  "تصدير ملفات CSV."
3565
 
3566
+ #: core/class-settings.php:170
3567
  msgctxt "admin settings"
3568
  msgid ""
3569
+ "If this compatibility mode doesn't solve your issue, you may be experiencing "
3570
+ "a more serious conflict. <a>Here is an article</a> about how to test for "
3571
+ "theme and plugin conflicts with Business Directory."
3572
  msgstr ""
3573
  " إذا كان وضع التوافق لا يحل مشكلتك، فقد تعاني من تعارض أكثر خطورة. <a>وإليك "
3574
  "مقال</a> حول كيفية اختبار تعارضات القالب والإضافات مع \"دليل الأعمال\"."
3575
 
3576
+ #: core/class-settings.php:173
3577
  msgctxt "admin settings"
3578
  msgid "Enable AJAX compatibility mode?"
3579
  msgstr "تمكين وضع التوافق أجاكس؟"
3580
 
3581
+ #: core/class-settings.php:181 core/class-settings.php:665
3582
  msgctxt "admin settings"
3583
  msgid "Listings"
3584
  msgstr "الإعلانات"
3585
 
3586
+ #: core/class-settings.php:182 core/class-settings.php:335
3587
+ #: core/class-settings.php:622
3588
  msgctxt "admin settings"
3589
  msgid "General Settings"
3590
  msgstr "الإعدادات العامة"
3591
 
3592
+ #: core/class-settings.php:184
3593
  msgctxt "admin settings"
3594
  msgid "Listings per page"
3595
  msgstr "الإعلانات حسب الصفحة"
3596
 
3597
+ #: core/class-settings.php:185
3598
  msgctxt "admin settings"
3599
  msgid ""
3600
+ "Number of listings to show per page. Use a value of \"0\" to show all "
3601
+ "listings."
3602
  msgstr ""
3603
  "عدد الإعلانات التي تظهر في كل صفحة. استخدام قيمة \"0\" لإظهار كل الإعلانات."
3604
 
3605
+ #: core/class-settings.php:187
3606
  msgctxt "admin settings"
3607
  msgid "Listing duration for no-fee sites (in days)"
3608
  msgstr "مدة الإعلان للمواقع بلا رسوم (بالأيام)"
3609
 
3610
+ #: core/class-settings.php:188
3611
  msgctxt "admin settings"
3612
  msgid ""
3613
  "Use a value of \"0\" to keep a listing alive indefinitely or enter a number "
3614
  "less than 10 years (3650 days)."
3615
  msgstr ""
3616
+ "استخدام قيمة \"0\" للإبقاء على الإعلان إلى أجل غير مسمى، أو قم بإدخال عدد "
3617
+ "أقل من 10 سنوات (3650 يوما)."
3618
 
3619
+ #: core/class-settings.php:194
3620
  msgctxt "admin settings"
3621
  msgid "Include listing contact form on listing pages?"
3622
  msgstr "إدراج الإعلان مع نموذج الاتصال في صفحات الإعلان؟"
3623
 
3624
+ #: core/class-settings.php:197
3625
  msgctxt "admin settings"
3626
  msgid ""
3627
+ "Allows visitors to contact listing authors privately. Authors will receive "
3628
+ "the messages via email."
3629
  msgstr ""
3630
  "يسمح للزوار بالاتصال بكتاب الإعلان بشكل خاص. الكتاب سوف يتلقون رسائل عبر "
3631
  "البريد الإلكتروني."
3632
 
3633
+ #: core/class-settings.php:200
3634
+ msgctxt "admin settings"
3635
+ msgid "Open detailed view of listing in new tab?"
3636
+ msgstr "فتح تفاصيل مشاهدة الإعلانات في علامة تبويب جديدة؟"
3637
+
3638
+ #: core/class-settings.php:205
3639
  msgctxt "admin settings"
3640
  msgid "Require login for using the contact form?"
3641
  msgstr "يتطلب تسجيل الدخول لاستخدام نموذج الاتصال؟"
3642
 
3643
+ #: core/class-settings.php:211
3644
  msgctxt "admin settings"
3645
  msgid "Maximum number of contact form submits per day"
3646
  msgstr "الحد الأقصى لعدد إرسال الاتصالات يوميا"
3647
 
3648
+ #: core/class-settings.php:214
3649
  msgctxt "admin settings"
3650
  msgid ""
3651
+ "Use this to prevent spamming of listing owners. 0 means unlimited submits "
3652
+ "per day."
3653
  msgstr ""
3654
  "إستخدم هذا لمنع الرسائل المزعجة لأصحاب الإعلانات. 0 تعني إرسال غير محدود في "
3655
  "اليوم الواحد."
3656
 
3657
+ #: core/class-settings.php:220
3658
  msgctxt "admin settings"
3659
  msgid "Include comment form on listing pages?"
3660
  msgstr "يتضمن نموذج التعليق على صفحات الإعلانات؟"
3661
 
3662
+ #: core/class-settings.php:223
3663
  msgctxt "admin settings"
3664
  msgid ""
3665
+ "Allow visitors to discuss listings using the standard WordPress comment "
3666
+ "form. Comments are public."
3667
  msgstr ""
3668
  "السماح للزوار بمناقشة الإعلانات باستخدام نموذج التعليق القياسي لووردبريس. "
3669
  "التعليقات مشاهدة للعموم."
3670
 
3671
+ #: core/class-settings.php:224
3672
  msgctxt "admin settings"
3673
  msgid "Show listings under categories on main page?"
3674
  msgstr "إظهار الإعلانات تحت التصنيفات على الصفحة الرئيسية؟"
3675
 
3676
+ #: core/class-settings.php:225
3677
  msgctxt "admin settings"
3678
  msgid "Status of listings upon uninstalling plugin"
3679
  msgstr "حالة الإعلانات عند إلغاء تثبيت الإضافة"
3680
 
3681
+ #: core/class-settings.php:226 core/class-settings.php:228
3682
  msgctxt "post status"
3683
  msgid "Draft"
3684
  msgstr "مسودة"
3685
 
3686
+ #: core/class-settings.php:226 core/class-settings.php:228
3687
  msgctxt "post status"
3688
  msgid "Trash"
3689
  msgstr "سلة المهملات"
3690
 
3691
+ #: core/class-settings.php:227
3692
  msgctxt "admin settings"
3693
  msgid "Status of deleted listings"
3694
  msgstr "حالة الإعلانات المحذوفة"
3695
 
3696
+ #: core/class-settings.php:229
3697
  msgctxt "admin settings"
3698
  msgid "Submit Listing instructions message"
3699
  msgstr "إرسال رسالة تعليمات الإعلانات"
3700
 
3701
+ #: core/class-settings.php:229
3702
  msgctxt "admin settings"
3703
  msgid ""
3704
  "This text is displayed at the first page of the Submit Listing process for "
3705
+ "Business Directory. You can use it for instructions about filling out the "
3706
+ "form or anything you want to tell users before they get started."
3707
  msgstr ""
3708
  "يتم عرض هذا النص على الصفحة الأولى من عملية إرسال إعلان لدليل الأعمال. يمكنك "
3709
+ "استخدامه لإعطاء إرشادات حول تعبئة النموذج أو أي شيء تريد إعلام الأعضاء به "
3710
+ "قبل أن يبدأوا."
3711
 
3712
+ #: core/class-settings.php:231
3713
  msgctxt "admin settings"
3714
  msgid "Listing Renewal"
3715
  msgstr "تجديد الإعلان"
3716
 
3717
+ #: core/class-settings.php:232
3718
  msgctxt "admin settings"
3719
  msgid "Turn on listing renewal option?"
3720
  msgstr "قم بتشغيل خيار تجديد الإعلان؟"
3721
 
3722
+ #: core/class-settings.php:235
3723
  msgctxt "admin settings"
3724
  msgid "Allow recurring renewal payments?"
3725
  msgstr "السماح بتجديد الدفعات المتكررة؟"
3726
 
3727
+ #: core/class-settings.php:238
3728
  msgctxt "admin settings"
3729
  msgid ""
3730
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3733
  "السماح للأعضاء باختيار التجديد التلقائي لإعلاناتهم. الرسوم تستوفى وقت انتهاء "
3734
  "تاريخ الإعلان دون تدخل العضو."
3735
 
3736
+ #: core/class-settings.php:242
3737
  msgctxt "admin settings"
3738
  msgid "Use recurring payments as the default payment method?"
3739
  msgstr "استخدام المدفوعات المتكررة كطريقة الدفع الافتراضية؟"
3740
 
3741
+ #: core/class-settings.php:245
3742
  msgctxt "admin settings"
3743
  msgid ""
3744
+ "Enable automatic renewal without having users opt in during the submit "
3745
+ "process."
3746
  msgstr "تمكين التجديد التلقائي دون إخبار الأعضاء أثناء عملية الإرسال."
3747
 
3748
+ #: core/class-settings.php:250
3749
  msgctxt "admin settings"
3750
  msgid "Listing renewal e-mail threshold (in days)"
3751
  msgstr "عتبة رسالة البريد الإلكتروني لتجديد الإعلان (بالأيام)"
3752
 
3753
+ #: core/class-settings.php:253
3754
  msgctxt "admin settings"
3755
  msgid ""
3756
  "Configure how many days before listing expiration is the renewal e-mail sent."
3757
  msgstr ""
3758
  "حدد عدد الأيام قبل انتهاء تاريخ الإعلان لإرسال رسالة بريد إلكتروني لتجديده."
3759
 
3760
+ #: core/class-settings.php:257
3761
  msgctxt "admin settings"
3762
  msgid ""
3763
  "Send expiration notices including a cancel links to auto-renewed listings?"
3764
  msgstr ""
3765
  "إرسال إشعارات انتهاء التاريخ مصحوبة بروابط إلغاء التجديد التلقائي للإعلانات؟"
3766
 
3767
+ #: core/class-settings.php:264
3768
  msgctxt "admin settings"
3769
  msgid "Remind listing owners of expired listings (past due)?"
3770
+ msgstr "ذكِّر أصحاب الإعلانات المنتهية التاريخ (مستحقة)؟"
3771
 
3772
+ #: core/class-settings.php:269
3773
  msgctxt "admin settings"
3774
  msgid "Listing renewal reminder e-mail threshold (in days)"
3775
  msgstr "عتبة التذكير بالبريد الإلكتروني لتجديد الإعلان (بالأيام)"
3776
 
3777
+ #: core/class-settings.php:272
3778
  msgctxt "admin settings"
3779
  msgid ""
3780
  "Configure how many days after the expiration of a listing an e-mail reminder "
3781
  "should be sent to the owner."
3782
  msgstr ""
3783
+ "حدد عدد الأيام بعد انتهاء تاريخ الإعلان لإرسال رسالة بريد إلكتروني لتذكير "
3784
+ "صاحب الإعلان."
3785
 
3786
+ #: core/class-settings.php:275
3787
  msgctxt "admin settings"
3788
  msgid "Post/Category Settings"
3789
  msgstr "إعدادات الإعلان/التصنيف"
3790
 
3791
+ #: core/class-settings.php:276
3792
  msgctxt "admin settings"
3793
  msgid "Default new post status"
3794
  msgstr "حالة الإعلان الجديد الافتراضية"
3795
 
3796
+ #: core/class-settings.php:277 core/class-settings.php:280
3797
  msgctxt "post status"
3798
  msgid "Published"
3799
  msgstr "نشرت"
3800
 
3801
+ #: core/class-settings.php:277 core/class-settings.php:280
3802
  msgctxt "post status"
3803
  msgid "Pending"
3804
  msgstr " في الانتظار"
3805
 
3806
+ #: core/class-settings.php:279
3807
  msgctxt "admin settings"
3808
  msgid "Edit post status"
3809
  msgstr "تعديل حالة الإعلان"
3810
 
3811
+ #: core/class-settings.php:281
3812
  msgctxt "admin settings"
3813
  msgid "Order categories list by"
3814
  msgstr "ترتيب قائمة التصنيفات حسب"
3815
 
3816
+ #: core/class-settings.php:283
3817
  msgctxt "admin settings"
3818
  msgid "Name"
3819
  msgstr "الإسم"
3820
 
3821
+ #: core/class-settings.php:284
3822
  msgctxt "admin settings"
3823
  msgid "Slug"
3824
  msgstr "رابط لطيف"
3825
 
3826
+ #: core/class-settings.php:285
3827
  msgctxt "admin settings"
3828
  msgid "Listing Count"
3829
  msgstr "عداد الإعلانات"
3830
 
3831
+ #: core/class-settings.php:287
3832
  msgctxt "admin settings"
3833
  msgid "Sort order for categories"
3834
  msgstr "ترتيب فرز التصنيفات"
3835
 
3836
+ #: core/class-settings.php:288 core/class-settings.php:306
3837
  msgctxt "admin settings"
3838
  msgid "Ascending"
3839
  msgstr "تصاعدي"
3840
 
3841
+ #: core/class-settings.php:288 core/class-settings.php:306
3842
  msgctxt "admin settings"
3843
  msgid "Descending"
3844
  msgstr "تنازلي"
3845
 
3846
+ #: core/class-settings.php:289
3847
  msgctxt "admin settings"
3848
  msgid "Show category post count?"
3849
  msgstr "إظهار عدد إعلانات التصنيف؟"
3850
 
3851
+ #: core/class-settings.php:290
3852
  msgctxt "admin settings"
3853
  msgid "Hide empty categories?"
3854
  msgstr "إخفاء التصنيفات الفارغة؟"
3855
 
3856
+ #: core/class-settings.php:291
3857
  msgctxt "admin settings"
3858
  msgid "Show only parent categories in category list?"
3859
  msgstr "إظهار التصنيفات الأبوية فقط في قائمة التصنيف؟"
3860
 
3861
+ #: core/class-settings.php:293
3862
  msgctxt "admin settings"
3863
  msgid "Listings Sorting"
3864
  msgstr "فرز الإعلانات"
3865
 
3866
+ #: core/class-settings.php:294
3867
  msgctxt "admin settings"
3868
  msgid "Order directory listings by"
3869
  msgstr "ترتيب إعلانات الدليل حسب"
3870
 
3871
+ #: core/class-settings.php:296
3872
  msgctxt "admin settings"
3873
  msgid "Title"
3874
  msgstr "العنوان"
3875
 
3876
+ #: core/class-settings.php:297
3877
  msgctxt "admin settings"
3878
  msgid "Author"
3879
  msgstr "الكاتب"
3880
 
3881
+ #: core/class-settings.php:298 core/class-settings.php:708
3882
  msgctxt "admin settings"
3883
  msgid "Date posted"
3884
  msgstr "تاريخ النشر"
3885
 
3886
+ #: core/class-settings.php:299 core/class-settings.php:709
3887
  msgctxt "admin settings"
3888
  msgid "Date last modified"
3889
  msgstr "تاريخ آخر تعديل"
3890
 
3891
+ #: core/class-settings.php:300
3892
  msgctxt "admin settings"
3893
  msgid "Random"
3894
  msgstr "عشوائية"
3895
 
3896
+ #: core/class-settings.php:301
3897
  msgctxt "admin settings"
3898
  msgid "Paid first then free. Inside each group by date."
3899
  msgstr "تدفع أولاً ثم مجاناً. داخل كل مجموعة حسب التاريخ."
3900
 
3901
+ #: core/class-settings.php:302
3902
  msgctxt "admin settings"
3903
  msgid "Paid first then free. Inside each group by title."
3904
  msgstr "تدفع أولاً ثم مجاناً. داخل كل مجموعة بعنوان."
3905
 
3906
+ #: core/class-settings.php:304
3907
  msgctxt "admin settings"
3908
  msgid "Sort directory listings by"
3909
  msgstr "فرز إعلانات الدليل حسب"
3910
 
3911
+ #: core/class-settings.php:305
3912
  msgctxt "admin settings"
3913
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3914
  msgstr "ترتيب تصاعدي من أ إلى ي، ترتيب تنازلي من ي إلى أ"
3915
 
3916
+ #: core/class-settings.php:310
3917
  msgctxt "admin settings"
3918
  msgid "Enable sort bar?"
3919
  msgstr "تمكين شريط الفرز؟"
3920
 
3921
+ #: core/class-settings.php:315
3922
  msgctxt "admin settings"
3923
  msgid "Sortbar Fields"
3924
  msgstr "حقول شريط الفرز"
3925
 
3926
+ #: core/class-settings.php:324
3927
  msgctxt "admin settings"
3928
  msgid "Featured (Sticky) listing settings"
3929
  msgstr "إعدادات الإعلانات (المثبتة) المميزة"
3930
 
3931
+ #: core/class-settings.php:325
3932
  msgctxt "admin settings"
3933
  msgid "Offer sticky listings?"
3934
  msgstr "عروض الإعلانات المثبتة"
3935
 
3936
+ #: core/class-settings.php:326
3937
  msgctxt "admin settings"
3938
  msgid "Offer upgrades during submit process?"
3939
  msgstr "عرض الترقية خلال عملية إضافة إعلان؟"
3940
 
3941
+ #: core/class-settings.php:327
3942
  msgctxt "admin settings"
3943
  msgid "Sticky listing price"
3944
  msgstr "سعر الإعلان المثبت"
3945
 
3946
+ #: core/class-settings.php:328
3947
  msgctxt "admin settings"
3948
  msgid "Sticky listing page description text"
3949
  msgstr "نص وصف صفحة الإعلان المثبت"
3950
 
3951
+ #: core/class-settings.php:329
3952
  msgctxt "admin settings"
3953
  msgid ""
3954
+ "You can upgrade your listing to featured status. Featured listings will "
3955
+ "always appear on top of regular listings."
3956
  msgstr ""
3957
  "يمكنك ترقية إعلانك إلى الحالة المميزة. الإعلانات المميزة سوف تظهر دائماً أعلى "
3958
  "الإعلانات العادية."
3959
 
3960
+ #: core/class-settings.php:334
3961
  msgctxt "admin settings"
3962
  msgid "E-Mail"
3963
  msgstr "البريد الإلكتروني"
3964
 
3965
+ #: core/class-settings.php:338
3966
  msgctxt "admin settings"
3967
  msgid "Display email address fields publicly?"
3968
  msgstr "عرض حقول عنوان البريد الإلكتروني علنا؟"
3969
 
3970
+ #: core/class-settings.php:341
3971
  msgctxt "admin settings"
3972
  msgid ""
3973
+ "Shows the email address of the listing owner to all web users. NOT "
3974
+ "RECOMMENDED as this increases spam to the address and allows spam bots to "
3975
+ "harvest it for future use."
3976
  msgstr ""
3977
  "إظهار عنوان البريد الإلكتروني لمالك الإعلان لجميع مستخدمي الويب. لا ينصح به "
3978
  "لأن هذا يزيد من الرسائل المزعجة إلى العنوان ويسمح للمتطفلين بجمع عنوانين "
3979
  "البريد للاستخدام في المستقبل."
3980
 
3981
+ #: core/class-settings.php:344
3982
  msgctxt "admin settings"
3983
  msgid "How to determine the listing's email address?"
3984
  msgstr "كيفية تحديد عنوان البريد الإلكتروني في الإعلان؟"
3985
 
3986
+ #: core/class-settings.php:347
3987
  msgctxt "admin settings"
3988
  msgid ""
3989
  "This affects emails sent to listing owners via contact forms or when their "
3992
  "هذا يؤثر على رسائل البريد الإلكتروني المرسلة إلى مالكي الإعلانات عبر نموذج "
3993
  "الاتصال أو عندما ينتهي تاريخ الإعلانات."
3994
 
3995
+ #: core/class-settings.php:349
3996
  msgctxt "admin settings"
3997
  msgid "Try listing's email field first, then author's email."
3998
  msgstr "جرب البريد الإلكتروني للإعلانات أولاً، ثم البريد الإلكتروني للكاتب."
3999
 
4000
+ #: core/class-settings.php:350
4001
  msgctxt "admin settings"
4002
  msgid "Try author's email first and then listing's email field."
4003
  msgstr "جرب البريد الإلكتروني للكاتب أولاً، ثم البريد الإلكتروني للإعلانات."
4004
 
4005
+ #: core/class-settings.php:354
4006
  msgctxt "admin settings"
4007
  msgid "E-Mail Notifications"
4008
  msgstr "تنبيهات البريد الإلكتروني"
4009
 
4010
+ #: core/class-settings.php:357
4011
  msgctxt "admin settings"
4012
  msgid "Notify admin via e-mail when..."
4013
  msgstr "إبلاغ المدير عن طريق البريد الإلكتروني عندما..."
4014
 
4015
+ #: core/class-settings.php:361
4016
  msgctxt "admin settings"
4017
  msgid "A new listing is submitted."
4018
  msgstr "يتم إضافة إعلان جديد"
4019
 
4020
+ #: core/class-settings.php:362
4021
  msgctxt "admin settings"
4022
  msgid "A listing is edited."
4023
  msgstr "تم تحرير الإعلان"
4024
 
4025
+ #: core/class-settings.php:363
4026
  msgctxt "admin settings"
4027
  msgid "A listing expires."
4028
  msgstr "الإعلان منتهي التاريخ"
4029
 
4030
+ #: core/class-settings.php:364
4031
  msgctxt "admin settings"
4032
  msgid "A contact message is sent to a listing's owner."
4033
  msgstr "يتم إرسال رسالة اتصال لمالك الإعلان."
4034
 
4035
+ #: core/class-settings.php:370
4036
  msgctxt "admin settings"
4037
  msgid "CC this e-mail address too"
4038
  msgstr "إرسال نسخة من الرسالة الى عنوان البريد الإلكتروني هذا أيضا"
4039
 
4040
+ #: core/class-settings.php:376
4041
  msgctxt "admin settings"
4042
  msgid "Notify users via e-mail when..."
4043
  msgstr "إعلام الأعضاء عن طريق البريد الإلكتروني عندما..."
4044
 
4045
+ #: core/class-settings.php:379
4046
  msgctxt "admin settings"
4047
  msgid "You can modify the text template used for most of these e-mails below."
4048
+ msgstr ""
4049
+ "يمكنك تعديل قالب النص المستخدم لمعظم رسائل البريد الإلكتروني هذه أدناه."
4050
 
4051
+ #: core/class-settings.php:380
4052
  msgctxt "admin settings"
4053
  msgid "Their listing is submitted."
4054
  msgstr "يتم إضافة الإعلان الخاص بهم"
4055
 
4056
+ #: core/class-settings.php:381
4057
  msgctxt "admin settings"
4058
  msgid "Their listing is approved/published."
4059
  msgstr "تمت الموافقة ونشر الإعلان الخاص بهم"
4060
 
4061
+ #: core/class-settings.php:390
4062
  msgctxt "contact email"
4063
  msgid "You have received a reply from your listing at %s."
4064
  msgstr "تلقيت ردا من الإعلان الخاص بك في %s."
4065
 
4066
+ #: core/class-settings.php:391
4067
  msgctxt "contact email"
4068
  msgid "Name: %s"
4069
  msgstr "الإسم: %s"
4070
 
4071
+ #: core/class-settings.php:392
4072
  msgctxt "contact email"
4073
  msgid "E-Mail: %s"
4074
  msgstr "البريد الإلكتروني: %s"
4075
 
4076
+ #: core/class-settings.php:393
4077
  msgctxt "contact email"
4078
  msgid "Message:"
4079
  msgstr "الرسالة:"
4080
 
4081
+ #: core/class-settings.php:395
4082
  msgctxt "contact email"
4083
  msgid "Time: %s"
4084
  msgstr "الوقت: %s"
4085
 
4086
+ #: core/class-settings.php:397
4087
  msgctxt "admin settings"
4088
  msgid "E-Mail Templates"
4089
  msgstr "قوالب البريد الإلكتروني"
4090
 
4091
+ #: core/class-settings.php:400
4092
  msgctxt "admin settings"
4093
  msgid "Email confirmation message"
4094
  msgstr "رسالة تأكيد البريد الإلكتروني"
4095
 
4096
+ #: core/class-settings.php:404
4097
  msgctxt "admin settings"
4098
  msgid "Sent after a listing has been submitted."
4099
  msgstr "ترسل بعد أن يضاف الإعلان."
4100
 
4101
+ #: core/class-settings.php:405 core/class-settings.php:413
4102
+ #: core/class-settings.php:454
4103
  msgctxt "admin settings"
4104
  msgid "Listing's title"
4105
  msgstr "عنوان الإعلان"
4106
 
4107
+ #: core/class-settings.php:408
4108
  msgctxt "admin settings"
4109
  msgid "Listing published message"
4110
  msgstr "رسالة نشر الإعلان"
4111
 
4112
+ #: core/class-settings.php:411
4113
  msgctxt "admin settings"
4114
  msgid ""
4115
+ "Your listing \"[listing]\" is now available at [listing-url] and can be "
4116
+ "viewed by the public."
4117
  msgstr ""
4118
+ "القائمة الخاصة بك \"[listing]\" متوفر الآن في [listing-url] ويمكن مشاهدتها "
4119
+ "من قبل العموم."
4120
 
4121
+ #: core/class-settings.php:412
4122
  msgctxt "admin settings"
4123
  msgid "Sent when the listing has been published or approved by an admin."
4124
  msgstr "ترسل عندما يتم نشر الإعلان أو الموافقة عليه من طرف المدير."
4125
 
4126
+ #: core/class-settings.php:414
4127
  msgctxt "admin settings"
4128
  msgid "Listing's URL"
4129
  msgstr "عنوان URL الإعلان"
4130
 
4131
+ #: core/class-settings.php:418
4132
  msgctxt "admin settings"
4133
  msgid "Listing Contact Message"
4134
  msgstr "رسالة اتصال الإعلان"
4135
 
4136
+ #: core/class-settings.php:422
4137
  msgctxt "admin settings"
4138
  msgid ""
4139
  "Sent to listing owners when someone uses the contact form on their listing "
4142
  "ترسل إلى مالكي الإعلانات عندما يستخدم شخص ما نموذج جهة الاتصال في صفحات "
4143
  "الإعلانات الخاصة بهم."
4144
 
4145
+ #: core/class-settings.php:432
4146
  msgctxt "admin settings"
4147
  msgid "Payment related"
4148
  msgstr "المدفوعات ذات الصلة"
4149
 
4150
+ #: core/class-settings.php:449
4151
  msgctxt "admin settings"
4152
  msgid "Payment abandoned reminder message"
4153
  msgstr "رسالة تذكير بالتخلي عن الدفع"
4154
 
4155
+ #: core/class-settings.php:453
4156
  msgctxt "admin settings"
4157
  msgid "Sent some time after a pending payment is abandoned by users."
4158
  msgstr "ترسل أحيانا بعد أن يتخلي الأعضاء عن الدفعة المنتظرة."
4159
 
4160
+ #: core/class-settings.php:455
4161
  msgctxt "admin settings"
4162
  msgid "Checkout URL link"
4163
  msgstr "رابط URL إتمام الشراء"
4164
 
4165
+ #: core/class-settings.php:461
4166
  msgctxt "admin settings"
4167
  msgid "Renewal Reminders"
4168
  msgstr "رسائل تذكير التجديد"
4169
 
4170
+ #: core/class-settings.php:464
4171
  msgctxt "admin settings"
4172
  msgid ""
4173
  "This section refers only to the text of the renewal/expiration notices. You "
4174
  "can also <a>configure when the e-mails are sent</a>."
4175
  msgstr ""
4176
+ "هذا القسم يحيل فقط إلى نص إشعارات التجديد/انتهاء التاريخ. يمكنك أيضا "
4177
+ "<a>إعداد متى يتم إرسال رسائل البريد الإلكتروني</a>."
4178
 
4179
+ #: core/class-settings.php:468
4180
  msgctxt "admin settings"
4181
  msgid "Pending expiration e-mail message"
4182
  msgstr "رسالة البريد الإلكتروني أثناء انتظار انتهاء التاريخ"
4183
 
4184
+ #: core/class-settings.php:472
4185
  msgctxt "settings"
4186
  msgid ""
4187
  "Sent some time before the listing expires. Applies to non-recurring renewals "
4190
  "ترسل أحيانا قبل انتهاء تاريخ الإعلان. تنطبق على عمليات التجديد غير المتكررة "
4191
  "فقط."
4192
 
4193
+ #: core/class-settings.php:473 core/class-settings.php:486
4194
+ #: core/class-settings.php:499 core/class-settings.php:512
4195
+ #: core/class-settings.php:525
4196
  msgctxt "settings"
4197
  msgid "Listing's name (with link)"
4198
  msgstr "إسم الإعلان (مع رابط)"
4199
 
4200
+ #: core/class-settings.php:474 core/class-settings.php:487
4201
+ #: core/class-settings.php:500 core/class-settings.php:513
4202
+ #: core/class-settings.php:526
4203
  msgctxt "settings"
4204
  msgid "Author's name"
4205
  msgstr "إسم الكاتب"
4206
 
4207
+ #: core/class-settings.php:475 core/class-settings.php:488
4208
+ #: core/class-settings.php:527
4209
  msgctxt "settings"
4210
  msgid "Expiration date"
4211
  msgstr "تاريخ انتهاء التاريخ"
4212
 
4213
+ #: core/class-settings.php:476
4214
  msgctxt "settings"
4215
  msgid "Category that is going to expire"
4216
  msgstr "التصنيف الذي سوف ينتهي"
4217
 
4218
+ #: core/class-settings.php:477 core/class-settings.php:490
4219
+ #: core/class-settings.php:529
4220
  msgctxt "settings"
4221
  msgid "Link to renewal page"
4222
  msgstr "رابط إلى صفحة التجديد"
4223
 
4224
+ #: core/class-settings.php:478 core/class-settings.php:491
4225
+ #: core/class-settings.php:503 core/class-settings.php:516
4226
+ #: core/class-settings.php:530
4227
  msgctxt "settings"
4228
  msgid "Link to your site"
4229
  msgstr "رابط إلى موقعك"
4230
 
4231
+ #: core/class-settings.php:481
4232
  msgctxt "admin settings"
4233
  msgid "Listing Renewal e-mail message"
4234
  msgstr "رسالة البريد الإلكتروني لتجديد الإعلان"
4235
 
4236
+ #: core/class-settings.php:485
4237
  msgctxt "settings"
4238
  msgid ""
4239
+ "Sent at the time of listing expiration. Applies to non-recurring renewals "
4240
+ "only."
4241
  msgstr ""
4242
  "ترسل وقت انتهاء تاريخ الإعلان. تنطبق على عمليات التجديد غير المتكررة فقط."
4243
 
4244
+ #: core/class-settings.php:489 core/class-settings.php:528
4245
  msgctxt "settings"
4246
  msgid "Category that expired"
4247
  msgstr "التصنيف الذي انتهى وقته"
4248
 
4249
+ #: core/class-settings.php:494
4250
  msgctxt "admin settings"
4251
  msgid "Listing auto-renewal reminder (recurring payments)"
4252
  msgstr "تذكير بالتجديد التلقائي للإعلان (الدفعات المتكررة)"
4253
 
4254
+ #: core/class-settings.php:498
4255
  msgctxt "settings"
4256
  msgid ""
4257
  "Sent some time before the listing is auto-renewed. Applies to recurring "
4260
  "ترسل أحيانا قبل التجديد التلقائي للإعلان. تنطبق على عمليات التجديد المتكررة "
4261
  "فقط."
4262
 
4263
+ #: core/class-settings.php:501 core/class-settings.php:515
4264
  msgctxt "settings"
4265
  msgid "Renewal date"
4266
  msgstr "تاريخ التجديد"
4267
 
4268
+ #: core/class-settings.php:502
4269
  msgctxt "settings"
4270
  msgid "Category that is going to be renewed"
4271
  msgstr "التصنيف الذي سيتم تجديده"
4272
 
4273
+ #: core/class-settings.php:504
4274
  msgctxt "settings"
4275
  msgid "Link to manage subscriptions"
4276
  msgstr "رابط لإدارة الاشتراكات"
4277
 
4278
+ #: core/class-settings.php:507
4279
  msgctxt "admin settings"
4280
  msgid "Listing Renewal e-mail message (recurring payments)"
4281
  msgstr "رسالة البريد الإلكتروني لتجديد الإعلان (الدفعات المتكررة)"
4282
 
4283
+ #: core/class-settings.php:511
4284
  msgctxt "settings"
4285
  msgid ""
4286
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4287
  msgstr ""
4288
  "ترسل بعد التجديد التلقائي للإعلان. تنطبق على عمليات التجديد المتكررة فقط."
4289
 
4290
+ #: core/class-settings.php:514
4291
  msgctxt "settings"
4292
  msgid "Renewed category"
4293
  msgstr "تم تجديد التصنيف"
4294
 
4295
+ #: core/class-settings.php:520
4296
  msgctxt "admin settings"
4297
  msgid "Renewal reminder e-mail message"
4298
  msgstr "رسالة البريد الإلكتروني للتذكير بالتجديد"
4299
 
4300
+ #: core/class-settings.php:524
4301
  msgctxt "settings"
4302
  msgid ""
4303
  "Sent some time after listing expiration and when no renewal has occurred. "
4306
  "ترسل أحيانا بعد انتهاء تاريخ الإعلان وحينما لا يتم التجديد. تنطبق على عمليات "
4307
  "التجديد المتكررة وغير المتكررة."
4308
 
4309
+ #: core/class-settings.php:534
4310
  msgctxt "admin settings"
4311
  msgid "Payment"
4312
  msgstr "الدفع"
4313
 
4314
+ #: core/class-settings.php:535
4315
  msgctxt "admin settings"
4316
  msgid "Payment Settings"
4317
  msgstr "إعدادات الدفع"
4318
 
4319
+ #: core/class-settings.php:538
4320
  msgctxt "admin settings"
4321
  msgid "Turn On payments?"
4322
  msgstr "تشغيل الدفعات؟"
4323
 
4324
+ #: core/class-settings.php:540
4325
  msgctxt "admin settings"
4326
  msgid "Put payment gateways in test mode?"
4327
  msgstr "وضع بوابات الدفع في وضع الاختبار؟"
4328
 
4329
+ #: core/class-settings.php:545
4330
  msgctxt "admin settings"
4331
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4332
  msgstr "تنفيذ إنهاء الشراء على الإصدار الآمن (HTTPS) لموقع الويب الخاص بك؟"
4333
 
4334
+ #: core/class-settings.php:548
4335
  msgctxt "admin settings"
4336
  msgid ""
4337
  "Recommended for added security. For this to work you need to enable HTTPS on "
4338
  "your server and <a>obtain an SSL certificate</a>."
4339
  msgstr ""
4340
+ "موصى به لأمن أكثر. لكي يعمل هذا أنت بحاجة إلى تمكين HTTPS على الخادم الخاص "
4341
+ "بك و <a>الحصول على شهادة SSL</a>."
4342
 
4343
+ #: core/class-settings.php:552
4344
  msgctxt "admin settings"
4345
  msgid "Currency Code"
4346
  msgstr "رمز العملة"
4347
 
4348
+ #: core/class-settings.php:554
4349
  msgctxt "admin settings"
4350
  msgid "Australian Dollar (AUD)"
4351
  msgstr "الدولار الأسترالي (AUD)"
4352
 
4353
+ #: core/class-settings.php:555
4354
  msgctxt "admin settings"
4355
  msgid "Brazilian Real (BRL)"
4356
  msgstr "الريال البرازيلي (BRL)"
4357
 
4358
+ #: core/class-settings.php:556
4359
  msgctxt "admin settings"
4360
  msgid "Canadian Dollar (CAD)"
4361
  msgstr "الدولار الكندي (CAD)"
4362
 
4363
+ #: core/class-settings.php:557
4364
  msgctxt "admin settings"
4365
  msgid "Czech Koruna (CZK)"
4366
  msgstr "الكورونا التشيكية (CZK)"
4367
 
4368
+ #: core/class-settings.php:558
4369
  msgctxt "admin settings"
4370
  msgid "Danish Krone (DKK)"
4371
  msgstr "الكرونة الدانماركية (DKK)"
4372
 
4373
+ #: core/class-settings.php:559
4374
  msgctxt "admin settings"
4375
  msgid "Euro (EUR)"
4376
  msgstr "اليورو (EUR)"
4377
 
4378
+ #: core/class-settings.php:560
4379
  msgctxt "admin settings"
4380
  msgid "Hong Kong Dollar (HKD)"
4381
  msgstr "دولار هونج كونج (HKD)"
4382
 
4383
+ #: core/class-settings.php:561
4384
  msgctxt "admin settings"
4385
  msgid "Hungarian Forint (HUF)"
4386
  msgstr "الفورنت الهنغاري (HUF)"
4387
 
4388
+ #: core/class-settings.php:562
4389
  msgctxt "admin settings"
4390
  msgid "Israeli New Shequel (ILS)"
4391
  msgstr "الشكيل الإسرائيلي الجديد (ILS)"
4392
 
4393
+ #: core/class-settings.php:563
4394
  msgctxt "admin settings"
4395
  msgid "Japanese Yen (JPY)"
4396
  msgstr "الين الياباني (JPY)"
4397
 
4398
+ #: core/class-settings.php:564
4399
  msgctxt "admin settings"
4400
  msgid "Malasian Ringgit (MYR)"
4401
  msgstr "الرينغيت الماليزي (MYR)"
4402
 
4403
+ #: core/class-settings.php:565
4404
  msgctxt "admin settings"
4405
  msgid "Mexican Peso (MXN)"
4406
  msgstr "بيزو مكسيكي (MXN)"
4407
 
4408
+ #: core/class-settings.php:566
4409
  msgctxt "admin settings"
4410
  msgid "Norwegian Krone (NOK)"
4411
  msgstr "الكرون النرويجي (NOK)"
4412
 
4413
+ #: core/class-settings.php:567
4414
  msgctxt "admin settings"
4415
  msgid "New Zealand Dollar (NZD)"
4416
  msgstr "الدولار النيوزيلندي (NZD)"
4417
 
4418
+ #: core/class-settings.php:568
4419
  msgctxt "admin settings"
4420
  msgid "Philippine Peso (PHP)"
4421
  msgstr "بيزو فلبيني (PHP)"
4422
 
4423
+ #: core/class-settings.php:569
4424
  msgctxt "admin settings"
4425
  msgid "Polish Zloty (PLN)"
4426
  msgstr "الزلوتي البولندي (PLN)"
4427
 
4428
+ #: core/class-settings.php:570
4429
  msgctxt "admin settings"
4430
  msgid "Pound Sterling (GBP)"
4431
  msgstr "الجنيه الإسترليني (GBP)"
4432
 
4433
+ #: core/class-settings.php:571
4434
  msgctxt "admin settings"
4435
  msgid "Singapore Dollar (SGD)"
4436
  msgstr "دولار سنغافوري (SGD)"
4437
 
4438
+ #: core/class-settings.php:572
4439
  msgctxt "admin settings"
4440
  msgid "Swedish Krona (SEK)"
4441
  msgstr "الكرونا السويدية (SEK)"
4442
 
4443
+ #: core/class-settings.php:573
4444
  msgctxt "admin settings"
4445
  msgid "Swiss Franc (CHF)"
4446
  msgstr "الفرنك السويسري (CHF)"
4447
 
4448
+ #: core/class-settings.php:574
4449
  msgctxt "admin settings"
4450
  msgid "Taiwan Dollar (TWD)"
4451
  msgstr "الدولار التايواني (TWD)"
4452
 
4453
+ #: core/class-settings.php:575
4454
  msgctxt "admin settings"
4455
  msgid "Thai Baht (THB)"
4456
  msgstr "البات التايلندي (THB)"
4457
 
4458
+ #: core/class-settings.php:576
4459
  msgctxt "admin settings"
4460
  msgid "Turkish Lira (TRY)"
4461
  msgstr "الليرة التركية (TRY)"
4462
 
4463
+ #: core/class-settings.php:577
4464
  msgctxt "admin settings"
4465
  msgid "U.S. Dollar (USD)"
4466
  msgstr "الدولار الأمريكي (USD)"
4467
 
4468
+ #: core/class-settings.php:581
4469
  msgctxt "admin settings"
4470
  msgid "Currency Symbol"
4471
  msgstr "رمز العملة"
4472
 
4473
+ #: core/class-settings.php:586
4474
  msgctxt "admin settings"
4475
  msgid "Currency symbol display"
4476
  msgstr "عرض رمز العملة"
4477
 
4478
+ #: core/class-settings.php:590
4479
  msgctxt "admin settings"
4480
  msgid "Show currency symbol on the left"
4481
  msgstr "إظهار رمز العملة على اليسار"
4482
 
4483
+ #: core/class-settings.php:591
4484
  msgctxt "admin settings"
4485
  msgid "Show currency symbol on the right"
4486
  msgstr "إظهار رمز العملة على اليمين"
4487
 
4488
+ #: core/class-settings.php:592
4489
  msgctxt "admin settings"
4490
  msgid "Do not show currency symbol"
4491
  msgstr "عدم إظهار رمز العملة"
4492
 
4493
+ #: core/class-settings.php:594
4494
  msgctxt "admin settings"
4495
  msgid "Thank you for payment message"
4496
  msgstr "رسالة الشكر على الدفع"
4497
 
4498
+ #: core/class-settings.php:595
4499
  msgctxt "admin settings"
4500
  msgid ""
4501
  "Thank you for your payment. Your payment is being verified and your listing "
4504
  "شكرا لك على الدفع. يتم الآن التحقق من الدفع وفحص إعلانك. يمكن أن تأخذ عملية "
4505
  "التحقق والمراجعة مدة 48 ساعة."
4506
 
4507
+ #: core/class-settings.php:600
4508
  msgctxt "admin settings"
4509
  msgid "Ask users to come back for abandoned payments?"
4510
  msgstr "أطلب من الأعضاء العودة للمدفوعات المتخلى عنها؟"
4511
 
4512
+ #: core/class-settings.php:603
4513
  msgctxt "admin settings"
4514
  msgid ""
4515
  "An abandoned payment is when a user attempts to place a listing and gets to "
4516
+ "the end, but fails to complete their payment for the listing. This results "
4517
+ "in listings that look like they failed, when the user simply didn't complete "
4518
+ "the transaction. BD can remind them to come back and continue."
4519
  msgstr ""
4520
+ "دفعة مهجورة هي عندما يحاول عضو وضع إعلان ويصل إلى النهاية، ولكنه يفشل في "
4521
+ "إتمام الدفع للإعلان. هذا ينتج عنه أن الإعلانات تبدو وكأنها فشلت، وذلك عندما "
4522
+ "لا يكمل العضو المعاملة ببساطة. دليل الأعمال يستطيع تذكيرهم للعودة والاستمرار."
4523
 
4524
+ #: core/class-settings.php:609
4525
  msgctxt "admin settings"
4526
  msgid "Listing abandonment threshold (hours)"
4527
  msgstr "عتبة التخلي على الإعلان (ساعات)"
4528
 
4529
+ #: core/class-settings.php:614
4530
  msgctxt "admin settings"
4531
  msgid ""
4532
  "Listings with pending payments are marked as abandoned after this time. You "
4533
  "can also <a>customize the e-mail</a> users receive."
4534
  msgstr ""
4535
+ "الإعلانات مع الدفعات المعلقة تعد متخلى عنها بعد هذا الوقت. يمكنك أيضا "
4536
+ "<a>تخصيص البريد الإلكتروني</a> الذي يتلقاه الأعضاء."
4537
 
4538
+ #: core/class-settings.php:619
4539
  msgctxt "admin settings"
4540
  msgid "Themes"
4541
  msgstr "القوالب"
4542
 
4543
+ #: core/class-settings.php:621
4544
  msgctxt "admin settings"
4545
  msgid "You can manage your themes on <a>Directory Themes</a>."
4546
  msgstr "يمكنك إدارة قوالبك في <a>قوالب الدليل</a>."
4547
 
4548
+ #: core/class-settings.php:626
4549
  msgctxt "admin settings"
4550
  msgid "Theme button style"
4551
  msgstr "نمط زر القالب"
4552
 
4553
+ #: core/class-settings.php:630
4554
  msgctxt "admin settings"
4555
  msgid "Use the BD theme style for BD buttons"
4556
  msgstr "إستخدم نمط قالب دليل الأعمال لأزرار دليل الأعمال"
4557
 
4558
+ #: core/class-settings.php:631
4559
  msgctxt "admin settings"
4560
  msgid "Use the WP theme style for BD buttons"
4561
  msgstr "إستخدم نمط قالب ووردبريس لأزرار دليل الأعمال"
4562
 
4563
+ #: core/class-settings.php:638
4564
  msgctxt "admin settings"
4565
  msgid "Image"
4566
  msgstr "الصورة"
4567
 
4568
+ #: core/class-settings.php:639
4569
  msgctxt "admin settings"
4570
  msgid ""
4571
  "Any changes to these settings will affect new listings only. Existing "
4572
  "listings will not be affected. If you wish to change existing listings, you "
4573
+ "will need to re-upload the image(s) on that listing after changing things "
4574
+ "here."
4575
  msgstr ""
4576
  "أية تغييرات على هذه الإعدادات سوف تؤثر على الإعلانات الجديدة فقط. الإعلانات "
4577
  "الموجودة لن تتأثر. إذا كنت ترغب في تغيير الإعلانات الحالية، تحتاج إلى إعادة "
4578
  "تحميل الصورة (الصور) إلى تلك الإعلانات بعد تغيير الأشياء هنا."
4579
 
4580
+ #: core/class-settings.php:640
4581
  msgctxt "admin settings"
4582
  msgid "Image Settings"
4583
  msgstr "إعدادات الصورة"
4584
 
4585
+ #: core/class-settings.php:641
4586
  msgctxt "admin settings"
4587
  msgid "Allow images?"
4588
  msgstr "السماح بالصور؟"
4589
 
4590
+ #: core/class-settings.php:643
4591
  msgctxt "admin settings"
4592
  msgid "Min Image File Size (KB)"
4593
  msgstr "أقل حجم لملف الصورة (KB)"
4594
 
4595
+ #: core/class-settings.php:644
4596
  msgctxt "admin settings"
4597
  msgid "Max Image File Size (KB)"
4598
  msgstr "أقصى حجم لملف الصورة (KB)"
4599
 
4600
+ #: core/class-settings.php:646
4601
  msgctxt "admin settings"
4602
  msgid "Min image width (px)"
4603
  msgstr "أقل عرض للصورة (px)"
4604
 
4605
+ #: core/class-settings.php:647
4606
  msgctxt "admin settings"
4607
  msgid "Min image height (px)"
4608
  msgstr "أقل ارتفاع للصورة (px)"
4609
 
4610
+ #: core/class-settings.php:649
4611
  msgctxt "admin settings"
4612
  msgid "Max image width (px)"
4613
  msgstr "أقصى عرض للصورة (px)"
4614
 
4615
+ #: core/class-settings.php:650
4616
  msgctxt "admin settings"
4617
  msgid "Max image height (px)"
4618
  msgstr "أقصى ارتفاع للصورة (px)"
4619
 
4620
+ #: core/class-settings.php:652
4621
  msgctxt "admin settings"
4622
  msgid "Turn on thickbox/lightbox?"
4623
  msgstr "تشغيل thickbox/lightbox؟"
4624
 
4625
+ #: core/class-settings.php:652
4626
  msgctxt "admin settings"
4627
  msgid ""
4628
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4630
  "قم بإلغاء التحديد إذا كان يتعارض مع العناصر الأخرى أو الإضافات المثبتة على "
4631
  "موقعك"
4632
 
4633
+ #: core/class-settings.php:654
4634
  msgctxt "admin settings"
4635
  msgid "Thumbnails"
4636
  msgstr "الصور المصغرة"
4637
 
4638
+ #: core/class-settings.php:655
4639
  msgctxt "admin settings"
4640
  msgid "Thumbnail width (px)"
4641
  msgstr "عرض الصور المصغرة (px)"
4642
 
4643
+ #: core/class-settings.php:656
4644
  msgctxt "admin settings"
4645
  msgid "Thumbnail height (px)"
4646
  msgstr "ارتفاع الصورة المصغرة (px)"
4647
 
4648
+ #: core/class-settings.php:659
4649
  msgctxt "admin settings"
4650
  msgid "Crop thumbnails to exact dimensions?"
4651
  msgstr "قطع الصور المصغرة للأبعاد المناسبة؟"
4652
 
4653
+ #: core/class-settings.php:662
4654
  msgctxt "admin settings"
4655
  msgid ""
4656
  "When enabled images will match exactly the dimensions above but part of the "
4658
  "match the specified width and their height will be adjusted proportionally. "
4659
  "Depending on the uploaded images, thumbnails may have different heights."
4660
  msgstr ""
4661
+ "عند تمكين الصور ستطابق تماما الأبعاد أعلاه لكن جزءا من الصورة يمكن أن يقطع. "
4662
+ "في حالة تعطيلها، سيتم تغيير حجم الصور المصغرة لمطابقة العرض المحدد وسيتم "
4663
+ "تعديل الارتفاع بشكل متناسب. اعتماداً على الصور المرفوعة, قد تكون ارتفاعات "
4664
+ "الصور المصغرة مختلفة."
4665
 
4666
+ #: core/class-settings.php:668
4667
  msgctxt "admin settings"
4668
  msgid "Number of free images"
4669
  msgstr "عدد الصور المجانية"
4670
 
4671
+ #: core/class-settings.php:673
4672
  msgctxt "admin settings"
4673
  msgid ""
4674
+ "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4675
+ "a> instead of this setting, which is ignored for paid listings."
4676
  msgstr ""
4677
+ "بالنسبة لصور الإعلانات المدفوعة، قم بإعدادها بإضافة أو تحرير <a>رسوم الخطة</"
4678
+ "a> بدلاً من هذا الإعداد، الذي هو تجاهل الإعلانات المدفوعة."
4679
 
4680
+ #: core/class-settings.php:676
4681
  msgctxt "admin settings"
4682
  msgid "Use default picture for listings with no picture?"
4683
  msgstr "إستخدام الصورة الافتراضية للإعلانات التي بلا صورة؟"
4684
 
4685
+ #: core/class-settings.php:677
4686
  msgctxt "admin settings"
4687
  msgid "Show Thumbnail on main listings page?"
4688
  msgstr "إظهار صورة مصغرة في صفحة الإعلانات الرئيسية؟"
4689
 
4690
+ #: core/class-settings.php:706
4691
  msgctxt "admin settings"
4692
  msgid "User"
4693
  msgstr "عضو"
4694
 
4695
+ #: core/class-settings.php:707
4696
  msgctxt "admin settings"
4697
  msgid "User registration date"
4698
  msgstr "تاريخ تسجيل العضو"
4699
 
4700
+ #: core/class-settings.php:733
4701
  msgctxt "admin settings"
4702
  msgid ""
4703
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4704
  "not activated."
4705
  msgstr "تعذر نسخ إضافة التوافق أجاكس \"%s\". لم يتم تفعيل وضع التوافق."
4706
 
4707
+ #: core/class-settings.php:741
4708
  msgctxt "admin settings"
4709
  msgid ""
4710
+ "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4711
+ "be created."
4712
  msgstr "لا يمكن تفعيل وضع التوافق أجاكس: تعذر إنشاء المجلد \"%s\"."
4713
 
4714
+ #: core/class-settings.php:750
4715
  msgctxt "admin settings"
4716
  msgid ""
4717
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4718
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4719
  msgstr ""
4720
+ "تعذر إزالة \"إضافة دليل الأعمال – وحدة التوافق أجاكس\". المرجو إزالة الملف "
4721
+ "\"%s\" يدوياً أو قم بإلغاء تفعيل الإضافة."
4722
 
4723
+ #: core/class-settings.php:1070
4724
  msgctxt "settings"
4725
  msgid "Deactivate License"
4726
  msgstr "تعطيل الترخيص"
4727
 
4728
+ #: core/class-settings.php:1072
4729
  msgctxt "settings"
4730
  msgid "Deactivating license..."
4731
  msgstr "ترخيص معطل..."
4732
 
4733
+ #: core/class-settings.php:1075
4734
  msgctxt "settings"
4735
  msgid "Activate License"
4736
  msgstr "تفعيل الترخيص"
4737
 
4738
+ #: core/class-settings.php:1077
4739
  msgctxt "settings"
4740
  msgid "Activating license..."
4741
  msgstr "ترخيص مفعل..."
4742
 
4743
+ #: core/class-settings.php:1100
4744
  msgctxt "admin settings"
4745
  msgid "Valid placeholders: %s"
4746
  msgstr "العناصر النائبة صالحة: %s"
4747
 
4748
+ #: core/class-settings.php:1134
4749
  msgctxt "settings email"
4750
  msgid "Click to edit e-mail"
4751
  msgstr "إضغط لتعديل البريد الإلكتروني"
4752
 
4753
+ #: core/class-settings.php:1135
4754
  msgctxt "settings email"
4755
  msgid "Click to edit"
4756
  msgstr "اضغط لتعديل"
4757
 
4758
+ #: core/class-settings.php:1148
4759
  msgctxt "settings email"
4760
  msgid "E-Mail Subject"
4761
  msgstr "عنوان البريد الإلكتروني"
4762
 
4763
+ #: core/class-settings.php:1159
4764
  msgctxt "settings email"
4765
  msgid "E-Mail Body"
4766
  msgstr "نص البريد الإلكتروني"
4767
 
4768
+ #: core/class-settings.php:1170
4769
  msgctxt "settings email"
4770
  msgid "You can use the following placeholders:"
4771
  msgstr "يمكنك استخدام العناصر النائبة التالية:"
4772
 
4773
+ #: core/class-settings.php:1193
4774
  msgctxt "settings email"
4775
  msgid "Preview e-mail"
4776
  msgstr "معاينة البريد الإلكتروني"
4777
 
4778
+ #: core/class-settings.php:1194
4779
  msgctxt "settings email"
4780
  msgid "Cancel"
4781
  msgstr "إلغاء"
4782
 
4783
+ #: core/class-settings.php:1195
4784
  msgctxt "settings email"
4785
  msgid "Save Changes"
4786
  msgstr "حفظ التعديلات"
4787
 
4788
+ #: core/class-settings.php:1214
4789
  msgctxt "settings email"
4790
  msgid "Site title"
4791
  msgstr "إسم الموقع"
4792
 
4793
+ #: core/class-settings.php:1217
4794
  msgctxt "settings email"
4795
  msgid "Site title (with link)"
4796
  msgstr "إسم الموقع (مع الرابط)"
4797
 
4798
+ #: core/class-settings.php:1220
4799
  msgctxt "settings email"
4800
  msgid "Site address (with link)"
4801
  msgstr "عنوان الموقع (مع الرابط)"
4802
 
4803
+ #: core/class-settings.php:1223
4804
  msgctxt "settings email"
4805
  msgid "Directory URL (with link)"
4806
  msgstr "رابط URL الدليل (مع الرابط)"
4807
 
4808
+ #: core/class-settings.php:1226
4809
  msgctxt "settings email"
4810
  msgid "Current date"
4811
  msgstr "التاريخ الحالي"
4812
 
4813
+ #: core/class-settings.php:1229
4814
  msgctxt "settings email"
4815
  msgid "Current time"
4816
  msgstr "الوقت الحالي"
5017
  #: core/fieldtypes/class-fieldtypes-textarea.php:56
5018
  msgctxt "admin form-fields"
5019
  msgid ""
5020
+ "Enabling iframe support in your listings can allow users to execute "
5021
+ "arbitrary scripts on a page if they want, which can possibly infect your "
5022
+ "site with malware. We do NOT recommend using this setting UNLESS you are "
5023
+ "posting the listings yourself and have sole control over the content. Are "
5024
+ "you sure you want to enable this?"
5025
  msgstr ""
5026
  "تمكين دعم iframe في الإعلانات يسمح للأعضاء بتنفيذ سكربتات تعسفية على الصفحة "
5027
  "إذا كانوا يريدون، والتي ربما يمكن أن تصيب موقعك بالبرامج الضارة. لا نوصي "
5051
  #: core/fieldtypes/class-fieldtypes-textarea.php:69
5052
  msgctxt "form-fields admin"
5053
  msgid ""
5054
+ "<b>Warning:</b> Users can use this feature to get around your image limits "
5055
+ "in fee plans."
5056
  msgstr ""
5057
  "<b>تحذير:</b> يمكن للأعضاء استخدام هذه الميزة للقيام بتحايل على قيود الصورة "
5058
  "الخاصة بك في رسوم الخطط.."
5076
  msgid "Apply \"the_content\" filter before displaying this field?"
5077
  msgstr "تطبيق عامل تصفية \"the_content\" قبل عرض هذا الحقل؟"
5078
 
5079
+ #: core/fieldtypes/class-fieldtypes-textarea.php:79
5080
+ msgctxt "form-fields admin"
5081
+ msgid "Automatically generate excerpt from content field?"
5082
+ msgstr "تلقائياً إنشاء مقتطفات من حقل المحتوى؟"
5083
+
5084
  #: core/fieldtypes/class-fieldtypes-textfield.php:5
5085
  msgctxt "form-fields api"
5086
  msgid "Textfield"
5156
  msgid "Custom"
5157
  msgstr "تخصيص"
5158
 
5159
+ #: core/form-fields.php:318
5160
  msgid "Business Name"
5161
  msgstr "الإسم"
5162
 
5163
+ #: core/form-fields.php:320
5164
  msgid "Business Genre"
5165
  msgstr "التصنيف"
5166
 
5167
+ #: core/form-fields.php:322
5168
  msgid "Short Business Description"
5169
  msgstr "وصف قصير"
5170
 
5171
+ #: core/form-fields.php:324
5172
  msgid "Long Business Description"
5173
  msgstr "وصف مطول"
5174
 
5175
+ #: core/form-fields.php:326
5176
  msgid "Business Website Address"
5177
  msgstr "عنوان الموقع"
5178
 
5179
+ #: core/form-fields.php:328
5180
  msgid "Business Phone Number"
5181
  msgstr "رقم الهاتف"
5182
 
5183
+ #: core/form-fields.php:330
5184
  msgid "Business Fax"
5185
  msgstr "رقم الفاكس"
5186
 
5187
+ #: core/form-fields.php:332
5188
  msgid "Business Contact Email"
5189
  msgstr "البريد الإلكتروني"
5190
 
5191
+ #: core/form-fields.php:334
5192
  msgid "Business Tags"
5193
  msgstr "الوسوم"
5194
 
5195
+ #: core/form-fields.php:336
5196
  msgid "Business Address"
5197
  msgstr "العنوان"
5198
 
5199
+ #: core/form-fields.php:338
5200
  msgid "ZIP Code"
5201
  msgstr "الرمز البريدي"
5202
 
5203
+ #: core/form-fields.php:458
5204
  msgctxt "form-fields-api"
5205
  msgid "Email Validator"
5206
  msgstr "المصادقة على البريد الإلكتروني"
5207
 
5208
+ #: core/form-fields.php:459
5209
  msgctxt "form-fields-api"
5210
  msgid "URL Validator"
5211
  msgstr "المصادقة على URL"
5212
 
5213
+ #: core/form-fields.php:460
5214
  msgctxt "form-fields-api"
5215
  msgid "Whole Number Validator"
5216
  msgstr "المصادقة على رقم صحيح"
5217
 
5218
+ #: core/form-fields.php:461
5219
  msgctxt "form-fields-api"
5220
  msgid "Decimal Number Validator"
5221
  msgstr "المصادقة على رقم عشري"
5222
 
5223
+ #: core/form-fields.php:462
5224
  msgctxt "form-fields-api"
5225
  msgid "Date Validator"
5226
  msgstr "المصادقة على التاريخ"
5227
 
5228
+ #: core/form-fields.php:469
5229
  msgctxt "form-fields-api validation"
5230
  msgid "Field"
5231
  msgstr "حقل"
5232
 
5233
+ #: core/form-fields.php:485 core/form-fields.php:489
5234
  msgctxt "form-fields-api validation"
5235
  msgid "%s is required."
5236
  msgstr "%s مطلوب."
5237
 
5238
+ #: core/form-fields.php:498 core/form-fields.php:505
5239
  msgctxt "form-fields-api validation"
5240
  msgid "%s is badly formatted. Valid URL format required. Include http://"
5241
  msgstr "%s مهيأ بشكل سيئ. المطلوب تنسيق URL صالح. يتضمن http://"
5242
 
5243
+ #: core/form-fields.php:519
5244
  msgctxt "form-fields-api validation"
5245
  msgid "%s is badly formatted. Valid Email format required."
5246
  msgstr "%s مهيأ بشكل سيئ. المطلوب تنسيق بريد إلكتروني صالح."
5247
 
5248
+ #: core/form-fields.php:525
5249
  msgctxt "form-fields-api validation"
5250
  msgid "%s must be a number. Decimal values are not allowed."
5251
  msgstr "%s يجب أن تكون عددا. لا يسمح بالقيم العشرية."
5252
 
5253
+ #: core/form-fields.php:531
5254
  msgctxt "form-fields-api validation"
5255
  msgid "%s must be a number."
5256
  msgstr "%s يجب أن تكون عددا."
5257
 
5258
+ #: core/form-fields.php:544
5259
  msgctxt "form-fields-api validation"
5260
  msgid "%s must be in the format %s."
5261
  msgstr "%s يجب أن يكون بتنسيق %s."
5262
 
5263
+ #: core/form-fields.php:579
5264
  msgctxt "form-fields-api validation"
5265
  msgid "%s must be a valid date."
5266
  msgstr "%s يجب أن يكون تاريخاً صالحاً."
5267
 
5268
+ #: core/form-fields.php:590
5269
  msgctxt "form-fields-api validation"
5270
  msgid "%s is invalid. Value most be one of %s."
5271
  msgstr "%s غير صالح. يجب أن تكون القيمة واحدة من %s."
5295
  #: core/gateways-authorize-net.php:92
5296
  msgctxt "authorize-net"
5297
  msgid ""
5298
+ "The payment gateway didn't accept your credit card or billing information. "
5299
+ "The following reason was given: \"%s\"."
5300
  msgstr ""
5301
  "لم تقبل بوابة الدفع بطاقة الائتمان أو معلومات الفوترة الخاصة بك. وذلك للسبب "
5302
  "التالي: \"%s\"."
5404
  msgid "Default Fee"
5405
  msgstr "رسوم افتراضية"
5406
 
5407
+ #: core/installer.php:486
5408
  msgctxt "installer"
5409
  msgid ""
5410
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
5411
+ "incompatible with the current version of Business Directory. Please update "
5412
+ "the Regions module."
5413
  msgstr ""
5414
  "تم تعطيل <b>إضافة دليل الأعمال - وحدة المناطق</b> لأنه غير متوافق مع الإصدار "
5415
  "الحالي من الإضافة. يرجى تحديث وحدة المناطق."
5416
 
5417
+ #: core/installer.php:552
5418
  msgctxt "installer"
5419
  msgid "Cleaning up listing fees information... %d/%d"
5420
  msgstr "تنظيف معلومات رسوم الإعلانات...%d/%d"
5421
 
5422
+ #: core/installer.php:602
5423
  msgctxt "installer"
5424
  msgid "Migrating previous transactions to new Payments API... %d/%d"
5425
  msgstr "نقل المعاملات السابقة إلى المدفوعات الجديدة API ...%d/%d"
5426
 
5427
+ #: core/installer.php:631
5428
  msgctxt "installer"
5429
  msgid "Initial listing payment (BD < 3.4)"
5430
  msgstr "دفعة الإعلان الأولية (BD < 3.4)"
5431
 
5432
+ #: core/installer.php:642
5433
  msgctxt "installer"
5434
  msgid "Listing edit payment (BD < 3.4)"
5435
  msgstr "دفعة تحرير الإعلان (BD < 3.4)"
5436
 
5437
+ #: core/installer.php:663
5438
  msgctxt "installer"
5439
  msgid "Renewal fee \"%s\" for category \"%s\""
5440
  msgstr "رسوم التجديد \"%s\" للتصنيف \"%s\""
5441
 
5442
+ #: core/installer.php:682
5443
  msgctxt "installer"
5444
  msgid "Listing upgrade to featured"
5445
  msgstr "الترقية الى إعلان مميز"
5446
 
5447
+ #: core/installer.php:941
5448
  msgid "Business Directory - Manual Upgrade Required"
5449
  msgstr "دليل الأعمال - ترقية يدوية مطلوبة"
5450
 
5451
+ #: core/installer.php:943
5452
  msgid ""
5453
+ "Business Directory features are currently disabled because the plugin needs "
5454
+ "to perform a manual upgrade before continuing."
5455
  msgstr ""
5456
+ "تم تعطيل ميزات دليل الأعمال حاليا بسبب أن الإضافة تحتاج إلى إجراء ترقية "
5457
+ "يدوية قبل المتابعة."
5458
 
5459
+ #: core/installer.php:945
5460
  msgid "Perform Manual Upgrade"
5461
  msgstr "أداء ترقية يدوية"
5462
 
5463
+ #: core/installer.php:961 core/installer.php:962 core/installer.php:973
5464
  msgid "Business Directory - Manual Upgrade"
5465
  msgstr "دليل الأعمال - ترقية يدوية"
5466
 
5467
+ #: core/installer.php:977
5468
  msgid ""
5469
+ "Business Directory features are currently disabled because the plugin needs "
5470
+ "to perform a manual upgrade before it can be used."
5471
  msgstr ""
5472
+ "تم تعطيل ميزات دليل الأعمال حاليا بسبب أن الإضافة تحتاج إلى إجراء ترقية "
5473
+ "يدوية قبل أن تصلح للاستخدام."
5474
 
5475
+ #: core/installer.php:979
5476
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5477
  msgstr "إضغط على \"إبدأ الترقية\" وانتظر حتى انتهاء العملية."
5478
 
5479
+ #: core/installer.php:982
5480
  msgctxt "manual-upgrade"
5481
  msgid "Start Upgrade"
5482
  msgstr "بدء الترقية"
5483
 
5484
+ #: core/installer.php:984
5485
  msgctxt "manual-upgrade"
5486
  msgid "Pause Upgrade"
5487
  msgstr "توقيف الترقية"
5488
 
5489
+ #: core/installer.php:990
5490
  msgctxt "manual-upgrade"
5491
  msgid ""
5492
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
5493
  "available."
5494
  msgstr "تم إجراء الترقية بنجاح. إضافة دليل الأعمال متاحة الآن."
5495
 
5496
+ #: core/installer.php:993
5497
  msgctxt "manual-upgrade"
5498
  msgid "Go to \"Directory Admin\""
5499
  msgstr "إنتقل إلى \"مشرف الدليل\""
5547
  #: core/licensing.php:258
5548
  msgctxt "licensing"
5549
  msgid ""
5550
+ "The license key for <span class=\"module-name\">%s %s</span> has expired. "
5551
+ "The module will continue to work but you will not receive any more updates "
5552
+ "until the license is renewed."
5553
  msgstr ""
5554
+ "انتهت صلاحية مفتاح الترخيص <span class=\"module-name\">%s %s</span>. سوف "
5555
+ "يستمر عمل الوحدة ولكن لن تتلقى أي مزيد من التحديثات حتى يتم تجديد الترخيص."
5556
 
5557
  #: core/licensing.php:262
5558
  msgctxt "licensing"
5572
  #: core/payment.php:91
5573
  msgctxt "payments-api"
5574
  msgid ""
5575
+ "You are offering featured listings but have payments turned off. Go to <a "
5576
+ "href=\"%s\">Manage Options - Payment</a> to change the payment settings. "
5577
+ "Until you change this, the <i>Upgrade to Featured</i> option will be "
5578
+ "disabled."
5579
  msgstr ""
5580
  "أنت تقدم إعلانات مميزة ولكن المدفوعات معطلة. إذهب إلى <a href=\"%s\">إدارة "
5581
  "الخيارات - الدفع</a> لتغيير إعدادات الدفع. حتى تقوم بتغيير ذلك، سيتم تعطيل "
5584
  #: core/payment.php:109
5585
  msgctxt "payments-api"
5586
  msgid ""
5587
+ "The <b>%s</b> gateway is active but not properly configured. The gateway "
5588
+ "won't be available until the following problems are fixed: <b>%s</b>. <br/> "
5589
+ "Check the <a href=\"%s\">payment settings</a>."
5590
  msgstr ""
5591
+ "البوابة <b>%s</b> مفعلة ولكن لم يتم إعدادها بشكل صحيح. البوابة لن تكون "
5592
+ "متوفرة حتى يتم إصلاح المشاكل التالية <b>%s</b>.<br/> تحقق من <a href=\"%s"
5593
+ "\">إعدادات دفع</a> ."
5594
 
5595
  #: core/payment.php:119
5596
  msgctxt "admin"
5597
  msgid ""
5598
+ "You have payments turned on but no gateway is active and properly "
5599
+ "configured. Go to <a href=\"%s\">Manage Options - Payment</a> to change the "
5600
+ "payment settings. Until you change this, the directory will operate in "
5601
+ "<i>Free Mode</i>."
5602
  msgstr ""
5603
+ "لديك مدفوعات مشغلة ولكن لا توجد بوابة مفعلة ومعدة بشكل صحيح. إذهب إلى <a "
5604
+ "href=\"%s\">إدارة الخيارات - الدفع</a> لتغيير إعدادات الدفع. حتى تقوم بتغيير "
5605
+ "ذلك، فإن الدليل سيعمل بـ <i>الوضع المجاني.</i>"
5606
 
5607
  #: core/payment.php:123
5608
  msgid ""
5627
 
5628
  #: core/payment.php:135
5629
  msgid ""
5630
+ "You have payments enabled but there are no fees available. Users won't be "
5631
+ "able to post listings. Please <a href=\"fees\">create some fees</a> or <a "
5632
+ "href=\"settings\">configure the Directory</a> to operate in \"Free Mode\"."
5633
  msgstr ""
5634
+ "المدفوعات ممكَّنة لديك ولكن ليس هناك أي رسوم متاحة. الأعضاء لن يكونوا قادرين "
5635
+ "على إضافة إعلانات. يرجى <a href=\"fees\">إنشاء بعض الرسوم</a> أو <a href="
5636
+ "\"settings\">إعداد الدليل</a> للعمل في \"الوضع المجاني\"."
5637
 
5638
  #: core/payment.php:169
5639
  msgctxt "payments-api"
5678
  #: core/payment.php:434
5679
  msgctxt "payments"
5680
  msgid ""
5681
+ "The payment has been rejected by the payment gateway. Please contact the "
5682
+ "site administrator if you think there is an error or click \"Change Payment "
5683
+ "Method\" to select another payment method and try again."
5684
  msgstr ""
5685
  "تم رفض الدفع عن طريق بوابة الدفع. يرجى الاتصال بمدير الموقع إذا كنت تعتقد أن "
5686
  "هناك خطأ أو إضغط فوق \"تغيير طريقة الدفع\" لتحديد طريقة دفع أخرى وحاول مرة "
5694
  #: core/payment.php:437
5695
  msgctxt "payments"
5696
  msgid ""
5697
+ "The payment has been rejected by the payment gateway. Please contact the "
5698
+ "site administrator if you think there is an error."
5699
  msgstr ""
5700
  "تم رفض الدفع عن طريق بوابة الدفع. يرجى الاتصال بمدير الموقع إذا كنت تعتقد أن "
5701
  "هناك خطأ."
5746
  "Your current listings are shown below. To edit a listing click the edit "
5747
  "button. To delete a listing click the delete button."
5748
  msgstr ""
5749
+ "أدناه توجد إعلاناتك الحالية. لتحرير إعلان ما إضغط على زر تحرير. لحذف إعلان "
5750
+ "ما إضغط على زر حذف."
5751
 
5752
  #: core/templates/manage_listings.tpl.php:6 templates/manage-listings.tpl.php:6
5753
  msgctxt "templates"
5777
  msgstr "لم يتم العثور على تصنيفات الإعلانات."
5778
 
5779
  #: core/templates-ui.php:185
5780
+ msgid "Directory"
5781
+ msgstr "الدليل"
5782
 
5783
  #: core/templates-ui.php:191
5784
+ msgid "View All Listings"
5785
+ msgstr "مشاهدة جميع الإعلانات"
5786
 
5787
  #: core/templates-ui.php:197
5788
+ msgid "Create A Listing"
5789
+ msgstr "إنشاء إعلان"
5790
 
5791
  #: core/templates-ui.php:224
5792
  msgctxt "templates"
5813
  msgid "(Reset)"
5814
  msgstr "(إعادة تعيين)"
5815
 
5816
+ #: core/themes.php:635
5817
  msgctxt "themes"
5818
  msgid "ZIP file is not a valid BD theme file."
5819
  msgstr "ملف الضغط ZIP ليس ملف قالب دليل الأعمال صالح."
5820
 
5821
+ #: core/themes.php:641
5822
  msgctxt "themes"
5823
  msgid "Could not create themes directory."
5824
  msgstr "تعذر إنشاء مجلد القوالب."
5825
 
5826
+ #: core/themes.php:649
5827
  msgctxt "themes"
5828
  msgid "Could not remove previous theme directory \"%s\"."
5829
  msgstr "تعذر إزالة مجلد القالب السابق \"%s\"."
5830
 
5831
+ #: core/themes.php:655
5832
  msgctxt "themes"
5833
  msgid "Could not move new theme into theme directory."
5834
  msgstr "تعذر نقل القالب الجديد الى مجلد القالب."
5835
 
5836
  #: core/utils.php:106
5837
  msgctxt "utils"
5838
+ msgid ""
5839
+ "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
5840
  msgstr ""
5841
  "تجاوزت البيانات التي تم نشرها الحد الأقصى لإعدادات PHP. أنظر توجيه "
5842
  "\"post_max_size\"."
5874
  #: core/utils.php:229
5875
  msgctxt "utils"
5876
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
5877
+ msgstr ""
5878
+ "ارتفاع الصورة (%s px) هو أقل من الحد الأدنى للارتفاع المطلوب لـ %s px "
5879
 
5880
  #: core/utils.php:235
5881
  msgctxt "utils"
5885
  #: core/utils.php:241
5886
  msgctxt "utils"
5887
  msgid "Image height (%s px) is greater than maximum required height of %s px."
5888
+ msgstr ""
5889
+ "ارتفاع الصورة (%s px) هو أكبر من الحد الأقصى للارتفاع المطلوب لـ %s px "
5890
 
5891
  #: core/utils.php:255
5892
  msgctxt "utils"
5898
  msgid ""
5899
  "There are no categories assigned to the business directory yet. You need to "
5900
  "assign some categories to the business directory. Only admins can see this "
5901
+ "message. Regular users are seeing a message that they cannot add their "
5902
+ "listing at this time. Listings cannot be added until you assign categories "
5903
+ "to the business directory."
5904
  msgstr ""
5905
+ "لا توجد تصنيفات معينة إلى دليل الأعمال حتى الآن. تحتاج إلى تعيين بعض "
5906
+ "التصنيفات إلى دليل الأعمال. المدراء فقط يمكن أن يروا هذه الرسالة. المستخدمين "
5907
+ "العاديين يرون رسالة لا يمكن إضافة الإعلانات في هذا الوقت. لا يمكن إضافة "
5908
+ "الإعلانات حتى تقوم بتعيين تصنيفات إلى دليل الأعمال."
5909
 
5910
  #: core/view-submit-listing.php:31
5911
  msgctxt "templates"
5912
  msgid ""
5913
+ "Your listing cannot be added at this time. Please try again later. If this "
5914
+ "is not the first time you see this warning, please ask the site "
5915
+ "administrator to set up one or more categories inside the Directory."
5916
  msgstr ""
5917
  "لا يمكن إضافة الإعلان الخاصة بك في هذا الوقت. يرجى المحاولة مرة أخرى لاحقاً. "
5918
  "إذا كانت هذه ليست المرة الأولى التي ترى هذا التحذير، المرجو الطلب من مدير "
5935
 
5936
  #: core/view-submit-listing.php:65
5937
  msgctxt "templates"
5938
+ msgid ""
5939
+ "You are logged in as an administrator. Any payment steps will be skipped."
5940
  msgstr "لقد تم تسجيل دخولك كمدير. سيتم تخطي أي خطوات للدفع."
5941
 
5942
  #: core/view-submit-listing.php:221
5944
  msgid "Please select a fee option for the \"%s\" category."
5945
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
5946
 
5947
+ #: core/view-submit-listing.php:299
5948
  msgctxt "templates"
5949
  msgid "Please agree to the Terms and Conditions."
5950
  msgstr "يرجى الموافقة على الشروط والأحكام."
5951
 
5952
+ #: core/view-submit-listing.php:305
5953
  msgctxt "templates"
5954
  msgid "The reCAPTCHA wasn't entered correctly."
5955
  msgstr "لم يتم إدخال reCAPTCHA بشكل صحيح."
5956
 
5957
+ #: core/view-submit-listing.php:322
5958
  msgctxt "templates"
5959
  msgid "Read our Terms and Conditions"
5960
  msgstr "إقرأ الشروط والأحكام الخاصة بنا"
5961
 
5962
+ #: core/view-submit-listing.php:327
5963
  msgctxt "templates"
5964
  msgid "Terms and Conditions:"
5965
  msgstr "شروط وأحكام:"
5966
 
5967
+ #: core/view-submit-listing.php:338
5968
  msgctxt "templates"
5969
  msgid "I agree to the Terms and Conditions"
5970
  msgstr "أوافق على الشروط والأحكام"
5971
 
5972
+ #: core/view-submit-listing.php:501 core/views/upgrade_listing.php:49
5973
  msgctxt "submit"
5974
  msgid "Listing upgrade to featured"
5975
  msgstr "الترقية الى إعلان مميز"
5976
 
5977
+ #: core/view-submit-listing.php:534
5978
  msgctxt "submit_state"
5979
  msgid "Invalid submit state."
5980
  msgstr "حالة إضافة غير صالحة"
6006
  #: core/views/checkout.php:112
6007
  msgctxt "checkout"
6008
  msgid ""
6009
+ "Your payment is being verified. This usually takes a few minutes but can "
6010
+ "take up to 24 hours."
6011
  msgstr ""
6012
  "يتم الآن التحقق من الدفع الخاص بك. هذا عادة يستغرق بضع دقائق، لكن يمكن أن "
6013
  "يستغرق مدة تصل إلى 24 ساعة."
6081
  msgid "l F j, Y \\a\\t g:i a"
6082
  msgstr "l F j, Y \\a\\t g:i a"
6083
 
6084
+ #: core/views/listing_contact.php:178
6085
+ msgctxt "contact-message"
6086
+ msgid "%s (admin: %s)"
6087
+ msgstr "%s (المدير: %s)"
6088
+
6089
+ #: core/views/listing_contact.php:191
6090
  msgctxt "contact-message"
6091
  msgid "There was a problem encountered. Your message has not been sent"
6092
  msgstr "حدثت مشكلة . لم يتم إرسال الرسالة الخاصة بك."
6093
 
6094
+ #: core/views/listing_contact.php:194
6095
  msgctxt "contact-message"
6096
  msgid "Return to listing."
6097
  msgstr "الرجوع إلى الإعلان."
6105
  "listings in the directory. Listings cannot be added until you assign "
6106
  "categories to the business directory."
6107
  msgstr ""
6108
+ "لا توجد تصنيفات معينة إلى دليل الأعمال حتى الآن. تحتاج إلى تعيين بعض "
6109
+ "التصنيفات إلى دليل الأعمال. المدراء فقط يمكن أن يروا هذه الرسالة. المستخدمين "
6110
+ "العاديين يرون رسالة لا توجد إعلانات في الدليل. لا يمكن إضافة الإعلانات حتى "
6111
+ "تقوم بتعيين تصنيفات إلى دليل الأعمال."
6112
 
6113
  #: core/views/main.php:9
6114
  msgctxt "templates"
6119
  msgctxt "templates"
6120
  msgid ""
6121
  "You have \"Hide Empty Categories\" on and some categories that don't have "
6122
+ "listings in them. That means they won't show up on the front end of your "
6123
+ "site. If you didn't want that, click <a>here</a> to change the setting."
6124
  msgstr ""
6125
  "قمت بـ \"إخفاء التصنيفات الفارغة\" وهناك بعض التصنيفات التي لا تحتوي على "
6126
  "إعلانات بداخلها. هذا يعني أنها لن تظهر على الواجهة الأمامية للموقع الخاص بك. "
6154
  #: core/views/renew_listing.php:16
6155
  msgctxt "renewal"
6156
  msgid ""
6157
+ "Your renewal ID is invalid. Please use the URL you were given on the renewal "
6158
+ "e-mail message."
6159
  msgstr ""
6160
  "معرف التجديد الخاص بك غير صالح. يرجى استخدام عنوان URL الذي أعطي لك في رسالة "
6161
  "التجديد بالبريد الإلكتروني."
6207
  #: core/views/renew_listing.php:96
6208
  msgctxt "renew"
6209
  msgid ""
6210
+ "However, if you want to cancel your subscription you can do that on this "
6211
+ "page. When the renewal time comes you'll be able to change your settings "
6212
+ "again."
6213
  msgstr ""
6214
+ "ومع ذلك، إذا كنت ترغب في إلغاء اشتراكك يمكنك عمل ذلك في هذه الصفحة. عندما "
6215
+ "يحين وقت التجديد سوف تتمكن من تغيير الإعدادات الخاصة بك مرة أخرى."
6216
 
6217
  #: core/views/request_access_keys.php:17
6218
  msgctxt "request_access_keys"
6237
  #: core/views/request_access_keys.php:32
6238
  msgctxt "request_access_keys"
6239
  msgid ""
6240
+ "An error occurred while sending the access keys to your e-mail address. "
6241
+ "Please try again."
6242
  msgstr ""
6243
+ "حدث خطأ أثناء إرسال مفاتيح الوصول إلى عنوان بريدك الإلكتروني. المرجو "
6244
+ "المحاولة مرة أخرى."
6245
 
6246
+ #: core/views/search.php:8
6247
  msgctxt "views"
6248
  msgid "Find A Listing"
6249
  msgstr "العثور على إعلان"
6253
  msgid "Submit A Listing"
6254
  msgstr "إضافة إعلان"
6255
 
6256
+ #: core/views/submit_listing.php:16
6257
+ msgctxt "templates"
6258
+ msgid ""
6259
+ "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6260
+ "Submission?\" setting checked?"
6261
+ msgstr ""
6262
+ "<b>المشاهدة غير متوفرة</b>. هل لديك \"تعطيل إضافة إعلان من واجهة الموقع؟\" "
6263
+ "محددة في الإعدادات؟"
6264
+
6265
+ #: core/views/submit_listing.php:18
6266
+ msgctxt "templates"
6267
+ msgid "View not available."
6268
+ msgstr "المشاهدة غير متوفرة."
6269
+
6270
  #: core/views/upgrade_listing.php:16
6271
  msgctxt "listing upgrade"
6272
  msgid "Invalid link followed."
6535
  #: templates/delete-listing-confirm.tpl.php:12
6536
  msgctxt "delete listing"
6537
  msgid ""
6538
+ "Please visit <a>Manage recurring payments</a> to review your current "
6539
+ "recurring payments."
6540
  msgstr ""
6541
+ "يرجى زيارة <a>إدارة المدفوعات المتكررة</a> لمراجعة المدفوعات المتكررة "
6542
+ "الحالية الخاصة بك."
6543
 
6544
  #: templates/delete-listing-confirm.tpl.php:18
6545
  msgctxt "delete listing"
6592
  msgid "(not published yet)"
6593
  msgstr "(لم تنشر بعد)"
6594
 
6595
+ #: templates/email/listing-added.tpl.php:15
6596
+ #: templates/email/listing-edited.tpl.php:15
6597
+ msgctxt "notify email"
6598
+ msgid "Admin URL"
6599
+ msgstr "رابط URL المدير"
6600
+
6601
+ #: templates/email/listing-added.tpl.php:17
6602
+ #: templates/email/listing-edited.tpl.php:17
6603
  msgctxt "notify email"
6604
  msgid "Categories"
6605
  msgstr "التصنيفات"
6606
 
6607
+ #: templates/email/listing-added.tpl.php:20
6608
+ #: templates/email/listing-edited.tpl.php:20
6609
  msgctxt "notify email"
6610
  msgid "Posted By"
6611
  msgstr "أضيفت بواسطة"
6620
  #: templates/email-access-keys.tpl.php:1
6621
  msgctxt "request_access_keys"
6622
  msgid ""
6623
+ "Below you'll find the access keys for all the listings registered with your "
6624
+ "e-mail address on our site."
6625
  msgstr ""
6626
+ "ستجد أدناه مفاتيح الوصول لكافة الإعلانات القوائم مع عنوان بريدك الإلكتروني "
6627
+ "على موقعنا."
6628
 
6629
  #: templates/email-access-keys.tpl.php:5
6630
  msgctxt "request_access_keys"
6644
  #: templates/listing-contactform.tpl.php:16
6645
  msgctxt "templates"
6646
  msgid ""
6647
+ "You are currently logged in as %s. Your message will be sent using your "
6648
+ "logged in contact email."
6649
  msgstr ""
6650
  "أنت حاليا تسجل دخولك كـ %s. سيتم إرسال رسالتك باستخدام تسجيل دخولك في حساب "
6651
  "البريد الإلكتروني."
6680
  msgid "Upgrade listing to %s for %s."
6681
  msgstr "ترقية الإعلان الى %s لـ %s."
6682
 
6683
+ #: templates/main-box.tpl.php:13
6684
+ msgctxt "main box"
6685
+ msgid "Find listings for <keywords>"
6686
+ msgstr "العثور على الإعلانات <كلمات مفتاحية>"
6687
+
6688
+ #: templates/main-box.tpl.php:19
6689
+ msgctxt "main box"
6690
+ msgid "Find Listings"
6691
+ msgstr "إيجاد الإعلانات"
6692
+
6693
+ #: templates/main-box.tpl.php:20
6694
+ msgctxt "main box"
6695
+ msgid "Advanced Search"
6696
+ msgstr "بحث متقدم"
6697
+
6698
  #: templates/manage-recurring-cancel.tpl.php:1
6699
  msgctxt "manage recurring"
6700
  msgid "Manage Recurring Payments - Cancel"
6836
  msgctxt "templates"
6837
  msgid ""
6838
  "You are not currently logged in. Please login or register first. When "
6839
+ "registering, you will receive an activation email. Be sure to check your "
6840
+ "spam if you don't see it in your email within 60 minutes."
6841
  msgstr ""
6842
  "لم تسجل الدخول حاليا. المرجو تسجيل الدخول أو التسجيل أولاً. عند التسجيل، سوف "
6843
+ "تتلقى رسالة بريد إلكتروني للتفعيل. يجب التأكد من مراجعة البريد المزعج الخاص "
6844
+ "بك إذا لم تراه في بريدك الإلكتروني خلال 60 دقيقة."
6845
 
6846
  #: templates/parts/login-required.tpl.php:10
6847
  msgctxt "templates"
6877
  msgctxt "templates"
6878
  msgid "We can not process your payment at this moment. Please try again later."
6879
  msgstr ""
6880
+ "لا يمكن أن نقوم بمعالجة الدفع الخاص بك في هذه اللحظة. المرجو المحاولة مرة "
6881
+ "أخرى لاحقاً."
6882
 
6883
  #: templates/renew-listing.tpl.php:3
6884
  msgctxt "templates"
6893
  #: templates/renew-listing.tpl.php:10
6894
  msgctxt "templates"
6895
  msgid ""
6896
+ "You are about to renew your listing \"%s\" publication inside category \"%s"
6897
+ "\"."
6898
  msgstr "أنت على وشك تجديد الإعلان \"%s\" النشر داخل التصنيف \"%s\"."
6899
 
6900
  #: templates/renew-listing.tpl.php:15
6901
  msgctxt "WPBDM"
6902
  msgid ""
6903
+ "Please select a fee option or click \"Do not renew my listing\" to cancel "
6904
+ "your renewal."
6905
  msgstr ""
6906
+ "المرجو تحديد خيار رسم أو إضغط فوق \"عدم تجديد إعلاني\" لإلغاء التجديد الخاص "
6907
+ "بك."
6908
 
6909
  #: templates/renew-listing.tpl.php:22
6910
  #: templates/submit-listing/category-selection.tpl.php:8
6911
  #: templates/submit-listing/fee-selection.tpl.php:37
6912
+ #: templates/submit-listing/images.tpl.php:42
6913
  #: templates/submit-listing/listing-fields.tpl.php:34
6914
  msgctxt "templates"
6915
  msgid "Continue"
7044
  #: templates/submit-listing/images-upload-form.tpl.php:31
7045
  msgctxt "templates"
7046
  msgid ""
7047
+ "Your image slots are all full at this time. You may click \"Continue\" if "
7048
+ "you are done, or \"Delete Image\" to upload a new image in place of a "
7049
+ "current one."
7050
  msgstr ""
7051
  "أماكن الصورة الخاصة بك ممتلئة في هذا الوقت. يمكنك الضغط فوق \"متابعة\" إذا "
7052
  "كنت انتهيت، أو \"حذف الصورة\" لتحميل صورة جديدة بدلاً من الموجودة حاليا."
7058
 
7059
  #: templates/submit-listing/images-upload-form.tpl.php:45
7060
  msgctxt "templates"
7061
+ msgid "File size:"
7062
+ msgstr "حجم الملف:"
7063
 
7064
+ #: templates/submit-listing/images-upload-form.tpl.php:47
7065
+ #: templates/submit-listing/images-upload-form.tpl.php:54
7066
+ #: templates/submit-listing/images-upload-form.tpl.php:61
7067
  msgctxt "templates"
7068
+ msgid "No limit"
7069
+ msgstr "غير محدود"
7070
+
7071
+ #: templates/submit-listing/images-upload-form.tpl.php:52
7072
+ msgctxt "templates"
7073
+ msgid "Image width:"
7074
+ msgstr "عرض الصورة:"
7075
+
7076
+ #: templates/submit-listing/images-upload-form.tpl.php:59
7077
+ msgctxt "templates"
7078
+ msgid "Image height:"
7079
+ msgstr "ارتفاع الصورة:"
7080
 
7081
  #: templates/submit-listing/images.tpl.php:4
7082
  msgctxt "templates"
7112
 
7113
  #: vendors/edd/EDD_SL_Plugin_Updater.php:178
7114
  msgid ""
7115
+ "There is a new version of %1$s available. <a target=\"_blank\" class="
7116
+ "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
7117
  msgstr ""
7118
  "هناك إصدار جديد من %1$s متاح. <a target=\"_blank\" class=\"thickbox\" href="
7119
  "\"%2$s\">مشاهدة تفاصيل النسخة %3$s</a>."
7120
 
7121
  #: vendors/edd/EDD_SL_Plugin_Updater.php:185
7122
  msgid ""
7123
+ "There is a new version of %1$s available. <a target=\"_blank\" class="
7124
+ "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
7125
+ "\">update now</a>."
7126
  msgstr ""
7127
  "هناك إصدار جديد من %1$s متاح. <a target=\"_blank\" class=\"thickbox\" href="
7128
  "\"%2$s\">مشاهدة تفاصيل النسخة %3$s</a> أو <a href=\"%4$s\">التحديث الآن</a>."
7144
  "Provides the ability to maintain a free or paid business directory on your "
7145
  "WordPress powered site."
7146
  msgstr ""
7147
+ "يوفر القدرة للحفاظ على دليل أعمال مجاني أو مدفوع على موقعك المدعوم من "
7148
+ "ووردبريس."
7149
 
7150
  #. Author of the plugin/theme
7151
  msgid "D. Rodenbaugh"
7155
  msgid "http://businessdirectoryplugin.com"
7156
  msgstr "http://businessdirectoryplugin.com"
7157
 
7158
+ #~ msgctxt "admin csv-import"
7159
+ #~ msgid "Last imported line from file:"
7160
+ #~ msgstr "السطر الأخير الذي تم استيراده من الملف:"
7161
+
7162
+ #~ msgctxt "formfields-preview"
7163
+ #~ msgid ""
7164
+ #~ "This is a preview of the form as it will appear during \"Submit a Listing"
7165
+ #~ "\". The users may not see all fields from \"Manage Form Fields\" because "
7166
+ #~ "you have \"Featured Levels\" active and this is showing the base level."
7167
+ #~ msgstr ""
7168
+ #~ "هذا عرض مسبق لشكل الاستمارة كما ستظهر خلال \"إضافة إعلان\". الأعضاء قد لا "
7169
+ #~ "يرون كافة الحقول من \"إدارة حقول الاستمارة\" لأنه لديك \"مستويات مميزة\" "
7170
+ #~ "مفعلة وهذا يظهر المستوى الأساسي."
7171
+
7172
+ #~ msgid "Submit A Listing"
7173
+ #~ msgstr "إضافة إعلان"
7174
+
7175
+ #~ msgid "View Listings"
7176
+ #~ msgstr "مشاهدة الإعلانات"
7177
+
7178
+ #~ msgctxt "templates"
7179
+ #~ msgid "Max. file size:"
7180
+ #~ msgstr "أقصى حجم للملف:"
7181
+
7182
  #~ msgctxt "admin csv-import"
7183
  #~ msgid "Use spreadsheet information only."
7184
  #~ msgstr "استخدام جدول بيانات المعلومات فقط."
7264
 
7265
  #~ msgctxt "google-wallet"
7266
  #~ msgid ""
7267
+ #~ "For recurring payments to work you need to <a>specify a postback URL</a> "
7268
+ #~ "in your Google Wallet settings."
7269
  #~ msgstr ""
7270
  #~ "Pour que les paiements récurrents fonctionnent, vous devez spécifier une "
7271
  #~ "<a> publication URL </a> dans vos paramètres Google Wallet."
7293
 
7294
  #~ msgctxt "google-wallet"
7295
  #~ msgid "One time payment + recurring payment for renewal fees"
7296
+ #~ msgstr ""
7297
+ #~ "Paiement en une fois + paiement récurrent des frais de renouvellement"
7298
 
7299
  #~ msgctxt "google-wallet"
7300
  #~ msgid ""
7321
  #~ msgstr "Les frais d'annonce doivent être un entier non-négatif."
7322
 
7323
  #~ msgid ""
7324
+ #~ "Due to Google Wallet limitations only monthly (30 days) recurring fees "
7325
+ #~ "are supported by the gateway. All other fees will be charged as non-"
7326
+ #~ "recurring."
7327
  #~ msgstr ""
7328
  #~ "En raison des limitations mensuels de Google Wallet (30 jours), les frais "
7329
  #~ "récurrents sont pris en charge par la passerelle. Tous les autres frais "
7340
  #~ msgctxt "admin settings"
7341
  #~ msgid "Display search form when displaying search results?"
7342
  #~ msgstr ""
7343
+ #~ "Afannoncer un formulaire de recherche lors de l'affichage des résultats "
7344
+ #~ "de recherche?"
7345
 
7346
  #~ msgctxt "search"
7347
  #~ msgid "Return to Advanced Search"
7454
  #~ msgctxt "admin settings"
7455
  #~ msgid "Paid first then free"
7456
  #~ msgstr "Payez pour en disposer gratuitement"
7457
+
7458
+ #~ msgctxt "admin settings"
7459
+ #~ msgid "Disable advanced CPT integration."
7460
+ #~ msgstr "تعطيل التكامل CPT المتقدم."
7461
+
7462
+ #~ msgctxt "templates"
7463
+ #~ msgid "Min. file size:"
7464
+ #~ msgstr "أقل حجم الملف:"
languages/WPBDM-de_DE.mo CHANGED
Binary file
languages/WPBDM-de_DE.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.5.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-08-24 22:42:45+00:00\n"
8
  "PO-Revision-Date: 2016-01-21 08:45-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
@@ -122,7 +122,13 @@ msgctxt "admin actions"
122
  msgid "Renew Listing"
123
  msgstr "Eintrag erneuern"
124
 
125
- #: admin/class-admin.php:124
 
 
 
 
 
 
126
  msgctxt "drip pointer"
127
  msgid ""
128
  "Find out how to create a compelling, thriving business directory from "
@@ -130,142 +136,142 @@ msgid ""
130
  "a FREE premium module just for signing up."
131
  msgstr "-"
132
 
133
- #: admin/class-admin.php:126
134
  msgctxt "drip pointer"
135
  msgid "Email Address:"
136
  msgstr "E-mail Adresse:"
137
 
138
- #: admin/class-admin.php:132
139
  msgctxt "drip pointer"
140
  msgid "Want to know the Secrets of Building an Awesome Business Directory?"
141
  msgstr "-"
142
 
143
- #: admin/class-admin.php:134
144
  msgctxt "drip pointer"
145
  msgid "Yes, please!"
146
  msgstr "Ja, bitte!"
147
 
148
- #: admin/class-admin.php:136
149
  msgctxt "drip pointer"
150
  msgid "No, thanks"
151
  msgstr "Nein, danke"
152
 
153
- #: admin/class-admin.php:153
154
  msgctxt "admin"
155
  msgid "Business Directory"
156
  msgstr "Branchenverzeichnis"
157
 
158
- #: admin/class-admin.php:164
159
  msgctxt "admin"
160
  msgid "You're all set. Visit your new <a>Business Directory</a> page."
161
  msgstr ""
162
  "Sie haben alles konfiguriert. Besuchen sie Ihr neues <a>Branchenverzeichnis</"
163
  "a>."
164
 
165
- #: admin/class-admin.php:185
166
  #, fuzzy
167
  msgctxt "drip pointer"
168
  msgid "Invalid e-mail address."
169
  msgstr "Ungültiger Erneuerungszustand."
170
 
171
- #: admin/class-admin.php:219
172
  msgctxt "admin menu"
173
  msgid "Business Directory Admin"
174
  msgstr "Branchenverzeichnis Administration"
175
 
176
- #: admin/class-admin.php:220
177
  #, fuzzy
178
  msgctxt "admin menu"
179
  msgid "Dir. Admin"
180
  msgstr "Verzeichnis Administration"
181
 
182
- #: admin/class-admin.php:220
183
  msgctxt "admin menu"
184
  msgid "Directory Admin"
185
  msgstr "Verzeichnis Administration"
186
 
187
- #: admin/class-admin.php:226 admin/class-admin.php:227
188
  msgctxt "admin menu"
189
  msgid "Add New Listing"
190
  msgstr "Neuen Eintrag hinzufügen"
191
 
192
- #: admin/class-admin.php:232 admin/class-admin.php:233
193
  msgctxt "admin menu"
194
  msgid "Manage Options"
195
  msgstr "Optionen Verwalten"
196
 
197
- #: admin/class-admin.php:238 admin/class-admin.php:239
198
  msgctxt "admin menu"
199
  msgid "Manage Fees"
200
  msgstr "Preise Verwalten"
201
 
202
- #: admin/class-admin.php:244 admin/class-admin.php:245
203
  msgctxt "admin menu"
204
  msgid "Manage Form Fields"
205
  msgstr "Form Felder verwalten"
206
 
207
- #: admin/class-admin.php:250 admin/class-admin.php:251
208
  #, fuzzy
209
  msgctxt "admin menu"
210
  msgid "Listings"
211
  msgstr "Einträge"
212
 
213
- #: admin/class-admin.php:265 admin/class-admin.php:266
214
  msgctxt "admin menu"
215
  msgid "CSV Import"
216
  msgstr "CSV Datei importieren"
217
 
218
- #: admin/class-admin.php:271 admin/class-admin.php:272
219
  msgctxt "admin menu"
220
  msgid "CSV Export"
221
  msgstr "CVS Datei exportieren"
222
 
223
- #: admin/class-admin.php:277 admin/class-admin.php:278
224
  msgctxt "admin menu"
225
  msgid "Debug"
226
  msgstr "Fehlerkorrektur"
227
 
228
- #: admin/class-admin.php:287
229
  msgctxt "admin menu"
230
  msgid "Main Menu"
231
  msgstr "Hauptmenü"
232
 
233
- #: admin/class-admin.php:298
234
  msgctxt "admin menu"
235
  msgid "Uninstall Business Directory Plugin"
236
  msgstr "Branchenverzeichnis deinstallieren"
237
 
238
- #: admin/class-admin.php:299
239
  msgctxt "admin menu"
240
  msgid "Uninstall"
241
  msgstr "Deinstallieren"
242
 
243
- #: admin/class-admin.php:413
244
  #: admin/templates/listing-metabox-categories.tpl.php:69
245
  msgctxt "admin infometabox"
246
  msgid "never"
247
  msgstr "niemals"
248
 
249
- #: admin/class-admin.php:507
250
  msgctxt "admin"
251
  msgid "Dismiss this notice."
252
  msgstr ""
253
 
254
- #: admin/class-admin.php:535
255
  msgctxt "admin"
256
  msgid "The listing has been published."
257
  msgid_plural "The listings have been published."
258
  msgstr[0] "Der Eintrag wurde veröffentlicht."
259
  msgstr[1] "Die Einträge wurden veröffentlicht."
260
 
261
- #: admin/class-admin.php:553
262
  msgctxt "admin"
263
  msgid "The listing status has been set as paid."
264
  msgid_plural "The listings status has been set as paid."
265
  msgstr[0] "Der Status des Eintrags wurde auf bezahlt gesetzt."
266
  msgstr[1] "Der Status der Einträge wurde auf bezahlt gesetzt."
267
 
268
- #: admin/class-admin.php:559
269
  msgctxt "admin"
270
  msgid ""
271
  "Only invoices containing non-recurring items were marked as paid. Please "
@@ -277,28 +283,28 @@ msgid_plural ""
277
  msgstr[0] ""
278
  msgstr[1] ""
279
 
280
- #: admin/class-admin.php:578
281
  msgctxt "admin"
282
  msgid "The listing has been modified."
283
  msgid_plural "The listings have been modified."
284
  msgstr[0] "Der Eintrag wurde verändert."
285
  msgstr[1] "Die Einträge wurden verändert."
286
 
287
- #: admin/class-admin.php:591
288
  msgctxt "admin"
289
  msgid "The listing has been upgraded."
290
  msgid_plural "The listings have been upgraded."
291
  msgstr[0] "Der Eintrag wurde aktualisiert"
292
  msgstr[1] "Die Einträge wurden aktualisiert."
293
 
294
- #: admin/class-admin.php:603
295
  msgctxt "admin"
296
  msgid "The listing has been downgraded."
297
  msgid_plural "The listings have been downgraded."
298
  msgstr[0] "Der Eintrag wurde zurück gesetzt."
299
  msgstr[1] "Die Einträge wurden zurück gesetzt."
300
 
301
- #: admin/class-admin.php:614
302
  msgctxt "admin payments"
303
  msgid ""
304
  "The payment status was not changed. Recurring payments can't be manually "
@@ -306,44 +312,44 @@ msgid ""
306
  "went through."
307
  msgstr ""
308
 
309
- #: admin/class-admin.php:619
310
  msgctxt "admin"
311
  msgid "The transaction has been approved."
312
  msgstr "Die Transaktion wurde genehmigt."
313
 
314
- #: admin/class-admin.php:629
315
  msgctxt "admin"
316
  msgid "The transaction has been rejected."
317
  msgstr "Die Transaktion wurde abgelehnt."
318
 
319
- #: admin/class-admin.php:635
320
  msgctxt "admin"
321
  msgid "The fee was successfully assigned."
322
  msgstr "Der Preis wurde erfolgreich zugewiesen."
323
 
324
- #: admin/class-admin.php:644
325
  msgctxt "admin"
326
  msgid "Listing was renewed."
327
  msgid_plural "Listings were renewed."
328
  msgstr[0] "Eintrag wurde aktualisiert."
329
  msgstr[1] "Einträge wurden aktualisiert."
330
 
331
- #: admin/class-admin.php:651
332
  msgctxt "admin"
333
  msgid "Renewal email sent."
334
  msgstr "E-mail erneut senden."
335
 
336
- #: admin/class-admin.php:685
337
  msgctxt "admin category id"
338
  msgid "ID"
339
  msgstr "ID"
340
 
341
- #: admin/class-admin.php:687 admin/class-admin.php:693
342
  msgctxt "admin"
343
  msgid "Listing Count"
344
  msgstr "Anzahl Einträge "
345
 
346
- #: admin/class-admin.php:802
347
  msgctxt "admin"
348
  msgid ""
349
  "<b>Business Directory Plugin</b> requires fields with the following "
@@ -352,7 +358,7 @@ msgstr ""
352
  "<b>Branchenverzeichnis Erweiterung</b> benötigt Felder mit den folgenden "
353
  "Verbindungen um korrekt zu funktionieren: <b>%s</b>."
354
 
355
- #: admin/class-admin.php:804
356
  msgctxt "admin"
357
  msgid ""
358
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
@@ -361,7 +367,7 @@ msgstr ""
361
  "<b>Branchenverzeichnis Erweiterung</b> benötigt ein Feld mit der Verbindung "
362
  "<b>%s</b>, um korrekt zu funktionieren."
363
 
364
- #: admin/class-admin.php:808
365
  msgctxt "admin"
366
  msgid ""
367
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
@@ -370,17 +376,17 @@ msgstr ""
370
  "Sie können diese benutzerdefinierten Felder selbst erzeugen \"Form Felder "
371
  "Verwalten\" oder vom Branchenverzeichnis automatisch erstellen lassen."
372
 
373
- #: admin/class-admin.php:812
374
  msgctxt "admin"
375
  msgid "Go to \"Manage Form Fields\""
376
  msgstr "zu \"Form Felder verwalten\""
377
 
378
- #: admin/class-admin.php:815
379
  msgctxt "admin"
380
  msgid "Create these required fields for me"
381
  msgstr "Erstelle diese benötigten Felder für mich"
382
 
383
- #: admin/class-admin.php:824
384
  msgctxt "admin"
385
  msgid ""
386
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -389,7 +395,7 @@ msgstr ""
389
  "<b>Branchenverzeichnis Erweiterung</b> benötigt eine Seite mit dem "
390
  "<tt>[businessdirectory]</tt> shortcode um zu funktionieren."
391
 
392
- #: admin/class-admin.php:826
393
  msgctxt "admin"
394
  msgid ""
395
  "You can create this page by yourself or let Business Directory do this for "
@@ -398,27 +404,27 @@ msgstr ""
398
  "Du kannst diese Seite selbst erstellen oder vom Branchenverzeichnis "
399
  "automatisch erstellen lassen."
400
 
401
- #: admin/class-admin.php:830
402
  msgctxt "admin"
403
  msgid "Create required pages for me"
404
  msgstr "Erstelle benötigte Seiten für mich"
405
 
406
- #: admin/class-admin.php:870
407
  msgctxt "admin compat"
408
  msgid "Installed: %s"
409
  msgstr "Installiert: %s"
410
 
411
- #: admin/class-admin.php:870
412
  msgctxt "admin compat"
413
  msgid "N/A"
414
  msgstr "keine Angabe"
415
 
416
- #: admin/class-admin.php:873
417
  msgctxt "admin compat"
418
  msgid "Required: %s"
419
  msgstr "Pflichtfeld: %s"
420
 
421
- #: admin/class-admin.php:885
422
  msgctxt "admin compat"
423
  msgid ""
424
  "Business Directory has detected some incompatible premium module versions "
@@ -427,7 +433,7 @@ msgstr ""
427
  "Branchenverzeichnis hat festgestellt, dass einige inkompatible Premium Modul "
428
  "Versionen installiert sind."
429
 
430
- #: admin/class-admin.php:887
431
  msgctxt "admin compat"
432
  msgid ""
433
  "Please upgrade to the required versions indicated below to make sure "
@@ -436,7 +442,7 @@ msgstr ""
436
  "Bitte die benötigten Versionen siehe unten aktualisieren, um sicher zu sein, "
437
  "dass alles korrekt funktioniert. "
438
 
439
- #: admin/class-admin.php:907
440
  msgctxt "admin"
441
  msgid ""
442
  "We noticed you want your Business Directory users to register before posting "
@@ -1398,128 +1404,123 @@ msgstr ""
1398
  "stelle sicher, dass du genügend Speicherplatz für PHP vorhanden ist. Schaue "
1399
  "ins Fehlerprotokoll."
1400
 
1401
- #: admin/templates/csv-import-progress.tpl.php:14
1402
- msgctxt "admin csv-import"
1403
- msgid "Last imported line from file:"
1404
- msgstr ""
1405
-
1406
- #: admin/templates/csv-import-progress.tpl.php:18
1407
- #: admin/templates/csv-import-progress.tpl.php:25
1408
  #, fuzzy
1409
  msgctxt "admin csv-import"
1410
  msgid "← Return to CSV Import"
1411
  msgstr "Zurück nach \"CSV Importieren\""
1412
 
1413
- #: admin/templates/csv-import-progress.tpl.php:23
1414
  #, fuzzy
1415
  msgctxt "admin csv-import"
1416
  msgid "Import Canceled"
1417
  msgstr "Export abgebrochen"
1418
 
1419
- #: admin/templates/csv-import-progress.tpl.php:24
1420
  #, fuzzy
1421
  msgctxt "admin csv-import"
1422
  msgid "The import has been canceled."
1423
  msgstr "Der Export wurde abgebrochen."
1424
 
1425
- #: admin/templates/csv-import-progress.tpl.php:31
1426
  #, fuzzy
1427
  msgid "Import Progress"
1428
  msgstr "Export wird durchgeführt..."
1429
 
1430
- #: admin/templates/csv-import-progress.tpl.php:34
1431
  #, fuzzy
1432
  msgctxt "admin csv-import"
1433
  msgid "Files"
1434
  msgstr "CSV Datei"
1435
 
1436
- #: admin/templates/csv-import-progress.tpl.php:37
1437
  msgctxt "admin csv-import"
1438
  msgid "Rows in file"
1439
  msgstr ""
1440
 
1441
- #: admin/templates/csv-import-progress.tpl.php:40
1442
  msgctxt "admin csv-import"
1443
  msgid "Progress"
1444
  msgstr ""
1445
 
1446
- #: admin/templates/csv-import-progress.tpl.php:44
1447
  msgctxt "admin csv-import"
1448
  msgid "Import has not started. Click \"Start Import\" to begin."
1449
  msgstr ""
1450
 
1451
- #: admin/templates/csv-import-progress.tpl.php:45
1452
  #, fuzzy
1453
  msgctxt "admin csv-import"
1454
  msgid "Importing CSV file..."
1455
  msgstr "Import Dateien"
1456
 
1457
- #: admin/templates/csv-import-progress.tpl.php:51
1458
  #, fuzzy
1459
  msgctxt "admin csv-import"
1460
  msgid "Start Import"
1461
  msgstr "CSV Datei importieren"
1462
 
1463
- #: admin/templates/csv-import-progress.tpl.php:52
1464
  #, fuzzy
1465
  msgctxt "admin csv-import"
1466
  msgid "Cancel Import"
1467
  msgstr "Export abbrechen"
1468
 
1469
- #: admin/templates/csv-import-progress.tpl.php:59
1470
  #, fuzzy
1471
  msgctxt "admin csv-import"
1472
  msgid "Import finished"
1473
  msgstr "Import Dateien"
1474
 
1475
- #: admin/templates/csv-import-progress.tpl.php:62
1476
  msgctxt "admin csv-import"
1477
  msgid "Import was completed successfully."
1478
  msgstr "Der Import wurde erfolgreich abgeschlossen."
1479
 
1480
- #: admin/templates/csv-import-progress.tpl.php:66
1481
  msgctxt "admin csv-import"
1482
  msgid "Import was completed but some rows were rejected."
1483
  msgstr "Der Import ist komplett. Einige Zeilen wurden abgelehnt."
1484
 
1485
- #: admin/templates/csv-import-progress.tpl.php:69
1486
  msgctxt "admin csv-import"
1487
  msgid "Import Summary"
1488
  msgstr "Import Zusammenfassung"
1489
 
1490
- #: admin/templates/csv-import-progress.tpl.php:71
1491
  msgctxt "admin csv-import"
1492
  msgid "Rows in file:"
1493
  msgstr ""
1494
 
1495
- #: admin/templates/csv-import-progress.tpl.php:74
1496
  #, fuzzy
1497
  msgctxt "admin csv-import"
1498
  msgid "Imported rows:"
1499
  msgstr "Korrekt importierte Zeilen:"
1500
 
1501
- #: admin/templates/csv-import-progress.tpl.php:77
1502
  msgctxt "admin csv-import"
1503
  msgid "Rejected rows:"
1504
  msgstr "Abgelehnte Zeilen:"
1505
 
1506
- #: admin/templates/csv-import-progress.tpl.php:82
1507
  #, fuzzy
1508
  msgctxt "admin csv-import"
1509
  msgid "Import Warnings"
1510
  msgstr "Importeinstellungen"
1511
 
1512
- #: admin/templates/csv-import-progress.tpl.php:85
1513
  msgctxt "admin csv-import"
1514
  msgid "Line #"
1515
  msgstr "Zeile #"
1516
 
1517
- #: admin/templates/csv-import-progress.tpl.php:86
1518
  msgctxt "admin csv-import"
1519
  msgid "Line"
1520
  msgstr "Zeile"
1521
 
1522
- #: admin/templates/csv-import-progress.tpl.php:87
1523
  msgctxt "admin csv-import"
1524
  msgid "Warning"
1525
  msgstr "Warnung"
@@ -2231,7 +2232,7 @@ msgctxt "form-fields admin"
2231
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2232
  msgstr ""
2233
 
2234
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.1) #-#-#-#-#
2235
  #. Plugin Name of the plugin/theme
2236
  #: admin/templates/header.tpl.php:4
2237
  msgid "Business Directory Plugin"
@@ -3022,57 +3023,64 @@ msgctxt "tracking"
3022
  msgid "Allow Tracking"
3023
  msgstr "Verfolgung erlauben"
3024
 
3025
- #: business-directory-plugin.php:660
3026
  msgctxt "admin plugins"
3027
  msgid "Settings"
3028
  msgstr "Einstellungen"
3029
 
3030
- #: business-directory-plugin.php:768 business-directory-plugin.php:775
3031
  msgctxt "rss feed"
3032
  msgid "%s Feed"
3033
  msgstr "% Feed"
3034
 
3035
- #: business-directory-plugin.php:1113
3036
  msgctxt "title"
3037
  msgid "Submit A Listing"
3038
  msgstr "Eintrag zusenden"
3039
 
3040
- #: business-directory-plugin.php:1123
3041
  msgctxt "title"
3042
  msgid "Find a Listing"
3043
  msgstr "Eintrag finden"
3044
 
3045
- #: business-directory-plugin.php:1133
3046
  msgctxt "title"
3047
  msgid "View All Listings"
3048
  msgstr "Alle Einträge anschauen"
3049
 
3050
- #: business-directory-plugin.php:1153
3051
  msgctxt "title"
3052
  msgid "Listings tagged: %s"
3053
  msgstr "Einträge getaggt: %s"
3054
 
3055
- #: core/api.php:397
3056
  #, fuzzy
3057
  msgid "Free"
3058
  msgstr "Kostenlos"
3059
 
3060
- #: core/class-csv-import.php:391
 
 
 
 
 
 
 
3061
  msgctxt "admin csv-import"
3062
  msgid "Could not create listing category \"%s\""
3063
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
3064
 
3065
- #: core/class-csv-import.php:535
3066
  msgctxt "admin csv-import"
3067
  msgid "Username \"%s\" does not exist"
3068
  msgstr "Benutzername \"%s\" existiert nicht"
3069
 
3070
- #: core/class-csv-import.php:567
3071
  msgctxt "admin csv-import"
3072
  msgid "Missing required field: %s"
3073
  msgstr "Benötigtes nicht vorhandenes Feld: %s"
3074
 
3075
- #: core/class-csv-import.php:587
3076
  msgctxt "admin csv-import"
3077
  msgid "Listing category \"%s\" does not exist"
3078
  msgstr "Eintragskategorie \"%s\" existiert nicht"
@@ -3593,13 +3601,13 @@ msgctxt "admin settings"
3593
  msgid "Enable AJAX compatibility mode?"
3594
  msgstr ""
3595
 
3596
- #: core/class-settings.php:181 core/class-settings.php:660
3597
  msgctxt "admin settings"
3598
  msgid "Listings"
3599
  msgstr "Einträge"
3600
 
3601
- #: core/class-settings.php:182 core/class-settings.php:330
3602
- #: core/class-settings.php:617
3603
  msgctxt "admin settings"
3604
  msgid "General Settings"
3605
  msgstr "Allgemeine Einstellungen"
@@ -3648,15 +3656,20 @@ msgstr ""
3648
 
3649
  #: core/class-settings.php:200
3650
  msgctxt "admin settings"
 
 
 
 
 
3651
  msgid "Require login for using the contact form?"
3652
  msgstr "Einloggen um die Kontaktform zu benutzen?"
3653
 
3654
- #: core/class-settings.php:206
3655
  msgctxt "admin settings"
3656
  msgid "Maximum number of contact form submits per day"
3657
  msgstr "Maximale Nummer der Kontaktformmails die pro Tag zugesendet werden"
3658
 
3659
- #: core/class-settings.php:209
3660
  msgctxt "admin settings"
3661
  msgid ""
3662
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
@@ -3665,12 +3678,12 @@ msgstr ""
3665
  "Benutze dieses Feld um spamming von Einträgen zu vermeiden. 0 heisst "
3666
  "unbegrenzt pro Tag."
3667
 
3668
- #: core/class-settings.php:215
3669
  msgctxt "admin settings"
3670
  msgid "Include comment form on listing pages?"
3671
  msgstr "Kommentarform einfügen in Eintragsseiten?"
3672
 
3673
- #: core/class-settings.php:218
3674
  msgctxt "admin settings"
3675
  msgid ""
3676
  "Allow visitors to discuss listings using the standard WordPress comment "
@@ -3679,38 +3692,38 @@ msgstr ""
3679
  "Besuchern erlauben die Einträge mit der Standard Wordpress Form zu "
3680
  "diskutieren. Kommentare sind öffentlich."
3681
 
3682
- #: core/class-settings.php:219
3683
  msgctxt "admin settings"
3684
  msgid "Show listings under categories on main page?"
3685
  msgstr "Einträge unter Kategorien anzeigen auf der Hauptseite?"
3686
 
3687
- #: core/class-settings.php:220
3688
  msgctxt "admin settings"
3689
  msgid "Status of listings upon uninstalling plugin"
3690
  msgstr "Status der Einträge bei Deinstallation der Erweiterung"
3691
 
3692
- #: core/class-settings.php:221 core/class-settings.php:223
3693
  msgctxt "post status"
3694
  msgid "Draft"
3695
  msgstr ""
3696
 
3697
- #: core/class-settings.php:221 core/class-settings.php:223
3698
  msgctxt "post status"
3699
  msgid "Trash"
3700
  msgstr ""
3701
 
3702
- #: core/class-settings.php:222
3703
  msgctxt "admin settings"
3704
  msgid "Status of deleted listings"
3705
  msgstr "Status der gelöschten Einträge"
3706
 
3707
- #: core/class-settings.php:224
3708
  #, fuzzy
3709
  msgctxt "admin settings"
3710
  msgid "Submit Listing instructions message"
3711
  msgstr "Eintrag Kontakt Nachricht"
3712
 
3713
- #: core/class-settings.php:224
3714
  msgctxt "admin settings"
3715
  msgid ""
3716
  "This text is displayed at the first page of the Submit Listing process for "
@@ -3718,22 +3731,22 @@ msgid ""
3718
  "form or anything you want to tell users before they get started."
3719
  msgstr ""
3720
 
3721
- #: core/class-settings.php:226
3722
  msgctxt "admin settings"
3723
  msgid "Listing Renewal"
3724
  msgstr "Einträge erneuern"
3725
 
3726
- #: core/class-settings.php:227
3727
  msgctxt "admin settings"
3728
  msgid "Turn on listing renewal option?"
3729
  msgstr "Option zur Erneuerung von Einträgen aktivieren?"
3730
 
3731
- #: core/class-settings.php:230
3732
  msgctxt "admin settings"
3733
  msgid "Allow recurring renewal payments?"
3734
  msgstr "Wiederholte Bezahlung erlauben?"
3735
 
3736
- #: core/class-settings.php:233
3737
  msgctxt "admin settings"
3738
  msgid ""
3739
  "Allow users to opt in for automatic renewal of their listings. The fee is "
@@ -3743,12 +3756,12 @@ msgstr ""
3743
  "anzumelden. Der Preis wird abgebucht, zu dem Zeitpunkt an dem der Eintrag "
3744
  "abläuft, ohne Eingriff durch den Benutzer."
3745
 
3746
- #: core/class-settings.php:237
3747
  msgctxt "admin settings"
3748
  msgid "Use recurring payments as the default payment method?"
3749
  msgstr "Benutze automatische Abbuchungen als Standardbezahlmethode?"
3750
 
3751
- #: core/class-settings.php:240
3752
  msgctxt "admin settings"
3753
  msgid ""
3754
  "Enable automatic renewal without having users opt in during the submit "
@@ -3757,12 +3770,12 @@ msgstr ""
3757
  "Automatische Abbuchung aktivieren, ohne die Anmeldung durch den Benutzer "
3758
  "während der Einreichung."
3759
 
3760
- #: core/class-settings.php:245
3761
  msgctxt "admin settings"
3762
  msgid "Listing renewal e-mail threshold (in days)"
3763
  msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
3764
 
3765
- #: core/class-settings.php:248
3766
  msgctxt "admin settings"
3767
  msgid ""
3768
  "Configure how many days before listing expiration is the renewal e-mail sent."
@@ -3770,7 +3783,7 @@ msgstr ""
3770
  "Konfiguriere wieviel Tage vor der Abbuchung eine Buchungsmail verschickt "
3771
  "wird."
3772
 
3773
- #: core/class-settings.php:252
3774
  msgctxt "admin settings"
3775
  msgid ""
3776
  "Send expiration notices including a cancel links to auto-renewed listings?"
@@ -3778,17 +3791,17 @@ msgstr ""
3778
  "Sende eine Ablaufinformation die einen Beenden und einen Automatisch Eintrag "
3779
  "Erneuern Link enghält?"
3780
 
3781
- #: core/class-settings.php:259
3782
  msgctxt "admin settings"
3783
  msgid "Remind listing owners of expired listings (past due)?"
3784
  msgstr "Eintraginhaber an abgelaufene Einträge erinnern (überfällig)?"
3785
 
3786
- #: core/class-settings.php:264
3787
  msgctxt "admin settings"
3788
  msgid "Listing renewal reminder e-mail threshold (in days)"
3789
  msgstr "Einträge erneuern E-mail Grenze (in Tagen)"
3790
 
3791
- #: core/class-settings.php:267
3792
  msgctxt "admin settings"
3793
  msgid ""
3794
  "Configure how many days after the expiration of a listing an e-mail reminder "
@@ -3797,175 +3810,175 @@ msgstr ""
3797
  "Konfiguriere wie viele Tage nach dem Ablauf eines Eintrags eine E-mail an "
3798
  "den Inhaber versendet wird."
3799
 
3800
- #: core/class-settings.php:270
3801
  msgctxt "admin settings"
3802
  msgid "Post/Category Settings"
3803
  msgstr "Post/Kategorie Einstellungen"
3804
 
3805
- #: core/class-settings.php:271
3806
  msgctxt "admin settings"
3807
  msgid "Default new post status"
3808
  msgstr "Standard neuer Post Status"
3809
 
3810
- #: core/class-settings.php:272 core/class-settings.php:275
3811
  msgctxt "post status"
3812
  msgid "Published"
3813
  msgstr ""
3814
 
3815
- #: core/class-settings.php:272 core/class-settings.php:275
3816
  #, fuzzy
3817
  msgctxt "post status"
3818
  msgid "Pending"
3819
  msgstr "Ausstehend"
3820
 
3821
- #: core/class-settings.php:274
3822
  msgctxt "admin settings"
3823
  msgid "Edit post status"
3824
  msgstr "Post Status Bearbeiten"
3825
 
3826
- #: core/class-settings.php:276
3827
  msgctxt "admin settings"
3828
  msgid "Order categories list by"
3829
  msgstr "Anordnung Kategorieliste durch"
3830
 
3831
- #: core/class-settings.php:278
3832
  msgctxt "admin settings"
3833
  msgid "Name"
3834
  msgstr "Name"
3835
 
3836
- #: core/class-settings.php:279
3837
  msgctxt "admin settings"
3838
  msgid "Slug"
3839
  msgstr "Entwurf"
3840
 
3841
- #: core/class-settings.php:280
3842
  msgctxt "admin settings"
3843
  msgid "Listing Count"
3844
  msgstr "Anzahl Einträge"
3845
 
3846
- #: core/class-settings.php:282
3847
  msgctxt "admin settings"
3848
  msgid "Sort order for categories"
3849
  msgstr "Sortierung für Kategorien"
3850
 
3851
- #: core/class-settings.php:283 core/class-settings.php:301
3852
  msgctxt "admin settings"
3853
  msgid "Ascending"
3854
  msgstr "Aufsteigend"
3855
 
3856
- #: core/class-settings.php:283 core/class-settings.php:301
3857
  msgctxt "admin settings"
3858
  msgid "Descending"
3859
  msgstr "Absteigend"
3860
 
3861
- #: core/class-settings.php:284
3862
  msgctxt "admin settings"
3863
  msgid "Show category post count?"
3864
  msgstr "Kategoriepost Anzahl anzeigen?"
3865
 
3866
- #: core/class-settings.php:285
3867
  msgctxt "admin settings"
3868
  msgid "Hide empty categories?"
3869
  msgstr "Leere Kategorien verbergen?"
3870
 
3871
- #: core/class-settings.php:286
3872
  msgctxt "admin settings"
3873
  msgid "Show only parent categories in category list?"
3874
  msgstr "Nur Elternkategorien in Kategorieliste anzeigen?"
3875
 
3876
- #: core/class-settings.php:288
3877
  msgctxt "admin settings"
3878
  msgid "Listings Sorting"
3879
  msgstr "Sortierung Einträge"
3880
 
3881
- #: core/class-settings.php:289
3882
  msgctxt "admin settings"
3883
  msgid "Order directory listings by"
3884
  msgstr "Anordnung Verzeichniseinträge durch"
3885
 
3886
- #: core/class-settings.php:291
3887
  msgctxt "admin settings"
3888
  msgid "Title"
3889
  msgstr "Titel"
3890
 
3891
- #: core/class-settings.php:292
3892
  msgctxt "admin settings"
3893
  msgid "Author"
3894
  msgstr "Author"
3895
 
3896
- #: core/class-settings.php:293 core/class-settings.php:703
3897
  msgctxt "admin settings"
3898
  msgid "Date posted"
3899
  msgstr "Datum gepostet"
3900
 
3901
- #: core/class-settings.php:294 core/class-settings.php:704
3902
  msgctxt "admin settings"
3903
  msgid "Date last modified"
3904
  msgstr "Datum zuletzt verändert"
3905
 
3906
- #: core/class-settings.php:295
3907
  msgctxt "admin settings"
3908
  msgid "Random"
3909
  msgstr "Zufall"
3910
 
3911
- #: core/class-settings.php:296
3912
  msgctxt "admin settings"
3913
  msgid "Paid first then free. Inside each group by date."
3914
  msgstr ""
3915
 
3916
- #: core/class-settings.php:297
3917
  msgctxt "admin settings"
3918
  msgid "Paid first then free. Inside each group by title."
3919
  msgstr ""
3920
 
3921
- #: core/class-settings.php:299
3922
  msgctxt "admin settings"
3923
  msgid "Sort directory listings by"
3924
  msgstr "Verzeichnissortierung der Einträge durch"
3925
 
3926
- #: core/class-settings.php:300
3927
  msgctxt "admin settings"
3928
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3929
  msgstr ""
3930
  "Aufsteigend für aufsteigende Reihenfolge A-Z, Absteigend für absteigende "
3931
  "Reihenfolge Z-A"
3932
 
3933
- #: core/class-settings.php:305
3934
  msgctxt "admin settings"
3935
  msgid "Enable sort bar?"
3936
  msgstr "Sortierung aktivieren?"
3937
 
3938
- #: core/class-settings.php:310
3939
  msgctxt "admin settings"
3940
  msgid "Sortbar Fields"
3941
  msgstr "Sortierbare Felder"
3942
 
3943
- #: core/class-settings.php:319
3944
  msgctxt "admin settings"
3945
  msgid "Featured (Sticky) listing settings"
3946
  msgstr "Unterstützte (unbewegliche) Eintrageinstellungen"
3947
 
3948
- #: core/class-settings.php:320
3949
  msgctxt "admin settings"
3950
  msgid "Offer sticky listings?"
3951
  msgstr "Unbewegliche Einträge anbieten? "
3952
 
3953
- #: core/class-settings.php:321
3954
  msgctxt "admin settings"
3955
  msgid "Offer upgrades during submit process?"
3956
  msgstr "Aktualisierungen anbieten im Bestellprozess?"
3957
 
3958
- #: core/class-settings.php:322
3959
  msgctxt "admin settings"
3960
  msgid "Sticky listing price"
3961
  msgstr "Unbeweglicher Eintragspreis"
3962
 
3963
- #: core/class-settings.php:323
3964
  msgctxt "admin settings"
3965
  msgid "Sticky listing page description text"
3966
  msgstr "Unbewegliche Eintragsseite Beschreibung"
3967
 
3968
- #: core/class-settings.php:324
3969
  msgctxt "admin settings"
3970
  msgid ""
3971
  "You can upgrade your listing to featured status. Featured listings will "
@@ -3974,17 +3987,17 @@ msgstr ""
3974
  "Du kannst dein Eintrag in den hervorgehobenen Status aktualisieren. "
3975
  "Unterstützte Einträge werden immer ganz oben eines Eintrags angezeigt."
3976
 
3977
- #: core/class-settings.php:329
3978
  msgctxt "admin settings"
3979
  msgid "E-Mail"
3980
  msgstr "E-mail"
3981
 
3982
- #: core/class-settings.php:333
3983
  msgctxt "admin settings"
3984
  msgid "Display email address fields publicly?"
3985
  msgstr "E-mail Adressfeld öffentlich anzeigen?"
3986
 
3987
- #: core/class-settings.php:336
3988
  msgctxt "admin settings"
3989
  msgid ""
3990
  "Shows the email address of the listing owner to all web users. NOT "
@@ -3993,12 +4006,12 @@ msgid ""
3993
  msgstr ""
3994
  "E-mailadresse allen Benutzern anzeigen. NICHT ZU EMPFEHLEN. Achtung Spam!"
3995
 
3996
- #: core/class-settings.php:339
3997
  msgctxt "admin settings"
3998
  msgid "How to determine the listing's email address?"
3999
  msgstr "Wie legt man die E-mailadresse für einen Eintrag fest?"
4000
 
4001
- #: core/class-settings.php:342
4002
  msgctxt "admin settings"
4003
  msgid ""
4004
  "This affects emails sent to listing owners via contact forms or when their "
@@ -4007,125 +4020,125 @@ msgstr ""
4007
  "Dies bewirkt, dass eine E-mail an den Eigentümer geschickt wird, wenn der "
4008
  "Eintrag abläuft."
4009
 
4010
- #: core/class-settings.php:344
4011
  msgctxt "admin settings"
4012
  msgid "Try listing's email field first, then author's email."
4013
  msgstr ""
4014
 
4015
- #: core/class-settings.php:345
4016
  msgctxt "admin settings"
4017
  msgid "Try author's email first and then listing's email field."
4018
  msgstr ""
4019
 
4020
- #: core/class-settings.php:349
4021
  msgctxt "admin settings"
4022
  msgid "E-Mail Notifications"
4023
  msgstr "Email Erinnerung"
4024
 
4025
- #: core/class-settings.php:352
4026
  msgctxt "admin settings"
4027
  msgid "Notify admin via e-mail when..."
4028
  msgstr "Administrator per E-mail informieren wenn... "
4029
 
4030
- #: core/class-settings.php:356
4031
  msgctxt "admin settings"
4032
  msgid "A new listing is submitted."
4033
  msgstr "Ein neuer Eintrag wurde eingestellt."
4034
 
4035
- #: core/class-settings.php:357
4036
  msgctxt "admin settings"
4037
  msgid "A listing is edited."
4038
  msgstr "Ein Eintrag wurde bearbeitet."
4039
 
4040
- #: core/class-settings.php:358
4041
  msgctxt "admin settings"
4042
  msgid "A listing expires."
4043
  msgstr "Ein Eintrag ist abgelaufen."
4044
 
4045
- #: core/class-settings.php:359
4046
  msgctxt "admin settings"
4047
  msgid "A contact message is sent to a listing's owner."
4048
  msgstr "Eine Nachricht wurde an den Eigentümer verschickt."
4049
 
4050
- #: core/class-settings.php:365
4051
  msgctxt "admin settings"
4052
  msgid "CC this e-mail address too"
4053
  msgstr "CC diese E-mail an"
4054
 
4055
- #: core/class-settings.php:371
4056
  msgctxt "admin settings"
4057
  msgid "Notify users via e-mail when..."
4058
  msgstr "Benachrichtige Benutzer per E-mail wenn..."
4059
 
4060
- #: core/class-settings.php:374
4061
  msgctxt "admin settings"
4062
  msgid "You can modify the text template used for most of these e-mails below."
4063
  msgstr ""
4064
  "Du kannst dieses Texttemplate verändern, das für die meisten der E-"
4065
  "mailadressen unten verwendet wird."
4066
 
4067
- #: core/class-settings.php:375
4068
  msgctxt "admin settings"
4069
  msgid "Their listing is submitted."
4070
  msgstr "Ihr Eintrag ist eingereicht."
4071
 
4072
- #: core/class-settings.php:376
4073
  msgctxt "admin settings"
4074
  msgid "Their listing is approved/published."
4075
  msgstr "Ihr Eintrag ist genehmigt/veröffentlicht."
4076
 
4077
- #: core/class-settings.php:385
4078
  msgctxt "contact email"
4079
  msgid "You have received a reply from your listing at %s."
4080
  msgstr "Sie haben eine Antwort auf Ihren Eintrag erhalten am %s."
4081
 
4082
- #: core/class-settings.php:386
4083
  msgctxt "contact email"
4084
  msgid "Name: %s"
4085
  msgstr "Name: %s"
4086
 
4087
- #: core/class-settings.php:387
4088
  msgctxt "contact email"
4089
  msgid "E-Mail: %s"
4090
  msgstr "E-mail: %s"
4091
 
4092
- #: core/class-settings.php:388
4093
  msgctxt "contact email"
4094
  msgid "Message:"
4095
  msgstr "Nachricht:"
4096
 
4097
- #: core/class-settings.php:390
4098
  msgctxt "contact email"
4099
  msgid "Time: %s"
4100
  msgstr "Zeit: %s"
4101
 
4102
- #: core/class-settings.php:392
4103
  msgctxt "admin settings"
4104
  msgid "E-Mail Templates"
4105
  msgstr "E-mail Templates"
4106
 
4107
- #: core/class-settings.php:395
4108
  msgctxt "admin settings"
4109
  msgid "Email confirmation message"
4110
  msgstr "Email Bestätigungsnachricht"
4111
 
4112
- #: core/class-settings.php:399
4113
  msgctxt "admin settings"
4114
  msgid "Sent after a listing has been submitted."
4115
  msgstr "Senden nachdem der Eintrag eingestellt wurde."
4116
 
4117
- #: core/class-settings.php:400 core/class-settings.php:408
4118
- #: core/class-settings.php:449
4119
  msgctxt "admin settings"
4120
  msgid "Listing's title"
4121
  msgstr "Eintrag Titel"
4122
 
4123
- #: core/class-settings.php:403
4124
  msgctxt "admin settings"
4125
  msgid "Listing published message"
4126
  msgstr "Eintrag veröffentlicht Nachricht"
4127
 
4128
- #: core/class-settings.php:406
4129
  msgctxt "admin settings"
4130
  msgid ""
4131
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
@@ -4134,24 +4147,24 @@ msgstr ""
4134
  "Dein Eintrag \"[listing]\" ist jetzt verfügbar unter [listing-url] und "
4135
  "kann öffentlich eingesehen werden."
4136
 
4137
- #: core/class-settings.php:407
4138
  msgctxt "admin settings"
4139
  msgid "Sent when the listing has been published or approved by an admin."
4140
  msgstr ""
4141
  "Senden wenn der Eintrag vom Administrator genehmigt oder veröffentlicht "
4142
  "wurde."
4143
 
4144
- #: core/class-settings.php:409
4145
  msgctxt "admin settings"
4146
  msgid "Listing's URL"
4147
  msgstr "Eintrags URL"
4148
 
4149
- #: core/class-settings.php:413
4150
  msgctxt "admin settings"
4151
  msgid "Listing Contact Message"
4152
  msgstr "Eintrag Kontakt Nachricht"
4153
 
4154
- #: core/class-settings.php:417
4155
  msgctxt "admin settings"
4156
  msgid ""
4157
  "Sent to listing owners when someone uses the contact form on their listing "
@@ -4160,35 +4173,35 @@ msgstr ""
4160
  "An den Eigentümer senden wenn jemand die Kontaktform auf Ihrer Eintragsseite "
4161
  "verwendet."
4162
 
4163
- #: core/class-settings.php:427
4164
  #, fuzzy
4165
  msgctxt "admin settings"
4166
  msgid "Payment related"
4167
  msgstr "Bezahlmethode"
4168
 
4169
- #: core/class-settings.php:444
4170
  #, fuzzy
4171
  msgctxt "admin settings"
4172
  msgid "Payment abandoned reminder message"
4173
  msgstr "Erneuerungserinnerung E-mail Nachricht"
4174
 
4175
- #: core/class-settings.php:448
4176
  msgctxt "admin settings"
4177
  msgid "Sent some time after a pending payment is abandoned by users."
4178
  msgstr ""
4179
 
4180
- #: core/class-settings.php:450
4181
  #, fuzzy
4182
  msgctxt "admin settings"
4183
  msgid "Checkout URL link"
4184
  msgstr "Kasse"
4185
 
4186
- #: core/class-settings.php:456
4187
  msgctxt "admin settings"
4188
  msgid "Renewal Reminders"
4189
  msgstr "Erneuerungserinnerung"
4190
 
4191
- #: core/class-settings.php:459
4192
  msgctxt "admin settings"
4193
  msgid ""
4194
  "This section refers only to the text of the renewal/expiration notices. You "
@@ -4198,12 +4211,12 @@ msgstr ""
4198
  "Nachricht. Du kannst auch <a>konfigurieren wann die E-mails gesendet werden</"
4199
  "a>"
4200
 
4201
- #: core/class-settings.php:463
4202
  msgctxt "admin settings"
4203
  msgid "Pending expiration e-mail message"
4204
  msgstr "Ausstehende Abgelaufen E-mail Nachricht"
4205
 
4206
- #: core/class-settings.php:467
4207
  msgctxt "settings"
4208
  msgid ""
4209
  "Sent some time before the listing expires. Applies to non-recurring renewals "
@@ -4212,50 +4225,50 @@ msgstr ""
4212
  "Einige Zeit bevor der Eintrag abläuft senden. Wird nur bei kostenlosen "
4213
  "Erneuerungen verwendet."
4214
 
4215
- #: core/class-settings.php:468 core/class-settings.php:481
4216
- #: core/class-settings.php:494 core/class-settings.php:507
4217
- #: core/class-settings.php:520
4218
  msgctxt "settings"
4219
  msgid "Listing's name (with link)"
4220
  msgstr "Eintragsname (mit Link)"
4221
 
4222
- #: core/class-settings.php:469 core/class-settings.php:482
4223
- #: core/class-settings.php:495 core/class-settings.php:508
4224
- #: core/class-settings.php:521
4225
  msgctxt "settings"
4226
  msgid "Author's name"
4227
  msgstr "Authorname"
4228
 
4229
- #: core/class-settings.php:470 core/class-settings.php:483
4230
- #: core/class-settings.php:522
4231
  msgctxt "settings"
4232
  msgid "Expiration date"
4233
  msgstr "Ablaufdatum"
4234
 
4235
- #: core/class-settings.php:471
4236
  msgctxt "settings"
4237
  msgid "Category that is going to expire"
4238
  msgstr "Kategorie die bald abläuft"
4239
 
4240
- #: core/class-settings.php:472 core/class-settings.php:485
4241
- #: core/class-settings.php:524
4242
  msgctxt "settings"
4243
  msgid "Link to renewal page"
4244
  msgstr "Link zu erneuerten Seite"
4245
 
4246
- #: core/class-settings.php:473 core/class-settings.php:486
4247
- #: core/class-settings.php:498 core/class-settings.php:511
4248
- #: core/class-settings.php:525
4249
  msgctxt "settings"
4250
  msgid "Link to your site"
4251
  msgstr "Link zu deiner Seite"
4252
 
4253
- #: core/class-settings.php:476
4254
  msgctxt "admin settings"
4255
  msgid "Listing Renewal e-mail message"
4256
  msgstr "Eintrag Erneuerung E-mail Nachricht"
4257
 
4258
- #: core/class-settings.php:480
4259
  msgctxt "settings"
4260
  msgid ""
4261
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
@@ -4264,17 +4277,17 @@ msgstr ""
4264
  "Zur Zeit wenn der Eintrag abläuft senden. Wird nur bei kostenlosen "
4265
  "Erneuerungen verwendet."
4266
 
4267
- #: core/class-settings.php:484 core/class-settings.php:523
4268
  msgctxt "settings"
4269
  msgid "Category that expired"
4270
  msgstr "Ablaufende Kategorie"
4271
 
4272
- #: core/class-settings.php:489
4273
  msgctxt "admin settings"
4274
  msgid "Listing auto-renewal reminder (recurring payments)"
4275
  msgstr "Eintrag automatische Erneuerungserinnerung (Abbuchungen)"
4276
 
4277
- #: core/class-settings.php:493
4278
  msgctxt "settings"
4279
  msgid ""
4280
  "Sent some time before the listing is auto-renewed. Applies to recurring "
@@ -4283,27 +4296,27 @@ msgstr ""
4283
  "Einige Zeit bevor der Eintrag abläuft senden. Wird nur bei bezahlten "
4284
  "Erneuerungen verwendet."
4285
 
4286
- #: core/class-settings.php:496 core/class-settings.php:510
4287
  msgctxt "settings"
4288
  msgid "Renewal date"
4289
  msgstr "Erneuerungsdatum"
4290
 
4291
- #: core/class-settings.php:497
4292
  msgctxt "settings"
4293
  msgid "Category that is going to be renewed"
4294
  msgstr "Kategorie die erneuert werden soll"
4295
 
4296
- #: core/class-settings.php:499
4297
  msgctxt "settings"
4298
  msgid "Link to manage subscriptions"
4299
  msgstr "Link um Abos zu verwalten"
4300
 
4301
- #: core/class-settings.php:502
4302
  msgctxt "admin settings"
4303
  msgid "Listing Renewal e-mail message (recurring payments)"
4304
  msgstr "Eintragserneuerungs E-mail Nachricht (Abbuchungen)"
4305
 
4306
- #: core/class-settings.php:506
4307
  msgctxt "settings"
4308
  msgid ""
4309
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
@@ -4311,17 +4324,17 @@ msgstr ""
4311
  "Sende nachdem der Eintrag automatisch erneuert wurde. Wird nur bei bezahlten "
4312
  "Erneuerungen verwendet."
4313
 
4314
- #: core/class-settings.php:509
4315
  msgctxt "settings"
4316
  msgid "Renewed category"
4317
  msgstr "Erneuerte Kategorie"
4318
 
4319
- #: core/class-settings.php:515
4320
  msgctxt "admin settings"
4321
  msgid "Renewal reminder e-mail message"
4322
  msgstr "Erneuerungserinnerung E-mail Nachricht"
4323
 
4324
- #: core/class-settings.php:519
4325
  msgctxt "settings"
4326
  msgid ""
4327
  "Sent some time after listing expiration and when no renewal has occurred. "
@@ -4330,33 +4343,33 @@ msgstr ""
4330
  "Einige Zeit nachdem der Eintrag abgelaufen und keine Erneuerung beauftragt "
4331
  "wurde senden. Wird bei bezahlten und kostenlosen Erneuerungen verwendet."
4332
 
4333
- #: core/class-settings.php:529
4334
  msgctxt "admin settings"
4335
  msgid "Payment"
4336
  msgstr "Bezahlung"
4337
 
4338
- #: core/class-settings.php:530
4339
  msgctxt "admin settings"
4340
  msgid "Payment Settings"
4341
  msgstr "Bezahlung Einstellungen"
4342
 
4343
- #: core/class-settings.php:533
4344
  msgctxt "admin settings"
4345
  msgid "Turn On payments?"
4346
  msgstr "Bezahlungen aktivieren?"
4347
 
4348
- #: core/class-settings.php:535
4349
  msgctxt "admin settings"
4350
  msgid "Put payment gateways in test mode?"
4351
  msgstr "Bezahlungsgateway im Testmodus ausführen?"
4352
 
4353
- #: core/class-settings.php:540
4354
  msgctxt "admin settings"
4355
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4356
  msgstr ""
4357
  "Aktiviere (HTTPS) sichere Verbindung für den Bestellprozess deiner Seite?"
4358
 
4359
- #: core/class-settings.php:543
4360
  msgctxt "admin settings"
4361
  msgid ""
4362
  "Recommended for added security. For this to work you need to enable HTTPS on "
@@ -4365,165 +4378,165 @@ msgstr ""
4365
  "Empfohlen zur Erweiterung der Sicherheit. Aktiviere HTTPS auf deinem Server "
4366
  "und <a>erhalte ein SSL Zertifikat</a>"
4367
 
4368
- #: core/class-settings.php:547
4369
  msgctxt "admin settings"
4370
  msgid "Currency Code"
4371
  msgstr "Währungsschlüssel"
4372
 
4373
- #: core/class-settings.php:549
4374
  msgctxt "admin settings"
4375
  msgid "Australian Dollar (AUD)"
4376
  msgstr "Australischer Dollar (AUD)"
4377
 
4378
- #: core/class-settings.php:550
4379
  msgctxt "admin settings"
4380
  msgid "Brazilian Real (BRL)"
4381
  msgstr "Brasilianischer Real (BRL)"
4382
 
4383
- #: core/class-settings.php:551
4384
  msgctxt "admin settings"
4385
  msgid "Canadian Dollar (CAD)"
4386
  msgstr "Kanadischer Dollar (CAD)"
4387
 
4388
- #: core/class-settings.php:552
4389
  msgctxt "admin settings"
4390
  msgid "Czech Koruna (CZK)"
4391
  msgstr "Tschechische Koruna (CZK)"
4392
 
4393
- #: core/class-settings.php:553
4394
  msgctxt "admin settings"
4395
  msgid "Danish Krone (DKK)"
4396
  msgstr "Dänische Krone (DKK)"
4397
 
4398
- #: core/class-settings.php:554
4399
  msgctxt "admin settings"
4400
  msgid "Euro (EUR)"
4401
  msgstr "Euro (EUR)"
4402
 
4403
- #: core/class-settings.php:555
4404
  msgctxt "admin settings"
4405
  msgid "Hong Kong Dollar (HKD)"
4406
  msgstr "Hong Kong Dollar (HKD)"
4407
 
4408
- #: core/class-settings.php:556
4409
  msgctxt "admin settings"
4410
  msgid "Hungarian Forint (HUF)"
4411
  msgstr "Ungarischer Forint (HUF)"
4412
 
4413
- #: core/class-settings.php:557
4414
  msgctxt "admin settings"
4415
  msgid "Israeli New Shequel (ILS)"
4416
  msgstr "Israelischer Neuer Schequel (ILS)"
4417
 
4418
- #: core/class-settings.php:558
4419
  msgctxt "admin settings"
4420
  msgid "Japanese Yen (JPY)"
4421
  msgstr "Japanischer Jen (JPY)"
4422
 
4423
- #: core/class-settings.php:559
4424
  msgctxt "admin settings"
4425
  msgid "Malasian Ringgit (MYR)"
4426
  msgstr "Malaysischer Ringgit (MYR)"
4427
 
4428
- #: core/class-settings.php:560
4429
  msgctxt "admin settings"
4430
  msgid "Mexican Peso (MXN)"
4431
  msgstr "Mexikanischer Peso (MXN)"
4432
 
4433
- #: core/class-settings.php:561
4434
  msgctxt "admin settings"
4435
  msgid "Norwegian Krone (NOK)"
4436
  msgstr "Norwegische Krone (NOK)"
4437
 
4438
- #: core/class-settings.php:562
4439
  msgctxt "admin settings"
4440
  msgid "New Zealand Dollar (NZD)"
4441
  msgstr "Neuseeland Dollar (NZD)"
4442
 
4443
- #: core/class-settings.php:563
4444
  msgctxt "admin settings"
4445
  msgid "Philippine Peso (PHP)"
4446
  msgstr "Philippinischer Peso (PHP)"
4447
 
4448
- #: core/class-settings.php:564
4449
  msgctxt "admin settings"
4450
  msgid "Polish Zloty (PLN)"
4451
  msgstr "Polnischer Zloty (PLN)"
4452
 
4453
- #: core/class-settings.php:565
4454
  msgctxt "admin settings"
4455
  msgid "Pound Sterling (GBP)"
4456
  msgstr "Pfund Sterling (GBP)"
4457
 
4458
- #: core/class-settings.php:566
4459
  msgctxt "admin settings"
4460
  msgid "Singapore Dollar (SGD)"
4461
  msgstr "Singapore Dollar (SGD)"
4462
 
4463
- #: core/class-settings.php:567
4464
  msgctxt "admin settings"
4465
  msgid "Swedish Krona (SEK)"
4466
  msgstr "Schwedische Krone (SEK)"
4467
 
4468
- #: core/class-settings.php:568
4469
  msgctxt "admin settings"
4470
  msgid "Swiss Franc (CHF)"
4471
  msgstr "Schweizer Franken (CHF)"
4472
 
4473
- #: core/class-settings.php:569
4474
  msgctxt "admin settings"
4475
  msgid "Taiwan Dollar (TWD)"
4476
  msgstr "Taiwanischer Dollar (TWD)"
4477
 
4478
- #: core/class-settings.php:570
4479
  msgctxt "admin settings"
4480
  msgid "Thai Baht (THB)"
4481
  msgstr "Thailändischer Baht (THB)"
4482
 
4483
- #: core/class-settings.php:571
4484
  msgctxt "admin settings"
4485
  msgid "Turkish Lira (TRY)"
4486
  msgstr "Türkische Lira (TRY)"
4487
 
4488
- #: core/class-settings.php:572
4489
  #, fuzzy
4490
  msgctxt "admin settings"
4491
  msgid "U.S. Dollar (USD)"
4492
  msgstr "U.S. Dollar"
4493
 
4494
- #: core/class-settings.php:576
4495
  msgctxt "admin settings"
4496
  msgid "Currency Symbol"
4497
  msgstr "Währungssymbol"
4498
 
4499
- #: core/class-settings.php:581
4500
  #, fuzzy
4501
  msgctxt "admin settings"
4502
  msgid "Currency symbol display"
4503
  msgstr "Währungssymbol"
4504
 
4505
- #: core/class-settings.php:585
4506
  msgctxt "admin settings"
4507
  msgid "Show currency symbol on the left"
4508
  msgstr ""
4509
 
4510
- #: core/class-settings.php:586
4511
  msgctxt "admin settings"
4512
  msgid "Show currency symbol on the right"
4513
  msgstr ""
4514
 
4515
- #: core/class-settings.php:587
4516
  #, fuzzy
4517
  msgctxt "admin settings"
4518
  msgid "Do not show currency symbol"
4519
  msgstr "Währungssymbol"
4520
 
4521
- #: core/class-settings.php:589
4522
  msgctxt "admin settings"
4523
  msgid "Thank you for payment message"
4524
  msgstr "Danke für die Bezahlung Nachricht"
4525
 
4526
- #: core/class-settings.php:590
4527
  msgctxt "admin settings"
4528
  msgid ""
4529
  "Thank you for your payment. Your payment is being verified and your listing "
@@ -4533,12 +4546,12 @@ msgstr ""
4533
  "geprüft. Die Verifizierung und die Prüfung können 48 Stunden in Anspruch "
4534
  "nehmen."
4535
 
4536
- #: core/class-settings.php:595
4537
  msgctxt "admin settings"
4538
  msgid "Ask users to come back for abandoned payments?"
4539
  msgstr ""
4540
 
4541
- #: core/class-settings.php:598
4542
  msgctxt "admin settings"
4543
  msgid ""
4544
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -4547,50 +4560,50 @@ msgid ""
4547
  "the transaction. BD can remind them to come back and continue."
4548
  msgstr ""
4549
 
4550
- #: core/class-settings.php:604
4551
  #, fuzzy
4552
  msgctxt "admin settings"
4553
  msgid "Listing abandonment threshold (hours)"
4554
  msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
4555
 
4556
- #: core/class-settings.php:609
4557
  msgctxt "admin settings"
4558
  msgid ""
4559
  "Listings with pending payments are marked as abandoned after this time. You "
4560
  "can also <a>customize the e-mail</a> users receive."
4561
  msgstr ""
4562
 
4563
- #: core/class-settings.php:614
4564
  msgctxt "admin settings"
4565
  msgid "Themes"
4566
  msgstr ""
4567
 
4568
- #: core/class-settings.php:616
4569
  msgctxt "admin settings"
4570
  msgid "You can manage your themes on <a>Directory Themes</a>."
4571
  msgstr ""
4572
 
4573
- #: core/class-settings.php:621
4574
  msgctxt "admin settings"
4575
  msgid "Theme button style"
4576
  msgstr ""
4577
 
4578
- #: core/class-settings.php:625
4579
  msgctxt "admin settings"
4580
  msgid "Use the BD theme style for BD buttons"
4581
  msgstr ""
4582
 
4583
- #: core/class-settings.php:626
4584
  msgctxt "admin settings"
4585
  msgid "Use the WP theme style for BD buttons"
4586
  msgstr ""
4587
 
4588
- #: core/class-settings.php:633
4589
  msgctxt "admin settings"
4590
  msgid "Image"
4591
  msgstr "Bild"
4592
 
4593
- #: core/class-settings.php:634
4594
  msgctxt "admin settings"
4595
  msgid ""
4596
  "Any changes to these settings will affect new listings only. Existing "
@@ -4603,57 +4616,57 @@ msgstr ""
4603
  "existierende Einträge verändert werden, musst du Bild(er) neu hochladen, "
4604
  "nachdem Einstellungen hier verändert wurden."
4605
 
4606
- #: core/class-settings.php:635
4607
  msgctxt "admin settings"
4608
  msgid "Image Settings"
4609
  msgstr "Bildeinstellungen"
4610
 
4611
- #: core/class-settings.php:636
4612
  msgctxt "admin settings"
4613
  msgid "Allow images?"
4614
  msgstr "Bilder erlauben?"
4615
 
4616
- #: core/class-settings.php:638
4617
  #, fuzzy
4618
  msgctxt "admin settings"
4619
  msgid "Min Image File Size (KB)"
4620
  msgstr "Maximale Bildgröße (KB)"
4621
 
4622
- #: core/class-settings.php:639
4623
  msgctxt "admin settings"
4624
  msgid "Max Image File Size (KB)"
4625
  msgstr "Maximale Bildgröße (KB)"
4626
 
4627
- #: core/class-settings.php:641
4628
  #, fuzzy
4629
  msgctxt "admin settings"
4630
  msgid "Min image width (px)"
4631
  msgstr "Bildergröße (in px):"
4632
 
4633
- #: core/class-settings.php:642
4634
  #, fuzzy
4635
  msgctxt "admin settings"
4636
  msgid "Min image height (px)"
4637
  msgstr "Bilderhöhe (in px):"
4638
 
4639
- #: core/class-settings.php:644
4640
  #, fuzzy
4641
  msgctxt "admin settings"
4642
  msgid "Max image width (px)"
4643
  msgstr "Maximale Bildbreite"
4644
 
4645
- #: core/class-settings.php:645
4646
  #, fuzzy
4647
  msgctxt "admin settings"
4648
  msgid "Max image height (px)"
4649
  msgstr "Maximale Bildhöhe"
4650
 
4651
- #: core/class-settings.php:647
4652
  msgctxt "admin settings"
4653
  msgid "Turn on thickbox/lightbox?"
4654
  msgstr "Kontrollkästchen/Leuchtkasten aktivieren?"
4655
 
4656
- #: core/class-settings.php:647
4657
  msgctxt "admin settings"
4658
  msgid ""
4659
  "Uncheck if it conflicts with other elements or plugins installed on your site"
@@ -4661,30 +4674,30 @@ msgstr ""
4661
  "Deaktivieren wenn Konflikte mit anderen Elementen oder installierten "
4662
  "Erweiterungen entstehen"
4663
 
4664
- #: core/class-settings.php:649
4665
  #, fuzzy
4666
  msgctxt "admin settings"
4667
  msgid "Thumbnails"
4668
  msgstr "Thumbnails"
4669
 
4670
- #: core/class-settings.php:650
4671
  #, fuzzy
4672
  msgctxt "admin settings"
4673
  msgid "Thumbnail width (px)"
4674
  msgstr "Thumbnailbreite"
4675
 
4676
- #: core/class-settings.php:651
4677
  #, fuzzy
4678
  msgctxt "admin settings"
4679
  msgid "Thumbnail height (px)"
4680
  msgstr "Thumbnailbreite"
4681
 
4682
- #: core/class-settings.php:654
4683
  msgctxt "admin settings"
4684
  msgid "Crop thumbnails to exact dimensions?"
4685
  msgstr ""
4686
 
4687
- #: core/class-settings.php:657
4688
  msgctxt "admin settings"
4689
  msgid ""
4690
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4693,12 +4706,12 @@ msgid ""
4693
  "Depending on the uploaded images, thumbnails may have different heights."
4694
  msgstr ""
4695
 
4696
- #: core/class-settings.php:663
4697
  msgctxt "admin settings"
4698
  msgid "Number of free images"
4699
  msgstr "Nummer der freien Bilder"
4700
 
4701
- #: core/class-settings.php:668
4702
  msgctxt "admin settings"
4703
  msgid ""
4704
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
@@ -4708,139 +4721,139 @@ msgstr ""
4708
  "erstellen eines <a>Preisplan</a> an Stelle dieser Einstellungen, die von "
4709
  "bezahlten Einträgen ignoriert wird."
4710
 
4711
- #: core/class-settings.php:671
4712
  msgctxt "admin settings"
4713
  msgid "Use default picture for listings with no picture?"
4714
  msgstr "Benutze Standardbilder für Einträge mit keinem Bild?"
4715
 
4716
- #: core/class-settings.php:672
4717
  msgctxt "admin settings"
4718
  msgid "Show Thumbnail on main listings page?"
4719
  msgstr "Thumbnail auf der Eintragshauptseite anzeigen?"
4720
 
4721
- #: core/class-settings.php:701
4722
  msgctxt "admin settings"
4723
  msgid "User"
4724
  msgstr ""
4725
 
4726
- #: core/class-settings.php:702
4727
  #, fuzzy
4728
  msgctxt "admin settings"
4729
  msgid "User registration date"
4730
  msgstr "Eintrag Enddatum"
4731
 
4732
- #: core/class-settings.php:728
4733
  msgctxt "admin settings"
4734
  msgid ""
4735
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4736
  "not activated."
4737
  msgstr ""
4738
 
4739
- #: core/class-settings.php:736
4740
  msgctxt "admin settings"
4741
  msgid ""
4742
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4743
  "be created."
4744
  msgstr ""
4745
 
4746
- #: core/class-settings.php:745
4747
  msgctxt "admin settings"
4748
  msgid ""
4749
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4750
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4751
  msgstr ""
4752
 
4753
- #: core/class-settings.php:1065
4754
  msgctxt "settings"
4755
  msgid "Deactivate License"
4756
  msgstr "Lizenz Deaktivieren"
4757
 
4758
- #: core/class-settings.php:1067
4759
  msgctxt "settings"
4760
  msgid "Deactivating license..."
4761
  msgstr "Deaktiviere Lizenz..."
4762
 
4763
- #: core/class-settings.php:1070
4764
  msgctxt "settings"
4765
  msgid "Activate License"
4766
  msgstr "Aktiviere Lizenz"
4767
 
4768
- #: core/class-settings.php:1072
4769
  msgctxt "settings"
4770
  msgid "Activating license..."
4771
  msgstr "Aktiviere Lizenz..."
4772
 
4773
- #: core/class-settings.php:1095
4774
  msgctxt "admin settings"
4775
  msgid "Valid placeholders: %s"
4776
  msgstr "Gültige Platzhalter: %s"
4777
 
4778
- #: core/class-settings.php:1129
4779
  msgctxt "settings email"
4780
  msgid "Click to edit e-mail"
4781
  msgstr "Klicken um E-mail zu bearbeiten"
4782
 
4783
- #: core/class-settings.php:1130
4784
  msgctxt "settings email"
4785
  msgid "Click to edit"
4786
  msgstr "zum Bearbeiten klicken"
4787
 
4788
- #: core/class-settings.php:1143
4789
  msgctxt "settings email"
4790
  msgid "E-Mail Subject"
4791
  msgstr "E-mail Betreff"
4792
 
4793
- #: core/class-settings.php:1154
4794
  msgctxt "settings email"
4795
  msgid "E-Mail Body"
4796
  msgstr "E-mail Text"
4797
 
4798
- #: core/class-settings.php:1165
4799
  msgctxt "settings email"
4800
  msgid "You can use the following placeholders:"
4801
  msgstr "Du kannst folgende Platzhalter verwenden:"
4802
 
4803
- #: core/class-settings.php:1188
4804
  msgctxt "settings email"
4805
  msgid "Preview e-mail"
4806
  msgstr "Vorschau E-mail"
4807
 
4808
- #: core/class-settings.php:1189
4809
  msgctxt "settings email"
4810
  msgid "Cancel"
4811
  msgstr "Abbrechen"
4812
 
4813
- #: core/class-settings.php:1190
4814
  msgctxt "settings email"
4815
  msgid "Save Changes"
4816
  msgstr "Änderungen sichern"
4817
 
4818
- #: core/class-settings.php:1209
4819
  msgctxt "settings email"
4820
  msgid "Site title"
4821
  msgstr "Seitentitel"
4822
 
4823
- #: core/class-settings.php:1212
4824
  msgctxt "settings email"
4825
  msgid "Site title (with link)"
4826
  msgstr "Seitentitel (mit Link)"
4827
 
4828
- #: core/class-settings.php:1215
4829
  msgctxt "settings email"
4830
  msgid "Site address (with link)"
4831
  msgstr "Seitenadresse (mit Link)"
4832
 
4833
- #: core/class-settings.php:1218
4834
  msgctxt "settings email"
4835
  msgid "Directory URL (with link)"
4836
  msgstr "Verzeichnis URL (mit Link)"
4837
 
4838
- #: core/class-settings.php:1221
4839
  msgctxt "settings email"
4840
  msgid "Current date"
4841
  msgstr "Aktuelles Datum"
4842
 
4843
- #: core/class-settings.php:1224
4844
  msgctxt "settings email"
4845
  msgid "Current time"
4846
  msgstr "Aktuelle Zeit"
@@ -6778,13 +6791,19 @@ msgctxt "templates"
6778
  msgid "Upgrade listing to %s for %s."
6779
  msgstr "Eintrag aktualisieren zu %s für %s."
6780
 
6781
- #: templates/main-box.tpl.php:16
 
 
 
 
 
 
6782
  #, fuzzy
6783
  msgctxt "main box"
6784
  msgid "Find Listings"
6785
  msgstr "Eintrag finden"
6786
 
6787
- #: templates/main-box.tpl.php:17
6788
  #, fuzzy
6789
  msgctxt "main box"
6790
  msgid "Advanced Search"
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.5.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-09-20 02:40:34+00:00\n"
8
  "PO-Revision-Date: 2016-01-21 08:45-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
122
  msgid "Renew Listing"
123
  msgstr "Eintrag erneuern"
124
 
125
+ #: admin/class-admin.php:102
126
+ msgid ""
127
+ "Preview is only available after you've saved the first draft. This is due\n"
128
+ "to how WordPress stores the data."
129
+ msgstr ""
130
+
131
+ #: admin/class-admin.php:135
132
  msgctxt "drip pointer"
133
  msgid ""
134
  "Find out how to create a compelling, thriving business directory from "
136
  "a FREE premium module just for signing up."
137
  msgstr "-"
138
 
139
+ #: admin/class-admin.php:137
140
  msgctxt "drip pointer"
141
  msgid "Email Address:"
142
  msgstr "E-mail Adresse:"
143
 
144
+ #: admin/class-admin.php:143
145
  msgctxt "drip pointer"
146
  msgid "Want to know the Secrets of Building an Awesome Business Directory?"
147
  msgstr "-"
148
 
149
+ #: admin/class-admin.php:145
150
  msgctxt "drip pointer"
151
  msgid "Yes, please!"
152
  msgstr "Ja, bitte!"
153
 
154
+ #: admin/class-admin.php:147
155
  msgctxt "drip pointer"
156
  msgid "No, thanks"
157
  msgstr "Nein, danke"
158
 
159
+ #: admin/class-admin.php:164
160
  msgctxt "admin"
161
  msgid "Business Directory"
162
  msgstr "Branchenverzeichnis"
163
 
164
+ #: admin/class-admin.php:175
165
  msgctxt "admin"
166
  msgid "You're all set. Visit your new <a>Business Directory</a> page."
167
  msgstr ""
168
  "Sie haben alles konfiguriert. Besuchen sie Ihr neues <a>Branchenverzeichnis</"
169
  "a>."
170
 
171
+ #: admin/class-admin.php:196
172
  #, fuzzy
173
  msgctxt "drip pointer"
174
  msgid "Invalid e-mail address."
175
  msgstr "Ungültiger Erneuerungszustand."
176
 
177
+ #: admin/class-admin.php:230
178
  msgctxt "admin menu"
179
  msgid "Business Directory Admin"
180
  msgstr "Branchenverzeichnis Administration"
181
 
182
+ #: admin/class-admin.php:231
183
  #, fuzzy
184
  msgctxt "admin menu"
185
  msgid "Dir. Admin"
186
  msgstr "Verzeichnis Administration"
187
 
188
+ #: admin/class-admin.php:231
189
  msgctxt "admin menu"
190
  msgid "Directory Admin"
191
  msgstr "Verzeichnis Administration"
192
 
193
+ #: admin/class-admin.php:237 admin/class-admin.php:238
194
  msgctxt "admin menu"
195
  msgid "Add New Listing"
196
  msgstr "Neuen Eintrag hinzufügen"
197
 
198
+ #: admin/class-admin.php:243 admin/class-admin.php:244
199
  msgctxt "admin menu"
200
  msgid "Manage Options"
201
  msgstr "Optionen Verwalten"
202
 
203
+ #: admin/class-admin.php:249 admin/class-admin.php:250
204
  msgctxt "admin menu"
205
  msgid "Manage Fees"
206
  msgstr "Preise Verwalten"
207
 
208
+ #: admin/class-admin.php:255 admin/class-admin.php:256
209
  msgctxt "admin menu"
210
  msgid "Manage Form Fields"
211
  msgstr "Form Felder verwalten"
212
 
213
+ #: admin/class-admin.php:261 admin/class-admin.php:262
214
  #, fuzzy
215
  msgctxt "admin menu"
216
  msgid "Listings"
217
  msgstr "Einträge"
218
 
219
+ #: admin/class-admin.php:276 admin/class-admin.php:277
220
  msgctxt "admin menu"
221
  msgid "CSV Import"
222
  msgstr "CSV Datei importieren"
223
 
224
+ #: admin/class-admin.php:282 admin/class-admin.php:283
225
  msgctxt "admin menu"
226
  msgid "CSV Export"
227
  msgstr "CVS Datei exportieren"
228
 
229
+ #: admin/class-admin.php:288 admin/class-admin.php:289
230
  msgctxt "admin menu"
231
  msgid "Debug"
232
  msgstr "Fehlerkorrektur"
233
 
234
+ #: admin/class-admin.php:298
235
  msgctxt "admin menu"
236
  msgid "Main Menu"
237
  msgstr "Hauptmenü"
238
 
239
+ #: admin/class-admin.php:309
240
  msgctxt "admin menu"
241
  msgid "Uninstall Business Directory Plugin"
242
  msgstr "Branchenverzeichnis deinstallieren"
243
 
244
+ #: admin/class-admin.php:310
245
  msgctxt "admin menu"
246
  msgid "Uninstall"
247
  msgstr "Deinstallieren"
248
 
249
+ #: admin/class-admin.php:424
250
  #: admin/templates/listing-metabox-categories.tpl.php:69
251
  msgctxt "admin infometabox"
252
  msgid "never"
253
  msgstr "niemals"
254
 
255
+ #: admin/class-admin.php:518
256
  msgctxt "admin"
257
  msgid "Dismiss this notice."
258
  msgstr ""
259
 
260
+ #: admin/class-admin.php:546
261
  msgctxt "admin"
262
  msgid "The listing has been published."
263
  msgid_plural "The listings have been published."
264
  msgstr[0] "Der Eintrag wurde veröffentlicht."
265
  msgstr[1] "Die Einträge wurden veröffentlicht."
266
 
267
+ #: admin/class-admin.php:564
268
  msgctxt "admin"
269
  msgid "The listing status has been set as paid."
270
  msgid_plural "The listings status has been set as paid."
271
  msgstr[0] "Der Status des Eintrags wurde auf bezahlt gesetzt."
272
  msgstr[1] "Der Status der Einträge wurde auf bezahlt gesetzt."
273
 
274
+ #: admin/class-admin.php:570
275
  msgctxt "admin"
276
  msgid ""
277
  "Only invoices containing non-recurring items were marked as paid. Please "
283
  msgstr[0] ""
284
  msgstr[1] ""
285
 
286
+ #: admin/class-admin.php:589
287
  msgctxt "admin"
288
  msgid "The listing has been modified."
289
  msgid_plural "The listings have been modified."
290
  msgstr[0] "Der Eintrag wurde verändert."
291
  msgstr[1] "Die Einträge wurden verändert."
292
 
293
+ #: admin/class-admin.php:602
294
  msgctxt "admin"
295
  msgid "The listing has been upgraded."
296
  msgid_plural "The listings have been upgraded."
297
  msgstr[0] "Der Eintrag wurde aktualisiert"
298
  msgstr[1] "Die Einträge wurden aktualisiert."
299
 
300
+ #: admin/class-admin.php:614
301
  msgctxt "admin"
302
  msgid "The listing has been downgraded."
303
  msgid_plural "The listings have been downgraded."
304
  msgstr[0] "Der Eintrag wurde zurück gesetzt."
305
  msgstr[1] "Die Einträge wurden zurück gesetzt."
306
 
307
+ #: admin/class-admin.php:625
308
  msgctxt "admin payments"
309
  msgid ""
310
  "The payment status was not changed. Recurring payments can't be manually "
312
  "went through."
313
  msgstr ""
314
 
315
+ #: admin/class-admin.php:630
316
  msgctxt "admin"
317
  msgid "The transaction has been approved."
318
  msgstr "Die Transaktion wurde genehmigt."
319
 
320
+ #: admin/class-admin.php:640
321
  msgctxt "admin"
322
  msgid "The transaction has been rejected."
323
  msgstr "Die Transaktion wurde abgelehnt."
324
 
325
+ #: admin/class-admin.php:646
326
  msgctxt "admin"
327
  msgid "The fee was successfully assigned."
328
  msgstr "Der Preis wurde erfolgreich zugewiesen."
329
 
330
+ #: admin/class-admin.php:655
331
  msgctxt "admin"
332
  msgid "Listing was renewed."
333
  msgid_plural "Listings were renewed."
334
  msgstr[0] "Eintrag wurde aktualisiert."
335
  msgstr[1] "Einträge wurden aktualisiert."
336
 
337
+ #: admin/class-admin.php:662
338
  msgctxt "admin"
339
  msgid "Renewal email sent."
340
  msgstr "E-mail erneut senden."
341
 
342
+ #: admin/class-admin.php:696
343
  msgctxt "admin category id"
344
  msgid "ID"
345
  msgstr "ID"
346
 
347
+ #: admin/class-admin.php:698 admin/class-admin.php:704
348
  msgctxt "admin"
349
  msgid "Listing Count"
350
  msgstr "Anzahl Einträge "
351
 
352
+ #: admin/class-admin.php:813
353
  msgctxt "admin"
354
  msgid ""
355
  "<b>Business Directory Plugin</b> requires fields with the following "
358
  "<b>Branchenverzeichnis Erweiterung</b> benötigt Felder mit den folgenden "
359
  "Verbindungen um korrekt zu funktionieren: <b>%s</b>."
360
 
361
+ #: admin/class-admin.php:815
362
  msgctxt "admin"
363
  msgid ""
364
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
367
  "<b>Branchenverzeichnis Erweiterung</b> benötigt ein Feld mit der Verbindung "
368
  "<b>%s</b>, um korrekt zu funktionieren."
369
 
370
+ #: admin/class-admin.php:819
371
  msgctxt "admin"
372
  msgid ""
373
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
376
  "Sie können diese benutzerdefinierten Felder selbst erzeugen \"Form Felder "
377
  "Verwalten\" oder vom Branchenverzeichnis automatisch erstellen lassen."
378
 
379
+ #: admin/class-admin.php:823
380
  msgctxt "admin"
381
  msgid "Go to \"Manage Form Fields\""
382
  msgstr "zu \"Form Felder verwalten\""
383
 
384
+ #: admin/class-admin.php:826
385
  msgctxt "admin"
386
  msgid "Create these required fields for me"
387
  msgstr "Erstelle diese benötigten Felder für mich"
388
 
389
+ #: admin/class-admin.php:835
390
  msgctxt "admin"
391
  msgid ""
392
  "<b>Business Directory Plugin</b> requires a page with the "
395
  "<b>Branchenverzeichnis Erweiterung</b> benötigt eine Seite mit dem "
396
  "<tt>[businessdirectory]</tt> shortcode um zu funktionieren."
397
 
398
+ #: admin/class-admin.php:837
399
  msgctxt "admin"
400
  msgid ""
401
  "You can create this page by yourself or let Business Directory do this for "
404
  "Du kannst diese Seite selbst erstellen oder vom Branchenverzeichnis "
405
  "automatisch erstellen lassen."
406
 
407
+ #: admin/class-admin.php:841
408
  msgctxt "admin"
409
  msgid "Create required pages for me"
410
  msgstr "Erstelle benötigte Seiten für mich"
411
 
412
+ #: admin/class-admin.php:881
413
  msgctxt "admin compat"
414
  msgid "Installed: %s"
415
  msgstr "Installiert: %s"
416
 
417
+ #: admin/class-admin.php:881
418
  msgctxt "admin compat"
419
  msgid "N/A"
420
  msgstr "keine Angabe"
421
 
422
+ #: admin/class-admin.php:884
423
  msgctxt "admin compat"
424
  msgid "Required: %s"
425
  msgstr "Pflichtfeld: %s"
426
 
427
+ #: admin/class-admin.php:896
428
  msgctxt "admin compat"
429
  msgid ""
430
  "Business Directory has detected some incompatible premium module versions "
433
  "Branchenverzeichnis hat festgestellt, dass einige inkompatible Premium Modul "
434
  "Versionen installiert sind."
435
 
436
+ #: admin/class-admin.php:898
437
  msgctxt "admin compat"
438
  msgid ""
439
  "Please upgrade to the required versions indicated below to make sure "
442
  "Bitte die benötigten Versionen siehe unten aktualisieren, um sicher zu sein, "
443
  "dass alles korrekt funktioniert. "
444
 
445
+ #: admin/class-admin.php:918
446
  msgctxt "admin"
447
  msgid ""
448
  "We noticed you want your Business Directory users to register before posting "
1404
  "stelle sicher, dass du genügend Speicherplatz für PHP vorhanden ist. Schaue "
1405
  "ins Fehlerprotokoll."
1406
 
1407
+ #: admin/templates/csv-import-progress.tpl.php:13
1408
+ #: admin/templates/csv-import-progress.tpl.php:20
 
 
 
 
 
1409
  #, fuzzy
1410
  msgctxt "admin csv-import"
1411
  msgid "← Return to CSV Import"
1412
  msgstr "Zurück nach \"CSV Importieren\""
1413
 
1414
+ #: admin/templates/csv-import-progress.tpl.php:18
1415
  #, fuzzy
1416
  msgctxt "admin csv-import"
1417
  msgid "Import Canceled"
1418
  msgstr "Export abgebrochen"
1419
 
1420
+ #: admin/templates/csv-import-progress.tpl.php:19
1421
  #, fuzzy
1422
  msgctxt "admin csv-import"
1423
  msgid "The import has been canceled."
1424
  msgstr "Der Export wurde abgebrochen."
1425
 
1426
+ #: admin/templates/csv-import-progress.tpl.php:26
1427
  #, fuzzy
1428
  msgid "Import Progress"
1429
  msgstr "Export wird durchgeführt..."
1430
 
1431
+ #: admin/templates/csv-import-progress.tpl.php:29
1432
  #, fuzzy
1433
  msgctxt "admin csv-import"
1434
  msgid "Files"
1435
  msgstr "CSV Datei"
1436
 
1437
+ #: admin/templates/csv-import-progress.tpl.php:32
1438
  msgctxt "admin csv-import"
1439
  msgid "Rows in file"
1440
  msgstr ""
1441
 
1442
+ #: admin/templates/csv-import-progress.tpl.php:35
1443
  msgctxt "admin csv-import"
1444
  msgid "Progress"
1445
  msgstr ""
1446
 
1447
+ #: admin/templates/csv-import-progress.tpl.php:39
1448
  msgctxt "admin csv-import"
1449
  msgid "Import has not started. Click \"Start Import\" to begin."
1450
  msgstr ""
1451
 
1452
+ #: admin/templates/csv-import-progress.tpl.php:40
1453
  #, fuzzy
1454
  msgctxt "admin csv-import"
1455
  msgid "Importing CSV file..."
1456
  msgstr "Import Dateien"
1457
 
1458
+ #: admin/templates/csv-import-progress.tpl.php:46
1459
  #, fuzzy
1460
  msgctxt "admin csv-import"
1461
  msgid "Start Import"
1462
  msgstr "CSV Datei importieren"
1463
 
1464
+ #: admin/templates/csv-import-progress.tpl.php:47
1465
  #, fuzzy
1466
  msgctxt "admin csv-import"
1467
  msgid "Cancel Import"
1468
  msgstr "Export abbrechen"
1469
 
1470
+ #: admin/templates/csv-import-progress.tpl.php:54
1471
  #, fuzzy
1472
  msgctxt "admin csv-import"
1473
  msgid "Import finished"
1474
  msgstr "Import Dateien"
1475
 
1476
+ #: admin/templates/csv-import-progress.tpl.php:57
1477
  msgctxt "admin csv-import"
1478
  msgid "Import was completed successfully."
1479
  msgstr "Der Import wurde erfolgreich abgeschlossen."
1480
 
1481
+ #: admin/templates/csv-import-progress.tpl.php:61
1482
  msgctxt "admin csv-import"
1483
  msgid "Import was completed but some rows were rejected."
1484
  msgstr "Der Import ist komplett. Einige Zeilen wurden abgelehnt."
1485
 
1486
+ #: admin/templates/csv-import-progress.tpl.php:64
1487
  msgctxt "admin csv-import"
1488
  msgid "Import Summary"
1489
  msgstr "Import Zusammenfassung"
1490
 
1491
+ #: admin/templates/csv-import-progress.tpl.php:66
1492
  msgctxt "admin csv-import"
1493
  msgid "Rows in file:"
1494
  msgstr ""
1495
 
1496
+ #: admin/templates/csv-import-progress.tpl.php:69
1497
  #, fuzzy
1498
  msgctxt "admin csv-import"
1499
  msgid "Imported rows:"
1500
  msgstr "Korrekt importierte Zeilen:"
1501
 
1502
+ #: admin/templates/csv-import-progress.tpl.php:72
1503
  msgctxt "admin csv-import"
1504
  msgid "Rejected rows:"
1505
  msgstr "Abgelehnte Zeilen:"
1506
 
1507
+ #: admin/templates/csv-import-progress.tpl.php:77
1508
  #, fuzzy
1509
  msgctxt "admin csv-import"
1510
  msgid "Import Warnings"
1511
  msgstr "Importeinstellungen"
1512
 
1513
+ #: admin/templates/csv-import-progress.tpl.php:80
1514
  msgctxt "admin csv-import"
1515
  msgid "Line #"
1516
  msgstr "Zeile #"
1517
 
1518
+ #: admin/templates/csv-import-progress.tpl.php:81
1519
  msgctxt "admin csv-import"
1520
  msgid "Line"
1521
  msgstr "Zeile"
1522
 
1523
+ #: admin/templates/csv-import-progress.tpl.php:82
1524
  msgctxt "admin csv-import"
1525
  msgid "Warning"
1526
  msgstr "Warnung"
2232
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2233
  msgstr ""
2234
 
2235
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.2) #-#-#-#-#
2236
  #. Plugin Name of the plugin/theme
2237
  #: admin/templates/header.tpl.php:4
2238
  msgid "Business Directory Plugin"
3023
  msgid "Allow Tracking"
3024
  msgstr "Verfolgung erlauben"
3025
 
3026
+ #: business-directory-plugin.php:666
3027
  msgctxt "admin plugins"
3028
  msgid "Settings"
3029
  msgstr "Einstellungen"
3030
 
3031
+ #: business-directory-plugin.php:774 business-directory-plugin.php:781
3032
  msgctxt "rss feed"
3033
  msgid "%s Feed"
3034
  msgstr "% Feed"
3035
 
3036
+ #: business-directory-plugin.php:1119
3037
  msgctxt "title"
3038
  msgid "Submit A Listing"
3039
  msgstr "Eintrag zusenden"
3040
 
3041
+ #: business-directory-plugin.php:1129
3042
  msgctxt "title"
3043
  msgid "Find a Listing"
3044
  msgstr "Eintrag finden"
3045
 
3046
+ #: business-directory-plugin.php:1139
3047
  msgctxt "title"
3048
  msgid "View All Listings"
3049
  msgstr "Alle Einträge anschauen"
3050
 
3051
+ #: business-directory-plugin.php:1159
3052
  msgctxt "title"
3053
  msgid "Listings tagged: %s"
3054
  msgstr "Einträge getaggt: %s"
3055
 
3056
+ #: core/api.php:401
3057
  #, fuzzy
3058
  msgid "Free"
3059
  msgstr "Kostenlos"
3060
 
3061
+ #: core/class-csv-import.php:394
3062
+ msgctxt "admin csv-import"
3063
+ msgid ""
3064
+ "Could not create listing category \"<category-name>\". The operation failed "
3065
+ "with the following error: <error-message>."
3066
+ msgstr ""
3067
+
3068
+ #: core/class-csv-import.php:400
3069
  msgctxt "admin csv-import"
3070
  msgid "Could not create listing category \"%s\""
3071
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
3072
 
3073
+ #: core/class-csv-import.php:544
3074
  msgctxt "admin csv-import"
3075
  msgid "Username \"%s\" does not exist"
3076
  msgstr "Benutzername \"%s\" existiert nicht"
3077
 
3078
+ #: core/class-csv-import.php:576
3079
  msgctxt "admin csv-import"
3080
  msgid "Missing required field: %s"
3081
  msgstr "Benötigtes nicht vorhandenes Feld: %s"
3082
 
3083
+ #: core/class-csv-import.php:596
3084
  msgctxt "admin csv-import"
3085
  msgid "Listing category \"%s\" does not exist"
3086
  msgstr "Eintragskategorie \"%s\" existiert nicht"
3601
  msgid "Enable AJAX compatibility mode?"
3602
  msgstr ""
3603
 
3604
+ #: core/class-settings.php:181 core/class-settings.php:665
3605
  msgctxt "admin settings"
3606
  msgid "Listings"
3607
  msgstr "Einträge"
3608
 
3609
+ #: core/class-settings.php:182 core/class-settings.php:335
3610
+ #: core/class-settings.php:622
3611
  msgctxt "admin settings"
3612
  msgid "General Settings"
3613
  msgstr "Allgemeine Einstellungen"
3656
 
3657
  #: core/class-settings.php:200
3658
  msgctxt "admin settings"
3659
+ msgid "Open detailed view of listing in new tab?"
3660
+ msgstr ""
3661
+
3662
+ #: core/class-settings.php:205
3663
+ msgctxt "admin settings"
3664
  msgid "Require login for using the contact form?"
3665
  msgstr "Einloggen um die Kontaktform zu benutzen?"
3666
 
3667
+ #: core/class-settings.php:211
3668
  msgctxt "admin settings"
3669
  msgid "Maximum number of contact form submits per day"
3670
  msgstr "Maximale Nummer der Kontaktformmails die pro Tag zugesendet werden"
3671
 
3672
+ #: core/class-settings.php:214
3673
  msgctxt "admin settings"
3674
  msgid ""
3675
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
3678
  "Benutze dieses Feld um spamming von Einträgen zu vermeiden. 0 heisst "
3679
  "unbegrenzt pro Tag."
3680
 
3681
+ #: core/class-settings.php:220
3682
  msgctxt "admin settings"
3683
  msgid "Include comment form on listing pages?"
3684
  msgstr "Kommentarform einfügen in Eintragsseiten?"
3685
 
3686
+ #: core/class-settings.php:223
3687
  msgctxt "admin settings"
3688
  msgid ""
3689
  "Allow visitors to discuss listings using the standard WordPress comment "
3692
  "Besuchern erlauben die Einträge mit der Standard Wordpress Form zu "
3693
  "diskutieren. Kommentare sind öffentlich."
3694
 
3695
+ #: core/class-settings.php:224
3696
  msgctxt "admin settings"
3697
  msgid "Show listings under categories on main page?"
3698
  msgstr "Einträge unter Kategorien anzeigen auf der Hauptseite?"
3699
 
3700
+ #: core/class-settings.php:225
3701
  msgctxt "admin settings"
3702
  msgid "Status of listings upon uninstalling plugin"
3703
  msgstr "Status der Einträge bei Deinstallation der Erweiterung"
3704
 
3705
+ #: core/class-settings.php:226 core/class-settings.php:228
3706
  msgctxt "post status"
3707
  msgid "Draft"
3708
  msgstr ""
3709
 
3710
+ #: core/class-settings.php:226 core/class-settings.php:228
3711
  msgctxt "post status"
3712
  msgid "Trash"
3713
  msgstr ""
3714
 
3715
+ #: core/class-settings.php:227
3716
  msgctxt "admin settings"
3717
  msgid "Status of deleted listings"
3718
  msgstr "Status der gelöschten Einträge"
3719
 
3720
+ #: core/class-settings.php:229
3721
  #, fuzzy
3722
  msgctxt "admin settings"
3723
  msgid "Submit Listing instructions message"
3724
  msgstr "Eintrag Kontakt Nachricht"
3725
 
3726
+ #: core/class-settings.php:229
3727
  msgctxt "admin settings"
3728
  msgid ""
3729
  "This text is displayed at the first page of the Submit Listing process for "
3731
  "form or anything you want to tell users before they get started."
3732
  msgstr ""
3733
 
3734
+ #: core/class-settings.php:231
3735
  msgctxt "admin settings"
3736
  msgid "Listing Renewal"
3737
  msgstr "Einträge erneuern"
3738
 
3739
+ #: core/class-settings.php:232
3740
  msgctxt "admin settings"
3741
  msgid "Turn on listing renewal option?"
3742
  msgstr "Option zur Erneuerung von Einträgen aktivieren?"
3743
 
3744
+ #: core/class-settings.php:235
3745
  msgctxt "admin settings"
3746
  msgid "Allow recurring renewal payments?"
3747
  msgstr "Wiederholte Bezahlung erlauben?"
3748
 
3749
+ #: core/class-settings.php:238
3750
  msgctxt "admin settings"
3751
  msgid ""
3752
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3756
  "anzumelden. Der Preis wird abgebucht, zu dem Zeitpunkt an dem der Eintrag "
3757
  "abläuft, ohne Eingriff durch den Benutzer."
3758
 
3759
+ #: core/class-settings.php:242
3760
  msgctxt "admin settings"
3761
  msgid "Use recurring payments as the default payment method?"
3762
  msgstr "Benutze automatische Abbuchungen als Standardbezahlmethode?"
3763
 
3764
+ #: core/class-settings.php:245
3765
  msgctxt "admin settings"
3766
  msgid ""
3767
  "Enable automatic renewal without having users opt in during the submit "
3770
  "Automatische Abbuchung aktivieren, ohne die Anmeldung durch den Benutzer "
3771
  "während der Einreichung."
3772
 
3773
+ #: core/class-settings.php:250
3774
  msgctxt "admin settings"
3775
  msgid "Listing renewal e-mail threshold (in days)"
3776
  msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
3777
 
3778
+ #: core/class-settings.php:253
3779
  msgctxt "admin settings"
3780
  msgid ""
3781
  "Configure how many days before listing expiration is the renewal e-mail sent."
3783
  "Konfiguriere wieviel Tage vor der Abbuchung eine Buchungsmail verschickt "
3784
  "wird."
3785
 
3786
+ #: core/class-settings.php:257
3787
  msgctxt "admin settings"
3788
  msgid ""
3789
  "Send expiration notices including a cancel links to auto-renewed listings?"
3791
  "Sende eine Ablaufinformation die einen Beenden und einen Automatisch Eintrag "
3792
  "Erneuern Link enghält?"
3793
 
3794
+ #: core/class-settings.php:264
3795
  msgctxt "admin settings"
3796
  msgid "Remind listing owners of expired listings (past due)?"
3797
  msgstr "Eintraginhaber an abgelaufene Einträge erinnern (überfällig)?"
3798
 
3799
+ #: core/class-settings.php:269
3800
  msgctxt "admin settings"
3801
  msgid "Listing renewal reminder e-mail threshold (in days)"
3802
  msgstr "Einträge erneuern E-mail Grenze (in Tagen)"
3803
 
3804
+ #: core/class-settings.php:272
3805
  msgctxt "admin settings"
3806
  msgid ""
3807
  "Configure how many days after the expiration of a listing an e-mail reminder "
3810
  "Konfiguriere wie viele Tage nach dem Ablauf eines Eintrags eine E-mail an "
3811
  "den Inhaber versendet wird."
3812
 
3813
+ #: core/class-settings.php:275
3814
  msgctxt "admin settings"
3815
  msgid "Post/Category Settings"
3816
  msgstr "Post/Kategorie Einstellungen"
3817
 
3818
+ #: core/class-settings.php:276
3819
  msgctxt "admin settings"
3820
  msgid "Default new post status"
3821
  msgstr "Standard neuer Post Status"
3822
 
3823
+ #: core/class-settings.php:277 core/class-settings.php:280
3824
  msgctxt "post status"
3825
  msgid "Published"
3826
  msgstr ""
3827
 
3828
+ #: core/class-settings.php:277 core/class-settings.php:280
3829
  #, fuzzy
3830
  msgctxt "post status"
3831
  msgid "Pending"
3832
  msgstr "Ausstehend"
3833
 
3834
+ #: core/class-settings.php:279
3835
  msgctxt "admin settings"
3836
  msgid "Edit post status"
3837
  msgstr "Post Status Bearbeiten"
3838
 
3839
+ #: core/class-settings.php:281
3840
  msgctxt "admin settings"
3841
  msgid "Order categories list by"
3842
  msgstr "Anordnung Kategorieliste durch"
3843
 
3844
+ #: core/class-settings.php:283
3845
  msgctxt "admin settings"
3846
  msgid "Name"
3847
  msgstr "Name"
3848
 
3849
+ #: core/class-settings.php:284
3850
  msgctxt "admin settings"
3851
  msgid "Slug"
3852
  msgstr "Entwurf"
3853
 
3854
+ #: core/class-settings.php:285
3855
  msgctxt "admin settings"
3856
  msgid "Listing Count"
3857
  msgstr "Anzahl Einträge"
3858
 
3859
+ #: core/class-settings.php:287
3860
  msgctxt "admin settings"
3861
  msgid "Sort order for categories"
3862
  msgstr "Sortierung für Kategorien"
3863
 
3864
+ #: core/class-settings.php:288 core/class-settings.php:306
3865
  msgctxt "admin settings"
3866
  msgid "Ascending"
3867
  msgstr "Aufsteigend"
3868
 
3869
+ #: core/class-settings.php:288 core/class-settings.php:306
3870
  msgctxt "admin settings"
3871
  msgid "Descending"
3872
  msgstr "Absteigend"
3873
 
3874
+ #: core/class-settings.php:289
3875
  msgctxt "admin settings"
3876
  msgid "Show category post count?"
3877
  msgstr "Kategoriepost Anzahl anzeigen?"
3878
 
3879
+ #: core/class-settings.php:290
3880
  msgctxt "admin settings"
3881
  msgid "Hide empty categories?"
3882
  msgstr "Leere Kategorien verbergen?"
3883
 
3884
+ #: core/class-settings.php:291
3885
  msgctxt "admin settings"
3886
  msgid "Show only parent categories in category list?"
3887
  msgstr "Nur Elternkategorien in Kategorieliste anzeigen?"
3888
 
3889
+ #: core/class-settings.php:293
3890
  msgctxt "admin settings"
3891
  msgid "Listings Sorting"
3892
  msgstr "Sortierung Einträge"
3893
 
3894
+ #: core/class-settings.php:294
3895
  msgctxt "admin settings"
3896
  msgid "Order directory listings by"
3897
  msgstr "Anordnung Verzeichniseinträge durch"
3898
 
3899
+ #: core/class-settings.php:296
3900
  msgctxt "admin settings"
3901
  msgid "Title"
3902
  msgstr "Titel"
3903
 
3904
+ #: core/class-settings.php:297
3905
  msgctxt "admin settings"
3906
  msgid "Author"
3907
  msgstr "Author"
3908
 
3909
+ #: core/class-settings.php:298 core/class-settings.php:708
3910
  msgctxt "admin settings"
3911
  msgid "Date posted"
3912
  msgstr "Datum gepostet"
3913
 
3914
+ #: core/class-settings.php:299 core/class-settings.php:709
3915
  msgctxt "admin settings"
3916
  msgid "Date last modified"
3917
  msgstr "Datum zuletzt verändert"
3918
 
3919
+ #: core/class-settings.php:300
3920
  msgctxt "admin settings"
3921
  msgid "Random"
3922
  msgstr "Zufall"
3923
 
3924
+ #: core/class-settings.php:301
3925
  msgctxt "admin settings"
3926
  msgid "Paid first then free. Inside each group by date."
3927
  msgstr ""
3928
 
3929
+ #: core/class-settings.php:302
3930
  msgctxt "admin settings"
3931
  msgid "Paid first then free. Inside each group by title."
3932
  msgstr ""
3933
 
3934
+ #: core/class-settings.php:304
3935
  msgctxt "admin settings"
3936
  msgid "Sort directory listings by"
3937
  msgstr "Verzeichnissortierung der Einträge durch"
3938
 
3939
+ #: core/class-settings.php:305
3940
  msgctxt "admin settings"
3941
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3942
  msgstr ""
3943
  "Aufsteigend für aufsteigende Reihenfolge A-Z, Absteigend für absteigende "
3944
  "Reihenfolge Z-A"
3945
 
3946
+ #: core/class-settings.php:310
3947
  msgctxt "admin settings"
3948
  msgid "Enable sort bar?"
3949
  msgstr "Sortierung aktivieren?"
3950
 
3951
+ #: core/class-settings.php:315
3952
  msgctxt "admin settings"
3953
  msgid "Sortbar Fields"
3954
  msgstr "Sortierbare Felder"
3955
 
3956
+ #: core/class-settings.php:324
3957
  msgctxt "admin settings"
3958
  msgid "Featured (Sticky) listing settings"
3959
  msgstr "Unterstützte (unbewegliche) Eintrageinstellungen"
3960
 
3961
+ #: core/class-settings.php:325
3962
  msgctxt "admin settings"
3963
  msgid "Offer sticky listings?"
3964
  msgstr "Unbewegliche Einträge anbieten? "
3965
 
3966
+ #: core/class-settings.php:326
3967
  msgctxt "admin settings"
3968
  msgid "Offer upgrades during submit process?"
3969
  msgstr "Aktualisierungen anbieten im Bestellprozess?"
3970
 
3971
+ #: core/class-settings.php:327
3972
  msgctxt "admin settings"
3973
  msgid "Sticky listing price"
3974
  msgstr "Unbeweglicher Eintragspreis"
3975
 
3976
+ #: core/class-settings.php:328
3977
  msgctxt "admin settings"
3978
  msgid "Sticky listing page description text"
3979
  msgstr "Unbewegliche Eintragsseite Beschreibung"
3980
 
3981
+ #: core/class-settings.php:329
3982
  msgctxt "admin settings"
3983
  msgid ""
3984
  "You can upgrade your listing to featured status. Featured listings will "
3987
  "Du kannst dein Eintrag in den hervorgehobenen Status aktualisieren. "
3988
  "Unterstützte Einträge werden immer ganz oben eines Eintrags angezeigt."
3989
 
3990
+ #: core/class-settings.php:334
3991
  msgctxt "admin settings"
3992
  msgid "E-Mail"
3993
  msgstr "E-mail"
3994
 
3995
+ #: core/class-settings.php:338
3996
  msgctxt "admin settings"
3997
  msgid "Display email address fields publicly?"
3998
  msgstr "E-mail Adressfeld öffentlich anzeigen?"
3999
 
4000
+ #: core/class-settings.php:341
4001
  msgctxt "admin settings"
4002
  msgid ""
4003
  "Shows the email address of the listing owner to all web users. NOT "
4006
  msgstr ""
4007
  "E-mailadresse allen Benutzern anzeigen. NICHT ZU EMPFEHLEN. Achtung Spam!"
4008
 
4009
+ #: core/class-settings.php:344
4010
  msgctxt "admin settings"
4011
  msgid "How to determine the listing's email address?"
4012
  msgstr "Wie legt man die E-mailadresse für einen Eintrag fest?"
4013
 
4014
+ #: core/class-settings.php:347
4015
  msgctxt "admin settings"
4016
  msgid ""
4017
  "This affects emails sent to listing owners via contact forms or when their "
4020
  "Dies bewirkt, dass eine E-mail an den Eigentümer geschickt wird, wenn der "
4021
  "Eintrag abläuft."
4022
 
4023
+ #: core/class-settings.php:349
4024
  msgctxt "admin settings"
4025
  msgid "Try listing's email field first, then author's email."
4026
  msgstr ""
4027
 
4028
+ #: core/class-settings.php:350
4029
  msgctxt "admin settings"
4030
  msgid "Try author's email first and then listing's email field."
4031
  msgstr ""
4032
 
4033
+ #: core/class-settings.php:354
4034
  msgctxt "admin settings"
4035
  msgid "E-Mail Notifications"
4036
  msgstr "Email Erinnerung"
4037
 
4038
+ #: core/class-settings.php:357
4039
  msgctxt "admin settings"
4040
  msgid "Notify admin via e-mail when..."
4041
  msgstr "Administrator per E-mail informieren wenn... "
4042
 
4043
+ #: core/class-settings.php:361
4044
  msgctxt "admin settings"
4045
  msgid "A new listing is submitted."
4046
  msgstr "Ein neuer Eintrag wurde eingestellt."
4047
 
4048
+ #: core/class-settings.php:362
4049
  msgctxt "admin settings"
4050
  msgid "A listing is edited."
4051
  msgstr "Ein Eintrag wurde bearbeitet."
4052
 
4053
+ #: core/class-settings.php:363
4054
  msgctxt "admin settings"
4055
  msgid "A listing expires."
4056
  msgstr "Ein Eintrag ist abgelaufen."
4057
 
4058
+ #: core/class-settings.php:364
4059
  msgctxt "admin settings"
4060
  msgid "A contact message is sent to a listing's owner."
4061
  msgstr "Eine Nachricht wurde an den Eigentümer verschickt."
4062
 
4063
+ #: core/class-settings.php:370
4064
  msgctxt "admin settings"
4065
  msgid "CC this e-mail address too"
4066
  msgstr "CC diese E-mail an"
4067
 
4068
+ #: core/class-settings.php:376
4069
  msgctxt "admin settings"
4070
  msgid "Notify users via e-mail when..."
4071
  msgstr "Benachrichtige Benutzer per E-mail wenn..."
4072
 
4073
+ #: core/class-settings.php:379
4074
  msgctxt "admin settings"
4075
  msgid "You can modify the text template used for most of these e-mails below."
4076
  msgstr ""
4077
  "Du kannst dieses Texttemplate verändern, das für die meisten der E-"
4078
  "mailadressen unten verwendet wird."
4079
 
4080
+ #: core/class-settings.php:380
4081
  msgctxt "admin settings"
4082
  msgid "Their listing is submitted."
4083
  msgstr "Ihr Eintrag ist eingereicht."
4084
 
4085
+ #: core/class-settings.php:381
4086
  msgctxt "admin settings"
4087
  msgid "Their listing is approved/published."
4088
  msgstr "Ihr Eintrag ist genehmigt/veröffentlicht."
4089
 
4090
+ #: core/class-settings.php:390
4091
  msgctxt "contact email"
4092
  msgid "You have received a reply from your listing at %s."
4093
  msgstr "Sie haben eine Antwort auf Ihren Eintrag erhalten am %s."
4094
 
4095
+ #: core/class-settings.php:391
4096
  msgctxt "contact email"
4097
  msgid "Name: %s"
4098
  msgstr "Name: %s"
4099
 
4100
+ #: core/class-settings.php:392
4101
  msgctxt "contact email"
4102
  msgid "E-Mail: %s"
4103
  msgstr "E-mail: %s"
4104
 
4105
+ #: core/class-settings.php:393
4106
  msgctxt "contact email"
4107
  msgid "Message:"
4108
  msgstr "Nachricht:"
4109
 
4110
+ #: core/class-settings.php:395
4111
  msgctxt "contact email"
4112
  msgid "Time: %s"
4113
  msgstr "Zeit: %s"
4114
 
4115
+ #: core/class-settings.php:397
4116
  msgctxt "admin settings"
4117
  msgid "E-Mail Templates"
4118
  msgstr "E-mail Templates"
4119
 
4120
+ #: core/class-settings.php:400
4121
  msgctxt "admin settings"
4122
  msgid "Email confirmation message"
4123
  msgstr "Email Bestätigungsnachricht"
4124
 
4125
+ #: core/class-settings.php:404
4126
  msgctxt "admin settings"
4127
  msgid "Sent after a listing has been submitted."
4128
  msgstr "Senden nachdem der Eintrag eingestellt wurde."
4129
 
4130
+ #: core/class-settings.php:405 core/class-settings.php:413
4131
+ #: core/class-settings.php:454
4132
  msgctxt "admin settings"
4133
  msgid "Listing's title"
4134
  msgstr "Eintrag Titel"
4135
 
4136
+ #: core/class-settings.php:408
4137
  msgctxt "admin settings"
4138
  msgid "Listing published message"
4139
  msgstr "Eintrag veröffentlicht Nachricht"
4140
 
4141
+ #: core/class-settings.php:411
4142
  msgctxt "admin settings"
4143
  msgid ""
4144
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
4147
  "Dein Eintrag \"[listing]\" ist jetzt verfügbar unter [listing-url] und "
4148
  "kann öffentlich eingesehen werden."
4149
 
4150
+ #: core/class-settings.php:412
4151
  msgctxt "admin settings"
4152
  msgid "Sent when the listing has been published or approved by an admin."
4153
  msgstr ""
4154
  "Senden wenn der Eintrag vom Administrator genehmigt oder veröffentlicht "
4155
  "wurde."
4156
 
4157
+ #: core/class-settings.php:414
4158
  msgctxt "admin settings"
4159
  msgid "Listing's URL"
4160
  msgstr "Eintrags URL"
4161
 
4162
+ #: core/class-settings.php:418
4163
  msgctxt "admin settings"
4164
  msgid "Listing Contact Message"
4165
  msgstr "Eintrag Kontakt Nachricht"
4166
 
4167
+ #: core/class-settings.php:422
4168
  msgctxt "admin settings"
4169
  msgid ""
4170
  "Sent to listing owners when someone uses the contact form on their listing "
4173
  "An den Eigentümer senden wenn jemand die Kontaktform auf Ihrer Eintragsseite "
4174
  "verwendet."
4175
 
4176
+ #: core/class-settings.php:432
4177
  #, fuzzy
4178
  msgctxt "admin settings"
4179
  msgid "Payment related"
4180
  msgstr "Bezahlmethode"
4181
 
4182
+ #: core/class-settings.php:449
4183
  #, fuzzy
4184
  msgctxt "admin settings"
4185
  msgid "Payment abandoned reminder message"
4186
  msgstr "Erneuerungserinnerung E-mail Nachricht"
4187
 
4188
+ #: core/class-settings.php:453
4189
  msgctxt "admin settings"
4190
  msgid "Sent some time after a pending payment is abandoned by users."
4191
  msgstr ""
4192
 
4193
+ #: core/class-settings.php:455
4194
  #, fuzzy
4195
  msgctxt "admin settings"
4196
  msgid "Checkout URL link"
4197
  msgstr "Kasse"
4198
 
4199
+ #: core/class-settings.php:461
4200
  msgctxt "admin settings"
4201
  msgid "Renewal Reminders"
4202
  msgstr "Erneuerungserinnerung"
4203
 
4204
+ #: core/class-settings.php:464
4205
  msgctxt "admin settings"
4206
  msgid ""
4207
  "This section refers only to the text of the renewal/expiration notices. You "
4211
  "Nachricht. Du kannst auch <a>konfigurieren wann die E-mails gesendet werden</"
4212
  "a>"
4213
 
4214
+ #: core/class-settings.php:468
4215
  msgctxt "admin settings"
4216
  msgid "Pending expiration e-mail message"
4217
  msgstr "Ausstehende Abgelaufen E-mail Nachricht"
4218
 
4219
+ #: core/class-settings.php:472
4220
  msgctxt "settings"
4221
  msgid ""
4222
  "Sent some time before the listing expires. Applies to non-recurring renewals "
4225
  "Einige Zeit bevor der Eintrag abläuft senden. Wird nur bei kostenlosen "
4226
  "Erneuerungen verwendet."
4227
 
4228
+ #: core/class-settings.php:473 core/class-settings.php:486
4229
+ #: core/class-settings.php:499 core/class-settings.php:512
4230
+ #: core/class-settings.php:525
4231
  msgctxt "settings"
4232
  msgid "Listing's name (with link)"
4233
  msgstr "Eintragsname (mit Link)"
4234
 
4235
+ #: core/class-settings.php:474 core/class-settings.php:487
4236
+ #: core/class-settings.php:500 core/class-settings.php:513
4237
+ #: core/class-settings.php:526
4238
  msgctxt "settings"
4239
  msgid "Author's name"
4240
  msgstr "Authorname"
4241
 
4242
+ #: core/class-settings.php:475 core/class-settings.php:488
4243
+ #: core/class-settings.php:527
4244
  msgctxt "settings"
4245
  msgid "Expiration date"
4246
  msgstr "Ablaufdatum"
4247
 
4248
+ #: core/class-settings.php:476
4249
  msgctxt "settings"
4250
  msgid "Category that is going to expire"
4251
  msgstr "Kategorie die bald abläuft"
4252
 
4253
+ #: core/class-settings.php:477 core/class-settings.php:490
4254
+ #: core/class-settings.php:529
4255
  msgctxt "settings"
4256
  msgid "Link to renewal page"
4257
  msgstr "Link zu erneuerten Seite"
4258
 
4259
+ #: core/class-settings.php:478 core/class-settings.php:491
4260
+ #: core/class-settings.php:503 core/class-settings.php:516
4261
+ #: core/class-settings.php:530
4262
  msgctxt "settings"
4263
  msgid "Link to your site"
4264
  msgstr "Link zu deiner Seite"
4265
 
4266
+ #: core/class-settings.php:481
4267
  msgctxt "admin settings"
4268
  msgid "Listing Renewal e-mail message"
4269
  msgstr "Eintrag Erneuerung E-mail Nachricht"
4270
 
4271
+ #: core/class-settings.php:485
4272
  msgctxt "settings"
4273
  msgid ""
4274
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
4277
  "Zur Zeit wenn der Eintrag abläuft senden. Wird nur bei kostenlosen "
4278
  "Erneuerungen verwendet."
4279
 
4280
+ #: core/class-settings.php:489 core/class-settings.php:528
4281
  msgctxt "settings"
4282
  msgid "Category that expired"
4283
  msgstr "Ablaufende Kategorie"
4284
 
4285
+ #: core/class-settings.php:494
4286
  msgctxt "admin settings"
4287
  msgid "Listing auto-renewal reminder (recurring payments)"
4288
  msgstr "Eintrag automatische Erneuerungserinnerung (Abbuchungen)"
4289
 
4290
+ #: core/class-settings.php:498
4291
  msgctxt "settings"
4292
  msgid ""
4293
  "Sent some time before the listing is auto-renewed. Applies to recurring "
4296
  "Einige Zeit bevor der Eintrag abläuft senden. Wird nur bei bezahlten "
4297
  "Erneuerungen verwendet."
4298
 
4299
+ #: core/class-settings.php:501 core/class-settings.php:515
4300
  msgctxt "settings"
4301
  msgid "Renewal date"
4302
  msgstr "Erneuerungsdatum"
4303
 
4304
+ #: core/class-settings.php:502
4305
  msgctxt "settings"
4306
  msgid "Category that is going to be renewed"
4307
  msgstr "Kategorie die erneuert werden soll"
4308
 
4309
+ #: core/class-settings.php:504
4310
  msgctxt "settings"
4311
  msgid "Link to manage subscriptions"
4312
  msgstr "Link um Abos zu verwalten"
4313
 
4314
+ #: core/class-settings.php:507
4315
  msgctxt "admin settings"
4316
  msgid "Listing Renewal e-mail message (recurring payments)"
4317
  msgstr "Eintragserneuerungs E-mail Nachricht (Abbuchungen)"
4318
 
4319
+ #: core/class-settings.php:511
4320
  msgctxt "settings"
4321
  msgid ""
4322
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4324
  "Sende nachdem der Eintrag automatisch erneuert wurde. Wird nur bei bezahlten "
4325
  "Erneuerungen verwendet."
4326
 
4327
+ #: core/class-settings.php:514
4328
  msgctxt "settings"
4329
  msgid "Renewed category"
4330
  msgstr "Erneuerte Kategorie"
4331
 
4332
+ #: core/class-settings.php:520
4333
  msgctxt "admin settings"
4334
  msgid "Renewal reminder e-mail message"
4335
  msgstr "Erneuerungserinnerung E-mail Nachricht"
4336
 
4337
+ #: core/class-settings.php:524
4338
  msgctxt "settings"
4339
  msgid ""
4340
  "Sent some time after listing expiration and when no renewal has occurred. "
4343
  "Einige Zeit nachdem der Eintrag abgelaufen und keine Erneuerung beauftragt "
4344
  "wurde senden. Wird bei bezahlten und kostenlosen Erneuerungen verwendet."
4345
 
4346
+ #: core/class-settings.php:534
4347
  msgctxt "admin settings"
4348
  msgid "Payment"
4349
  msgstr "Bezahlung"
4350
 
4351
+ #: core/class-settings.php:535
4352
  msgctxt "admin settings"
4353
  msgid "Payment Settings"
4354
  msgstr "Bezahlung Einstellungen"
4355
 
4356
+ #: core/class-settings.php:538
4357
  msgctxt "admin settings"
4358
  msgid "Turn On payments?"
4359
  msgstr "Bezahlungen aktivieren?"
4360
 
4361
+ #: core/class-settings.php:540
4362
  msgctxt "admin settings"
4363
  msgid "Put payment gateways in test mode?"
4364
  msgstr "Bezahlungsgateway im Testmodus ausführen?"
4365
 
4366
+ #: core/class-settings.php:545
4367
  msgctxt "admin settings"
4368
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4369
  msgstr ""
4370
  "Aktiviere (HTTPS) sichere Verbindung für den Bestellprozess deiner Seite?"
4371
 
4372
+ #: core/class-settings.php:548
4373
  msgctxt "admin settings"
4374
  msgid ""
4375
  "Recommended for added security. For this to work you need to enable HTTPS on "
4378
  "Empfohlen zur Erweiterung der Sicherheit. Aktiviere HTTPS auf deinem Server "
4379
  "und <a>erhalte ein SSL Zertifikat</a>"
4380
 
4381
+ #: core/class-settings.php:552
4382
  msgctxt "admin settings"
4383
  msgid "Currency Code"
4384
  msgstr "Währungsschlüssel"
4385
 
4386
+ #: core/class-settings.php:554
4387
  msgctxt "admin settings"
4388
  msgid "Australian Dollar (AUD)"
4389
  msgstr "Australischer Dollar (AUD)"
4390
 
4391
+ #: core/class-settings.php:555
4392
  msgctxt "admin settings"
4393
  msgid "Brazilian Real (BRL)"
4394
  msgstr "Brasilianischer Real (BRL)"
4395
 
4396
+ #: core/class-settings.php:556
4397
  msgctxt "admin settings"
4398
  msgid "Canadian Dollar (CAD)"
4399
  msgstr "Kanadischer Dollar (CAD)"
4400
 
4401
+ #: core/class-settings.php:557
4402
  msgctxt "admin settings"
4403
  msgid "Czech Koruna (CZK)"
4404
  msgstr "Tschechische Koruna (CZK)"
4405
 
4406
+ #: core/class-settings.php:558
4407
  msgctxt "admin settings"
4408
  msgid "Danish Krone (DKK)"
4409
  msgstr "Dänische Krone (DKK)"
4410
 
4411
+ #: core/class-settings.php:559
4412
  msgctxt "admin settings"
4413
  msgid "Euro (EUR)"
4414
  msgstr "Euro (EUR)"
4415
 
4416
+ #: core/class-settings.php:560
4417
  msgctxt "admin settings"
4418
  msgid "Hong Kong Dollar (HKD)"
4419
  msgstr "Hong Kong Dollar (HKD)"
4420
 
4421
+ #: core/class-settings.php:561
4422
  msgctxt "admin settings"
4423
  msgid "Hungarian Forint (HUF)"
4424
  msgstr "Ungarischer Forint (HUF)"
4425
 
4426
+ #: core/class-settings.php:562
4427
  msgctxt "admin settings"
4428
  msgid "Israeli New Shequel (ILS)"
4429
  msgstr "Israelischer Neuer Schequel (ILS)"
4430
 
4431
+ #: core/class-settings.php:563
4432
  msgctxt "admin settings"
4433
  msgid "Japanese Yen (JPY)"
4434
  msgstr "Japanischer Jen (JPY)"
4435
 
4436
+ #: core/class-settings.php:564
4437
  msgctxt "admin settings"
4438
  msgid "Malasian Ringgit (MYR)"
4439
  msgstr "Malaysischer Ringgit (MYR)"
4440
 
4441
+ #: core/class-settings.php:565
4442
  msgctxt "admin settings"
4443
  msgid "Mexican Peso (MXN)"
4444
  msgstr "Mexikanischer Peso (MXN)"
4445
 
4446
+ #: core/class-settings.php:566
4447
  msgctxt "admin settings"
4448
  msgid "Norwegian Krone (NOK)"
4449
  msgstr "Norwegische Krone (NOK)"
4450
 
4451
+ #: core/class-settings.php:567
4452
  msgctxt "admin settings"
4453
  msgid "New Zealand Dollar (NZD)"
4454
  msgstr "Neuseeland Dollar (NZD)"
4455
 
4456
+ #: core/class-settings.php:568
4457
  msgctxt "admin settings"
4458
  msgid "Philippine Peso (PHP)"
4459
  msgstr "Philippinischer Peso (PHP)"
4460
 
4461
+ #: core/class-settings.php:569
4462
  msgctxt "admin settings"
4463
  msgid "Polish Zloty (PLN)"
4464
  msgstr "Polnischer Zloty (PLN)"
4465
 
4466
+ #: core/class-settings.php:570
4467
  msgctxt "admin settings"
4468
  msgid "Pound Sterling (GBP)"
4469
  msgstr "Pfund Sterling (GBP)"
4470
 
4471
+ #: core/class-settings.php:571
4472
  msgctxt "admin settings"
4473
  msgid "Singapore Dollar (SGD)"
4474
  msgstr "Singapore Dollar (SGD)"
4475
 
4476
+ #: core/class-settings.php:572
4477
  msgctxt "admin settings"
4478
  msgid "Swedish Krona (SEK)"
4479
  msgstr "Schwedische Krone (SEK)"
4480
 
4481
+ #: core/class-settings.php:573
4482
  msgctxt "admin settings"
4483
  msgid "Swiss Franc (CHF)"
4484
  msgstr "Schweizer Franken (CHF)"
4485
 
4486
+ #: core/class-settings.php:574
4487
  msgctxt "admin settings"
4488
  msgid "Taiwan Dollar (TWD)"
4489
  msgstr "Taiwanischer Dollar (TWD)"
4490
 
4491
+ #: core/class-settings.php:575
4492
  msgctxt "admin settings"
4493
  msgid "Thai Baht (THB)"
4494
  msgstr "Thailändischer Baht (THB)"
4495
 
4496
+ #: core/class-settings.php:576
4497
  msgctxt "admin settings"
4498
  msgid "Turkish Lira (TRY)"
4499
  msgstr "Türkische Lira (TRY)"
4500
 
4501
+ #: core/class-settings.php:577
4502
  #, fuzzy
4503
  msgctxt "admin settings"
4504
  msgid "U.S. Dollar (USD)"
4505
  msgstr "U.S. Dollar"
4506
 
4507
+ #: core/class-settings.php:581
4508
  msgctxt "admin settings"
4509
  msgid "Currency Symbol"
4510
  msgstr "Währungssymbol"
4511
 
4512
+ #: core/class-settings.php:586
4513
  #, fuzzy
4514
  msgctxt "admin settings"
4515
  msgid "Currency symbol display"
4516
  msgstr "Währungssymbol"
4517
 
4518
+ #: core/class-settings.php:590
4519
  msgctxt "admin settings"
4520
  msgid "Show currency symbol on the left"
4521
  msgstr ""
4522
 
4523
+ #: core/class-settings.php:591
4524
  msgctxt "admin settings"
4525
  msgid "Show currency symbol on the right"
4526
  msgstr ""
4527
 
4528
+ #: core/class-settings.php:592
4529
  #, fuzzy
4530
  msgctxt "admin settings"
4531
  msgid "Do not show currency symbol"
4532
  msgstr "Währungssymbol"
4533
 
4534
+ #: core/class-settings.php:594
4535
  msgctxt "admin settings"
4536
  msgid "Thank you for payment message"
4537
  msgstr "Danke für die Bezahlung Nachricht"
4538
 
4539
+ #: core/class-settings.php:595
4540
  msgctxt "admin settings"
4541
  msgid ""
4542
  "Thank you for your payment. Your payment is being verified and your listing "
4546
  "geprüft. Die Verifizierung und die Prüfung können 48 Stunden in Anspruch "
4547
  "nehmen."
4548
 
4549
+ #: core/class-settings.php:600
4550
  msgctxt "admin settings"
4551
  msgid "Ask users to come back for abandoned payments?"
4552
  msgstr ""
4553
 
4554
+ #: core/class-settings.php:603
4555
  msgctxt "admin settings"
4556
  msgid ""
4557
  "An abandoned payment is when a user attempts to place a listing and gets to "
4560
  "the transaction. BD can remind them to come back and continue."
4561
  msgstr ""
4562
 
4563
+ #: core/class-settings.php:609
4564
  #, fuzzy
4565
  msgctxt "admin settings"
4566
  msgid "Listing abandonment threshold (hours)"
4567
  msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
4568
 
4569
+ #: core/class-settings.php:614
4570
  msgctxt "admin settings"
4571
  msgid ""
4572
  "Listings with pending payments are marked as abandoned after this time. You "
4573
  "can also <a>customize the e-mail</a> users receive."
4574
  msgstr ""
4575
 
4576
+ #: core/class-settings.php:619
4577
  msgctxt "admin settings"
4578
  msgid "Themes"
4579
  msgstr ""
4580
 
4581
+ #: core/class-settings.php:621
4582
  msgctxt "admin settings"
4583
  msgid "You can manage your themes on <a>Directory Themes</a>."
4584
  msgstr ""
4585
 
4586
+ #: core/class-settings.php:626
4587
  msgctxt "admin settings"
4588
  msgid "Theme button style"
4589
  msgstr ""
4590
 
4591
+ #: core/class-settings.php:630
4592
  msgctxt "admin settings"
4593
  msgid "Use the BD theme style for BD buttons"
4594
  msgstr ""
4595
 
4596
+ #: core/class-settings.php:631
4597
  msgctxt "admin settings"
4598
  msgid "Use the WP theme style for BD buttons"
4599
  msgstr ""
4600
 
4601
+ #: core/class-settings.php:638
4602
  msgctxt "admin settings"
4603
  msgid "Image"
4604
  msgstr "Bild"
4605
 
4606
+ #: core/class-settings.php:639
4607
  msgctxt "admin settings"
4608
  msgid ""
4609
  "Any changes to these settings will affect new listings only. Existing "
4616
  "existierende Einträge verändert werden, musst du Bild(er) neu hochladen, "
4617
  "nachdem Einstellungen hier verändert wurden."
4618
 
4619
+ #: core/class-settings.php:640
4620
  msgctxt "admin settings"
4621
  msgid "Image Settings"
4622
  msgstr "Bildeinstellungen"
4623
 
4624
+ #: core/class-settings.php:641
4625
  msgctxt "admin settings"
4626
  msgid "Allow images?"
4627
  msgstr "Bilder erlauben?"
4628
 
4629
+ #: core/class-settings.php:643
4630
  #, fuzzy
4631
  msgctxt "admin settings"
4632
  msgid "Min Image File Size (KB)"
4633
  msgstr "Maximale Bildgröße (KB)"
4634
 
4635
+ #: core/class-settings.php:644
4636
  msgctxt "admin settings"
4637
  msgid "Max Image File Size (KB)"
4638
  msgstr "Maximale Bildgröße (KB)"
4639
 
4640
+ #: core/class-settings.php:646
4641
  #, fuzzy
4642
  msgctxt "admin settings"
4643
  msgid "Min image width (px)"
4644
  msgstr "Bildergröße (in px):"
4645
 
4646
+ #: core/class-settings.php:647
4647
  #, fuzzy
4648
  msgctxt "admin settings"
4649
  msgid "Min image height (px)"
4650
  msgstr "Bilderhöhe (in px):"
4651
 
4652
+ #: core/class-settings.php:649
4653
  #, fuzzy
4654
  msgctxt "admin settings"
4655
  msgid "Max image width (px)"
4656
  msgstr "Maximale Bildbreite"
4657
 
4658
+ #: core/class-settings.php:650
4659
  #, fuzzy
4660
  msgctxt "admin settings"
4661
  msgid "Max image height (px)"
4662
  msgstr "Maximale Bildhöhe"
4663
 
4664
+ #: core/class-settings.php:652
4665
  msgctxt "admin settings"
4666
  msgid "Turn on thickbox/lightbox?"
4667
  msgstr "Kontrollkästchen/Leuchtkasten aktivieren?"
4668
 
4669
+ #: core/class-settings.php:652
4670
  msgctxt "admin settings"
4671
  msgid ""
4672
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4674
  "Deaktivieren wenn Konflikte mit anderen Elementen oder installierten "
4675
  "Erweiterungen entstehen"
4676
 
4677
+ #: core/class-settings.php:654
4678
  #, fuzzy
4679
  msgctxt "admin settings"
4680
  msgid "Thumbnails"
4681
  msgstr "Thumbnails"
4682
 
4683
+ #: core/class-settings.php:655
4684
  #, fuzzy
4685
  msgctxt "admin settings"
4686
  msgid "Thumbnail width (px)"
4687
  msgstr "Thumbnailbreite"
4688
 
4689
+ #: core/class-settings.php:656
4690
  #, fuzzy
4691
  msgctxt "admin settings"
4692
  msgid "Thumbnail height (px)"
4693
  msgstr "Thumbnailbreite"
4694
 
4695
+ #: core/class-settings.php:659
4696
  msgctxt "admin settings"
4697
  msgid "Crop thumbnails to exact dimensions?"
4698
  msgstr ""
4699
 
4700
+ #: core/class-settings.php:662
4701
  msgctxt "admin settings"
4702
  msgid ""
4703
  "When enabled images will match exactly the dimensions above but part of the "
4706
  "Depending on the uploaded images, thumbnails may have different heights."
4707
  msgstr ""
4708
 
4709
+ #: core/class-settings.php:668
4710
  msgctxt "admin settings"
4711
  msgid "Number of free images"
4712
  msgstr "Nummer der freien Bilder"
4713
 
4714
+ #: core/class-settings.php:673
4715
  msgctxt "admin settings"
4716
  msgid ""
4717
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4721
  "erstellen eines <a>Preisplan</a> an Stelle dieser Einstellungen, die von "
4722
  "bezahlten Einträgen ignoriert wird."
4723
 
4724
+ #: core/class-settings.php:676
4725
  msgctxt "admin settings"
4726
  msgid "Use default picture for listings with no picture?"
4727
  msgstr "Benutze Standardbilder für Einträge mit keinem Bild?"
4728
 
4729
+ #: core/class-settings.php:677
4730
  msgctxt "admin settings"
4731
  msgid "Show Thumbnail on main listings page?"
4732
  msgstr "Thumbnail auf der Eintragshauptseite anzeigen?"
4733
 
4734
+ #: core/class-settings.php:706
4735
  msgctxt "admin settings"
4736
  msgid "User"
4737
  msgstr ""
4738
 
4739
+ #: core/class-settings.php:707
4740
  #, fuzzy
4741
  msgctxt "admin settings"
4742
  msgid "User registration date"
4743
  msgstr "Eintrag Enddatum"
4744
 
4745
+ #: core/class-settings.php:733
4746
  msgctxt "admin settings"
4747
  msgid ""
4748
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4749
  "not activated."
4750
  msgstr ""
4751
 
4752
+ #: core/class-settings.php:741
4753
  msgctxt "admin settings"
4754
  msgid ""
4755
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4756
  "be created."
4757
  msgstr ""
4758
 
4759
+ #: core/class-settings.php:750
4760
  msgctxt "admin settings"
4761
  msgid ""
4762
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4763
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4764
  msgstr ""
4765
 
4766
+ #: core/class-settings.php:1070
4767
  msgctxt "settings"
4768
  msgid "Deactivate License"
4769
  msgstr "Lizenz Deaktivieren"
4770
 
4771
+ #: core/class-settings.php:1072
4772
  msgctxt "settings"
4773
  msgid "Deactivating license..."
4774
  msgstr "Deaktiviere Lizenz..."
4775
 
4776
+ #: core/class-settings.php:1075
4777
  msgctxt "settings"
4778
  msgid "Activate License"
4779
  msgstr "Aktiviere Lizenz"
4780
 
4781
+ #: core/class-settings.php:1077
4782
  msgctxt "settings"
4783
  msgid "Activating license..."
4784
  msgstr "Aktiviere Lizenz..."
4785
 
4786
+ #: core/class-settings.php:1100
4787
  msgctxt "admin settings"
4788
  msgid "Valid placeholders: %s"
4789
  msgstr "Gültige Platzhalter: %s"
4790
 
4791
+ #: core/class-settings.php:1134
4792
  msgctxt "settings email"
4793
  msgid "Click to edit e-mail"
4794
  msgstr "Klicken um E-mail zu bearbeiten"
4795
 
4796
+ #: core/class-settings.php:1135
4797
  msgctxt "settings email"
4798
  msgid "Click to edit"
4799
  msgstr "zum Bearbeiten klicken"
4800
 
4801
+ #: core/class-settings.php:1148
4802
  msgctxt "settings email"
4803
  msgid "E-Mail Subject"
4804
  msgstr "E-mail Betreff"
4805
 
4806
+ #: core/class-settings.php:1159
4807
  msgctxt "settings email"
4808
  msgid "E-Mail Body"
4809
  msgstr "E-mail Text"
4810
 
4811
+ #: core/class-settings.php:1170
4812
  msgctxt "settings email"
4813
  msgid "You can use the following placeholders:"
4814
  msgstr "Du kannst folgende Platzhalter verwenden:"
4815
 
4816
+ #: core/class-settings.php:1193
4817
  msgctxt "settings email"
4818
  msgid "Preview e-mail"
4819
  msgstr "Vorschau E-mail"
4820
 
4821
+ #: core/class-settings.php:1194
4822
  msgctxt "settings email"
4823
  msgid "Cancel"
4824
  msgstr "Abbrechen"
4825
 
4826
+ #: core/class-settings.php:1195
4827
  msgctxt "settings email"
4828
  msgid "Save Changes"
4829
  msgstr "Änderungen sichern"
4830
 
4831
+ #: core/class-settings.php:1214
4832
  msgctxt "settings email"
4833
  msgid "Site title"
4834
  msgstr "Seitentitel"
4835
 
4836
+ #: core/class-settings.php:1217
4837
  msgctxt "settings email"
4838
  msgid "Site title (with link)"
4839
  msgstr "Seitentitel (mit Link)"
4840
 
4841
+ #: core/class-settings.php:1220
4842
  msgctxt "settings email"
4843
  msgid "Site address (with link)"
4844
  msgstr "Seitenadresse (mit Link)"
4845
 
4846
+ #: core/class-settings.php:1223
4847
  msgctxt "settings email"
4848
  msgid "Directory URL (with link)"
4849
  msgstr "Verzeichnis URL (mit Link)"
4850
 
4851
+ #: core/class-settings.php:1226
4852
  msgctxt "settings email"
4853
  msgid "Current date"
4854
  msgstr "Aktuelles Datum"
4855
 
4856
+ #: core/class-settings.php:1229
4857
  msgctxt "settings email"
4858
  msgid "Current time"
4859
  msgstr "Aktuelle Zeit"
6791
  msgid "Upgrade listing to %s for %s."
6792
  msgstr "Eintrag aktualisieren zu %s für %s."
6793
 
6794
+ #: templates/main-box.tpl.php:13
6795
+ #, fuzzy
6796
+ msgctxt "main box"
6797
+ msgid "Find listings for <keywords>"
6798
+ msgstr "Eintrag dauerhaft ausführen"
6799
+
6800
+ #: templates/main-box.tpl.php:19
6801
  #, fuzzy
6802
  msgctxt "main box"
6803
  msgid "Find Listings"
6804
  msgstr "Eintrag finden"
6805
 
6806
+ #: templates/main-box.tpl.php:20
6807
  #, fuzzy
6808
  msgctxt "main box"
6809
  msgid "Advanced Search"
languages/WPBDM-en_US.mo CHANGED
Binary file
languages/WPBDM-en_US.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-08-24 22:42:45+00:00\n"
8
  "PO-Revision-Date: 2015-04-07 11:11-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -120,7 +120,13 @@ msgctxt "admin actions"
120
  msgid "Renew Listing"
121
  msgstr ""
122
 
123
- #: admin/class-admin.php:124
 
 
 
 
 
 
124
  msgctxt "drip pointer"
125
  msgid ""
126
  "Find out how to create a compelling, thriving business directory from "
@@ -128,137 +134,137 @@ msgid ""
128
  "a FREE premium module just for signing up."
129
  msgstr ""
130
 
131
- #: admin/class-admin.php:126
132
  msgctxt "drip pointer"
133
  msgid "Email Address:"
134
  msgstr ""
135
 
136
- #: admin/class-admin.php:132
137
  msgctxt "drip pointer"
138
  msgid "Want to know the Secrets of Building an Awesome Business Directory?"
139
  msgstr ""
140
 
141
- #: admin/class-admin.php:134
142
  msgctxt "drip pointer"
143
  msgid "Yes, please!"
144
  msgstr ""
145
 
146
- #: admin/class-admin.php:136
147
  msgctxt "drip pointer"
148
  msgid "No, thanks"
149
  msgstr ""
150
 
151
- #: admin/class-admin.php:153
152
  msgctxt "admin"
153
  msgid "Business Directory"
154
  msgstr ""
155
 
156
- #: admin/class-admin.php:164
157
  msgctxt "admin"
158
  msgid "You're all set. Visit your new <a>Business Directory</a> page."
159
  msgstr ""
160
 
161
- #: admin/class-admin.php:185
162
  msgctxt "drip pointer"
163
  msgid "Invalid e-mail address."
164
  msgstr ""
165
 
166
- #: admin/class-admin.php:219
167
  msgctxt "admin menu"
168
  msgid "Business Directory Admin"
169
  msgstr ""
170
 
171
- #: admin/class-admin.php:220
172
  msgctxt "admin menu"
173
  msgid "Dir. Admin"
174
  msgstr ""
175
 
176
- #: admin/class-admin.php:220
177
  msgctxt "admin menu"
178
  msgid "Directory Admin"
179
  msgstr ""
180
 
181
- #: admin/class-admin.php:226 admin/class-admin.php:227
182
  msgctxt "admin menu"
183
  msgid "Add New Listing"
184
  msgstr ""
185
 
186
- #: admin/class-admin.php:232 admin/class-admin.php:233
187
  msgctxt "admin menu"
188
  msgid "Manage Options"
189
  msgstr ""
190
 
191
- #: admin/class-admin.php:238 admin/class-admin.php:239
192
  msgctxt "admin menu"
193
  msgid "Manage Fees"
194
  msgstr ""
195
 
196
- #: admin/class-admin.php:244 admin/class-admin.php:245
197
  msgctxt "admin menu"
198
  msgid "Manage Form Fields"
199
  msgstr ""
200
 
201
- #: admin/class-admin.php:250 admin/class-admin.php:251
202
  msgctxt "admin menu"
203
  msgid "Listings"
204
  msgstr ""
205
 
206
- #: admin/class-admin.php:265 admin/class-admin.php:266
207
  msgctxt "admin menu"
208
  msgid "CSV Import"
209
  msgstr ""
210
 
211
- #: admin/class-admin.php:271 admin/class-admin.php:272
212
  msgctxt "admin menu"
213
  msgid "CSV Export"
214
  msgstr ""
215
 
216
- #: admin/class-admin.php:277 admin/class-admin.php:278
217
  msgctxt "admin menu"
218
  msgid "Debug"
219
  msgstr ""
220
 
221
- #: admin/class-admin.php:287
222
  msgctxt "admin menu"
223
  msgid "Main Menu"
224
  msgstr ""
225
 
226
- #: admin/class-admin.php:298
227
  msgctxt "admin menu"
228
  msgid "Uninstall Business Directory Plugin"
229
  msgstr ""
230
 
231
- #: admin/class-admin.php:299
232
  msgctxt "admin menu"
233
  msgid "Uninstall"
234
  msgstr ""
235
 
236
- #: admin/class-admin.php:413
237
  #: admin/templates/listing-metabox-categories.tpl.php:69
238
  msgctxt "admin infometabox"
239
  msgid "never"
240
  msgstr ""
241
 
242
- #: admin/class-admin.php:507
243
  msgctxt "admin"
244
  msgid "Dismiss this notice."
245
  msgstr ""
246
 
247
- #: admin/class-admin.php:535
248
  msgctxt "admin"
249
  msgid "The listing has been published."
250
  msgid_plural "The listings have been published."
251
  msgstr[0] ""
252
  msgstr[1] ""
253
 
254
- #: admin/class-admin.php:553
255
  msgctxt "admin"
256
  msgid "The listing status has been set as paid."
257
  msgid_plural "The listings status has been set as paid."
258
  msgstr[0] ""
259
  msgstr[1] ""
260
 
261
- #: admin/class-admin.php:559
262
  msgctxt "admin"
263
  msgid ""
264
  "Only invoices containing non-recurring items were marked as paid. Please "
@@ -270,28 +276,28 @@ msgid_plural ""
270
  msgstr[0] ""
271
  msgstr[1] ""
272
 
273
- #: admin/class-admin.php:578
274
  msgctxt "admin"
275
  msgid "The listing has been modified."
276
  msgid_plural "The listings have been modified."
277
  msgstr[0] ""
278
  msgstr[1] ""
279
 
280
- #: admin/class-admin.php:591
281
  msgctxt "admin"
282
  msgid "The listing has been upgraded."
283
  msgid_plural "The listings have been upgraded."
284
  msgstr[0] ""
285
  msgstr[1] ""
286
 
287
- #: admin/class-admin.php:603
288
  msgctxt "admin"
289
  msgid "The listing has been downgraded."
290
  msgid_plural "The listings have been downgraded."
291
  msgstr[0] ""
292
  msgstr[1] ""
293
 
294
- #: admin/class-admin.php:614
295
  msgctxt "admin payments"
296
  msgid ""
297
  "The payment status was not changed. Recurring payments can't be manually "
@@ -299,123 +305,123 @@ msgid ""
299
  "went through."
300
  msgstr ""
301
 
302
- #: admin/class-admin.php:619
303
  msgctxt "admin"
304
  msgid "The transaction has been approved."
305
  msgstr ""
306
 
307
- #: admin/class-admin.php:629
308
  msgctxt "admin"
309
  msgid "The transaction has been rejected."
310
  msgstr ""
311
 
312
- #: admin/class-admin.php:635
313
  msgctxt "admin"
314
  msgid "The fee was successfully assigned."
315
  msgstr ""
316
 
317
- #: admin/class-admin.php:644
318
  msgctxt "admin"
319
  msgid "Listing was renewed."
320
  msgid_plural "Listings were renewed."
321
  msgstr[0] ""
322
  msgstr[1] ""
323
 
324
- #: admin/class-admin.php:651
325
  msgctxt "admin"
326
  msgid "Renewal email sent."
327
  msgstr ""
328
 
329
- #: admin/class-admin.php:685
330
  msgctxt "admin category id"
331
  msgid "ID"
332
  msgstr ""
333
 
334
- #: admin/class-admin.php:687 admin/class-admin.php:693
335
  msgctxt "admin"
336
  msgid "Listing Count"
337
  msgstr ""
338
 
339
- #: admin/class-admin.php:802
340
  msgctxt "admin"
341
  msgid ""
342
  "<b>Business Directory Plugin</b> requires fields with the following "
343
  "associations in order to work correctly: <b>%s</b>."
344
  msgstr ""
345
 
346
- #: admin/class-admin.php:804
347
  msgctxt "admin"
348
  msgid ""
349
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
350
  "association in order to work correctly."
351
  msgstr ""
352
 
353
- #: admin/class-admin.php:808
354
  msgctxt "admin"
355
  msgid ""
356
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
357
  "or let Business Directory do this for you automatically."
358
  msgstr ""
359
 
360
- #: admin/class-admin.php:812
361
  msgctxt "admin"
362
  msgid "Go to \"Manage Form Fields\""
363
  msgstr ""
364
 
365
- #: admin/class-admin.php:815
366
  msgctxt "admin"
367
  msgid "Create these required fields for me"
368
  msgstr ""
369
 
370
- #: admin/class-admin.php:824
371
  msgctxt "admin"
372
  msgid ""
373
  "<b>Business Directory Plugin</b> requires a page with the "
374
  "<tt>[businessdirectory]</tt> shortcode to function properly."
375
  msgstr ""
376
 
377
- #: admin/class-admin.php:826
378
  msgctxt "admin"
379
  msgid ""
380
  "You can create this page by yourself or let Business Directory do this for "
381
  "you automatically."
382
  msgstr ""
383
 
384
- #: admin/class-admin.php:830
385
  msgctxt "admin"
386
  msgid "Create required pages for me"
387
  msgstr ""
388
 
389
- #: admin/class-admin.php:870
390
  msgctxt "admin compat"
391
  msgid "Installed: %s"
392
  msgstr ""
393
 
394
- #: admin/class-admin.php:870
395
  msgctxt "admin compat"
396
  msgid "N/A"
397
  msgstr ""
398
 
399
- #: admin/class-admin.php:873
400
  msgctxt "admin compat"
401
  msgid "Required: %s"
402
  msgstr ""
403
 
404
- #: admin/class-admin.php:885
405
  msgctxt "admin compat"
406
  msgid ""
407
  "Business Directory has detected some incompatible premium module versions "
408
  "installed."
409
  msgstr ""
410
 
411
- #: admin/class-admin.php:887
412
  msgctxt "admin compat"
413
  msgid ""
414
  "Please upgrade to the required versions indicated below to make sure "
415
  "everything functions properly."
416
  msgstr ""
417
 
418
- #: admin/class-admin.php:907
419
  msgctxt "admin"
420
  msgid ""
421
  "We noticed you want your Business Directory users to register before posting "
@@ -1312,117 +1318,112 @@ msgid ""
1312
  "available to PHP. Check your error logs for details."
1313
  msgstr ""
1314
 
1315
- #: admin/templates/csv-import-progress.tpl.php:14
1316
- msgctxt "admin csv-import"
1317
- msgid "Last imported line from file:"
1318
- msgstr ""
1319
-
1320
- #: admin/templates/csv-import-progress.tpl.php:18
1321
- #: admin/templates/csv-import-progress.tpl.php:25
1322
  msgctxt "admin csv-import"
1323
  msgid "← Return to CSV Import"
1324
  msgstr ""
1325
 
1326
- #: admin/templates/csv-import-progress.tpl.php:23
1327
  msgctxt "admin csv-import"
1328
  msgid "Import Canceled"
1329
  msgstr ""
1330
 
1331
- #: admin/templates/csv-import-progress.tpl.php:24
1332
  msgctxt "admin csv-import"
1333
  msgid "The import has been canceled."
1334
  msgstr ""
1335
 
1336
- #: admin/templates/csv-import-progress.tpl.php:31
1337
  msgid "Import Progress"
1338
  msgstr ""
1339
 
1340
- #: admin/templates/csv-import-progress.tpl.php:34
1341
  msgctxt "admin csv-import"
1342
  msgid "Files"
1343
  msgstr ""
1344
 
1345
- #: admin/templates/csv-import-progress.tpl.php:37
1346
  msgctxt "admin csv-import"
1347
  msgid "Rows in file"
1348
  msgstr ""
1349
 
1350
- #: admin/templates/csv-import-progress.tpl.php:40
1351
  msgctxt "admin csv-import"
1352
  msgid "Progress"
1353
  msgstr ""
1354
 
1355
- #: admin/templates/csv-import-progress.tpl.php:44
1356
  msgctxt "admin csv-import"
1357
  msgid "Import has not started. Click \"Start Import\" to begin."
1358
  msgstr ""
1359
 
1360
- #: admin/templates/csv-import-progress.tpl.php:45
1361
  msgctxt "admin csv-import"
1362
  msgid "Importing CSV file..."
1363
  msgstr ""
1364
 
1365
- #: admin/templates/csv-import-progress.tpl.php:51
1366
  msgctxt "admin csv-import"
1367
  msgid "Start Import"
1368
  msgstr ""
1369
 
1370
- #: admin/templates/csv-import-progress.tpl.php:52
1371
  msgctxt "admin csv-import"
1372
  msgid "Cancel Import"
1373
  msgstr ""
1374
 
1375
- #: admin/templates/csv-import-progress.tpl.php:59
1376
  msgctxt "admin csv-import"
1377
  msgid "Import finished"
1378
  msgstr ""
1379
 
1380
- #: admin/templates/csv-import-progress.tpl.php:62
1381
  msgctxt "admin csv-import"
1382
  msgid "Import was completed successfully."
1383
  msgstr ""
1384
 
1385
- #: admin/templates/csv-import-progress.tpl.php:66
1386
  msgctxt "admin csv-import"
1387
  msgid "Import was completed but some rows were rejected."
1388
  msgstr ""
1389
 
1390
- #: admin/templates/csv-import-progress.tpl.php:69
1391
  msgctxt "admin csv-import"
1392
  msgid "Import Summary"
1393
  msgstr ""
1394
 
1395
- #: admin/templates/csv-import-progress.tpl.php:71
1396
  msgctxt "admin csv-import"
1397
  msgid "Rows in file:"
1398
  msgstr ""
1399
 
1400
- #: admin/templates/csv-import-progress.tpl.php:74
1401
  msgctxt "admin csv-import"
1402
  msgid "Imported rows:"
1403
  msgstr ""
1404
 
1405
- #: admin/templates/csv-import-progress.tpl.php:77
1406
  msgctxt "admin csv-import"
1407
  msgid "Rejected rows:"
1408
  msgstr ""
1409
 
1410
- #: admin/templates/csv-import-progress.tpl.php:82
1411
  msgctxt "admin csv-import"
1412
  msgid "Import Warnings"
1413
  msgstr ""
1414
 
1415
- #: admin/templates/csv-import-progress.tpl.php:85
1416
  msgctxt "admin csv-import"
1417
  msgid "Line #"
1418
  msgstr ""
1419
 
1420
- #: admin/templates/csv-import-progress.tpl.php:86
1421
  msgctxt "admin csv-import"
1422
  msgid "Line"
1423
  msgstr ""
1424
 
1425
- #: admin/templates/csv-import-progress.tpl.php:87
1426
  msgctxt "admin csv-import"
1427
  msgid "Warning"
1428
  msgstr ""
@@ -2091,7 +2092,7 @@ msgctxt "form-fields admin"
2091
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2092
  msgstr ""
2093
 
2094
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.1) #-#-#-#-#
2095
  #. Plugin Name of the plugin/theme
2096
  #: admin/templates/header.tpl.php:4
2097
  msgid "Business Directory Plugin"
@@ -2827,56 +2828,63 @@ msgctxt "tracking"
2827
  msgid "Allow Tracking"
2828
  msgstr ""
2829
 
2830
- #: business-directory-plugin.php:660
2831
  msgctxt "admin plugins"
2832
  msgid "Settings"
2833
  msgstr ""
2834
 
2835
- #: business-directory-plugin.php:768 business-directory-plugin.php:775
2836
  msgctxt "rss feed"
2837
  msgid "%s Feed"
2838
  msgstr ""
2839
 
2840
- #: business-directory-plugin.php:1113
2841
  msgctxt "title"
2842
  msgid "Submit A Listing"
2843
  msgstr ""
2844
 
2845
- #: business-directory-plugin.php:1123
2846
  msgctxt "title"
2847
  msgid "Find a Listing"
2848
  msgstr ""
2849
 
2850
- #: business-directory-plugin.php:1133
2851
  msgctxt "title"
2852
  msgid "View All Listings"
2853
  msgstr ""
2854
 
2855
- #: business-directory-plugin.php:1153
2856
  msgctxt "title"
2857
  msgid "Listings tagged: %s"
2858
  msgstr ""
2859
 
2860
- #: core/api.php:397
2861
  msgid "Free"
2862
  msgstr ""
2863
 
2864
- #: core/class-csv-import.php:391
 
 
 
 
 
 
 
2865
  msgctxt "admin csv-import"
2866
  msgid "Could not create listing category \"%s\""
2867
  msgstr ""
2868
 
2869
- #: core/class-csv-import.php:535
2870
  msgctxt "admin csv-import"
2871
  msgid "Username \"%s\" does not exist"
2872
  msgstr ""
2873
 
2874
- #: core/class-csv-import.php:567
2875
  msgctxt "admin csv-import"
2876
  msgid "Missing required field: %s"
2877
  msgstr ""
2878
 
2879
- #: core/class-csv-import.php:587
2880
  msgctxt "admin csv-import"
2881
  msgid "Listing category \"%s\" does not exist"
2882
  msgstr ""
@@ -3357,13 +3365,13 @@ msgctxt "admin settings"
3357
  msgid "Enable AJAX compatibility mode?"
3358
  msgstr ""
3359
 
3360
- #: core/class-settings.php:181 core/class-settings.php:660
3361
  msgctxt "admin settings"
3362
  msgid "Listings"
3363
  msgstr ""
3364
 
3365
- #: core/class-settings.php:182 core/class-settings.php:330
3366
- #: core/class-settings.php:617
3367
  msgctxt "admin settings"
3368
  msgid "General Settings"
3369
  msgstr ""
@@ -3406,64 +3414,69 @@ msgstr ""
3406
 
3407
  #: core/class-settings.php:200
3408
  msgctxt "admin settings"
 
 
 
 
 
3409
  msgid "Require login for using the contact form?"
3410
  msgstr ""
3411
 
3412
- #: core/class-settings.php:206
3413
  msgctxt "admin settings"
3414
  msgid "Maximum number of contact form submits per day"
3415
  msgstr ""
3416
 
3417
- #: core/class-settings.php:209
3418
  msgctxt "admin settings"
3419
  msgid ""
3420
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
3421
  "per day."
3422
  msgstr ""
3423
 
3424
- #: core/class-settings.php:215
3425
  msgctxt "admin settings"
3426
  msgid "Include comment form on listing pages?"
3427
  msgstr ""
3428
 
3429
- #: core/class-settings.php:218
3430
  msgctxt "admin settings"
3431
  msgid ""
3432
  "Allow visitors to discuss listings using the standard WordPress comment "
3433
  "form. Comments are public."
3434
  msgstr ""
3435
 
3436
- #: core/class-settings.php:219
3437
  msgctxt "admin settings"
3438
  msgid "Show listings under categories on main page?"
3439
  msgstr ""
3440
 
3441
- #: core/class-settings.php:220
3442
  msgctxt "admin settings"
3443
  msgid "Status of listings upon uninstalling plugin"
3444
  msgstr ""
3445
 
3446
- #: core/class-settings.php:221 core/class-settings.php:223
3447
  msgctxt "post status"
3448
  msgid "Draft"
3449
  msgstr ""
3450
 
3451
- #: core/class-settings.php:221 core/class-settings.php:223
3452
  msgctxt "post status"
3453
  msgid "Trash"
3454
  msgstr ""
3455
 
3456
- #: core/class-settings.php:222
3457
  msgctxt "admin settings"
3458
  msgid "Status of deleted listings"
3459
  msgstr ""
3460
 
3461
- #: core/class-settings.php:224
3462
  msgctxt "admin settings"
3463
  msgid "Submit Listing instructions message"
3464
  msgstr ""
3465
 
3466
- #: core/class-settings.php:224
3467
  msgctxt "admin settings"
3468
  msgid ""
3469
  "This text is displayed at the first page of the Submit Listing process for "
@@ -3471,257 +3484,257 @@ msgid ""
3471
  "form or anything you want to tell users before they get started."
3472
  msgstr ""
3473
 
3474
- #: core/class-settings.php:226
3475
  msgctxt "admin settings"
3476
  msgid "Listing Renewal"
3477
  msgstr ""
3478
 
3479
- #: core/class-settings.php:227
3480
  msgctxt "admin settings"
3481
  msgid "Turn on listing renewal option?"
3482
  msgstr ""
3483
 
3484
- #: core/class-settings.php:230
3485
  msgctxt "admin settings"
3486
  msgid "Allow recurring renewal payments?"
3487
  msgstr ""
3488
 
3489
- #: core/class-settings.php:233
3490
  msgctxt "admin settings"
3491
  msgid ""
3492
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3493
  "charged at the time the listing expires without user intervention."
3494
  msgstr ""
3495
 
3496
- #: core/class-settings.php:237
3497
  msgctxt "admin settings"
3498
  msgid "Use recurring payments as the default payment method?"
3499
  msgstr ""
3500
 
3501
- #: core/class-settings.php:240
3502
  msgctxt "admin settings"
3503
  msgid ""
3504
  "Enable automatic renewal without having users opt in during the submit "
3505
  "process."
3506
  msgstr ""
3507
 
3508
- #: core/class-settings.php:245
3509
  msgctxt "admin settings"
3510
  msgid "Listing renewal e-mail threshold (in days)"
3511
  msgstr ""
3512
 
3513
- #: core/class-settings.php:248
3514
  msgctxt "admin settings"
3515
  msgid ""
3516
  "Configure how many days before listing expiration is the renewal e-mail sent."
3517
  msgstr ""
3518
 
3519
- #: core/class-settings.php:252
3520
  msgctxt "admin settings"
3521
  msgid ""
3522
  "Send expiration notices including a cancel links to auto-renewed listings?"
3523
  msgstr ""
3524
 
3525
- #: core/class-settings.php:259
3526
  msgctxt "admin settings"
3527
  msgid "Remind listing owners of expired listings (past due)?"
3528
  msgstr ""
3529
 
3530
- #: core/class-settings.php:264
3531
  msgctxt "admin settings"
3532
  msgid "Listing renewal reminder e-mail threshold (in days)"
3533
  msgstr ""
3534
 
3535
- #: core/class-settings.php:267
3536
  msgctxt "admin settings"
3537
  msgid ""
3538
  "Configure how many days after the expiration of a listing an e-mail reminder "
3539
  "should be sent to the owner."
3540
  msgstr ""
3541
 
3542
- #: core/class-settings.php:270
3543
  msgctxt "admin settings"
3544
  msgid "Post/Category Settings"
3545
  msgstr ""
3546
 
3547
- #: core/class-settings.php:271
3548
  msgctxt "admin settings"
3549
  msgid "Default new post status"
3550
  msgstr ""
3551
 
3552
- #: core/class-settings.php:272 core/class-settings.php:275
3553
  msgctxt "post status"
3554
  msgid "Published"
3555
  msgstr ""
3556
 
3557
- #: core/class-settings.php:272 core/class-settings.php:275
3558
  msgctxt "post status"
3559
  msgid "Pending"
3560
  msgstr ""
3561
 
3562
- #: core/class-settings.php:274
3563
  msgctxt "admin settings"
3564
  msgid "Edit post status"
3565
  msgstr ""
3566
 
3567
- #: core/class-settings.php:276
3568
  msgctxt "admin settings"
3569
  msgid "Order categories list by"
3570
  msgstr ""
3571
 
3572
- #: core/class-settings.php:278
3573
  msgctxt "admin settings"
3574
  msgid "Name"
3575
  msgstr ""
3576
 
3577
- #: core/class-settings.php:279
3578
  msgctxt "admin settings"
3579
  msgid "Slug"
3580
  msgstr ""
3581
 
3582
- #: core/class-settings.php:280
3583
  msgctxt "admin settings"
3584
  msgid "Listing Count"
3585
  msgstr ""
3586
 
3587
- #: core/class-settings.php:282
3588
  msgctxt "admin settings"
3589
  msgid "Sort order for categories"
3590
  msgstr ""
3591
 
3592
- #: core/class-settings.php:283 core/class-settings.php:301
3593
  msgctxt "admin settings"
3594
  msgid "Ascending"
3595
  msgstr ""
3596
 
3597
- #: core/class-settings.php:283 core/class-settings.php:301
3598
  msgctxt "admin settings"
3599
  msgid "Descending"
3600
  msgstr ""
3601
 
3602
- #: core/class-settings.php:284
3603
  msgctxt "admin settings"
3604
  msgid "Show category post count?"
3605
  msgstr ""
3606
 
3607
- #: core/class-settings.php:285
3608
  msgctxt "admin settings"
3609
  msgid "Hide empty categories?"
3610
  msgstr ""
3611
 
3612
- #: core/class-settings.php:286
3613
  msgctxt "admin settings"
3614
  msgid "Show only parent categories in category list?"
3615
  msgstr ""
3616
 
3617
- #: core/class-settings.php:288
3618
  msgctxt "admin settings"
3619
  msgid "Listings Sorting"
3620
  msgstr ""
3621
 
3622
- #: core/class-settings.php:289
3623
  msgctxt "admin settings"
3624
  msgid "Order directory listings by"
3625
  msgstr ""
3626
 
3627
- #: core/class-settings.php:291
3628
  msgctxt "admin settings"
3629
  msgid "Title"
3630
  msgstr ""
3631
 
3632
- #: core/class-settings.php:292
3633
  msgctxt "admin settings"
3634
  msgid "Author"
3635
  msgstr ""
3636
 
3637
- #: core/class-settings.php:293 core/class-settings.php:703
3638
  msgctxt "admin settings"
3639
  msgid "Date posted"
3640
  msgstr ""
3641
 
3642
- #: core/class-settings.php:294 core/class-settings.php:704
3643
  msgctxt "admin settings"
3644
  msgid "Date last modified"
3645
  msgstr ""
3646
 
3647
- #: core/class-settings.php:295
3648
  msgctxt "admin settings"
3649
  msgid "Random"
3650
  msgstr ""
3651
 
3652
- #: core/class-settings.php:296
3653
  msgctxt "admin settings"
3654
  msgid "Paid first then free. Inside each group by date."
3655
  msgstr ""
3656
 
3657
- #: core/class-settings.php:297
3658
  msgctxt "admin settings"
3659
  msgid "Paid first then free. Inside each group by title."
3660
  msgstr ""
3661
 
3662
- #: core/class-settings.php:299
3663
  msgctxt "admin settings"
3664
  msgid "Sort directory listings by"
3665
  msgstr ""
3666
 
3667
- #: core/class-settings.php:300
3668
  msgctxt "admin settings"
3669
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3670
  msgstr ""
3671
 
3672
- #: core/class-settings.php:305
3673
  msgctxt "admin settings"
3674
  msgid "Enable sort bar?"
3675
  msgstr ""
3676
 
3677
- #: core/class-settings.php:310
3678
  msgctxt "admin settings"
3679
  msgid "Sortbar Fields"
3680
  msgstr ""
3681
 
3682
- #: core/class-settings.php:319
3683
  msgctxt "admin settings"
3684
  msgid "Featured (Sticky) listing settings"
3685
  msgstr ""
3686
 
3687
- #: core/class-settings.php:320
3688
  msgctxt "admin settings"
3689
  msgid "Offer sticky listings?"
3690
  msgstr ""
3691
 
3692
- #: core/class-settings.php:321
3693
  msgctxt "admin settings"
3694
  msgid "Offer upgrades during submit process?"
3695
  msgstr ""
3696
 
3697
- #: core/class-settings.php:322
3698
  msgctxt "admin settings"
3699
  msgid "Sticky listing price"
3700
  msgstr ""
3701
 
3702
- #: core/class-settings.php:323
3703
  msgctxt "admin settings"
3704
  msgid "Sticky listing page description text"
3705
  msgstr ""
3706
 
3707
- #: core/class-settings.php:324
3708
  msgctxt "admin settings"
3709
  msgid ""
3710
  "You can upgrade your listing to featured status. Featured listings will "
3711
  "always appear on top of regular listings."
3712
  msgstr ""
3713
 
3714
- #: core/class-settings.php:329
3715
  msgctxt "admin settings"
3716
  msgid "E-Mail"
3717
  msgstr ""
3718
 
3719
- #: core/class-settings.php:333
3720
  msgctxt "admin settings"
3721
  msgid "Display email address fields publicly?"
3722
  msgstr ""
3723
 
3724
- #: core/class-settings.php:336
3725
  msgctxt "admin settings"
3726
  msgid ""
3727
  "Shows the email address of the listing owner to all web users. NOT "
@@ -3729,517 +3742,517 @@ msgid ""
3729
  "harvest it for future use."
3730
  msgstr ""
3731
 
3732
- #: core/class-settings.php:339
3733
  msgctxt "admin settings"
3734
  msgid "How to determine the listing's email address?"
3735
  msgstr ""
3736
 
3737
- #: core/class-settings.php:342
3738
  msgctxt "admin settings"
3739
  msgid ""
3740
  "This affects emails sent to listing owners via contact forms or when their "
3741
  "listings expire."
3742
  msgstr ""
3743
 
3744
- #: core/class-settings.php:344
3745
  msgctxt "admin settings"
3746
  msgid "Try listing's email field first, then author's email."
3747
  msgstr ""
3748
 
3749
- #: core/class-settings.php:345
3750
  msgctxt "admin settings"
3751
  msgid "Try author's email first and then listing's email field."
3752
  msgstr ""
3753
 
3754
- #: core/class-settings.php:349
3755
  msgctxt "admin settings"
3756
  msgid "E-Mail Notifications"
3757
  msgstr ""
3758
 
3759
- #: core/class-settings.php:352
3760
  msgctxt "admin settings"
3761
  msgid "Notify admin via e-mail when..."
3762
  msgstr ""
3763
 
3764
- #: core/class-settings.php:356
3765
  msgctxt "admin settings"
3766
  msgid "A new listing is submitted."
3767
  msgstr ""
3768
 
3769
- #: core/class-settings.php:357
3770
  msgctxt "admin settings"
3771
  msgid "A listing is edited."
3772
  msgstr ""
3773
 
3774
- #: core/class-settings.php:358
3775
  msgctxt "admin settings"
3776
  msgid "A listing expires."
3777
  msgstr ""
3778
 
3779
- #: core/class-settings.php:359
3780
  msgctxt "admin settings"
3781
  msgid "A contact message is sent to a listing's owner."
3782
  msgstr ""
3783
 
3784
- #: core/class-settings.php:365
3785
  msgctxt "admin settings"
3786
  msgid "CC this e-mail address too"
3787
  msgstr ""
3788
 
3789
- #: core/class-settings.php:371
3790
  msgctxt "admin settings"
3791
  msgid "Notify users via e-mail when..."
3792
  msgstr ""
3793
 
3794
- #: core/class-settings.php:374
3795
  msgctxt "admin settings"
3796
  msgid "You can modify the text template used for most of these e-mails below."
3797
  msgstr ""
3798
 
3799
- #: core/class-settings.php:375
3800
  msgctxt "admin settings"
3801
  msgid "Their listing is submitted."
3802
  msgstr ""
3803
 
3804
- #: core/class-settings.php:376
3805
  msgctxt "admin settings"
3806
  msgid "Their listing is approved/published."
3807
  msgstr ""
3808
 
3809
- #: core/class-settings.php:385
3810
  msgctxt "contact email"
3811
  msgid "You have received a reply from your listing at %s."
3812
  msgstr ""
3813
 
3814
- #: core/class-settings.php:386
3815
  msgctxt "contact email"
3816
  msgid "Name: %s"
3817
  msgstr ""
3818
 
3819
- #: core/class-settings.php:387
3820
  msgctxt "contact email"
3821
  msgid "E-Mail: %s"
3822
  msgstr ""
3823
 
3824
- #: core/class-settings.php:388
3825
  msgctxt "contact email"
3826
  msgid "Message:"
3827
  msgstr ""
3828
 
3829
- #: core/class-settings.php:390
3830
  msgctxt "contact email"
3831
  msgid "Time: %s"
3832
  msgstr ""
3833
 
3834
- #: core/class-settings.php:392
3835
  msgctxt "admin settings"
3836
  msgid "E-Mail Templates"
3837
  msgstr ""
3838
 
3839
- #: core/class-settings.php:395
3840
  msgctxt "admin settings"
3841
  msgid "Email confirmation message"
3842
  msgstr ""
3843
 
3844
- #: core/class-settings.php:399
3845
  msgctxt "admin settings"
3846
  msgid "Sent after a listing has been submitted."
3847
  msgstr ""
3848
 
3849
- #: core/class-settings.php:400 core/class-settings.php:408
3850
- #: core/class-settings.php:449
3851
  msgctxt "admin settings"
3852
  msgid "Listing's title"
3853
  msgstr ""
3854
 
3855
- #: core/class-settings.php:403
3856
  msgctxt "admin settings"
3857
  msgid "Listing published message"
3858
  msgstr ""
3859
 
3860
- #: core/class-settings.php:406
3861
  msgctxt "admin settings"
3862
  msgid ""
3863
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
3864
  "viewed by the public."
3865
  msgstr ""
3866
 
3867
- #: core/class-settings.php:407
3868
  msgctxt "admin settings"
3869
  msgid "Sent when the listing has been published or approved by an admin."
3870
  msgstr ""
3871
 
3872
- #: core/class-settings.php:409
3873
  msgctxt "admin settings"
3874
  msgid "Listing's URL"
3875
  msgstr ""
3876
 
3877
- #: core/class-settings.php:413
3878
  msgctxt "admin settings"
3879
  msgid "Listing Contact Message"
3880
  msgstr ""
3881
 
3882
- #: core/class-settings.php:417
3883
  msgctxt "admin settings"
3884
  msgid ""
3885
  "Sent to listing owners when someone uses the contact form on their listing "
3886
  "pages."
3887
  msgstr ""
3888
 
3889
- #: core/class-settings.php:427
3890
  msgctxt "admin settings"
3891
  msgid "Payment related"
3892
  msgstr ""
3893
 
3894
- #: core/class-settings.php:444
3895
  msgctxt "admin settings"
3896
  msgid "Payment abandoned reminder message"
3897
  msgstr ""
3898
 
3899
- #: core/class-settings.php:448
3900
  msgctxt "admin settings"
3901
  msgid "Sent some time after a pending payment is abandoned by users."
3902
  msgstr ""
3903
 
3904
- #: core/class-settings.php:450
3905
  msgctxt "admin settings"
3906
  msgid "Checkout URL link"
3907
  msgstr ""
3908
 
3909
- #: core/class-settings.php:456
3910
  msgctxt "admin settings"
3911
  msgid "Renewal Reminders"
3912
  msgstr ""
3913
 
3914
- #: core/class-settings.php:459
3915
  msgctxt "admin settings"
3916
  msgid ""
3917
  "This section refers only to the text of the renewal/expiration notices. You "
3918
  "can also <a>configure when the e-mails are sent</a>."
3919
  msgstr ""
3920
 
3921
- #: core/class-settings.php:463
3922
  msgctxt "admin settings"
3923
  msgid "Pending expiration e-mail message"
3924
  msgstr ""
3925
 
3926
- #: core/class-settings.php:467
3927
  msgctxt "settings"
3928
  msgid ""
3929
  "Sent some time before the listing expires. Applies to non-recurring renewals "
3930
  "only."
3931
  msgstr ""
3932
 
3933
- #: core/class-settings.php:468 core/class-settings.php:481
3934
- #: core/class-settings.php:494 core/class-settings.php:507
3935
- #: core/class-settings.php:520
3936
  msgctxt "settings"
3937
  msgid "Listing's name (with link)"
3938
  msgstr ""
3939
 
3940
- #: core/class-settings.php:469 core/class-settings.php:482
3941
- #: core/class-settings.php:495 core/class-settings.php:508
3942
- #: core/class-settings.php:521
3943
  msgctxt "settings"
3944
  msgid "Author's name"
3945
  msgstr ""
3946
 
3947
- #: core/class-settings.php:470 core/class-settings.php:483
3948
- #: core/class-settings.php:522
3949
  msgctxt "settings"
3950
  msgid "Expiration date"
3951
  msgstr ""
3952
 
3953
- #: core/class-settings.php:471
3954
  msgctxt "settings"
3955
  msgid "Category that is going to expire"
3956
  msgstr ""
3957
 
3958
- #: core/class-settings.php:472 core/class-settings.php:485
3959
- #: core/class-settings.php:524
3960
  msgctxt "settings"
3961
  msgid "Link to renewal page"
3962
  msgstr ""
3963
 
3964
- #: core/class-settings.php:473 core/class-settings.php:486
3965
- #: core/class-settings.php:498 core/class-settings.php:511
3966
- #: core/class-settings.php:525
3967
  msgctxt "settings"
3968
  msgid "Link to your site"
3969
  msgstr ""
3970
 
3971
- #: core/class-settings.php:476
3972
  msgctxt "admin settings"
3973
  msgid "Listing Renewal e-mail message"
3974
  msgstr ""
3975
 
3976
- #: core/class-settings.php:480
3977
  msgctxt "settings"
3978
  msgid ""
3979
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
3980
  "only."
3981
  msgstr ""
3982
 
3983
- #: core/class-settings.php:484 core/class-settings.php:523
3984
  msgctxt "settings"
3985
  msgid "Category that expired"
3986
  msgstr ""
3987
 
3988
- #: core/class-settings.php:489
3989
  msgctxt "admin settings"
3990
  msgid "Listing auto-renewal reminder (recurring payments)"
3991
  msgstr ""
3992
 
3993
- #: core/class-settings.php:493
3994
  msgctxt "settings"
3995
  msgid ""
3996
  "Sent some time before the listing is auto-renewed. Applies to recurring "
3997
  "renewals only."
3998
  msgstr ""
3999
 
4000
- #: core/class-settings.php:496 core/class-settings.php:510
4001
  msgctxt "settings"
4002
  msgid "Renewal date"
4003
  msgstr ""
4004
 
4005
- #: core/class-settings.php:497
4006
  msgctxt "settings"
4007
  msgid "Category that is going to be renewed"
4008
  msgstr ""
4009
 
4010
- #: core/class-settings.php:499
4011
  msgctxt "settings"
4012
  msgid "Link to manage subscriptions"
4013
  msgstr ""
4014
 
4015
- #: core/class-settings.php:502
4016
  msgctxt "admin settings"
4017
  msgid "Listing Renewal e-mail message (recurring payments)"
4018
  msgstr ""
4019
 
4020
- #: core/class-settings.php:506
4021
  msgctxt "settings"
4022
  msgid ""
4023
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4024
  msgstr ""
4025
 
4026
- #: core/class-settings.php:509
4027
  msgctxt "settings"
4028
  msgid "Renewed category"
4029
  msgstr ""
4030
 
4031
- #: core/class-settings.php:515
4032
  msgctxt "admin settings"
4033
  msgid "Renewal reminder e-mail message"
4034
  msgstr ""
4035
 
4036
- #: core/class-settings.php:519
4037
  msgctxt "settings"
4038
  msgid ""
4039
  "Sent some time after listing expiration and when no renewal has occurred. "
4040
  "Applies to both recurring and non-recurring renewals."
4041
  msgstr ""
4042
 
4043
- #: core/class-settings.php:529
4044
  msgctxt "admin settings"
4045
  msgid "Payment"
4046
  msgstr ""
4047
 
4048
- #: core/class-settings.php:530
4049
  msgctxt "admin settings"
4050
  msgid "Payment Settings"
4051
  msgstr ""
4052
 
4053
- #: core/class-settings.php:533
4054
  msgctxt "admin settings"
4055
  msgid "Turn On payments?"
4056
  msgstr ""
4057
 
4058
- #: core/class-settings.php:535
4059
  msgctxt "admin settings"
4060
  msgid "Put payment gateways in test mode?"
4061
  msgstr ""
4062
 
4063
- #: core/class-settings.php:540
4064
  msgctxt "admin settings"
4065
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4066
  msgstr ""
4067
 
4068
- #: core/class-settings.php:543
4069
  msgctxt "admin settings"
4070
  msgid ""
4071
  "Recommended for added security. For this to work you need to enable HTTPS on "
4072
  "your server and <a>obtain an SSL certificate</a>."
4073
  msgstr ""
4074
 
4075
- #: core/class-settings.php:547
4076
  msgctxt "admin settings"
4077
  msgid "Currency Code"
4078
  msgstr ""
4079
 
4080
- #: core/class-settings.php:549
4081
  msgctxt "admin settings"
4082
  msgid "Australian Dollar (AUD)"
4083
  msgstr ""
4084
 
4085
- #: core/class-settings.php:550
4086
  msgctxt "admin settings"
4087
  msgid "Brazilian Real (BRL)"
4088
  msgstr ""
4089
 
4090
- #: core/class-settings.php:551
4091
  msgctxt "admin settings"
4092
  msgid "Canadian Dollar (CAD)"
4093
  msgstr ""
4094
 
4095
- #: core/class-settings.php:552
4096
  msgctxt "admin settings"
4097
  msgid "Czech Koruna (CZK)"
4098
  msgstr ""
4099
 
4100
- #: core/class-settings.php:553
4101
  msgctxt "admin settings"
4102
  msgid "Danish Krone (DKK)"
4103
  msgstr ""
4104
 
4105
- #: core/class-settings.php:554
4106
  msgctxt "admin settings"
4107
  msgid "Euro (EUR)"
4108
  msgstr ""
4109
 
4110
- #: core/class-settings.php:555
4111
  msgctxt "admin settings"
4112
  msgid "Hong Kong Dollar (HKD)"
4113
  msgstr ""
4114
 
4115
- #: core/class-settings.php:556
4116
  msgctxt "admin settings"
4117
  msgid "Hungarian Forint (HUF)"
4118
  msgstr ""
4119
 
4120
- #: core/class-settings.php:557
4121
  msgctxt "admin settings"
4122
  msgid "Israeli New Shequel (ILS)"
4123
  msgstr ""
4124
 
4125
- #: core/class-settings.php:558
4126
  msgctxt "admin settings"
4127
  msgid "Japanese Yen (JPY)"
4128
  msgstr ""
4129
 
4130
- #: core/class-settings.php:559
4131
  msgctxt "admin settings"
4132
  msgid "Malasian Ringgit (MYR)"
4133
  msgstr ""
4134
 
4135
- #: core/class-settings.php:560
4136
  msgctxt "admin settings"
4137
  msgid "Mexican Peso (MXN)"
4138
  msgstr ""
4139
 
4140
- #: core/class-settings.php:561
4141
  msgctxt "admin settings"
4142
  msgid "Norwegian Krone (NOK)"
4143
  msgstr ""
4144
 
4145
- #: core/class-settings.php:562
4146
  msgctxt "admin settings"
4147
  msgid "New Zealand Dollar (NZD)"
4148
  msgstr ""
4149
 
4150
- #: core/class-settings.php:563
4151
  msgctxt "admin settings"
4152
  msgid "Philippine Peso (PHP)"
4153
  msgstr ""
4154
 
4155
- #: core/class-settings.php:564
4156
  msgctxt "admin settings"
4157
  msgid "Polish Zloty (PLN)"
4158
  msgstr ""
4159
 
4160
- #: core/class-settings.php:565
4161
  msgctxt "admin settings"
4162
  msgid "Pound Sterling (GBP)"
4163
  msgstr ""
4164
 
4165
- #: core/class-settings.php:566
4166
  msgctxt "admin settings"
4167
  msgid "Singapore Dollar (SGD)"
4168
  msgstr ""
4169
 
4170
- #: core/class-settings.php:567
4171
  msgctxt "admin settings"
4172
  msgid "Swedish Krona (SEK)"
4173
  msgstr ""
4174
 
4175
- #: core/class-settings.php:568
4176
  msgctxt "admin settings"
4177
  msgid "Swiss Franc (CHF)"
4178
  msgstr ""
4179
 
4180
- #: core/class-settings.php:569
4181
  msgctxt "admin settings"
4182
  msgid "Taiwan Dollar (TWD)"
4183
  msgstr ""
4184
 
4185
- #: core/class-settings.php:570
4186
  msgctxt "admin settings"
4187
  msgid "Thai Baht (THB)"
4188
  msgstr ""
4189
 
4190
- #: core/class-settings.php:571
4191
  msgctxt "admin settings"
4192
  msgid "Turkish Lira (TRY)"
4193
  msgstr ""
4194
 
4195
- #: core/class-settings.php:572
4196
  msgctxt "admin settings"
4197
  msgid "U.S. Dollar (USD)"
4198
  msgstr ""
4199
 
4200
- #: core/class-settings.php:576
4201
  msgctxt "admin settings"
4202
  msgid "Currency Symbol"
4203
  msgstr ""
4204
 
4205
- #: core/class-settings.php:581
4206
  msgctxt "admin settings"
4207
  msgid "Currency symbol display"
4208
  msgstr ""
4209
 
4210
- #: core/class-settings.php:585
4211
  msgctxt "admin settings"
4212
  msgid "Show currency symbol on the left"
4213
  msgstr ""
4214
 
4215
- #: core/class-settings.php:586
4216
  msgctxt "admin settings"
4217
  msgid "Show currency symbol on the right"
4218
  msgstr ""
4219
 
4220
- #: core/class-settings.php:587
4221
  msgctxt "admin settings"
4222
  msgid "Do not show currency symbol"
4223
  msgstr ""
4224
 
4225
- #: core/class-settings.php:589
4226
  msgctxt "admin settings"
4227
  msgid "Thank you for payment message"
4228
  msgstr ""
4229
 
4230
- #: core/class-settings.php:590
4231
  msgctxt "admin settings"
4232
  msgid ""
4233
  "Thank you for your payment. Your payment is being verified and your listing "
4234
  "reviewed. The verification and review process could take up to 48 hours."
4235
  msgstr ""
4236
 
4237
- #: core/class-settings.php:595
4238
  msgctxt "admin settings"
4239
  msgid "Ask users to come back for abandoned payments?"
4240
  msgstr ""
4241
 
4242
- #: core/class-settings.php:598
4243
  msgctxt "admin settings"
4244
  msgid ""
4245
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -4248,49 +4261,49 @@ msgid ""
4248
  "the transaction. BD can remind them to come back and continue."
4249
  msgstr ""
4250
 
4251
- #: core/class-settings.php:604
4252
  msgctxt "admin settings"
4253
  msgid "Listing abandonment threshold (hours)"
4254
  msgstr ""
4255
 
4256
- #: core/class-settings.php:609
4257
  msgctxt "admin settings"
4258
  msgid ""
4259
  "Listings with pending payments are marked as abandoned after this time. You "
4260
  "can also <a>customize the e-mail</a> users receive."
4261
  msgstr ""
4262
 
4263
- #: core/class-settings.php:614
4264
  msgctxt "admin settings"
4265
  msgid "Themes"
4266
  msgstr ""
4267
 
4268
- #: core/class-settings.php:616
4269
  msgctxt "admin settings"
4270
  msgid "You can manage your themes on <a>Directory Themes</a>."
4271
  msgstr ""
4272
 
4273
- #: core/class-settings.php:621
4274
  msgctxt "admin settings"
4275
  msgid "Theme button style"
4276
  msgstr ""
4277
 
4278
- #: core/class-settings.php:625
4279
  msgctxt "admin settings"
4280
  msgid "Use the BD theme style for BD buttons"
4281
  msgstr ""
4282
 
4283
- #: core/class-settings.php:626
4284
  msgctxt "admin settings"
4285
  msgid "Use the WP theme style for BD buttons"
4286
  msgstr ""
4287
 
4288
- #: core/class-settings.php:633
4289
  msgctxt "admin settings"
4290
  msgid "Image"
4291
  msgstr ""
4292
 
4293
- #: core/class-settings.php:634
4294
  msgctxt "admin settings"
4295
  msgid ""
4296
  "Any changes to these settings will affect new listings only. Existing "
@@ -4299,78 +4312,78 @@ msgid ""
4299
  "here."
4300
  msgstr ""
4301
 
4302
- #: core/class-settings.php:635
4303
  msgctxt "admin settings"
4304
  msgid "Image Settings"
4305
  msgstr ""
4306
 
4307
- #: core/class-settings.php:636
4308
  msgctxt "admin settings"
4309
  msgid "Allow images?"
4310
  msgstr ""
4311
 
4312
- #: core/class-settings.php:638
4313
  msgctxt "admin settings"
4314
  msgid "Min Image File Size (KB)"
4315
  msgstr ""
4316
 
4317
- #: core/class-settings.php:639
4318
  msgctxt "admin settings"
4319
  msgid "Max Image File Size (KB)"
4320
  msgstr ""
4321
 
4322
- #: core/class-settings.php:641
4323
  msgctxt "admin settings"
4324
  msgid "Min image width (px)"
4325
  msgstr ""
4326
 
4327
- #: core/class-settings.php:642
4328
  msgctxt "admin settings"
4329
  msgid "Min image height (px)"
4330
  msgstr ""
4331
 
4332
- #: core/class-settings.php:644
4333
  msgctxt "admin settings"
4334
  msgid "Max image width (px)"
4335
  msgstr ""
4336
 
4337
- #: core/class-settings.php:645
4338
  msgctxt "admin settings"
4339
  msgid "Max image height (px)"
4340
  msgstr ""
4341
 
4342
- #: core/class-settings.php:647
4343
  msgctxt "admin settings"
4344
  msgid "Turn on thickbox/lightbox?"
4345
  msgstr ""
4346
 
4347
- #: core/class-settings.php:647
4348
  msgctxt "admin settings"
4349
  msgid ""
4350
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4351
  msgstr ""
4352
 
4353
- #: core/class-settings.php:649
4354
  msgctxt "admin settings"
4355
  msgid "Thumbnails"
4356
  msgstr ""
4357
 
4358
- #: core/class-settings.php:650
4359
  msgctxt "admin settings"
4360
  msgid "Thumbnail width (px)"
4361
  msgstr ""
4362
 
4363
- #: core/class-settings.php:651
4364
  msgctxt "admin settings"
4365
  msgid "Thumbnail height (px)"
4366
  msgstr ""
4367
 
4368
- #: core/class-settings.php:654
4369
  msgctxt "admin settings"
4370
  msgid "Crop thumbnails to exact dimensions?"
4371
  msgstr ""
4372
 
4373
- #: core/class-settings.php:657
4374
  msgctxt "admin settings"
4375
  msgid ""
4376
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4379,150 +4392,150 @@ msgid ""
4379
  "Depending on the uploaded images, thumbnails may have different heights."
4380
  msgstr ""
4381
 
4382
- #: core/class-settings.php:663
4383
  msgctxt "admin settings"
4384
  msgid "Number of free images"
4385
  msgstr ""
4386
 
4387
- #: core/class-settings.php:668
4388
  msgctxt "admin settings"
4389
  msgid ""
4390
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4391
  "a> instead of this setting, which is ignored for paid listings."
4392
  msgstr ""
4393
 
4394
- #: core/class-settings.php:671
4395
  msgctxt "admin settings"
4396
  msgid "Use default picture for listings with no picture?"
4397
  msgstr ""
4398
 
4399
- #: core/class-settings.php:672
4400
  msgctxt "admin settings"
4401
  msgid "Show Thumbnail on main listings page?"
4402
  msgstr ""
4403
 
4404
- #: core/class-settings.php:701
4405
  msgctxt "admin settings"
4406
  msgid "User"
4407
  msgstr ""
4408
 
4409
- #: core/class-settings.php:702
4410
  msgctxt "admin settings"
4411
  msgid "User registration date"
4412
  msgstr ""
4413
 
4414
- #: core/class-settings.php:728
4415
  msgctxt "admin settings"
4416
  msgid ""
4417
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4418
  "not activated."
4419
  msgstr ""
4420
 
4421
- #: core/class-settings.php:736
4422
  msgctxt "admin settings"
4423
  msgid ""
4424
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4425
  "be created."
4426
  msgstr ""
4427
 
4428
- #: core/class-settings.php:745
4429
  msgctxt "admin settings"
4430
  msgid ""
4431
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4432
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4433
  msgstr ""
4434
 
4435
- #: core/class-settings.php:1065
4436
  msgctxt "settings"
4437
  msgid "Deactivate License"
4438
  msgstr ""
4439
 
4440
- #: core/class-settings.php:1067
4441
  msgctxt "settings"
4442
  msgid "Deactivating license..."
4443
  msgstr ""
4444
 
4445
- #: core/class-settings.php:1070
4446
  msgctxt "settings"
4447
  msgid "Activate License"
4448
  msgstr ""
4449
 
4450
- #: core/class-settings.php:1072
4451
  msgctxt "settings"
4452
  msgid "Activating license..."
4453
  msgstr ""
4454
 
4455
- #: core/class-settings.php:1095
4456
  msgctxt "admin settings"
4457
  msgid "Valid placeholders: %s"
4458
  msgstr ""
4459
 
4460
- #: core/class-settings.php:1129
4461
  msgctxt "settings email"
4462
  msgid "Click to edit e-mail"
4463
  msgstr ""
4464
 
4465
- #: core/class-settings.php:1130
4466
  msgctxt "settings email"
4467
  msgid "Click to edit"
4468
  msgstr ""
4469
 
4470
- #: core/class-settings.php:1143
4471
  msgctxt "settings email"
4472
  msgid "E-Mail Subject"
4473
  msgstr ""
4474
 
4475
- #: core/class-settings.php:1154
4476
  msgctxt "settings email"
4477
  msgid "E-Mail Body"
4478
  msgstr ""
4479
 
4480
- #: core/class-settings.php:1165
4481
  msgctxt "settings email"
4482
  msgid "You can use the following placeholders:"
4483
  msgstr ""
4484
 
4485
- #: core/class-settings.php:1188
4486
  msgctxt "settings email"
4487
  msgid "Preview e-mail"
4488
  msgstr ""
4489
 
4490
- #: core/class-settings.php:1189
4491
  msgctxt "settings email"
4492
  msgid "Cancel"
4493
  msgstr ""
4494
 
4495
- #: core/class-settings.php:1190
4496
  msgctxt "settings email"
4497
  msgid "Save Changes"
4498
  msgstr ""
4499
 
4500
- #: core/class-settings.php:1209
4501
  msgctxt "settings email"
4502
  msgid "Site title"
4503
  msgstr ""
4504
 
4505
- #: core/class-settings.php:1212
4506
  msgctxt "settings email"
4507
  msgid "Site title (with link)"
4508
  msgstr ""
4509
 
4510
- #: core/class-settings.php:1215
4511
  msgctxt "settings email"
4512
  msgid "Site address (with link)"
4513
  msgstr ""
4514
 
4515
- #: core/class-settings.php:1218
4516
  msgctxt "settings email"
4517
  msgid "Directory URL (with link)"
4518
  msgstr ""
4519
 
4520
- #: core/class-settings.php:1221
4521
  msgctxt "settings email"
4522
  msgid "Current date"
4523
  msgstr ""
4524
 
4525
- #: core/class-settings.php:1224
4526
  msgctxt "settings email"
4527
  msgid "Current time"
4528
  msgstr ""
@@ -6303,12 +6316,17 @@ msgctxt "templates"
6303
  msgid "Upgrade listing to %s for %s."
6304
  msgstr ""
6305
 
6306
- #: templates/main-box.tpl.php:16
 
 
 
 
 
6307
  msgctxt "main box"
6308
  msgid "Find Listings"
6309
  msgstr ""
6310
 
6311
- #: templates/main-box.tpl.php:17
6312
  msgctxt "main box"
6313
  msgid "Advanced Search"
6314
  msgstr ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-09-20 02:40:34+00:00\n"
8
  "PO-Revision-Date: 2015-04-07 11:11-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
120
  msgid "Renew Listing"
121
  msgstr ""
122
 
123
+ #: admin/class-admin.php:102
124
+ msgid ""
125
+ "Preview is only available after you've saved the first draft. This is due\n"
126
+ "to how WordPress stores the data."
127
+ msgstr ""
128
+
129
+ #: admin/class-admin.php:135
130
  msgctxt "drip pointer"
131
  msgid ""
132
  "Find out how to create a compelling, thriving business directory from "
134
  "a FREE premium module just for signing up."
135
  msgstr ""
136
 
137
+ #: admin/class-admin.php:137
138
  msgctxt "drip pointer"
139
  msgid "Email Address:"
140
  msgstr ""
141
 
142
+ #: admin/class-admin.php:143
143
  msgctxt "drip pointer"
144
  msgid "Want to know the Secrets of Building an Awesome Business Directory?"
145
  msgstr ""
146
 
147
+ #: admin/class-admin.php:145
148
  msgctxt "drip pointer"
149
  msgid "Yes, please!"
150
  msgstr ""
151
 
152
+ #: admin/class-admin.php:147
153
  msgctxt "drip pointer"
154
  msgid "No, thanks"
155
  msgstr ""
156
 
157
+ #: admin/class-admin.php:164
158
  msgctxt "admin"
159
  msgid "Business Directory"
160
  msgstr ""
161
 
162
+ #: admin/class-admin.php:175
163
  msgctxt "admin"
164
  msgid "You're all set. Visit your new <a>Business Directory</a> page."
165
  msgstr ""
166
 
167
+ #: admin/class-admin.php:196
168
  msgctxt "drip pointer"
169
  msgid "Invalid e-mail address."
170
  msgstr ""
171
 
172
+ #: admin/class-admin.php:230
173
  msgctxt "admin menu"
174
  msgid "Business Directory Admin"
175
  msgstr ""
176
 
177
+ #: admin/class-admin.php:231
178
  msgctxt "admin menu"
179
  msgid "Dir. Admin"
180
  msgstr ""
181
 
182
+ #: admin/class-admin.php:231
183
  msgctxt "admin menu"
184
  msgid "Directory Admin"
185
  msgstr ""
186
 
187
+ #: admin/class-admin.php:237 admin/class-admin.php:238
188
  msgctxt "admin menu"
189
  msgid "Add New Listing"
190
  msgstr ""
191
 
192
+ #: admin/class-admin.php:243 admin/class-admin.php:244
193
  msgctxt "admin menu"
194
  msgid "Manage Options"
195
  msgstr ""
196
 
197
+ #: admin/class-admin.php:249 admin/class-admin.php:250
198
  msgctxt "admin menu"
199
  msgid "Manage Fees"
200
  msgstr ""
201
 
202
+ #: admin/class-admin.php:255 admin/class-admin.php:256
203
  msgctxt "admin menu"
204
  msgid "Manage Form Fields"
205
  msgstr ""
206
 
207
+ #: admin/class-admin.php:261 admin/class-admin.php:262
208
  msgctxt "admin menu"
209
  msgid "Listings"
210
  msgstr ""
211
 
212
+ #: admin/class-admin.php:276 admin/class-admin.php:277
213
  msgctxt "admin menu"
214
  msgid "CSV Import"
215
  msgstr ""
216
 
217
+ #: admin/class-admin.php:282 admin/class-admin.php:283
218
  msgctxt "admin menu"
219
  msgid "CSV Export"
220
  msgstr ""
221
 
222
+ #: admin/class-admin.php:288 admin/class-admin.php:289
223
  msgctxt "admin menu"
224
  msgid "Debug"
225
  msgstr ""
226
 
227
+ #: admin/class-admin.php:298
228
  msgctxt "admin menu"
229
  msgid "Main Menu"
230
  msgstr ""
231
 
232
+ #: admin/class-admin.php:309
233
  msgctxt "admin menu"
234
  msgid "Uninstall Business Directory Plugin"
235
  msgstr ""
236
 
237
+ #: admin/class-admin.php:310
238
  msgctxt "admin menu"
239
  msgid "Uninstall"
240
  msgstr ""
241
 
242
+ #: admin/class-admin.php:424
243
  #: admin/templates/listing-metabox-categories.tpl.php:69
244
  msgctxt "admin infometabox"
245
  msgid "never"
246
  msgstr ""
247
 
248
+ #: admin/class-admin.php:518
249
  msgctxt "admin"
250
  msgid "Dismiss this notice."
251
  msgstr ""
252
 
253
+ #: admin/class-admin.php:546
254
  msgctxt "admin"
255
  msgid "The listing has been published."
256
  msgid_plural "The listings have been published."
257
  msgstr[0] ""
258
  msgstr[1] ""
259
 
260
+ #: admin/class-admin.php:564
261
  msgctxt "admin"
262
  msgid "The listing status has been set as paid."
263
  msgid_plural "The listings status has been set as paid."
264
  msgstr[0] ""
265
  msgstr[1] ""
266
 
267
+ #: admin/class-admin.php:570
268
  msgctxt "admin"
269
  msgid ""
270
  "Only invoices containing non-recurring items were marked as paid. Please "
276
  msgstr[0] ""
277
  msgstr[1] ""
278
 
279
+ #: admin/class-admin.php:589
280
  msgctxt "admin"
281
  msgid "The listing has been modified."
282
  msgid_plural "The listings have been modified."
283
  msgstr[0] ""
284
  msgstr[1] ""
285
 
286
+ #: admin/class-admin.php:602
287
  msgctxt "admin"
288
  msgid "The listing has been upgraded."
289
  msgid_plural "The listings have been upgraded."
290
  msgstr[0] ""
291
  msgstr[1] ""
292
 
293
+ #: admin/class-admin.php:614
294
  msgctxt "admin"
295
  msgid "The listing has been downgraded."
296
  msgid_plural "The listings have been downgraded."
297
  msgstr[0] ""
298
  msgstr[1] ""
299
 
300
+ #: admin/class-admin.php:625
301
  msgctxt "admin payments"
302
  msgid ""
303
  "The payment status was not changed. Recurring payments can't be manually "
305
  "went through."
306
  msgstr ""
307
 
308
+ #: admin/class-admin.php:630
309
  msgctxt "admin"
310
  msgid "The transaction has been approved."
311
  msgstr ""
312
 
313
+ #: admin/class-admin.php:640
314
  msgctxt "admin"
315
  msgid "The transaction has been rejected."
316
  msgstr ""
317
 
318
+ #: admin/class-admin.php:646
319
  msgctxt "admin"
320
  msgid "The fee was successfully assigned."
321
  msgstr ""
322
 
323
+ #: admin/class-admin.php:655
324
  msgctxt "admin"
325
  msgid "Listing was renewed."
326
  msgid_plural "Listings were renewed."
327
  msgstr[0] ""
328
  msgstr[1] ""
329
 
330
+ #: admin/class-admin.php:662
331
  msgctxt "admin"
332
  msgid "Renewal email sent."
333
  msgstr ""
334
 
335
+ #: admin/class-admin.php:696
336
  msgctxt "admin category id"
337
  msgid "ID"
338
  msgstr ""
339
 
340
+ #: admin/class-admin.php:698 admin/class-admin.php:704
341
  msgctxt "admin"
342
  msgid "Listing Count"
343
  msgstr ""
344
 
345
+ #: admin/class-admin.php:813
346
  msgctxt "admin"
347
  msgid ""
348
  "<b>Business Directory Plugin</b> requires fields with the following "
349
  "associations in order to work correctly: <b>%s</b>."
350
  msgstr ""
351
 
352
+ #: admin/class-admin.php:815
353
  msgctxt "admin"
354
  msgid ""
355
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
356
  "association in order to work correctly."
357
  msgstr ""
358
 
359
+ #: admin/class-admin.php:819
360
  msgctxt "admin"
361
  msgid ""
362
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
363
  "or let Business Directory do this for you automatically."
364
  msgstr ""
365
 
366
+ #: admin/class-admin.php:823
367
  msgctxt "admin"
368
  msgid "Go to \"Manage Form Fields\""
369
  msgstr ""
370
 
371
+ #: admin/class-admin.php:826
372
  msgctxt "admin"
373
  msgid "Create these required fields for me"
374
  msgstr ""
375
 
376
+ #: admin/class-admin.php:835
377
  msgctxt "admin"
378
  msgid ""
379
  "<b>Business Directory Plugin</b> requires a page with the "
380
  "<tt>[businessdirectory]</tt> shortcode to function properly."
381
  msgstr ""
382
 
383
+ #: admin/class-admin.php:837
384
  msgctxt "admin"
385
  msgid ""
386
  "You can create this page by yourself or let Business Directory do this for "
387
  "you automatically."
388
  msgstr ""
389
 
390
+ #: admin/class-admin.php:841
391
  msgctxt "admin"
392
  msgid "Create required pages for me"
393
  msgstr ""
394
 
395
+ #: admin/class-admin.php:881
396
  msgctxt "admin compat"
397
  msgid "Installed: %s"
398
  msgstr ""
399
 
400
+ #: admin/class-admin.php:881
401
  msgctxt "admin compat"
402
  msgid "N/A"
403
  msgstr ""
404
 
405
+ #: admin/class-admin.php:884
406
  msgctxt "admin compat"
407
  msgid "Required: %s"
408
  msgstr ""
409
 
410
+ #: admin/class-admin.php:896
411
  msgctxt "admin compat"
412
  msgid ""
413
  "Business Directory has detected some incompatible premium module versions "
414
  "installed."
415
  msgstr ""
416
 
417
+ #: admin/class-admin.php:898
418
  msgctxt "admin compat"
419
  msgid ""
420
  "Please upgrade to the required versions indicated below to make sure "
421
  "everything functions properly."
422
  msgstr ""
423
 
424
+ #: admin/class-admin.php:918
425
  msgctxt "admin"
426
  msgid ""
427
  "We noticed you want your Business Directory users to register before posting "
1318
  "available to PHP. Check your error logs for details."
1319
  msgstr ""
1320
 
1321
+ #: admin/templates/csv-import-progress.tpl.php:13
1322
+ #: admin/templates/csv-import-progress.tpl.php:20
 
 
 
 
 
1323
  msgctxt "admin csv-import"
1324
  msgid "← Return to CSV Import"
1325
  msgstr ""
1326
 
1327
+ #: admin/templates/csv-import-progress.tpl.php:18
1328
  msgctxt "admin csv-import"
1329
  msgid "Import Canceled"
1330
  msgstr ""
1331
 
1332
+ #: admin/templates/csv-import-progress.tpl.php:19
1333
  msgctxt "admin csv-import"
1334
  msgid "The import has been canceled."
1335
  msgstr ""
1336
 
1337
+ #: admin/templates/csv-import-progress.tpl.php:26
1338
  msgid "Import Progress"
1339
  msgstr ""
1340
 
1341
+ #: admin/templates/csv-import-progress.tpl.php:29
1342
  msgctxt "admin csv-import"
1343
  msgid "Files"
1344
  msgstr ""
1345
 
1346
+ #: admin/templates/csv-import-progress.tpl.php:32
1347
  msgctxt "admin csv-import"
1348
  msgid "Rows in file"
1349
  msgstr ""
1350
 
1351
+ #: admin/templates/csv-import-progress.tpl.php:35
1352
  msgctxt "admin csv-import"
1353
  msgid "Progress"
1354
  msgstr ""
1355
 
1356
+ #: admin/templates/csv-import-progress.tpl.php:39
1357
  msgctxt "admin csv-import"
1358
  msgid "Import has not started. Click \"Start Import\" to begin."
1359
  msgstr ""
1360
 
1361
+ #: admin/templates/csv-import-progress.tpl.php:40
1362
  msgctxt "admin csv-import"
1363
  msgid "Importing CSV file..."
1364
  msgstr ""
1365
 
1366
+ #: admin/templates/csv-import-progress.tpl.php:46
1367
  msgctxt "admin csv-import"
1368
  msgid "Start Import"
1369
  msgstr ""
1370
 
1371
+ #: admin/templates/csv-import-progress.tpl.php:47
1372
  msgctxt "admin csv-import"
1373
  msgid "Cancel Import"
1374
  msgstr ""
1375
 
1376
+ #: admin/templates/csv-import-progress.tpl.php:54
1377
  msgctxt "admin csv-import"
1378
  msgid "Import finished"
1379
  msgstr ""
1380
 
1381
+ #: admin/templates/csv-import-progress.tpl.php:57
1382
  msgctxt "admin csv-import"
1383
  msgid "Import was completed successfully."
1384
  msgstr ""
1385
 
1386
+ #: admin/templates/csv-import-progress.tpl.php:61
1387
  msgctxt "admin csv-import"
1388
  msgid "Import was completed but some rows were rejected."
1389
  msgstr ""
1390
 
1391
+ #: admin/templates/csv-import-progress.tpl.php:64
1392
  msgctxt "admin csv-import"
1393
  msgid "Import Summary"
1394
  msgstr ""
1395
 
1396
+ #: admin/templates/csv-import-progress.tpl.php:66
1397
  msgctxt "admin csv-import"
1398
  msgid "Rows in file:"
1399
  msgstr ""
1400
 
1401
+ #: admin/templates/csv-import-progress.tpl.php:69
1402
  msgctxt "admin csv-import"
1403
  msgid "Imported rows:"
1404
  msgstr ""
1405
 
1406
+ #: admin/templates/csv-import-progress.tpl.php:72
1407
  msgctxt "admin csv-import"
1408
  msgid "Rejected rows:"
1409
  msgstr ""
1410
 
1411
+ #: admin/templates/csv-import-progress.tpl.php:77
1412
  msgctxt "admin csv-import"
1413
  msgid "Import Warnings"
1414
  msgstr ""
1415
 
1416
+ #: admin/templates/csv-import-progress.tpl.php:80
1417
  msgctxt "admin csv-import"
1418
  msgid "Line #"
1419
  msgstr ""
1420
 
1421
+ #: admin/templates/csv-import-progress.tpl.php:81
1422
  msgctxt "admin csv-import"
1423
  msgid "Line"
1424
  msgstr ""
1425
 
1426
+ #: admin/templates/csv-import-progress.tpl.php:82
1427
  msgctxt "admin csv-import"
1428
  msgid "Warning"
1429
  msgstr ""
2092
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2093
  msgstr ""
2094
 
2095
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.2) #-#-#-#-#
2096
  #. Plugin Name of the plugin/theme
2097
  #: admin/templates/header.tpl.php:4
2098
  msgid "Business Directory Plugin"
2828
  msgid "Allow Tracking"
2829
  msgstr ""
2830
 
2831
+ #: business-directory-plugin.php:666
2832
  msgctxt "admin plugins"
2833
  msgid "Settings"
2834
  msgstr ""
2835
 
2836
+ #: business-directory-plugin.php:774 business-directory-plugin.php:781
2837
  msgctxt "rss feed"
2838
  msgid "%s Feed"
2839
  msgstr ""
2840
 
2841
+ #: business-directory-plugin.php:1119
2842
  msgctxt "title"
2843
  msgid "Submit A Listing"
2844
  msgstr ""
2845
 
2846
+ #: business-directory-plugin.php:1129
2847
  msgctxt "title"
2848
  msgid "Find a Listing"
2849
  msgstr ""
2850
 
2851
+ #: business-directory-plugin.php:1139
2852
  msgctxt "title"
2853
  msgid "View All Listings"
2854
  msgstr ""
2855
 
2856
+ #: business-directory-plugin.php:1159
2857
  msgctxt "title"
2858
  msgid "Listings tagged: %s"
2859
  msgstr ""
2860
 
2861
+ #: core/api.php:401
2862
  msgid "Free"
2863
  msgstr ""
2864
 
2865
+ #: core/class-csv-import.php:394
2866
+ msgctxt "admin csv-import"
2867
+ msgid ""
2868
+ "Could not create listing category \"<category-name>\". The operation failed "
2869
+ "with the following error: <error-message>."
2870
+ msgstr ""
2871
+
2872
+ #: core/class-csv-import.php:400
2873
  msgctxt "admin csv-import"
2874
  msgid "Could not create listing category \"%s\""
2875
  msgstr ""
2876
 
2877
+ #: core/class-csv-import.php:544
2878
  msgctxt "admin csv-import"
2879
  msgid "Username \"%s\" does not exist"
2880
  msgstr ""
2881
 
2882
+ #: core/class-csv-import.php:576
2883
  msgctxt "admin csv-import"
2884
  msgid "Missing required field: %s"
2885
  msgstr ""
2886
 
2887
+ #: core/class-csv-import.php:596
2888
  msgctxt "admin csv-import"
2889
  msgid "Listing category \"%s\" does not exist"
2890
  msgstr ""
3365
  msgid "Enable AJAX compatibility mode?"
3366
  msgstr ""
3367
 
3368
+ #: core/class-settings.php:181 core/class-settings.php:665
3369
  msgctxt "admin settings"
3370
  msgid "Listings"
3371
  msgstr ""
3372
 
3373
+ #: core/class-settings.php:182 core/class-settings.php:335
3374
+ #: core/class-settings.php:622
3375
  msgctxt "admin settings"
3376
  msgid "General Settings"
3377
  msgstr ""
3414
 
3415
  #: core/class-settings.php:200
3416
  msgctxt "admin settings"
3417
+ msgid "Open detailed view of listing in new tab?"
3418
+ msgstr ""
3419
+
3420
+ #: core/class-settings.php:205
3421
+ msgctxt "admin settings"
3422
  msgid "Require login for using the contact form?"
3423
  msgstr ""
3424
 
3425
+ #: core/class-settings.php:211
3426
  msgctxt "admin settings"
3427
  msgid "Maximum number of contact form submits per day"
3428
  msgstr ""
3429
 
3430
+ #: core/class-settings.php:214
3431
  msgctxt "admin settings"
3432
  msgid ""
3433
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
3434
  "per day."
3435
  msgstr ""
3436
 
3437
+ #: core/class-settings.php:220
3438
  msgctxt "admin settings"
3439
  msgid "Include comment form on listing pages?"
3440
  msgstr ""
3441
 
3442
+ #: core/class-settings.php:223
3443
  msgctxt "admin settings"
3444
  msgid ""
3445
  "Allow visitors to discuss listings using the standard WordPress comment "
3446
  "form. Comments are public."
3447
  msgstr ""
3448
 
3449
+ #: core/class-settings.php:224
3450
  msgctxt "admin settings"
3451
  msgid "Show listings under categories on main page?"
3452
  msgstr ""
3453
 
3454
+ #: core/class-settings.php:225
3455
  msgctxt "admin settings"
3456
  msgid "Status of listings upon uninstalling plugin"
3457
  msgstr ""
3458
 
3459
+ #: core/class-settings.php:226 core/class-settings.php:228
3460
  msgctxt "post status"
3461
  msgid "Draft"
3462
  msgstr ""
3463
 
3464
+ #: core/class-settings.php:226 core/class-settings.php:228
3465
  msgctxt "post status"
3466
  msgid "Trash"
3467
  msgstr ""
3468
 
3469
+ #: core/class-settings.php:227
3470
  msgctxt "admin settings"
3471
  msgid "Status of deleted listings"
3472
  msgstr ""
3473
 
3474
+ #: core/class-settings.php:229
3475
  msgctxt "admin settings"
3476
  msgid "Submit Listing instructions message"
3477
  msgstr ""
3478
 
3479
+ #: core/class-settings.php:229
3480
  msgctxt "admin settings"
3481
  msgid ""
3482
  "This text is displayed at the first page of the Submit Listing process for "
3484
  "form or anything you want to tell users before they get started."
3485
  msgstr ""
3486
 
3487
+ #: core/class-settings.php:231
3488
  msgctxt "admin settings"
3489
  msgid "Listing Renewal"
3490
  msgstr ""
3491
 
3492
+ #: core/class-settings.php:232
3493
  msgctxt "admin settings"
3494
  msgid "Turn on listing renewal option?"
3495
  msgstr ""
3496
 
3497
+ #: core/class-settings.php:235
3498
  msgctxt "admin settings"
3499
  msgid "Allow recurring renewal payments?"
3500
  msgstr ""
3501
 
3502
+ #: core/class-settings.php:238
3503
  msgctxt "admin settings"
3504
  msgid ""
3505
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3506
  "charged at the time the listing expires without user intervention."
3507
  msgstr ""
3508
 
3509
+ #: core/class-settings.php:242
3510
  msgctxt "admin settings"
3511
  msgid "Use recurring payments as the default payment method?"
3512
  msgstr ""
3513
 
3514
+ #: core/class-settings.php:245
3515
  msgctxt "admin settings"
3516
  msgid ""
3517
  "Enable automatic renewal without having users opt in during the submit "
3518
  "process."
3519
  msgstr ""
3520
 
3521
+ #: core/class-settings.php:250
3522
  msgctxt "admin settings"
3523
  msgid "Listing renewal e-mail threshold (in days)"
3524
  msgstr ""
3525
 
3526
+ #: core/class-settings.php:253
3527
  msgctxt "admin settings"
3528
  msgid ""
3529
  "Configure how many days before listing expiration is the renewal e-mail sent."
3530
  msgstr ""
3531
 
3532
+ #: core/class-settings.php:257
3533
  msgctxt "admin settings"
3534
  msgid ""
3535
  "Send expiration notices including a cancel links to auto-renewed listings?"
3536
  msgstr ""
3537
 
3538
+ #: core/class-settings.php:264
3539
  msgctxt "admin settings"
3540
  msgid "Remind listing owners of expired listings (past due)?"
3541
  msgstr ""
3542
 
3543
+ #: core/class-settings.php:269
3544
  msgctxt "admin settings"
3545
  msgid "Listing renewal reminder e-mail threshold (in days)"
3546
  msgstr ""
3547
 
3548
+ #: core/class-settings.php:272
3549
  msgctxt "admin settings"
3550
  msgid ""
3551
  "Configure how many days after the expiration of a listing an e-mail reminder "
3552
  "should be sent to the owner."
3553
  msgstr ""
3554
 
3555
+ #: core/class-settings.php:275
3556
  msgctxt "admin settings"
3557
  msgid "Post/Category Settings"
3558
  msgstr ""
3559
 
3560
+ #: core/class-settings.php:276
3561
  msgctxt "admin settings"
3562
  msgid "Default new post status"
3563
  msgstr ""
3564
 
3565
+ #: core/class-settings.php:277 core/class-settings.php:280
3566
  msgctxt "post status"
3567
  msgid "Published"
3568
  msgstr ""
3569
 
3570
+ #: core/class-settings.php:277 core/class-settings.php:280
3571
  msgctxt "post status"
3572
  msgid "Pending"
3573
  msgstr ""
3574
 
3575
+ #: core/class-settings.php:279
3576
  msgctxt "admin settings"
3577
  msgid "Edit post status"
3578
  msgstr ""
3579
 
3580
+ #: core/class-settings.php:281
3581
  msgctxt "admin settings"
3582
  msgid "Order categories list by"
3583
  msgstr ""
3584
 
3585
+ #: core/class-settings.php:283
3586
  msgctxt "admin settings"
3587
  msgid "Name"
3588
  msgstr ""
3589
 
3590
+ #: core/class-settings.php:284
3591
  msgctxt "admin settings"
3592
  msgid "Slug"
3593
  msgstr ""
3594
 
3595
+ #: core/class-settings.php:285
3596
  msgctxt "admin settings"
3597
  msgid "Listing Count"
3598
  msgstr ""
3599
 
3600
+ #: core/class-settings.php:287
3601
  msgctxt "admin settings"
3602
  msgid "Sort order for categories"
3603
  msgstr ""
3604
 
3605
+ #: core/class-settings.php:288 core/class-settings.php:306
3606
  msgctxt "admin settings"
3607
  msgid "Ascending"
3608
  msgstr ""
3609
 
3610
+ #: core/class-settings.php:288 core/class-settings.php:306
3611
  msgctxt "admin settings"
3612
  msgid "Descending"
3613
  msgstr ""
3614
 
3615
+ #: core/class-settings.php:289
3616
  msgctxt "admin settings"
3617
  msgid "Show category post count?"
3618
  msgstr ""
3619
 
3620
+ #: core/class-settings.php:290
3621
  msgctxt "admin settings"
3622
  msgid "Hide empty categories?"
3623
  msgstr ""
3624
 
3625
+ #: core/class-settings.php:291
3626
  msgctxt "admin settings"
3627
  msgid "Show only parent categories in category list?"
3628
  msgstr ""
3629
 
3630
+ #: core/class-settings.php:293
3631
  msgctxt "admin settings"
3632
  msgid "Listings Sorting"
3633
  msgstr ""
3634
 
3635
+ #: core/class-settings.php:294
3636
  msgctxt "admin settings"
3637
  msgid "Order directory listings by"
3638
  msgstr ""
3639
 
3640
+ #: core/class-settings.php:296
3641
  msgctxt "admin settings"
3642
  msgid "Title"
3643
  msgstr ""
3644
 
3645
+ #: core/class-settings.php:297
3646
  msgctxt "admin settings"
3647
  msgid "Author"
3648
  msgstr ""
3649
 
3650
+ #: core/class-settings.php:298 core/class-settings.php:708
3651
  msgctxt "admin settings"
3652
  msgid "Date posted"
3653
  msgstr ""
3654
 
3655
+ #: core/class-settings.php:299 core/class-settings.php:709
3656
  msgctxt "admin settings"
3657
  msgid "Date last modified"
3658
  msgstr ""
3659
 
3660
+ #: core/class-settings.php:300
3661
  msgctxt "admin settings"
3662
  msgid "Random"
3663
  msgstr ""
3664
 
3665
+ #: core/class-settings.php:301
3666
  msgctxt "admin settings"
3667
  msgid "Paid first then free. Inside each group by date."
3668
  msgstr ""
3669
 
3670
+ #: core/class-settings.php:302
3671
  msgctxt "admin settings"
3672
  msgid "Paid first then free. Inside each group by title."
3673
  msgstr ""
3674
 
3675
+ #: core/class-settings.php:304
3676
  msgctxt "admin settings"
3677
  msgid "Sort directory listings by"
3678
  msgstr ""
3679
 
3680
+ #: core/class-settings.php:305
3681
  msgctxt "admin settings"
3682
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3683
  msgstr ""
3684
 
3685
+ #: core/class-settings.php:310
3686
  msgctxt "admin settings"
3687
  msgid "Enable sort bar?"
3688
  msgstr ""
3689
 
3690
+ #: core/class-settings.php:315
3691
  msgctxt "admin settings"
3692
  msgid "Sortbar Fields"
3693
  msgstr ""
3694
 
3695
+ #: core/class-settings.php:324
3696
  msgctxt "admin settings"
3697
  msgid "Featured (Sticky) listing settings"
3698
  msgstr ""
3699
 
3700
+ #: core/class-settings.php:325
3701
  msgctxt "admin settings"
3702
  msgid "Offer sticky listings?"
3703
  msgstr ""
3704
 
3705
+ #: core/class-settings.php:326
3706
  msgctxt "admin settings"
3707
  msgid "Offer upgrades during submit process?"
3708
  msgstr ""
3709
 
3710
+ #: core/class-settings.php:327
3711
  msgctxt "admin settings"
3712
  msgid "Sticky listing price"
3713
  msgstr ""
3714
 
3715
+ #: core/class-settings.php:328
3716
  msgctxt "admin settings"
3717
  msgid "Sticky listing page description text"
3718
  msgstr ""
3719
 
3720
+ #: core/class-settings.php:329
3721
  msgctxt "admin settings"
3722
  msgid ""
3723
  "You can upgrade your listing to featured status. Featured listings will "
3724
  "always appear on top of regular listings."
3725
  msgstr ""
3726
 
3727
+ #: core/class-settings.php:334
3728
  msgctxt "admin settings"
3729
  msgid "E-Mail"
3730
  msgstr ""
3731
 
3732
+ #: core/class-settings.php:338
3733
  msgctxt "admin settings"
3734
  msgid "Display email address fields publicly?"
3735
  msgstr ""
3736
 
3737
+ #: core/class-settings.php:341
3738
  msgctxt "admin settings"
3739
  msgid ""
3740
  "Shows the email address of the listing owner to all web users. NOT "
3742
  "harvest it for future use."
3743
  msgstr ""
3744
 
3745
+ #: core/class-settings.php:344
3746
  msgctxt "admin settings"
3747
  msgid "How to determine the listing's email address?"
3748
  msgstr ""
3749
 
3750
+ #: core/class-settings.php:347
3751
  msgctxt "admin settings"
3752
  msgid ""
3753
  "This affects emails sent to listing owners via contact forms or when their "
3754
  "listings expire."
3755
  msgstr ""
3756
 
3757
+ #: core/class-settings.php:349
3758
  msgctxt "admin settings"
3759
  msgid "Try listing's email field first, then author's email."
3760
  msgstr ""
3761
 
3762
+ #: core/class-settings.php:350
3763
  msgctxt "admin settings"
3764
  msgid "Try author's email first and then listing's email field."
3765
  msgstr ""
3766
 
3767
+ #: core/class-settings.php:354
3768
  msgctxt "admin settings"
3769
  msgid "E-Mail Notifications"
3770
  msgstr ""
3771
 
3772
+ #: core/class-settings.php:357
3773
  msgctxt "admin settings"
3774
  msgid "Notify admin via e-mail when..."
3775
  msgstr ""
3776
 
3777
+ #: core/class-settings.php:361
3778
  msgctxt "admin settings"
3779
  msgid "A new listing is submitted."
3780
  msgstr ""
3781
 
3782
+ #: core/class-settings.php:362
3783
  msgctxt "admin settings"
3784
  msgid "A listing is edited."
3785
  msgstr ""
3786
 
3787
+ #: core/class-settings.php:363
3788
  msgctxt "admin settings"
3789
  msgid "A listing expires."
3790
  msgstr ""
3791
 
3792
+ #: core/class-settings.php:364
3793
  msgctxt "admin settings"
3794
  msgid "A contact message is sent to a listing's owner."
3795
  msgstr ""
3796
 
3797
+ #: core/class-settings.php:370
3798
  msgctxt "admin settings"
3799
  msgid "CC this e-mail address too"
3800
  msgstr ""
3801
 
3802
+ #: core/class-settings.php:376
3803
  msgctxt "admin settings"
3804
  msgid "Notify users via e-mail when..."
3805
  msgstr ""
3806
 
3807
+ #: core/class-settings.php:379
3808
  msgctxt "admin settings"
3809
  msgid "You can modify the text template used for most of these e-mails below."
3810
  msgstr ""
3811
 
3812
+ #: core/class-settings.php:380
3813
  msgctxt "admin settings"
3814
  msgid "Their listing is submitted."
3815
  msgstr ""
3816
 
3817
+ #: core/class-settings.php:381
3818
  msgctxt "admin settings"
3819
  msgid "Their listing is approved/published."
3820
  msgstr ""
3821
 
3822
+ #: core/class-settings.php:390
3823
  msgctxt "contact email"
3824
  msgid "You have received a reply from your listing at %s."
3825
  msgstr ""
3826
 
3827
+ #: core/class-settings.php:391
3828
  msgctxt "contact email"
3829
  msgid "Name: %s"
3830
  msgstr ""
3831
 
3832
+ #: core/class-settings.php:392
3833
  msgctxt "contact email"
3834
  msgid "E-Mail: %s"
3835
  msgstr ""
3836
 
3837
+ #: core/class-settings.php:393
3838
  msgctxt "contact email"
3839
  msgid "Message:"
3840
  msgstr ""
3841
 
3842
+ #: core/class-settings.php:395
3843
  msgctxt "contact email"
3844
  msgid "Time: %s"
3845
  msgstr ""
3846
 
3847
+ #: core/class-settings.php:397
3848
  msgctxt "admin settings"
3849
  msgid "E-Mail Templates"
3850
  msgstr ""
3851
 
3852
+ #: core/class-settings.php:400
3853
  msgctxt "admin settings"
3854
  msgid "Email confirmation message"
3855
  msgstr ""
3856
 
3857
+ #: core/class-settings.php:404
3858
  msgctxt "admin settings"
3859
  msgid "Sent after a listing has been submitted."
3860
  msgstr ""
3861
 
3862
+ #: core/class-settings.php:405 core/class-settings.php:413
3863
+ #: core/class-settings.php:454
3864
  msgctxt "admin settings"
3865
  msgid "Listing's title"
3866
  msgstr ""
3867
 
3868
+ #: core/class-settings.php:408
3869
  msgctxt "admin settings"
3870
  msgid "Listing published message"
3871
  msgstr ""
3872
 
3873
+ #: core/class-settings.php:411
3874
  msgctxt "admin settings"
3875
  msgid ""
3876
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
3877
  "viewed by the public."
3878
  msgstr ""
3879
 
3880
+ #: core/class-settings.php:412
3881
  msgctxt "admin settings"
3882
  msgid "Sent when the listing has been published or approved by an admin."
3883
  msgstr ""
3884
 
3885
+ #: core/class-settings.php:414
3886
  msgctxt "admin settings"
3887
  msgid "Listing's URL"
3888
  msgstr ""
3889
 
3890
+ #: core/class-settings.php:418
3891
  msgctxt "admin settings"
3892
  msgid "Listing Contact Message"
3893
  msgstr ""
3894
 
3895
+ #: core/class-settings.php:422
3896
  msgctxt "admin settings"
3897
  msgid ""
3898
  "Sent to listing owners when someone uses the contact form on their listing "
3899
  "pages."
3900
  msgstr ""
3901
 
3902
+ #: core/class-settings.php:432
3903
  msgctxt "admin settings"
3904
  msgid "Payment related"
3905
  msgstr ""
3906
 
3907
+ #: core/class-settings.php:449
3908
  msgctxt "admin settings"
3909
  msgid "Payment abandoned reminder message"
3910
  msgstr ""
3911
 
3912
+ #: core/class-settings.php:453
3913
  msgctxt "admin settings"
3914
  msgid "Sent some time after a pending payment is abandoned by users."
3915
  msgstr ""
3916
 
3917
+ #: core/class-settings.php:455
3918
  msgctxt "admin settings"
3919
  msgid "Checkout URL link"
3920
  msgstr ""
3921
 
3922
+ #: core/class-settings.php:461
3923
  msgctxt "admin settings"
3924
  msgid "Renewal Reminders"
3925
  msgstr ""
3926
 
3927
+ #: core/class-settings.php:464
3928
  msgctxt "admin settings"
3929
  msgid ""
3930
  "This section refers only to the text of the renewal/expiration notices. You "
3931
  "can also <a>configure when the e-mails are sent</a>."
3932
  msgstr ""
3933
 
3934
+ #: core/class-settings.php:468
3935
  msgctxt "admin settings"
3936
  msgid "Pending expiration e-mail message"
3937
  msgstr ""
3938
 
3939
+ #: core/class-settings.php:472
3940
  msgctxt "settings"
3941
  msgid ""
3942
  "Sent some time before the listing expires. Applies to non-recurring renewals "
3943
  "only."
3944
  msgstr ""
3945
 
3946
+ #: core/class-settings.php:473 core/class-settings.php:486
3947
+ #: core/class-settings.php:499 core/class-settings.php:512
3948
+ #: core/class-settings.php:525
3949
  msgctxt "settings"
3950
  msgid "Listing's name (with link)"
3951
  msgstr ""
3952
 
3953
+ #: core/class-settings.php:474 core/class-settings.php:487
3954
+ #: core/class-settings.php:500 core/class-settings.php:513
3955
+ #: core/class-settings.php:526
3956
  msgctxt "settings"
3957
  msgid "Author's name"
3958
  msgstr ""
3959
 
3960
+ #: core/class-settings.php:475 core/class-settings.php:488
3961
+ #: core/class-settings.php:527
3962
  msgctxt "settings"
3963
  msgid "Expiration date"
3964
  msgstr ""
3965
 
3966
+ #: core/class-settings.php:476
3967
  msgctxt "settings"
3968
  msgid "Category that is going to expire"
3969
  msgstr ""
3970
 
3971
+ #: core/class-settings.php:477 core/class-settings.php:490
3972
+ #: core/class-settings.php:529
3973
  msgctxt "settings"
3974
  msgid "Link to renewal page"
3975
  msgstr ""
3976
 
3977
+ #: core/class-settings.php:478 core/class-settings.php:491
3978
+ #: core/class-settings.php:503 core/class-settings.php:516
3979
+ #: core/class-settings.php:530
3980
  msgctxt "settings"
3981
  msgid "Link to your site"
3982
  msgstr ""
3983
 
3984
+ #: core/class-settings.php:481
3985
  msgctxt "admin settings"
3986
  msgid "Listing Renewal e-mail message"
3987
  msgstr ""
3988
 
3989
+ #: core/class-settings.php:485
3990
  msgctxt "settings"
3991
  msgid ""
3992
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
3993
  "only."
3994
  msgstr ""
3995
 
3996
+ #: core/class-settings.php:489 core/class-settings.php:528
3997
  msgctxt "settings"
3998
  msgid "Category that expired"
3999
  msgstr ""
4000
 
4001
+ #: core/class-settings.php:494
4002
  msgctxt "admin settings"
4003
  msgid "Listing auto-renewal reminder (recurring payments)"
4004
  msgstr ""
4005
 
4006
+ #: core/class-settings.php:498
4007
  msgctxt "settings"
4008
  msgid ""
4009
  "Sent some time before the listing is auto-renewed. Applies to recurring "
4010
  "renewals only."
4011
  msgstr ""
4012
 
4013
+ #: core/class-settings.php:501 core/class-settings.php:515
4014
  msgctxt "settings"
4015
  msgid "Renewal date"
4016
  msgstr ""
4017
 
4018
+ #: core/class-settings.php:502
4019
  msgctxt "settings"
4020
  msgid "Category that is going to be renewed"
4021
  msgstr ""
4022
 
4023
+ #: core/class-settings.php:504
4024
  msgctxt "settings"
4025
  msgid "Link to manage subscriptions"
4026
  msgstr ""
4027
 
4028
+ #: core/class-settings.php:507
4029
  msgctxt "admin settings"
4030
  msgid "Listing Renewal e-mail message (recurring payments)"
4031
  msgstr ""
4032
 
4033
+ #: core/class-settings.php:511
4034
  msgctxt "settings"
4035
  msgid ""
4036
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4037
  msgstr ""
4038
 
4039
+ #: core/class-settings.php:514
4040
  msgctxt "settings"
4041
  msgid "Renewed category"
4042
  msgstr ""
4043
 
4044
+ #: core/class-settings.php:520
4045
  msgctxt "admin settings"
4046
  msgid "Renewal reminder e-mail message"
4047
  msgstr ""
4048
 
4049
+ #: core/class-settings.php:524
4050
  msgctxt "settings"
4051
  msgid ""
4052
  "Sent some time after listing expiration and when no renewal has occurred. "
4053
  "Applies to both recurring and non-recurring renewals."
4054
  msgstr ""
4055
 
4056
+ #: core/class-settings.php:534
4057
  msgctxt "admin settings"
4058
  msgid "Payment"
4059
  msgstr ""
4060
 
4061
+ #: core/class-settings.php:535
4062
  msgctxt "admin settings"
4063
  msgid "Payment Settings"
4064
  msgstr ""
4065
 
4066
+ #: core/class-settings.php:538
4067
  msgctxt "admin settings"
4068
  msgid "Turn On payments?"
4069
  msgstr ""
4070
 
4071
+ #: core/class-settings.php:540
4072
  msgctxt "admin settings"
4073
  msgid "Put payment gateways in test mode?"
4074
  msgstr ""
4075
 
4076
+ #: core/class-settings.php:545
4077
  msgctxt "admin settings"
4078
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4079
  msgstr ""
4080
 
4081
+ #: core/class-settings.php:548
4082
  msgctxt "admin settings"
4083
  msgid ""
4084
  "Recommended for added security. For this to work you need to enable HTTPS on "
4085
  "your server and <a>obtain an SSL certificate</a>."
4086
  msgstr ""
4087
 
4088
+ #: core/class-settings.php:552
4089
  msgctxt "admin settings"
4090
  msgid "Currency Code"
4091
  msgstr ""
4092
 
4093
+ #: core/class-settings.php:554
4094
  msgctxt "admin settings"
4095
  msgid "Australian Dollar (AUD)"
4096
  msgstr ""
4097
 
4098
+ #: core/class-settings.php:555
4099
  msgctxt "admin settings"
4100
  msgid "Brazilian Real (BRL)"
4101
  msgstr ""
4102
 
4103
+ #: core/class-settings.php:556
4104
  msgctxt "admin settings"
4105
  msgid "Canadian Dollar (CAD)"
4106
  msgstr ""
4107
 
4108
+ #: core/class-settings.php:557
4109
  msgctxt "admin settings"
4110
  msgid "Czech Koruna (CZK)"
4111
  msgstr ""
4112
 
4113
+ #: core/class-settings.php:558
4114
  msgctxt "admin settings"
4115
  msgid "Danish Krone (DKK)"
4116
  msgstr ""
4117
 
4118
+ #: core/class-settings.php:559
4119
  msgctxt "admin settings"
4120
  msgid "Euro (EUR)"
4121
  msgstr ""
4122
 
4123
+ #: core/class-settings.php:560
4124
  msgctxt "admin settings"
4125
  msgid "Hong Kong Dollar (HKD)"
4126
  msgstr ""
4127
 
4128
+ #: core/class-settings.php:561
4129
  msgctxt "admin settings"
4130
  msgid "Hungarian Forint (HUF)"
4131
  msgstr ""
4132
 
4133
+ #: core/class-settings.php:562
4134
  msgctxt "admin settings"
4135
  msgid "Israeli New Shequel (ILS)"
4136
  msgstr ""
4137
 
4138
+ #: core/class-settings.php:563
4139
  msgctxt "admin settings"
4140
  msgid "Japanese Yen (JPY)"
4141
  msgstr ""
4142
 
4143
+ #: core/class-settings.php:564
4144
  msgctxt "admin settings"
4145
  msgid "Malasian Ringgit (MYR)"
4146
  msgstr ""
4147
 
4148
+ #: core/class-settings.php:565
4149
  msgctxt "admin settings"
4150
  msgid "Mexican Peso (MXN)"
4151
  msgstr ""
4152
 
4153
+ #: core/class-settings.php:566
4154
  msgctxt "admin settings"
4155
  msgid "Norwegian Krone (NOK)"
4156
  msgstr ""
4157
 
4158
+ #: core/class-settings.php:567
4159
  msgctxt "admin settings"
4160
  msgid "New Zealand Dollar (NZD)"
4161
  msgstr ""
4162
 
4163
+ #: core/class-settings.php:568
4164
  msgctxt "admin settings"
4165
  msgid "Philippine Peso (PHP)"
4166
  msgstr ""
4167
 
4168
+ #: core/class-settings.php:569
4169
  msgctxt "admin settings"
4170
  msgid "Polish Zloty (PLN)"
4171
  msgstr ""
4172
 
4173
+ #: core/class-settings.php:570
4174
  msgctxt "admin settings"
4175
  msgid "Pound Sterling (GBP)"
4176
  msgstr ""
4177
 
4178
+ #: core/class-settings.php:571
4179
  msgctxt "admin settings"
4180
  msgid "Singapore Dollar (SGD)"
4181
  msgstr ""
4182
 
4183
+ #: core/class-settings.php:572
4184
  msgctxt "admin settings"
4185
  msgid "Swedish Krona (SEK)"
4186
  msgstr ""
4187
 
4188
+ #: core/class-settings.php:573
4189
  msgctxt "admin settings"
4190
  msgid "Swiss Franc (CHF)"
4191
  msgstr ""
4192
 
4193
+ #: core/class-settings.php:574
4194
  msgctxt "admin settings"
4195
  msgid "Taiwan Dollar (TWD)"
4196
  msgstr ""
4197
 
4198
+ #: core/class-settings.php:575
4199
  msgctxt "admin settings"
4200
  msgid "Thai Baht (THB)"
4201
  msgstr ""
4202
 
4203
+ #: core/class-settings.php:576
4204
  msgctxt "admin settings"
4205
  msgid "Turkish Lira (TRY)"
4206
  msgstr ""
4207
 
4208
+ #: core/class-settings.php:577
4209
  msgctxt "admin settings"
4210
  msgid "U.S. Dollar (USD)"
4211
  msgstr ""
4212
 
4213
+ #: core/class-settings.php:581
4214
  msgctxt "admin settings"
4215
  msgid "Currency Symbol"
4216
  msgstr ""
4217
 
4218
+ #: core/class-settings.php:586
4219
  msgctxt "admin settings"
4220
  msgid "Currency symbol display"
4221
  msgstr ""
4222
 
4223
+ #: core/class-settings.php:590
4224
  msgctxt "admin settings"
4225
  msgid "Show currency symbol on the left"
4226
  msgstr ""
4227
 
4228
+ #: core/class-settings.php:591
4229
  msgctxt "admin settings"
4230
  msgid "Show currency symbol on the right"
4231
  msgstr ""
4232
 
4233
+ #: core/class-settings.php:592
4234
  msgctxt "admin settings"
4235
  msgid "Do not show currency symbol"
4236
  msgstr ""
4237
 
4238
+ #: core/class-settings.php:594
4239
  msgctxt "admin settings"
4240
  msgid "Thank you for payment message"
4241
  msgstr ""
4242
 
4243
+ #: core/class-settings.php:595
4244
  msgctxt "admin settings"
4245
  msgid ""
4246
  "Thank you for your payment. Your payment is being verified and your listing "
4247
  "reviewed. The verification and review process could take up to 48 hours."
4248
  msgstr ""
4249
 
4250
+ #: core/class-settings.php:600
4251
  msgctxt "admin settings"
4252
  msgid "Ask users to come back for abandoned payments?"
4253
  msgstr ""
4254
 
4255
+ #: core/class-settings.php:603
4256
  msgctxt "admin settings"
4257
  msgid ""
4258
  "An abandoned payment is when a user attempts to place a listing and gets to "
4261
  "the transaction. BD can remind them to come back and continue."
4262
  msgstr ""
4263
 
4264
+ #: core/class-settings.php:609
4265
  msgctxt "admin settings"
4266
  msgid "Listing abandonment threshold (hours)"
4267
  msgstr ""
4268
 
4269
+ #: core/class-settings.php:614
4270
  msgctxt "admin settings"
4271
  msgid ""
4272
  "Listings with pending payments are marked as abandoned after this time. You "
4273
  "can also <a>customize the e-mail</a> users receive."
4274
  msgstr ""
4275
 
4276
+ #: core/class-settings.php:619
4277
  msgctxt "admin settings"
4278
  msgid "Themes"
4279
  msgstr ""
4280
 
4281
+ #: core/class-settings.php:621
4282
  msgctxt "admin settings"
4283
  msgid "You can manage your themes on <a>Directory Themes</a>."
4284
  msgstr ""
4285
 
4286
+ #: core/class-settings.php:626
4287
  msgctxt "admin settings"
4288
  msgid "Theme button style"
4289
  msgstr ""
4290
 
4291
+ #: core/class-settings.php:630
4292
  msgctxt "admin settings"
4293
  msgid "Use the BD theme style for BD buttons"
4294
  msgstr ""
4295
 
4296
+ #: core/class-settings.php:631
4297
  msgctxt "admin settings"
4298
  msgid "Use the WP theme style for BD buttons"
4299
  msgstr ""
4300
 
4301
+ #: core/class-settings.php:638
4302
  msgctxt "admin settings"
4303
  msgid "Image"
4304
  msgstr ""
4305
 
4306
+ #: core/class-settings.php:639
4307
  msgctxt "admin settings"
4308
  msgid ""
4309
  "Any changes to these settings will affect new listings only. Existing "
4312
  "here."
4313
  msgstr ""
4314
 
4315
+ #: core/class-settings.php:640
4316
  msgctxt "admin settings"
4317
  msgid "Image Settings"
4318
  msgstr ""
4319
 
4320
+ #: core/class-settings.php:641
4321
  msgctxt "admin settings"
4322
  msgid "Allow images?"
4323
  msgstr ""
4324
 
4325
+ #: core/class-settings.php:643
4326
  msgctxt "admin settings"
4327
  msgid "Min Image File Size (KB)"
4328
  msgstr ""
4329
 
4330
+ #: core/class-settings.php:644
4331
  msgctxt "admin settings"
4332
  msgid "Max Image File Size (KB)"
4333
  msgstr ""
4334
 
4335
+ #: core/class-settings.php:646
4336
  msgctxt "admin settings"
4337
  msgid "Min image width (px)"
4338
  msgstr ""
4339
 
4340
+ #: core/class-settings.php:647
4341
  msgctxt "admin settings"
4342
  msgid "Min image height (px)"
4343
  msgstr ""
4344
 
4345
+ #: core/class-settings.php:649
4346
  msgctxt "admin settings"
4347
  msgid "Max image width (px)"
4348
  msgstr ""
4349
 
4350
+ #: core/class-settings.php:650
4351
  msgctxt "admin settings"
4352
  msgid "Max image height (px)"
4353
  msgstr ""
4354
 
4355
+ #: core/class-settings.php:652
4356
  msgctxt "admin settings"
4357
  msgid "Turn on thickbox/lightbox?"
4358
  msgstr ""
4359
 
4360
+ #: core/class-settings.php:652
4361
  msgctxt "admin settings"
4362
  msgid ""
4363
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4364
  msgstr ""
4365
 
4366
+ #: core/class-settings.php:654
4367
  msgctxt "admin settings"
4368
  msgid "Thumbnails"
4369
  msgstr ""
4370
 
4371
+ #: core/class-settings.php:655
4372
  msgctxt "admin settings"
4373
  msgid "Thumbnail width (px)"
4374
  msgstr ""
4375
 
4376
+ #: core/class-settings.php:656
4377
  msgctxt "admin settings"
4378
  msgid "Thumbnail height (px)"
4379
  msgstr ""
4380
 
4381
+ #: core/class-settings.php:659
4382
  msgctxt "admin settings"
4383
  msgid "Crop thumbnails to exact dimensions?"
4384
  msgstr ""
4385
 
4386
+ #: core/class-settings.php:662
4387
  msgctxt "admin settings"
4388
  msgid ""
4389
  "When enabled images will match exactly the dimensions above but part of the "
4392
  "Depending on the uploaded images, thumbnails may have different heights."
4393
  msgstr ""
4394
 
4395
+ #: core/class-settings.php:668
4396
  msgctxt "admin settings"
4397
  msgid "Number of free images"
4398
  msgstr ""
4399
 
4400
+ #: core/class-settings.php:673
4401
  msgctxt "admin settings"
4402
  msgid ""
4403
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4404
  "a> instead of this setting, which is ignored for paid listings."
4405
  msgstr ""
4406
 
4407
+ #: core/class-settings.php:676
4408
  msgctxt "admin settings"
4409
  msgid "Use default picture for listings with no picture?"
4410
  msgstr ""
4411
 
4412
+ #: core/class-settings.php:677
4413
  msgctxt "admin settings"
4414
  msgid "Show Thumbnail on main listings page?"
4415
  msgstr ""
4416
 
4417
+ #: core/class-settings.php:706
4418
  msgctxt "admin settings"
4419
  msgid "User"
4420
  msgstr ""
4421
 
4422
+ #: core/class-settings.php:707
4423
  msgctxt "admin settings"
4424
  msgid "User registration date"
4425
  msgstr ""
4426
 
4427
+ #: core/class-settings.php:733
4428
  msgctxt "admin settings"
4429
  msgid ""
4430
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4431
  "not activated."
4432
  msgstr ""
4433
 
4434
+ #: core/class-settings.php:741
4435
  msgctxt "admin settings"
4436
  msgid ""
4437
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4438
  "be created."
4439
  msgstr ""
4440
 
4441
+ #: core/class-settings.php:750
4442
  msgctxt "admin settings"
4443
  msgid ""
4444
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4445
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4446
  msgstr ""
4447
 
4448
+ #: core/class-settings.php:1070
4449
  msgctxt "settings"
4450
  msgid "Deactivate License"
4451
  msgstr ""
4452
 
4453
+ #: core/class-settings.php:1072
4454
  msgctxt "settings"
4455
  msgid "Deactivating license..."
4456
  msgstr ""
4457
 
4458
+ #: core/class-settings.php:1075
4459
  msgctxt "settings"
4460
  msgid "Activate License"
4461
  msgstr ""
4462
 
4463
+ #: core/class-settings.php:1077
4464
  msgctxt "settings"
4465
  msgid "Activating license..."
4466
  msgstr ""
4467
 
4468
+ #: core/class-settings.php:1100
4469
  msgctxt "admin settings"
4470
  msgid "Valid placeholders: %s"
4471
  msgstr ""
4472
 
4473
+ #: core/class-settings.php:1134
4474
  msgctxt "settings email"
4475
  msgid "Click to edit e-mail"
4476
  msgstr ""
4477
 
4478
+ #: core/class-settings.php:1135
4479
  msgctxt "settings email"
4480
  msgid "Click to edit"
4481
  msgstr ""
4482
 
4483
+ #: core/class-settings.php:1148
4484
  msgctxt "settings email"
4485
  msgid "E-Mail Subject"
4486
  msgstr ""
4487
 
4488
+ #: core/class-settings.php:1159
4489
  msgctxt "settings email"
4490
  msgid "E-Mail Body"
4491
  msgstr ""
4492
 
4493
+ #: core/class-settings.php:1170
4494
  msgctxt "settings email"
4495
  msgid "You can use the following placeholders:"
4496
  msgstr ""
4497
 
4498
+ #: core/class-settings.php:1193
4499
  msgctxt "settings email"
4500
  msgid "Preview e-mail"
4501
  msgstr ""
4502
 
4503
+ #: core/class-settings.php:1194
4504
  msgctxt "settings email"
4505
  msgid "Cancel"
4506
  msgstr ""
4507
 
4508
+ #: core/class-settings.php:1195
4509
  msgctxt "settings email"
4510
  msgid "Save Changes"
4511
  msgstr ""
4512
 
4513
+ #: core/class-settings.php:1214
4514
  msgctxt "settings email"
4515
  msgid "Site title"
4516
  msgstr ""
4517
 
4518
+ #: core/class-settings.php:1217
4519
  msgctxt "settings email"
4520
  msgid "Site title (with link)"
4521
  msgstr ""
4522
 
4523
+ #: core/class-settings.php:1220
4524
  msgctxt "settings email"
4525
  msgid "Site address (with link)"
4526
  msgstr ""
4527
 
4528
+ #: core/class-settings.php:1223
4529
  msgctxt "settings email"
4530
  msgid "Directory URL (with link)"
4531
  msgstr ""
4532
 
4533
+ #: core/class-settings.php:1226
4534
  msgctxt "settings email"
4535
  msgid "Current date"
4536
  msgstr ""
4537
 
4538
+ #: core/class-settings.php:1229
4539
  msgctxt "settings email"
4540
  msgid "Current time"
4541
  msgstr ""
6316
  msgid "Upgrade listing to %s for %s."
6317
  msgstr ""
6318
 
6319
+ #: templates/main-box.tpl.php:13
6320
+ msgctxt "main box"
6321
+ msgid "Find listings for <keywords>"
6322
+ msgstr ""
6323
+
6324
+ #: templates/main-box.tpl.php:19
6325
  msgctxt "main box"
6326
  msgid "Find Listings"
6327
  msgstr ""
6328
 
6329
+ #: templates/main-box.tpl.php:20
6330
  msgctxt "main box"
6331
  msgid "Advanced Search"
6332
  msgstr ""
languages/WPBDM-es_ES.mo CHANGED
Binary file
languages/WPBDM-es_ES.po CHANGED
@@ -4,15 +4,15 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 4.0.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-08-24 22:42:45+00:00\n"
8
- "PO-Revision-Date: 2016-06-14 15:52-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language: es_ES\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.8.5\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-Bookmarks: -1,-1,-1,-1,-1,-1,-1,-1,-1,543\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -29,6 +29,9 @@ msgid ""
29
  "its respective fee) is required in order to determine the features available "
30
  "to this listing, as well as handling renewals."
31
  msgstr ""
 
 
 
32
 
33
  #: admin/class-admin-listings.php:138
34
  msgid "Listing Information"
@@ -121,7 +124,16 @@ msgctxt "admin actions"
121
  msgid "Renew Listing"
122
  msgstr "Renovar Listado"
123
 
124
- #: admin/class-admin.php:124
 
 
 
 
 
 
 
 
 
125
  msgctxt "drip pointer"
126
  msgid ""
127
  "Find out how to create a compelling, thriving business directory from "
@@ -132,141 +144,140 @@ msgstr ""
132
  "cero en este curso GRATUITO por e-mail de 5 partes. Obtenga un módulo "
133
  "premium GRATIS solo por inscribirse."
134
 
135
- #: admin/class-admin.php:126
136
  msgctxt "drip pointer"
137
  msgid "Email Address:"
138
  msgstr "Correo electrónico:"
139
 
140
- #: admin/class-admin.php:132
141
  msgctxt "drip pointer"
142
  msgid "Want to know the Secrets of Building an Awesome Business Directory?"
143
  msgstr ""
144
  "Quiere conocer los secretos para crear un Directorio de Negocios "
145
  "impresionante?"
146
 
147
- #: admin/class-admin.php:134
148
  msgctxt "drip pointer"
149
  msgid "Yes, please!"
150
  msgstr "Sí, por favor!"
151
 
152
- #: admin/class-admin.php:136
153
  msgctxt "drip pointer"
154
  msgid "No, thanks"
155
  msgstr "No, gracias"
156
 
157
- #: admin/class-admin.php:153
158
  msgctxt "admin"
159
  msgid "Business Directory"
160
  msgstr "Directorio de Negocios"
161
 
162
- #: admin/class-admin.php:164
163
  msgctxt "admin"
164
  msgid "You're all set. Visit your new <a>Business Directory</a> page."
165
  msgstr ""
166
  "Está todo listo. Visite la página de su nuevo <a>Directorio de Negocios</a>."
167
 
168
- #: admin/class-admin.php:185
169
  msgctxt "drip pointer"
170
  msgid "Invalid e-mail address."
171
  msgstr "Dirección de correo-e inválida."
172
 
173
- #: admin/class-admin.php:219
174
  msgctxt "admin menu"
175
  msgid "Business Directory Admin"
176
  msgstr "Gestión de Directorio de Negocios"
177
 
178
- #: admin/class-admin.php:220
179
- #, fuzzy
180
  msgctxt "admin menu"
181
  msgid "Dir. Admin"
182
- msgstr "Gestión de Directorio"
183
 
184
- #: admin/class-admin.php:220
185
  msgctxt "admin menu"
186
  msgid "Directory Admin"
187
  msgstr "Gestión de Directorio"
188
 
189
- #: admin/class-admin.php:226 admin/class-admin.php:227
190
  msgctxt "admin menu"
191
  msgid "Add New Listing"
192
  msgstr "Agregar Nuevo Listado"
193
 
194
- #: admin/class-admin.php:232 admin/class-admin.php:233
195
  msgctxt "admin menu"
196
  msgid "Manage Options"
197
  msgstr "Configuraciones"
198
 
199
- #: admin/class-admin.php:238 admin/class-admin.php:239
200
  msgctxt "admin menu"
201
  msgid "Manage Fees"
202
  msgstr "Administrar Comisiones"
203
 
204
- #: admin/class-admin.php:244 admin/class-admin.php:245
205
  msgctxt "admin menu"
206
  msgid "Manage Form Fields"
207
  msgstr "Administrar Campos de Formulario"
208
 
209
- #: admin/class-admin.php:250 admin/class-admin.php:251
210
  msgctxt "admin menu"
211
  msgid "Listings"
212
  msgstr "Listados"
213
 
214
- #: admin/class-admin.php:265 admin/class-admin.php:266
215
  msgctxt "admin menu"
216
  msgid "CSV Import"
217
  msgstr "Importar CSV"
218
 
219
- #: admin/class-admin.php:271 admin/class-admin.php:272
220
  msgctxt "admin menu"
221
  msgid "CSV Export"
222
  msgstr "Exportar CSV"
223
 
224
- #: admin/class-admin.php:277 admin/class-admin.php:278
225
  msgctxt "admin menu"
226
  msgid "Debug"
227
  msgstr "Depuración"
228
 
229
- #: admin/class-admin.php:287
230
  msgctxt "admin menu"
231
  msgid "Main Menu"
232
  msgstr "Menú Principal"
233
 
234
- #: admin/class-admin.php:298
235
  msgctxt "admin menu"
236
  msgid "Uninstall Business Directory Plugin"
237
  msgstr "Desinstalar Business Directory Plugin"
238
 
239
- #: admin/class-admin.php:299
240
  msgctxt "admin menu"
241
  msgid "Uninstall"
242
  msgstr "Desinstalar"
243
 
244
- #: admin/class-admin.php:413
245
  #: admin/templates/listing-metabox-categories.tpl.php:69
246
  msgctxt "admin infometabox"
247
  msgid "never"
248
  msgstr "nunca"
249
 
250
- #: admin/class-admin.php:507
251
  msgctxt "admin"
252
  msgid "Dismiss this notice."
253
- msgstr ""
254
 
255
- #: admin/class-admin.php:535
256
  msgctxt "admin"
257
  msgid "The listing has been published."
258
  msgid_plural "The listings have been published."
259
  msgstr[0] "El listado ha sido publicado."
260
  msgstr[1] "Los listados han sido publicados."
261
 
262
- #: admin/class-admin.php:553
263
  msgctxt "admin"
264
  msgid "The listing status has been set as paid."
265
  msgid_plural "The listings status has been set as paid."
266
  msgstr[0] "El listado se ha marcado como pagado."
267
  msgstr[1] "Los listados se han marcado como pagados."
268
 
269
- #: admin/class-admin.php:559
270
  msgctxt "admin"
271
  msgid ""
272
  "Only invoices containing non-recurring items were marked as paid. Please "
@@ -276,75 +287,85 @@ msgid_plural ""
276
  "Only invoices containing non-recurring items were marked as paid. Recurring "
277
  "payments have to be managed through the gateway."
278
  msgstr[0] ""
 
 
 
 
279
  msgstr[1] ""
 
 
 
280
 
281
- #: admin/class-admin.php:578
282
  msgctxt "admin"
283
  msgid "The listing has been modified."
284
  msgid_plural "The listings have been modified."
285
  msgstr[0] "El listado ha sido modificado."
286
  msgstr[1] "Los listados han sido modificados."
287
 
288
- #: admin/class-admin.php:591
289
  msgctxt "admin"
290
  msgid "The listing has been upgraded."
291
  msgid_plural "The listings have been upgraded."
292
  msgstr[0] "El listado ha sido mejorado."
293
  msgstr[1] "Los listados han sido mejorados."
294
 
295
- #: admin/class-admin.php:603
296
  msgctxt "admin"
297
  msgid "The listing has been downgraded."
298
  msgid_plural "The listings have been downgraded."
299
  msgstr[0] "El listado ha sido degradado."
300
  msgstr[1] "Los listados han sido degradados."
301
 
302
- #: admin/class-admin.php:614
303
  msgctxt "admin payments"
304
  msgid ""
305
  "The payment status was not changed. Recurring payments can't be manually "
306
  "approved. Please check your gateway's backend to see if the payment really "
307
  "went through."
308
  msgstr ""
 
 
 
309
 
310
- #: admin/class-admin.php:619
311
  msgctxt "admin"
312
  msgid "The transaction has been approved."
313
  msgstr "La transacción ha sido aprobada."
314
 
315
- #: admin/class-admin.php:629
316
  msgctxt "admin"
317
  msgid "The transaction has been rejected."
318
  msgstr "La transacción ha sido rechazada."
319
 
320
- #: admin/class-admin.php:635
321
  msgctxt "admin"
322
  msgid "The fee was successfully assigned."
323
  msgstr "La comisión se asignó satisfactoriamente."
324
 
325
- #: admin/class-admin.php:644
326
  msgctxt "admin"
327
  msgid "Listing was renewed."
328
  msgid_plural "Listings were renewed."
329
  msgstr[0] "El listado ha sido renovado."
330
  msgstr[1] "Los listados fueron renovados."
331
 
332
- #: admin/class-admin.php:651
333
  msgctxt "admin"
334
  msgid "Renewal email sent."
335
  msgstr "Mensaje de correo electrónico de renovación enviado."
336
 
337
- #: admin/class-admin.php:685
338
  msgctxt "admin category id"
339
  msgid "ID"
340
  msgstr "ID"
341
 
342
- #: admin/class-admin.php:687 admin/class-admin.php:693
343
  msgctxt "admin"
344
  msgid "Listing Count"
345
  msgstr "Conteo de Listados"
346
 
347
- #: admin/class-admin.php:802
348
  msgctxt "admin"
349
  msgid ""
350
  "<b>Business Directory Plugin</b> requires fields with the following "
@@ -353,7 +374,7 @@ msgstr ""
353
  "<b>Business Directory Plugin</b> requiere campos con las siguientes "
354
  "asociaciones para funcionar correctamente: <b>%s</b>."
355
 
356
- #: admin/class-admin.php:804
357
  msgctxt "admin"
358
  msgid ""
359
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
@@ -362,7 +383,7 @@ msgstr ""
362
  "<b>Business Directory Plugin</b> requiere un campo con la asociación <b>%s</"
363
  "b> para funcionar correctamente."
364
 
365
- #: admin/class-admin.php:808
366
  msgctxt "admin"
367
  msgid ""
368
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
@@ -371,17 +392,17 @@ msgstr ""
371
  "Puede crear estos campos usted mismo en \"Administrar Campos de Formulario\" "
372
  "o puede dejar que Business Directory haga esto por usted automáticamente."
373
 
374
- #: admin/class-admin.php:812
375
  msgctxt "admin"
376
  msgid "Go to \"Manage Form Fields\""
377
  msgstr "Ir a \"Administrar Campos de Formulario\""
378
 
379
- #: admin/class-admin.php:815
380
  msgctxt "admin"
381
  msgid "Create these required fields for me"
382
  msgstr "Crear estos campos requeridos por mi"
383
 
384
- #: admin/class-admin.php:824
385
  msgctxt "admin"
386
  msgid ""
387
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -390,7 +411,7 @@ msgstr ""
390
  "<b>Business Directory Plugin</b> requiere una página con el shortcode "
391
  "<tt>[businessdirectory]</tt> para funcionar adecuadamente."
392
 
393
- #: admin/class-admin.php:826
394
  msgctxt "admin"
395
  msgid ""
396
  "You can create this page by yourself or let Business Directory do this for "
@@ -399,27 +420,27 @@ msgstr ""
399
  "Puede crear esta página usted mismo o dejar que Business Directory lo haga "
400
  "por usted automáticamente."
401
 
402
- #: admin/class-admin.php:830
403
  msgctxt "admin"
404
  msgid "Create required pages for me"
405
  msgstr "Crear las páginas requeridas por mi"
406
 
407
- #: admin/class-admin.php:870
408
  msgctxt "admin compat"
409
  msgid "Installed: %s"
410
  msgstr "Instalado: %s"
411
 
412
- #: admin/class-admin.php:870
413
  msgctxt "admin compat"
414
  msgid "N/A"
415
  msgstr "N/A"
416
 
417
- #: admin/class-admin.php:873
418
  msgctxt "admin compat"
419
  msgid "Required: %s"
420
  msgstr "Requerido: %s"
421
 
422
- #: admin/class-admin.php:885
423
  msgctxt "admin compat"
424
  msgid ""
425
  "Business Directory has detected some incompatible premium module versions "
@@ -428,7 +449,7 @@ msgstr ""
428
  "Business Directory ha detectado algunas versiones incompatibles de módulos "
429
  "instaladas."
430
 
431
- #: admin/class-admin.php:887
432
  msgctxt "admin compat"
433
  msgid ""
434
  "Please upgrade to the required versions indicated below to make sure "
@@ -437,7 +458,7 @@ msgstr ""
437
  "Por favor actualice a las versiones requeridas indicadas abajo para "
438
  "asegurarse de que todo funcione correctamente."
439
 
440
- #: admin/class-admin.php:907
441
  msgctxt "admin"
442
  msgid ""
443
  "We noticed you want your Business Directory users to register before posting "
@@ -469,18 +490,20 @@ msgstr "No hay imágenes actualmente asociadas al listado."
469
  #: admin/class-themes-admin.php:47
470
  msgctxt "themes"
471
  msgid "Directory Themes"
472
- msgstr ""
473
 
474
  #: admin/class-themes-admin.php:48
475
  msgctxt "themes"
476
  msgid "Directory Themes %s"
477
- msgstr ""
478
 
479
  #: admin/class-themes-admin.php:94
480
  msgctxt "admin themes"
481
  msgid ""
482
  "Business Directory Plugin - Your template overrides need to be reviewed!"
483
  msgstr ""
 
 
484
 
485
  #: admin/class-themes-admin.php:96
486
  msgctxt "admin themes"
@@ -488,6 +511,9 @@ msgid ""
488
  "Starting with version 4.0, Business Directory is using a new theming system "
489
  "that is not compatible with the templates used in previous versions."
490
  msgstr ""
 
 
 
491
 
492
  #: admin/class-themes-admin.php:98
493
  msgctxt "admin themes"
@@ -496,6 +522,8 @@ msgid ""
496
  "should <a>review our documentation on customization</a> in order adjust your "
497
  "templates."
498
  msgstr ""
 
 
499
 
500
  #: admin/class-themes-admin.php:127
501
  msgctxt "admin themes"
@@ -503,16 +531,18 @@ msgid ""
503
  "You need to <a>activate your theme's license key</a> before you can activate "
504
  "the theme. <a>Click here</a> to do that."
505
  msgstr ""
 
 
506
 
507
  #: admin/class-themes-admin.php:155
508
  msgctxt "themes"
509
  msgid "Could not change the active theme to \"%s\"."
510
- msgstr ""
511
 
512
  #: admin/class-themes-admin.php:202
513
  msgctxt "themes"
514
  msgid "Active theme changed to \"%s\"."
515
- msgstr ""
516
 
517
  #: admin/class-themes-admin.php:205
518
  msgctxt "themes"
@@ -520,42 +550,44 @@ msgid ""
520
  "%s requires that you tag your existing fields to match some places we want "
521
  "to put your data on the theme. Below are fields we think are missing."
522
  msgstr ""
 
 
 
523
 
524
  #: admin/class-themes-admin.php:214
525
- #, fuzzy
526
  msgctxt "themes"
527
  msgid "Map My Fields"
528
- msgstr "Administrar Campos de Formulario"
529
 
530
  #: admin/class-themes-admin.php:221
531
  msgctxt "themes"
532
  msgid "Suggested fields created successfully."
533
- msgstr ""
534
 
535
  #: admin/class-themes-admin.php:224
536
  msgctxt "themes"
537
  msgid "Theme installed successfully."
538
- msgstr ""
539
 
540
  #: admin/class-themes-admin.php:227
541
  msgctxt "themes"
542
  msgid "Theme was deleted sucessfully."
543
- msgstr ""
544
 
545
  #: admin/class-themes-admin.php:230
546
  msgctxt "themes"
547
  msgid "Could not delete theme directory. Check permissions."
548
- msgstr ""
549
 
550
  #: admin/class-themes-admin.php:256
551
  msgctxt "themes"
552
  msgid "Please upload a valid theme file."
553
- msgstr ""
554
 
555
  #: admin/class-themes-admin.php:263
556
  msgctxt "themes"
557
  msgid "Could not move \"%s\" to a temporary directory."
558
- msgstr ""
559
 
560
  #: admin/class-themes-admin.php:364 admin/class-themes-admin.php:425
561
  #: core/licensing.php:127 core/licensing.php:159
@@ -582,7 +614,7 @@ msgstr "Licencia activada"
582
  #: admin/class-themes-admin.php:431
583
  msgctxt "licensing"
584
  msgid "Invalid response from server"
585
- msgstr ""
586
 
587
  #: admin/class-themes-admin.php:448 core/licensing.php:353
588
  msgctxt "licensing"
@@ -592,7 +624,7 @@ msgstr "Licencia desactivada"
592
  #: admin/class-themes-admin.php:464
593
  msgctxt "themes"
594
  msgid "Activate your <a>license key</a> to use this theme."
595
- msgstr ""
596
 
597
  #: admin/csv-export.php:136
598
  msgctxt "admin csv-export"
@@ -686,54 +718,48 @@ msgstr "comisiones"
686
  msgctxt "fees admin"
687
  msgid "There are no fees right now. You can <a>create one</a>, if you want."
688
  msgstr ""
 
689
 
690
  #: admin/fees.php:25 admin/fees.php:260
691
- #, fuzzy
692
  msgctxt "fees admin"
693
  msgid "Active"
694
- msgstr "Activos únicamente"
695
 
696
  #: admin/fees.php:28 admin/fees.php:258
697
- #, fuzzy
698
  msgctxt "fees admin"
699
  msgid "Not Available"
700
- msgstr "Casillas de imagen disponibles:"
701
 
702
  #: admin/fees.php:31 admin/fees.php:255
703
- #, fuzzy
704
  msgctxt "fees admin"
705
  msgid "Disabled"
706
- msgstr "Desactivar Comisión"
707
 
708
  #: admin/fees.php:39
709
  msgctxt "fees admin"
710
  msgid ""
711
  "There are no \"%s\" fees right now. You can <a>create one</a>, if you want."
712
- msgstr ""
713
 
714
  #: admin/fees.php:56
715
- #, fuzzy
716
  msgctxt "admin fees table"
717
  msgid "All"
718
- msgstr "Todos"
719
 
720
  #: admin/fees.php:68
721
- #, fuzzy
722
  msgctxt "admin fees table"
723
  msgid "Active"
724
- msgstr "Activos únicamente"
725
 
726
  #: admin/fees.php:78
727
- #, fuzzy
728
  msgctxt "admin fees table"
729
  msgid "Not Available"
730
- msgstr "Casillas de imagen disponibles:"
731
 
732
  #: admin/fees.php:85
733
- #, fuzzy
734
  msgctxt "admin fees table"
735
  msgid "Disabled"
736
- msgstr "Desactivar Comisión"
737
 
738
  #: admin/fees.php:94
739
  msgctxt "fees admin"
@@ -756,13 +782,11 @@ msgid "Images"
756
  msgstr "No. de Imágenes"
757
 
758
  #: admin/fees.php:98
759
- #, fuzzy
760
  msgctxt "fees admin"
761
  msgid "Featured/Sticky"
762
- msgstr "Estado Destacado/Sticky"
763
 
764
  #: admin/fees.php:102
765
- #, fuzzy
766
  msgctxt "fees admin"
767
  msgid "Status"
768
  msgstr "Estado"
@@ -775,6 +799,10 @@ msgid ""
775
  "available when the directory is in Free mode. You can always create other "
776
  "fee plans, including ones for 0.00 (free) if you wish."
777
  msgstr ""
 
 
 
 
778
 
779
  #: admin/fees.php:187
780
  msgctxt "fees admin"
@@ -784,12 +812,12 @@ msgstr "Editar"
784
  #: admin/fees.php:197
785
  msgctxt "fees admin"
786
  msgid "Disable"
787
- msgstr ""
788
 
789
  #: admin/fees.php:201
790
  msgctxt "fees admin"
791
  msgid "Enable"
792
- msgstr ""
793
 
794
  #: admin/fees.php:205
795
  msgctxt "fees admin"
@@ -823,25 +851,22 @@ msgstr "Todas las categorías"
823
  #: admin/fees.php:250
824
  msgctxt "fees admin"
825
  msgid "Yes"
826
- msgstr ""
827
 
828
  #: admin/fees.php:250
829
- #, fuzzy
830
  msgctxt "fees admin"
831
  msgid "No"
832
- msgstr "Nov"
833
 
834
  #: admin/fees.php:285
835
- #, fuzzy
836
  msgctxt "fees admin"
837
  msgid "Fee enabled."
838
- msgstr "Comisión eliminada."
839
 
840
  #: admin/fees.php:293
841
- #, fuzzy
842
  msgctxt "fees admin"
843
  msgid "Fee disabled."
844
- msgstr "Comisión eliminada."
845
 
846
  #: admin/fees.php:318
847
  msgctxt "fees order"
@@ -997,79 +1022,77 @@ msgstr "Campos requeridos creados satisfactoriamente."
997
  #: admin/form-fields.php:285
998
  msgctxt "form-fields admin"
999
  msgid "Title"
1000
- msgstr ""
1001
 
1002
  #: admin/form-fields.php:286
1003
  msgctxt "form-fields admin"
1004
  msgid "Category"
1005
- msgstr ""
1006
 
1007
  #: admin/form-fields.php:287
1008
  msgctxt "form-fields admin"
1009
  msgid "Excerpt"
1010
- msgstr ""
1011
 
1012
  #: admin/form-fields.php:288
1013
  msgctxt "form-fields admin"
1014
  msgid "Content"
1015
- msgstr ""
1016
 
1017
  #: admin/form-fields.php:289
1018
  msgctxt "form-fields admin"
1019
  msgid "Tags"
1020
- msgstr ""
1021
 
1022
  #: admin/form-fields.php:290
1023
  msgctxt "form-fields admin"
1024
  msgid "Address"
1025
- msgstr ""
1026
 
1027
  #: admin/form-fields.php:291
1028
- #, fuzzy
1029
  msgctxt "form-fields admin"
1030
  msgid "City"
1031
- msgstr "Ciudad:"
1032
 
1033
  #: admin/form-fields.php:292
1034
- #, fuzzy
1035
  msgctxt "form-fields admin"
1036
  msgid "State"
1037
- msgstr "Estado:"
1038
 
1039
  #: admin/form-fields.php:293
1040
  msgctxt "form-fields admin"
1041
  msgid "ZIP Code"
1042
- msgstr ""
1043
 
1044
  #: admin/form-fields.php:294
1045
  msgctxt "form-fields admin"
1046
  msgid "FAX Number"
1047
- msgstr ""
1048
 
1049
  #: admin/form-fields.php:295
1050
  msgctxt "form-fields admin"
1051
  msgid "Phone Number"
1052
- msgstr ""
1053
 
1054
  #: admin/form-fields.php:296
1055
  msgctxt "form-fields admin"
1056
  msgid "Ratings Field"
1057
- msgstr ""
1058
 
1059
  #: admin/form-fields.php:297
1060
  msgctxt "form-fields admin"
1061
  msgid "Twitter"
1062
- msgstr ""
1063
 
1064
  #: admin/form-fields.php:298
1065
  msgctxt "form-fields admin"
1066
  msgid "Website"
1067
- msgstr ""
1068
 
1069
  #: admin/form-fields.php:319
1070
  msgctxt "form-fields admin"
1071
  msgid "Tags updated."
1072
- msgstr ""
1073
 
1074
  #: admin/listing-metabox.php:11
1075
  msgctxt "admin"
@@ -1094,7 +1117,7 @@ msgstr "Información General"
1094
  #: admin/listing-metabox.php:44
1095
  msgctxt "admin infometabox"
1096
  msgid "Access Key"
1097
- msgstr ""
1098
 
1099
  #: admin/listing-metabox.php:46
1100
  msgctxt "admin infometabox"
@@ -1153,7 +1176,7 @@ msgstr "Environment"
1153
  #: admin/page-debug.php:75
1154
  msgctxt "debug info"
1155
  msgid "Test SSL setup..."
1156
- msgstr ""
1157
 
1158
  #: admin/templates/csv-export.tpl.php:9
1159
  msgctxt "admin csv-export"
@@ -1392,119 +1415,114 @@ msgstr ""
1392
  "por favor revise que tenga suficiente espacio en disco y memoria disponible "
1393
  "para PHP. Revise los registros de su servidor para detalles."
1394
 
1395
- #: admin/templates/csv-import-progress.tpl.php:14
1396
- msgctxt "admin csv-import"
1397
- msgid "Last imported line from file:"
1398
- msgstr "Última línea importada del archivo:"
1399
-
1400
- #: admin/templates/csv-import-progress.tpl.php:18
1401
- #: admin/templates/csv-import-progress.tpl.php:25
1402
  msgctxt "admin csv-import"
1403
  msgid "← Return to CSV Import"
1404
  msgstr "← Regresar a \"Importar CSV\""
1405
 
1406
- #: admin/templates/csv-import-progress.tpl.php:23
1407
  msgctxt "admin csv-import"
1408
  msgid "Import Canceled"
1409
  msgstr "Importación Cancelada"
1410
 
1411
- #: admin/templates/csv-import-progress.tpl.php:24
1412
  msgctxt "admin csv-import"
1413
  msgid "The import has been canceled."
1414
  msgstr "La importación ha sido cancelada."
1415
 
1416
- #: admin/templates/csv-import-progress.tpl.php:31
1417
  msgid "Import Progress"
1418
  msgstr "Progreso de Importación"
1419
 
1420
- #: admin/templates/csv-import-progress.tpl.php:34
1421
  msgctxt "admin csv-import"
1422
  msgid "Files"
1423
  msgstr "Archivos"
1424
 
1425
- #: admin/templates/csv-import-progress.tpl.php:37
1426
  msgctxt "admin csv-import"
1427
  msgid "Rows in file"
1428
  msgstr "Filas en el archivo"
1429
 
1430
- #: admin/templates/csv-import-progress.tpl.php:40
1431
  msgctxt "admin csv-import"
1432
  msgid "Progress"
1433
  msgstr "Progreso"
1434
 
1435
- #: admin/templates/csv-import-progress.tpl.php:44
1436
  msgctxt "admin csv-import"
1437
  msgid "Import has not started. Click \"Start Import\" to begin."
1438
  msgstr ""
1439
  "La importación no ha comenzado. Haga clic en \"Iniciar Importación\" para "
1440
  "comenzar."
1441
 
1442
- #: admin/templates/csv-import-progress.tpl.php:45
1443
  msgctxt "admin csv-import"
1444
  msgid "Importing CSV file..."
1445
  msgstr "Importando archivo CSV..."
1446
 
1447
- #: admin/templates/csv-import-progress.tpl.php:51
1448
  msgctxt "admin csv-import"
1449
  msgid "Start Import"
1450
  msgstr "Iniciar Importación"
1451
 
1452
- #: admin/templates/csv-import-progress.tpl.php:52
1453
  msgctxt "admin csv-import"
1454
  msgid "Cancel Import"
1455
  msgstr "Cancelar Importación"
1456
 
1457
- #: admin/templates/csv-import-progress.tpl.php:59
1458
  msgctxt "admin csv-import"
1459
  msgid "Import finished"
1460
  msgstr "Importación terminada"
1461
 
1462
- #: admin/templates/csv-import-progress.tpl.php:62
1463
  msgctxt "admin csv-import"
1464
  msgid "Import was completed successfully."
1465
  msgstr "La importación se completó satisfactoriamente."
1466
 
1467
- #: admin/templates/csv-import-progress.tpl.php:66
1468
  msgctxt "admin csv-import"
1469
  msgid "Import was completed but some rows were rejected."
1470
  msgstr "La importación se completó con algunas filas rechazadas."
1471
 
1472
- #: admin/templates/csv-import-progress.tpl.php:69
1473
  msgctxt "admin csv-import"
1474
  msgid "Import Summary"
1475
  msgstr "Resumen de la Importación"
1476
 
1477
- #: admin/templates/csv-import-progress.tpl.php:71
1478
  msgctxt "admin csv-import"
1479
  msgid "Rows in file:"
1480
  msgstr "Filas en el archivo:"
1481
 
1482
- #: admin/templates/csv-import-progress.tpl.php:74
1483
  msgctxt "admin csv-import"
1484
  msgid "Imported rows:"
1485
  msgstr "Filas importadas:"
1486
 
1487
- #: admin/templates/csv-import-progress.tpl.php:77
1488
  msgctxt "admin csv-import"
1489
  msgid "Rejected rows:"
1490
  msgstr "Filas rechazadas:"
1491
 
1492
- #: admin/templates/csv-import-progress.tpl.php:82
1493
  msgctxt "admin csv-import"
1494
  msgid "Import Warnings"
1495
  msgstr "Errores de Importación"
1496
 
1497
- #: admin/templates/csv-import-progress.tpl.php:85
1498
  msgctxt "admin csv-import"
1499
  msgid "Line #"
1500
  msgstr "Línea #"
1501
 
1502
- #: admin/templates/csv-import-progress.tpl.php:86
1503
  msgctxt "admin csv-import"
1504
  msgid "Line"
1505
  msgstr "Línea"
1506
 
1507
- #: admin/templates/csv-import-progress.tpl.php:87
1508
  msgctxt "admin csv-import"
1509
  msgid "Warning"
1510
  msgstr "Advertencia"
@@ -1630,20 +1648,18 @@ msgid "Assign listings to a user."
1630
  msgstr "Asignar listados a un usuario."
1631
 
1632
  #: admin/templates/csv-import.tpl.php:193
1633
- #, fuzzy
1634
  msgctxt "admin csv-import"
1635
  msgid "Use a default user for listings?"
1636
- msgstr "Utilizar imagen por defecto en listados sin imagen?"
1637
 
1638
  #: admin/templates/csv-import.tpl.php:199
1639
- #, fuzzy
1640
  msgctxt "admin csv-import"
1641
  msgid ""
1642
  "Select a default user to be used if the username column is not present in "
1643
  "the CSV file."
1644
  msgstr ""
1645
- "Este usuario será utilizado si la columna \"username\" no está presente en "
1646
- "el archivo CSV."
1647
 
1648
  #: admin/templates/csv-import.tpl.php:204
1649
  msgctxt "admin csv-import"
@@ -1815,10 +1831,9 @@ msgid "Number of images allowed"
1815
  msgstr "Número de imágenes permitidas"
1816
 
1817
  #: admin/templates/fees-addoredit.tpl.php:94
1818
- #, fuzzy
1819
  msgctxt "fees admin"
1820
  msgid "Is featured listing/sticky?"
1821
- msgstr "Listados Destacados"
1822
 
1823
  #: admin/templates/fees-addoredit.tpl.php:102
1824
  msgctxt "fees admin"
@@ -1826,6 +1841,8 @@ msgid ""
1826
  "This floats the listing to the top of search results and browsing the "
1827
  "directory when the user buys this plan."
1828
  msgstr ""
 
 
1829
 
1830
  #: admin/templates/fees-addoredit.tpl.php:107
1831
  msgctxt "fees admin"
@@ -1839,10 +1856,9 @@ msgid "* All Categories *"
1839
  msgstr "* Todas las Categorías *"
1840
 
1841
  #: admin/templates/fees-addoredit.tpl.php:128
1842
- #, fuzzy
1843
  msgctxt "fees admin"
1844
  msgid "Fee Description"
1845
- msgstr "Descripción del Campo"
1846
 
1847
  #: admin/templates/fees-addoredit.tpl.php:143
1848
  msgctxt "fees admin"
@@ -1926,17 +1942,19 @@ msgid ""
1926
  "the <a>Not Available</a> filter will become active when you change the "
1927
  "payment mode."
1928
  msgstr ""
 
 
 
 
1929
 
1930
  #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
1931
  #: admin/templates/fees.tpl.php:77
1932
- #, fuzzy
1933
  msgctxt "fees admin"
1934
  msgid "Paid"
1935
- msgstr "Pago"
1936
 
1937
  #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
1938
  #: admin/templates/fees.tpl.php:77
1939
- #, fuzzy
1940
  msgctxt "fees admin"
1941
  msgid "Free"
1942
  msgstr "Gratuito"
@@ -1948,6 +1966,9 @@ msgid ""
1948
  "\" mode. Those on the Active filter will become Not Available when you "
1949
  "change the payment mode."
1950
  msgstr ""
 
 
 
1951
 
1952
  #: admin/templates/fees.tpl.php:66
1953
  msgctxt "fees admin"
@@ -1955,6 +1976,8 @@ msgid ""
1955
  "These fee plans were disabled by the admin and will not show to the end user "
1956
  "regardless of mode until you enable them."
1957
  msgstr ""
 
 
1958
 
1959
  #: admin/templates/fees.tpl.php:74
1960
  msgctxt "fees admin"
@@ -1963,6 +1986,9 @@ msgid ""
1963
  "available for the current mode (currently set to \"%s\"). To see the fee "
1964
  "plans for this mode click <a>Active</a>."
1965
  msgstr ""
 
 
 
1966
 
1967
  #: admin/templates/fees.tpl.php:89 admin/templates/sidebar.tpl.php:13
1968
  msgctxt "admin sidebar"
@@ -2025,7 +2051,6 @@ msgstr "Asociación del Campo"
2025
  #: admin/templates/form-fields-addoredit.tpl.php:14
2026
  #: admin/templates/form-fields-addoredit.tpl.php:36
2027
  #: admin/templates/form-fields-addoredit.tpl.php:60
2028
- #, fuzzy
2029
  msgctxt "form-fields admin"
2030
  msgid "required"
2031
  msgstr "requerido"
@@ -2046,10 +2071,9 @@ msgid "Field description"
2046
  msgstr "Descripción del Campo"
2047
 
2048
  #: admin/templates/form-fields-addoredit.tpl.php:70
2049
- #, fuzzy
2050
  msgctxt "form-fields admin"
2051
  msgid "optional"
2052
- msgstr "Opcional"
2053
 
2054
  #: admin/templates/form-fields-addoredit.tpl.php:87
2055
  msgctxt "form-fields admin"
@@ -2154,12 +2178,12 @@ msgstr "Eliminar Campo"
2154
  #: admin/templates/form-fields-tags.tpl.php:5
2155
  msgctxt "form-fields admin"
2156
  msgid "-- None --"
2157
- msgstr ""
2158
 
2159
  #: admin/templates/form-fields-tags.tpl.php:14
2160
  msgctxt "form-fields admin"
2161
  msgid "Theme Tags"
2162
- msgstr ""
2163
 
2164
  #: admin/templates/form-fields-tags.tpl.php:19
2165
  msgctxt "form-fields admin"
@@ -2167,22 +2191,24 @@ msgid ""
2167
  "Before you create fields, make sure you've mapped all of your EXISTING ones "
2168
  "first, otherwise you'll appear to be \"missing data\" on your listings."
2169
  msgstr ""
 
 
 
2170
 
2171
  #: admin/templates/form-fields-tags.tpl.php:22
2172
- #, fuzzy
2173
  msgctxt "form-fields admin"
2174
  msgid "Create Missing Fields"
2175
- msgstr "Campos del Listado"
2176
 
2177
  #: admin/templates/form-fields-tags.tpl.php:30
2178
  msgctxt "form-fields admin"
2179
  msgid "Field Tag"
2180
- msgstr ""
2181
 
2182
  #: admin/templates/form-fields-tags.tpl.php:31
2183
  msgctxt "form-fields admin"
2184
  msgid "Field"
2185
- msgstr ""
2186
 
2187
  #: admin/templates/form-fields.tpl.php:3
2188
  msgctxt "form-fields admin"
@@ -2197,7 +2223,7 @@ msgstr "Previsualizar Formulario"
2197
  #: admin/templates/form-fields.tpl.php:6 admin/templates/themes.tpl.php:4
2198
  msgctxt "form-fields admin"
2199
  msgid "Manage Theme Tags"
2200
- msgstr ""
2201
 
2202
  #: admin/templates/form-fields.tpl.php:12
2203
  msgctxt "form-fields admin"
@@ -2217,7 +2243,7 @@ msgstr ""
2217
  "Por favor vea la <a>documentación de Campos de Formulario</a> para más "
2218
  "detalles."
2219
 
2220
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.1) #-#-#-#-#
2221
  #. Plugin Name of the plugin/theme
2222
  #: admin/templates/header.tpl.php:4
2223
  msgid "Business Directory Plugin"
@@ -2568,6 +2594,7 @@ msgstr ""
2568
  #: admin/templates/settings-reset.tpl.php:11
2569
  msgid "Please note that all of your existing settings will be lost."
2570
  msgstr ""
 
2571
 
2572
  #: admin/templates/settings-reset.tpl.php:17
2573
  msgid "Reset Defaults"
@@ -2627,10 +2654,9 @@ msgid "Google Maps Module"
2627
  msgstr "Google Maps Module"
2628
 
2629
  #: admin/templates/sidebar.tpl.php:18
2630
- #, fuzzy
2631
  msgctxt "admin sidebar"
2632
  msgid "Business Card Theme"
2633
- msgstr "Nombre del Negocio"
2634
 
2635
  #: admin/templates/sidebar.tpl.php:19
2636
  msgctxt "admin sidebar"
@@ -2643,16 +2669,14 @@ msgid "Restaurant Theme"
2643
  msgstr ""
2644
 
2645
  #: admin/templates/sidebar.tpl.php:21
2646
- #, fuzzy
2647
  msgctxt "admin sidebar"
2648
  msgid "Tabbed Business Theme"
2649
- msgstr "Nombre del Negocio"
2650
 
2651
  #: admin/templates/sidebar.tpl.php:22
2652
- #, fuzzy
2653
  msgctxt "admin sidebar"
2654
  msgid "Elegant Business Theme"
2655
- msgstr "Nombre del Negocio"
2656
 
2657
  #: admin/templates/sidebar.tpl.php:29
2658
  msgctxt "admin sidebar"
@@ -2688,7 +2712,7 @@ msgstr "Obtener un Módulo Premium"
2688
  #: admin/templates/sidebar.tpl.php:45 admin/templates/sidebar.tpl.php:61
2689
  msgctxt "admin sidebar"
2690
  msgid "best deal"
2691
- msgstr ""
2692
 
2693
  #: admin/templates/sidebar.tpl.php:45
2694
  msgctxt "admin sidebar"
@@ -2696,21 +2720,19 @@ msgid "Combo Pack"
2696
  msgstr ""
2697
 
2698
  #: admin/templates/sidebar.tpl.php:45
2699
- #, fuzzy
2700
  msgctxt "admin sidebar"
2701
  msgid "(All Modules)"
2702
- msgstr "Módulos Instalados"
2703
 
2704
  #: admin/templates/sidebar.tpl.php:48 admin/templates/sidebar.tpl.php:64
2705
  msgctxt "admin sidebar"
2706
  msgid "new"
2707
- msgstr ""
2708
 
2709
  #: admin/templates/sidebar.tpl.php:58
2710
- #, fuzzy
2711
  msgctxt "admin sidebar"
2712
  msgid "Get a Directory Theme"
2713
- msgstr "Directorio"
2714
 
2715
  #: admin/templates/sidebar.tpl.php:61
2716
  msgctxt "admin sidebar"
@@ -2720,7 +2742,7 @@ msgstr ""
2720
  #: admin/templates/sidebar.tpl.php:61
2721
  msgctxt "admin sidebar"
2722
  msgid "(All Themes)"
2723
- msgstr ""
2724
 
2725
  #: admin/templates/sidebar.tpl.php:74
2726
  msgctxt "admin sidebar"
@@ -2771,12 +2793,12 @@ msgstr "Enhanced Categories Module"
2771
  #: admin/templates/themes-delete-confirm.tpl.php:13
2772
  msgctxt "themes admin"
2773
  msgid "Delete Directory Theme"
2774
- msgstr ""
2775
 
2776
  #: admin/templates/themes-delete-confirm.tpl.php:3
2777
  msgctxt "themes admin"
2778
  msgid "Are you sure you want to delete the directory theme \"%s\"?"
2779
- msgstr ""
2780
 
2781
  #: admin/templates/themes-delete-confirm.tpl.php:12
2782
  msgctxt "themes admin"
@@ -2787,81 +2809,74 @@ msgstr "Cancelar"
2787
  #: admin/templates/themes-licenses.tpl.php:3 admin/templates/themes.tpl.php:3
2788
  msgctxt "themes"
2789
  msgid "Upload Directory Theme"
2790
- msgstr ""
2791
 
2792
  #: admin/templates/themes-install.tpl.php:8
2793
  msgctxt "themes"
2794
  msgid "This is a theme or skin from %s and is NOT a regular WordPress theme."
2795
- msgstr ""
2796
 
2797
  #: admin/templates/themes-install.tpl.php:21
2798
  msgctxt "themes"
2799
  msgid "BD Theme archive (ZIP file)"
2800
- msgstr ""
2801
 
2802
  #: admin/templates/themes-install.tpl.php:30
2803
  msgctxt "themes"
2804
  msgid "Begin Upload"
2805
- msgstr ""
2806
 
2807
  #: admin/templates/themes-item.tpl.php:3
2808
  msgctxt "themes"
2809
  msgid "Active:"
2810
- msgstr ""
2811
 
2812
  #: admin/templates/themes-item.tpl.php:17
2813
  msgctxt "themes"
2814
  msgid "Activate"
2815
- msgstr ""
2816
 
2817
  #: admin/templates/themes-item.tpl.php:35
2818
  msgctxt "themes"
2819
  msgid "Version:"
2820
- msgstr ""
2821
 
2822
  #: admin/templates/themes-item.tpl.php:38
2823
  msgctxt "themes"
2824
  msgid "Author:"
2825
- msgstr ""
2826
 
2827
  #: admin/templates/themes-licenses.tpl.php:24
2828
- #, fuzzy
2829
  msgctxt "themes"
2830
  msgid "Deactivate License"
2831
  msgstr "Desactivar Licencia"
2832
 
2833
  #: admin/templates/themes-licenses.tpl.php:27
2834
- #, fuzzy
2835
  msgctxt "themes"
2836
  msgid "Deactivating license..."
2837
- msgstr "Desactivando licencia..."
2838
 
2839
  #: admin/templates/themes-licenses.tpl.php:29
2840
- #, fuzzy
2841
  msgctxt "themes"
2842
  msgid "Activate License"
2843
  msgstr "Activar Licencia"
2844
 
2845
  #: admin/templates/themes-licenses.tpl.php:30
2846
- #, fuzzy
2847
  msgctxt "themes"
2848
  msgid "Activating license..."
2849
  msgstr "Activando licencia..."
2850
 
2851
  #: admin/templates/themes-tabs.tpl.php:6
2852
- #, fuzzy
2853
  msgctxt "admin themes"
2854
  msgid "Available Themes"
2855
- msgstr "Casillas de imagen disponibles:"
2856
 
2857
  #: admin/templates/themes-tabs.tpl.php:7
2858
- #, fuzzy
2859
  msgctxt "admin themes"
2860
  msgid "Licenses"
2861
  msgstr "Licencias"
2862
 
2863
  #: admin/templates/themes.tpl.php:5
2864
- #, fuzzy
2865
  msgctxt "themes"
2866
  msgid "Settings"
2867
  msgstr "Configuración"
@@ -2873,6 +2888,10 @@ msgid ""
2873
  "Directory Plugin</i> to change the look of the directory quickly and easily. "
2874
  "We have a number of them available for purchase <a>here</a>."
2875
  msgstr ""
 
 
 
 
2876
 
2877
  #: admin/templates/themes.tpl.php:16
2878
  msgctxt "themes"
@@ -2881,6 +2900,9 @@ msgid ""
2881
  "they are <strong>not</strong> a replacement for WP themes either. They will "
2882
  "change the look and feel of your business directory only."
2883
  msgstr ""
 
 
 
2884
 
2885
  #: admin/templates/transactions.tpl.php:2
2886
  msgctxt "admin transactions"
@@ -2990,57 +3012,65 @@ msgctxt "tracking"
2990
  msgid "Allow Tracking"
2991
  msgstr "Permitir Seguimiento"
2992
 
2993
- #: business-directory-plugin.php:660
2994
  msgctxt "admin plugins"
2995
  msgid "Settings"
2996
  msgstr "Configuración"
2997
 
2998
- #: business-directory-plugin.php:768 business-directory-plugin.php:775
2999
  msgctxt "rss feed"
3000
  msgid "%s Feed"
3001
  msgstr "Feed %s"
3002
 
3003
- #: business-directory-plugin.php:1113
3004
  msgctxt "title"
3005
  msgid "Submit A Listing"
3006
  msgstr "Enviar Un Listado"
3007
 
3008
- #: business-directory-plugin.php:1123
3009
  msgctxt "title"
3010
  msgid "Find a Listing"
3011
  msgstr "Encontrar un listado"
3012
 
3013
- #: business-directory-plugin.php:1133
3014
  msgctxt "title"
3015
  msgid "View All Listings"
3016
  msgstr "Ver Listados"
3017
 
3018
- #: business-directory-plugin.php:1153
3019
  msgctxt "title"
3020
  msgid "Listings tagged: %s"
3021
  msgstr "Listados etiquetados: %s"
3022
 
3023
- #: core/api.php:397
3024
- #, fuzzy
3025
  msgid "Free"
3026
  msgstr "Gratuito"
3027
 
3028
- #: core/class-csv-import.php:391
 
 
 
 
 
 
 
 
 
3029
  msgctxt "admin csv-import"
3030
  msgid "Could not create listing category \"%s\""
3031
  msgstr "No se pudo crear la categoría \"%s\""
3032
 
3033
- #: core/class-csv-import.php:535
3034
  msgctxt "admin csv-import"
3035
  msgid "Username \"%s\" does not exist"
3036
  msgstr "El usuario \"%s\" no existe"
3037
 
3038
- #: core/class-csv-import.php:567
3039
  msgctxt "admin csv-import"
3040
  msgid "Missing required field: %s"
3041
  msgstr "Falta campo requerido: %s"
3042
 
3043
- #: core/class-csv-import.php:587
3044
  msgctxt "admin csv-import"
3045
  msgid "Listing category \"%s\" does not exist"
3046
  msgstr "La categoría \"%s\" no existe"
@@ -3327,7 +3357,7 @@ msgstr "Utilizar reCAPTCHA para formularios de contacto"
3327
  #: core/class-settings.php:56
3328
  msgctxt "admin settings"
3329
  msgid "Turn off reCAPTCHA for logged in users?"
3330
- msgstr ""
3331
 
3332
  #: core/class-settings.php:57
3333
  msgctxt "admin settings"
@@ -3412,12 +3442,11 @@ msgid "Display and require user agreement to Terms and Conditions"
3412
  msgstr "Mostrar y requerir que el usuario acceda a los Términos y Condiciones"
3413
 
3414
  #: core/class-settings.php:106
3415
- #, fuzzy
3416
  msgctxt "admin settings"
3417
  msgid ""
3418
  "Terms and Conditions text goes here...\n"
3419
  "\n"
3420
- msgstr "Términos y Condiciones"
3421
 
3422
  #: core/class-settings.php:107
3423
  msgctxt "admin settings"
@@ -3437,7 +3466,7 @@ msgstr "Opciones de Visualización"
3437
  #: core/class-settings.php:112
3438
  msgctxt "admin settings"
3439
  msgid "Disable Frontend Listing Submission?"
3440
- msgstr ""
3441
 
3442
  #: core/class-settings.php:113
3443
  msgctxt "admin settings"
@@ -3460,10 +3489,9 @@ msgid "Show the \"Directory\" button."
3460
  msgstr "Mostrar el botón \"Directorio\"."
3461
 
3462
  #: core/class-settings.php:118
3463
- #, fuzzy
3464
  msgctxt "admin settings"
3465
  msgid "Disable advanced CPT integration?"
3466
- msgstr "Deshabilitar notificaciones de correo-e."
3467
 
3468
  #: core/class-settings.php:123
3469
  msgctxt "admin settings"
@@ -3562,13 +3590,13 @@ msgctxt "admin settings"
3562
  msgid "Enable AJAX compatibility mode?"
3563
  msgstr "Habilitar modo de compatibilidad AJAX?"
3564
 
3565
- #: core/class-settings.php:181 core/class-settings.php:660
3566
  msgctxt "admin settings"
3567
  msgid "Listings"
3568
  msgstr "Listados"
3569
 
3570
- #: core/class-settings.php:182 core/class-settings.php:330
3571
- #: core/class-settings.php:617
3572
  msgctxt "admin settings"
3573
  msgid "General Settings"
3574
  msgstr "Configuración General"
@@ -3617,15 +3645,20 @@ msgstr ""
3617
 
3618
  #: core/class-settings.php:200
3619
  msgctxt "admin settings"
 
 
 
 
 
3620
  msgid "Require login for using the contact form?"
3621
  msgstr "Requerir login para utilizar el formulario de contacto?"
3622
 
3623
- #: core/class-settings.php:206
3624
  msgctxt "admin settings"
3625
  msgid "Maximum number of contact form submits per day"
3626
  msgstr "Número máximo de contactos por día"
3627
 
3628
- #: core/class-settings.php:209
3629
  msgctxt "admin settings"
3630
  msgid ""
3631
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
@@ -3634,12 +3667,12 @@ msgstr ""
3634
  "Utilice esta opción para prevenir el SPAM a los dueños de los listados. 0 "
3635
  "significa ilimitados contactos por día."
3636
 
3637
- #: core/class-settings.php:215
3638
  msgctxt "admin settings"
3639
  msgid "Include comment form on listing pages?"
3640
  msgstr "Incluir formulario de comentarios en las páginas de los listados?"
3641
 
3642
- #: core/class-settings.php:218
3643
  msgctxt "admin settings"
3644
  msgid ""
3645
  "Allow visitors to discuss listings using the standard WordPress comment "
@@ -3649,61 +3682,64 @@ msgstr ""
3649
  "comentarios estándar de WordPress. Todos los comentarios (no SPAM) son "
3650
  "públicos."
3651
 
3652
- #: core/class-settings.php:219
3653
  msgctxt "admin settings"
3654
  msgid "Show listings under categories on main page?"
3655
  msgstr "Mostrar listados bajo las categorías en la página principal?"
3656
 
3657
- #: core/class-settings.php:220
3658
  msgctxt "admin settings"
3659
  msgid "Status of listings upon uninstalling plugin"
3660
  msgstr "Estado de los listados luego de desinstalado el plugin"
3661
 
3662
- #: core/class-settings.php:221 core/class-settings.php:223
3663
  msgctxt "post status"
3664
  msgid "Draft"
3665
- msgstr ""
3666
 
3667
- #: core/class-settings.php:221 core/class-settings.php:223
3668
  msgctxt "post status"
3669
  msgid "Trash"
3670
- msgstr ""
3671
 
3672
- #: core/class-settings.php:222
3673
  msgctxt "admin settings"
3674
  msgid "Status of deleted listings"
3675
  msgstr "Estado de los listados eliminados"
3676
 
3677
- #: core/class-settings.php:224
3678
- #, fuzzy
3679
  msgctxt "admin settings"
3680
  msgid "Submit Listing instructions message"
3681
- msgstr "Mensaje de contacto"
3682
 
3683
- #: core/class-settings.php:224
3684
  msgctxt "admin settings"
3685
  msgid ""
3686
  "This text is displayed at the first page of the Submit Listing process for "
3687
  "Business Directory. You can use it for instructions about filling out the "
3688
  "form or anything you want to tell users before they get started."
3689
  msgstr ""
 
 
 
 
3690
 
3691
- #: core/class-settings.php:226
3692
  msgctxt "admin settings"
3693
  msgid "Listing Renewal"
3694
  msgstr "Renovación de Listados"
3695
 
3696
- #: core/class-settings.php:227
3697
  msgctxt "admin settings"
3698
  msgid "Turn on listing renewal option?"
3699
  msgstr "Habilitar la renovación de listados?"
3700
 
3701
- #: core/class-settings.php:230
3702
  msgctxt "admin settings"
3703
  msgid "Allow recurring renewal payments?"
3704
  msgstr "Permitir pagos recurrentes?"
3705
 
3706
- #: core/class-settings.php:233
3707
  msgctxt "admin settings"
3708
  msgid ""
3709
  "Allow users to opt in for automatic renewal of their listings. The fee is "
@@ -3713,12 +3749,12 @@ msgstr ""
3713
  "comisión será cobrada en el momento en el que el listado llegue a su "
3714
  "vencimiento, sin necesidad de intervención."
3715
 
3716
- #: core/class-settings.php:237
3717
  msgctxt "admin settings"
3718
  msgid "Use recurring payments as the default payment method?"
3719
  msgstr "Utilizar cobro recurrente como método de pago por defecto?"
3720
 
3721
- #: core/class-settings.php:240
3722
  msgctxt "admin settings"
3723
  msgid ""
3724
  "Enable automatic renewal without having users opt in during the submit "
@@ -3727,12 +3763,12 @@ msgstr ""
3727
  "Habilitar la renovación automática sin que los usuarios deban optar por ella "
3728
  "durante el proceso de envío del listado."
3729
 
3730
- #: core/class-settings.php:245
3731
  msgctxt "admin settings"
3732
  msgid "Listing renewal e-mail threshold (in days)"
3733
  msgstr "Rango de envío del correo electrónico de renovación (en días)"
3734
 
3735
- #: core/class-settings.php:248
3736
  msgctxt "admin settings"
3737
  msgid ""
3738
  "Configure how many days before listing expiration is the renewal e-mail sent."
@@ -3740,7 +3776,7 @@ msgstr ""
3740
  "Configure con cuántos días de anticipación debe informarse al usuario que su "
3741
  "listado está a punto de expirar."
3742
 
3743
- #: core/class-settings.php:252
3744
  msgctxt "admin settings"
3745
  msgid ""
3746
  "Send expiration notices including a cancel links to auto-renewed listings?"
@@ -3748,18 +3784,18 @@ msgstr ""
3748
  "Enviar notificaciones de expiración incluyendo enlaces para cancelar a los "
3749
  "listados auto-renovados?"
3750
 
3751
- #: core/class-settings.php:259
3752
  msgctxt "admin settings"
3753
  msgid "Remind listing owners of expired listings (past due)?"
3754
  msgstr ""
3755
  "Recordar a los dueños de listados expirados (después de su expiración)?"
3756
 
3757
- #: core/class-settings.php:264
3758
  msgctxt "admin settings"
3759
  msgid "Listing renewal reminder e-mail threshold (in days)"
3760
  msgstr "Rango de envío del recordatorio de renovación (en días)"
3761
 
3762
- #: core/class-settings.php:267
3763
  msgctxt "admin settings"
3764
  msgid ""
3765
  "Configure how many days after the expiration of a listing an e-mail reminder "
@@ -3768,175 +3804,174 @@ msgstr ""
3768
  "Configure con cuántos días después de la fecha de expiración de un listado "
3769
  "debe enviarse un recordatorio al dueño."
3770
 
3771
- #: core/class-settings.php:270
3772
  msgctxt "admin settings"
3773
  msgid "Post/Category Settings"
3774
  msgstr "Configuraciones de publicaciones/categorías"
3775
 
3776
- #: core/class-settings.php:271
3777
  msgctxt "admin settings"
3778
  msgid "Default new post status"
3779
  msgstr "Estado por defecto de nuevas publicaciones"
3780
 
3781
- #: core/class-settings.php:272 core/class-settings.php:275
3782
  msgctxt "post status"
3783
  msgid "Published"
3784
- msgstr ""
3785
 
3786
- #: core/class-settings.php:272 core/class-settings.php:275
3787
- #, fuzzy
3788
  msgctxt "post status"
3789
  msgid "Pending"
3790
- msgstr "Pendientes"
3791
 
3792
- #: core/class-settings.php:274
3793
  msgctxt "admin settings"
3794
  msgid "Edit post status"
3795
  msgstr "Estado tras edición de una publicación"
3796
 
3797
- #: core/class-settings.php:276
3798
  msgctxt "admin settings"
3799
  msgid "Order categories list by"
3800
  msgstr "Ordenar la lista de categorías por"
3801
 
3802
- #: core/class-settings.php:278
3803
  msgctxt "admin settings"
3804
  msgid "Name"
3805
  msgstr "Nombre"
3806
 
3807
- #: core/class-settings.php:279
3808
  msgctxt "admin settings"
3809
  msgid "Slug"
3810
  msgstr "Slug"
3811
 
3812
- #: core/class-settings.php:280
3813
  msgctxt "admin settings"
3814
  msgid "Listing Count"
3815
  msgstr "Conteo de Listados"
3816
 
3817
- #: core/class-settings.php:282
3818
  msgctxt "admin settings"
3819
  msgid "Sort order for categories"
3820
  msgstr "Orden de las categorías"
3821
 
3822
- #: core/class-settings.php:283 core/class-settings.php:301
3823
  msgctxt "admin settings"
3824
  msgid "Ascending"
3825
  msgstr "Ascendente"
3826
 
3827
- #: core/class-settings.php:283 core/class-settings.php:301
3828
  msgctxt "admin settings"
3829
  msgid "Descending"
3830
  msgstr "Descendente"
3831
 
3832
- #: core/class-settings.php:284
3833
  msgctxt "admin settings"
3834
  msgid "Show category post count?"
3835
  msgstr "Mostrar conteo de listados para cada categoría?"
3836
 
3837
- #: core/class-settings.php:285
3838
  msgctxt "admin settings"
3839
  msgid "Hide empty categories?"
3840
  msgstr "Ocultar categorías vacías?"
3841
 
3842
- #: core/class-settings.php:286
3843
  msgctxt "admin settings"
3844
  msgid "Show only parent categories in category list?"
3845
  msgstr ""
3846
  "Mostrar únicamente las categorías de primer nivel en la lista de categorías?"
3847
 
3848
- #: core/class-settings.php:288
3849
  msgctxt "admin settings"
3850
  msgid "Listings Sorting"
3851
  msgstr "Ordenamiento de Listados"
3852
 
3853
- #: core/class-settings.php:289
3854
  msgctxt "admin settings"
3855
  msgid "Order directory listings by"
3856
  msgstr "Ordenar los listados del Directorio por"
3857
 
3858
- #: core/class-settings.php:291
3859
  msgctxt "admin settings"
3860
  msgid "Title"
3861
  msgstr "Título"
3862
 
3863
- #: core/class-settings.php:292
3864
  msgctxt "admin settings"
3865
  msgid "Author"
3866
  msgstr "Autor"
3867
 
3868
- #: core/class-settings.php:293 core/class-settings.php:703
3869
  msgctxt "admin settings"
3870
  msgid "Date posted"
3871
  msgstr "Fecha de publicación"
3872
 
3873
- #: core/class-settings.php:294 core/class-settings.php:704
3874
  msgctxt "admin settings"
3875
  msgid "Date last modified"
3876
  msgstr "Fecha de última modificación"
3877
 
3878
- #: core/class-settings.php:295
3879
  msgctxt "admin settings"
3880
  msgid "Random"
3881
  msgstr "Aleatorio"
3882
 
3883
- #: core/class-settings.php:296
3884
  msgctxt "admin settings"
3885
  msgid "Paid first then free. Inside each group by date."
3886
  msgstr "Pagos primero, luego gratuitos. Dentro de cada grupo, por fecha."
3887
 
3888
- #: core/class-settings.php:297
3889
  msgctxt "admin settings"
3890
  msgid "Paid first then free. Inside each group by title."
3891
  msgstr "Pagos primero, luego gratuitos. Dentro de cada grupo por título."
3892
 
3893
- #: core/class-settings.php:299
3894
  msgctxt "admin settings"
3895
  msgid "Sort directory listings by"
3896
  msgstr "Orden de los listados"
3897
 
3898
- #: core/class-settings.php:300
3899
  msgctxt "admin settings"
3900
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3901
  msgstr ""
3902
  "Ascendente para orden alfabético A-Z; Descendente para orden alfabético Z-A"
3903
 
3904
- #: core/class-settings.php:305
3905
  msgctxt "admin settings"
3906
  msgid "Enable sort bar?"
3907
  msgstr "Habilitar barra de ordenamiento?"
3908
 
3909
- #: core/class-settings.php:310
3910
  msgctxt "admin settings"
3911
  msgid "Sortbar Fields"
3912
  msgstr "Campos de \"barra de ordenamiento\""
3913
 
3914
- #: core/class-settings.php:319
3915
  msgctxt "admin settings"
3916
  msgid "Featured (Sticky) listing settings"
3917
  msgstr "Configuración de Listados Destacados"
3918
 
3919
- #: core/class-settings.php:320
3920
  msgctxt "admin settings"
3921
  msgid "Offer sticky listings?"
3922
  msgstr "Ofrecer listados destacados?"
3923
 
3924
- #: core/class-settings.php:321
3925
  msgctxt "admin settings"
3926
  msgid "Offer upgrades during submit process?"
3927
  msgstr "Ofrecer mejoras a destacado durante el proceso de envío?"
3928
 
3929
- #: core/class-settings.php:322
3930
  msgctxt "admin settings"
3931
  msgid "Sticky listing price"
3932
  msgstr "Precio de Listado Destacado"
3933
 
3934
- #: core/class-settings.php:323
3935
  msgctxt "admin settings"
3936
  msgid "Sticky listing page description text"
3937
  msgstr "Texto descriptivo para Listados Destacados"
3938
 
3939
- #: core/class-settings.php:324
3940
  msgctxt "admin settings"
3941
  msgid ""
3942
  "You can upgrade your listing to featured status. Featured listings will "
@@ -3945,17 +3980,17 @@ msgstr ""
3945
  "Puede actualizar su listado a Destacado. Los listados destacados aparecen "
3946
  "siempre encima de los listados regulares."
3947
 
3948
- #: core/class-settings.php:329
3949
  msgctxt "admin settings"
3950
  msgid "E-Mail"
3951
  msgstr "Correo Electrónico"
3952
 
3953
- #: core/class-settings.php:333
3954
  msgctxt "admin settings"
3955
  msgid "Display email address fields publicly?"
3956
  msgstr "Mostrar direcciones de correo electrónico públicamente?"
3957
 
3958
- #: core/class-settings.php:336
3959
  msgctxt "admin settings"
3960
  msgid ""
3961
  "Shows the email address of the listing owner to all web users. NOT "
@@ -3966,12 +4001,12 @@ msgstr ""
3966
  "a todos los usuarios. NO RECOMENDADO pues puede resultar en un aumento de "
3967
  "spam."
3968
 
3969
- #: core/class-settings.php:339
3970
  msgctxt "admin settings"
3971
  msgid "How to determine the listing's email address?"
3972
  msgstr "Cómo determinar el correo electrónico de un listado?"
3973
 
3974
- #: core/class-settings.php:342
3975
  msgctxt "admin settings"
3976
  msgid ""
3977
  "This affects emails sent to listing owners via contact forms or when their "
@@ -3980,125 +4015,127 @@ msgstr ""
3980
  "Esta configuración afecta cómo los dueños de los listados son contactados "
3981
  "cuando sus listados expiran o a través de los formularios de contacto."
3982
 
3983
- #: core/class-settings.php:344
3984
  msgctxt "admin settings"
3985
  msgid "Try listing's email field first, then author's email."
3986
- msgstr ""
3987
 
3988
- #: core/class-settings.php:345
3989
  msgctxt "admin settings"
3990
  msgid "Try author's email first and then listing's email field."
3991
  msgstr ""
 
 
3992
 
3993
- #: core/class-settings.php:349
3994
  msgctxt "admin settings"
3995
  msgid "E-Mail Notifications"
3996
  msgstr "Notificaciones de correo-e"
3997
 
3998
- #: core/class-settings.php:352
3999
  msgctxt "admin settings"
4000
  msgid "Notify admin via e-mail when..."
4001
  msgstr "Notificar al administrador cuando..."
4002
 
4003
- #: core/class-settings.php:356
4004
  msgctxt "admin settings"
4005
  msgid "A new listing is submitted."
4006
  msgstr "Un nuevo listado ha sido enviado."
4007
 
4008
- #: core/class-settings.php:357
4009
  msgctxt "admin settings"
4010
  msgid "A listing is edited."
4011
  msgstr "Un listado es editado."
4012
 
4013
- #: core/class-settings.php:358
4014
  msgctxt "admin settings"
4015
  msgid "A listing expires."
4016
  msgstr "Un listado expira."
4017
 
4018
- #: core/class-settings.php:359
4019
  msgctxt "admin settings"
4020
  msgid "A contact message is sent to a listing's owner."
4021
  msgstr "Un mensaje de contacto es enviado al dueño del listado."
4022
 
4023
- #: core/class-settings.php:365
4024
  msgctxt "admin settings"
4025
  msgid "CC this e-mail address too"
4026
  msgstr "Copiar a esta dirección de correo también"
4027
 
4028
- #: core/class-settings.php:371
4029
  msgctxt "admin settings"
4030
  msgid "Notify users via e-mail when..."
4031
  msgstr "Notificar usuarios vía correo-e cuando..."
4032
 
4033
- #: core/class-settings.php:374
4034
  msgctxt "admin settings"
4035
  msgid "You can modify the text template used for most of these e-mails below."
4036
  msgstr ""
4037
  "Puede modificar la plantilla de texto utilizada para la mayoría de estos "
4038
  "correos electrónicos abajo."
4039
 
4040
- #: core/class-settings.php:375
4041
  msgctxt "admin settings"
4042
  msgid "Their listing is submitted."
4043
  msgstr "Su listado ha sido recibido."
4044
 
4045
- #: core/class-settings.php:376
4046
  msgctxt "admin settings"
4047
  msgid "Their listing is approved/published."
4048
  msgstr "Su listado ha sido aprobado/publicado."
4049
 
4050
- #: core/class-settings.php:385
4051
  msgctxt "contact email"
4052
  msgid "You have received a reply from your listing at %s."
4053
  msgstr "Ha recibido una comunicación para su listado en %s."
4054
 
4055
- #: core/class-settings.php:386
4056
  msgctxt "contact email"
4057
  msgid "Name: %s"
4058
  msgstr "Nombre: %s"
4059
 
4060
- #: core/class-settings.php:387
4061
  msgctxt "contact email"
4062
  msgid "E-Mail: %s"
4063
  msgstr "Correo Electrónico: %s"
4064
 
4065
- #: core/class-settings.php:388
4066
  msgctxt "contact email"
4067
  msgid "Message:"
4068
  msgstr "Mensaje:"
4069
 
4070
- #: core/class-settings.php:390
4071
  msgctxt "contact email"
4072
  msgid "Time: %s"
4073
  msgstr "Hora: %s"
4074
 
4075
- #: core/class-settings.php:392
4076
  msgctxt "admin settings"
4077
  msgid "E-Mail Templates"
4078
  msgstr "Plantillas de Correo Electrónico"
4079
 
4080
- #: core/class-settings.php:395
4081
  msgctxt "admin settings"
4082
  msgid "Email confirmation message"
4083
  msgstr "Mensaje de Confirmación"
4084
 
4085
- #: core/class-settings.php:399
4086
  msgctxt "admin settings"
4087
  msgid "Sent after a listing has been submitted."
4088
  msgstr "Enviado luego de que el listado ha sido recibido."
4089
 
4090
- #: core/class-settings.php:400 core/class-settings.php:408
4091
- #: core/class-settings.php:449
4092
  msgctxt "admin settings"
4093
  msgid "Listing's title"
4094
  msgstr "Título del Listado"
4095
 
4096
- #: core/class-settings.php:403
4097
  msgctxt "admin settings"
4098
  msgid "Listing published message"
4099
  msgstr "Mensaje de listado publicado"
4100
 
4101
- #: core/class-settings.php:406
4102
  msgctxt "admin settings"
4103
  msgid ""
4104
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
@@ -4107,23 +4144,23 @@ msgstr ""
4107
  "Su listado \"[listing]\" está ahora disponible en [listing-url] y puede ser "
4108
  "visto por el público."
4109
 
4110
- #: core/class-settings.php:407
4111
  msgctxt "admin settings"
4112
  msgid "Sent when the listing has been published or approved by an admin."
4113
  msgstr ""
4114
  "Enviado cuando el listado ha sido publicado o aprobado por un administrador."
4115
 
4116
- #: core/class-settings.php:409
4117
  msgctxt "admin settings"
4118
  msgid "Listing's URL"
4119
  msgstr "URL del listado"
4120
 
4121
- #: core/class-settings.php:413
4122
  msgctxt "admin settings"
4123
  msgid "Listing Contact Message"
4124
  msgstr "Mensaje de contacto"
4125
 
4126
- #: core/class-settings.php:417
4127
  msgctxt "admin settings"
4128
  msgid ""
4129
  "Sent to listing owners when someone uses the contact form on their listing "
@@ -4132,34 +4169,34 @@ msgstr ""
4132
  "Enviado a los dueños de listados cuando alguien utiliza el formulario de "
4133
  "contacto en sus páginas."
4134
 
4135
- #: core/class-settings.php:427
4136
  msgctxt "admin settings"
4137
  msgid "Payment related"
4138
  msgstr "Relativo al pago"
4139
 
4140
- #: core/class-settings.php:444
4141
  msgctxt "admin settings"
4142
  msgid "Payment abandoned reminder message"
4143
  msgstr "Recordatorio de pagos abandonados"
4144
 
4145
- #: core/class-settings.php:448
4146
  msgctxt "admin settings"
4147
  msgid "Sent some time after a pending payment is abandoned by users."
4148
  msgstr ""
4149
  "Enviado algún tiempo después de que un pago pendiente es abandonado por los "
4150
  "usuarios."
4151
 
4152
- #: core/class-settings.php:450
4153
  msgctxt "admin settings"
4154
  msgid "Checkout URL link"
4155
  msgstr "Link a la URL de pago"
4156
 
4157
- #: core/class-settings.php:456
4158
  msgctxt "admin settings"
4159
  msgid "Renewal Reminders"
4160
  msgstr "Recordatorios de Renovación"
4161
 
4162
- #: core/class-settings.php:459
4163
  msgctxt "admin settings"
4164
  msgid ""
4165
  "This section refers only to the text of the renewal/expiration notices. You "
@@ -4169,12 +4206,12 @@ msgstr ""
4169
  "renovación/expiración. También puede <a>configurar cuándo estos correos son "
4170
  "enviados</a>."
4171
 
4172
- #: core/class-settings.php:463
4173
  msgctxt "admin settings"
4174
  msgid "Pending expiration e-mail message"
4175
  msgstr "Mensaje correo electrónico sobre expiración pendiente"
4176
 
4177
- #: core/class-settings.php:467
4178
  msgctxt "settings"
4179
  msgid ""
4180
  "Sent some time before the listing expires. Applies to non-recurring renewals "
@@ -4183,50 +4220,50 @@ msgstr ""
4183
  "Enviado un tiempo antes de que el listado expire. Aplica para renovaciones "
4184
  "no recurrentes únicamente."
4185
 
4186
- #: core/class-settings.php:468 core/class-settings.php:481
4187
- #: core/class-settings.php:494 core/class-settings.php:507
4188
- #: core/class-settings.php:520
4189
  msgctxt "settings"
4190
  msgid "Listing's name (with link)"
4191
  msgstr "Título del listado (con enlace)"
4192
 
4193
- #: core/class-settings.php:469 core/class-settings.php:482
4194
- #: core/class-settings.php:495 core/class-settings.php:508
4195
- #: core/class-settings.php:521
4196
  msgctxt "settings"
4197
  msgid "Author's name"
4198
  msgstr "Autor del listado"
4199
 
4200
- #: core/class-settings.php:470 core/class-settings.php:483
4201
- #: core/class-settings.php:522
4202
  msgctxt "settings"
4203
  msgid "Expiration date"
4204
  msgstr "Fecha de expiración"
4205
 
4206
- #: core/class-settings.php:471
4207
  msgctxt "settings"
4208
  msgid "Category that is going to expire"
4209
  msgstr "Categoría que va a expirar"
4210
 
4211
- #: core/class-settings.php:472 core/class-settings.php:485
4212
- #: core/class-settings.php:524
4213
  msgctxt "settings"
4214
  msgid "Link to renewal page"
4215
  msgstr "Enlace a la página de renovación"
4216
 
4217
- #: core/class-settings.php:473 core/class-settings.php:486
4218
- #: core/class-settings.php:498 core/class-settings.php:511
4219
- #: core/class-settings.php:525
4220
  msgctxt "settings"
4221
  msgid "Link to your site"
4222
  msgstr "Enlace a su sitio"
4223
 
4224
- #: core/class-settings.php:476
4225
  msgctxt "admin settings"
4226
  msgid "Listing Renewal e-mail message"
4227
  msgstr "Mensaje de correo electrónico sobre Renovación del Listado"
4228
 
4229
- #: core/class-settings.php:480
4230
  msgctxt "settings"
4231
  msgid ""
4232
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
@@ -4235,17 +4272,17 @@ msgstr ""
4235
  "Enviado al momento de expiración del listado. Aplica a renovaciones no "
4236
  "recurrentes únicamente."
4237
 
4238
- #: core/class-settings.php:484 core/class-settings.php:523
4239
  msgctxt "settings"
4240
  msgid "Category that expired"
4241
  msgstr "Categoría que expiró"
4242
 
4243
- #: core/class-settings.php:489
4244
  msgctxt "admin settings"
4245
  msgid "Listing auto-renewal reminder (recurring payments)"
4246
  msgstr "Recordatorio de auto-renovación del listado (pagos recurrentes)"
4247
 
4248
- #: core/class-settings.php:493
4249
  msgctxt "settings"
4250
  msgid ""
4251
  "Sent some time before the listing is auto-renewed. Applies to recurring "
@@ -4254,29 +4291,29 @@ msgstr ""
4254
  "Enviado algún tiempo antes de que el listado sea auto-renovado. Aplica a "
4255
  "renovaciones recurrentes únicamente."
4256
 
4257
- #: core/class-settings.php:496 core/class-settings.php:510
4258
  msgctxt "settings"
4259
  msgid "Renewal date"
4260
  msgstr "Fecha de renovación"
4261
 
4262
- #: core/class-settings.php:497
4263
  msgctxt "settings"
4264
  msgid "Category that is going to be renewed"
4265
  msgstr "Categoría que será renovada"
4266
 
4267
- #: core/class-settings.php:499
4268
  msgctxt "settings"
4269
  msgid "Link to manage subscriptions"
4270
  msgstr "Enlace a la página de administración de pagos recurrentes"
4271
 
4272
- #: core/class-settings.php:502
4273
  msgctxt "admin settings"
4274
  msgid "Listing Renewal e-mail message (recurring payments)"
4275
  msgstr ""
4276
  "Mensaje de correo electrónico sobre Renovación del Listado (para pago "
4277
  "automático)"
4278
 
4279
- #: core/class-settings.php:506
4280
  msgctxt "settings"
4281
  msgid ""
4282
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
@@ -4284,17 +4321,17 @@ msgstr ""
4284
  "Enviado luego de que el listado sea auto-renovado. Aplica a renovaciones "
4285
  "recurrentes únicamente."
4286
 
4287
- #: core/class-settings.php:509
4288
  msgctxt "settings"
4289
  msgid "Renewed category"
4290
  msgstr "Categoría renovada"
4291
 
4292
- #: core/class-settings.php:515
4293
  msgctxt "admin settings"
4294
  msgid "Renewal reminder e-mail message"
4295
  msgstr "Recordatorio por correo electrónico de renovación del listado"
4296
 
4297
- #: core/class-settings.php:519
4298
  msgctxt "settings"
4299
  msgid ""
4300
  "Sent some time after listing expiration and when no renewal has occurred. "
@@ -4303,32 +4340,32 @@ msgstr ""
4303
  "Enviado un tiempo después de que el listado expire y no haya sido renovado. "
4304
  "Aplica tanto a renovaciones recurrentes como no recurrentes."
4305
 
4306
- #: core/class-settings.php:529
4307
  msgctxt "admin settings"
4308
  msgid "Payment"
4309
  msgstr "Pago"
4310
 
4311
- #: core/class-settings.php:530
4312
  msgctxt "admin settings"
4313
  msgid "Payment Settings"
4314
  msgstr "Configuración de Pago"
4315
 
4316
- #: core/class-settings.php:533
4317
  msgctxt "admin settings"
4318
  msgid "Turn On payments?"
4319
  msgstr "Activar pagos?"
4320
 
4321
- #: core/class-settings.php:535
4322
  msgctxt "admin settings"
4323
  msgid "Put payment gateways in test mode?"
4324
  msgstr "Utilizar las pasarelas de pago en modo de prueba?"
4325
 
4326
- #: core/class-settings.php:540
4327
  msgctxt "admin settings"
4328
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4329
  msgstr "Realizar pagos en la versión segura (HTTPS) de su sitio?"
4330
 
4331
- #: core/class-settings.php:543
4332
  msgctxt "admin settings"
4333
  msgid ""
4334
  "Recommended for added security. For this to work you need to enable HTTPS on "
@@ -4337,162 +4374,162 @@ msgstr ""
4337
  "Recomendado para seguridad extra. Para que funcione debe tener habilitado "
4338
  "HTTPS en su servidor y <a>obtener un certificado SSL</a>."
4339
 
4340
- #: core/class-settings.php:547
4341
  msgctxt "admin settings"
4342
  msgid "Currency Code"
4343
  msgstr "Código de Moneda"
4344
 
4345
- #: core/class-settings.php:549
4346
  msgctxt "admin settings"
4347
  msgid "Australian Dollar (AUD)"
4348
  msgstr "Dólar Australiano (AUD)"
4349
 
4350
- #: core/class-settings.php:550
4351
  msgctxt "admin settings"
4352
  msgid "Brazilian Real (BRL)"
4353
  msgstr "Real Brasilero (BRL)"
4354
 
4355
- #: core/class-settings.php:551
4356
  msgctxt "admin settings"
4357
  msgid "Canadian Dollar (CAD)"
4358
  msgstr "Dólar Canadiense (CAD)"
4359
 
4360
- #: core/class-settings.php:552
4361
  msgctxt "admin settings"
4362
  msgid "Czech Koruna (CZK)"
4363
  msgstr "Corona Checa (CZK)"
4364
 
4365
- #: core/class-settings.php:553
4366
  msgctxt "admin settings"
4367
  msgid "Danish Krone (DKK)"
4368
  msgstr "Corona Danesa (DKK)"
4369
 
4370
- #: core/class-settings.php:554
4371
  msgctxt "admin settings"
4372
  msgid "Euro (EUR)"
4373
  msgstr "Euro (EUR)"
4374
 
4375
- #: core/class-settings.php:555
4376
  msgctxt "admin settings"
4377
  msgid "Hong Kong Dollar (HKD)"
4378
  msgstr "Dólar de Hong Kong (HKD)"
4379
 
4380
- #: core/class-settings.php:556
4381
  msgctxt "admin settings"
4382
  msgid "Hungarian Forint (HUF)"
4383
  msgstr "Forinte Húngaro (HUF)"
4384
 
4385
- #: core/class-settings.php:557
4386
  msgctxt "admin settings"
4387
  msgid "Israeli New Shequel (ILS)"
4388
  msgstr "Nuevo Shékel Israelí (ILS)"
4389
 
4390
- #: core/class-settings.php:558
4391
  msgctxt "admin settings"
4392
  msgid "Japanese Yen (JPY)"
4393
  msgstr "Yen Japonés (JPY)"
4394
 
4395
- #: core/class-settings.php:559
4396
  msgctxt "admin settings"
4397
  msgid "Malasian Ringgit (MYR)"
4398
  msgstr "Ringgit de Malasia (MYR)"
4399
 
4400
- #: core/class-settings.php:560
4401
  msgctxt "admin settings"
4402
  msgid "Mexican Peso (MXN)"
4403
  msgstr "Peso Mexicano (MXN)"
4404
 
4405
- #: core/class-settings.php:561
4406
  msgctxt "admin settings"
4407
  msgid "Norwegian Krone (NOK)"
4408
  msgstr "Corona Noruega (NOK)"
4409
 
4410
- #: core/class-settings.php:562
4411
  msgctxt "admin settings"
4412
  msgid "New Zealand Dollar (NZD)"
4413
  msgstr "Dólar de Nueva Zelanda (NZD)"
4414
 
4415
- #: core/class-settings.php:563
4416
  msgctxt "admin settings"
4417
  msgid "Philippine Peso (PHP)"
4418
  msgstr "Peso Filipino (PHP)"
4419
 
4420
- #: core/class-settings.php:564
4421
  msgctxt "admin settings"
4422
  msgid "Polish Zloty (PLN)"
4423
  msgstr "Zloty Polaco (PLN)"
4424
 
4425
- #: core/class-settings.php:565
4426
  msgctxt "admin settings"
4427
  msgid "Pound Sterling (GBP)"
4428
  msgstr "Libra Esterlina (GBP)"
4429
 
4430
- #: core/class-settings.php:566
4431
  msgctxt "admin settings"
4432
  msgid "Singapore Dollar (SGD)"
4433
  msgstr "Dólar de Singapur (SGD)"
4434
 
4435
- #: core/class-settings.php:567
4436
  msgctxt "admin settings"
4437
  msgid "Swedish Krona (SEK)"
4438
  msgstr "Corona Sueca (SEK)"
4439
 
4440
- #: core/class-settings.php:568
4441
  msgctxt "admin settings"
4442
  msgid "Swiss Franc (CHF)"
4443
  msgstr "Franco Suizo (CHF)"
4444
 
4445
- #: core/class-settings.php:569
4446
  msgctxt "admin settings"
4447
  msgid "Taiwan Dollar (TWD)"
4448
  msgstr "Dólar de Taiwán (TWD)"
4449
 
4450
- #: core/class-settings.php:570
4451
  msgctxt "admin settings"
4452
  msgid "Thai Baht (THB)"
4453
  msgstr "Baht de Tailandia (THB)"
4454
 
4455
- #: core/class-settings.php:571
4456
  msgctxt "admin settings"
4457
  msgid "Turkish Lira (TRY)"
4458
  msgstr "Lira Turca (TRY)"
4459
 
4460
- #: core/class-settings.php:572
4461
  msgctxt "admin settings"
4462
  msgid "U.S. Dollar (USD)"
4463
  msgstr "Dólar Americano (USD)"
4464
 
4465
- #: core/class-settings.php:576
4466
  msgctxt "admin settings"
4467
  msgid "Currency Symbol"
4468
  msgstr "Símbolo de Moneda"
4469
 
4470
- #: core/class-settings.php:581
4471
  msgctxt "admin settings"
4472
  msgid "Currency symbol display"
4473
  msgstr "Presentación de símbolo de moneda"
4474
 
4475
- #: core/class-settings.php:585
4476
  msgctxt "admin settings"
4477
  msgid "Show currency symbol on the left"
4478
  msgstr "Mostrar el símbolo de moneda a la izquierda"
4479
 
4480
- #: core/class-settings.php:586
4481
  msgctxt "admin settings"
4482
  msgid "Show currency symbol on the right"
4483
  msgstr "Mostrar el símbolo de moneda a la derecha"
4484
 
4485
- #: core/class-settings.php:587
4486
  msgctxt "admin settings"
4487
  msgid "Do not show currency symbol"
4488
  msgstr "No mostrar el símbolo de moneda"
4489
 
4490
- #: core/class-settings.php:589
4491
  msgctxt "admin settings"
4492
  msgid "Thank you for payment message"
4493
  msgstr "Mensaje de agradecimiento por el pago"
4494
 
4495
- #: core/class-settings.php:590
4496
  msgctxt "admin settings"
4497
  msgid ""
4498
  "Thank you for your payment. Your payment is being verified and your listing "
@@ -4501,13 +4538,13 @@ msgstr ""
4501
  "Gracias por su pago. Su pago está siendo verificado y su listado revisado. "
4502
  "Este proceso puede tardar hasta 48 horas."
4503
 
4504
- #: core/class-settings.php:595
4505
  msgctxt "admin settings"
4506
  msgid "Ask users to come back for abandoned payments?"
4507
  msgstr ""
4508
  "Contactar a los usuarios para pedirles que regresen a pagar pagos pendientes?"
4509
 
4510
- #: core/class-settings.php:598
4511
  msgctxt "admin settings"
4512
  msgid ""
4513
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -4520,12 +4557,12 @@ msgstr ""
4520
  "en listados que parece que fallaron cuando el usuario simplemente no "
4521
  "completó la transacción. BD puede recordarles para que efectúen el pago."
4522
 
4523
- #: core/class-settings.php:604
4524
  msgctxt "admin settings"
4525
  msgid "Listing abandonment threshold (hours)"
4526
  msgstr "Tiempo tras el cual el listado es considerado abandonado (en horas)"
4527
 
4528
- #: core/class-settings.php:609
4529
  msgctxt "admin settings"
4530
  msgid ""
4531
  "Listings with pending payments are marked as abandoned after this time. You "
@@ -4535,37 +4572,37 @@ msgstr ""
4535
  "tiempo. También puede <a>personalizar el correo-e</a> que los usuarios "
4536
  "reciben."
4537
 
4538
- #: core/class-settings.php:614
4539
  msgctxt "admin settings"
4540
  msgid "Themes"
4541
- msgstr ""
4542
 
4543
- #: core/class-settings.php:616
4544
  msgctxt "admin settings"
4545
  msgid "You can manage your themes on <a>Directory Themes</a>."
4546
- msgstr ""
4547
 
4548
- #: core/class-settings.php:621
4549
  msgctxt "admin settings"
4550
  msgid "Theme button style"
4551
- msgstr ""
4552
 
4553
- #: core/class-settings.php:625
4554
  msgctxt "admin settings"
4555
  msgid "Use the BD theme style for BD buttons"
4556
- msgstr ""
4557
 
4558
- #: core/class-settings.php:626
4559
  msgctxt "admin settings"
4560
  msgid "Use the WP theme style for BD buttons"
4561
- msgstr ""
4562
 
4563
- #: core/class-settings.php:633
4564
  msgctxt "admin settings"
4565
  msgid "Image"
4566
  msgstr "Imágenes"
4567
 
4568
- #: core/class-settings.php:634
4569
  msgctxt "admin settings"
4570
  msgid ""
4571
  "Any changes to these settings will affect new listings only. Existing "
@@ -4578,52 +4615,52 @@ msgstr ""
4578
  "existentes, deberá subir de nuevo las imágenes necesarias luego de hacer los "
4579
  "cambios aquí."
4580
 
4581
- #: core/class-settings.php:635
4582
  msgctxt "admin settings"
4583
  msgid "Image Settings"
4584
  msgstr "Configuración de Imágenes"
4585
 
4586
- #: core/class-settings.php:636
4587
  msgctxt "admin settings"
4588
  msgid "Allow images?"
4589
  msgstr "Permitir imágenes?"
4590
 
4591
- #: core/class-settings.php:638
4592
  msgctxt "admin settings"
4593
  msgid "Min Image File Size (KB)"
4594
  msgstr "Tamaño mínimo de imagen (KB)"
4595
 
4596
- #: core/class-settings.php:639
4597
  msgctxt "admin settings"
4598
  msgid "Max Image File Size (KB)"
4599
  msgstr "Tamaño máximo de imagen (KB)"
4600
 
4601
- #: core/class-settings.php:641
4602
  msgctxt "admin settings"
4603
  msgid "Min image width (px)"
4604
  msgstr "Ancho mínimo de imagen (en px)"
4605
 
4606
- #: core/class-settings.php:642
4607
  msgctxt "admin settings"
4608
  msgid "Min image height (px)"
4609
  msgstr "Alto mínimo de imagen (en px)"
4610
 
4611
- #: core/class-settings.php:644
4612
  msgctxt "admin settings"
4613
  msgid "Max image width (px)"
4614
  msgstr "Ancho máximo de imagen (px)"
4615
 
4616
- #: core/class-settings.php:645
4617
  msgctxt "admin settings"
4618
  msgid "Max image height (px)"
4619
  msgstr "Alto máximo de imagen (px)"
4620
 
4621
- #: core/class-settings.php:647
4622
  msgctxt "admin settings"
4623
  msgid "Turn on thickbox/lightbox?"
4624
  msgstr "Activar Thickbox/Lightbox?"
4625
 
4626
- #: core/class-settings.php:647
4627
  msgctxt "admin settings"
4628
  msgid ""
4629
  "Uncheck if it conflicts with other elements or plugins installed on your site"
@@ -4631,27 +4668,27 @@ msgstr ""
4631
  "Desmarque si entra en conflicto con otros elementos o plugins instalados en "
4632
  "su sitio"
4633
 
4634
- #: core/class-settings.php:649
4635
  msgctxt "admin settings"
4636
  msgid "Thumbnails"
4637
  msgstr "Imágenes de previsualización"
4638
 
4639
- #: core/class-settings.php:650
4640
  msgctxt "admin settings"
4641
  msgid "Thumbnail width (px)"
4642
  msgstr "Ancho de thumbnail (px)"
4643
 
4644
- #: core/class-settings.php:651
4645
  msgctxt "admin settings"
4646
  msgid "Thumbnail height (px)"
4647
  msgstr "Alto de thumbnail (px)"
4648
 
4649
- #: core/class-settings.php:654
4650
  msgctxt "admin settings"
4651
  msgid "Crop thumbnails to exact dimensions?"
4652
  msgstr "Cortar imágenes de previsualización a las dimensiones exactas?"
4653
 
4654
- #: core/class-settings.php:657
4655
  msgctxt "admin settings"
4656
  msgid ""
4657
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4665,12 +4702,12 @@ msgstr ""
4665
  "alto será ajustado proporcionalmente. Dependiendo de las imágenes que se "
4666
  "hayan utilizado, estas podrían tener diferentes alturas."
4667
 
4668
- #: core/class-settings.php:663
4669
  msgctxt "admin settings"
4670
  msgid "Number of free images"
4671
  msgstr "Número de imágenes gratuitas"
4672
 
4673
- #: core/class-settings.php:668
4674
  msgctxt "admin settings"
4675
  msgid ""
4676
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
@@ -4679,28 +4716,27 @@ msgstr ""
4679
  "Configure las imágenes de listados pagos agregando o editando una "
4680
  "<a>comisión</a> pues este valor será ignorado para listados pagos."
4681
 
4682
- #: core/class-settings.php:671
4683
  msgctxt "admin settings"
4684
  msgid "Use default picture for listings with no picture?"
4685
  msgstr "Utilizar imagen por defecto en listados sin imagen?"
4686
 
4687
- #: core/class-settings.php:672
4688
  msgctxt "admin settings"
4689
  msgid "Show Thumbnail on main listings page?"
4690
  msgstr "Mostrar thumbnails en las páginas principales?"
4691
 
4692
- #: core/class-settings.php:701
4693
  msgctxt "admin settings"
4694
  msgid "User"
4695
- msgstr ""
4696
 
4697
- #: core/class-settings.php:702
4698
- #, fuzzy
4699
  msgctxt "admin settings"
4700
  msgid "User registration date"
4701
- msgstr "Fecha de expiración del listado"
4702
 
4703
- #: core/class-settings.php:728
4704
  msgctxt "admin settings"
4705
  msgid ""
4706
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
@@ -4709,7 +4745,7 @@ msgstr ""
4709
  "No se pudo copiar el plugin de compatibilidad AJAX \"%s\". El modo de "
4710
  "compatibilidad no fue activado."
4711
 
4712
- #: core/class-settings.php:736
4713
  msgctxt "admin settings"
4714
  msgid ""
4715
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
@@ -4718,7 +4754,7 @@ msgstr ""
4718
  "No se pudo activar el modo de compatibilidad AJAX: el directorio \"%s\" no "
4719
  "pudo ser creado."
4720
 
4721
- #: core/class-settings.php:745
4722
  msgctxt "admin settings"
4723
  msgid ""
4724
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
@@ -4727,97 +4763,97 @@ msgstr ""
4727
  "No se pudo remover \"Business Directory Plugin - AJAX Compatibility Module"
4728
  "\". Por favor elimine el archivo \"%s\" manualmente o desactive el plugin."
4729
 
4730
- #: core/class-settings.php:1065
4731
  msgctxt "settings"
4732
  msgid "Deactivate License"
4733
  msgstr "Desactivar Licencia"
4734
 
4735
- #: core/class-settings.php:1067
4736
  msgctxt "settings"
4737
  msgid "Deactivating license..."
4738
  msgstr "Desactivando licencia..."
4739
 
4740
- #: core/class-settings.php:1070
4741
  msgctxt "settings"
4742
  msgid "Activate License"
4743
  msgstr "Activar Licencia"
4744
 
4745
- #: core/class-settings.php:1072
4746
  msgctxt "settings"
4747
  msgid "Activating license..."
4748
  msgstr "Activando licencia..."
4749
 
4750
- #: core/class-settings.php:1095
4751
  msgctxt "admin settings"
4752
  msgid "Valid placeholders: %s"
4753
  msgstr "Comodines válidos: %s"
4754
 
4755
- #: core/class-settings.php:1129
4756
  msgctxt "settings email"
4757
  msgid "Click to edit e-mail"
4758
  msgstr "Click para editar el correo"
4759
 
4760
- #: core/class-settings.php:1130
4761
  msgctxt "settings email"
4762
  msgid "Click to edit"
4763
  msgstr "Click para editar"
4764
 
4765
- #: core/class-settings.php:1143
4766
  msgctxt "settings email"
4767
  msgid "E-Mail Subject"
4768
  msgstr "Título del correo"
4769
 
4770
- #: core/class-settings.php:1154
4771
  msgctxt "settings email"
4772
  msgid "E-Mail Body"
4773
  msgstr "Cuerpo del correo"
4774
 
4775
- #: core/class-settings.php:1165
4776
  msgctxt "settings email"
4777
  msgid "You can use the following placeholders:"
4778
  msgstr "Puede utilizar los siguientes comodines:"
4779
 
4780
- #: core/class-settings.php:1188
4781
  msgctxt "settings email"
4782
  msgid "Preview e-mail"
4783
  msgstr "Previsualizar correo"
4784
 
4785
- #: core/class-settings.php:1189
4786
  msgctxt "settings email"
4787
  msgid "Cancel"
4788
  msgstr "Cancelar"
4789
 
4790
- #: core/class-settings.php:1190
4791
  msgctxt "settings email"
4792
  msgid "Save Changes"
4793
  msgstr "Guardar Cambios"
4794
 
4795
- #: core/class-settings.php:1209
4796
  msgctxt "settings email"
4797
  msgid "Site title"
4798
  msgstr "Título del sitio"
4799
 
4800
- #: core/class-settings.php:1212
4801
  msgctxt "settings email"
4802
  msgid "Site title (with link)"
4803
  msgstr "Título del listado (con enlace)"
4804
 
4805
- #: core/class-settings.php:1215
4806
  msgctxt "settings email"
4807
  msgid "Site address (with link)"
4808
  msgstr "Dirección del listado (con enlace)"
4809
 
4810
- #: core/class-settings.php:1218
4811
  msgctxt "settings email"
4812
  msgid "Directory URL (with link)"
4813
  msgstr "URL del Directorio (con enlace)"
4814
 
4815
- #: core/class-settings.php:1221
4816
  msgctxt "settings email"
4817
  msgid "Current date"
4818
  msgstr "Fecha actual"
4819
 
4820
- #: core/class-settings.php:1224
4821
  msgctxt "settings email"
4822
  msgid "Current time"
4823
  msgstr "Hora actual"
@@ -4828,7 +4864,6 @@ msgid "Directory"
4828
  msgstr "Directorio"
4829
 
4830
  #: core/class-wpbdp.php:31
4831
- #, fuzzy
4832
  msgctxt "post type singular name"
4833
  msgid "Listing"
4834
  msgstr "Listado"
@@ -4872,19 +4907,16 @@ msgid "Directory Categories"
4872
  msgstr "Categorías de Directorio"
4873
 
4874
  #: core/class-wpbdp.php:56
4875
- #, fuzzy
4876
  msgid "Directory Category"
4877
- msgstr "Categorías de Directorio"
4878
 
4879
  #: core/class-wpbdp.php:67
4880
- #, fuzzy
4881
  msgid "Directory Tags"
4882
- msgstr "Directorio"
4883
 
4884
  #: core/class-wpbdp.php:68
4885
- #, fuzzy
4886
  msgid "Directory Tag"
4887
- msgstr "Directorio"
4888
 
4889
  #: core/compatibility/class-navxt-integration.php:159
4890
  msgctxt "navxt"
@@ -4969,7 +5001,7 @@ msgstr "Sitio Social (Perfil de LinkedIn)"
4969
  #: core/fieldtypes/class-fieldtypes-linkedin.php:21
4970
  msgctxt "form-fields api"
4971
  msgid "You can add your Company ID or profile URL here."
4972
- msgstr ""
4973
 
4974
  #: core/fieldtypes/class-fieldtypes-multiselect.php:6
4975
  msgctxt "form-fields api"
@@ -5025,7 +5057,7 @@ msgstr "Permitir entrada HTML en este campo?"
5025
  #: core/fieldtypes/class-fieldtypes-textarea.php:53
5026
  msgctxt "form-fields admin"
5027
  msgid "Allow IFRAME tags in content?"
5028
- msgstr ""
5029
 
5030
  #: core/fieldtypes/class-fieldtypes-textarea.php:56
5031
  msgctxt "admin form-fields"
@@ -5036,17 +5068,21 @@ msgid ""
5036
  "posting the listings yourself and have sole control over the content. Are "
5037
  "you sure you want to enable this?"
5038
  msgstr ""
 
 
 
 
 
5039
 
5040
  #: core/fieldtypes/class-fieldtypes-textarea.php:57
5041
- #, fuzzy
5042
  msgctxt "form-fields admin"
5043
  msgid "No"
5044
- msgstr "Nov"
5045
 
5046
  #: core/fieldtypes/class-fieldtypes-textarea.php:58
5047
  msgctxt "form-fields admin"
5048
  msgid "Yes"
5049
- msgstr ""
5050
 
5051
  #: core/fieldtypes/class-fieldtypes-textarea.php:63
5052
  msgctxt "form-fields admin"
@@ -5091,7 +5127,7 @@ msgstr ""
5091
  #: core/fieldtypes/class-fieldtypes-textarea.php:79
5092
  msgctxt "form-fields admin"
5093
  msgid "Automatically generate excerpt from content field?"
5094
- msgstr ""
5095
 
5096
  #: core/fieldtypes/class-fieldtypes-textfield.php:5
5097
  msgctxt "form-fields api"
@@ -5340,37 +5376,37 @@ msgstr "No se pudo procesar el pago."
5340
  #: core/gateways-dummy.php:15
5341
  msgctxt "dummy gateway"
5342
  msgid "Dummy"
5343
- msgstr ""
5344
 
5345
  #: core/gateways-dummy.php:38
5346
  msgctxt "dummy gateway"
5347
  msgid "Dummy Gateway"
5348
- msgstr ""
5349
 
5350
  #: core/gateways-dummy.php:39
5351
  msgctxt "dummy gateway"
5352
  msgid "New Status:"
5353
- msgstr ""
5354
 
5355
  #: core/gateways-dummy.php:41
5356
  msgctxt "dummy gateway"
5357
  msgid "Completed"
5358
- msgstr ""
5359
 
5360
  #: core/gateways-dummy.php:43
5361
  msgctxt "dummy gateway"
5362
  msgid "Pending"
5363
- msgstr ""
5364
 
5365
  #: core/gateways-dummy.php:45
5366
  msgctxt "dummy gateway"
5367
  msgid "Canceled"
5368
- msgstr ""
5369
 
5370
  #: core/gateways-dummy.php:47
5371
  msgctxt "dummy gateway"
5372
  msgid "Rejected"
5373
- msgstr ""
5374
 
5375
  #: core/gateways-dummy.php:49
5376
  msgctxt "dummy gateway"
@@ -5385,27 +5421,27 @@ msgstr "El directorio de destino \"%s\" no se puede escribir."
5385
  #: core/helpers/class-themes-updater.php:128
5386
  msgctxt "themes"
5387
  msgid "Updating theme..."
5388
- msgstr ""
5389
 
5390
  #: core/helpers/class-themes-updater.php:129
5391
  msgctxt "themes"
5392
  msgid "Theme updated."
5393
- msgstr ""
5394
 
5395
  #: core/helpers/class-themes-updater.php:131
5396
  msgctxt "themes"
5397
  msgid "New version available (<b>%s</b>). <a>Update now.</a>"
5398
- msgstr ""
5399
 
5400
  #: core/helpers/class-themes-updater.php:159
5401
  msgctxt "themes"
5402
  msgid "Could not update theme: %s"
5403
- msgstr ""
5404
 
5405
  #: core/helpers/class-themes-updater.php:165
5406
  msgctxt "themes"
5407
  msgid "Theme was updated sucessfully."
5408
- msgstr ""
5409
 
5410
  #: core/installer.php:41
5411
  msgctxt "default category name"
@@ -5413,10 +5449,9 @@ msgid "General"
5413
  msgstr "General"
5414
 
5415
  #: core/installer.php:49
5416
- #, fuzzy
5417
  msgctxt "installer"
5418
  msgid "Default Fee"
5419
- msgstr "Eliminar Comisión"
5420
 
5421
  #: core/installer.php:486
5422
  msgctxt "installer"
@@ -5656,6 +5691,10 @@ msgid ""
5656
  "able to post listings. Please <a href=\"fees\">create some fees</a> or <a "
5657
  "href=\"settings\">configure the Directory</a> to operate in \"Free Mode\"."
5658
  msgstr ""
 
 
 
 
5659
 
5660
  #: core/payment.php:169
5661
  msgctxt "payments-api"
@@ -5806,14 +5845,12 @@ msgid "Directory"
5806
  msgstr "Directorio"
5807
 
5808
  #: core/templates-ui.php:191
5809
- #, fuzzy
5810
  msgid "View All Listings"
5811
- msgstr "Ver Listados"
5812
 
5813
  #: core/templates-ui.php:197
5814
- #, fuzzy
5815
  msgid "Create A Listing"
5816
- msgstr "Listado Gratuito"
5817
 
5818
  #: core/templates-ui.php:224
5819
  msgctxt "templates"
@@ -5843,22 +5880,22 @@ msgstr "(Reestablecer)"
5843
  #: core/themes.php:635
5844
  msgctxt "themes"
5845
  msgid "ZIP file is not a valid BD theme file."
5846
- msgstr ""
5847
 
5848
  #: core/themes.php:641
5849
  msgctxt "themes"
5850
  msgid "Could not create themes directory."
5851
- msgstr ""
5852
 
5853
  #: core/themes.php:649
5854
  msgctxt "themes"
5855
  msgid "Could not remove previous theme directory \"%s\"."
5856
- msgstr ""
5857
 
5858
  #: core/themes.php:655
5859
  msgctxt "themes"
5860
  msgid "Could not move new theme into theme directory."
5861
- msgstr ""
5862
 
5863
  #: core/utils.php:106
5864
  msgctxt "utils"
@@ -6009,10 +6046,9 @@ msgid "Invalid submit state."
6009
  msgstr "Solicitud inválida."
6010
 
6011
  #: core/views/all_listings.php:6
6012
- #, fuzzy
6013
  msgctxt "views"
6014
  msgid "View All Listings"
6015
- msgstr "Ver Listados"
6016
 
6017
  #: core/views/checkout.php:28
6018
  msgctxt "payments"
@@ -6114,10 +6150,9 @@ msgid "l F j, Y \\a\\t g:i a"
6114
  msgstr "l F j, Y \\a\\t g:i a"
6115
 
6116
  #: core/views/listing_contact.php:178
6117
- #, fuzzy
6118
  msgctxt "contact-message"
6119
  msgid "%s (admin: %s)"
6120
- msgstr "%s (ej. %s)"
6121
 
6122
  #: core/views/listing_contact.php:191
6123
  msgctxt "contact-message"
@@ -6171,16 +6206,14 @@ msgid "Invalid subscription."
6171
  msgstr "Suscripción inválida."
6172
 
6173
  #: core/views/manage_recurring.php:97
6174
- #, fuzzy
6175
  msgctxt "manage subscriptions"
6176
  msgid "← Return to \"Delete Listing\"."
6177
- msgstr "← Regresar al listado."
6178
 
6179
  #: core/views/manage_recurring.php:103
6180
- #, fuzzy
6181
  msgctxt "manage subscriptions"
6182
  msgid "Subscription canceled."
6183
- msgstr "Suscripción / Comisión"
6184
 
6185
  #: core/views/renew_listing.php:13
6186
  msgctxt "renewal"
@@ -6255,27 +6288,24 @@ msgstr ""
6255
  "preferencias de cobro de nuevo."
6256
 
6257
  #: core/views/request_access_keys.php:17
6258
- #, fuzzy
6259
  msgctxt "request_access_keys"
6260
  msgid "Please enter a valid e-mail address."
6261
  msgstr "Por favor ingrese un correo electrónico válido."
6262
 
6263
  #: core/views/request_access_keys.php:22
6264
- #, fuzzy
6265
  msgctxt "request_access_keys"
6266
  msgid "There are no listings associated to your e-mail address."
6267
- msgstr "No hay transacciones asociadas a este listado."
6268
 
6269
  #: core/views/request_access_keys.php:26
6270
- #, fuzzy
6271
  msgctxt "request_access_keys"
6272
  msgid "Listing Access Keys"
6273
- msgstr "Campos del Listado / Imágenes"
6274
 
6275
  #: core/views/request_access_keys.php:30
6276
  msgctxt "request_access_keys"
6277
  msgid "Access keys have been sent to your e-mail address."
6278
- msgstr ""
6279
 
6280
  #: core/views/request_access_keys.php:32
6281
  msgctxt "request_access_keys"
@@ -6283,18 +6313,18 @@ msgid ""
6283
  "An error occurred while sending the access keys to your e-mail address. "
6284
  "Please try again."
6285
  msgstr ""
 
 
6286
 
6287
  #: core/views/search.php:8
6288
- #, fuzzy
6289
  msgctxt "views"
6290
  msgid "Find A Listing"
6291
- msgstr "Encontrar un listado"
6292
 
6293
  #: core/views/submit_listing.php:10
6294
- #, fuzzy
6295
  msgctxt "views"
6296
  msgid "Submit A Listing"
6297
- msgstr "Enviar Un Listado"
6298
 
6299
  #: core/views/submit_listing.php:16
6300
  msgctxt "templates"
@@ -6302,12 +6332,13 @@ msgid ""
6302
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6303
  "Submission?\" setting checked?"
6304
  msgstr ""
 
 
6305
 
6306
  #: core/views/submit_listing.php:18
6307
- #, fuzzy
6308
  msgctxt "templates"
6309
  msgid "View not available."
6310
- msgstr "Casillas de imagen disponibles:"
6311
 
6312
  #: core/views/upgrade_listing.php:16
6313
  msgctxt "listing upgrade"
@@ -6642,10 +6673,9 @@ msgstr "(aún sin publicar)"
6642
 
6643
  #: templates/email/listing-added.tpl.php:15
6644
  #: templates/email/listing-edited.tpl.php:15
6645
- #, fuzzy
6646
  msgctxt "notify email"
6647
  msgid "Admin URL"
6648
- msgstr "URL de login"
6649
 
6650
  #: templates/email/listing-added.tpl.php:17
6651
  #: templates/email/listing-edited.tpl.php:17
@@ -6674,14 +6704,15 @@ msgid ""
6674
  "Below you'll find the access keys for all the listings registered with your "
6675
  "e-mail address on our site."
6676
  msgstr ""
 
 
6677
 
6678
  #: templates/email-access-keys.tpl.php:5
6679
  msgctxt "request_access_keys"
6680
  msgid "Access Key:"
6681
- msgstr ""
6682
 
6683
  #: templates/email-access-keys.tpl.php:6
6684
- #, fuzzy
6685
  msgctxt "request_access_keys"
6686
  msgid "URL:"
6687
  msgstr "URL:"
@@ -6730,14 +6761,17 @@ msgctxt "templates"
6730
  msgid "Upgrade listing to %s for %s."
6731
  msgstr "Mejorar listado a %s por %s."
6732
 
6733
- #: templates/main-box.tpl.php:16
6734
- #, fuzzy
 
 
 
 
6735
  msgctxt "main box"
6736
  msgid "Find Listings"
6737
- msgstr "Encontrar un listado"
6738
 
6739
- #: templates/main-box.tpl.php:17
6740
- #, fuzzy
6741
  msgctxt "main box"
6742
  msgid "Advanced Search"
6743
  msgstr "Búsqueda Avanzada"
@@ -6828,10 +6862,9 @@ msgid "Images Allowed"
6828
  msgstr "Imágenes Permitidas"
6829
 
6830
  #: templates/parts/category-fee-selection.tpl.php:28
6831
- #, fuzzy
6832
  msgctxt "templates"
6833
  msgid "There are no fees available for this category."
6834
- msgstr "Por favor elija una opción de pago para la categoría \"%s\"."
6835
 
6836
  #: templates/parts/category-fee-selection.tpl.php:50
6837
  msgctxt "templates"
@@ -6981,13 +7014,11 @@ msgid "Clear"
6981
  msgstr "Limpiar"
6982
 
6983
  #: templates/send-access-keys.tpl.php:5
6984
- #, fuzzy
6985
  msgctxt "send-access-keys"
6986
  msgid "Enter your e-mail address"
6987
- msgstr "Dirección de correo-e inválida."
6988
 
6989
  #: templates/send-access-keys.tpl.php:9
6990
- #, fuzzy
6991
  msgctxt "send-access-keys"
6992
  msgid "Continue"
6993
  msgstr "Continuar"
@@ -7107,29 +7138,26 @@ msgid "Image slots available:"
7107
  msgstr "Casillas de imagen disponibles:"
7108
 
7109
  #: templates/submit-listing/images-upload-form.tpl.php:45
7110
- #, fuzzy
7111
  msgctxt "templates"
7112
  msgid "File size:"
7113
- msgstr "Tamaño min. de archivo:"
7114
 
7115
  #: templates/submit-listing/images-upload-form.tpl.php:47
7116
  #: templates/submit-listing/images-upload-form.tpl.php:54
7117
  #: templates/submit-listing/images-upload-form.tpl.php:61
7118
  msgctxt "templates"
7119
  msgid "No limit"
7120
- msgstr ""
7121
 
7122
  #: templates/submit-listing/images-upload-form.tpl.php:52
7123
- #, fuzzy
7124
  msgctxt "templates"
7125
  msgid "Image width:"
7126
- msgstr "Ancho de imagen (en px):"
7127
 
7128
  #: templates/submit-listing/images-upload-form.tpl.php:59
7129
- #, fuzzy
7130
  msgctxt "templates"
7131
  msgid "Image height:"
7132
- msgstr "Alto de imagen (en px):"
7133
 
7134
  #: templates/submit-listing/images.tpl.php:4
7135
  msgctxt "templates"
@@ -7163,13 +7191,15 @@ msgstr "* Indica campos obligatorios."
7163
  #: themes/default/templates/excerpt_content.tpl.php:13
7164
  msgctxt "themes/default"
7165
  msgid "Address"
7166
- msgstr ""
7167
 
7168
  #: vendors/edd/EDD_SL_Plugin_Updater.php:178
7169
  msgid ""
7170
  "There is a new version of %1$s available. <a target=\"_blank\" class="
7171
  "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
7172
  msgstr ""
 
 
7173
 
7174
  #: vendors/edd/EDD_SL_Plugin_Updater.php:185
7175
  msgid ""
@@ -7177,10 +7207,13 @@ msgid ""
7177
  "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
7178
  "\">update now</a>."
7179
  msgstr ""
 
 
 
7180
 
7181
  #: vendors/edd/EDD_SL_Plugin_Updater.php:325
7182
  msgid "You do not have permission to install plugin updates"
7183
- msgstr ""
7184
 
7185
  #: vendors/edd/EDD_SL_Plugin_Updater.php:325
7186
  msgid "Error"
@@ -7206,6 +7239,10 @@ msgstr "D. Rodenbaugh"
7206
  msgid "http://businessdirectoryplugin.com"
7207
  msgstr "http://businessdirectoryplugin.com"
7208
 
 
 
 
 
7209
  #~ msgctxt "formfields-preview"
7210
  #~ msgid ""
7211
  #~ "This is a preview of the form as it will appear during \"Submit a Listing"
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 4.0.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-09-20 02:40:34+00:00\n"
8
+ "PO-Revision-Date: 2016-09-19 12:18-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language: es_ES\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.8.9\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-Bookmarks: -1,-1,-1,-1,-1,-1,-1,-1,-1,543\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
29
  "its respective fee) is required in order to determine the features available "
30
  "to this listing, as well as handling renewals."
31
  msgstr ""
32
+ "Este listado no tiene ninguna categoría asignada. Al menos una categoría (y "
33
+ "su respectiva comisión) es requerida para determinar las características "
34
+ "disponibles para el listado, así como gestionar las renovaciones."
35
 
36
  #: admin/class-admin-listings.php:138
37
  msgid "Listing Information"
124
  msgid "Renew Listing"
125
  msgstr "Renovar Listado"
126
 
127
+ #: admin/class-admin.php:102
128
+ msgid ""
129
+ "Preview is only available after you've saved the first draft. This is due\n"
130
+ "to how WordPress stores the data."
131
+ msgstr ""
132
+ "Debido a la forma en que WordPress almacena la información, la per-"
133
+ "visualización está disponible solo después de que se guarde el primer "
134
+ "borrador."
135
+
136
+ #: admin/class-admin.php:135
137
  msgctxt "drip pointer"
138
  msgid ""
139
  "Find out how to create a compelling, thriving business directory from "
144
  "cero en este curso GRATUITO por e-mail de 5 partes. Obtenga un módulo "
145
  "premium GRATIS solo por inscribirse."
146
 
147
+ #: admin/class-admin.php:137
148
  msgctxt "drip pointer"
149
  msgid "Email Address:"
150
  msgstr "Correo electrónico:"
151
 
152
+ #: admin/class-admin.php:143
153
  msgctxt "drip pointer"
154
  msgid "Want to know the Secrets of Building an Awesome Business Directory?"
155
  msgstr ""
156
  "Quiere conocer los secretos para crear un Directorio de Negocios "
157
  "impresionante?"
158
 
159
+ #: admin/class-admin.php:145
160
  msgctxt "drip pointer"
161
  msgid "Yes, please!"
162
  msgstr "Sí, por favor!"
163
 
164
+ #: admin/class-admin.php:147
165
  msgctxt "drip pointer"
166
  msgid "No, thanks"
167
  msgstr "No, gracias"
168
 
169
+ #: admin/class-admin.php:164
170
  msgctxt "admin"
171
  msgid "Business Directory"
172
  msgstr "Directorio de Negocios"
173
 
174
+ #: admin/class-admin.php:175
175
  msgctxt "admin"
176
  msgid "You're all set. Visit your new <a>Business Directory</a> page."
177
  msgstr ""
178
  "Está todo listo. Visite la página de su nuevo <a>Directorio de Negocios</a>."
179
 
180
+ #: admin/class-admin.php:196
181
  msgctxt "drip pointer"
182
  msgid "Invalid e-mail address."
183
  msgstr "Dirección de correo-e inválida."
184
 
185
+ #: admin/class-admin.php:230
186
  msgctxt "admin menu"
187
  msgid "Business Directory Admin"
188
  msgstr "Gestión de Directorio de Negocios"
189
 
190
+ #: admin/class-admin.php:231
 
191
  msgctxt "admin menu"
192
  msgid "Dir. Admin"
193
+ msgstr "Gestión de Dir."
194
 
195
+ #: admin/class-admin.php:231
196
  msgctxt "admin menu"
197
  msgid "Directory Admin"
198
  msgstr "Gestión de Directorio"
199
 
200
+ #: admin/class-admin.php:237 admin/class-admin.php:238
201
  msgctxt "admin menu"
202
  msgid "Add New Listing"
203
  msgstr "Agregar Nuevo Listado"
204
 
205
+ #: admin/class-admin.php:243 admin/class-admin.php:244
206
  msgctxt "admin menu"
207
  msgid "Manage Options"
208
  msgstr "Configuraciones"
209
 
210
+ #: admin/class-admin.php:249 admin/class-admin.php:250
211
  msgctxt "admin menu"
212
  msgid "Manage Fees"
213
  msgstr "Administrar Comisiones"
214
 
215
+ #: admin/class-admin.php:255 admin/class-admin.php:256
216
  msgctxt "admin menu"
217
  msgid "Manage Form Fields"
218
  msgstr "Administrar Campos de Formulario"
219
 
220
+ #: admin/class-admin.php:261 admin/class-admin.php:262
221
  msgctxt "admin menu"
222
  msgid "Listings"
223
  msgstr "Listados"
224
 
225
+ #: admin/class-admin.php:276 admin/class-admin.php:277
226
  msgctxt "admin menu"
227
  msgid "CSV Import"
228
  msgstr "Importar CSV"
229
 
230
+ #: admin/class-admin.php:282 admin/class-admin.php:283
231
  msgctxt "admin menu"
232
  msgid "CSV Export"
233
  msgstr "Exportar CSV"
234
 
235
+ #: admin/class-admin.php:288 admin/class-admin.php:289
236
  msgctxt "admin menu"
237
  msgid "Debug"
238
  msgstr "Depuración"
239
 
240
+ #: admin/class-admin.php:298
241
  msgctxt "admin menu"
242
  msgid "Main Menu"
243
  msgstr "Menú Principal"
244
 
245
+ #: admin/class-admin.php:309
246
  msgctxt "admin menu"
247
  msgid "Uninstall Business Directory Plugin"
248
  msgstr "Desinstalar Business Directory Plugin"
249
 
250
+ #: admin/class-admin.php:310
251
  msgctxt "admin menu"
252
  msgid "Uninstall"
253
  msgstr "Desinstalar"
254
 
255
+ #: admin/class-admin.php:424
256
  #: admin/templates/listing-metabox-categories.tpl.php:69
257
  msgctxt "admin infometabox"
258
  msgid "never"
259
  msgstr "nunca"
260
 
261
+ #: admin/class-admin.php:518
262
  msgctxt "admin"
263
  msgid "Dismiss this notice."
264
+ msgstr "Ignorar."
265
 
266
+ #: admin/class-admin.php:546
267
  msgctxt "admin"
268
  msgid "The listing has been published."
269
  msgid_plural "The listings have been published."
270
  msgstr[0] "El listado ha sido publicado."
271
  msgstr[1] "Los listados han sido publicados."
272
 
273
+ #: admin/class-admin.php:564
274
  msgctxt "admin"
275
  msgid "The listing status has been set as paid."
276
  msgid_plural "The listings status has been set as paid."
277
  msgstr[0] "El listado se ha marcado como pagado."
278
  msgstr[1] "Los listados se han marcado como pagados."
279
 
280
+ #: admin/class-admin.php:570
281
  msgctxt "admin"
282
  msgid ""
283
  "Only invoices containing non-recurring items were marked as paid. Please "
287
  "Only invoices containing non-recurring items were marked as paid. Recurring "
288
  "payments have to be managed through the gateway."
289
  msgstr[0] ""
290
+ "Únicamente facturas conteniendo items no auto-renovados fueron marcadas como "
291
+ "pagadas. Por favor revise el tab de <a>Transacciones</a> del listado para "
292
+ "gestionar los items recurrentes, o revise el panel de administración de la "
293
+ "pasarela de pago."
294
  msgstr[1] ""
295
+ "Únicamente facturas conteniendo items no auto-renovados fueron marcadas como "
296
+ "pagadas. Los items recurrentes deben ser manejados a través de la pasarela "
297
+ "de pago."
298
 
299
+ #: admin/class-admin.php:589
300
  msgctxt "admin"
301
  msgid "The listing has been modified."
302
  msgid_plural "The listings have been modified."
303
  msgstr[0] "El listado ha sido modificado."
304
  msgstr[1] "Los listados han sido modificados."
305
 
306
+ #: admin/class-admin.php:602
307
  msgctxt "admin"
308
  msgid "The listing has been upgraded."
309
  msgid_plural "The listings have been upgraded."
310
  msgstr[0] "El listado ha sido mejorado."
311
  msgstr[1] "Los listados han sido mejorados."
312
 
313
+ #: admin/class-admin.php:614
314
  msgctxt "admin"
315
  msgid "The listing has been downgraded."
316
  msgid_plural "The listings have been downgraded."
317
  msgstr[0] "El listado ha sido degradado."
318
  msgstr[1] "Los listados han sido degradados."
319
 
320
+ #: admin/class-admin.php:625
321
  msgctxt "admin payments"
322
  msgid ""
323
  "The payment status was not changed. Recurring payments can't be manually "
324
  "approved. Please check your gateway's backend to see if the payment really "
325
  "went through."
326
  msgstr ""
327
+ "El estado del pago no fue cambiado. Pagos recurrentes no pueden ser "
328
+ "manualmente aprobados. Por favor revise el panel de administración de la "
329
+ "pasarela de pago para revisar si el pago sí se hizo efectivo."
330
 
331
+ #: admin/class-admin.php:630
332
  msgctxt "admin"
333
  msgid "The transaction has been approved."
334
  msgstr "La transacción ha sido aprobada."
335
 
336
+ #: admin/class-admin.php:640
337
  msgctxt "admin"
338
  msgid "The transaction has been rejected."
339
  msgstr "La transacción ha sido rechazada."
340
 
341
+ #: admin/class-admin.php:646
342
  msgctxt "admin"
343
  msgid "The fee was successfully assigned."
344
  msgstr "La comisión se asignó satisfactoriamente."
345
 
346
+ #: admin/class-admin.php:655
347
  msgctxt "admin"
348
  msgid "Listing was renewed."
349
  msgid_plural "Listings were renewed."
350
  msgstr[0] "El listado ha sido renovado."
351
  msgstr[1] "Los listados fueron renovados."
352
 
353
+ #: admin/class-admin.php:662
354
  msgctxt "admin"
355
  msgid "Renewal email sent."
356
  msgstr "Mensaje de correo electrónico de renovación enviado."
357
 
358
+ #: admin/class-admin.php:696
359
  msgctxt "admin category id"
360
  msgid "ID"
361
  msgstr "ID"
362
 
363
+ #: admin/class-admin.php:698 admin/class-admin.php:704
364
  msgctxt "admin"
365
  msgid "Listing Count"
366
  msgstr "Conteo de Listados"
367
 
368
+ #: admin/class-admin.php:813
369
  msgctxt "admin"
370
  msgid ""
371
  "<b>Business Directory Plugin</b> requires fields with the following "
374
  "<b>Business Directory Plugin</b> requiere campos con las siguientes "
375
  "asociaciones para funcionar correctamente: <b>%s</b>."
376
 
377
+ #: admin/class-admin.php:815
378
  msgctxt "admin"
379
  msgid ""
380
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
383
  "<b>Business Directory Plugin</b> requiere un campo con la asociación <b>%s</"
384
  "b> para funcionar correctamente."
385
 
386
+ #: admin/class-admin.php:819
387
  msgctxt "admin"
388
  msgid ""
389
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
392
  "Puede crear estos campos usted mismo en \"Administrar Campos de Formulario\" "
393
  "o puede dejar que Business Directory haga esto por usted automáticamente."
394
 
395
+ #: admin/class-admin.php:823
396
  msgctxt "admin"
397
  msgid "Go to \"Manage Form Fields\""
398
  msgstr "Ir a \"Administrar Campos de Formulario\""
399
 
400
+ #: admin/class-admin.php:826
401
  msgctxt "admin"
402
  msgid "Create these required fields for me"
403
  msgstr "Crear estos campos requeridos por mi"
404
 
405
+ #: admin/class-admin.php:835
406
  msgctxt "admin"
407
  msgid ""
408
  "<b>Business Directory Plugin</b> requires a page with the "
411
  "<b>Business Directory Plugin</b> requiere una página con el shortcode "
412
  "<tt>[businessdirectory]</tt> para funcionar adecuadamente."
413
 
414
+ #: admin/class-admin.php:837
415
  msgctxt "admin"
416
  msgid ""
417
  "You can create this page by yourself or let Business Directory do this for "
420
  "Puede crear esta página usted mismo o dejar que Business Directory lo haga "
421
  "por usted automáticamente."
422
 
423
+ #: admin/class-admin.php:841
424
  msgctxt "admin"
425
  msgid "Create required pages for me"
426
  msgstr "Crear las páginas requeridas por mi"
427
 
428
+ #: admin/class-admin.php:881
429
  msgctxt "admin compat"
430
  msgid "Installed: %s"
431
  msgstr "Instalado: %s"
432
 
433
+ #: admin/class-admin.php:881
434
  msgctxt "admin compat"
435
  msgid "N/A"
436
  msgstr "N/A"
437
 
438
+ #: admin/class-admin.php:884
439
  msgctxt "admin compat"
440
  msgid "Required: %s"
441
  msgstr "Requerido: %s"
442
 
443
+ #: admin/class-admin.php:896
444
  msgctxt "admin compat"
445
  msgid ""
446
  "Business Directory has detected some incompatible premium module versions "
449
  "Business Directory ha detectado algunas versiones incompatibles de módulos "
450
  "instaladas."
451
 
452
+ #: admin/class-admin.php:898
453
  msgctxt "admin compat"
454
  msgid ""
455
  "Please upgrade to the required versions indicated below to make sure "
458
  "Por favor actualice a las versiones requeridas indicadas abajo para "
459
  "asegurarse de que todo funcione correctamente."
460
 
461
+ #: admin/class-admin.php:918
462
  msgctxt "admin"
463
  msgid ""
464
  "We noticed you want your Business Directory users to register before posting "
490
  #: admin/class-themes-admin.php:47
491
  msgctxt "themes"
492
  msgid "Directory Themes"
493
+ msgstr "Temas del Directorio"
494
 
495
  #: admin/class-themes-admin.php:48
496
  msgctxt "themes"
497
  msgid "Directory Themes %s"
498
+ msgstr "Temas del Directorio %s"
499
 
500
  #: admin/class-themes-admin.php:94
501
  msgctxt "admin themes"
502
  msgid ""
503
  "Business Directory Plugin - Your template overrides need to be reviewed!"
504
  msgstr ""
505
+ "Business Directory Plugin - ¡Las plantillas que sobreescribió deben ser "
506
+ "revisadas!"
507
 
508
  #: admin/class-themes-admin.php:96
509
  msgctxt "admin themes"
511
  "Starting with version 4.0, Business Directory is using a new theming system "
512
  "that is not compatible with the templates used in previous versions."
513
  msgstr ""
514
+ "A partir de la versión 4.0, Business Directory utiliza un nuevo sistema de "
515
+ "plantillas y temas que no es compatible con las plantillas utilizadas en "
516
+ "versiones previas."
517
 
518
  #: admin/class-themes-admin.php:98
519
  msgctxt "admin themes"
522
  "should <a>review our documentation on customization</a> in order adjust your "
523
  "templates."
524
  msgstr ""
525
+ "Debido a esto, las plantillas que sobreescribió han sido deshabilitadas. "
526
+ "Debe <a>revisar nuestra documentación</a> para ajustar sus plantillas."
527
 
528
  #: admin/class-themes-admin.php:127
529
  msgctxt "admin themes"
531
  "You need to <a>activate your theme's license key</a> before you can activate "
532
  "the theme. <a>Click here</a> to do that."
533
  msgstr ""
534
+ "Debe <a>activar la clave de licencia del tema</a> antes de activar el tema. "
535
+ "Haga <a>click aquí</a>."
536
 
537
  #: admin/class-themes-admin.php:155
538
  msgctxt "themes"
539
  msgid "Could not change the active theme to \"%s\"."
540
+ msgstr "No se pudo cambiar el tema activo a \"%s\"."
541
 
542
  #: admin/class-themes-admin.php:202
543
  msgctxt "themes"
544
  msgid "Active theme changed to \"%s\"."
545
+ msgstr "Tema activo cambiado a \"%s\"."
546
 
547
  #: admin/class-themes-admin.php:205
548
  msgctxt "themes"
550
  "%s requires that you tag your existing fields to match some places we want "
551
  "to put your data on the theme. Below are fields we think are missing."
552
  msgstr ""
553
+ "%s requiere que etiquete algunos campos que corresponden a ciertos lugares "
554
+ "en el tema donde se pretende mostrar la información. Abajo están los campos "
555
+ "que creemos hacen falta."
556
 
557
  #: admin/class-themes-admin.php:214
 
558
  msgctxt "themes"
559
  msgid "Map My Fields"
560
+ msgstr "Asociar Mis Campos"
561
 
562
  #: admin/class-themes-admin.php:221
563
  msgctxt "themes"
564
  msgid "Suggested fields created successfully."
565
+ msgstr "Campos sugeridos creados satisfactoriamente."
566
 
567
  #: admin/class-themes-admin.php:224
568
  msgctxt "themes"
569
  msgid "Theme installed successfully."
570
+ msgstr "Tema instalado correctamente."
571
 
572
  #: admin/class-themes-admin.php:227
573
  msgctxt "themes"
574
  msgid "Theme was deleted sucessfully."
575
+ msgstr "Tema eliminado correctamente."
576
 
577
  #: admin/class-themes-admin.php:230
578
  msgctxt "themes"
579
  msgid "Could not delete theme directory. Check permissions."
580
+ msgstr "No se pudo eliminar el directorio del tema. Revise los permisos."
581
 
582
  #: admin/class-themes-admin.php:256
583
  msgctxt "themes"
584
  msgid "Please upload a valid theme file."
585
+ msgstr "Por favor suba un archivo de tema válido."
586
 
587
  #: admin/class-themes-admin.php:263
588
  msgctxt "themes"
589
  msgid "Could not move \"%s\" to a temporary directory."
590
+ msgstr "No se pudo mover \"%s\" a un directorio temporal."
591
 
592
  #: admin/class-themes-admin.php:364 admin/class-themes-admin.php:425
593
  #: core/licensing.php:127 core/licensing.php:159
614
  #: admin/class-themes-admin.php:431
615
  msgctxt "licensing"
616
  msgid "Invalid response from server"
617
+ msgstr "Respuesta inválida de parte de servidor"
618
 
619
  #: admin/class-themes-admin.php:448 core/licensing.php:353
620
  msgctxt "licensing"
624
  #: admin/class-themes-admin.php:464
625
  msgctxt "themes"
626
  msgid "Activate your <a>license key</a> to use this theme."
627
+ msgstr "Active su <a>clave de licencia</a> para utilizar este tema."
628
 
629
  #: admin/csv-export.php:136
630
  msgctxt "admin csv-export"
718
  msgctxt "fees admin"
719
  msgid "There are no fees right now. You can <a>create one</a>, if you want."
720
  msgstr ""
721
+ "No hay comisiones configuradas ahora. Puede <a>crear una</a> si lo desea."
722
 
723
  #: admin/fees.php:25 admin/fees.php:260
 
724
  msgctxt "fees admin"
725
  msgid "Active"
726
+ msgstr "Activas"
727
 
728
  #: admin/fees.php:28 admin/fees.php:258
 
729
  msgctxt "fees admin"
730
  msgid "Not Available"
731
+ msgstr "No Disponibles"
732
 
733
  #: admin/fees.php:31 admin/fees.php:255
 
734
  msgctxt "fees admin"
735
  msgid "Disabled"
736
+ msgstr "Deshabilitadas"
737
 
738
  #: admin/fees.php:39
739
  msgctxt "fees admin"
740
  msgid ""
741
  "There are no \"%s\" fees right now. You can <a>create one</a>, if you want."
742
+ msgstr "No hay comisiones \"%s\" ahora. Puede <a>crear una</a> si lo desea."
743
 
744
  #: admin/fees.php:56
 
745
  msgctxt "admin fees table"
746
  msgid "All"
747
+ msgstr "Todas"
748
 
749
  #: admin/fees.php:68
 
750
  msgctxt "admin fees table"
751
  msgid "Active"
752
+ msgstr "Activas"
753
 
754
  #: admin/fees.php:78
 
755
  msgctxt "admin fees table"
756
  msgid "Not Available"
757
+ msgstr "No Disponibles"
758
 
759
  #: admin/fees.php:85
 
760
  msgctxt "admin fees table"
761
  msgid "Disabled"
762
+ msgstr "Deshabilitadas"
763
 
764
  #: admin/fees.php:94
765
  msgctxt "fees admin"
782
  msgstr "No. de Imágenes"
783
 
784
  #: admin/fees.php:98
 
785
  msgctxt "fees admin"
786
  msgid "Featured/Sticky"
787
+ msgstr "Destacado"
788
 
789
  #: admin/fees.php:102
 
790
  msgctxt "fees admin"
791
  msgid "Status"
792
  msgstr "Estado"
799
  "available when the directory is in Free mode. You can always create other "
800
  "fee plans, including ones for 0.00 (free) if you wish."
801
  msgstr ""
802
+ "Este es el plan de comisión gratuito por defecto. No se puede eliminar y es "
803
+ "siempre gratis, pero puede editar su nombre y demás configuraciones. Está "
804
+ "disponible únicamente cuando el directorio opera en modo gratuito. Siempre "
805
+ "puede crear otras comisiones, incluyendo gratuitas (0.00) si lo desea."
806
 
807
  #: admin/fees.php:187
808
  msgctxt "fees admin"
812
  #: admin/fees.php:197
813
  msgctxt "fees admin"
814
  msgid "Disable"
815
+ msgstr "Deshabilitar"
816
 
817
  #: admin/fees.php:201
818
  msgctxt "fees admin"
819
  msgid "Enable"
820
+ msgstr "Habilitar"
821
 
822
  #: admin/fees.php:205
823
  msgctxt "fees admin"
851
  #: admin/fees.php:250
852
  msgctxt "fees admin"
853
  msgid "Yes"
854
+ msgstr ""
855
 
856
  #: admin/fees.php:250
 
857
  msgctxt "fees admin"
858
  msgid "No"
859
+ msgstr "No"
860
 
861
  #: admin/fees.php:285
 
862
  msgctxt "fees admin"
863
  msgid "Fee enabled."
864
+ msgstr "Comisión habilitada."
865
 
866
  #: admin/fees.php:293
 
867
  msgctxt "fees admin"
868
  msgid "Fee disabled."
869
+ msgstr "Comisión deshabilitada."
870
 
871
  #: admin/fees.php:318
872
  msgctxt "fees order"
1022
  #: admin/form-fields.php:285
1023
  msgctxt "form-fields admin"
1024
  msgid "Title"
1025
+ msgstr "Título"
1026
 
1027
  #: admin/form-fields.php:286
1028
  msgctxt "form-fields admin"
1029
  msgid "Category"
1030
+ msgstr "Categoría"
1031
 
1032
  #: admin/form-fields.php:287
1033
  msgctxt "form-fields admin"
1034
  msgid "Excerpt"
1035
+ msgstr "Resumen"
1036
 
1037
  #: admin/form-fields.php:288
1038
  msgctxt "form-fields admin"
1039
  msgid "Content"
1040
+ msgstr "Contenido"
1041
 
1042
  #: admin/form-fields.php:289
1043
  msgctxt "form-fields admin"
1044
  msgid "Tags"
1045
+ msgstr "Etiquetas"
1046
 
1047
  #: admin/form-fields.php:290
1048
  msgctxt "form-fields admin"
1049
  msgid "Address"
1050
+ msgstr "Dirección"
1051
 
1052
  #: admin/form-fields.php:291
 
1053
  msgctxt "form-fields admin"
1054
  msgid "City"
1055
+ msgstr "Ciudad"
1056
 
1057
  #: admin/form-fields.php:292
 
1058
  msgctxt "form-fields admin"
1059
  msgid "State"
1060
+ msgstr "Estado"
1061
 
1062
  #: admin/form-fields.php:293
1063
  msgctxt "form-fields admin"
1064
  msgid "ZIP Code"
1065
+ msgstr "Código Postal"
1066
 
1067
  #: admin/form-fields.php:294
1068
  msgctxt "form-fields admin"
1069
  msgid "FAX Number"
1070
+ msgstr "Número de Fax"
1071
 
1072
  #: admin/form-fields.php:295
1073
  msgctxt "form-fields admin"
1074
  msgid "Phone Number"
1075
+ msgstr "Número telefónico"
1076
 
1077
  #: admin/form-fields.php:296
1078
  msgctxt "form-fields admin"
1079
  msgid "Ratings Field"
1080
+ msgstr "Campo de ratings"
1081
 
1082
  #: admin/form-fields.php:297
1083
  msgctxt "form-fields admin"
1084
  msgid "Twitter"
1085
+ msgstr "Twitter"
1086
 
1087
  #: admin/form-fields.php:298
1088
  msgctxt "form-fields admin"
1089
  msgid "Website"
1090
+ msgstr "Sitio web"
1091
 
1092
  #: admin/form-fields.php:319
1093
  msgctxt "form-fields admin"
1094
  msgid "Tags updated."
1095
+ msgstr "Etiquetas actualizadas."
1096
 
1097
  #: admin/listing-metabox.php:11
1098
  msgctxt "admin"
1117
  #: admin/listing-metabox.php:44
1118
  msgctxt "admin infometabox"
1119
  msgid "Access Key"
1120
+ msgstr "Clave de acceso"
1121
 
1122
  #: admin/listing-metabox.php:46
1123
  msgctxt "admin infometabox"
1176
  #: admin/page-debug.php:75
1177
  msgctxt "debug info"
1178
  msgid "Test SSL setup..."
1179
+ msgstr "Probar configuración SSL..."
1180
 
1181
  #: admin/templates/csv-export.tpl.php:9
1182
  msgctxt "admin csv-export"
1415
  "por favor revise que tenga suficiente espacio en disco y memoria disponible "
1416
  "para PHP. Revise los registros de su servidor para detalles."
1417
 
1418
+ #: admin/templates/csv-import-progress.tpl.php:13
1419
+ #: admin/templates/csv-import-progress.tpl.php:20
 
 
 
 
 
1420
  msgctxt "admin csv-import"
1421
  msgid "← Return to CSV Import"
1422
  msgstr "← Regresar a \"Importar CSV\""
1423
 
1424
+ #: admin/templates/csv-import-progress.tpl.php:18
1425
  msgctxt "admin csv-import"
1426
  msgid "Import Canceled"
1427
  msgstr "Importación Cancelada"
1428
 
1429
+ #: admin/templates/csv-import-progress.tpl.php:19
1430
  msgctxt "admin csv-import"
1431
  msgid "The import has been canceled."
1432
  msgstr "La importación ha sido cancelada."
1433
 
1434
+ #: admin/templates/csv-import-progress.tpl.php:26
1435
  msgid "Import Progress"
1436
  msgstr "Progreso de Importación"
1437
 
1438
+ #: admin/templates/csv-import-progress.tpl.php:29
1439
  msgctxt "admin csv-import"
1440
  msgid "Files"
1441
  msgstr "Archivos"
1442
 
1443
+ #: admin/templates/csv-import-progress.tpl.php:32
1444
  msgctxt "admin csv-import"
1445
  msgid "Rows in file"
1446
  msgstr "Filas en el archivo"
1447
 
1448
+ #: admin/templates/csv-import-progress.tpl.php:35
1449
  msgctxt "admin csv-import"
1450
  msgid "Progress"
1451
  msgstr "Progreso"
1452
 
1453
+ #: admin/templates/csv-import-progress.tpl.php:39
1454
  msgctxt "admin csv-import"
1455
  msgid "Import has not started. Click \"Start Import\" to begin."
1456
  msgstr ""
1457
  "La importación no ha comenzado. Haga clic en \"Iniciar Importación\" para "
1458
  "comenzar."
1459
 
1460
+ #: admin/templates/csv-import-progress.tpl.php:40
1461
  msgctxt "admin csv-import"
1462
  msgid "Importing CSV file..."
1463
  msgstr "Importando archivo CSV..."
1464
 
1465
+ #: admin/templates/csv-import-progress.tpl.php:46
1466
  msgctxt "admin csv-import"
1467
  msgid "Start Import"
1468
  msgstr "Iniciar Importación"
1469
 
1470
+ #: admin/templates/csv-import-progress.tpl.php:47
1471
  msgctxt "admin csv-import"
1472
  msgid "Cancel Import"
1473
  msgstr "Cancelar Importación"
1474
 
1475
+ #: admin/templates/csv-import-progress.tpl.php:54
1476
  msgctxt "admin csv-import"
1477
  msgid "Import finished"
1478
  msgstr "Importación terminada"
1479
 
1480
+ #: admin/templates/csv-import-progress.tpl.php:57
1481
  msgctxt "admin csv-import"
1482
  msgid "Import was completed successfully."
1483
  msgstr "La importación se completó satisfactoriamente."
1484
 
1485
+ #: admin/templates/csv-import-progress.tpl.php:61
1486
  msgctxt "admin csv-import"
1487
  msgid "Import was completed but some rows were rejected."
1488
  msgstr "La importación se completó con algunas filas rechazadas."
1489
 
1490
+ #: admin/templates/csv-import-progress.tpl.php:64
1491
  msgctxt "admin csv-import"
1492
  msgid "Import Summary"
1493
  msgstr "Resumen de la Importación"
1494
 
1495
+ #: admin/templates/csv-import-progress.tpl.php:66
1496
  msgctxt "admin csv-import"
1497
  msgid "Rows in file:"
1498
  msgstr "Filas en el archivo:"
1499
 
1500
+ #: admin/templates/csv-import-progress.tpl.php:69
1501
  msgctxt "admin csv-import"
1502
  msgid "Imported rows:"
1503
  msgstr "Filas importadas:"
1504
 
1505
+ #: admin/templates/csv-import-progress.tpl.php:72
1506
  msgctxt "admin csv-import"
1507
  msgid "Rejected rows:"
1508
  msgstr "Filas rechazadas:"
1509
 
1510
+ #: admin/templates/csv-import-progress.tpl.php:77
1511
  msgctxt "admin csv-import"
1512
  msgid "Import Warnings"
1513
  msgstr "Errores de Importación"
1514
 
1515
+ #: admin/templates/csv-import-progress.tpl.php:80
1516
  msgctxt "admin csv-import"
1517
  msgid "Line #"
1518
  msgstr "Línea #"
1519
 
1520
+ #: admin/templates/csv-import-progress.tpl.php:81
1521
  msgctxt "admin csv-import"
1522
  msgid "Line"
1523
  msgstr "Línea"
1524
 
1525
+ #: admin/templates/csv-import-progress.tpl.php:82
1526
  msgctxt "admin csv-import"
1527
  msgid "Warning"
1528
  msgstr "Advertencia"
1648
  msgstr "Asignar listados a un usuario."
1649
 
1650
  #: admin/templates/csv-import.tpl.php:193
 
1651
  msgctxt "admin csv-import"
1652
  msgid "Use a default user for listings?"
1653
+ msgstr "¿Utilizar un usuario por defecto para los listados?"
1654
 
1655
  #: admin/templates/csv-import.tpl.php:199
 
1656
  msgctxt "admin csv-import"
1657
  msgid ""
1658
  "Select a default user to be used if the username column is not present in "
1659
  "the CSV file."
1660
  msgstr ""
1661
+ "Elija un usuario por defecto para utilizar si la columna \"username\" no "
1662
+ "está presente en el archivo CSV."
1663
 
1664
  #: admin/templates/csv-import.tpl.php:204
1665
  msgctxt "admin csv-import"
1831
  msgstr "Número de imágenes permitidas"
1832
 
1833
  #: admin/templates/fees-addoredit.tpl.php:94
 
1834
  msgctxt "fees admin"
1835
  msgid "Is featured listing/sticky?"
1836
+ msgstr "¿Es destacado?"
1837
 
1838
  #: admin/templates/fees-addoredit.tpl.php:102
1839
  msgctxt "fees admin"
1841
  "This floats the listing to the top of search results and browsing the "
1842
  "directory when the user buys this plan."
1843
  msgstr ""
1844
+ "Hace que el listado aparezca arriba en los resultados de búsqueda y mientras "
1845
+ "se explore el directorio."
1846
 
1847
  #: admin/templates/fees-addoredit.tpl.php:107
1848
  msgctxt "fees admin"
1856
  msgstr "* Todas las Categorías *"
1857
 
1858
  #: admin/templates/fees-addoredit.tpl.php:128
 
1859
  msgctxt "fees admin"
1860
  msgid "Fee Description"
1861
+ msgstr "Descripción de la comisión"
1862
 
1863
  #: admin/templates/fees-addoredit.tpl.php:143
1864
  msgctxt "fees admin"
1942
  "the <a>Not Available</a> filter will become active when you change the "
1943
  "payment mode."
1944
  msgstr ""
1945
+ "Estos son todos los planes de comisión disponibles para un usuario cuando "
1946
+ "envíe su listado. El modo actual de \"%s\" restringe lo que se ve aquí. "
1947
+ "Aquellos planes en el filtro <a>No Disponible</a> se volverán activos cuando "
1948
+ "cambie el modo de pago del directorio."
1949
 
1950
  #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
1951
  #: admin/templates/fees.tpl.php:77
 
1952
  msgctxt "fees admin"
1953
  msgid "Paid"
1954
+ msgstr "Pagado"
1955
 
1956
  #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
1957
  #: admin/templates/fees.tpl.php:77
 
1958
  msgctxt "fees admin"
1959
  msgid "Free"
1960
  msgstr "Gratuito"
1966
  "\" mode. Those on the Active filter will become Not Available when you "
1967
  "change the payment mode."
1968
  msgstr ""
1969
+ "Estos son todas las comisiones que no están disponibles porque el directorio "
1970
+ "opera en modo \"%s\". Aquellas en el filtro Activas se convertirán en No "
1971
+ "Disponibles cuando cambie el modo."
1972
 
1973
  #: admin/templates/fees.tpl.php:66
1974
  msgctxt "fees admin"
1976
  "These fee plans were disabled by the admin and will not show to the end user "
1977
  "regardless of mode until you enable them."
1978
  msgstr ""
1979
+ "Estas comisiones fueron deshabilitadas por el administrador y no se "
1980
+ "mostrarán al usuario sin importar el modo de operación del directorio."
1981
 
1982
  #: admin/templates/fees.tpl.php:74
1983
  msgctxt "fees admin"
1986
  "available for the current mode (currently set to \"%s\"). To see the fee "
1987
  "plans for this mode click <a>Active</a>."
1988
  msgstr ""
1989
+ "Estos son todas las comisiones que tiene configuradas. No todas están "
1990
+ "disponibles para el modo actual (ahora \"%s\"). Para ver todos los planes "
1991
+ "para este modo haga click en <a>Activas</a>."
1992
 
1993
  #: admin/templates/fees.tpl.php:89 admin/templates/sidebar.tpl.php:13
1994
  msgctxt "admin sidebar"
2051
  #: admin/templates/form-fields-addoredit.tpl.php:14
2052
  #: admin/templates/form-fields-addoredit.tpl.php:36
2053
  #: admin/templates/form-fields-addoredit.tpl.php:60
 
2054
  msgctxt "form-fields admin"
2055
  msgid "required"
2056
  msgstr "requerido"
2071
  msgstr "Descripción del Campo"
2072
 
2073
  #: admin/templates/form-fields-addoredit.tpl.php:70
 
2074
  msgctxt "form-fields admin"
2075
  msgid "optional"
2076
+ msgstr "opcional"
2077
 
2078
  #: admin/templates/form-fields-addoredit.tpl.php:87
2079
  msgctxt "form-fields admin"
2178
  #: admin/templates/form-fields-tags.tpl.php:5
2179
  msgctxt "form-fields admin"
2180
  msgid "-- None --"
2181
+ msgstr "— Ninguno --"
2182
 
2183
  #: admin/templates/form-fields-tags.tpl.php:14
2184
  msgctxt "form-fields admin"
2185
  msgid "Theme Tags"
2186
+ msgstr "Etiquetas de Tema"
2187
 
2188
  #: admin/templates/form-fields-tags.tpl.php:19
2189
  msgctxt "form-fields admin"
2191
  "Before you create fields, make sure you've mapped all of your EXISTING ones "
2192
  "first, otherwise you'll appear to be \"missing data\" on your listings."
2193
  msgstr ""
2194
+ "Antes de crear los campos, revise si no ha asociado ya todos sus campos "
2195
+ "existentes primero. De lo contrario, parecerá que a sus listados les hace "
2196
+ "falta información."
2197
 
2198
  #: admin/templates/form-fields-tags.tpl.php:22
 
2199
  msgctxt "form-fields admin"
2200
  msgid "Create Missing Fields"
2201
+ msgstr "Crear campos faltantes"
2202
 
2203
  #: admin/templates/form-fields-tags.tpl.php:30
2204
  msgctxt "form-fields admin"
2205
  msgid "Field Tag"
2206
+ msgstr "Etiqueta de Campo"
2207
 
2208
  #: admin/templates/form-fields-tags.tpl.php:31
2209
  msgctxt "form-fields admin"
2210
  msgid "Field"
2211
+ msgstr "Campo"
2212
 
2213
  #: admin/templates/form-fields.tpl.php:3
2214
  msgctxt "form-fields admin"
2223
  #: admin/templates/form-fields.tpl.php:6 admin/templates/themes.tpl.php:4
2224
  msgctxt "form-fields admin"
2225
  msgid "Manage Theme Tags"
2226
+ msgstr "Administrar Etiquetas del Tema"
2227
 
2228
  #: admin/templates/form-fields.tpl.php:12
2229
  msgctxt "form-fields admin"
2243
  "Por favor vea la <a>documentación de Campos de Formulario</a> para más "
2244
  "detalles."
2245
 
2246
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.2) #-#-#-#-#
2247
  #. Plugin Name of the plugin/theme
2248
  #: admin/templates/header.tpl.php:4
2249
  msgid "Business Directory Plugin"
2594
  #: admin/templates/settings-reset.tpl.php:11
2595
  msgid "Please note that all of your existing settings will be lost."
2596
  msgstr ""
2597
+ "Por favor considere que todas sus configuraciones actuales se perderán."
2598
 
2599
  #: admin/templates/settings-reset.tpl.php:17
2600
  msgid "Reset Defaults"
2654
  msgstr "Google Maps Module"
2655
 
2656
  #: admin/templates/sidebar.tpl.php:18
 
2657
  msgctxt "admin sidebar"
2658
  msgid "Business Card Theme"
2659
+ msgstr ""
2660
 
2661
  #: admin/templates/sidebar.tpl.php:19
2662
  msgctxt "admin sidebar"
2669
  msgstr ""
2670
 
2671
  #: admin/templates/sidebar.tpl.php:21
 
2672
  msgctxt "admin sidebar"
2673
  msgid "Tabbed Business Theme"
2674
+ msgstr ""
2675
 
2676
  #: admin/templates/sidebar.tpl.php:22
 
2677
  msgctxt "admin sidebar"
2678
  msgid "Elegant Business Theme"
2679
+ msgstr ""
2680
 
2681
  #: admin/templates/sidebar.tpl.php:29
2682
  msgctxt "admin sidebar"
2712
  #: admin/templates/sidebar.tpl.php:45 admin/templates/sidebar.tpl.php:61
2713
  msgctxt "admin sidebar"
2714
  msgid "best deal"
2715
+ msgstr "mejor precio"
2716
 
2717
  #: admin/templates/sidebar.tpl.php:45
2718
  msgctxt "admin sidebar"
2720
  msgstr ""
2721
 
2722
  #: admin/templates/sidebar.tpl.php:45
 
2723
  msgctxt "admin sidebar"
2724
  msgid "(All Modules)"
2725
+ msgstr "(Todos los módulos)"
2726
 
2727
  #: admin/templates/sidebar.tpl.php:48 admin/templates/sidebar.tpl.php:64
2728
  msgctxt "admin sidebar"
2729
  msgid "new"
2730
+ msgstr "nuevo"
2731
 
2732
  #: admin/templates/sidebar.tpl.php:58
 
2733
  msgctxt "admin sidebar"
2734
  msgid "Get a Directory Theme"
2735
+ msgstr "Obtener un tema del Directorio"
2736
 
2737
  #: admin/templates/sidebar.tpl.php:61
2738
  msgctxt "admin sidebar"
2742
  #: admin/templates/sidebar.tpl.php:61
2743
  msgctxt "admin sidebar"
2744
  msgid "(All Themes)"
2745
+ msgstr "(Todos los temas)"
2746
 
2747
  #: admin/templates/sidebar.tpl.php:74
2748
  msgctxt "admin sidebar"
2793
  #: admin/templates/themes-delete-confirm.tpl.php:13
2794
  msgctxt "themes admin"
2795
  msgid "Delete Directory Theme"
2796
+ msgstr "Eliminar Tema del Directorio"
2797
 
2798
  #: admin/templates/themes-delete-confirm.tpl.php:3
2799
  msgctxt "themes admin"
2800
  msgid "Are you sure you want to delete the directory theme \"%s\"?"
2801
+ msgstr "¿Está seguro de que desea eliminar el tema \"%s\"?"
2802
 
2803
  #: admin/templates/themes-delete-confirm.tpl.php:12
2804
  msgctxt "themes admin"
2809
  #: admin/templates/themes-licenses.tpl.php:3 admin/templates/themes.tpl.php:3
2810
  msgctxt "themes"
2811
  msgid "Upload Directory Theme"
2812
+ msgstr "Subir Tema de Directorio"
2813
 
2814
  #: admin/templates/themes-install.tpl.php:8
2815
  msgctxt "themes"
2816
  msgid "This is a theme or skin from %s and is NOT a regular WordPress theme."
2817
+ msgstr "Este es un tema de %s y NO es un tema regular de WordPress."
2818
 
2819
  #: admin/templates/themes-install.tpl.php:21
2820
  msgctxt "themes"
2821
  msgid "BD Theme archive (ZIP file)"
2822
+ msgstr "BD archivo de tema (ZIP)"
2823
 
2824
  #: admin/templates/themes-install.tpl.php:30
2825
  msgctxt "themes"
2826
  msgid "Begin Upload"
2827
+ msgstr "Iniciar subida"
2828
 
2829
  #: admin/templates/themes-item.tpl.php:3
2830
  msgctxt "themes"
2831
  msgid "Active:"
2832
+ msgstr "Activos:"
2833
 
2834
  #: admin/templates/themes-item.tpl.php:17
2835
  msgctxt "themes"
2836
  msgid "Activate"
2837
+ msgstr "Activar"
2838
 
2839
  #: admin/templates/themes-item.tpl.php:35
2840
  msgctxt "themes"
2841
  msgid "Version:"
2842
+ msgstr "Versión:"
2843
 
2844
  #: admin/templates/themes-item.tpl.php:38
2845
  msgctxt "themes"
2846
  msgid "Author:"
2847
+ msgstr "Autor:"
2848
 
2849
  #: admin/templates/themes-licenses.tpl.php:24
 
2850
  msgctxt "themes"
2851
  msgid "Deactivate License"
2852
  msgstr "Desactivar Licencia"
2853
 
2854
  #: admin/templates/themes-licenses.tpl.php:27
 
2855
  msgctxt "themes"
2856
  msgid "Deactivating license..."
2857
+ msgstr "Desactivando licencia"
2858
 
2859
  #: admin/templates/themes-licenses.tpl.php:29
 
2860
  msgctxt "themes"
2861
  msgid "Activate License"
2862
  msgstr "Activar Licencia"
2863
 
2864
  #: admin/templates/themes-licenses.tpl.php:30
 
2865
  msgctxt "themes"
2866
  msgid "Activating license..."
2867
  msgstr "Activando licencia..."
2868
 
2869
  #: admin/templates/themes-tabs.tpl.php:6
 
2870
  msgctxt "admin themes"
2871
  msgid "Available Themes"
2872
+ msgstr "Temas Disponibles"
2873
 
2874
  #: admin/templates/themes-tabs.tpl.php:7
 
2875
  msgctxt "admin themes"
2876
  msgid "Licenses"
2877
  msgstr "Licencias"
2878
 
2879
  #: admin/templates/themes.tpl.php:5
 
2880
  msgctxt "themes"
2881
  msgid "Settings"
2882
  msgstr "Configuración"
2888
  "Directory Plugin</i> to change the look of the directory quickly and easily. "
2889
  "We have a number of them available for purchase <a>here</a>."
2890
  msgstr ""
2891
+ "Los <a><b>Temas del Directorio</b></a> son plantillas prefabricadas para "
2892
+ "<i>Business Directory Plugin</i> que permiten cambiar la apariencia y "
2893
+ "comportamiento del directorio rápida y fácilmente. Tenemos varios temas "
2894
+ "disponibles para compra <a>aquí</a>."
2895
 
2896
  #: admin/templates/themes.tpl.php:16
2897
  msgctxt "themes"
2900
  "they are <strong>not</strong> a replacement for WP themes either. They will "
2901
  "change the look and feel of your business directory only."
2902
  msgstr ""
2903
+ "Son <strong>diferentes</strong> de los temas regulares de WordPress y "
2904
+ "<strong>no son</strong>un reemplazo de estos tampoco. Nuestros temas "
2905
+ "únicamente cambiarán la apariencia del directorio."
2906
 
2907
  #: admin/templates/transactions.tpl.php:2
2908
  msgctxt "admin transactions"
3012
  msgid "Allow Tracking"
3013
  msgstr "Permitir Seguimiento"
3014
 
3015
+ #: business-directory-plugin.php:666
3016
  msgctxt "admin plugins"
3017
  msgid "Settings"
3018
  msgstr "Configuración"
3019
 
3020
+ #: business-directory-plugin.php:774 business-directory-plugin.php:781
3021
  msgctxt "rss feed"
3022
  msgid "%s Feed"
3023
  msgstr "Feed %s"
3024
 
3025
+ #: business-directory-plugin.php:1119
3026
  msgctxt "title"
3027
  msgid "Submit A Listing"
3028
  msgstr "Enviar Un Listado"
3029
 
3030
+ #: business-directory-plugin.php:1129
3031
  msgctxt "title"
3032
  msgid "Find a Listing"
3033
  msgstr "Encontrar un listado"
3034
 
3035
+ #: business-directory-plugin.php:1139
3036
  msgctxt "title"
3037
  msgid "View All Listings"
3038
  msgstr "Ver Listados"
3039
 
3040
+ #: business-directory-plugin.php:1159
3041
  msgctxt "title"
3042
  msgid "Listings tagged: %s"
3043
  msgstr "Listados etiquetados: %s"
3044
 
3045
+ #: core/api.php:401
 
3046
  msgid "Free"
3047
  msgstr "Gratuito"
3048
 
3049
+ #: core/class-csv-import.php:394
3050
+ msgctxt "admin csv-import"
3051
+ msgid ""
3052
+ "Could not create listing category \"<category-name>\". The operation failed "
3053
+ "with the following error: <error-message>."
3054
+ msgstr ""
3055
+ "No fue posible crear la categoría “<category-name>”. La operación falló con "
3056
+ "el siguiente error: <error-message>."
3057
+
3058
+ #: core/class-csv-import.php:400
3059
  msgctxt "admin csv-import"
3060
  msgid "Could not create listing category \"%s\""
3061
  msgstr "No se pudo crear la categoría \"%s\""
3062
 
3063
+ #: core/class-csv-import.php:544
3064
  msgctxt "admin csv-import"
3065
  msgid "Username \"%s\" does not exist"
3066
  msgstr "El usuario \"%s\" no existe"
3067
 
3068
+ #: core/class-csv-import.php:576
3069
  msgctxt "admin csv-import"
3070
  msgid "Missing required field: %s"
3071
  msgstr "Falta campo requerido: %s"
3072
 
3073
+ #: core/class-csv-import.php:596
3074
  msgctxt "admin csv-import"
3075
  msgid "Listing category \"%s\" does not exist"
3076
  msgstr "La categoría \"%s\" no existe"
3357
  #: core/class-settings.php:56
3358
  msgctxt "admin settings"
3359
  msgid "Turn off reCAPTCHA for logged in users?"
3360
+ msgstr "¿Deshabilitar reCAPTCHA para usuarios autenticados?"
3361
 
3362
  #: core/class-settings.php:57
3363
  msgctxt "admin settings"
3442
  msgstr "Mostrar y requerir que el usuario acceda a los Términos y Condiciones"
3443
 
3444
  #: core/class-settings.php:106
 
3445
  msgctxt "admin settings"
3446
  msgid ""
3447
  "Terms and Conditions text goes here...\n"
3448
  "\n"
3449
+ msgstr "Texto de los términos y condiciones va acá…\n"
3450
 
3451
  #: core/class-settings.php:107
3452
  msgctxt "admin settings"
3466
  #: core/class-settings.php:112
3467
  msgctxt "admin settings"
3468
  msgid "Disable Frontend Listing Submission?"
3469
+ msgstr "¿Deshabilitar envío de listados desde el frontend?"
3470
 
3471
  #: core/class-settings.php:113
3472
  msgctxt "admin settings"
3489
  msgstr "Mostrar el botón \"Directorio\"."
3490
 
3491
  #: core/class-settings.php:118
 
3492
  msgctxt "admin settings"
3493
  msgid "Disable advanced CPT integration?"
3494
+ msgstr "¿Deshabilitar integración avanzada CPT?"
3495
 
3496
  #: core/class-settings.php:123
3497
  msgctxt "admin settings"
3590
  msgid "Enable AJAX compatibility mode?"
3591
  msgstr "Habilitar modo de compatibilidad AJAX?"
3592
 
3593
+ #: core/class-settings.php:181 core/class-settings.php:665
3594
  msgctxt "admin settings"
3595
  msgid "Listings"
3596
  msgstr "Listados"
3597
 
3598
+ #: core/class-settings.php:182 core/class-settings.php:335
3599
+ #: core/class-settings.php:622
3600
  msgctxt "admin settings"
3601
  msgid "General Settings"
3602
  msgstr "Configuración General"
3645
 
3646
  #: core/class-settings.php:200
3647
  msgctxt "admin settings"
3648
+ msgid "Open detailed view of listing in new tab?"
3649
+ msgstr "¿Abrir vista detallada de un listado en un nuevo tab?"
3650
+
3651
+ #: core/class-settings.php:205
3652
+ msgctxt "admin settings"
3653
  msgid "Require login for using the contact form?"
3654
  msgstr "Requerir login para utilizar el formulario de contacto?"
3655
 
3656
+ #: core/class-settings.php:211
3657
  msgctxt "admin settings"
3658
  msgid "Maximum number of contact form submits per day"
3659
  msgstr "Número máximo de contactos por día"
3660
 
3661
+ #: core/class-settings.php:214
3662
  msgctxt "admin settings"
3663
  msgid ""
3664
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
3667
  "Utilice esta opción para prevenir el SPAM a los dueños de los listados. 0 "
3668
  "significa ilimitados contactos por día."
3669
 
3670
+ #: core/class-settings.php:220
3671
  msgctxt "admin settings"
3672
  msgid "Include comment form on listing pages?"
3673
  msgstr "Incluir formulario de comentarios en las páginas de los listados?"
3674
 
3675
+ #: core/class-settings.php:223
3676
  msgctxt "admin settings"
3677
  msgid ""
3678
  "Allow visitors to discuss listings using the standard WordPress comment "
3682
  "comentarios estándar de WordPress. Todos los comentarios (no SPAM) son "
3683
  "públicos."
3684
 
3685
+ #: core/class-settings.php:224
3686
  msgctxt "admin settings"
3687
  msgid "Show listings under categories on main page?"
3688
  msgstr "Mostrar listados bajo las categorías en la página principal?"
3689
 
3690
+ #: core/class-settings.php:225
3691
  msgctxt "admin settings"
3692
  msgid "Status of listings upon uninstalling plugin"
3693
  msgstr "Estado de los listados luego de desinstalado el plugin"
3694
 
3695
+ #: core/class-settings.php:226 core/class-settings.php:228
3696
  msgctxt "post status"
3697
  msgid "Draft"
3698
+ msgstr "Borrador"
3699
 
3700
+ #: core/class-settings.php:226 core/class-settings.php:228
3701
  msgctxt "post status"
3702
  msgid "Trash"
3703
+ msgstr "Papelera"
3704
 
3705
+ #: core/class-settings.php:227
3706
  msgctxt "admin settings"
3707
  msgid "Status of deleted listings"
3708
  msgstr "Estado de los listados eliminados"
3709
 
3710
+ #: core/class-settings.php:229
 
3711
  msgctxt "admin settings"
3712
  msgid "Submit Listing instructions message"
3713
+ msgstr "Mensaje de instrucciones de envío de listado"
3714
 
3715
+ #: core/class-settings.php:229
3716
  msgctxt "admin settings"
3717
  msgid ""
3718
  "This text is displayed at the first page of the Submit Listing process for "
3719
  "Business Directory. You can use it for instructions about filling out the "
3720
  "form or anything you want to tell users before they get started."
3721
  msgstr ""
3722
+ "Este texto se muestra en la primera página del proceso de envío de un "
3723
+ "listado. Puede utilizarlo para dar instrucciones acerca de cómo llenar el "
3724
+ "formulario o cualquier otra información que desee que los usuarios vean "
3725
+ "antes de comenzar."
3726
 
3727
+ #: core/class-settings.php:231
3728
  msgctxt "admin settings"
3729
  msgid "Listing Renewal"
3730
  msgstr "Renovación de Listados"
3731
 
3732
+ #: core/class-settings.php:232
3733
  msgctxt "admin settings"
3734
  msgid "Turn on listing renewal option?"
3735
  msgstr "Habilitar la renovación de listados?"
3736
 
3737
+ #: core/class-settings.php:235
3738
  msgctxt "admin settings"
3739
  msgid "Allow recurring renewal payments?"
3740
  msgstr "Permitir pagos recurrentes?"
3741
 
3742
+ #: core/class-settings.php:238
3743
  msgctxt "admin settings"
3744
  msgid ""
3745
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3749
  "comisión será cobrada en el momento en el que el listado llegue a su "
3750
  "vencimiento, sin necesidad de intervención."
3751
 
3752
+ #: core/class-settings.php:242
3753
  msgctxt "admin settings"
3754
  msgid "Use recurring payments as the default payment method?"
3755
  msgstr "Utilizar cobro recurrente como método de pago por defecto?"
3756
 
3757
+ #: core/class-settings.php:245
3758
  msgctxt "admin settings"
3759
  msgid ""
3760
  "Enable automatic renewal without having users opt in during the submit "
3763
  "Habilitar la renovación automática sin que los usuarios deban optar por ella "
3764
  "durante el proceso de envío del listado."
3765
 
3766
+ #: core/class-settings.php:250
3767
  msgctxt "admin settings"
3768
  msgid "Listing renewal e-mail threshold (in days)"
3769
  msgstr "Rango de envío del correo electrónico de renovación (en días)"
3770
 
3771
+ #: core/class-settings.php:253
3772
  msgctxt "admin settings"
3773
  msgid ""
3774
  "Configure how many days before listing expiration is the renewal e-mail sent."
3776
  "Configure con cuántos días de anticipación debe informarse al usuario que su "
3777
  "listado está a punto de expirar."
3778
 
3779
+ #: core/class-settings.php:257
3780
  msgctxt "admin settings"
3781
  msgid ""
3782
  "Send expiration notices including a cancel links to auto-renewed listings?"
3784
  "Enviar notificaciones de expiración incluyendo enlaces para cancelar a los "
3785
  "listados auto-renovados?"
3786
 
3787
+ #: core/class-settings.php:264
3788
  msgctxt "admin settings"
3789
  msgid "Remind listing owners of expired listings (past due)?"
3790
  msgstr ""
3791
  "Recordar a los dueños de listados expirados (después de su expiración)?"
3792
 
3793
+ #: core/class-settings.php:269
3794
  msgctxt "admin settings"
3795
  msgid "Listing renewal reminder e-mail threshold (in days)"
3796
  msgstr "Rango de envío del recordatorio de renovación (en días)"
3797
 
3798
+ #: core/class-settings.php:272
3799
  msgctxt "admin settings"
3800
  msgid ""
3801
  "Configure how many days after the expiration of a listing an e-mail reminder "
3804
  "Configure con cuántos días después de la fecha de expiración de un listado "
3805
  "debe enviarse un recordatorio al dueño."
3806
 
3807
+ #: core/class-settings.php:275
3808
  msgctxt "admin settings"
3809
  msgid "Post/Category Settings"
3810
  msgstr "Configuraciones de publicaciones/categorías"
3811
 
3812
+ #: core/class-settings.php:276
3813
  msgctxt "admin settings"
3814
  msgid "Default new post status"
3815
  msgstr "Estado por defecto de nuevas publicaciones"
3816
 
3817
+ #: core/class-settings.php:277 core/class-settings.php:280
3818
  msgctxt "post status"
3819
  msgid "Published"
3820
+ msgstr "Publicado"
3821
 
3822
+ #: core/class-settings.php:277 core/class-settings.php:280
 
3823
  msgctxt "post status"
3824
  msgid "Pending"
3825
+ msgstr "Pendiente"
3826
 
3827
+ #: core/class-settings.php:279
3828
  msgctxt "admin settings"
3829
  msgid "Edit post status"
3830
  msgstr "Estado tras edición de una publicación"
3831
 
3832
+ #: core/class-settings.php:281
3833
  msgctxt "admin settings"
3834
  msgid "Order categories list by"
3835
  msgstr "Ordenar la lista de categorías por"
3836
 
3837
+ #: core/class-settings.php:283
3838
  msgctxt "admin settings"
3839
  msgid "Name"
3840
  msgstr "Nombre"
3841
 
3842
+ #: core/class-settings.php:284
3843
  msgctxt "admin settings"
3844
  msgid "Slug"
3845
  msgstr "Slug"
3846
 
3847
+ #: core/class-settings.php:285
3848
  msgctxt "admin settings"
3849
  msgid "Listing Count"
3850
  msgstr "Conteo de Listados"
3851
 
3852
+ #: core/class-settings.php:287
3853
  msgctxt "admin settings"
3854
  msgid "Sort order for categories"
3855
  msgstr "Orden de las categorías"
3856
 
3857
+ #: core/class-settings.php:288 core/class-settings.php:306
3858
  msgctxt "admin settings"
3859
  msgid "Ascending"
3860
  msgstr "Ascendente"
3861
 
3862
+ #: core/class-settings.php:288 core/class-settings.php:306
3863
  msgctxt "admin settings"
3864
  msgid "Descending"
3865
  msgstr "Descendente"
3866
 
3867
+ #: core/class-settings.php:289
3868
  msgctxt "admin settings"
3869
  msgid "Show category post count?"
3870
  msgstr "Mostrar conteo de listados para cada categoría?"
3871
 
3872
+ #: core/class-settings.php:290
3873
  msgctxt "admin settings"
3874
  msgid "Hide empty categories?"
3875
  msgstr "Ocultar categorías vacías?"
3876
 
3877
+ #: core/class-settings.php:291
3878
  msgctxt "admin settings"
3879
  msgid "Show only parent categories in category list?"
3880
  msgstr ""
3881
  "Mostrar únicamente las categorías de primer nivel en la lista de categorías?"
3882
 
3883
+ #: core/class-settings.php:293
3884
  msgctxt "admin settings"
3885
  msgid "Listings Sorting"
3886
  msgstr "Ordenamiento de Listados"
3887
 
3888
+ #: core/class-settings.php:294
3889
  msgctxt "admin settings"
3890
  msgid "Order directory listings by"
3891
  msgstr "Ordenar los listados del Directorio por"
3892
 
3893
+ #: core/class-settings.php:296
3894
  msgctxt "admin settings"
3895
  msgid "Title"
3896
  msgstr "Título"
3897
 
3898
+ #: core/class-settings.php:297
3899
  msgctxt "admin settings"
3900
  msgid "Author"
3901
  msgstr "Autor"
3902
 
3903
+ #: core/class-settings.php:298 core/class-settings.php:708
3904
  msgctxt "admin settings"
3905
  msgid "Date posted"
3906
  msgstr "Fecha de publicación"
3907
 
3908
+ #: core/class-settings.php:299 core/class-settings.php:709
3909
  msgctxt "admin settings"
3910
  msgid "Date last modified"
3911
  msgstr "Fecha de última modificación"
3912
 
3913
+ #: core/class-settings.php:300
3914
  msgctxt "admin settings"
3915
  msgid "Random"
3916
  msgstr "Aleatorio"
3917
 
3918
+ #: core/class-settings.php:301
3919
  msgctxt "admin settings"
3920
  msgid "Paid first then free. Inside each group by date."
3921
  msgstr "Pagos primero, luego gratuitos. Dentro de cada grupo, por fecha."
3922
 
3923
+ #: core/class-settings.php:302
3924
  msgctxt "admin settings"
3925
  msgid "Paid first then free. Inside each group by title."
3926
  msgstr "Pagos primero, luego gratuitos. Dentro de cada grupo por título."
3927
 
3928
+ #: core/class-settings.php:304
3929
  msgctxt "admin settings"
3930
  msgid "Sort directory listings by"
3931
  msgstr "Orden de los listados"
3932
 
3933
+ #: core/class-settings.php:305
3934
  msgctxt "admin settings"
3935
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3936
  msgstr ""
3937
  "Ascendente para orden alfabético A-Z; Descendente para orden alfabético Z-A"
3938
 
3939
+ #: core/class-settings.php:310
3940
  msgctxt "admin settings"
3941
  msgid "Enable sort bar?"
3942
  msgstr "Habilitar barra de ordenamiento?"
3943
 
3944
+ #: core/class-settings.php:315
3945
  msgctxt "admin settings"
3946
  msgid "Sortbar Fields"
3947
  msgstr "Campos de \"barra de ordenamiento\""
3948
 
3949
+ #: core/class-settings.php:324
3950
  msgctxt "admin settings"
3951
  msgid "Featured (Sticky) listing settings"
3952
  msgstr "Configuración de Listados Destacados"
3953
 
3954
+ #: core/class-settings.php:325
3955
  msgctxt "admin settings"
3956
  msgid "Offer sticky listings?"
3957
  msgstr "Ofrecer listados destacados?"
3958
 
3959
+ #: core/class-settings.php:326
3960
  msgctxt "admin settings"
3961
  msgid "Offer upgrades during submit process?"
3962
  msgstr "Ofrecer mejoras a destacado durante el proceso de envío?"
3963
 
3964
+ #: core/class-settings.php:327
3965
  msgctxt "admin settings"
3966
  msgid "Sticky listing price"
3967
  msgstr "Precio de Listado Destacado"
3968
 
3969
+ #: core/class-settings.php:328
3970
  msgctxt "admin settings"
3971
  msgid "Sticky listing page description text"
3972
  msgstr "Texto descriptivo para Listados Destacados"
3973
 
3974
+ #: core/class-settings.php:329
3975
  msgctxt "admin settings"
3976
  msgid ""
3977
  "You can upgrade your listing to featured status. Featured listings will "
3980
  "Puede actualizar su listado a Destacado. Los listados destacados aparecen "
3981
  "siempre encima de los listados regulares."
3982
 
3983
+ #: core/class-settings.php:334
3984
  msgctxt "admin settings"
3985
  msgid "E-Mail"
3986
  msgstr "Correo Electrónico"
3987
 
3988
+ #: core/class-settings.php:338
3989
  msgctxt "admin settings"
3990
  msgid "Display email address fields publicly?"
3991
  msgstr "Mostrar direcciones de correo electrónico públicamente?"
3992
 
3993
+ #: core/class-settings.php:341
3994
  msgctxt "admin settings"
3995
  msgid ""
3996
  "Shows the email address of the listing owner to all web users. NOT "
4001
  "a todos los usuarios. NO RECOMENDADO pues puede resultar en un aumento de "
4002
  "spam."
4003
 
4004
+ #: core/class-settings.php:344
4005
  msgctxt "admin settings"
4006
  msgid "How to determine the listing's email address?"
4007
  msgstr "Cómo determinar el correo electrónico de un listado?"
4008
 
4009
+ #: core/class-settings.php:347
4010
  msgctxt "admin settings"
4011
  msgid ""
4012
  "This affects emails sent to listing owners via contact forms or when their "
4015
  "Esta configuración afecta cómo los dueños de los listados son contactados "
4016
  "cuando sus listados expiran o a través de los formularios de contacto."
4017
 
4018
+ #: core/class-settings.php:349
4019
  msgctxt "admin settings"
4020
  msgid "Try listing's email field first, then author's email."
4021
+ msgstr "Intentar con el correo-e del listado, luego el del autor."
4022
 
4023
+ #: core/class-settings.php:350
4024
  msgctxt "admin settings"
4025
  msgid "Try author's email first and then listing's email field."
4026
  msgstr ""
4027
+ "Intentar con el correo-e del autor primero, luego el del campo de correo del "
4028
+ "listado."
4029
 
4030
+ #: core/class-settings.php:354
4031
  msgctxt "admin settings"
4032
  msgid "E-Mail Notifications"
4033
  msgstr "Notificaciones de correo-e"
4034
 
4035
+ #: core/class-settings.php:357
4036
  msgctxt "admin settings"
4037
  msgid "Notify admin via e-mail when..."
4038
  msgstr "Notificar al administrador cuando..."
4039
 
4040
+ #: core/class-settings.php:361
4041
  msgctxt "admin settings"
4042
  msgid "A new listing is submitted."
4043
  msgstr "Un nuevo listado ha sido enviado."
4044
 
4045
+ #: core/class-settings.php:362
4046
  msgctxt "admin settings"
4047
  msgid "A listing is edited."
4048
  msgstr "Un listado es editado."
4049
 
4050
+ #: core/class-settings.php:363
4051
  msgctxt "admin settings"
4052
  msgid "A listing expires."
4053
  msgstr "Un listado expira."
4054
 
4055
+ #: core/class-settings.php:364
4056
  msgctxt "admin settings"
4057
  msgid "A contact message is sent to a listing's owner."
4058
  msgstr "Un mensaje de contacto es enviado al dueño del listado."
4059
 
4060
+ #: core/class-settings.php:370
4061
  msgctxt "admin settings"
4062
  msgid "CC this e-mail address too"
4063
  msgstr "Copiar a esta dirección de correo también"
4064
 
4065
+ #: core/class-settings.php:376
4066
  msgctxt "admin settings"
4067
  msgid "Notify users via e-mail when..."
4068
  msgstr "Notificar usuarios vía correo-e cuando..."
4069
 
4070
+ #: core/class-settings.php:379
4071
  msgctxt "admin settings"
4072
  msgid "You can modify the text template used for most of these e-mails below."
4073
  msgstr ""
4074
  "Puede modificar la plantilla de texto utilizada para la mayoría de estos "
4075
  "correos electrónicos abajo."
4076
 
4077
+ #: core/class-settings.php:380
4078
  msgctxt "admin settings"
4079
  msgid "Their listing is submitted."
4080
  msgstr "Su listado ha sido recibido."
4081
 
4082
+ #: core/class-settings.php:381
4083
  msgctxt "admin settings"
4084
  msgid "Their listing is approved/published."
4085
  msgstr "Su listado ha sido aprobado/publicado."
4086
 
4087
+ #: core/class-settings.php:390
4088
  msgctxt "contact email"
4089
  msgid "You have received a reply from your listing at %s."
4090
  msgstr "Ha recibido una comunicación para su listado en %s."
4091
 
4092
+ #: core/class-settings.php:391
4093
  msgctxt "contact email"
4094
  msgid "Name: %s"
4095
  msgstr "Nombre: %s"
4096
 
4097
+ #: core/class-settings.php:392
4098
  msgctxt "contact email"
4099
  msgid "E-Mail: %s"
4100
  msgstr "Correo Electrónico: %s"
4101
 
4102
+ #: core/class-settings.php:393
4103
  msgctxt "contact email"
4104
  msgid "Message:"
4105
  msgstr "Mensaje:"
4106
 
4107
+ #: core/class-settings.php:395
4108
  msgctxt "contact email"
4109
  msgid "Time: %s"
4110
  msgstr "Hora: %s"
4111
 
4112
+ #: core/class-settings.php:397
4113
  msgctxt "admin settings"
4114
  msgid "E-Mail Templates"
4115
  msgstr "Plantillas de Correo Electrónico"
4116
 
4117
+ #: core/class-settings.php:400
4118
  msgctxt "admin settings"
4119
  msgid "Email confirmation message"
4120
  msgstr "Mensaje de Confirmación"
4121
 
4122
+ #: core/class-settings.php:404
4123
  msgctxt "admin settings"
4124
  msgid "Sent after a listing has been submitted."
4125
  msgstr "Enviado luego de que el listado ha sido recibido."
4126
 
4127
+ #: core/class-settings.php:405 core/class-settings.php:413
4128
+ #: core/class-settings.php:454
4129
  msgctxt "admin settings"
4130
  msgid "Listing's title"
4131
  msgstr "Título del Listado"
4132
 
4133
+ #: core/class-settings.php:408
4134
  msgctxt "admin settings"
4135
  msgid "Listing published message"
4136
  msgstr "Mensaje de listado publicado"
4137
 
4138
+ #: core/class-settings.php:411
4139
  msgctxt "admin settings"
4140
  msgid ""
4141
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
4144
  "Su listado \"[listing]\" está ahora disponible en [listing-url] y puede ser "
4145
  "visto por el público."
4146
 
4147
+ #: core/class-settings.php:412
4148
  msgctxt "admin settings"
4149
  msgid "Sent when the listing has been published or approved by an admin."
4150
  msgstr ""
4151
  "Enviado cuando el listado ha sido publicado o aprobado por un administrador."
4152
 
4153
+ #: core/class-settings.php:414
4154
  msgctxt "admin settings"
4155
  msgid "Listing's URL"
4156
  msgstr "URL del listado"
4157
 
4158
+ #: core/class-settings.php:418
4159
  msgctxt "admin settings"
4160
  msgid "Listing Contact Message"
4161
  msgstr "Mensaje de contacto"
4162
 
4163
+ #: core/class-settings.php:422
4164
  msgctxt "admin settings"
4165
  msgid ""
4166
  "Sent to listing owners when someone uses the contact form on their listing "
4169
  "Enviado a los dueños de listados cuando alguien utiliza el formulario de "
4170
  "contacto en sus páginas."
4171
 
4172
+ #: core/class-settings.php:432
4173
  msgctxt "admin settings"
4174
  msgid "Payment related"
4175
  msgstr "Relativo al pago"
4176
 
4177
+ #: core/class-settings.php:449
4178
  msgctxt "admin settings"
4179
  msgid "Payment abandoned reminder message"
4180
  msgstr "Recordatorio de pagos abandonados"
4181
 
4182
+ #: core/class-settings.php:453
4183
  msgctxt "admin settings"
4184
  msgid "Sent some time after a pending payment is abandoned by users."
4185
  msgstr ""
4186
  "Enviado algún tiempo después de que un pago pendiente es abandonado por los "
4187
  "usuarios."
4188
 
4189
+ #: core/class-settings.php:455
4190
  msgctxt "admin settings"
4191
  msgid "Checkout URL link"
4192
  msgstr "Link a la URL de pago"
4193
 
4194
+ #: core/class-settings.php:461
4195
  msgctxt "admin settings"
4196
  msgid "Renewal Reminders"
4197
  msgstr "Recordatorios de Renovación"
4198
 
4199
+ #: core/class-settings.php:464
4200
  msgctxt "admin settings"
4201
  msgid ""
4202
  "This section refers only to the text of the renewal/expiration notices. You "
4206
  "renovación/expiración. También puede <a>configurar cuándo estos correos son "
4207
  "enviados</a>."
4208
 
4209
+ #: core/class-settings.php:468
4210
  msgctxt "admin settings"
4211
  msgid "Pending expiration e-mail message"
4212
  msgstr "Mensaje correo electrónico sobre expiración pendiente"
4213
 
4214
+ #: core/class-settings.php:472
4215
  msgctxt "settings"
4216
  msgid ""
4217
  "Sent some time before the listing expires. Applies to non-recurring renewals "
4220
  "Enviado un tiempo antes de que el listado expire. Aplica para renovaciones "
4221
  "no recurrentes únicamente."
4222
 
4223
+ #: core/class-settings.php:473 core/class-settings.php:486
4224
+ #: core/class-settings.php:499 core/class-settings.php:512
4225
+ #: core/class-settings.php:525
4226
  msgctxt "settings"
4227
  msgid "Listing's name (with link)"
4228
  msgstr "Título del listado (con enlace)"
4229
 
4230
+ #: core/class-settings.php:474 core/class-settings.php:487
4231
+ #: core/class-settings.php:500 core/class-settings.php:513
4232
+ #: core/class-settings.php:526
4233
  msgctxt "settings"
4234
  msgid "Author's name"
4235
  msgstr "Autor del listado"
4236
 
4237
+ #: core/class-settings.php:475 core/class-settings.php:488
4238
+ #: core/class-settings.php:527
4239
  msgctxt "settings"
4240
  msgid "Expiration date"
4241
  msgstr "Fecha de expiración"
4242
 
4243
+ #: core/class-settings.php:476
4244
  msgctxt "settings"
4245
  msgid "Category that is going to expire"
4246
  msgstr "Categoría que va a expirar"
4247
 
4248
+ #: core/class-settings.php:477 core/class-settings.php:490
4249
+ #: core/class-settings.php:529
4250
  msgctxt "settings"
4251
  msgid "Link to renewal page"
4252
  msgstr "Enlace a la página de renovación"
4253
 
4254
+ #: core/class-settings.php:478 core/class-settings.php:491
4255
+ #: core/class-settings.php:503 core/class-settings.php:516
4256
+ #: core/class-settings.php:530
4257
  msgctxt "settings"
4258
  msgid "Link to your site"
4259
  msgstr "Enlace a su sitio"
4260
 
4261
+ #: core/class-settings.php:481
4262
  msgctxt "admin settings"
4263
  msgid "Listing Renewal e-mail message"
4264
  msgstr "Mensaje de correo electrónico sobre Renovación del Listado"
4265
 
4266
+ #: core/class-settings.php:485
4267
  msgctxt "settings"
4268
  msgid ""
4269
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
4272
  "Enviado al momento de expiración del listado. Aplica a renovaciones no "
4273
  "recurrentes únicamente."
4274
 
4275
+ #: core/class-settings.php:489 core/class-settings.php:528
4276
  msgctxt "settings"
4277
  msgid "Category that expired"
4278
  msgstr "Categoría que expiró"
4279
 
4280
+ #: core/class-settings.php:494
4281
  msgctxt "admin settings"
4282
  msgid "Listing auto-renewal reminder (recurring payments)"
4283
  msgstr "Recordatorio de auto-renovación del listado (pagos recurrentes)"
4284
 
4285
+ #: core/class-settings.php:498
4286
  msgctxt "settings"
4287
  msgid ""
4288
  "Sent some time before the listing is auto-renewed. Applies to recurring "
4291
  "Enviado algún tiempo antes de que el listado sea auto-renovado. Aplica a "
4292
  "renovaciones recurrentes únicamente."
4293
 
4294
+ #: core/class-settings.php:501 core/class-settings.php:515
4295
  msgctxt "settings"
4296
  msgid "Renewal date"
4297
  msgstr "Fecha de renovación"
4298
 
4299
+ #: core/class-settings.php:502
4300
  msgctxt "settings"
4301
  msgid "Category that is going to be renewed"
4302
  msgstr "Categoría que será renovada"
4303
 
4304
+ #: core/class-settings.php:504
4305
  msgctxt "settings"
4306
  msgid "Link to manage subscriptions"
4307
  msgstr "Enlace a la página de administración de pagos recurrentes"
4308
 
4309
+ #: core/class-settings.php:507
4310
  msgctxt "admin settings"
4311
  msgid "Listing Renewal e-mail message (recurring payments)"
4312
  msgstr ""
4313
  "Mensaje de correo electrónico sobre Renovación del Listado (para pago "
4314
  "automático)"
4315
 
4316
+ #: core/class-settings.php:511
4317
  msgctxt "settings"
4318
  msgid ""
4319
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4321
  "Enviado luego de que el listado sea auto-renovado. Aplica a renovaciones "
4322
  "recurrentes únicamente."
4323
 
4324
+ #: core/class-settings.php:514
4325
  msgctxt "settings"
4326
  msgid "Renewed category"
4327
  msgstr "Categoría renovada"
4328
 
4329
+ #: core/class-settings.php:520
4330
  msgctxt "admin settings"
4331
  msgid "Renewal reminder e-mail message"
4332
  msgstr "Recordatorio por correo electrónico de renovación del listado"
4333
 
4334
+ #: core/class-settings.php:524
4335
  msgctxt "settings"
4336
  msgid ""
4337
  "Sent some time after listing expiration and when no renewal has occurred. "
4340
  "Enviado un tiempo después de que el listado expire y no haya sido renovado. "
4341
  "Aplica tanto a renovaciones recurrentes como no recurrentes."
4342
 
4343
+ #: core/class-settings.php:534
4344
  msgctxt "admin settings"
4345
  msgid "Payment"
4346
  msgstr "Pago"
4347
 
4348
+ #: core/class-settings.php:535
4349
  msgctxt "admin settings"
4350
  msgid "Payment Settings"
4351
  msgstr "Configuración de Pago"
4352
 
4353
+ #: core/class-settings.php:538
4354
  msgctxt "admin settings"
4355
  msgid "Turn On payments?"
4356
  msgstr "Activar pagos?"
4357
 
4358
+ #: core/class-settings.php:540
4359
  msgctxt "admin settings"
4360
  msgid "Put payment gateways in test mode?"
4361
  msgstr "Utilizar las pasarelas de pago en modo de prueba?"
4362
 
4363
+ #: core/class-settings.php:545
4364
  msgctxt "admin settings"
4365
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4366
  msgstr "Realizar pagos en la versión segura (HTTPS) de su sitio?"
4367
 
4368
+ #: core/class-settings.php:548
4369
  msgctxt "admin settings"
4370
  msgid ""
4371
  "Recommended for added security. For this to work you need to enable HTTPS on "
4374
  "Recomendado para seguridad extra. Para que funcione debe tener habilitado "
4375
  "HTTPS en su servidor y <a>obtener un certificado SSL</a>."
4376
 
4377
+ #: core/class-settings.php:552
4378
  msgctxt "admin settings"
4379
  msgid "Currency Code"
4380
  msgstr "Código de Moneda"
4381
 
4382
+ #: core/class-settings.php:554
4383
  msgctxt "admin settings"
4384
  msgid "Australian Dollar (AUD)"
4385
  msgstr "Dólar Australiano (AUD)"
4386
 
4387
+ #: core/class-settings.php:555
4388
  msgctxt "admin settings"
4389
  msgid "Brazilian Real (BRL)"
4390
  msgstr "Real Brasilero (BRL)"
4391
 
4392
+ #: core/class-settings.php:556
4393
  msgctxt "admin settings"
4394
  msgid "Canadian Dollar (CAD)"
4395
  msgstr "Dólar Canadiense (CAD)"
4396
 
4397
+ #: core/class-settings.php:557
4398
  msgctxt "admin settings"
4399
  msgid "Czech Koruna (CZK)"
4400
  msgstr "Corona Checa (CZK)"
4401
 
4402
+ #: core/class-settings.php:558
4403
  msgctxt "admin settings"
4404
  msgid "Danish Krone (DKK)"
4405
  msgstr "Corona Danesa (DKK)"
4406
 
4407
+ #: core/class-settings.php:559
4408
  msgctxt "admin settings"
4409
  msgid "Euro (EUR)"
4410
  msgstr "Euro (EUR)"
4411
 
4412
+ #: core/class-settings.php:560
4413
  msgctxt "admin settings"
4414
  msgid "Hong Kong Dollar (HKD)"
4415
  msgstr "Dólar de Hong Kong (HKD)"
4416
 
4417
+ #: core/class-settings.php:561
4418
  msgctxt "admin settings"
4419
  msgid "Hungarian Forint (HUF)"
4420
  msgstr "Forinte Húngaro (HUF)"
4421
 
4422
+ #: core/class-settings.php:562
4423
  msgctxt "admin settings"
4424
  msgid "Israeli New Shequel (ILS)"
4425
  msgstr "Nuevo Shékel Israelí (ILS)"
4426
 
4427
+ #: core/class-settings.php:563
4428
  msgctxt "admin settings"
4429
  msgid "Japanese Yen (JPY)"
4430
  msgstr "Yen Japonés (JPY)"
4431
 
4432
+ #: core/class-settings.php:564
4433
  msgctxt "admin settings"
4434
  msgid "Malasian Ringgit (MYR)"
4435
  msgstr "Ringgit de Malasia (MYR)"
4436
 
4437
+ #: core/class-settings.php:565
4438
  msgctxt "admin settings"
4439
  msgid "Mexican Peso (MXN)"
4440
  msgstr "Peso Mexicano (MXN)"
4441
 
4442
+ #: core/class-settings.php:566
4443
  msgctxt "admin settings"
4444
  msgid "Norwegian Krone (NOK)"
4445
  msgstr "Corona Noruega (NOK)"
4446
 
4447
+ #: core/class-settings.php:567
4448
  msgctxt "admin settings"
4449
  msgid "New Zealand Dollar (NZD)"
4450
  msgstr "Dólar de Nueva Zelanda (NZD)"
4451
 
4452
+ #: core/class-settings.php:568
4453
  msgctxt "admin settings"
4454
  msgid "Philippine Peso (PHP)"
4455
  msgstr "Peso Filipino (PHP)"
4456
 
4457
+ #: core/class-settings.php:569
4458
  msgctxt "admin settings"
4459
  msgid "Polish Zloty (PLN)"
4460
  msgstr "Zloty Polaco (PLN)"
4461
 
4462
+ #: core/class-settings.php:570
4463
  msgctxt "admin settings"
4464
  msgid "Pound Sterling (GBP)"
4465
  msgstr "Libra Esterlina (GBP)"
4466
 
4467
+ #: core/class-settings.php:571
4468
  msgctxt "admin settings"
4469
  msgid "Singapore Dollar (SGD)"
4470
  msgstr "Dólar de Singapur (SGD)"
4471
 
4472
+ #: core/class-settings.php:572
4473
  msgctxt "admin settings"
4474
  msgid "Swedish Krona (SEK)"
4475
  msgstr "Corona Sueca (SEK)"
4476
 
4477
+ #: core/class-settings.php:573
4478
  msgctxt "admin settings"
4479
  msgid "Swiss Franc (CHF)"
4480
  msgstr "Franco Suizo (CHF)"
4481
 
4482
+ #: core/class-settings.php:574
4483
  msgctxt "admin settings"
4484
  msgid "Taiwan Dollar (TWD)"
4485
  msgstr "Dólar de Taiwán (TWD)"
4486
 
4487
+ #: core/class-settings.php:575
4488
  msgctxt "admin settings"
4489
  msgid "Thai Baht (THB)"
4490
  msgstr "Baht de Tailandia (THB)"
4491
 
4492
+ #: core/class-settings.php:576
4493
  msgctxt "admin settings"
4494
  msgid "Turkish Lira (TRY)"
4495
  msgstr "Lira Turca (TRY)"
4496
 
4497
+ #: core/class-settings.php:577
4498
  msgctxt "admin settings"
4499
  msgid "U.S. Dollar (USD)"
4500
  msgstr "Dólar Americano (USD)"
4501
 
4502
+ #: core/class-settings.php:581
4503
  msgctxt "admin settings"
4504
  msgid "Currency Symbol"
4505
  msgstr "Símbolo de Moneda"
4506
 
4507
+ #: core/class-settings.php:586
4508
  msgctxt "admin settings"
4509
  msgid "Currency symbol display"
4510
  msgstr "Presentación de símbolo de moneda"
4511
 
4512
+ #: core/class-settings.php:590
4513
  msgctxt "admin settings"
4514
  msgid "Show currency symbol on the left"
4515
  msgstr "Mostrar el símbolo de moneda a la izquierda"
4516
 
4517
+ #: core/class-settings.php:591
4518
  msgctxt "admin settings"
4519
  msgid "Show currency symbol on the right"
4520
  msgstr "Mostrar el símbolo de moneda a la derecha"
4521
 
4522
+ #: core/class-settings.php:592
4523
  msgctxt "admin settings"
4524
  msgid "Do not show currency symbol"
4525
  msgstr "No mostrar el símbolo de moneda"
4526
 
4527
+ #: core/class-settings.php:594
4528
  msgctxt "admin settings"
4529
  msgid "Thank you for payment message"
4530
  msgstr "Mensaje de agradecimiento por el pago"
4531
 
4532
+ #: core/class-settings.php:595
4533
  msgctxt "admin settings"
4534
  msgid ""
4535
  "Thank you for your payment. Your payment is being verified and your listing "
4538
  "Gracias por su pago. Su pago está siendo verificado y su listado revisado. "
4539
  "Este proceso puede tardar hasta 48 horas."
4540
 
4541
+ #: core/class-settings.php:600
4542
  msgctxt "admin settings"
4543
  msgid "Ask users to come back for abandoned payments?"
4544
  msgstr ""
4545
  "Contactar a los usuarios para pedirles que regresen a pagar pagos pendientes?"
4546
 
4547
+ #: core/class-settings.php:603
4548
  msgctxt "admin settings"
4549
  msgid ""
4550
  "An abandoned payment is when a user attempts to place a listing and gets to "
4557
  "en listados que parece que fallaron cuando el usuario simplemente no "
4558
  "completó la transacción. BD puede recordarles para que efectúen el pago."
4559
 
4560
+ #: core/class-settings.php:609
4561
  msgctxt "admin settings"
4562
  msgid "Listing abandonment threshold (hours)"
4563
  msgstr "Tiempo tras el cual el listado es considerado abandonado (en horas)"
4564
 
4565
+ #: core/class-settings.php:614
4566
  msgctxt "admin settings"
4567
  msgid ""
4568
  "Listings with pending payments are marked as abandoned after this time. You "
4572
  "tiempo. También puede <a>personalizar el correo-e</a> que los usuarios "
4573
  "reciben."
4574
 
4575
+ #: core/class-settings.php:619
4576
  msgctxt "admin settings"
4577
  msgid "Themes"
4578
+ msgstr "Temas"
4579
 
4580
+ #: core/class-settings.php:621
4581
  msgctxt "admin settings"
4582
  msgid "You can manage your themes on <a>Directory Themes</a>."
4583
+ msgstr "Puede manejar los temas en <a>Temas del Directorio</a>."
4584
 
4585
+ #: core/class-settings.php:626
4586
  msgctxt "admin settings"
4587
  msgid "Theme button style"
4588
+ msgstr "Estilo de botones de temas"
4589
 
4590
+ #: core/class-settings.php:630
4591
  msgctxt "admin settings"
4592
  msgid "Use the BD theme style for BD buttons"
4593
+ msgstr "Utilizar el estilo de BD para los botones de BD"
4594
 
4595
+ #: core/class-settings.php:631
4596
  msgctxt "admin settings"
4597
  msgid "Use the WP theme style for BD buttons"
4598
+ msgstr "Utilizar el estilo del tema de WP para los botones de BD"
4599
 
4600
+ #: core/class-settings.php:638
4601
  msgctxt "admin settings"
4602
  msgid "Image"
4603
  msgstr "Imágenes"
4604
 
4605
+ #: core/class-settings.php:639
4606
  msgctxt "admin settings"
4607
  msgid ""
4608
  "Any changes to these settings will affect new listings only. Existing "
4615
  "existentes, deberá subir de nuevo las imágenes necesarias luego de hacer los "
4616
  "cambios aquí."
4617
 
4618
+ #: core/class-settings.php:640
4619
  msgctxt "admin settings"
4620
  msgid "Image Settings"
4621
  msgstr "Configuración de Imágenes"
4622
 
4623
+ #: core/class-settings.php:641
4624
  msgctxt "admin settings"
4625
  msgid "Allow images?"
4626
  msgstr "Permitir imágenes?"
4627
 
4628
+ #: core/class-settings.php:643
4629
  msgctxt "admin settings"
4630
  msgid "Min Image File Size (KB)"
4631
  msgstr "Tamaño mínimo de imagen (KB)"
4632
 
4633
+ #: core/class-settings.php:644
4634
  msgctxt "admin settings"
4635
  msgid "Max Image File Size (KB)"
4636
  msgstr "Tamaño máximo de imagen (KB)"
4637
 
4638
+ #: core/class-settings.php:646
4639
  msgctxt "admin settings"
4640
  msgid "Min image width (px)"
4641
  msgstr "Ancho mínimo de imagen (en px)"
4642
 
4643
+ #: core/class-settings.php:647
4644
  msgctxt "admin settings"
4645
  msgid "Min image height (px)"
4646
  msgstr "Alto mínimo de imagen (en px)"
4647
 
4648
+ #: core/class-settings.php:649
4649
  msgctxt "admin settings"
4650
  msgid "Max image width (px)"
4651
  msgstr "Ancho máximo de imagen (px)"
4652
 
4653
+ #: core/class-settings.php:650
4654
  msgctxt "admin settings"
4655
  msgid "Max image height (px)"
4656
  msgstr "Alto máximo de imagen (px)"
4657
 
4658
+ #: core/class-settings.php:652
4659
  msgctxt "admin settings"
4660
  msgid "Turn on thickbox/lightbox?"
4661
  msgstr "Activar Thickbox/Lightbox?"
4662
 
4663
+ #: core/class-settings.php:652
4664
  msgctxt "admin settings"
4665
  msgid ""
4666
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4668
  "Desmarque si entra en conflicto con otros elementos o plugins instalados en "
4669
  "su sitio"
4670
 
4671
+ #: core/class-settings.php:654
4672
  msgctxt "admin settings"
4673
  msgid "Thumbnails"
4674
  msgstr "Imágenes de previsualización"
4675
 
4676
+ #: core/class-settings.php:655
4677
  msgctxt "admin settings"
4678
  msgid "Thumbnail width (px)"
4679
  msgstr "Ancho de thumbnail (px)"
4680
 
4681
+ #: core/class-settings.php:656
4682
  msgctxt "admin settings"
4683
  msgid "Thumbnail height (px)"
4684
  msgstr "Alto de thumbnail (px)"
4685
 
4686
+ #: core/class-settings.php:659
4687
  msgctxt "admin settings"
4688
  msgid "Crop thumbnails to exact dimensions?"
4689
  msgstr "Cortar imágenes de previsualización a las dimensiones exactas?"
4690
 
4691
+ #: core/class-settings.php:662
4692
  msgctxt "admin settings"
4693
  msgid ""
4694
  "When enabled images will match exactly the dimensions above but part of the "
4702
  "alto será ajustado proporcionalmente. Dependiendo de las imágenes que se "
4703
  "hayan utilizado, estas podrían tener diferentes alturas."
4704
 
4705
+ #: core/class-settings.php:668
4706
  msgctxt "admin settings"
4707
  msgid "Number of free images"
4708
  msgstr "Número de imágenes gratuitas"
4709
 
4710
+ #: core/class-settings.php:673
4711
  msgctxt "admin settings"
4712
  msgid ""
4713
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4716
  "Configure las imágenes de listados pagos agregando o editando una "
4717
  "<a>comisión</a> pues este valor será ignorado para listados pagos."
4718
 
4719
+ #: core/class-settings.php:676
4720
  msgctxt "admin settings"
4721
  msgid "Use default picture for listings with no picture?"
4722
  msgstr "Utilizar imagen por defecto en listados sin imagen?"
4723
 
4724
+ #: core/class-settings.php:677
4725
  msgctxt "admin settings"
4726
  msgid "Show Thumbnail on main listings page?"
4727
  msgstr "Mostrar thumbnails en las páginas principales?"
4728
 
4729
+ #: core/class-settings.php:706
4730
  msgctxt "admin settings"
4731
  msgid "User"
4732
+ msgstr "Usuario"
4733
 
4734
+ #: core/class-settings.php:707
 
4735
  msgctxt "admin settings"
4736
  msgid "User registration date"
4737
+ msgstr "Fecha de registro del usuario"
4738
 
4739
+ #: core/class-settings.php:733
4740
  msgctxt "admin settings"
4741
  msgid ""
4742
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4745
  "No se pudo copiar el plugin de compatibilidad AJAX \"%s\". El modo de "
4746
  "compatibilidad no fue activado."
4747
 
4748
+ #: core/class-settings.php:741
4749
  msgctxt "admin settings"
4750
  msgid ""
4751
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4754
  "No se pudo activar el modo de compatibilidad AJAX: el directorio \"%s\" no "
4755
  "pudo ser creado."
4756
 
4757
+ #: core/class-settings.php:750
4758
  msgctxt "admin settings"
4759
  msgid ""
4760
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4763
  "No se pudo remover \"Business Directory Plugin - AJAX Compatibility Module"
4764
  "\". Por favor elimine el archivo \"%s\" manualmente o desactive el plugin."
4765
 
4766
+ #: core/class-settings.php:1070
4767
  msgctxt "settings"
4768
  msgid "Deactivate License"
4769
  msgstr "Desactivar Licencia"
4770
 
4771
+ #: core/class-settings.php:1072
4772
  msgctxt "settings"
4773
  msgid "Deactivating license..."
4774
  msgstr "Desactivando licencia..."
4775
 
4776
+ #: core/class-settings.php:1075
4777
  msgctxt "settings"
4778
  msgid "Activate License"
4779
  msgstr "Activar Licencia"
4780
 
4781
+ #: core/class-settings.php:1077
4782
  msgctxt "settings"
4783
  msgid "Activating license..."
4784
  msgstr "Activando licencia..."
4785
 
4786
+ #: core/class-settings.php:1100
4787
  msgctxt "admin settings"
4788
  msgid "Valid placeholders: %s"
4789
  msgstr "Comodines válidos: %s"
4790
 
4791
+ #: core/class-settings.php:1134
4792
  msgctxt "settings email"
4793
  msgid "Click to edit e-mail"
4794
  msgstr "Click para editar el correo"
4795
 
4796
+ #: core/class-settings.php:1135
4797
  msgctxt "settings email"
4798
  msgid "Click to edit"
4799
  msgstr "Click para editar"
4800
 
4801
+ #: core/class-settings.php:1148
4802
  msgctxt "settings email"
4803
  msgid "E-Mail Subject"
4804
  msgstr "Título del correo"
4805
 
4806
+ #: core/class-settings.php:1159
4807
  msgctxt "settings email"
4808
  msgid "E-Mail Body"
4809
  msgstr "Cuerpo del correo"
4810
 
4811
+ #: core/class-settings.php:1170
4812
  msgctxt "settings email"
4813
  msgid "You can use the following placeholders:"
4814
  msgstr "Puede utilizar los siguientes comodines:"
4815
 
4816
+ #: core/class-settings.php:1193
4817
  msgctxt "settings email"
4818
  msgid "Preview e-mail"
4819
  msgstr "Previsualizar correo"
4820
 
4821
+ #: core/class-settings.php:1194
4822
  msgctxt "settings email"
4823
  msgid "Cancel"
4824
  msgstr "Cancelar"
4825
 
4826
+ #: core/class-settings.php:1195
4827
  msgctxt "settings email"
4828
  msgid "Save Changes"
4829
  msgstr "Guardar Cambios"
4830
 
4831
+ #: core/class-settings.php:1214
4832
  msgctxt "settings email"
4833
  msgid "Site title"
4834
  msgstr "Título del sitio"
4835
 
4836
+ #: core/class-settings.php:1217
4837
  msgctxt "settings email"
4838
  msgid "Site title (with link)"
4839
  msgstr "Título del listado (con enlace)"
4840
 
4841
+ #: core/class-settings.php:1220
4842
  msgctxt "settings email"
4843
  msgid "Site address (with link)"
4844
  msgstr "Dirección del listado (con enlace)"
4845
 
4846
+ #: core/class-settings.php:1223
4847
  msgctxt "settings email"
4848
  msgid "Directory URL (with link)"
4849
  msgstr "URL del Directorio (con enlace)"
4850
 
4851
+ #: core/class-settings.php:1226
4852
  msgctxt "settings email"
4853
  msgid "Current date"
4854
  msgstr "Fecha actual"
4855
 
4856
+ #: core/class-settings.php:1229
4857
  msgctxt "settings email"
4858
  msgid "Current time"
4859
  msgstr "Hora actual"
4864
  msgstr "Directorio"
4865
 
4866
  #: core/class-wpbdp.php:31
 
4867
  msgctxt "post type singular name"
4868
  msgid "Listing"
4869
  msgstr "Listado"
4907
  msgstr "Categorías de Directorio"
4908
 
4909
  #: core/class-wpbdp.php:56
 
4910
  msgid "Directory Category"
4911
+ msgstr "Categoría de Directorio"
4912
 
4913
  #: core/class-wpbdp.php:67
 
4914
  msgid "Directory Tags"
4915
+ msgstr "Etiquetas de Directorio"
4916
 
4917
  #: core/class-wpbdp.php:68
 
4918
  msgid "Directory Tag"
4919
+ msgstr "Etiqueta de Directorio"
4920
 
4921
  #: core/compatibility/class-navxt-integration.php:159
4922
  msgctxt "navxt"
5001
  #: core/fieldtypes/class-fieldtypes-linkedin.php:21
5002
  msgctxt "form-fields api"
5003
  msgid "You can add your Company ID or profile URL here."
5004
+ msgstr "Puede ingresar el ID de su compañía o la URL del perfil aquí."
5005
 
5006
  #: core/fieldtypes/class-fieldtypes-multiselect.php:6
5007
  msgctxt "form-fields api"
5057
  #: core/fieldtypes/class-fieldtypes-textarea.php:53
5058
  msgctxt "form-fields admin"
5059
  msgid "Allow IFRAME tags in content?"
5060
+ msgstr "¿Permitir tags IFRAME en el contenido?"
5061
 
5062
  #: core/fieldtypes/class-fieldtypes-textarea.php:56
5063
  msgctxt "admin form-fields"
5068
  "posting the listings yourself and have sole control over the content. Are "
5069
  "you sure you want to enable this?"
5070
  msgstr ""
5071
+ "Habilitar soporte para IFRAME en sus listados puede permitir a los usuarios "
5072
+ "ejecutar scripts arbitrarios en la página, lo que pudiera infectar su sitio. "
5073
+ "No recomendamos que utilice esta opción a menos que usted tenga el control "
5074
+ "completo sobre el contenido de los listados. ¿Está seguro de que desea "
5075
+ "habilitar esta opción?"
5076
 
5077
  #: core/fieldtypes/class-fieldtypes-textarea.php:57
 
5078
  msgctxt "form-fields admin"
5079
  msgid "No"
5080
+ msgstr "No"
5081
 
5082
  #: core/fieldtypes/class-fieldtypes-textarea.php:58
5083
  msgctxt "form-fields admin"
5084
  msgid "Yes"
5085
+ msgstr ""
5086
 
5087
  #: core/fieldtypes/class-fieldtypes-textarea.php:63
5088
  msgctxt "form-fields admin"
5127
  #: core/fieldtypes/class-fieldtypes-textarea.php:79
5128
  msgctxt "form-fields admin"
5129
  msgid "Automatically generate excerpt from content field?"
5130
+ msgstr "¿Generar resumen automáticamente del campo de contenido?"
5131
 
5132
  #: core/fieldtypes/class-fieldtypes-textfield.php:5
5133
  msgctxt "form-fields api"
5376
  #: core/gateways-dummy.php:15
5377
  msgctxt "dummy gateway"
5378
  msgid "Dummy"
5379
+ msgstr "Dummy"
5380
 
5381
  #: core/gateways-dummy.php:38
5382
  msgctxt "dummy gateway"
5383
  msgid "Dummy Gateway"
5384
+ msgstr "Pasarela de Pago Dummy"
5385
 
5386
  #: core/gateways-dummy.php:39
5387
  msgctxt "dummy gateway"
5388
  msgid "New Status:"
5389
+ msgstr "Nuevo estado:"
5390
 
5391
  #: core/gateways-dummy.php:41
5392
  msgctxt "dummy gateway"
5393
  msgid "Completed"
5394
+ msgstr "Completado"
5395
 
5396
  #: core/gateways-dummy.php:43
5397
  msgctxt "dummy gateway"
5398
  msgid "Pending"
5399
+ msgstr "Pendiente"
5400
 
5401
  #: core/gateways-dummy.php:45
5402
  msgctxt "dummy gateway"
5403
  msgid "Canceled"
5404
+ msgstr "Cancelado"
5405
 
5406
  #: core/gateways-dummy.php:47
5407
  msgctxt "dummy gateway"
5408
  msgid "Rejected"
5409
+ msgstr "Rechazado"
5410
 
5411
  #: core/gateways-dummy.php:49
5412
  msgctxt "dummy gateway"
5421
  #: core/helpers/class-themes-updater.php:128
5422
  msgctxt "themes"
5423
  msgid "Updating theme..."
5424
+ msgstr "Actualizando tema..."
5425
 
5426
  #: core/helpers/class-themes-updater.php:129
5427
  msgctxt "themes"
5428
  msgid "Theme updated."
5429
+ msgstr "Tema actualizado."
5430
 
5431
  #: core/helpers/class-themes-updater.php:131
5432
  msgctxt "themes"
5433
  msgid "New version available (<b>%s</b>). <a>Update now.</a>"
5434
+ msgstr "Nueva versión disponible (<b>%s</b>). <a>Actualizar ahora.</a>"
5435
 
5436
  #: core/helpers/class-themes-updater.php:159
5437
  msgctxt "themes"
5438
  msgid "Could not update theme: %s"
5439
+ msgstr "No se pudo actualizar el tema: %s"
5440
 
5441
  #: core/helpers/class-themes-updater.php:165
5442
  msgctxt "themes"
5443
  msgid "Theme was updated sucessfully."
5444
+ msgstr "El tema fue actualizado correctamente."
5445
 
5446
  #: core/installer.php:41
5447
  msgctxt "default category name"
5449
  msgstr "General"
5450
 
5451
  #: core/installer.php:49
 
5452
  msgctxt "installer"
5453
  msgid "Default Fee"
5454
+ msgstr "Comisión por Defecto"
5455
 
5456
  #: core/installer.php:486
5457
  msgctxt "installer"
5691
  "able to post listings. Please <a href=\"fees\">create some fees</a> or <a "
5692
  "href=\"settings\">configure the Directory</a> to operate in \"Free Mode\"."
5693
  msgstr ""
5694
+ "Usted tiene pagos habilitados pero no hay comisiones disponibles. Los "
5695
+ "usuarios no podrán enviar listados. Por favor <a href=\"fees\">cree algunas "
5696
+ "comisiones</a> o <a href=\"settings\">configure el directorio</a> para "
5697
+ "operar en \"modo gratuito\"."
5698
 
5699
  #: core/payment.php:169
5700
  msgctxt "payments-api"
5845
  msgstr "Directorio"
5846
 
5847
  #: core/templates-ui.php:191
 
5848
  msgid "View All Listings"
5849
+ msgstr "Ver Todos los Listados"
5850
 
5851
  #: core/templates-ui.php:197
 
5852
  msgid "Create A Listing"
5853
+ msgstr "Crear un Listado"
5854
 
5855
  #: core/templates-ui.php:224
5856
  msgctxt "templates"
5880
  #: core/themes.php:635
5881
  msgctxt "themes"
5882
  msgid "ZIP file is not a valid BD theme file."
5883
+ msgstr "El archivo ZIP no es un tema de BD válido."
5884
 
5885
  #: core/themes.php:641
5886
  msgctxt "themes"
5887
  msgid "Could not create themes directory."
5888
+ msgstr "No se pudo crear el directorio de los temas."
5889
 
5890
  #: core/themes.php:649
5891
  msgctxt "themes"
5892
  msgid "Could not remove previous theme directory \"%s\"."
5893
+ msgstr "No se pudo remover el directorio anterior \"%s\"."
5894
 
5895
  #: core/themes.php:655
5896
  msgctxt "themes"
5897
  msgid "Could not move new theme into theme directory."
5898
+ msgstr "No se pudo mover el nuevo tema al directorio de temas."
5899
 
5900
  #: core/utils.php:106
5901
  msgctxt "utils"
6046
  msgstr "Solicitud inválida."
6047
 
6048
  #: core/views/all_listings.php:6
 
6049
  msgctxt "views"
6050
  msgid "View All Listings"
6051
+ msgstr "Ver Todos los Listados"
6052
 
6053
  #: core/views/checkout.php:28
6054
  msgctxt "payments"
6150
  msgstr "l F j, Y \\a\\t g:i a"
6151
 
6152
  #: core/views/listing_contact.php:178
 
6153
  msgctxt "contact-message"
6154
  msgid "%s (admin: %s)"
6155
+ msgstr "%s (admin: %s)"
6156
 
6157
  #: core/views/listing_contact.php:191
6158
  msgctxt "contact-message"
6206
  msgstr "Suscripción inválida."
6207
 
6208
  #: core/views/manage_recurring.php:97
 
6209
  msgctxt "manage subscriptions"
6210
  msgid "← Return to \"Delete Listing\"."
6211
+ msgstr "← Regresar a \"Eliminar Listado\"."
6212
 
6213
  #: core/views/manage_recurring.php:103
 
6214
  msgctxt "manage subscriptions"
6215
  msgid "Subscription canceled."
6216
+ msgstr "Suscripción cancelada."
6217
 
6218
  #: core/views/renew_listing.php:13
6219
  msgctxt "renewal"
6288
  "preferencias de cobro de nuevo."
6289
 
6290
  #: core/views/request_access_keys.php:17
 
6291
  msgctxt "request_access_keys"
6292
  msgid "Please enter a valid e-mail address."
6293
  msgstr "Por favor ingrese un correo electrónico válido."
6294
 
6295
  #: core/views/request_access_keys.php:22
 
6296
  msgctxt "request_access_keys"
6297
  msgid "There are no listings associated to your e-mail address."
6298
+ msgstr "No hay listados asociados a su correo electrónico."
6299
 
6300
  #: core/views/request_access_keys.php:26
 
6301
  msgctxt "request_access_keys"
6302
  msgid "Listing Access Keys"
6303
+ msgstr "Claves de Acceso de Listado"
6304
 
6305
  #: core/views/request_access_keys.php:30
6306
  msgctxt "request_access_keys"
6307
  msgid "Access keys have been sent to your e-mail address."
6308
+ msgstr "Las claves de acceso han sido enviadas a su dirección de correo."
6309
 
6310
  #: core/views/request_access_keys.php:32
6311
  msgctxt "request_access_keys"
6313
  "An error occurred while sending the access keys to your e-mail address. "
6314
  "Please try again."
6315
  msgstr ""
6316
+ "Un error ocurrió mientras se enviaban sus claves de acceso. Por favor "
6317
+ "intente de nuevo."
6318
 
6319
  #: core/views/search.php:8
 
6320
  msgctxt "views"
6321
  msgid "Find A Listing"
6322
+ msgstr "Encontrar un Listado"
6323
 
6324
  #: core/views/submit_listing.php:10
 
6325
  msgctxt "views"
6326
  msgid "Submit A Listing"
6327
+ msgstr "Enviar un Listado"
6328
 
6329
  #: core/views/submit_listing.php:16
6330
  msgctxt "templates"
6332
  "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
6333
  "Submission?\" setting checked?"
6334
  msgstr ""
6335
+ "<b>Vista no disponible</b>. ¿Tiene \"Deshabilitar envío de listados desde el "
6336
+ "frontend\" habilitado?"
6337
 
6338
  #: core/views/submit_listing.php:18
 
6339
  msgctxt "templates"
6340
  msgid "View not available."
6341
+ msgstr "Vista no disponible."
6342
 
6343
  #: core/views/upgrade_listing.php:16
6344
  msgctxt "listing upgrade"
6673
 
6674
  #: templates/email/listing-added.tpl.php:15
6675
  #: templates/email/listing-edited.tpl.php:15
 
6676
  msgctxt "notify email"
6677
  msgid "Admin URL"
6678
+ msgstr "URL de administración"
6679
 
6680
  #: templates/email/listing-added.tpl.php:17
6681
  #: templates/email/listing-edited.tpl.php:17
6704
  "Below you'll find the access keys for all the listings registered with your "
6705
  "e-mail address on our site."
6706
  msgstr ""
6707
+ "Abajo encontrará las claves de acceso para todos los listados registrados "
6708
+ "con su dirección de correo electrónico en el sitio."
6709
 
6710
  #: templates/email-access-keys.tpl.php:5
6711
  msgctxt "request_access_keys"
6712
  msgid "Access Key:"
6713
+ msgstr "Clave de acceso:"
6714
 
6715
  #: templates/email-access-keys.tpl.php:6
 
6716
  msgctxt "request_access_keys"
6717
  msgid "URL:"
6718
  msgstr "URL:"
6761
  msgid "Upgrade listing to %s for %s."
6762
  msgstr "Mejorar listado a %s por %s."
6763
 
6764
+ #: templates/main-box.tpl.php:13
6765
+ msgctxt "main box"
6766
+ msgid "Find listings for <keywords>"
6767
+ msgstr "Buscar listados según <palabras clave>"
6768
+
6769
+ #: templates/main-box.tpl.php:19
6770
  msgctxt "main box"
6771
  msgid "Find Listings"
6772
+ msgstr "Buscar Listados"
6773
 
6774
+ #: templates/main-box.tpl.php:20
 
6775
  msgctxt "main box"
6776
  msgid "Advanced Search"
6777
  msgstr "Búsqueda Avanzada"
6862
  msgstr "Imágenes Permitidas"
6863
 
6864
  #: templates/parts/category-fee-selection.tpl.php:28
 
6865
  msgctxt "templates"
6866
  msgid "There are no fees available for this category."
6867
+ msgstr "No hay comisiones disponibles para esta categoría."
6868
 
6869
  #: templates/parts/category-fee-selection.tpl.php:50
6870
  msgctxt "templates"
7014
  msgstr "Limpiar"
7015
 
7016
  #: templates/send-access-keys.tpl.php:5
 
7017
  msgctxt "send-access-keys"
7018
  msgid "Enter your e-mail address"
7019
+ msgstr "Ingrese su dirección de correo-e"
7020
 
7021
  #: templates/send-access-keys.tpl.php:9
 
7022
  msgctxt "send-access-keys"
7023
  msgid "Continue"
7024
  msgstr "Continuar"
7138
  msgstr "Casillas de imagen disponibles:"
7139
 
7140
  #: templates/submit-listing/images-upload-form.tpl.php:45
 
7141
  msgctxt "templates"
7142
  msgid "File size:"
7143
+ msgstr "Tamaño de archivo:"
7144
 
7145
  #: templates/submit-listing/images-upload-form.tpl.php:47
7146
  #: templates/submit-listing/images-upload-form.tpl.php:54
7147
  #: templates/submit-listing/images-upload-form.tpl.php:61
7148
  msgctxt "templates"
7149
  msgid "No limit"
7150
+ msgstr "Sin límite"
7151
 
7152
  #: templates/submit-listing/images-upload-form.tpl.php:52
 
7153
  msgctxt "templates"
7154
  msgid "Image width:"
7155
+ msgstr "Ancho de imagen:"
7156
 
7157
  #: templates/submit-listing/images-upload-form.tpl.php:59
 
7158
  msgctxt "templates"
7159
  msgid "Image height:"
7160
+ msgstr "Alto de imagen:"
7161
 
7162
  #: templates/submit-listing/images.tpl.php:4
7163
  msgctxt "templates"
7191
  #: themes/default/templates/excerpt_content.tpl.php:13
7192
  msgctxt "themes/default"
7193
  msgid "Address"
7194
+ msgstr "Dirección"
7195
 
7196
  #: vendors/edd/EDD_SL_Plugin_Updater.php:178
7197
  msgid ""
7198
  "There is a new version of %1$s available. <a target=\"_blank\" class="
7199
  "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
7200
  msgstr ""
7201
+ "Hay una nueva versión de %1$s disponible. <a target=\"_blank\" class="
7202
+ "\"thickbox\" href=\"%2$s\">Ver los detalles de la versión %3$s</a>."
7203
 
7204
  #: vendors/edd/EDD_SL_Plugin_Updater.php:185
7205
  msgid ""
7207
  "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
7208
  "\">update now</a>."
7209
  msgstr ""
7210
+ "Hay una versión de %1$s disponible. <a target=\"_blank\" class=\"thickbox\" "
7211
+ "href=\"%2$s\">Ver los detalles de la versión %3$s</a> o <a href=\"%4$s"
7212
+ "\">actualizar ahora</a>."
7213
 
7214
  #: vendors/edd/EDD_SL_Plugin_Updater.php:325
7215
  msgid "You do not have permission to install plugin updates"
7216
+ msgstr "Usted no tiene permisos para instalar plugins"
7217
 
7218
  #: vendors/edd/EDD_SL_Plugin_Updater.php:325
7219
  msgid "Error"
7239
  msgid "http://businessdirectoryplugin.com"
7240
  msgstr "http://businessdirectoryplugin.com"
7241
 
7242
+ #~ msgctxt "admin csv-import"
7243
+ #~ msgid "Last imported line from file:"
7244
+ #~ msgstr "Última línea importada del archivo:"
7245
+
7246
  #~ msgctxt "formfields-preview"
7247
  #~ msgid ""
7248
  #~ "This is a preview of the form as it will appear during \"Submit a Listing"
languages/WPBDM-fr_FR.mo CHANGED
Binary file
languages/WPBDM-fr_FR.po CHANGED
@@ -4,15 +4,15 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-08-24 22:42:45+00:00\n"
8
- "PO-Revision-Date: 2016-02-24 15:34-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language: fr\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.8.5\n"
16
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
 
@@ -121,7 +121,13 @@ msgctxt "admin actions"
121
  msgid "Renew Listing"
122
  msgstr "Renouveler l'annonce"
123
 
124
- #: admin/class-admin.php:124
 
 
 
 
 
 
125
  msgctxt "drip pointer"
126
  msgid ""
127
  "Find out how to create a compelling, thriving business directory from "
@@ -132,141 +138,141 @@ msgstr ""
132
  "zéro dans ce cours (GRATUIT) en 5 parties (envoyé via e-mail). Obtenez un "
133
  "module premium GRATUIT juste après votre inscription."
134
 
135
- #: admin/class-admin.php:126
136
  msgctxt "drip pointer"
137
  msgid "Email Address:"
138
  msgstr "Adresse e-mail:"
139
 
140
- #: admin/class-admin.php:132
141
  msgctxt "drip pointer"
142
  msgid "Want to know the Secrets of Building an Awesome Business Directory?"
143
  msgstr ""
144
  "Voulez-vous connaître les secrets de la création d'un superbe annuaire "
145
  "professionnel ?"
146
 
147
- #: admin/class-admin.php:134
148
  msgctxt "drip pointer"
149
  msgid "Yes, please!"
150
  msgstr "Oui, s'il vous plait !"
151
 
152
- #: admin/class-admin.php:136
153
  msgctxt "drip pointer"
154
  msgid "No, thanks"
155
  msgstr "Non, merci"
156
 
157
- #: admin/class-admin.php:153
158
  msgctxt "admin"
159
  msgid "Business Directory"
160
  msgstr "Annuaire Professionnel"
161
 
162
- #: admin/class-admin.php:164
163
  msgctxt "admin"
164
  msgid "You're all set. Visit your new <a>Business Directory</a> page."
165
  msgstr ""
166
  "Vous êtes prêt. Visitez votre nouvelle page <a>Annuaire Professionnel</a>"
167
 
168
- #: admin/class-admin.php:185
169
  msgctxt "drip pointer"
170
  msgid "Invalid e-mail address."
171
  msgstr "Adresse e-mail non valide"
172
 
173
- #: admin/class-admin.php:219
174
  msgctxt "admin menu"
175
  msgid "Business Directory Admin"
176
  msgstr "Administrateur de l'Annuaire Professionnel"
177
 
178
- #: admin/class-admin.php:220
179
  #, fuzzy
180
  msgctxt "admin menu"
181
  msgid "Dir. Admin"
182
  msgstr "Administrateur de l'Annuaire"
183
 
184
- #: admin/class-admin.php:220
185
  msgctxt "admin menu"
186
  msgid "Directory Admin"
187
  msgstr "Administrateur de l'Annuaire"
188
 
189
- #: admin/class-admin.php:226 admin/class-admin.php:227
190
  msgctxt "admin menu"
191
  msgid "Add New Listing"
192
  msgstr "Ajoutez une nouvelle annonce"
193
 
194
- #: admin/class-admin.php:232 admin/class-admin.php:233
195
  msgctxt "admin menu"
196
  msgid "Manage Options"
197
  msgstr "Gestion des options"
198
 
199
- #: admin/class-admin.php:238 admin/class-admin.php:239
200
  msgctxt "admin menu"
201
  msgid "Manage Fees"
202
  msgstr "Gestion des frais"
203
 
204
- #: admin/class-admin.php:244 admin/class-admin.php:245
205
  msgctxt "admin menu"
206
  msgid "Manage Form Fields"
207
  msgstr "Gestion des champs"
208
 
209
- #: admin/class-admin.php:250 admin/class-admin.php:251
210
  msgctxt "admin menu"
211
  msgid "Listings"
212
  msgstr "Listes"
213
 
214
- #: admin/class-admin.php:265 admin/class-admin.php:266
215
  msgctxt "admin menu"
216
  msgid "CSV Import"
217
  msgstr "Importation CSV"
218
 
219
- #: admin/class-admin.php:271 admin/class-admin.php:272
220
  msgctxt "admin menu"
221
  msgid "CSV Export"
222
  msgstr "Exportation CSV"
223
 
224
- #: admin/class-admin.php:277 admin/class-admin.php:278
225
  msgctxt "admin menu"
226
  msgid "Debug"
227
  msgstr "Déboguer"
228
 
229
- #: admin/class-admin.php:287
230
  msgctxt "admin menu"
231
  msgid "Main Menu"
232
  msgstr "Menu principal"
233
 
234
- #: admin/class-admin.php:298
235
  msgctxt "admin menu"
236
  msgid "Uninstall Business Directory Plugin"
237
  msgstr "Désinstaller le Plugin Annuaire Professionnel"
238
 
239
- #: admin/class-admin.php:299
240
  msgctxt "admin menu"
241
  msgid "Uninstall"
242
  msgstr "Désinstaller"
243
 
244
- #: admin/class-admin.php:413
245
  #: admin/templates/listing-metabox-categories.tpl.php:69
246
  msgctxt "admin infometabox"
247
  msgid "never"
248
  msgstr "jamais"
249
 
250
- #: admin/class-admin.php:507
251
  msgctxt "admin"
252
  msgid "Dismiss this notice."
253
  msgstr ""
254
 
255
- #: admin/class-admin.php:535
256
  msgctxt "admin"
257
  msgid "The listing has been published."
258
  msgid_plural "The listings have been published."
259
  msgstr[0] "L'annonce a été publiée."
260
  msgstr[1] "Les annonces ont été publiées."
261
 
262
- #: admin/class-admin.php:553
263
  msgctxt "admin"
264
  msgid "The listing status has been set as paid."
265
  msgid_plural "The listings status has been set as paid."
266
  msgstr[0] "Le statut de l'annonce a été défini comme étant payée."
267
  msgstr[1] "Le statut des annocnes a été défini comme étant payées."
268
 
269
- #: admin/class-admin.php:559
270
  msgctxt "admin"
271
  msgid ""
272
  "Only invoices containing non-recurring items were marked as paid. Please "
@@ -278,28 +284,28 @@ msgid_plural ""
278
  msgstr[0] ""
279
  msgstr[1] ""
280
 
281
- #: admin/class-admin.php:578
282
  msgctxt "admin"
283
  msgid "The listing has been modified."
284
  msgid_plural "The listings have been modified."
285
  msgstr[0] "L'annonce a été modifiée."
286
  msgstr[1] "Les annonces ont été modifiées."
287
 
288
- #: admin/class-admin.php:591
289
  msgctxt "admin"
290
  msgid "The listing has been upgraded."
291
  msgid_plural "The listings have been upgraded."
292
  msgstr[0] "L'annonce a été mise à jour."
293
  msgstr[1] "Les annonces ont été mise à jour."
294
 
295
- #: admin/class-admin.php:603
296
  msgctxt "admin"
297
  msgid "The listing has been downgraded."
298
  msgid_plural "The listings have been downgraded."
299
  msgstr[0] "L'annonce a été rétrogradée."
300
  msgstr[1] "Les annonces ont été rétrogradées."
301
 
302
- #: admin/class-admin.php:614
303
  msgctxt "admin payments"
304
  msgid ""
305
  "The payment status was not changed. Recurring payments can't be manually "
@@ -307,44 +313,44 @@ msgid ""
307
  "went through."
308
  msgstr ""
309
 
310
- #: admin/class-admin.php:619
311
  msgctxt "admin"
312
  msgid "The transaction has been approved."
313
  msgstr "La transaction a été approuvée."
314
 
315
- #: admin/class-admin.php:629
316
  msgctxt "admin"
317
  msgid "The transaction has been rejected."
318
  msgstr "La transaction a été rejetée."
319
 
320
- #: admin/class-admin.php:635
321
  msgctxt "admin"
322
  msgid "The fee was successfully assigned."
323
  msgstr "Les frais ont bien été assignés."
324
 
325
- #: admin/class-admin.php:644
326
  msgctxt "admin"
327
  msgid "Listing was renewed."
328
  msgid_plural "Listings were renewed."
329
  msgstr[0] "L'annonce a été renouvelée."
330
  msgstr[1] "Les annonces ont été renouvelées."
331
 
332
- #: admin/class-admin.php:651
333
  msgctxt "admin"
334
  msgid "Renewal email sent."
335
  msgstr "Email de renouvellement envoyé"
336
 
337
- #: admin/class-admin.php:685
338
  msgctxt "admin category id"
339
  msgid "ID"
340
  msgstr "ID"
341
 
342
- #: admin/class-admin.php:687 admin/class-admin.php:693
343
  msgctxt "admin"
344
  msgid "Listing Count"
345
  msgstr "Compteur d'annonces"
346
 
347
- #: admin/class-admin.php:802
348
  msgctxt "admin"
349
  msgid ""
350
  "<b>Business Directory Plugin</b> requires fields with the following "
@@ -353,7 +359,7 @@ msgstr ""
353
  "<b>Plugin d'Annuaire Professionnel</b> requiert des champs avec les "
354
  "associations suivantes pour marcher correctement: <b>%s</b>"
355
 
356
- #: admin/class-admin.php:804
357
  msgctxt "admin"
358
  msgid ""
359
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
@@ -362,7 +368,7 @@ msgstr ""
362
  "<b>Plugin d'Annuaire Professionnel</b> requiert un champ avec un <b>%s</b> "
363
  "association en ordre pour marcher correctement."
364
 
365
- #: admin/class-admin.php:808
366
  msgctxt "admin"
367
  msgid ""
368
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
@@ -371,17 +377,17 @@ msgstr ""
371
  "Vous pouvez créer ces champs personnalisés pas vous-mêmes dans \"Gestion des "
372
  "Champs\" ou laissez le plugin le faire pour vous automatiquement."
373
 
374
- #: admin/class-admin.php:812
375
  msgctxt "admin"
376
  msgid "Go to \"Manage Form Fields\""
377
  msgstr "Aller à \"Gestion des Champs\""
378
 
379
- #: admin/class-admin.php:815
380
  msgctxt "admin"
381
  msgid "Create these required fields for me"
382
  msgstr "Créer ces champs obligatoires pour moi"
383
 
384
- #: admin/class-admin.php:824
385
  msgctxt "admin"
386
  msgid ""
387
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -390,7 +396,7 @@ msgstr ""
390
  "<b>Business Directory Plugin</b> requiert une page avec le code "
391
  "d'activation <tt>[businessdirectory]</tt> pour marcher correctement."
392
 
393
- #: admin/class-admin.php:826
394
  msgctxt "admin"
395
  msgid ""
396
  "You can create this page by yourself or let Business Directory do this for "
@@ -399,27 +405,27 @@ msgstr ""
399
  "Vous pouvez créer cette page par vous-mêmes ou laisser le plugin la faire "
400
  "pour vous automatiquement."
401
 
402
- #: admin/class-admin.php:830
403
  msgctxt "admin"
404
  msgid "Create required pages for me"
405
  msgstr "Créer les pages requises pour moi."
406
 
407
- #: admin/class-admin.php:870
408
  msgctxt "admin compat"
409
  msgid "Installed: %s"
410
  msgstr "Installé: %s"
411
 
412
- #: admin/class-admin.php:870
413
  msgctxt "admin compat"
414
  msgid "N/A"
415
  msgstr "N/A"
416
 
417
- #: admin/class-admin.php:873
418
  msgctxt "admin compat"
419
  msgid "Required: %s"
420
  msgstr "Requis: %s"
421
 
422
- #: admin/class-admin.php:885
423
  msgctxt "admin compat"
424
  msgid ""
425
  "Business Directory has detected some incompatible premium module versions "
@@ -428,7 +434,7 @@ msgstr ""
428
  "Le plugin a détecté une/des modules incomptatible de la version premium "
429
  "installé."
430
 
431
- #: admin/class-admin.php:887
432
  msgctxt "admin compat"
433
  msgid ""
434
  "Please upgrade to the required versions indicated below to make sure "
@@ -437,7 +443,7 @@ msgstr ""
437
  "Veuillez mettre à jour vers la version requise, indiquée ci-dessous, pour "
438
  "assurer le bon fonctionnement des fonctions. "
439
 
440
- #: admin/class-admin.php:907
441
  msgctxt "admin"
442
  msgid ""
443
  "We noticed you want your Business Directory users to register before posting "
@@ -1388,118 +1394,113 @@ msgstr ""
1388
  "suffisamment d'espace disque et de mémoire disponible sur PHP. Vérifiez "
1389
  "votre journal d'erreurs pour plus de détails."
1390
 
1391
- #: admin/templates/csv-import-progress.tpl.php:14
1392
- msgctxt "admin csv-import"
1393
- msgid "Last imported line from file:"
1394
- msgstr "Dernière ligne importée depuis le fichier:"
1395
-
1396
- #: admin/templates/csv-import-progress.tpl.php:18
1397
- #: admin/templates/csv-import-progress.tpl.php:25
1398
  msgctxt "admin csv-import"
1399
  msgid "← Return to CSV Import"
1400
  msgstr "← Retourner vers l'importation CSV"
1401
 
1402
- #: admin/templates/csv-import-progress.tpl.php:23
1403
  msgctxt "admin csv-import"
1404
  msgid "Import Canceled"
1405
  msgstr "Importation annulée"
1406
 
1407
- #: admin/templates/csv-import-progress.tpl.php:24
1408
  msgctxt "admin csv-import"
1409
  msgid "The import has been canceled."
1410
  msgstr "L'importation a été annulée."
1411
 
1412
- #: admin/templates/csv-import-progress.tpl.php:31
1413
  msgid "Import Progress"
1414
  msgstr "Progression de l'importation"
1415
 
1416
- #: admin/templates/csv-import-progress.tpl.php:34
1417
  msgctxt "admin csv-import"
1418
  msgid "Files"
1419
  msgstr "Fichiers"
1420
 
1421
- #: admin/templates/csv-import-progress.tpl.php:37
1422
  msgctxt "admin csv-import"
1423
  msgid "Rows in file"
1424
  msgstr "Lignes dans le fichier"
1425
 
1426
- #: admin/templates/csv-import-progress.tpl.php:40
1427
  msgctxt "admin csv-import"
1428
  msgid "Progress"
1429
  msgstr "Progression"
1430
 
1431
- #: admin/templates/csv-import-progress.tpl.php:44
1432
  msgctxt "admin csv-import"
1433
  msgid "Import has not started. Click \"Start Import\" to begin."
1434
  msgstr ""
1435
  "L'importation n'a pas commencé. Cliquez sur \"Commencer l'importation\"."
1436
 
1437
- #: admin/templates/csv-import-progress.tpl.php:45
1438
  msgctxt "admin csv-import"
1439
  msgid "Importing CSV file..."
1440
  msgstr "Importer le fichier CSV..."
1441
 
1442
- #: admin/templates/csv-import-progress.tpl.php:51
1443
  msgctxt "admin csv-import"
1444
  msgid "Start Import"
1445
  msgstr "Commencer l'importation"
1446
 
1447
- #: admin/templates/csv-import-progress.tpl.php:52
1448
  msgctxt "admin csv-import"
1449
  msgid "Cancel Import"
1450
  msgstr "Annuler l'importation "
1451
 
1452
- #: admin/templates/csv-import-progress.tpl.php:59
1453
  msgctxt "admin csv-import"
1454
  msgid "Import finished"
1455
  msgstr "Importation achevée"
1456
 
1457
- #: admin/templates/csv-import-progress.tpl.php:62
1458
  msgctxt "admin csv-import"
1459
  msgid "Import was completed successfully."
1460
  msgstr "L'importation s'est déroulée sans accroc."
1461
 
1462
- #: admin/templates/csv-import-progress.tpl.php:66
1463
  msgctxt "admin csv-import"
1464
  msgid "Import was completed but some rows were rejected."
1465
  msgstr "L'importation est finie, mais certaines lignes ont été rejetées."
1466
 
1467
- #: admin/templates/csv-import-progress.tpl.php:69
1468
  msgctxt "admin csv-import"
1469
  msgid "Import Summary"
1470
  msgstr "Sommaire de l'importation"
1471
 
1472
- #: admin/templates/csv-import-progress.tpl.php:71
1473
  msgctxt "admin csv-import"
1474
  msgid "Rows in file:"
1475
  msgstr "Lignes dans le fichier:"
1476
 
1477
- #: admin/templates/csv-import-progress.tpl.php:74
1478
  msgctxt "admin csv-import"
1479
  msgid "Imported rows:"
1480
  msgstr "Lignes importées:"
1481
 
1482
- #: admin/templates/csv-import-progress.tpl.php:77
1483
  msgctxt "admin csv-import"
1484
  msgid "Rejected rows:"
1485
  msgstr "Lignes rejetées:"
1486
 
1487
- #: admin/templates/csv-import-progress.tpl.php:82
1488
  msgctxt "admin csv-import"
1489
  msgid "Import Warnings"
1490
  msgstr "Alertes d'importation:"
1491
 
1492
- #: admin/templates/csv-import-progress.tpl.php:85
1493
  msgctxt "admin csv-import"
1494
  msgid "Line #"
1495
  msgstr "Ligne #"
1496
 
1497
- #: admin/templates/csv-import-progress.tpl.php:86
1498
  msgctxt "admin csv-import"
1499
  msgid "Line"
1500
  msgstr "Ligne"
1501
 
1502
- #: admin/templates/csv-import-progress.tpl.php:87
1503
  msgctxt "admin csv-import"
1504
  msgid "Warning"
1505
  msgstr "Alerte"
@@ -2223,7 +2224,7 @@ msgstr ""
2223
  "Veuillez voir la <a>Documentation de champs de formulaire</a> pour plus de "
2224
  "détails."
2225
 
2226
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.1) #-#-#-#-#
2227
  #. Plugin Name of the plugin/theme
2228
  #: admin/templates/header.tpl.php:4
2229
  msgid "Business Directory Plugin"
@@ -3014,57 +3015,64 @@ msgctxt "tracking"
3014
  msgid "Allow Tracking"
3015
  msgstr "Autoriser l'analyse"
3016
 
3017
- #: business-directory-plugin.php:660
3018
  msgctxt "admin plugins"
3019
  msgid "Settings"
3020
  msgstr "Paramètres"
3021
 
3022
- #: business-directory-plugin.php:768 business-directory-plugin.php:775
3023
  msgctxt "rss feed"
3024
  msgid "%s Feed"
3025
  msgstr "%s diffusion"
3026
 
3027
- #: business-directory-plugin.php:1113
3028
  msgctxt "title"
3029
  msgid "Submit A Listing"
3030
  msgstr "Soumettre une annonce"
3031
 
3032
- #: business-directory-plugin.php:1123
3033
  msgctxt "title"
3034
  msgid "Find a Listing"
3035
  msgstr "Trouver une annonce"
3036
 
3037
- #: business-directory-plugin.php:1133
3038
  msgctxt "title"
3039
  msgid "View All Listings"
3040
  msgstr "Voir toutes les annonces"
3041
 
3042
- #: business-directory-plugin.php:1153
3043
  msgctxt "title"
3044
  msgid "Listings tagged: %s"
3045
  msgstr "Annonces marquées: %s"
3046
 
3047
- #: core/api.php:397
3048
  #, fuzzy
3049
  msgid "Free"
3050
  msgstr "Gratuit"
3051
 
3052
- #: core/class-csv-import.php:391
 
 
 
 
 
 
 
3053
  msgctxt "admin csv-import"
3054
  msgid "Could not create listing category \"%s\""
3055
  msgstr "Vous ne pouvez pas créer cette catégorie d'annonce \"%s\""
3056
 
3057
- #: core/class-csv-import.php:535
3058
  msgctxt "admin csv-import"
3059
  msgid "Username \"%s\" does not exist"
3060
  msgstr "Le nom d'utilisateur \"%s\" n'existe pas"
3061
 
3062
- #: core/class-csv-import.php:567
3063
  msgctxt "admin csv-import"
3064
  msgid "Missing required field: %s"
3065
  msgstr "Absence d'un champ requis: %s"
3066
 
3067
- #: core/class-csv-import.php:587
3068
  msgctxt "admin csv-import"
3069
  msgid "Listing category \"%s\" does not exist"
3070
  msgstr "La catégorie d'annonce \"%s\" n'existe pas"
@@ -3593,13 +3601,13 @@ msgctxt "admin settings"
3593
  msgid "Enable AJAX compatibility mode?"
3594
  msgstr "Activer le mode de comptabilité AJAX ?"
3595
 
3596
- #: core/class-settings.php:181 core/class-settings.php:660
3597
  msgctxt "admin settings"
3598
  msgid "Listings"
3599
  msgstr "Annonces"
3600
 
3601
- #: core/class-settings.php:182 core/class-settings.php:330
3602
- #: core/class-settings.php:617
3603
  msgctxt "admin settings"
3604
  msgid "General Settings"
3605
  msgstr "Paramètres généraux"
@@ -3649,15 +3657,20 @@ msgstr ""
3649
 
3650
  #: core/class-settings.php:200
3651
  msgctxt "admin settings"
 
 
 
 
 
3652
  msgid "Require login for using the contact form?"
3653
  msgstr "Exiger une connexion pour utiliser le formulaire de contact ?"
3654
 
3655
- #: core/class-settings.php:206
3656
  msgctxt "admin settings"
3657
  msgid "Maximum number of contact form submits per day"
3658
  msgstr "Nombre maximum de formulaire de contact soumis par jour"
3659
 
3660
- #: core/class-settings.php:209
3661
  msgctxt "admin settings"
3662
  msgid ""
3663
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
@@ -3666,12 +3679,12 @@ msgstr ""
3666
  "Utilisez ceci pour prévenir les annonces contenant des spams. 0 signifie un "
3667
  "nombre de soumission illimité par jour."
3668
 
3669
- #: core/class-settings.php:215
3670
  msgctxt "admin settings"
3671
  msgid "Include comment form on listing pages?"
3672
  msgstr "Inclure les formulaire de commentaires dans pages annonces ?"
3673
 
3674
- #: core/class-settings.php:218
3675
  msgctxt "admin settings"
3676
  msgid ""
3677
  "Allow visitors to discuss listings using the standard WordPress comment "
@@ -3680,38 +3693,38 @@ msgstr ""
3680
  "Permettre aux visiteurs de discuter des annonces en utilisant le formulaire "
3681
  "de commentaire standard WordPress. Les commentaires sont visibles par tous."
3682
 
3683
- #: core/class-settings.php:219
3684
  msgctxt "admin settings"
3685
  msgid "Show listings under categories on main page?"
3686
  msgstr "Voir les annonces catégorisées sur la page principale?"
3687
 
3688
- #: core/class-settings.php:220
3689
  msgctxt "admin settings"
3690
  msgid "Status of listings upon uninstalling plugin"
3691
  msgstr "Statut des annonces dès la désinstallation du plugin"
3692
 
3693
- #: core/class-settings.php:221 core/class-settings.php:223
3694
  msgctxt "post status"
3695
  msgid "Draft"
3696
  msgstr ""
3697
 
3698
- #: core/class-settings.php:221 core/class-settings.php:223
3699
  msgctxt "post status"
3700
  msgid "Trash"
3701
  msgstr ""
3702
 
3703
- #: core/class-settings.php:222
3704
  msgctxt "admin settings"
3705
  msgid "Status of deleted listings"
3706
  msgstr "Statut des annonces effacées"
3707
 
3708
- #: core/class-settings.php:224
3709
  #, fuzzy
3710
  msgctxt "admin settings"
3711
  msgid "Submit Listing instructions message"
3712
  msgstr "Lister des messages de contact"
3713
 
3714
- #: core/class-settings.php:224
3715
  msgctxt "admin settings"
3716
  msgid ""
3717
  "This text is displayed at the first page of the Submit Listing process for "
@@ -3719,22 +3732,22 @@ msgid ""
3719
  "form or anything you want to tell users before they get started."
3720
  msgstr ""
3721
 
3722
- #: core/class-settings.php:226
3723
  msgctxt "admin settings"
3724
  msgid "Listing Renewal"
3725
  msgstr "Renouvellement des annonces"
3726
 
3727
- #: core/class-settings.php:227
3728
  msgctxt "admin settings"
3729
  msgid "Turn on listing renewal option?"
3730
  msgstr "Activer l'option renouvellement des annonces ?"
3731
 
3732
- #: core/class-settings.php:230
3733
  msgctxt "admin settings"
3734
  msgid "Allow recurring renewal payments?"
3735
  msgstr "Autoriser les paiements récurrents de renouvellement ?"
3736
 
3737
- #: core/class-settings.php:233
3738
  msgctxt "admin settings"
3739
  msgid ""
3740
  "Allow users to opt in for automatic renewal of their listings. The fee is "
@@ -3744,13 +3757,13 @@ msgstr ""
3744
  "leurs annonces. La redevance est perçue au moment de l'inscription et expire "
3745
  "sans intervention de l'utilisateur."
3746
 
3747
- #: core/class-settings.php:237
3748
  msgctxt "admin settings"
3749
  msgid "Use recurring payments as the default payment method?"
3750
  msgstr ""
3751
  "Utiliser les paiements récurrents comme méthode de paiement par défaut?"
3752
 
3753
- #: core/class-settings.php:240
3754
  msgctxt "admin settings"
3755
  msgid ""
3756
  "Enable automatic renewal without having users opt in during the submit "
@@ -3759,13 +3772,13 @@ msgstr ""
3759
  "Activer le renouvellement automatique sans avoir à avertir les utilisateurs "
3760
  "lors du processus de soumission."
3761
 
3762
- #: core/class-settings.php:245
3763
  msgctxt "admin settings"
3764
  msgid "Listing renewal e-mail threshold (in days)"
3765
  msgstr "Seuil de renouvellement des annonces par e-mail (en jours)"
3766
 
3767
  # Todo as soon as possible. I don't understand exactly what does this sentence...
3768
- #: core/class-settings.php:248
3769
  msgctxt "admin settings"
3770
  msgid ""
3771
  "Configure how many days before listing expiration is the renewal e-mail sent."
@@ -3773,7 +3786,7 @@ msgstr ""
3773
  "Configurer le nombre de jours avant l'expiration des annonces doit se "
3774
  "dérouler le renouvellement d'envoi d'e-mail."
3775
 
3776
- #: core/class-settings.php:252
3777
  msgctxt "admin settings"
3778
  msgid ""
3779
  "Send expiration notices including a cancel links to auto-renewed listings?"
@@ -3781,19 +3794,19 @@ msgstr ""
3781
  "Envoyer des avis d'expiration y compris un lien d'annulation vers le "
3782
  "renouvellement automatique des annonces ?"
3783
 
3784
- #: core/class-settings.php:259
3785
  msgctxt "admin settings"
3786
  msgid "Remind listing owners of expired listings (past due)?"
3787
  msgstr ""
3788
  "Rappeler les propriétaires des annonces lorsque ces dernières arrives à "
3789
  "expiration (en souffrance)?"
3790
 
3791
- #: core/class-settings.php:264
3792
  msgctxt "admin settings"
3793
  msgid "Listing renewal reminder e-mail threshold (in days)"
3794
  msgstr "Seuil du renouvellement des rappels e-mail des annonces (en jours)"
3795
 
3796
- #: core/class-settings.php:267
3797
  msgctxt "admin settings"
3798
  msgid ""
3799
  "Configure how many days after the expiration of a listing an e-mail reminder "
@@ -3802,175 +3815,175 @@ msgstr ""
3802
  "Configurer le nombre de jours après l'expiration d'une annonces d'un rappel "
3803
  "avant qu'un e-mail soit envoyé au propriétaire."
3804
 
3805
- #: core/class-settings.php:270
3806
  msgctxt "admin settings"
3807
  msgid "Post/Category Settings"
3808
  msgstr "Paramètres de Messages/Catégories"
3809
 
3810
- #: core/class-settings.php:271
3811
  msgctxt "admin settings"
3812
  msgid "Default new post status"
3813
  msgstr "Statut du nouveau message par défaut"
3814
 
3815
- #: core/class-settings.php:272 core/class-settings.php:275
3816
  msgctxt "post status"
3817
  msgid "Published"
3818
  msgstr ""
3819
 
3820
- #: core/class-settings.php:272 core/class-settings.php:275
3821
  #, fuzzy
3822
  msgctxt "post status"
3823
  msgid "Pending"
3824
  msgstr "En attente"
3825
 
3826
- #: core/class-settings.php:274
3827
  msgctxt "admin settings"
3828
  msgid "Edit post status"
3829
  msgstr "Editer le statut du message"
3830
 
3831
- #: core/class-settings.php:276
3832
  msgctxt "admin settings"
3833
  msgid "Order categories list by"
3834
  msgstr "Ordonner les catégories des annonces par"
3835
 
3836
- #: core/class-settings.php:278
3837
  msgctxt "admin settings"
3838
  msgid "Name"
3839
  msgstr "Nom"
3840
 
3841
- #: core/class-settings.php:279
3842
  msgctxt "admin settings"
3843
  msgid "Slug"
3844
  msgstr "Identifiant"
3845
 
3846
- #: core/class-settings.php:280
3847
  msgctxt "admin settings"
3848
  msgid "Listing Count"
3849
  msgstr "Compteur d'annonce"
3850
 
3851
- #: core/class-settings.php:282
3852
  msgctxt "admin settings"
3853
  msgid "Sort order for categories"
3854
  msgstr "Ordre de tri pour les catégories"
3855
 
3856
- #: core/class-settings.php:283 core/class-settings.php:301
3857
  msgctxt "admin settings"
3858
  msgid "Ascending"
3859
  msgstr "Ascendant"
3860
 
3861
- #: core/class-settings.php:283 core/class-settings.php:301
3862
  msgctxt "admin settings"
3863
  msgid "Descending"
3864
  msgstr "Descendant"
3865
 
3866
- #: core/class-settings.php:284
3867
  msgctxt "admin settings"
3868
  msgid "Show category post count?"
3869
  msgstr "Montrer les catégories par messages postés ?"
3870
 
3871
- #: core/class-settings.php:285
3872
  msgctxt "admin settings"
3873
  msgid "Hide empty categories?"
3874
  msgstr "Cacher les catégories vides ?"
3875
 
3876
- #: core/class-settings.php:286
3877
  msgctxt "admin settings"
3878
  msgid "Show only parent categories in category list?"
3879
  msgstr ""
3880
  "Montrer seulement les catégories parentes dans la liste des catégories ?"
3881
 
3882
- #: core/class-settings.php:288
3883
  msgctxt "admin settings"
3884
  msgid "Listings Sorting"
3885
  msgstr "Tri des annonces"
3886
 
3887
- #: core/class-settings.php:289
3888
  msgctxt "admin settings"
3889
  msgid "Order directory listings by"
3890
  msgstr "Ordonner les annonces de l'annuaire par"
3891
 
3892
- #: core/class-settings.php:291
3893
  msgctxt "admin settings"
3894
  msgid "Title"
3895
  msgstr "Titre"
3896
 
3897
- #: core/class-settings.php:292
3898
  msgctxt "admin settings"
3899
  msgid "Author"
3900
  msgstr "Auteur"
3901
 
3902
- #: core/class-settings.php:293 core/class-settings.php:703
3903
  msgctxt "admin settings"
3904
  msgid "Date posted"
3905
  msgstr "Date d'ajout"
3906
 
3907
- #: core/class-settings.php:294 core/class-settings.php:704
3908
  msgctxt "admin settings"
3909
  msgid "Date last modified"
3910
  msgstr "Date de dernière modification"
3911
 
3912
- #: core/class-settings.php:295
3913
  msgctxt "admin settings"
3914
  msgid "Random"
3915
  msgstr "Aléatoire"
3916
 
3917
- #: core/class-settings.php:296
3918
  msgctxt "admin settings"
3919
  msgid "Paid first then free. Inside each group by date."
3920
  msgstr ""
3921
 
3922
- #: core/class-settings.php:297
3923
  msgctxt "admin settings"
3924
  msgid "Paid first then free. Inside each group by title."
3925
  msgstr ""
3926
 
3927
- #: core/class-settings.php:299
3928
  msgctxt "admin settings"
3929
  msgid "Sort directory listings by"
3930
  msgstr "Trier les annonces de l'annuaire par"
3931
 
3932
- #: core/class-settings.php:300
3933
  msgctxt "admin settings"
3934
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3935
  msgstr ""
3936
  "Ascendant pour un classement de A à Z, Descendant pour un classement de Z à A"
3937
 
3938
- #: core/class-settings.php:305
3939
  msgctxt "admin settings"
3940
  msgid "Enable sort bar?"
3941
  msgstr "Activer la barre de tri ?"
3942
 
3943
- #: core/class-settings.php:310
3944
  msgctxt "admin settings"
3945
  msgid "Sortbar Fields"
3946
  msgstr "Champs de la barre de tri"
3947
 
3948
- #: core/class-settings.php:319
3949
  msgctxt "admin settings"
3950
  msgid "Featured (Sticky) listing settings"
3951
  msgstr "Paramètres sélectionnés (Post-it) des annonces"
3952
 
3953
- #: core/class-settings.php:320
3954
  msgctxt "admin settings"
3955
  msgid "Offer sticky listings?"
3956
  msgstr "Proposer des annonces par Post-it ?"
3957
 
3958
- #: core/class-settings.php:321
3959
  msgctxt "admin settings"
3960
  msgid "Offer upgrades during submit process?"
3961
  msgstr "Proposer des améliorations durant le processus de soumission ?"
3962
 
3963
- #: core/class-settings.php:322
3964
  msgctxt "admin settings"
3965
  msgid "Sticky listing price"
3966
  msgstr "Prix des annonces en Post-it"
3967
 
3968
- #: core/class-settings.php:323
3969
  msgctxt "admin settings"
3970
  msgid "Sticky listing page description text"
3971
  msgstr "Texte de description de la page annonce en Post-it"
3972
 
3973
- #: core/class-settings.php:324
3974
  msgctxt "admin settings"
3975
  msgid ""
3976
  "You can upgrade your listing to featured status. Featured listings will "
@@ -3980,17 +3993,17 @@ msgstr ""
3980
  "annonces ainsi traitées vont toujours apparaître avant les annonces "
3981
  "courantes."
3982
 
3983
- #: core/class-settings.php:329
3984
  msgctxt "admin settings"
3985
  msgid "E-Mail"
3986
  msgstr "E-Mail"
3987
 
3988
- #: core/class-settings.php:333
3989
  msgctxt "admin settings"
3990
  msgid "Display email address fields publicly?"
3991
  msgstr "Affichage des champs d'adresses e-mail au public ?"
3992
 
3993
- #: core/class-settings.php:336
3994
  msgctxt "admin settings"
3995
  msgid ""
3996
  "Shows the email address of the listing owner to all web users. NOT "
@@ -4001,12 +4014,12 @@ msgstr ""
4001
  "utilisateurs du Web. PAS RECOMMANDE car cela augmente le spam à l'adresse en "
4002
  "question et permet aux spam bots de la récolter pour une utilisation future."
4003
 
4004
- #: core/class-settings.php:339
4005
  msgctxt "admin settings"
4006
  msgid "How to determine the listing's email address?"
4007
  msgstr "Comment définir l'adresse e-mail de l'annonce ?"
4008
 
4009
- #: core/class-settings.php:342
4010
  msgctxt "admin settings"
4011
  msgid ""
4012
  "This affects emails sent to listing owners via contact forms or when their "
@@ -4015,125 +4028,125 @@ msgstr ""
4015
  "Cela affecte l'envoie des e-mails aux propriétaires des annonces via le "
4016
  "formulaire de contact ou quand leurs annonces expirent."
4017
 
4018
- #: core/class-settings.php:344
4019
  msgctxt "admin settings"
4020
  msgid "Try listing's email field first, then author's email."
4021
  msgstr ""
4022
 
4023
- #: core/class-settings.php:345
4024
  msgctxt "admin settings"
4025
  msgid "Try author's email first and then listing's email field."
4026
  msgstr ""
4027
 
4028
- #: core/class-settings.php:349
4029
  msgctxt "admin settings"
4030
  msgid "E-Mail Notifications"
4031
  msgstr "Notification mail"
4032
 
4033
- #: core/class-settings.php:352
4034
  msgctxt "admin settings"
4035
  msgid "Notify admin via e-mail when..."
4036
  msgstr "Prévenir l'administrateur via courriel quand..."
4037
 
4038
- #: core/class-settings.php:356
4039
  msgctxt "admin settings"
4040
  msgid "A new listing is submitted."
4041
  msgstr "Une nouvelle annonce a été soumise."
4042
 
4043
- #: core/class-settings.php:357
4044
  msgctxt "admin settings"
4045
  msgid "A listing is edited."
4046
  msgstr "Une annonce est éditée."
4047
 
4048
- #: core/class-settings.php:358
4049
  msgctxt "admin settings"
4050
  msgid "A listing expires."
4051
  msgstr "Une annonce expire."
4052
 
4053
- #: core/class-settings.php:359
4054
  msgctxt "admin settings"
4055
  msgid "A contact message is sent to a listing's owner."
4056
  msgstr "Un message de contact est envoyé a un propriétaire d'annonce."
4057
 
4058
- #: core/class-settings.php:365
4059
  msgctxt "admin settings"
4060
  msgid "CC this e-mail address too"
4061
  msgstr "CC cette adresse mail aussi"
4062
 
4063
- #: core/class-settings.php:371
4064
  msgctxt "admin settings"
4065
  msgid "Notify users via e-mail when..."
4066
  msgstr "Prévenir les utilisateurs via courriel quand..."
4067
 
4068
- #: core/class-settings.php:374
4069
  msgctxt "admin settings"
4070
  msgid "You can modify the text template used for most of these e-mails below."
4071
  msgstr ""
4072
  "Vous pouvez modifier le modèle de texte utilisé pour la plupart de ces e-"
4073
  "mails ci-dessous."
4074
 
4075
- #: core/class-settings.php:375
4076
  msgctxt "admin settings"
4077
  msgid "Their listing is submitted."
4078
  msgstr "Leur annonce est soumise."
4079
 
4080
- #: core/class-settings.php:376
4081
  msgctxt "admin settings"
4082
  msgid "Their listing is approved/published."
4083
  msgstr "Leur annonce est approuvée/publiée"
4084
 
4085
- #: core/class-settings.php:385
4086
  msgctxt "contact email"
4087
  msgid "You have received a reply from your listing at %s."
4088
  msgstr "Vous avez reçu une réponse à votre annonce de %s."
4089
 
4090
- #: core/class-settings.php:386
4091
  msgctxt "contact email"
4092
  msgid "Name: %s"
4093
  msgstr "Nom: %s"
4094
 
4095
- #: core/class-settings.php:387
4096
  msgctxt "contact email"
4097
  msgid "E-Mail: %s"
4098
  msgstr "E-Mail: %s"
4099
 
4100
- #: core/class-settings.php:388
4101
  msgctxt "contact email"
4102
  msgid "Message:"
4103
  msgstr "Message:"
4104
 
4105
- #: core/class-settings.php:390
4106
  msgctxt "contact email"
4107
  msgid "Time: %s"
4108
  msgstr "Date: %s"
4109
 
4110
- #: core/class-settings.php:392
4111
  msgctxt "admin settings"
4112
  msgid "E-Mail Templates"
4113
  msgstr "Template d'E-Mail"
4114
 
4115
- #: core/class-settings.php:395
4116
  msgctxt "admin settings"
4117
  msgid "Email confirmation message"
4118
  msgstr "Message de confirmation par E-Mail"
4119
 
4120
- #: core/class-settings.php:399
4121
  msgctxt "admin settings"
4122
  msgid "Sent after a listing has been submitted."
4123
  msgstr "Envoyer après qu'une annonce ait été soumise"
4124
 
4125
- #: core/class-settings.php:400 core/class-settings.php:408
4126
- #: core/class-settings.php:449
4127
  msgctxt "admin settings"
4128
  msgid "Listing's title"
4129
  msgstr "Titre de l'annonce"
4130
 
4131
- #: core/class-settings.php:403
4132
  msgctxt "admin settings"
4133
  msgid "Listing published message"
4134
  msgstr "Message publié de l'annonce"
4135
 
4136
- #: core/class-settings.php:406
4137
  msgctxt "admin settings"
4138
  msgid ""
4139
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
@@ -4142,23 +4155,23 @@ msgstr ""
4142
  "Votre annonce \"[listing]\" est maintenant disponible à [listing-url] et "
4143
  "elle peut être vu par tout le monde."
4144
 
4145
- #: core/class-settings.php:407
4146
  msgctxt "admin settings"
4147
  msgid "Sent when the listing has been published or approved by an admin."
4148
  msgstr ""
4149
  "Envoyé lorsque l'annonce a été publiée ou approuvée par un administrateur."
4150
 
4151
- #: core/class-settings.php:409
4152
  msgctxt "admin settings"
4153
  msgid "Listing's URL"
4154
  msgstr "Url de l'annonce"
4155
 
4156
- #: core/class-settings.php:413
4157
  msgctxt "admin settings"
4158
  msgid "Listing Contact Message"
4159
  msgstr "Lister des messages de contact"
4160
 
4161
- #: core/class-settings.php:417
4162
  msgctxt "admin settings"
4163
  msgid ""
4164
  "Sent to listing owners when someone uses the contact form on their listing "
@@ -4167,34 +4180,34 @@ msgstr ""
4167
  "Envoyer aux propriétaires des annonces quand quelqu'un utilise le formulaire "
4168
  "de contact sur leurs pages d'annonces."
4169
 
4170
- #: core/class-settings.php:427
4171
  msgctxt "admin settings"
4172
  msgid "Payment related"
4173
  msgstr "Paiement lié"
4174
 
4175
- #: core/class-settings.php:444
4176
  msgctxt "admin settings"
4177
  msgid "Payment abandoned reminder message"
4178
  msgstr "Paiement abandonné, message de rappel"
4179
 
4180
- #: core/class-settings.php:448
4181
  msgctxt "admin settings"
4182
  msgid "Sent some time after a pending payment is abandoned by users."
4183
  msgstr ""
4184
  "Envoyer après un certain temps lorsqu'un paiement en attente est abandonné "
4185
  "par les utilisateurs."
4186
 
4187
- #: core/class-settings.php:450
4188
  msgctxt "admin settings"
4189
  msgid "Checkout URL link"
4190
  msgstr "Vérificateur de lien URL"
4191
 
4192
- #: core/class-settings.php:456
4193
  msgctxt "admin settings"
4194
  msgid "Renewal Reminders"
4195
  msgstr "Renouveller les rappels"
4196
 
4197
- #: core/class-settings.php:459
4198
  msgctxt "admin settings"
4199
  msgid ""
4200
  "This section refers only to the text of the renewal/expiration notices. You "
@@ -4204,12 +4217,12 @@ msgstr ""
4204
  "d'expiration. Vous pouvez également configurer <a> quand les e-mails seront "
4205
  "envoyés </a>."
4206
 
4207
- #: core/class-settings.php:463
4208
  msgctxt "admin settings"
4209
  msgid "Pending expiration e-mail message"
4210
  msgstr "Expiration imminente du mail"
4211
 
4212
- #: core/class-settings.php:467
4213
  msgctxt "settings"
4214
  msgid ""
4215
  "Sent some time before the listing expires. Applies to non-recurring renewals "
@@ -4218,50 +4231,50 @@ msgstr ""
4218
  "Envoyé quelque temps avant l'expiration de l'annonce. Valable seulement pour "
4219
  "les renouvellements non-récurrents."
4220
 
4221
- #: core/class-settings.php:468 core/class-settings.php:481
4222
- #: core/class-settings.php:494 core/class-settings.php:507
4223
- #: core/class-settings.php:520
4224
  msgctxt "settings"
4225
  msgid "Listing's name (with link)"
4226
  msgstr "Nom de l'annonce (avec lien)"
4227
 
4228
- #: core/class-settings.php:469 core/class-settings.php:482
4229
- #: core/class-settings.php:495 core/class-settings.php:508
4230
- #: core/class-settings.php:521
4231
  msgctxt "settings"
4232
  msgid "Author's name"
4233
  msgstr "Nom de l'auteur"
4234
 
4235
- #: core/class-settings.php:470 core/class-settings.php:483
4236
- #: core/class-settings.php:522
4237
  msgctxt "settings"
4238
  msgid "Expiration date"
4239
  msgstr "Date d'expiration"
4240
 
4241
- #: core/class-settings.php:471
4242
  msgctxt "settings"
4243
  msgid "Category that is going to expire"
4244
  msgstr "Catégorier qui va expirer"
4245
 
4246
- #: core/class-settings.php:472 core/class-settings.php:485
4247
- #: core/class-settings.php:524
4248
  msgctxt "settings"
4249
  msgid "Link to renewal page"
4250
  msgstr "Lien pour renouveller la page"
4251
 
4252
- #: core/class-settings.php:473 core/class-settings.php:486
4253
- #: core/class-settings.php:498 core/class-settings.php:511
4254
- #: core/class-settings.php:525
4255
  msgctxt "settings"
4256
  msgid "Link to your site"
4257
  msgstr "Lien vers votre site"
4258
 
4259
- #: core/class-settings.php:476
4260
  msgctxt "admin settings"
4261
  msgid "Listing Renewal e-mail message"
4262
  msgstr "Message mail de renouvellement d'annonce"
4263
 
4264
- #: core/class-settings.php:480
4265
  msgctxt "settings"
4266
  msgid ""
4267
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
@@ -4270,17 +4283,17 @@ msgstr ""
4270
  "Envoyé au moment de l'expiration de l'annonce. Seulement valable pour les "
4271
  "renouvellements non-récurrents."
4272
 
4273
- #: core/class-settings.php:484 core/class-settings.php:523
4274
  msgctxt "settings"
4275
  msgid "Category that expired"
4276
  msgstr "Catégories qui ont expiré"
4277
 
4278
- #: core/class-settings.php:489
4279
  msgctxt "admin settings"
4280
  msgid "Listing auto-renewal reminder (recurring payments)"
4281
  msgstr "Rappel d'auto-renouvellement des annonces (paiements récurrents)"
4282
 
4283
- #: core/class-settings.php:493
4284
  msgctxt "settings"
4285
  msgid ""
4286
  "Sent some time before the listing is auto-renewed. Applies to recurring "
@@ -4289,27 +4302,27 @@ msgstr ""
4289
  "Envoyé un certain temps avant que l'annonce est auto-renouvellement. Valable "
4290
  "pour les renouvellements périodiques seulement."
4291
 
4292
- #: core/class-settings.php:496 core/class-settings.php:510
4293
  msgctxt "settings"
4294
  msgid "Renewal date"
4295
  msgstr "Date de renouvellement"
4296
 
4297
- #: core/class-settings.php:497
4298
  msgctxt "settings"
4299
  msgid "Category that is going to be renewed"
4300
  msgstr "Catégories qui vont être renouvelées"
4301
 
4302
- #: core/class-settings.php:499
4303
  msgctxt "settings"
4304
  msgid "Link to manage subscriptions"
4305
  msgstr "Lien pour gérer les abonnements"
4306
 
4307
- #: core/class-settings.php:502
4308
  msgctxt "admin settings"
4309
  msgid "Listing Renewal e-mail message (recurring payments)"
4310
  msgstr "Renouvellement des annonces par mail (paiements récurrents)"
4311
 
4312
- #: core/class-settings.php:506
4313
  msgctxt "settings"
4314
  msgid ""
4315
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
@@ -4317,17 +4330,17 @@ msgstr ""
4317
  "Envoyé dès que les annonces se soient auto-renouvelées. Appliqué aux "
4318
  "paiements récurrents seulement."
4319
 
4320
- #: core/class-settings.php:509
4321
  msgctxt "settings"
4322
  msgid "Renewed category"
4323
  msgstr "Catégories renouvellées"
4324
 
4325
- #: core/class-settings.php:515
4326
  msgctxt "admin settings"
4327
  msgid "Renewal reminder e-mail message"
4328
  msgstr "Renouveler le rappel par mail"
4329
 
4330
- #: core/class-settings.php:519
4331
  msgctxt "settings"
4332
  msgid ""
4333
  "Sent some time after listing expiration and when no renewal has occurred. "
@@ -4337,33 +4350,33 @@ msgstr ""
4337
  "renouvellement n'a pas eu lieu. Valable pour deux renouvellements récurrents "
4338
  "et non récurrents."
4339
 
4340
- #: core/class-settings.php:529
4341
  msgctxt "admin settings"
4342
  msgid "Payment"
4343
  msgstr "Paiement"
4344
 
4345
- #: core/class-settings.php:530
4346
  msgctxt "admin settings"
4347
  msgid "Payment Settings"
4348
  msgstr "Paramètres de paiement"
4349
 
4350
- #: core/class-settings.php:533
4351
  msgctxt "admin settings"
4352
  msgid "Turn On payments?"
4353
  msgstr "Activer les paiements ?"
4354
 
4355
- #: core/class-settings.php:535
4356
  msgctxt "admin settings"
4357
  msgid "Put payment gateways in test mode?"
4358
  msgstr "Passer les passerelles de paiement en mode test ?"
4359
 
4360
- #: core/class-settings.php:540
4361
  msgctxt "admin settings"
4362
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4363
  msgstr ""
4364
  "Effectuer la vérification sur la version sécurisée (HTTPS) de votre site?"
4365
 
4366
- #: core/class-settings.php:543
4367
  msgctxt "admin settings"
4368
  msgid ""
4369
  "Recommended for added security. For this to work you need to enable HTTPS on "
@@ -4372,163 +4385,163 @@ msgstr ""
4372
  "Recommandé pour une sécurité accrue. Pour que cela fonctionne, vous devez "
4373
  "activer HTTPS sur votre serveur et <a> obtenir un certificat SSL </a>."
4374
 
4375
- #: core/class-settings.php:547
4376
  msgctxt "admin settings"
4377
  msgid "Currency Code"
4378
  msgstr "Code de devise"
4379
 
4380
- #: core/class-settings.php:549
4381
  msgctxt "admin settings"
4382
  msgid "Australian Dollar (AUD)"
4383
  msgstr "Dollar Australien (AUD)"
4384
 
4385
- #: core/class-settings.php:550
4386
  msgctxt "admin settings"
4387
  msgid "Brazilian Real (BRL)"
4388
  msgstr "Real Brésilien (BRL)"
4389
 
4390
- #: core/class-settings.php:551
4391
  msgctxt "admin settings"
4392
  msgid "Canadian Dollar (CAD)"
4393
  msgstr "Dollar Canadien (CAD)"
4394
 
4395
- #: core/class-settings.php:552
4396
  msgctxt "admin settings"
4397
  msgid "Czech Koruna (CZK)"
4398
  msgstr "Couronne Tchèque (CZK)"
4399
 
4400
- #: core/class-settings.php:553
4401
  msgctxt "admin settings"
4402
  msgid "Danish Krone (DKK)"
4403
  msgstr "Couronne Danoise (DKK)"
4404
 
4405
- #: core/class-settings.php:554
4406
  msgctxt "admin settings"
4407
  msgid "Euro (EUR)"
4408
  msgstr "Euro (EUR)"
4409
 
4410
- #: core/class-settings.php:555
4411
  msgctxt "admin settings"
4412
  msgid "Hong Kong Dollar (HKD)"
4413
  msgstr "Dollar de Hong Kong(HKD)"
4414
 
4415
- #: core/class-settings.php:556
4416
  msgctxt "admin settings"
4417
  msgid "Hungarian Forint (HUF)"
4418
  msgstr "Forint Hongrois (HUF)"
4419
 
4420
- #: core/class-settings.php:557
4421
  msgctxt "admin settings"
4422
  msgid "Israeli New Shequel (ILS)"
4423
  msgstr "Nouveau Shequel Israélien (ILS)"
4424
 
4425
- #: core/class-settings.php:558
4426
  msgctxt "admin settings"
4427
  msgid "Japanese Yen (JPY)"
4428
  msgstr "Yen Japonais (JPY)"
4429
 
4430
- #: core/class-settings.php:559
4431
  msgctxt "admin settings"
4432
  msgid "Malasian Ringgit (MYR)"
4433
  msgstr "Ringgit Malaisien (MYR)"
4434
 
4435
- #: core/class-settings.php:560
4436
  msgctxt "admin settings"
4437
  msgid "Mexican Peso (MXN)"
4438
  msgstr "Peso Mexicain (MXN)"
4439
 
4440
- #: core/class-settings.php:561
4441
  msgctxt "admin settings"
4442
  msgid "Norwegian Krone (NOK)"
4443
  msgstr "Couronne Norvégienne (NOK)"
4444
 
4445
- #: core/class-settings.php:562
4446
  msgctxt "admin settings"
4447
  msgid "New Zealand Dollar (NZD)"
4448
  msgstr "Dollar Néo-Zélandais (NZD)"
4449
 
4450
- #: core/class-settings.php:563
4451
  msgctxt "admin settings"
4452
  msgid "Philippine Peso (PHP)"
4453
  msgstr "Peso Phillipin (PHP)"
4454
 
4455
- #: core/class-settings.php:564
4456
  msgctxt "admin settings"
4457
  msgid "Polish Zloty (PLN)"
4458
  msgstr "Zloty Polonais (PLN)"
4459
 
4460
- #: core/class-settings.php:565
4461
  msgctxt "admin settings"
4462
  msgid "Pound Sterling (GBP)"
4463
  msgstr "Livre Sterling (GBP)"
4464
 
4465
- #: core/class-settings.php:566
4466
  msgctxt "admin settings"
4467
  msgid "Singapore Dollar (SGD)"
4468
  msgstr "Dollar Singaporien (SGD)"
4469
 
4470
- #: core/class-settings.php:567
4471
  msgctxt "admin settings"
4472
  msgid "Swedish Krona (SEK)"
4473
  msgstr "Couronne Suédoise (SEK)"
4474
 
4475
- #: core/class-settings.php:568
4476
  msgctxt "admin settings"
4477
  msgid "Swiss Franc (CHF)"
4478
  msgstr "Franc Suisse (CHF)"
4479
 
4480
- #: core/class-settings.php:569
4481
  msgctxt "admin settings"
4482
  msgid "Taiwan Dollar (TWD)"
4483
  msgstr "Dollar Taiwanais (TWD)"
4484
 
4485
- #: core/class-settings.php:570
4486
  msgctxt "admin settings"
4487
  msgid "Thai Baht (THB)"
4488
  msgstr "Baht Thaïlandais"
4489
 
4490
- #: core/class-settings.php:571
4491
  msgctxt "admin settings"
4492
  msgid "Turkish Lira (TRY)"
4493
  msgstr "Livre Turque (TRY)"
4494
 
4495
- #: core/class-settings.php:572
4496
  #, fuzzy
4497
  msgctxt "admin settings"
4498
  msgid "U.S. Dollar (USD)"
4499
  msgstr "Dollar U.S. "
4500
 
4501
- #: core/class-settings.php:576
4502
  msgctxt "admin settings"
4503
  msgid "Currency Symbol"
4504
  msgstr "Devise"
4505
 
4506
- #: core/class-settings.php:581
4507
  msgctxt "admin settings"
4508
  msgid "Currency symbol display"
4509
  msgstr "Affichage de la devise"
4510
 
4511
- #: core/class-settings.php:585
4512
  msgctxt "admin settings"
4513
  msgid "Show currency symbol on the left"
4514
  msgstr "Afficher le symbole de devise à gauche"
4515
 
4516
- #: core/class-settings.php:586
4517
  msgctxt "admin settings"
4518
  msgid "Show currency symbol on the right"
4519
  msgstr "Afficher le symbole de devise à droite"
4520
 
4521
- #: core/class-settings.php:587
4522
  msgctxt "admin settings"
4523
  msgid "Do not show currency symbol"
4524
  msgstr "Ne pas montrer la devise"
4525
 
4526
- #: core/class-settings.php:589
4527
  msgctxt "admin settings"
4528
  msgid "Thank you for payment message"
4529
  msgstr "Merci pour le message de paiement"
4530
 
4531
- #: core/class-settings.php:590
4532
  msgctxt "admin settings"
4533
  msgid ""
4534
  "Thank you for your payment. Your payment is being verified and your listing "
@@ -4538,12 +4551,12 @@ msgstr ""
4538
  "votre annonce en revue. Le processus de vérification et d'examen peut "
4539
  "prendre jusqu'à 48 heures."
4540
 
4541
- #: core/class-settings.php:595
4542
  msgctxt "admin settings"
4543
  msgid "Ask users to come back for abandoned payments?"
4544
  msgstr "Demandez aux utilisateurs de revenir pour les paiements abandonnés ?"
4545
 
4546
- #: core/class-settings.php:598
4547
  msgctxt "admin settings"
4548
  msgid ""
4549
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -4557,12 +4570,12 @@ msgstr ""
4557
  "l'utilisateur n'a tout simplement pas compléter la transaction. Le plugin "
4558
  "peut peut rappeler les auteurs pour continuer la publication de leur annonce."
4559
 
4560
- #: core/class-settings.php:604
4561
  msgctxt "admin settings"
4562
  msgid "Listing abandonment threshold (hours)"
4563
  msgstr "Seuil d'abandon de l'annonce (heures)"
4564
 
4565
- #: core/class-settings.php:609
4566
  msgctxt "admin settings"
4567
  msgid ""
4568
  "Listings with pending payments are marked as abandoned after this time. You "
@@ -4572,37 +4585,37 @@ msgstr ""
4572
  "cette heure. Vous pouvez également personnaliser <a> l'e-mail </a> que les "
4573
  "utilisateurs reçoivent."
4574
 
4575
- #: core/class-settings.php:614
4576
  msgctxt "admin settings"
4577
  msgid "Themes"
4578
  msgstr "Thèmes"
4579
 
4580
- #: core/class-settings.php:616
4581
  msgctxt "admin settings"
4582
  msgid "You can manage your themes on <a>Directory Themes</a>."
4583
  msgstr ""
4584
 
4585
- #: core/class-settings.php:621
4586
  msgctxt "admin settings"
4587
  msgid "Theme button style"
4588
  msgstr "Boutons de thèmes"
4589
 
4590
- #: core/class-settings.php:625
4591
  msgctxt "admin settings"
4592
  msgid "Use the BD theme style for BD buttons"
4593
  msgstr "Utiliser le thème BD pour les boutons BD"
4594
 
4595
- #: core/class-settings.php:626
4596
  msgctxt "admin settings"
4597
  msgid "Use the WP theme style for BD buttons"
4598
  msgstr "Utiliser le thème WP pour les boutons BD"
4599
 
4600
- #: core/class-settings.php:633
4601
  msgctxt "admin settings"
4602
  msgid "Image"
4603
  msgstr "Image"
4604
 
4605
- #: core/class-settings.php:634
4606
  msgctxt "admin settings"
4607
  msgid ""
4608
  "Any changes to these settings will affect new listings only. Existing "
@@ -4616,52 +4629,52 @@ msgstr ""
4616
  "télécharger l'image (s) sur cette annonce, après avoir cfait les "
4617
  "modifications voulue."
4618
 
4619
- #: core/class-settings.php:635
4620
  msgctxt "admin settings"
4621
  msgid "Image Settings"
4622
  msgstr "Paraamètres des images"
4623
 
4624
- #: core/class-settings.php:636
4625
  msgctxt "admin settings"
4626
  msgid "Allow images?"
4627
  msgstr "Autoriser les images ?"
4628
 
4629
- #: core/class-settings.php:638
4630
  msgctxt "admin settings"
4631
  msgid "Min Image File Size (KB)"
4632
  msgstr "Taille minnimal des fichiers images (KB)"
4633
 
4634
- #: core/class-settings.php:639
4635
  msgctxt "admin settings"
4636
  msgid "Max Image File Size (KB)"
4637
  msgstr "Taille maximal des fichiers images (KB)"
4638
 
4639
- #: core/class-settings.php:641
4640
  msgctxt "admin settings"
4641
  msgid "Min image width (px)"
4642
  msgstr "Largeur minnimal des images (px)"
4643
 
4644
- #: core/class-settings.php:642
4645
  msgctxt "admin settings"
4646
  msgid "Min image height (px)"
4647
  msgstr "Hauteur minnimal des images (px)"
4648
 
4649
- #: core/class-settings.php:644
4650
  msgctxt "admin settings"
4651
  msgid "Max image width (px)"
4652
  msgstr "Largeur maximal des images (px)"
4653
 
4654
- #: core/class-settings.php:645
4655
  msgctxt "admin settings"
4656
  msgid "Max image height (px)"
4657
  msgstr "Hauteur maximal des images (px)"
4658
 
4659
- #: core/class-settings.php:647
4660
  msgctxt "admin settings"
4661
  msgid "Turn on thickbox/lightbox?"
4662
  msgstr "Activer thickbox/lightbox ?"
4663
 
4664
- #: core/class-settings.php:647
4665
  msgctxt "admin settings"
4666
  msgid ""
4667
  "Uncheck if it conflicts with other elements or plugins installed on your site"
@@ -4669,27 +4682,27 @@ msgstr ""
4669
  "Décochez si vela entre en conflit avec d'autres éléments ou plugins "
4670
  "installés sur votre site"
4671
 
4672
- #: core/class-settings.php:649
4673
  msgctxt "admin settings"
4674
  msgid "Thumbnails"
4675
  msgstr "Miniatures"
4676
 
4677
- #: core/class-settings.php:650
4678
  msgctxt "admin settings"
4679
  msgid "Thumbnail width (px)"
4680
  msgstr "Largeur des miniatures (en pixel)"
4681
 
4682
- #: core/class-settings.php:651
4683
  msgctxt "admin settings"
4684
  msgid "Thumbnail height (px)"
4685
  msgstr "Hauteur des miniatures (en pixel)"
4686
 
4687
- #: core/class-settings.php:654
4688
  msgctxt "admin settings"
4689
  msgid "Crop thumbnails to exact dimensions?"
4690
  msgstr "Recadrer les miniatures aux dimensions exactes ?"
4691
 
4692
- #: core/class-settings.php:657
4693
  msgctxt "admin settings"
4694
  msgid ""
4695
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4704,12 +4717,12 @@ msgstr ""
4704
  "proportionnellement. Selon les images téléchargées, les miniatures peuvent "
4705
  "avoir différentes hauteurs."
4706
 
4707
- #: core/class-settings.php:663
4708
  msgctxt "admin settings"
4709
  msgid "Number of free images"
4710
  msgstr "Nombre d'images gratuites"
4711
 
4712
- #: core/class-settings.php:668
4713
  msgctxt "admin settings"
4714
  msgid ""
4715
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
@@ -4719,28 +4732,28 @@ msgstr ""
4719
  "ou modification d'un <a>plan de frais</a> au lieu de ce paramètre, qui est "
4720
  "ignoré pour les annonces payées."
4721
 
4722
- #: core/class-settings.php:671
4723
  msgctxt "admin settings"
4724
  msgid "Use default picture for listings with no picture?"
4725
  msgstr "Utiliser l'image par défault pour les annonces sans images ?"
4726
 
4727
- #: core/class-settings.php:672
4728
  msgctxt "admin settings"
4729
  msgid "Show Thumbnail on main listings page?"
4730
  msgstr "Montrer les miniatures sur page principale des annonces ?"
4731
 
4732
- #: core/class-settings.php:701
4733
  msgctxt "admin settings"
4734
  msgid "User"
4735
  msgstr ""
4736
 
4737
- #: core/class-settings.php:702
4738
  #, fuzzy
4739
  msgctxt "admin settings"
4740
  msgid "User registration date"
4741
  msgstr "Date d'expiration de l'annonce"
4742
 
4743
- #: core/class-settings.php:728
4744
  msgctxt "admin settings"
4745
  msgid ""
4746
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
@@ -4749,7 +4762,7 @@ msgstr ""
4749
  "Impossible de copier le plugin de compatibilité AJAX \"% s\". Le mode de "
4750
  "compatibilité n'a pas été activé."
4751
 
4752
- #: core/class-settings.php:736
4753
  msgctxt "admin settings"
4754
  msgid ""
4755
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
@@ -4758,7 +4771,7 @@ msgstr ""
4758
  "Impossible d'activer le mode de compatibilité AJAX: le répertoire \"% s \" "
4759
  "ne peux pas être créé."
4760
 
4761
- #: core/class-settings.php:745
4762
  msgctxt "admin settings"
4763
  msgid ""
4764
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
@@ -4767,97 +4780,97 @@ msgstr ""
4767
  "Impossible de supprimer le \"Module de comptabilité AJAX du plugin \". "
4768
  "Veuillez supprimer le fichier \"% s \" manuellement ou désactiver le plugin."
4769
 
4770
- #: core/class-settings.php:1065
4771
  msgctxt "settings"
4772
  msgid "Deactivate License"
4773
  msgstr "Désactiver la licence"
4774
 
4775
- #: core/class-settings.php:1067
4776
  msgctxt "settings"
4777
  msgid "Deactivating license..."
4778
  msgstr "Désactivation de la licence..."
4779
 
4780
- #: core/class-settings.php:1070
4781
  msgctxt "settings"
4782
  msgid "Activate License"
4783
  msgstr "Activer la licence"
4784
 
4785
- #: core/class-settings.php:1072
4786
  msgctxt "settings"
4787
  msgid "Activating license..."
4788
  msgstr "Activation de la licence"
4789
 
4790
- #: core/class-settings.php:1095
4791
  msgctxt "admin settings"
4792
  msgid "Valid placeholders: %s"
4793
  msgstr "Espaces réservés valides:% s"
4794
 
4795
- #: core/class-settings.php:1129
4796
  msgctxt "settings email"
4797
  msgid "Click to edit e-mail"
4798
  msgstr "Cliquer pour éditer l'e-mail"
4799
 
4800
- #: core/class-settings.php:1130
4801
  msgctxt "settings email"
4802
  msgid "Click to edit"
4803
  msgstr "Cliquer pour éditer"
4804
 
4805
- #: core/class-settings.php:1143
4806
  msgctxt "settings email"
4807
  msgid "E-Mail Subject"
4808
  msgstr "Sujet de l'e-mail"
4809
 
4810
- #: core/class-settings.php:1154
4811
  msgctxt "settings email"
4812
  msgid "E-Mail Body"
4813
  msgstr "Corps de l'e-mail"
4814
 
4815
- #: core/class-settings.php:1165
4816
  msgctxt "settings email"
4817
  msgid "You can use the following placeholders:"
4818
  msgstr "Vous pouvez utiliser les paramètres suivantes:"
4819
 
4820
- #: core/class-settings.php:1188
4821
  msgctxt "settings email"
4822
  msgid "Preview e-mail"
4823
  msgstr "E-mail précédents"
4824
 
4825
- #: core/class-settings.php:1189
4826
  msgctxt "settings email"
4827
  msgid "Cancel"
4828
  msgstr "Annuler"
4829
 
4830
- #: core/class-settings.php:1190
4831
  msgctxt "settings email"
4832
  msgid "Save Changes"
4833
  msgstr "Sauvegarder les changements"
4834
 
4835
- #: core/class-settings.php:1209
4836
  msgctxt "settings email"
4837
  msgid "Site title"
4838
  msgstr "Titre du site"
4839
 
4840
- #: core/class-settings.php:1212
4841
  msgctxt "settings email"
4842
  msgid "Site title (with link)"
4843
  msgstr "Titre du site (avec lien)"
4844
 
4845
- #: core/class-settings.php:1215
4846
  msgctxt "settings email"
4847
  msgid "Site address (with link)"
4848
  msgstr "Adresse du site (avec lien)"
4849
 
4850
- #: core/class-settings.php:1218
4851
  msgctxt "settings email"
4852
  msgid "Directory URL (with link)"
4853
  msgstr "Annuaire des URL (avec lien)"
4854
 
4855
- #: core/class-settings.php:1221
4856
  msgctxt "settings email"
4857
  msgid "Current date"
4858
  msgstr "Date actuelle"
4859
 
4860
- #: core/class-settings.php:1224
4861
  msgctxt "settings email"
4862
  msgid "Current time"
4863
  msgstr "Heure actuelle"
@@ -4909,12 +4922,11 @@ msgstr "Aucunes annonces trouvées dans la corbeille"
4909
 
4910
  #: core/class-wpbdp.php:55
4911
  msgid "Directory Categories"
4912
- msgstr "Catégories de l'aannuaire"
4913
 
4914
  #: core/class-wpbdp.php:56
4915
- #, fuzzy
4916
  msgid "Directory Category"
4917
- msgstr "Catégories de l'aannuaire"
4918
 
4919
  #: core/class-wpbdp.php:67
4920
  #, fuzzy
@@ -6800,13 +6812,19 @@ msgctxt "templates"
6800
  msgid "Upgrade listing to %s for %s."
6801
  msgstr "Mettre à jour l'annonce de %s vers %s."
6802
 
6803
- #: templates/main-box.tpl.php:16
 
 
 
 
 
 
6804
  #, fuzzy
6805
  msgctxt "main box"
6806
  msgid "Find Listings"
6807
  msgstr "Trouver une annonce"
6808
 
6809
- #: templates/main-box.tpl.php:17
6810
  #, fuzzy
6811
  msgctxt "main box"
6812
  msgid "Advanced Search"
@@ -7284,6 +7302,10 @@ msgstr "D. Rodenbaugh"
7284
  msgid "http://businessdirectoryplugin.com"
7285
  msgstr "http://businessdirectoryplugin.com"
7286
 
 
 
 
 
7287
  #~ msgctxt "formfields-preview"
7288
  #~ msgid ""
7289
  #~ "This is a preview of the form as it will appear during \"Submit a Listing"
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-09-20 02:40:34+00:00\n"
8
+ "PO-Revision-Date: 2016-08-29 18:17-0300\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language: fr\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.8.8\n"
16
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
 
121
  msgid "Renew Listing"
122
  msgstr "Renouveler l'annonce"
123
 
124
+ #: admin/class-admin.php:102
125
+ msgid ""
126
+ "Preview is only available after you've saved the first draft. This is due\n"
127
+ "to how WordPress stores the data."
128
+ msgstr ""
129
+
130
+ #: admin/class-admin.php:135
131
  msgctxt "drip pointer"
132
  msgid ""
133
  "Find out how to create a compelling, thriving business directory from "
138
  "zéro dans ce cours (GRATUIT) en 5 parties (envoyé via e-mail). Obtenez un "
139
  "module premium GRATUIT juste après votre inscription."
140
 
141
+ #: admin/class-admin.php:137
142
  msgctxt "drip pointer"
143
  msgid "Email Address:"
144
  msgstr "Adresse e-mail:"
145
 
146
+ #: admin/class-admin.php:143
147
  msgctxt "drip pointer"
148
  msgid "Want to know the Secrets of Building an Awesome Business Directory?"
149
  msgstr ""
150
  "Voulez-vous connaître les secrets de la création d'un superbe annuaire "
151
  "professionnel ?"
152
 
153
+ #: admin/class-admin.php:145
154
  msgctxt "drip pointer"
155
  msgid "Yes, please!"
156
  msgstr "Oui, s'il vous plait !"
157
 
158
+ #: admin/class-admin.php:147
159
  msgctxt "drip pointer"
160
  msgid "No, thanks"
161
  msgstr "Non, merci"
162
 
163
+ #: admin/class-admin.php:164
164
  msgctxt "admin"
165
  msgid "Business Directory"
166
  msgstr "Annuaire Professionnel"
167
 
168
+ #: admin/class-admin.php:175
169
  msgctxt "admin"
170
  msgid "You're all set. Visit your new <a>Business Directory</a> page."
171
  msgstr ""
172
  "Vous êtes prêt. Visitez votre nouvelle page <a>Annuaire Professionnel</a>"
173
 
174
+ #: admin/class-admin.php:196
175
  msgctxt "drip pointer"
176
  msgid "Invalid e-mail address."
177
  msgstr "Adresse e-mail non valide"
178
 
179
+ #: admin/class-admin.php:230
180
  msgctxt "admin menu"
181
  msgid "Business Directory Admin"
182
  msgstr "Administrateur de l'Annuaire Professionnel"
183
 
184
+ #: admin/class-admin.php:231
185
  #, fuzzy
186
  msgctxt "admin menu"
187
  msgid "Dir. Admin"
188
  msgstr "Administrateur de l'Annuaire"
189
 
190
+ #: admin/class-admin.php:231
191
  msgctxt "admin menu"
192
  msgid "Directory Admin"
193
  msgstr "Administrateur de l'Annuaire"
194
 
195
+ #: admin/class-admin.php:237 admin/class-admin.php:238
196
  msgctxt "admin menu"
197
  msgid "Add New Listing"
198
  msgstr "Ajoutez une nouvelle annonce"
199
 
200
+ #: admin/class-admin.php:243 admin/class-admin.php:244
201
  msgctxt "admin menu"
202
  msgid "Manage Options"
203
  msgstr "Gestion des options"
204
 
205
+ #: admin/class-admin.php:249 admin/class-admin.php:250
206
  msgctxt "admin menu"
207
  msgid "Manage Fees"
208
  msgstr "Gestion des frais"
209
 
210
+ #: admin/class-admin.php:255 admin/class-admin.php:256
211
  msgctxt "admin menu"
212
  msgid "Manage Form Fields"
213
  msgstr "Gestion des champs"
214
 
215
+ #: admin/class-admin.php:261 admin/class-admin.php:262
216
  msgctxt "admin menu"
217
  msgid "Listings"
218
  msgstr "Listes"
219
 
220
+ #: admin/class-admin.php:276 admin/class-admin.php:277
221
  msgctxt "admin menu"
222
  msgid "CSV Import"
223
  msgstr "Importation CSV"
224
 
225
+ #: admin/class-admin.php:282 admin/class-admin.php:283
226
  msgctxt "admin menu"
227
  msgid "CSV Export"
228
  msgstr "Exportation CSV"
229
 
230
+ #: admin/class-admin.php:288 admin/class-admin.php:289
231
  msgctxt "admin menu"
232
  msgid "Debug"
233
  msgstr "Déboguer"
234
 
235
+ #: admin/class-admin.php:298
236
  msgctxt "admin menu"
237
  msgid "Main Menu"
238
  msgstr "Menu principal"
239
 
240
+ #: admin/class-admin.php:309
241
  msgctxt "admin menu"
242
  msgid "Uninstall Business Directory Plugin"
243
  msgstr "Désinstaller le Plugin Annuaire Professionnel"
244
 
245
+ #: admin/class-admin.php:310
246
  msgctxt "admin menu"
247
  msgid "Uninstall"
248
  msgstr "Désinstaller"
249
 
250
+ #: admin/class-admin.php:424
251
  #: admin/templates/listing-metabox-categories.tpl.php:69
252
  msgctxt "admin infometabox"
253
  msgid "never"
254
  msgstr "jamais"
255
 
256
+ #: admin/class-admin.php:518
257
  msgctxt "admin"
258
  msgid "Dismiss this notice."
259
  msgstr ""
260
 
261
+ #: admin/class-admin.php:546
262
  msgctxt "admin"
263
  msgid "The listing has been published."
264
  msgid_plural "The listings have been published."
265
  msgstr[0] "L'annonce a été publiée."
266
  msgstr[1] "Les annonces ont été publiées."
267
 
268
+ #: admin/class-admin.php:564
269
  msgctxt "admin"
270
  msgid "The listing status has been set as paid."
271
  msgid_plural "The listings status has been set as paid."
272
  msgstr[0] "Le statut de l'annonce a été défini comme étant payée."
273
  msgstr[1] "Le statut des annocnes a été défini comme étant payées."
274
 
275
+ #: admin/class-admin.php:570
276
  msgctxt "admin"
277
  msgid ""
278
  "Only invoices containing non-recurring items were marked as paid. Please "
284
  msgstr[0] ""
285
  msgstr[1] ""
286
 
287
+ #: admin/class-admin.php:589
288
  msgctxt "admin"
289
  msgid "The listing has been modified."
290
  msgid_plural "The listings have been modified."
291
  msgstr[0] "L'annonce a été modifiée."
292
  msgstr[1] "Les annonces ont été modifiées."
293
 
294
+ #: admin/class-admin.php:602
295
  msgctxt "admin"
296
  msgid "The listing has been upgraded."
297
  msgid_plural "The listings have been upgraded."
298
  msgstr[0] "L'annonce a été mise à jour."
299
  msgstr[1] "Les annonces ont été mise à jour."
300
 
301
+ #: admin/class-admin.php:614
302
  msgctxt "admin"
303
  msgid "The listing has been downgraded."
304
  msgid_plural "The listings have been downgraded."
305
  msgstr[0] "L'annonce a été rétrogradée."
306
  msgstr[1] "Les annonces ont été rétrogradées."
307
 
308
+ #: admin/class-admin.php:625
309
  msgctxt "admin payments"
310
  msgid ""
311
  "The payment status was not changed. Recurring payments can't be manually "
313
  "went through."
314
  msgstr ""
315
 
316
+ #: admin/class-admin.php:630
317
  msgctxt "admin"
318
  msgid "The transaction has been approved."
319
  msgstr "La transaction a été approuvée."
320
 
321
+ #: admin/class-admin.php:640
322
  msgctxt "admin"
323
  msgid "The transaction has been rejected."
324
  msgstr "La transaction a été rejetée."
325
 
326
+ #: admin/class-admin.php:646
327
  msgctxt "admin"
328
  msgid "The fee was successfully assigned."
329
  msgstr "Les frais ont bien été assignés."
330
 
331
+ #: admin/class-admin.php:655
332
  msgctxt "admin"
333
  msgid "Listing was renewed."
334
  msgid_plural "Listings were renewed."
335
  msgstr[0] "L'annonce a été renouvelée."
336
  msgstr[1] "Les annonces ont été renouvelées."
337
 
338
+ #: admin/class-admin.php:662
339
  msgctxt "admin"
340
  msgid "Renewal email sent."
341
  msgstr "Email de renouvellement envoyé"
342
 
343
+ #: admin/class-admin.php:696
344
  msgctxt "admin category id"
345
  msgid "ID"
346
  msgstr "ID"
347
 
348
+ #: admin/class-admin.php:698 admin/class-admin.php:704
349
  msgctxt "admin"
350
  msgid "Listing Count"
351
  msgstr "Compteur d'annonces"
352
 
353
+ #: admin/class-admin.php:813
354
  msgctxt "admin"
355
  msgid ""
356
  "<b>Business Directory Plugin</b> requires fields with the following "
359
  "<b>Plugin d'Annuaire Professionnel</b> requiert des champs avec les "
360
  "associations suivantes pour marcher correctement: <b>%s</b>"
361
 
362
+ #: admin/class-admin.php:815
363
  msgctxt "admin"
364
  msgid ""
365
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
368
  "<b>Plugin d'Annuaire Professionnel</b> requiert un champ avec un <b>%s</b> "
369
  "association en ordre pour marcher correctement."
370
 
371
+ #: admin/class-admin.php:819
372
  msgctxt "admin"
373
  msgid ""
374
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
377
  "Vous pouvez créer ces champs personnalisés pas vous-mêmes dans \"Gestion des "
378
  "Champs\" ou laissez le plugin le faire pour vous automatiquement."
379
 
380
+ #: admin/class-admin.php:823
381
  msgctxt "admin"
382
  msgid "Go to \"Manage Form Fields\""
383
  msgstr "Aller à \"Gestion des Champs\""
384
 
385
+ #: admin/class-admin.php:826
386
  msgctxt "admin"
387
  msgid "Create these required fields for me"
388
  msgstr "Créer ces champs obligatoires pour moi"
389
 
390
+ #: admin/class-admin.php:835
391
  msgctxt "admin"
392
  msgid ""
393
  "<b>Business Directory Plugin</b> requires a page with the "
396
  "<b>Business Directory Plugin</b> requiert une page avec le code "
397
  "d'activation <tt>[businessdirectory]</tt> pour marcher correctement."
398
 
399
+ #: admin/class-admin.php:837
400
  msgctxt "admin"
401
  msgid ""
402
  "You can create this page by yourself or let Business Directory do this for "
405
  "Vous pouvez créer cette page par vous-mêmes ou laisser le plugin la faire "
406
  "pour vous automatiquement."
407
 
408
+ #: admin/class-admin.php:841
409
  msgctxt "admin"
410
  msgid "Create required pages for me"
411
  msgstr "Créer les pages requises pour moi."
412
 
413
+ #: admin/class-admin.php:881
414
  msgctxt "admin compat"
415
  msgid "Installed: %s"
416
  msgstr "Installé: %s"
417
 
418
+ #: admin/class-admin.php:881
419
  msgctxt "admin compat"
420
  msgid "N/A"
421
  msgstr "N/A"
422
 
423
+ #: admin/class-admin.php:884
424
  msgctxt "admin compat"
425
  msgid "Required: %s"
426
  msgstr "Requis: %s"
427
 
428
+ #: admin/class-admin.php:896
429
  msgctxt "admin compat"
430
  msgid ""
431
  "Business Directory has detected some incompatible premium module versions "
434
  "Le plugin a détecté une/des modules incomptatible de la version premium "
435
  "installé."
436
 
437
+ #: admin/class-admin.php:898
438
  msgctxt "admin compat"
439
  msgid ""
440
  "Please upgrade to the required versions indicated below to make sure "
443
  "Veuillez mettre à jour vers la version requise, indiquée ci-dessous, pour "
444
  "assurer le bon fonctionnement des fonctions. "
445
 
446
+ #: admin/class-admin.php:918
447
  msgctxt "admin"
448
  msgid ""
449
  "We noticed you want your Business Directory users to register before posting "
1394
  "suffisamment d'espace disque et de mémoire disponible sur PHP. Vérifiez "
1395
  "votre journal d'erreurs pour plus de détails."
1396
 
1397
+ #: admin/templates/csv-import-progress.tpl.php:13
1398
+ #: admin/templates/csv-import-progress.tpl.php:20
 
 
 
 
 
1399
  msgctxt "admin csv-import"
1400
  msgid "← Return to CSV Import"
1401
  msgstr "← Retourner vers l'importation CSV"
1402
 
1403
+ #: admin/templates/csv-import-progress.tpl.php:18
1404
  msgctxt "admin csv-import"
1405
  msgid "Import Canceled"
1406
  msgstr "Importation annulée"
1407
 
1408
+ #: admin/templates/csv-import-progress.tpl.php:19
1409
  msgctxt "admin csv-import"
1410
  msgid "The import has been canceled."
1411
  msgstr "L'importation a été annulée."
1412
 
1413
+ #: admin/templates/csv-import-progress.tpl.php:26
1414
  msgid "Import Progress"
1415
  msgstr "Progression de l'importation"
1416
 
1417
+ #: admin/templates/csv-import-progress.tpl.php:29
1418
  msgctxt "admin csv-import"
1419
  msgid "Files"
1420
  msgstr "Fichiers"
1421
 
1422
+ #: admin/templates/csv-import-progress.tpl.php:32
1423
  msgctxt "admin csv-import"
1424
  msgid "Rows in file"
1425
  msgstr "Lignes dans le fichier"
1426
 
1427
+ #: admin/templates/csv-import-progress.tpl.php:35
1428
  msgctxt "admin csv-import"
1429
  msgid "Progress"
1430
  msgstr "Progression"
1431
 
1432
+ #: admin/templates/csv-import-progress.tpl.php:39
1433
  msgctxt "admin csv-import"
1434
  msgid "Import has not started. Click \"Start Import\" to begin."
1435
  msgstr ""
1436
  "L'importation n'a pas commencé. Cliquez sur \"Commencer l'importation\"."
1437
 
1438
+ #: admin/templates/csv-import-progress.tpl.php:40
1439
  msgctxt "admin csv-import"
1440
  msgid "Importing CSV file..."
1441
  msgstr "Importer le fichier CSV..."
1442
 
1443
+ #: admin/templates/csv-import-progress.tpl.php:46
1444
  msgctxt "admin csv-import"
1445
  msgid "Start Import"
1446
  msgstr "Commencer l'importation"
1447
 
1448
+ #: admin/templates/csv-import-progress.tpl.php:47
1449
  msgctxt "admin csv-import"
1450
  msgid "Cancel Import"
1451
  msgstr "Annuler l'importation "
1452
 
1453
+ #: admin/templates/csv-import-progress.tpl.php:54
1454
  msgctxt "admin csv-import"
1455
  msgid "Import finished"
1456
  msgstr "Importation achevée"
1457
 
1458
+ #: admin/templates/csv-import-progress.tpl.php:57
1459
  msgctxt "admin csv-import"
1460
  msgid "Import was completed successfully."
1461
  msgstr "L'importation s'est déroulée sans accroc."
1462
 
1463
+ #: admin/templates/csv-import-progress.tpl.php:61
1464
  msgctxt "admin csv-import"
1465
  msgid "Import was completed but some rows were rejected."
1466
  msgstr "L'importation est finie, mais certaines lignes ont été rejetées."
1467
 
1468
+ #: admin/templates/csv-import-progress.tpl.php:64
1469
  msgctxt "admin csv-import"
1470
  msgid "Import Summary"
1471
  msgstr "Sommaire de l'importation"
1472
 
1473
+ #: admin/templates/csv-import-progress.tpl.php:66
1474
  msgctxt "admin csv-import"
1475
  msgid "Rows in file:"
1476
  msgstr "Lignes dans le fichier:"
1477
 
1478
+ #: admin/templates/csv-import-progress.tpl.php:69
1479
  msgctxt "admin csv-import"
1480
  msgid "Imported rows:"
1481
  msgstr "Lignes importées:"
1482
 
1483
+ #: admin/templates/csv-import-progress.tpl.php:72
1484
  msgctxt "admin csv-import"
1485
  msgid "Rejected rows:"
1486
  msgstr "Lignes rejetées:"
1487
 
1488
+ #: admin/templates/csv-import-progress.tpl.php:77
1489
  msgctxt "admin csv-import"
1490
  msgid "Import Warnings"
1491
  msgstr "Alertes d'importation:"
1492
 
1493
+ #: admin/templates/csv-import-progress.tpl.php:80
1494
  msgctxt "admin csv-import"
1495
  msgid "Line #"
1496
  msgstr "Ligne #"
1497
 
1498
+ #: admin/templates/csv-import-progress.tpl.php:81
1499
  msgctxt "admin csv-import"
1500
  msgid "Line"
1501
  msgstr "Ligne"
1502
 
1503
+ #: admin/templates/csv-import-progress.tpl.php:82
1504
  msgctxt "admin csv-import"
1505
  msgid "Warning"
1506
  msgstr "Alerte"
2224
  "Veuillez voir la <a>Documentation de champs de formulaire</a> pour plus de "
2225
  "détails."
2226
 
2227
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.2) #-#-#-#-#
2228
  #. Plugin Name of the plugin/theme
2229
  #: admin/templates/header.tpl.php:4
2230
  msgid "Business Directory Plugin"
3015
  msgid "Allow Tracking"
3016
  msgstr "Autoriser l'analyse"
3017
 
3018
+ #: business-directory-plugin.php:666
3019
  msgctxt "admin plugins"
3020
  msgid "Settings"
3021
  msgstr "Paramètres"
3022
 
3023
+ #: business-directory-plugin.php:774 business-directory-plugin.php:781
3024
  msgctxt "rss feed"
3025
  msgid "%s Feed"
3026
  msgstr "%s diffusion"
3027
 
3028
+ #: business-directory-plugin.php:1119
3029
  msgctxt "title"
3030
  msgid "Submit A Listing"
3031
  msgstr "Soumettre une annonce"
3032
 
3033
+ #: business-directory-plugin.php:1129
3034
  msgctxt "title"
3035
  msgid "Find a Listing"
3036
  msgstr "Trouver une annonce"
3037
 
3038
+ #: business-directory-plugin.php:1139
3039
  msgctxt "title"
3040
  msgid "View All Listings"
3041
  msgstr "Voir toutes les annonces"
3042
 
3043
+ #: business-directory-plugin.php:1159
3044
  msgctxt "title"
3045
  msgid "Listings tagged: %s"
3046
  msgstr "Annonces marquées: %s"
3047
 
3048
+ #: core/api.php:401
3049
  #, fuzzy
3050
  msgid "Free"
3051
  msgstr "Gratuit"
3052
 
3053
+ #: core/class-csv-import.php:394
3054
+ msgctxt "admin csv-import"
3055
+ msgid ""
3056
+ "Could not create listing category \"<category-name>\". The operation failed "
3057
+ "with the following error: <error-message>."
3058
+ msgstr ""
3059
+
3060
+ #: core/class-csv-import.php:400
3061
  msgctxt "admin csv-import"
3062
  msgid "Could not create listing category \"%s\""
3063
  msgstr "Vous ne pouvez pas créer cette catégorie d'annonce \"%s\""
3064
 
3065
+ #: core/class-csv-import.php:544
3066
  msgctxt "admin csv-import"
3067
  msgid "Username \"%s\" does not exist"
3068
  msgstr "Le nom d'utilisateur \"%s\" n'existe pas"
3069
 
3070
+ #: core/class-csv-import.php:576
3071
  msgctxt "admin csv-import"
3072
  msgid "Missing required field: %s"
3073
  msgstr "Absence d'un champ requis: %s"
3074
 
3075
+ #: core/class-csv-import.php:596
3076
  msgctxt "admin csv-import"
3077
  msgid "Listing category \"%s\" does not exist"
3078
  msgstr "La catégorie d'annonce \"%s\" n'existe pas"
3601
  msgid "Enable AJAX compatibility mode?"
3602
  msgstr "Activer le mode de comptabilité AJAX ?"
3603
 
3604
+ #: core/class-settings.php:181 core/class-settings.php:665
3605
  msgctxt "admin settings"
3606
  msgid "Listings"
3607
  msgstr "Annonces"
3608
 
3609
+ #: core/class-settings.php:182 core/class-settings.php:335
3610
+ #: core/class-settings.php:622
3611
  msgctxt "admin settings"
3612
  msgid "General Settings"
3613
  msgstr "Paramètres généraux"
3657
 
3658
  #: core/class-settings.php:200
3659
  msgctxt "admin settings"
3660
+ msgid "Open detailed view of listing in new tab?"
3661
+ msgstr ""
3662
+
3663
+ #: core/class-settings.php:205
3664
+ msgctxt "admin settings"
3665
  msgid "Require login for using the contact form?"
3666
  msgstr "Exiger une connexion pour utiliser le formulaire de contact ?"
3667
 
3668
+ #: core/class-settings.php:211
3669
  msgctxt "admin settings"
3670
  msgid "Maximum number of contact form submits per day"
3671
  msgstr "Nombre maximum de formulaire de contact soumis par jour"
3672
 
3673
+ #: core/class-settings.php:214
3674
  msgctxt "admin settings"
3675
  msgid ""
3676
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
3679
  "Utilisez ceci pour prévenir les annonces contenant des spams. 0 signifie un "
3680
  "nombre de soumission illimité par jour."
3681
 
3682
+ #: core/class-settings.php:220
3683
  msgctxt "admin settings"
3684
  msgid "Include comment form on listing pages?"
3685
  msgstr "Inclure les formulaire de commentaires dans pages annonces ?"
3686
 
3687
+ #: core/class-settings.php:223
3688
  msgctxt "admin settings"
3689
  msgid ""
3690
  "Allow visitors to discuss listings using the standard WordPress comment "
3693
  "Permettre aux visiteurs de discuter des annonces en utilisant le formulaire "
3694
  "de commentaire standard WordPress. Les commentaires sont visibles par tous."
3695
 
3696
+ #: core/class-settings.php:224
3697
  msgctxt "admin settings"
3698
  msgid "Show listings under categories on main page?"
3699
  msgstr "Voir les annonces catégorisées sur la page principale?"
3700
 
3701
+ #: core/class-settings.php:225
3702
  msgctxt "admin settings"
3703
  msgid "Status of listings upon uninstalling plugin"
3704
  msgstr "Statut des annonces dès la désinstallation du plugin"
3705
 
3706
+ #: core/class-settings.php:226 core/class-settings.php:228
3707
  msgctxt "post status"
3708
  msgid "Draft"
3709
  msgstr ""
3710
 
3711
+ #: core/class-settings.php:226 core/class-settings.php:228
3712
  msgctxt "post status"
3713
  msgid "Trash"
3714
  msgstr ""
3715
 
3716
+ #: core/class-settings.php:227
3717
  msgctxt "admin settings"
3718
  msgid "Status of deleted listings"
3719
  msgstr "Statut des annonces effacées"
3720
 
3721
+ #: core/class-settings.php:229
3722
  #, fuzzy
3723
  msgctxt "admin settings"
3724
  msgid "Submit Listing instructions message"
3725
  msgstr "Lister des messages de contact"
3726
 
3727
+ #: core/class-settings.php:229
3728
  msgctxt "admin settings"
3729
  msgid ""
3730
  "This text is displayed at the first page of the Submit Listing process for "
3732
  "form or anything you want to tell users before they get started."
3733
  msgstr ""
3734
 
3735
+ #: core/class-settings.php:231
3736
  msgctxt "admin settings"
3737
  msgid "Listing Renewal"
3738
  msgstr "Renouvellement des annonces"
3739
 
3740
+ #: core/class-settings.php:232
3741
  msgctxt "admin settings"
3742
  msgid "Turn on listing renewal option?"
3743
  msgstr "Activer l'option renouvellement des annonces ?"
3744
 
3745
+ #: core/class-settings.php:235
3746
  msgctxt "admin settings"
3747
  msgid "Allow recurring renewal payments?"
3748
  msgstr "Autoriser les paiements récurrents de renouvellement ?"
3749
 
3750
+ #: core/class-settings.php:238
3751
  msgctxt "admin settings"
3752
  msgid ""
3753
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3757
  "leurs annonces. La redevance est perçue au moment de l'inscription et expire "
3758
  "sans intervention de l'utilisateur."
3759
 
3760
+ #: core/class-settings.php:242
3761
  msgctxt "admin settings"
3762
  msgid "Use recurring payments as the default payment method?"
3763
  msgstr ""
3764
  "Utiliser les paiements récurrents comme méthode de paiement par défaut?"
3765
 
3766
+ #: core/class-settings.php:245
3767
  msgctxt "admin settings"
3768
  msgid ""
3769
  "Enable automatic renewal without having users opt in during the submit "
3772
  "Activer le renouvellement automatique sans avoir à avertir les utilisateurs "
3773
  "lors du processus de soumission."
3774
 
3775
+ #: core/class-settings.php:250
3776
  msgctxt "admin settings"
3777
  msgid "Listing renewal e-mail threshold (in days)"
3778
  msgstr "Seuil de renouvellement des annonces par e-mail (en jours)"
3779
 
3780
  # Todo as soon as possible. I don't understand exactly what does this sentence...
3781
+ #: core/class-settings.php:253
3782
  msgctxt "admin settings"
3783
  msgid ""
3784
  "Configure how many days before listing expiration is the renewal e-mail sent."
3786
  "Configurer le nombre de jours avant l'expiration des annonces doit se "
3787
  "dérouler le renouvellement d'envoi d'e-mail."
3788
 
3789
+ #: core/class-settings.php:257
3790
  msgctxt "admin settings"
3791
  msgid ""
3792
  "Send expiration notices including a cancel links to auto-renewed listings?"
3794
  "Envoyer des avis d'expiration y compris un lien d'annulation vers le "
3795
  "renouvellement automatique des annonces ?"
3796
 
3797
+ #: core/class-settings.php:264
3798
  msgctxt "admin settings"
3799
  msgid "Remind listing owners of expired listings (past due)?"
3800
  msgstr ""
3801
  "Rappeler les propriétaires des annonces lorsque ces dernières arrives à "
3802
  "expiration (en souffrance)?"
3803
 
3804
+ #: core/class-settings.php:269
3805
  msgctxt "admin settings"
3806
  msgid "Listing renewal reminder e-mail threshold (in days)"
3807
  msgstr "Seuil du renouvellement des rappels e-mail des annonces (en jours)"
3808
 
3809
+ #: core/class-settings.php:272
3810
  msgctxt "admin settings"
3811
  msgid ""
3812
  "Configure how many days after the expiration of a listing an e-mail reminder "
3815
  "Configurer le nombre de jours après l'expiration d'une annonces d'un rappel "
3816
  "avant qu'un e-mail soit envoyé au propriétaire."
3817
 
3818
+ #: core/class-settings.php:275
3819
  msgctxt "admin settings"
3820
  msgid "Post/Category Settings"
3821
  msgstr "Paramètres de Messages/Catégories"
3822
 
3823
+ #: core/class-settings.php:276
3824
  msgctxt "admin settings"
3825
  msgid "Default new post status"
3826
  msgstr "Statut du nouveau message par défaut"
3827
 
3828
+ #: core/class-settings.php:277 core/class-settings.php:280
3829
  msgctxt "post status"
3830
  msgid "Published"
3831
  msgstr ""
3832
 
3833
+ #: core/class-settings.php:277 core/class-settings.php:280
3834
  #, fuzzy
3835
  msgctxt "post status"
3836
  msgid "Pending"
3837
  msgstr "En attente"
3838
 
3839
+ #: core/class-settings.php:279
3840
  msgctxt "admin settings"
3841
  msgid "Edit post status"
3842
  msgstr "Editer le statut du message"
3843
 
3844
+ #: core/class-settings.php:281
3845
  msgctxt "admin settings"
3846
  msgid "Order categories list by"
3847
  msgstr "Ordonner les catégories des annonces par"
3848
 
3849
+ #: core/class-settings.php:283
3850
  msgctxt "admin settings"
3851
  msgid "Name"
3852
  msgstr "Nom"
3853
 
3854
+ #: core/class-settings.php:284
3855
  msgctxt "admin settings"
3856
  msgid "Slug"
3857
  msgstr "Identifiant"
3858
 
3859
+ #: core/class-settings.php:285
3860
  msgctxt "admin settings"
3861
  msgid "Listing Count"
3862
  msgstr "Compteur d'annonce"
3863
 
3864
+ #: core/class-settings.php:287
3865
  msgctxt "admin settings"
3866
  msgid "Sort order for categories"
3867
  msgstr "Ordre de tri pour les catégories"
3868
 
3869
+ #: core/class-settings.php:288 core/class-settings.php:306
3870
  msgctxt "admin settings"
3871
  msgid "Ascending"
3872
  msgstr "Ascendant"
3873
 
3874
+ #: core/class-settings.php:288 core/class-settings.php:306
3875
  msgctxt "admin settings"
3876
  msgid "Descending"
3877
  msgstr "Descendant"
3878
 
3879
+ #: core/class-settings.php:289
3880
  msgctxt "admin settings"
3881
  msgid "Show category post count?"
3882
  msgstr "Montrer les catégories par messages postés ?"
3883
 
3884
+ #: core/class-settings.php:290
3885
  msgctxt "admin settings"
3886
  msgid "Hide empty categories?"
3887
  msgstr "Cacher les catégories vides ?"
3888
 
3889
+ #: core/class-settings.php:291
3890
  msgctxt "admin settings"
3891
  msgid "Show only parent categories in category list?"
3892
  msgstr ""
3893
  "Montrer seulement les catégories parentes dans la liste des catégories ?"
3894
 
3895
+ #: core/class-settings.php:293
3896
  msgctxt "admin settings"
3897
  msgid "Listings Sorting"
3898
  msgstr "Tri des annonces"
3899
 
3900
+ #: core/class-settings.php:294
3901
  msgctxt "admin settings"
3902
  msgid "Order directory listings by"
3903
  msgstr "Ordonner les annonces de l'annuaire par"
3904
 
3905
+ #: core/class-settings.php:296
3906
  msgctxt "admin settings"
3907
  msgid "Title"
3908
  msgstr "Titre"
3909
 
3910
+ #: core/class-settings.php:297
3911
  msgctxt "admin settings"
3912
  msgid "Author"
3913
  msgstr "Auteur"
3914
 
3915
+ #: core/class-settings.php:298 core/class-settings.php:708
3916
  msgctxt "admin settings"
3917
  msgid "Date posted"
3918
  msgstr "Date d'ajout"
3919
 
3920
+ #: core/class-settings.php:299 core/class-settings.php:709
3921
  msgctxt "admin settings"
3922
  msgid "Date last modified"
3923
  msgstr "Date de dernière modification"
3924
 
3925
+ #: core/class-settings.php:300
3926
  msgctxt "admin settings"
3927
  msgid "Random"
3928
  msgstr "Aléatoire"
3929
 
3930
+ #: core/class-settings.php:301
3931
  msgctxt "admin settings"
3932
  msgid "Paid first then free. Inside each group by date."
3933
  msgstr ""
3934
 
3935
+ #: core/class-settings.php:302
3936
  msgctxt "admin settings"
3937
  msgid "Paid first then free. Inside each group by title."
3938
  msgstr ""
3939
 
3940
+ #: core/class-settings.php:304
3941
  msgctxt "admin settings"
3942
  msgid "Sort directory listings by"
3943
  msgstr "Trier les annonces de l'annuaire par"
3944
 
3945
+ #: core/class-settings.php:305
3946
  msgctxt "admin settings"
3947
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3948
  msgstr ""
3949
  "Ascendant pour un classement de A à Z, Descendant pour un classement de Z à A"
3950
 
3951
+ #: core/class-settings.php:310
3952
  msgctxt "admin settings"
3953
  msgid "Enable sort bar?"
3954
  msgstr "Activer la barre de tri ?"
3955
 
3956
+ #: core/class-settings.php:315
3957
  msgctxt "admin settings"
3958
  msgid "Sortbar Fields"
3959
  msgstr "Champs de la barre de tri"
3960
 
3961
+ #: core/class-settings.php:324
3962
  msgctxt "admin settings"
3963
  msgid "Featured (Sticky) listing settings"
3964
  msgstr "Paramètres sélectionnés (Post-it) des annonces"
3965
 
3966
+ #: core/class-settings.php:325
3967
  msgctxt "admin settings"
3968
  msgid "Offer sticky listings?"
3969
  msgstr "Proposer des annonces par Post-it ?"
3970
 
3971
+ #: core/class-settings.php:326
3972
  msgctxt "admin settings"
3973
  msgid "Offer upgrades during submit process?"
3974
  msgstr "Proposer des améliorations durant le processus de soumission ?"
3975
 
3976
+ #: core/class-settings.php:327
3977
  msgctxt "admin settings"
3978
  msgid "Sticky listing price"
3979
  msgstr "Prix des annonces en Post-it"
3980
 
3981
+ #: core/class-settings.php:328
3982
  msgctxt "admin settings"
3983
  msgid "Sticky listing page description text"
3984
  msgstr "Texte de description de la page annonce en Post-it"
3985
 
3986
+ #: core/class-settings.php:329
3987
  msgctxt "admin settings"
3988
  msgid ""
3989
  "You can upgrade your listing to featured status. Featured listings will "
3993
  "annonces ainsi traitées vont toujours apparaître avant les annonces "
3994
  "courantes."
3995
 
3996
+ #: core/class-settings.php:334
3997
  msgctxt "admin settings"
3998
  msgid "E-Mail"
3999
  msgstr "E-Mail"
4000
 
4001
+ #: core/class-settings.php:338
4002
  msgctxt "admin settings"
4003
  msgid "Display email address fields publicly?"
4004
  msgstr "Affichage des champs d'adresses e-mail au public ?"
4005
 
4006
+ #: core/class-settings.php:341
4007
  msgctxt "admin settings"
4008
  msgid ""
4009
  "Shows the email address of the listing owner to all web users. NOT "
4014
  "utilisateurs du Web. PAS RECOMMANDE car cela augmente le spam à l'adresse en "
4015
  "question et permet aux spam bots de la récolter pour une utilisation future."
4016
 
4017
+ #: core/class-settings.php:344
4018
  msgctxt "admin settings"
4019
  msgid "How to determine the listing's email address?"
4020
  msgstr "Comment définir l'adresse e-mail de l'annonce ?"
4021
 
4022
+ #: core/class-settings.php:347
4023
  msgctxt "admin settings"
4024
  msgid ""
4025
  "This affects emails sent to listing owners via contact forms or when their "
4028
  "Cela affecte l'envoie des e-mails aux propriétaires des annonces via le "
4029
  "formulaire de contact ou quand leurs annonces expirent."
4030
 
4031
+ #: core/class-settings.php:349
4032
  msgctxt "admin settings"
4033
  msgid "Try listing's email field first, then author's email."
4034
  msgstr ""
4035
 
4036
+ #: core/class-settings.php:350
4037
  msgctxt "admin settings"
4038
  msgid "Try author's email first and then listing's email field."
4039
  msgstr ""
4040
 
4041
+ #: core/class-settings.php:354
4042
  msgctxt "admin settings"
4043
  msgid "E-Mail Notifications"
4044
  msgstr "Notification mail"
4045
 
4046
+ #: core/class-settings.php:357
4047
  msgctxt "admin settings"
4048
  msgid "Notify admin via e-mail when..."
4049
  msgstr "Prévenir l'administrateur via courriel quand..."
4050
 
4051
+ #: core/class-settings.php:361
4052
  msgctxt "admin settings"
4053
  msgid "A new listing is submitted."
4054
  msgstr "Une nouvelle annonce a été soumise."
4055
 
4056
+ #: core/class-settings.php:362
4057
  msgctxt "admin settings"
4058
  msgid "A listing is edited."
4059
  msgstr "Une annonce est éditée."
4060
 
4061
+ #: core/class-settings.php:363
4062
  msgctxt "admin settings"
4063
  msgid "A listing expires."
4064
  msgstr "Une annonce expire."
4065
 
4066
+ #: core/class-settings.php:364
4067
  msgctxt "admin settings"
4068
  msgid "A contact message is sent to a listing's owner."
4069
  msgstr "Un message de contact est envoyé a un propriétaire d'annonce."
4070
 
4071
+ #: core/class-settings.php:370
4072
  msgctxt "admin settings"
4073
  msgid "CC this e-mail address too"
4074
  msgstr "CC cette adresse mail aussi"
4075
 
4076
+ #: core/class-settings.php:376
4077
  msgctxt "admin settings"
4078
  msgid "Notify users via e-mail when..."
4079
  msgstr "Prévenir les utilisateurs via courriel quand..."
4080
 
4081
+ #: core/class-settings.php:379
4082
  msgctxt "admin settings"
4083
  msgid "You can modify the text template used for most of these e-mails below."
4084
  msgstr ""
4085
  "Vous pouvez modifier le modèle de texte utilisé pour la plupart de ces e-"
4086
  "mails ci-dessous."
4087
 
4088
+ #: core/class-settings.php:380
4089
  msgctxt "admin settings"
4090
  msgid "Their listing is submitted."
4091
  msgstr "Leur annonce est soumise."
4092
 
4093
+ #: core/class-settings.php:381
4094
  msgctxt "admin settings"
4095
  msgid "Their listing is approved/published."
4096
  msgstr "Leur annonce est approuvée/publiée"
4097
 
4098
+ #: core/class-settings.php:390
4099
  msgctxt "contact email"
4100
  msgid "You have received a reply from your listing at %s."
4101
  msgstr "Vous avez reçu une réponse à votre annonce de %s."
4102
 
4103
+ #: core/class-settings.php:391
4104
  msgctxt "contact email"
4105
  msgid "Name: %s"
4106
  msgstr "Nom: %s"
4107
 
4108
+ #: core/class-settings.php:392
4109
  msgctxt "contact email"
4110
  msgid "E-Mail: %s"
4111
  msgstr "E-Mail: %s"
4112
 
4113
+ #: core/class-settings.php:393
4114
  msgctxt "contact email"
4115
  msgid "Message:"
4116
  msgstr "Message:"
4117
 
4118
+ #: core/class-settings.php:395
4119
  msgctxt "contact email"
4120
  msgid "Time: %s"
4121
  msgstr "Date: %s"
4122
 
4123
+ #: core/class-settings.php:397
4124
  msgctxt "admin settings"
4125
  msgid "E-Mail Templates"
4126
  msgstr "Template d'E-Mail"
4127
 
4128
+ #: core/class-settings.php:400
4129
  msgctxt "admin settings"
4130
  msgid "Email confirmation message"
4131
  msgstr "Message de confirmation par E-Mail"
4132
 
4133
+ #: core/class-settings.php:404
4134
  msgctxt "admin settings"
4135
  msgid "Sent after a listing has been submitted."
4136
  msgstr "Envoyer après qu'une annonce ait été soumise"
4137
 
4138
+ #: core/class-settings.php:405 core/class-settings.php:413
4139
+ #: core/class-settings.php:454
4140
  msgctxt "admin settings"
4141
  msgid "Listing's title"
4142
  msgstr "Titre de l'annonce"
4143
 
4144
+ #: core/class-settings.php:408
4145
  msgctxt "admin settings"
4146
  msgid "Listing published message"
4147
  msgstr "Message publié de l'annonce"
4148
 
4149
+ #: core/class-settings.php:411
4150
  msgctxt "admin settings"
4151
  msgid ""
4152
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
4155
  "Votre annonce \"[listing]\" est maintenant disponible à [listing-url] et "
4156
  "elle peut être vu par tout le monde."
4157
 
4158
+ #: core/class-settings.php:412
4159
  msgctxt "admin settings"
4160
  msgid "Sent when the listing has been published or approved by an admin."
4161
  msgstr ""
4162
  "Envoyé lorsque l'annonce a été publiée ou approuvée par un administrateur."
4163
 
4164
+ #: core/class-settings.php:414
4165
  msgctxt "admin settings"
4166
  msgid "Listing's URL"
4167
  msgstr "Url de l'annonce"
4168
 
4169
+ #: core/class-settings.php:418
4170
  msgctxt "admin settings"
4171
  msgid "Listing Contact Message"
4172
  msgstr "Lister des messages de contact"
4173
 
4174
+ #: core/class-settings.php:422
4175
  msgctxt "admin settings"
4176
  msgid ""
4177
  "Sent to listing owners when someone uses the contact form on their listing "
4180
  "Envoyer aux propriétaires des annonces quand quelqu'un utilise le formulaire "
4181
  "de contact sur leurs pages d'annonces."
4182
 
4183
+ #: core/class-settings.php:432
4184
  msgctxt "admin settings"
4185
  msgid "Payment related"
4186
  msgstr "Paiement lié"
4187
 
4188
+ #: core/class-settings.php:449
4189
  msgctxt "admin settings"
4190
  msgid "Payment abandoned reminder message"
4191
  msgstr "Paiement abandonné, message de rappel"
4192
 
4193
+ #: core/class-settings.php:453
4194
  msgctxt "admin settings"
4195
  msgid "Sent some time after a pending payment is abandoned by users."
4196
  msgstr ""
4197
  "Envoyer après un certain temps lorsqu'un paiement en attente est abandonné "
4198
  "par les utilisateurs."
4199
 
4200
+ #: core/class-settings.php:455
4201
  msgctxt "admin settings"
4202
  msgid "Checkout URL link"
4203
  msgstr "Vérificateur de lien URL"
4204
 
4205
+ #: core/class-settings.php:461
4206
  msgctxt "admin settings"
4207
  msgid "Renewal Reminders"
4208
  msgstr "Renouveller les rappels"
4209
 
4210
+ #: core/class-settings.php:464
4211
  msgctxt "admin settings"
4212
  msgid ""
4213
  "This section refers only to the text of the renewal/expiration notices. You "
4217
  "d'expiration. Vous pouvez également configurer <a> quand les e-mails seront "
4218
  "envoyés </a>."
4219
 
4220
+ #: core/class-settings.php:468
4221
  msgctxt "admin settings"
4222
  msgid "Pending expiration e-mail message"
4223
  msgstr "Expiration imminente du mail"
4224
 
4225
+ #: core/class-settings.php:472
4226
  msgctxt "settings"
4227
  msgid ""
4228
  "Sent some time before the listing expires. Applies to non-recurring renewals "
4231
  "Envoyé quelque temps avant l'expiration de l'annonce. Valable seulement pour "
4232
  "les renouvellements non-récurrents."
4233
 
4234
+ #: core/class-settings.php:473 core/class-settings.php:486
4235
+ #: core/class-settings.php:499 core/class-settings.php:512
4236
+ #: core/class-settings.php:525
4237
  msgctxt "settings"
4238
  msgid "Listing's name (with link)"
4239
  msgstr "Nom de l'annonce (avec lien)"
4240
 
4241
+ #: core/class-settings.php:474 core/class-settings.php:487
4242
+ #: core/class-settings.php:500 core/class-settings.php:513
4243
+ #: core/class-settings.php:526
4244
  msgctxt "settings"
4245
  msgid "Author's name"
4246
  msgstr "Nom de l'auteur"
4247
 
4248
+ #: core/class-settings.php:475 core/class-settings.php:488
4249
+ #: core/class-settings.php:527
4250
  msgctxt "settings"
4251
  msgid "Expiration date"
4252
  msgstr "Date d'expiration"
4253
 
4254
+ #: core/class-settings.php:476
4255
  msgctxt "settings"
4256
  msgid "Category that is going to expire"
4257
  msgstr "Catégorier qui va expirer"
4258
 
4259
+ #: core/class-settings.php:477 core/class-settings.php:490
4260
+ #: core/class-settings.php:529
4261
  msgctxt "settings"
4262
  msgid "Link to renewal page"
4263
  msgstr "Lien pour renouveller la page"
4264
 
4265
+ #: core/class-settings.php:478 core/class-settings.php:491
4266
+ #: core/class-settings.php:503 core/class-settings.php:516
4267
+ #: core/class-settings.php:530
4268
  msgctxt "settings"
4269
  msgid "Link to your site"
4270
  msgstr "Lien vers votre site"
4271
 
4272
+ #: core/class-settings.php:481
4273
  msgctxt "admin settings"
4274
  msgid "Listing Renewal e-mail message"
4275
  msgstr "Message mail de renouvellement d'annonce"
4276
 
4277
+ #: core/class-settings.php:485
4278
  msgctxt "settings"
4279
  msgid ""
4280
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
4283
  "Envoyé au moment de l'expiration de l'annonce. Seulement valable pour les "
4284
  "renouvellements non-récurrents."
4285
 
4286
+ #: core/class-settings.php:489 core/class-settings.php:528
4287
  msgctxt "settings"
4288
  msgid "Category that expired"
4289
  msgstr "Catégories qui ont expiré"
4290
 
4291
+ #: core/class-settings.php:494
4292
  msgctxt "admin settings"
4293
  msgid "Listing auto-renewal reminder (recurring payments)"
4294
  msgstr "Rappel d'auto-renouvellement des annonces (paiements récurrents)"
4295
 
4296
+ #: core/class-settings.php:498
4297
  msgctxt "settings"
4298
  msgid ""
4299
  "Sent some time before the listing is auto-renewed. Applies to recurring "
4302
  "Envoyé un certain temps avant que l'annonce est auto-renouvellement. Valable "
4303
  "pour les renouvellements périodiques seulement."
4304
 
4305
+ #: core/class-settings.php:501 core/class-settings.php:515
4306
  msgctxt "settings"
4307
  msgid "Renewal date"
4308
  msgstr "Date de renouvellement"
4309
 
4310
+ #: core/class-settings.php:502
4311
  msgctxt "settings"
4312
  msgid "Category that is going to be renewed"
4313
  msgstr "Catégories qui vont être renouvelées"
4314
 
4315
+ #: core/class-settings.php:504
4316
  msgctxt "settings"
4317
  msgid "Link to manage subscriptions"
4318
  msgstr "Lien pour gérer les abonnements"
4319
 
4320
+ #: core/class-settings.php:507
4321
  msgctxt "admin settings"
4322
  msgid "Listing Renewal e-mail message (recurring payments)"
4323
  msgstr "Renouvellement des annonces par mail (paiements récurrents)"
4324
 
4325
+ #: core/class-settings.php:511
4326
  msgctxt "settings"
4327
  msgid ""
4328
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4330
  "Envoyé dès que les annonces se soient auto-renouvelées. Appliqué aux "
4331
  "paiements récurrents seulement."
4332
 
4333
+ #: core/class-settings.php:514
4334
  msgctxt "settings"
4335
  msgid "Renewed category"
4336
  msgstr "Catégories renouvellées"
4337
 
4338
+ #: core/class-settings.php:520
4339
  msgctxt "admin settings"
4340
  msgid "Renewal reminder e-mail message"
4341
  msgstr "Renouveler le rappel par mail"
4342
 
4343
+ #: core/class-settings.php:524
4344
  msgctxt "settings"
4345
  msgid ""
4346
  "Sent some time after listing expiration and when no renewal has occurred. "
4350
  "renouvellement n'a pas eu lieu. Valable pour deux renouvellements récurrents "
4351
  "et non récurrents."
4352
 
4353
+ #: core/class-settings.php:534
4354
  msgctxt "admin settings"
4355
  msgid "Payment"
4356
  msgstr "Paiement"
4357
 
4358
+ #: core/class-settings.php:535
4359
  msgctxt "admin settings"
4360
  msgid "Payment Settings"
4361
  msgstr "Paramètres de paiement"
4362
 
4363
+ #: core/class-settings.php:538
4364
  msgctxt "admin settings"
4365
  msgid "Turn On payments?"
4366
  msgstr "Activer les paiements ?"
4367
 
4368
+ #: core/class-settings.php:540
4369
  msgctxt "admin settings"
4370
  msgid "Put payment gateways in test mode?"
4371
  msgstr "Passer les passerelles de paiement en mode test ?"
4372
 
4373
+ #: core/class-settings.php:545
4374
  msgctxt "admin settings"
4375
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4376
  msgstr ""
4377
  "Effectuer la vérification sur la version sécurisée (HTTPS) de votre site?"
4378
 
4379
+ #: core/class-settings.php:548
4380
  msgctxt "admin settings"
4381
  msgid ""
4382
  "Recommended for added security. For this to work you need to enable HTTPS on "
4385
  "Recommandé pour une sécurité accrue. Pour que cela fonctionne, vous devez "
4386
  "activer HTTPS sur votre serveur et <a> obtenir un certificat SSL </a>."
4387
 
4388
+ #: core/class-settings.php:552
4389
  msgctxt "admin settings"
4390
  msgid "Currency Code"
4391
  msgstr "Code de devise"
4392
 
4393
+ #: core/class-settings.php:554
4394
  msgctxt "admin settings"
4395
  msgid "Australian Dollar (AUD)"
4396
  msgstr "Dollar Australien (AUD)"
4397
 
4398
+ #: core/class-settings.php:555
4399
  msgctxt "admin settings"
4400
  msgid "Brazilian Real (BRL)"
4401
  msgstr "Real Brésilien (BRL)"
4402
 
4403
+ #: core/class-settings.php:556
4404
  msgctxt "admin settings"
4405
  msgid "Canadian Dollar (CAD)"
4406
  msgstr "Dollar Canadien (CAD)"
4407
 
4408
+ #: core/class-settings.php:557
4409
  msgctxt "admin settings"
4410
  msgid "Czech Koruna (CZK)"
4411
  msgstr "Couronne Tchèque (CZK)"
4412
 
4413
+ #: core/class-settings.php:558
4414
  msgctxt "admin settings"
4415
  msgid "Danish Krone (DKK)"
4416
  msgstr "Couronne Danoise (DKK)"
4417
 
4418
+ #: core/class-settings.php:559
4419
  msgctxt "admin settings"
4420
  msgid "Euro (EUR)"
4421
  msgstr "Euro (EUR)"
4422
 
4423
+ #: core/class-settings.php:560
4424
  msgctxt "admin settings"
4425
  msgid "Hong Kong Dollar (HKD)"
4426
  msgstr "Dollar de Hong Kong(HKD)"
4427
 
4428
+ #: core/class-settings.php:561
4429
  msgctxt "admin settings"
4430
  msgid "Hungarian Forint (HUF)"
4431
  msgstr "Forint Hongrois (HUF)"
4432
 
4433
+ #: core/class-settings.php:562
4434
  msgctxt "admin settings"
4435
  msgid "Israeli New Shequel (ILS)"
4436
  msgstr "Nouveau Shequel Israélien (ILS)"
4437
 
4438
+ #: core/class-settings.php:563
4439
  msgctxt "admin settings"
4440
  msgid "Japanese Yen (JPY)"
4441
  msgstr "Yen Japonais (JPY)"
4442
 
4443
+ #: core/class-settings.php:564
4444
  msgctxt "admin settings"
4445
  msgid "Malasian Ringgit (MYR)"
4446
  msgstr "Ringgit Malaisien (MYR)"
4447
 
4448
+ #: core/class-settings.php:565
4449
  msgctxt "admin settings"
4450
  msgid "Mexican Peso (MXN)"
4451
  msgstr "Peso Mexicain (MXN)"
4452
 
4453
+ #: core/class-settings.php:566
4454
  msgctxt "admin settings"
4455
  msgid "Norwegian Krone (NOK)"
4456
  msgstr "Couronne Norvégienne (NOK)"
4457
 
4458
+ #: core/class-settings.php:567
4459
  msgctxt "admin settings"
4460
  msgid "New Zealand Dollar (NZD)"
4461
  msgstr "Dollar Néo-Zélandais (NZD)"
4462
 
4463
+ #: core/class-settings.php:568
4464
  msgctxt "admin settings"
4465
  msgid "Philippine Peso (PHP)"
4466
  msgstr "Peso Phillipin (PHP)"
4467
 
4468
+ #: core/class-settings.php:569
4469
  msgctxt "admin settings"
4470
  msgid "Polish Zloty (PLN)"
4471
  msgstr "Zloty Polonais (PLN)"
4472
 
4473
+ #: core/class-settings.php:570
4474
  msgctxt "admin settings"
4475
  msgid "Pound Sterling (GBP)"
4476
  msgstr "Livre Sterling (GBP)"
4477
 
4478
+ #: core/class-settings.php:571
4479
  msgctxt "admin settings"
4480
  msgid "Singapore Dollar (SGD)"
4481
  msgstr "Dollar Singaporien (SGD)"
4482
 
4483
+ #: core/class-settings.php:572
4484
  msgctxt "admin settings"
4485
  msgid "Swedish Krona (SEK)"
4486
  msgstr "Couronne Suédoise (SEK)"
4487
 
4488
+ #: core/class-settings.php:573
4489
  msgctxt "admin settings"
4490
  msgid "Swiss Franc (CHF)"
4491
  msgstr "Franc Suisse (CHF)"
4492
 
4493
+ #: core/class-settings.php:574
4494
  msgctxt "admin settings"
4495
  msgid "Taiwan Dollar (TWD)"
4496
  msgstr "Dollar Taiwanais (TWD)"
4497
 
4498
+ #: core/class-settings.php:575
4499
  msgctxt "admin settings"
4500
  msgid "Thai Baht (THB)"
4501
  msgstr "Baht Thaïlandais"
4502
 
4503
+ #: core/class-settings.php:576
4504
  msgctxt "admin settings"
4505
  msgid "Turkish Lira (TRY)"
4506
  msgstr "Livre Turque (TRY)"
4507
 
4508
+ #: core/class-settings.php:577
4509
  #, fuzzy
4510
  msgctxt "admin settings"
4511
  msgid "U.S. Dollar (USD)"
4512
  msgstr "Dollar U.S. "
4513
 
4514
+ #: core/class-settings.php:581
4515
  msgctxt "admin settings"
4516
  msgid "Currency Symbol"
4517
  msgstr "Devise"
4518
 
4519
+ #: core/class-settings.php:586
4520
  msgctxt "admin settings"
4521
  msgid "Currency symbol display"
4522
  msgstr "Affichage de la devise"
4523
 
4524
+ #: core/class-settings.php:590
4525
  msgctxt "admin settings"
4526
  msgid "Show currency symbol on the left"
4527
  msgstr "Afficher le symbole de devise à gauche"
4528
 
4529
+ #: core/class-settings.php:591
4530
  msgctxt "admin settings"
4531
  msgid "Show currency symbol on the right"
4532
  msgstr "Afficher le symbole de devise à droite"
4533
 
4534
+ #: core/class-settings.php:592
4535
  msgctxt "admin settings"
4536
  msgid "Do not show currency symbol"
4537
  msgstr "Ne pas montrer la devise"
4538
 
4539
+ #: core/class-settings.php:594
4540
  msgctxt "admin settings"
4541
  msgid "Thank you for payment message"
4542
  msgstr "Merci pour le message de paiement"
4543
 
4544
+ #: core/class-settings.php:595
4545
  msgctxt "admin settings"
4546
  msgid ""
4547
  "Thank you for your payment. Your payment is being verified and your listing "
4551
  "votre annonce en revue. Le processus de vérification et d'examen peut "
4552
  "prendre jusqu'à 48 heures."
4553
 
4554
+ #: core/class-settings.php:600
4555
  msgctxt "admin settings"
4556
  msgid "Ask users to come back for abandoned payments?"
4557
  msgstr "Demandez aux utilisateurs de revenir pour les paiements abandonnés ?"
4558
 
4559
+ #: core/class-settings.php:603
4560
  msgctxt "admin settings"
4561
  msgid ""
4562
  "An abandoned payment is when a user attempts to place a listing and gets to "
4570
  "l'utilisateur n'a tout simplement pas compléter la transaction. Le plugin "
4571
  "peut peut rappeler les auteurs pour continuer la publication de leur annonce."
4572
 
4573
+ #: core/class-settings.php:609
4574
  msgctxt "admin settings"
4575
  msgid "Listing abandonment threshold (hours)"
4576
  msgstr "Seuil d'abandon de l'annonce (heures)"
4577
 
4578
+ #: core/class-settings.php:614
4579
  msgctxt "admin settings"
4580
  msgid ""
4581
  "Listings with pending payments are marked as abandoned after this time. You "
4585
  "cette heure. Vous pouvez également personnaliser <a> l'e-mail </a> que les "
4586
  "utilisateurs reçoivent."
4587
 
4588
+ #: core/class-settings.php:619
4589
  msgctxt "admin settings"
4590
  msgid "Themes"
4591
  msgstr "Thèmes"
4592
 
4593
+ #: core/class-settings.php:621
4594
  msgctxt "admin settings"
4595
  msgid "You can manage your themes on <a>Directory Themes</a>."
4596
  msgstr ""
4597
 
4598
+ #: core/class-settings.php:626
4599
  msgctxt "admin settings"
4600
  msgid "Theme button style"
4601
  msgstr "Boutons de thèmes"
4602
 
4603
+ #: core/class-settings.php:630
4604
  msgctxt "admin settings"
4605
  msgid "Use the BD theme style for BD buttons"
4606
  msgstr "Utiliser le thème BD pour les boutons BD"
4607
 
4608
+ #: core/class-settings.php:631
4609
  msgctxt "admin settings"
4610
  msgid "Use the WP theme style for BD buttons"
4611
  msgstr "Utiliser le thème WP pour les boutons BD"
4612
 
4613
+ #: core/class-settings.php:638
4614
  msgctxt "admin settings"
4615
  msgid "Image"
4616
  msgstr "Image"
4617
 
4618
+ #: core/class-settings.php:639
4619
  msgctxt "admin settings"
4620
  msgid ""
4621
  "Any changes to these settings will affect new listings only. Existing "
4629
  "télécharger l'image (s) sur cette annonce, après avoir cfait les "
4630
  "modifications voulue."
4631
 
4632
+ #: core/class-settings.php:640
4633
  msgctxt "admin settings"
4634
  msgid "Image Settings"
4635
  msgstr "Paraamètres des images"
4636
 
4637
+ #: core/class-settings.php:641
4638
  msgctxt "admin settings"
4639
  msgid "Allow images?"
4640
  msgstr "Autoriser les images ?"
4641
 
4642
+ #: core/class-settings.php:643
4643
  msgctxt "admin settings"
4644
  msgid "Min Image File Size (KB)"
4645
  msgstr "Taille minnimal des fichiers images (KB)"
4646
 
4647
+ #: core/class-settings.php:644
4648
  msgctxt "admin settings"
4649
  msgid "Max Image File Size (KB)"
4650
  msgstr "Taille maximal des fichiers images (KB)"
4651
 
4652
+ #: core/class-settings.php:646
4653
  msgctxt "admin settings"
4654
  msgid "Min image width (px)"
4655
  msgstr "Largeur minnimal des images (px)"
4656
 
4657
+ #: core/class-settings.php:647
4658
  msgctxt "admin settings"
4659
  msgid "Min image height (px)"
4660
  msgstr "Hauteur minnimal des images (px)"
4661
 
4662
+ #: core/class-settings.php:649
4663
  msgctxt "admin settings"
4664
  msgid "Max image width (px)"
4665
  msgstr "Largeur maximal des images (px)"
4666
 
4667
+ #: core/class-settings.php:650
4668
  msgctxt "admin settings"
4669
  msgid "Max image height (px)"
4670
  msgstr "Hauteur maximal des images (px)"
4671
 
4672
+ #: core/class-settings.php:652
4673
  msgctxt "admin settings"
4674
  msgid "Turn on thickbox/lightbox?"
4675
  msgstr "Activer thickbox/lightbox ?"
4676
 
4677
+ #: core/class-settings.php:652
4678
  msgctxt "admin settings"
4679
  msgid ""
4680
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4682
  "Décochez si vela entre en conflit avec d'autres éléments ou plugins "
4683
  "installés sur votre site"
4684
 
4685
+ #: core/class-settings.php:654
4686
  msgctxt "admin settings"
4687
  msgid "Thumbnails"
4688
  msgstr "Miniatures"
4689
 
4690
+ #: core/class-settings.php:655
4691
  msgctxt "admin settings"
4692
  msgid "Thumbnail width (px)"
4693
  msgstr "Largeur des miniatures (en pixel)"
4694
 
4695
+ #: core/class-settings.php:656
4696
  msgctxt "admin settings"
4697
  msgid "Thumbnail height (px)"
4698
  msgstr "Hauteur des miniatures (en pixel)"
4699
 
4700
+ #: core/class-settings.php:659
4701
  msgctxt "admin settings"
4702
  msgid "Crop thumbnails to exact dimensions?"
4703
  msgstr "Recadrer les miniatures aux dimensions exactes ?"
4704
 
4705
+ #: core/class-settings.php:662
4706
  msgctxt "admin settings"
4707
  msgid ""
4708
  "When enabled images will match exactly the dimensions above but part of the "
4717
  "proportionnellement. Selon les images téléchargées, les miniatures peuvent "
4718
  "avoir différentes hauteurs."
4719
 
4720
+ #: core/class-settings.php:668
4721
  msgctxt "admin settings"
4722
  msgid "Number of free images"
4723
  msgstr "Nombre d'images gratuites"
4724
 
4725
+ #: core/class-settings.php:673
4726
  msgctxt "admin settings"
4727
  msgid ""
4728
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4732
  "ou modification d'un <a>plan de frais</a> au lieu de ce paramètre, qui est "
4733
  "ignoré pour les annonces payées."
4734
 
4735
+ #: core/class-settings.php:676
4736
  msgctxt "admin settings"
4737
  msgid "Use default picture for listings with no picture?"
4738
  msgstr "Utiliser l'image par défault pour les annonces sans images ?"
4739
 
4740
+ #: core/class-settings.php:677
4741
  msgctxt "admin settings"
4742
  msgid "Show Thumbnail on main listings page?"
4743
  msgstr "Montrer les miniatures sur page principale des annonces ?"
4744
 
4745
+ #: core/class-settings.php:706
4746
  msgctxt "admin settings"
4747
  msgid "User"
4748
  msgstr ""
4749
 
4750
+ #: core/class-settings.php:707
4751
  #, fuzzy
4752
  msgctxt "admin settings"
4753
  msgid "User registration date"
4754
  msgstr "Date d'expiration de l'annonce"
4755
 
4756
+ #: core/class-settings.php:733
4757
  msgctxt "admin settings"
4758
  msgid ""
4759
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4762
  "Impossible de copier le plugin de compatibilité AJAX \"% s\". Le mode de "
4763
  "compatibilité n'a pas été activé."
4764
 
4765
+ #: core/class-settings.php:741
4766
  msgctxt "admin settings"
4767
  msgid ""
4768
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4771
  "Impossible d'activer le mode de compatibilité AJAX: le répertoire \"% s \" "
4772
  "ne peux pas être créé."
4773
 
4774
+ #: core/class-settings.php:750
4775
  msgctxt "admin settings"
4776
  msgid ""
4777
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4780
  "Impossible de supprimer le \"Module de comptabilité AJAX du plugin \". "
4781
  "Veuillez supprimer le fichier \"% s \" manuellement ou désactiver le plugin."
4782
 
4783
+ #: core/class-settings.php:1070
4784
  msgctxt "settings"
4785
  msgid "Deactivate License"
4786
  msgstr "Désactiver la licence"
4787
 
4788
+ #: core/class-settings.php:1072
4789
  msgctxt "settings"
4790
  msgid "Deactivating license..."
4791
  msgstr "Désactivation de la licence..."
4792
 
4793
+ #: core/class-settings.php:1075
4794
  msgctxt "settings"
4795
  msgid "Activate License"
4796
  msgstr "Activer la licence"
4797
 
4798
+ #: core/class-settings.php:1077
4799
  msgctxt "settings"
4800
  msgid "Activating license..."
4801
  msgstr "Activation de la licence"
4802
 
4803
+ #: core/class-settings.php:1100
4804
  msgctxt "admin settings"
4805
  msgid "Valid placeholders: %s"
4806
  msgstr "Espaces réservés valides:% s"
4807
 
4808
+ #: core/class-settings.php:1134
4809
  msgctxt "settings email"
4810
  msgid "Click to edit e-mail"
4811
  msgstr "Cliquer pour éditer l'e-mail"
4812
 
4813
+ #: core/class-settings.php:1135
4814
  msgctxt "settings email"
4815
  msgid "Click to edit"
4816
  msgstr "Cliquer pour éditer"
4817
 
4818
+ #: core/class-settings.php:1148
4819
  msgctxt "settings email"
4820
  msgid "E-Mail Subject"
4821
  msgstr "Sujet de l'e-mail"
4822
 
4823
+ #: core/class-settings.php:1159
4824
  msgctxt "settings email"
4825
  msgid "E-Mail Body"
4826
  msgstr "Corps de l'e-mail"
4827
 
4828
+ #: core/class-settings.php:1170
4829
  msgctxt "settings email"
4830
  msgid "You can use the following placeholders:"
4831
  msgstr "Vous pouvez utiliser les paramètres suivantes:"
4832
 
4833
+ #: core/class-settings.php:1193
4834
  msgctxt "settings email"
4835
  msgid "Preview e-mail"
4836
  msgstr "E-mail précédents"
4837
 
4838
+ #: core/class-settings.php:1194
4839
  msgctxt "settings email"
4840
  msgid "Cancel"
4841
  msgstr "Annuler"
4842
 
4843
+ #: core/class-settings.php:1195
4844
  msgctxt "settings email"
4845
  msgid "Save Changes"
4846
  msgstr "Sauvegarder les changements"
4847
 
4848
+ #: core/class-settings.php:1214
4849
  msgctxt "settings email"
4850
  msgid "Site title"
4851
  msgstr "Titre du site"
4852
 
4853
+ #: core/class-settings.php:1217
4854
  msgctxt "settings email"
4855
  msgid "Site title (with link)"
4856
  msgstr "Titre du site (avec lien)"
4857
 
4858
+ #: core/class-settings.php:1220
4859
  msgctxt "settings email"
4860
  msgid "Site address (with link)"
4861
  msgstr "Adresse du site (avec lien)"
4862
 
4863
+ #: core/class-settings.php:1223
4864
  msgctxt "settings email"
4865
  msgid "Directory URL (with link)"
4866
  msgstr "Annuaire des URL (avec lien)"
4867
 
4868
+ #: core/class-settings.php:1226
4869
  msgctxt "settings email"
4870
  msgid "Current date"
4871
  msgstr "Date actuelle"
4872
 
4873
+ #: core/class-settings.php:1229
4874
  msgctxt "settings email"
4875
  msgid "Current time"
4876
  msgstr "Heure actuelle"
4922
 
4923
  #: core/class-wpbdp.php:55
4924
  msgid "Directory Categories"
4925
+ msgstr "Catégories de l'annuaire"
4926
 
4927
  #: core/class-wpbdp.php:56
 
4928
  msgid "Directory Category"
4929
+ msgstr "Catégories de l'annuaire"
4930
 
4931
  #: core/class-wpbdp.php:67
4932
  #, fuzzy
6812
  msgid "Upgrade listing to %s for %s."
6813
  msgstr "Mettre à jour l'annonce de %s vers %s."
6814
 
6815
+ #: templates/main-box.tpl.php:13
6816
+ #, fuzzy
6817
+ msgctxt "main box"
6818
+ msgid "Find listings for <keywords>"
6819
+ msgstr "toujours exécuter l'annonce"
6820
+
6821
+ #: templates/main-box.tpl.php:19
6822
  #, fuzzy
6823
  msgctxt "main box"
6824
  msgid "Find Listings"
6825
  msgstr "Trouver une annonce"
6826
 
6827
+ #: templates/main-box.tpl.php:20
6828
  #, fuzzy
6829
  msgctxt "main box"
6830
  msgid "Advanced Search"
7302
  msgid "http://businessdirectoryplugin.com"
7303
  msgstr "http://businessdirectoryplugin.com"
7304
 
7305
+ #~ msgctxt "admin csv-import"
7306
+ #~ msgid "Last imported line from file:"
7307
+ #~ msgstr "Dernière ligne importée depuis le fichier:"
7308
+
7309
  #~ msgctxt "formfields-preview"
7310
  #~ msgid ""
7311
  #~ "This is a preview of the form as it will appear during \"Submit a Listing"
languages/WPBDM.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Business Directory Plugin package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Business Directory Plugin 4.1.1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-08-24 22:42:45+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -116,7 +116,13 @@ msgctxt "admin actions"
116
  msgid "Renew Listing"
117
  msgstr ""
118
 
119
- #: admin/class-admin.php:124
 
 
 
 
 
 
120
  msgctxt "drip pointer"
121
  msgid ""
122
  "Find out how to create a compelling, thriving business directory from "
@@ -124,137 +130,137 @@ msgid ""
124
  "a FREE premium module just for signing up."
125
  msgstr ""
126
 
127
- #: admin/class-admin.php:126
128
  msgctxt "drip pointer"
129
  msgid "Email Address:"
130
  msgstr ""
131
 
132
- #: admin/class-admin.php:132
133
  msgctxt "drip pointer"
134
  msgid "Want to know the Secrets of Building an Awesome Business Directory?"
135
  msgstr ""
136
 
137
- #: admin/class-admin.php:134
138
  msgctxt "drip pointer"
139
  msgid "Yes, please!"
140
  msgstr ""
141
 
142
- #: admin/class-admin.php:136
143
  msgctxt "drip pointer"
144
  msgid "No, thanks"
145
  msgstr ""
146
 
147
- #: admin/class-admin.php:153
148
  msgctxt "admin"
149
  msgid "Business Directory"
150
  msgstr ""
151
 
152
- #: admin/class-admin.php:164
153
  msgctxt "admin"
154
  msgid "You're all set. Visit your new <a>Business Directory</a> page."
155
  msgstr ""
156
 
157
- #: admin/class-admin.php:185
158
  msgctxt "drip pointer"
159
  msgid "Invalid e-mail address."
160
  msgstr ""
161
 
162
- #: admin/class-admin.php:219
163
  msgctxt "admin menu"
164
  msgid "Business Directory Admin"
165
  msgstr ""
166
 
167
- #: admin/class-admin.php:220
168
  msgctxt "admin menu"
169
  msgid "Dir. Admin"
170
  msgstr ""
171
 
172
- #: admin/class-admin.php:220
173
  msgctxt "admin menu"
174
  msgid "Directory Admin"
175
  msgstr ""
176
 
177
- #: admin/class-admin.php:226 admin/class-admin.php:227
178
  msgctxt "admin menu"
179
  msgid "Add New Listing"
180
  msgstr ""
181
 
182
- #: admin/class-admin.php:232 admin/class-admin.php:233
183
  msgctxt "admin menu"
184
  msgid "Manage Options"
185
  msgstr ""
186
 
187
- #: admin/class-admin.php:238 admin/class-admin.php:239
188
  msgctxt "admin menu"
189
  msgid "Manage Fees"
190
  msgstr ""
191
 
192
- #: admin/class-admin.php:244 admin/class-admin.php:245
193
  msgctxt "admin menu"
194
  msgid "Manage Form Fields"
195
  msgstr ""
196
 
197
- #: admin/class-admin.php:250 admin/class-admin.php:251
198
  msgctxt "admin menu"
199
  msgid "Listings"
200
  msgstr ""
201
 
202
- #: admin/class-admin.php:265 admin/class-admin.php:266
203
  msgctxt "admin menu"
204
  msgid "CSV Import"
205
  msgstr ""
206
 
207
- #: admin/class-admin.php:271 admin/class-admin.php:272
208
  msgctxt "admin menu"
209
  msgid "CSV Export"
210
  msgstr ""
211
 
212
- #: admin/class-admin.php:277 admin/class-admin.php:278
213
  msgctxt "admin menu"
214
  msgid "Debug"
215
  msgstr ""
216
 
217
- #: admin/class-admin.php:287
218
  msgctxt "admin menu"
219
  msgid "Main Menu"
220
  msgstr ""
221
 
222
- #: admin/class-admin.php:298
223
  msgctxt "admin menu"
224
  msgid "Uninstall Business Directory Plugin"
225
  msgstr ""
226
 
227
- #: admin/class-admin.php:299
228
  msgctxt "admin menu"
229
  msgid "Uninstall"
230
  msgstr ""
231
 
232
- #: admin/class-admin.php:413
233
  #: admin/templates/listing-metabox-categories.tpl.php:69
234
  msgctxt "admin infometabox"
235
  msgid "never"
236
  msgstr ""
237
 
238
- #: admin/class-admin.php:507
239
  msgctxt "admin"
240
  msgid "Dismiss this notice."
241
  msgstr ""
242
 
243
- #: admin/class-admin.php:535
244
  msgctxt "admin"
245
  msgid "The listing has been published."
246
  msgid_plural "The listings have been published."
247
  msgstr[0] ""
248
  msgstr[1] ""
249
 
250
- #: admin/class-admin.php:553
251
  msgctxt "admin"
252
  msgid "The listing status has been set as paid."
253
  msgid_plural "The listings status has been set as paid."
254
  msgstr[0] ""
255
  msgstr[1] ""
256
 
257
- #: admin/class-admin.php:559
258
  msgctxt "admin"
259
  msgid ""
260
  "Only invoices containing non-recurring items were marked as paid. Please "
@@ -266,28 +272,28 @@ msgid_plural ""
266
  msgstr[0] ""
267
  msgstr[1] ""
268
 
269
- #: admin/class-admin.php:578
270
  msgctxt "admin"
271
  msgid "The listing has been modified."
272
  msgid_plural "The listings have been modified."
273
  msgstr[0] ""
274
  msgstr[1] ""
275
 
276
- #: admin/class-admin.php:591
277
  msgctxt "admin"
278
  msgid "The listing has been upgraded."
279
  msgid_plural "The listings have been upgraded."
280
  msgstr[0] ""
281
  msgstr[1] ""
282
 
283
- #: admin/class-admin.php:603
284
  msgctxt "admin"
285
  msgid "The listing has been downgraded."
286
  msgid_plural "The listings have been downgraded."
287
  msgstr[0] ""
288
  msgstr[1] ""
289
 
290
- #: admin/class-admin.php:614
291
  msgctxt "admin payments"
292
  msgid ""
293
  "The payment status was not changed. Recurring payments can't be manually "
@@ -295,123 +301,123 @@ msgid ""
295
  "went through."
296
  msgstr ""
297
 
298
- #: admin/class-admin.php:619
299
  msgctxt "admin"
300
  msgid "The transaction has been approved."
301
  msgstr ""
302
 
303
- #: admin/class-admin.php:629
304
  msgctxt "admin"
305
  msgid "The transaction has been rejected."
306
  msgstr ""
307
 
308
- #: admin/class-admin.php:635
309
  msgctxt "admin"
310
  msgid "The fee was successfully assigned."
311
  msgstr ""
312
 
313
- #: admin/class-admin.php:644
314
  msgctxt "admin"
315
  msgid "Listing was renewed."
316
  msgid_plural "Listings were renewed."
317
  msgstr[0] ""
318
  msgstr[1] ""
319
 
320
- #: admin/class-admin.php:651
321
  msgctxt "admin"
322
  msgid "Renewal email sent."
323
  msgstr ""
324
 
325
- #: admin/class-admin.php:685
326
  msgctxt "admin category id"
327
  msgid "ID"
328
  msgstr ""
329
 
330
- #: admin/class-admin.php:687 admin/class-admin.php:693
331
  msgctxt "admin"
332
  msgid "Listing Count"
333
  msgstr ""
334
 
335
- #: admin/class-admin.php:802
336
  msgctxt "admin"
337
  msgid ""
338
  "<b>Business Directory Plugin</b> requires fields with the following "
339
  "associations in order to work correctly: <b>%s</b>."
340
  msgstr ""
341
 
342
- #: admin/class-admin.php:804
343
  msgctxt "admin"
344
  msgid ""
345
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
346
  "association in order to work correctly."
347
  msgstr ""
348
 
349
- #: admin/class-admin.php:808
350
  msgctxt "admin"
351
  msgid ""
352
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
353
  "or let Business Directory do this for you automatically."
354
  msgstr ""
355
 
356
- #: admin/class-admin.php:812
357
  msgctxt "admin"
358
  msgid "Go to \"Manage Form Fields\""
359
  msgstr ""
360
 
361
- #: admin/class-admin.php:815
362
  msgctxt "admin"
363
  msgid "Create these required fields for me"
364
  msgstr ""
365
 
366
- #: admin/class-admin.php:824
367
  msgctxt "admin"
368
  msgid ""
369
  "<b>Business Directory Plugin</b> requires a page with the "
370
  "<tt>[businessdirectory]</tt> shortcode to function properly."
371
  msgstr ""
372
 
373
- #: admin/class-admin.php:826
374
  msgctxt "admin"
375
  msgid ""
376
  "You can create this page by yourself or let Business Directory do this for "
377
  "you automatically."
378
  msgstr ""
379
 
380
- #: admin/class-admin.php:830
381
  msgctxt "admin"
382
  msgid "Create required pages for me"
383
  msgstr ""
384
 
385
- #: admin/class-admin.php:870
386
  msgctxt "admin compat"
387
  msgid "Installed: %s"
388
  msgstr ""
389
 
390
- #: admin/class-admin.php:870
391
  msgctxt "admin compat"
392
  msgid "N/A"
393
  msgstr ""
394
 
395
- #: admin/class-admin.php:873
396
  msgctxt "admin compat"
397
  msgid "Required: %s"
398
  msgstr ""
399
 
400
- #: admin/class-admin.php:885
401
  msgctxt "admin compat"
402
  msgid ""
403
  "Business Directory has detected some incompatible premium module versions "
404
  "installed."
405
  msgstr ""
406
 
407
- #: admin/class-admin.php:887
408
  msgctxt "admin compat"
409
  msgid ""
410
  "Please upgrade to the required versions indicated below to make sure "
411
  "everything functions properly."
412
  msgstr ""
413
 
414
- #: admin/class-admin.php:907
415
  msgctxt "admin"
416
  msgid ""
417
  "We noticed you want your Business Directory users to register before posting "
@@ -1308,117 +1314,112 @@ msgid ""
1308
  "available to PHP. Check your error logs for details."
1309
  msgstr ""
1310
 
1311
- #: admin/templates/csv-import-progress.tpl.php:14
1312
- msgctxt "admin csv-import"
1313
- msgid "Last imported line from file:"
1314
- msgstr ""
1315
-
1316
- #: admin/templates/csv-import-progress.tpl.php:18
1317
- #: admin/templates/csv-import-progress.tpl.php:25
1318
  msgctxt "admin csv-import"
1319
  msgid "← Return to CSV Import"
1320
  msgstr ""
1321
 
1322
- #: admin/templates/csv-import-progress.tpl.php:23
1323
  msgctxt "admin csv-import"
1324
  msgid "Import Canceled"
1325
  msgstr ""
1326
 
1327
- #: admin/templates/csv-import-progress.tpl.php:24
1328
  msgctxt "admin csv-import"
1329
  msgid "The import has been canceled."
1330
  msgstr ""
1331
 
1332
- #: admin/templates/csv-import-progress.tpl.php:31
1333
  msgid "Import Progress"
1334
  msgstr ""
1335
 
1336
- #: admin/templates/csv-import-progress.tpl.php:34
1337
  msgctxt "admin csv-import"
1338
  msgid "Files"
1339
  msgstr ""
1340
 
1341
- #: admin/templates/csv-import-progress.tpl.php:37
1342
  msgctxt "admin csv-import"
1343
  msgid "Rows in file"
1344
  msgstr ""
1345
 
1346
- #: admin/templates/csv-import-progress.tpl.php:40
1347
  msgctxt "admin csv-import"
1348
  msgid "Progress"
1349
  msgstr ""
1350
 
1351
- #: admin/templates/csv-import-progress.tpl.php:44
1352
  msgctxt "admin csv-import"
1353
  msgid "Import has not started. Click \"Start Import\" to begin."
1354
  msgstr ""
1355
 
1356
- #: admin/templates/csv-import-progress.tpl.php:45
1357
  msgctxt "admin csv-import"
1358
  msgid "Importing CSV file..."
1359
  msgstr ""
1360
 
1361
- #: admin/templates/csv-import-progress.tpl.php:51
1362
  msgctxt "admin csv-import"
1363
  msgid "Start Import"
1364
  msgstr ""
1365
 
1366
- #: admin/templates/csv-import-progress.tpl.php:52
1367
  msgctxt "admin csv-import"
1368
  msgid "Cancel Import"
1369
  msgstr ""
1370
 
1371
- #: admin/templates/csv-import-progress.tpl.php:59
1372
  msgctxt "admin csv-import"
1373
  msgid "Import finished"
1374
  msgstr ""
1375
 
1376
- #: admin/templates/csv-import-progress.tpl.php:62
1377
  msgctxt "admin csv-import"
1378
  msgid "Import was completed successfully."
1379
  msgstr ""
1380
 
1381
- #: admin/templates/csv-import-progress.tpl.php:66
1382
  msgctxt "admin csv-import"
1383
  msgid "Import was completed but some rows were rejected."
1384
  msgstr ""
1385
 
1386
- #: admin/templates/csv-import-progress.tpl.php:69
1387
  msgctxt "admin csv-import"
1388
  msgid "Import Summary"
1389
  msgstr ""
1390
 
1391
- #: admin/templates/csv-import-progress.tpl.php:71
1392
  msgctxt "admin csv-import"
1393
  msgid "Rows in file:"
1394
  msgstr ""
1395
 
1396
- #: admin/templates/csv-import-progress.tpl.php:74
1397
  msgctxt "admin csv-import"
1398
  msgid "Imported rows:"
1399
  msgstr ""
1400
 
1401
- #: admin/templates/csv-import-progress.tpl.php:77
1402
  msgctxt "admin csv-import"
1403
  msgid "Rejected rows:"
1404
  msgstr ""
1405
 
1406
- #: admin/templates/csv-import-progress.tpl.php:82
1407
  msgctxt "admin csv-import"
1408
  msgid "Import Warnings"
1409
  msgstr ""
1410
 
1411
- #: admin/templates/csv-import-progress.tpl.php:85
1412
  msgctxt "admin csv-import"
1413
  msgid "Line #"
1414
  msgstr ""
1415
 
1416
- #: admin/templates/csv-import-progress.tpl.php:86
1417
  msgctxt "admin csv-import"
1418
  msgid "Line"
1419
  msgstr ""
1420
 
1421
- #: admin/templates/csv-import-progress.tpl.php:87
1422
  msgctxt "admin csv-import"
1423
  msgid "Warning"
1424
  msgstr ""
@@ -2087,7 +2088,7 @@ msgctxt "form-fields admin"
2087
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2088
  msgstr ""
2089
 
2090
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.1) #-#-#-#-#
2091
  #. Plugin Name of the plugin/theme
2092
  #: admin/templates/header.tpl.php:4
2093
  msgid "Business Directory Plugin"
@@ -2823,56 +2824,63 @@ msgctxt "tracking"
2823
  msgid "Allow Tracking"
2824
  msgstr ""
2825
 
2826
- #: business-directory-plugin.php:660
2827
  msgctxt "admin plugins"
2828
  msgid "Settings"
2829
  msgstr ""
2830
 
2831
- #: business-directory-plugin.php:768 business-directory-plugin.php:775
2832
  msgctxt "rss feed"
2833
  msgid "%s Feed"
2834
  msgstr ""
2835
 
2836
- #: business-directory-plugin.php:1113
2837
  msgctxt "title"
2838
  msgid "Submit A Listing"
2839
  msgstr ""
2840
 
2841
- #: business-directory-plugin.php:1123
2842
  msgctxt "title"
2843
  msgid "Find a Listing"
2844
  msgstr ""
2845
 
2846
- #: business-directory-plugin.php:1133
2847
  msgctxt "title"
2848
  msgid "View All Listings"
2849
  msgstr ""
2850
 
2851
- #: business-directory-plugin.php:1153
2852
  msgctxt "title"
2853
  msgid "Listings tagged: %s"
2854
  msgstr ""
2855
 
2856
- #: core/api.php:397
2857
  msgid "Free"
2858
  msgstr ""
2859
 
2860
- #: core/class-csv-import.php:391
 
 
 
 
 
 
 
2861
  msgctxt "admin csv-import"
2862
  msgid "Could not create listing category \"%s\""
2863
  msgstr ""
2864
 
2865
- #: core/class-csv-import.php:535
2866
  msgctxt "admin csv-import"
2867
  msgid "Username \"%s\" does not exist"
2868
  msgstr ""
2869
 
2870
- #: core/class-csv-import.php:567
2871
  msgctxt "admin csv-import"
2872
  msgid "Missing required field: %s"
2873
  msgstr ""
2874
 
2875
- #: core/class-csv-import.php:587
2876
  msgctxt "admin csv-import"
2877
  msgid "Listing category \"%s\" does not exist"
2878
  msgstr ""
@@ -3353,13 +3361,13 @@ msgctxt "admin settings"
3353
  msgid "Enable AJAX compatibility mode?"
3354
  msgstr ""
3355
 
3356
- #: core/class-settings.php:181 core/class-settings.php:660
3357
  msgctxt "admin settings"
3358
  msgid "Listings"
3359
  msgstr ""
3360
 
3361
- #: core/class-settings.php:182 core/class-settings.php:330
3362
- #: core/class-settings.php:617
3363
  msgctxt "admin settings"
3364
  msgid "General Settings"
3365
  msgstr ""
@@ -3402,64 +3410,69 @@ msgstr ""
3402
 
3403
  #: core/class-settings.php:200
3404
  msgctxt "admin settings"
 
 
 
 
 
3405
  msgid "Require login for using the contact form?"
3406
  msgstr ""
3407
 
3408
- #: core/class-settings.php:206
3409
  msgctxt "admin settings"
3410
  msgid "Maximum number of contact form submits per day"
3411
  msgstr ""
3412
 
3413
- #: core/class-settings.php:209
3414
  msgctxt "admin settings"
3415
  msgid ""
3416
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
3417
  "per day."
3418
  msgstr ""
3419
 
3420
- #: core/class-settings.php:215
3421
  msgctxt "admin settings"
3422
  msgid "Include comment form on listing pages?"
3423
  msgstr ""
3424
 
3425
- #: core/class-settings.php:218
3426
  msgctxt "admin settings"
3427
  msgid ""
3428
  "Allow visitors to discuss listings using the standard WordPress comment "
3429
  "form. Comments are public."
3430
  msgstr ""
3431
 
3432
- #: core/class-settings.php:219
3433
  msgctxt "admin settings"
3434
  msgid "Show listings under categories on main page?"
3435
  msgstr ""
3436
 
3437
- #: core/class-settings.php:220
3438
  msgctxt "admin settings"
3439
  msgid "Status of listings upon uninstalling plugin"
3440
  msgstr ""
3441
 
3442
- #: core/class-settings.php:221 core/class-settings.php:223
3443
  msgctxt "post status"
3444
  msgid "Draft"
3445
  msgstr ""
3446
 
3447
- #: core/class-settings.php:221 core/class-settings.php:223
3448
  msgctxt "post status"
3449
  msgid "Trash"
3450
  msgstr ""
3451
 
3452
- #: core/class-settings.php:222
3453
  msgctxt "admin settings"
3454
  msgid "Status of deleted listings"
3455
  msgstr ""
3456
 
3457
- #: core/class-settings.php:224
3458
  msgctxt "admin settings"
3459
  msgid "Submit Listing instructions message"
3460
  msgstr ""
3461
 
3462
- #: core/class-settings.php:224
3463
  msgctxt "admin settings"
3464
  msgid ""
3465
  "This text is displayed at the first page of the Submit Listing process for "
@@ -3467,257 +3480,257 @@ msgid ""
3467
  "form or anything you want to tell users before they get started."
3468
  msgstr ""
3469
 
3470
- #: core/class-settings.php:226
3471
  msgctxt "admin settings"
3472
  msgid "Listing Renewal"
3473
  msgstr ""
3474
 
3475
- #: core/class-settings.php:227
3476
  msgctxt "admin settings"
3477
  msgid "Turn on listing renewal option?"
3478
  msgstr ""
3479
 
3480
- #: core/class-settings.php:230
3481
  msgctxt "admin settings"
3482
  msgid "Allow recurring renewal payments?"
3483
  msgstr ""
3484
 
3485
- #: core/class-settings.php:233
3486
  msgctxt "admin settings"
3487
  msgid ""
3488
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3489
  "charged at the time the listing expires without user intervention."
3490
  msgstr ""
3491
 
3492
- #: core/class-settings.php:237
3493
  msgctxt "admin settings"
3494
  msgid "Use recurring payments as the default payment method?"
3495
  msgstr ""
3496
 
3497
- #: core/class-settings.php:240
3498
  msgctxt "admin settings"
3499
  msgid ""
3500
  "Enable automatic renewal without having users opt in during the submit "
3501
  "process."
3502
  msgstr ""
3503
 
3504
- #: core/class-settings.php:245
3505
  msgctxt "admin settings"
3506
  msgid "Listing renewal e-mail threshold (in days)"
3507
  msgstr ""
3508
 
3509
- #: core/class-settings.php:248
3510
  msgctxt "admin settings"
3511
  msgid ""
3512
  "Configure how many days before listing expiration is the renewal e-mail sent."
3513
  msgstr ""
3514
 
3515
- #: core/class-settings.php:252
3516
  msgctxt "admin settings"
3517
  msgid ""
3518
  "Send expiration notices including a cancel links to auto-renewed listings?"
3519
  msgstr ""
3520
 
3521
- #: core/class-settings.php:259
3522
  msgctxt "admin settings"
3523
  msgid "Remind listing owners of expired listings (past due)?"
3524
  msgstr ""
3525
 
3526
- #: core/class-settings.php:264
3527
  msgctxt "admin settings"
3528
  msgid "Listing renewal reminder e-mail threshold (in days)"
3529
  msgstr ""
3530
 
3531
- #: core/class-settings.php:267
3532
  msgctxt "admin settings"
3533
  msgid ""
3534
  "Configure how many days after the expiration of a listing an e-mail reminder "
3535
  "should be sent to the owner."
3536
  msgstr ""
3537
 
3538
- #: core/class-settings.php:270
3539
  msgctxt "admin settings"
3540
  msgid "Post/Category Settings"
3541
  msgstr ""
3542
 
3543
- #: core/class-settings.php:271
3544
  msgctxt "admin settings"
3545
  msgid "Default new post status"
3546
  msgstr ""
3547
 
3548
- #: core/class-settings.php:272 core/class-settings.php:275
3549
  msgctxt "post status"
3550
  msgid "Published"
3551
  msgstr ""
3552
 
3553
- #: core/class-settings.php:272 core/class-settings.php:275
3554
  msgctxt "post status"
3555
  msgid "Pending"
3556
  msgstr ""
3557
 
3558
- #: core/class-settings.php:274
3559
  msgctxt "admin settings"
3560
  msgid "Edit post status"
3561
  msgstr ""
3562
 
3563
- #: core/class-settings.php:276
3564
  msgctxt "admin settings"
3565
  msgid "Order categories list by"
3566
  msgstr ""
3567
 
3568
- #: core/class-settings.php:278
3569
  msgctxt "admin settings"
3570
  msgid "Name"
3571
  msgstr ""
3572
 
3573
- #: core/class-settings.php:279
3574
  msgctxt "admin settings"
3575
  msgid "Slug"
3576
  msgstr ""
3577
 
3578
- #: core/class-settings.php:280
3579
  msgctxt "admin settings"
3580
  msgid "Listing Count"
3581
  msgstr ""
3582
 
3583
- #: core/class-settings.php:282
3584
  msgctxt "admin settings"
3585
  msgid "Sort order for categories"
3586
  msgstr ""
3587
 
3588
- #: core/class-settings.php:283 core/class-settings.php:301
3589
  msgctxt "admin settings"
3590
  msgid "Ascending"
3591
  msgstr ""
3592
 
3593
- #: core/class-settings.php:283 core/class-settings.php:301
3594
  msgctxt "admin settings"
3595
  msgid "Descending"
3596
  msgstr ""
3597
 
3598
- #: core/class-settings.php:284
3599
  msgctxt "admin settings"
3600
  msgid "Show category post count?"
3601
  msgstr ""
3602
 
3603
- #: core/class-settings.php:285
3604
  msgctxt "admin settings"
3605
  msgid "Hide empty categories?"
3606
  msgstr ""
3607
 
3608
- #: core/class-settings.php:286
3609
  msgctxt "admin settings"
3610
  msgid "Show only parent categories in category list?"
3611
  msgstr ""
3612
 
3613
- #: core/class-settings.php:288
3614
  msgctxt "admin settings"
3615
  msgid "Listings Sorting"
3616
  msgstr ""
3617
 
3618
- #: core/class-settings.php:289
3619
  msgctxt "admin settings"
3620
  msgid "Order directory listings by"
3621
  msgstr ""
3622
 
3623
- #: core/class-settings.php:291
3624
  msgctxt "admin settings"
3625
  msgid "Title"
3626
  msgstr ""
3627
 
3628
- #: core/class-settings.php:292
3629
  msgctxt "admin settings"
3630
  msgid "Author"
3631
  msgstr ""
3632
 
3633
- #: core/class-settings.php:293 core/class-settings.php:703
3634
  msgctxt "admin settings"
3635
  msgid "Date posted"
3636
  msgstr ""
3637
 
3638
- #: core/class-settings.php:294 core/class-settings.php:704
3639
  msgctxt "admin settings"
3640
  msgid "Date last modified"
3641
  msgstr ""
3642
 
3643
- #: core/class-settings.php:295
3644
  msgctxt "admin settings"
3645
  msgid "Random"
3646
  msgstr ""
3647
 
3648
- #: core/class-settings.php:296
3649
  msgctxt "admin settings"
3650
  msgid "Paid first then free. Inside each group by date."
3651
  msgstr ""
3652
 
3653
- #: core/class-settings.php:297
3654
  msgctxt "admin settings"
3655
  msgid "Paid first then free. Inside each group by title."
3656
  msgstr ""
3657
 
3658
- #: core/class-settings.php:299
3659
  msgctxt "admin settings"
3660
  msgid "Sort directory listings by"
3661
  msgstr ""
3662
 
3663
- #: core/class-settings.php:300
3664
  msgctxt "admin settings"
3665
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3666
  msgstr ""
3667
 
3668
- #: core/class-settings.php:305
3669
  msgctxt "admin settings"
3670
  msgid "Enable sort bar?"
3671
  msgstr ""
3672
 
3673
- #: core/class-settings.php:310
3674
  msgctxt "admin settings"
3675
  msgid "Sortbar Fields"
3676
  msgstr ""
3677
 
3678
- #: core/class-settings.php:319
3679
  msgctxt "admin settings"
3680
  msgid "Featured (Sticky) listing settings"
3681
  msgstr ""
3682
 
3683
- #: core/class-settings.php:320
3684
  msgctxt "admin settings"
3685
  msgid "Offer sticky listings?"
3686
  msgstr ""
3687
 
3688
- #: core/class-settings.php:321
3689
  msgctxt "admin settings"
3690
  msgid "Offer upgrades during submit process?"
3691
  msgstr ""
3692
 
3693
- #: core/class-settings.php:322
3694
  msgctxt "admin settings"
3695
  msgid "Sticky listing price"
3696
  msgstr ""
3697
 
3698
- #: core/class-settings.php:323
3699
  msgctxt "admin settings"
3700
  msgid "Sticky listing page description text"
3701
  msgstr ""
3702
 
3703
- #: core/class-settings.php:324
3704
  msgctxt "admin settings"
3705
  msgid ""
3706
  "You can upgrade your listing to featured status. Featured listings will "
3707
  "always appear on top of regular listings."
3708
  msgstr ""
3709
 
3710
- #: core/class-settings.php:329
3711
  msgctxt "admin settings"
3712
  msgid "E-Mail"
3713
  msgstr ""
3714
 
3715
- #: core/class-settings.php:333
3716
  msgctxt "admin settings"
3717
  msgid "Display email address fields publicly?"
3718
  msgstr ""
3719
 
3720
- #: core/class-settings.php:336
3721
  msgctxt "admin settings"
3722
  msgid ""
3723
  "Shows the email address of the listing owner to all web users. NOT "
@@ -3725,517 +3738,517 @@ msgid ""
3725
  "harvest it for future use."
3726
  msgstr ""
3727
 
3728
- #: core/class-settings.php:339
3729
  msgctxt "admin settings"
3730
  msgid "How to determine the listing's email address?"
3731
  msgstr ""
3732
 
3733
- #: core/class-settings.php:342
3734
  msgctxt "admin settings"
3735
  msgid ""
3736
  "This affects emails sent to listing owners via contact forms or when their "
3737
  "listings expire."
3738
  msgstr ""
3739
 
3740
- #: core/class-settings.php:344
3741
  msgctxt "admin settings"
3742
  msgid "Try listing's email field first, then author's email."
3743
  msgstr ""
3744
 
3745
- #: core/class-settings.php:345
3746
  msgctxt "admin settings"
3747
  msgid "Try author's email first and then listing's email field."
3748
  msgstr ""
3749
 
3750
- #: core/class-settings.php:349
3751
  msgctxt "admin settings"
3752
  msgid "E-Mail Notifications"
3753
  msgstr ""
3754
 
3755
- #: core/class-settings.php:352
3756
  msgctxt "admin settings"
3757
  msgid "Notify admin via e-mail when..."
3758
  msgstr ""
3759
 
3760
- #: core/class-settings.php:356
3761
  msgctxt "admin settings"
3762
  msgid "A new listing is submitted."
3763
  msgstr ""
3764
 
3765
- #: core/class-settings.php:357
3766
  msgctxt "admin settings"
3767
  msgid "A listing is edited."
3768
  msgstr ""
3769
 
3770
- #: core/class-settings.php:358
3771
  msgctxt "admin settings"
3772
  msgid "A listing expires."
3773
  msgstr ""
3774
 
3775
- #: core/class-settings.php:359
3776
  msgctxt "admin settings"
3777
  msgid "A contact message is sent to a listing's owner."
3778
  msgstr ""
3779
 
3780
- #: core/class-settings.php:365
3781
  msgctxt "admin settings"
3782
  msgid "CC this e-mail address too"
3783
  msgstr ""
3784
 
3785
- #: core/class-settings.php:371
3786
  msgctxt "admin settings"
3787
  msgid "Notify users via e-mail when..."
3788
  msgstr ""
3789
 
3790
- #: core/class-settings.php:374
3791
  msgctxt "admin settings"
3792
  msgid "You can modify the text template used for most of these e-mails below."
3793
  msgstr ""
3794
 
3795
- #: core/class-settings.php:375
3796
  msgctxt "admin settings"
3797
  msgid "Their listing is submitted."
3798
  msgstr ""
3799
 
3800
- #: core/class-settings.php:376
3801
  msgctxt "admin settings"
3802
  msgid "Their listing is approved/published."
3803
  msgstr ""
3804
 
3805
- #: core/class-settings.php:385
3806
  msgctxt "contact email"
3807
  msgid "You have received a reply from your listing at %s."
3808
  msgstr ""
3809
 
3810
- #: core/class-settings.php:386
3811
  msgctxt "contact email"
3812
  msgid "Name: %s"
3813
  msgstr ""
3814
 
3815
- #: core/class-settings.php:387
3816
  msgctxt "contact email"
3817
  msgid "E-Mail: %s"
3818
  msgstr ""
3819
 
3820
- #: core/class-settings.php:388
3821
  msgctxt "contact email"
3822
  msgid "Message:"
3823
  msgstr ""
3824
 
3825
- #: core/class-settings.php:390
3826
  msgctxt "contact email"
3827
  msgid "Time: %s"
3828
  msgstr ""
3829
 
3830
- #: core/class-settings.php:392
3831
  msgctxt "admin settings"
3832
  msgid "E-Mail Templates"
3833
  msgstr ""
3834
 
3835
- #: core/class-settings.php:395
3836
  msgctxt "admin settings"
3837
  msgid "Email confirmation message"
3838
  msgstr ""
3839
 
3840
- #: core/class-settings.php:399
3841
  msgctxt "admin settings"
3842
  msgid "Sent after a listing has been submitted."
3843
  msgstr ""
3844
 
3845
- #: core/class-settings.php:400 core/class-settings.php:408
3846
- #: core/class-settings.php:449
3847
  msgctxt "admin settings"
3848
  msgid "Listing's title"
3849
  msgstr ""
3850
 
3851
- #: core/class-settings.php:403
3852
  msgctxt "admin settings"
3853
  msgid "Listing published message"
3854
  msgstr ""
3855
 
3856
- #: core/class-settings.php:406
3857
  msgctxt "admin settings"
3858
  msgid ""
3859
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
3860
  "viewed by the public."
3861
  msgstr ""
3862
 
3863
- #: core/class-settings.php:407
3864
  msgctxt "admin settings"
3865
  msgid "Sent when the listing has been published or approved by an admin."
3866
  msgstr ""
3867
 
3868
- #: core/class-settings.php:409
3869
  msgctxt "admin settings"
3870
  msgid "Listing's URL"
3871
  msgstr ""
3872
 
3873
- #: core/class-settings.php:413
3874
  msgctxt "admin settings"
3875
  msgid "Listing Contact Message"
3876
  msgstr ""
3877
 
3878
- #: core/class-settings.php:417
3879
  msgctxt "admin settings"
3880
  msgid ""
3881
  "Sent to listing owners when someone uses the contact form on their listing "
3882
  "pages."
3883
  msgstr ""
3884
 
3885
- #: core/class-settings.php:427
3886
  msgctxt "admin settings"
3887
  msgid "Payment related"
3888
  msgstr ""
3889
 
3890
- #: core/class-settings.php:444
3891
  msgctxt "admin settings"
3892
  msgid "Payment abandoned reminder message"
3893
  msgstr ""
3894
 
3895
- #: core/class-settings.php:448
3896
  msgctxt "admin settings"
3897
  msgid "Sent some time after a pending payment is abandoned by users."
3898
  msgstr ""
3899
 
3900
- #: core/class-settings.php:450
3901
  msgctxt "admin settings"
3902
  msgid "Checkout URL link"
3903
  msgstr ""
3904
 
3905
- #: core/class-settings.php:456
3906
  msgctxt "admin settings"
3907
  msgid "Renewal Reminders"
3908
  msgstr ""
3909
 
3910
- #: core/class-settings.php:459
3911
  msgctxt "admin settings"
3912
  msgid ""
3913
  "This section refers only to the text of the renewal/expiration notices. You "
3914
  "can also <a>configure when the e-mails are sent</a>."
3915
  msgstr ""
3916
 
3917
- #: core/class-settings.php:463
3918
  msgctxt "admin settings"
3919
  msgid "Pending expiration e-mail message"
3920
  msgstr ""
3921
 
3922
- #: core/class-settings.php:467
3923
  msgctxt "settings"
3924
  msgid ""
3925
  "Sent some time before the listing expires. Applies to non-recurring renewals "
3926
  "only."
3927
  msgstr ""
3928
 
3929
- #: core/class-settings.php:468 core/class-settings.php:481
3930
- #: core/class-settings.php:494 core/class-settings.php:507
3931
- #: core/class-settings.php:520
3932
  msgctxt "settings"
3933
  msgid "Listing's name (with link)"
3934
  msgstr ""
3935
 
3936
- #: core/class-settings.php:469 core/class-settings.php:482
3937
- #: core/class-settings.php:495 core/class-settings.php:508
3938
- #: core/class-settings.php:521
3939
  msgctxt "settings"
3940
  msgid "Author's name"
3941
  msgstr ""
3942
 
3943
- #: core/class-settings.php:470 core/class-settings.php:483
3944
- #: core/class-settings.php:522
3945
  msgctxt "settings"
3946
  msgid "Expiration date"
3947
  msgstr ""
3948
 
3949
- #: core/class-settings.php:471
3950
  msgctxt "settings"
3951
  msgid "Category that is going to expire"
3952
  msgstr ""
3953
 
3954
- #: core/class-settings.php:472 core/class-settings.php:485
3955
- #: core/class-settings.php:524
3956
  msgctxt "settings"
3957
  msgid "Link to renewal page"
3958
  msgstr ""
3959
 
3960
- #: core/class-settings.php:473 core/class-settings.php:486
3961
- #: core/class-settings.php:498 core/class-settings.php:511
3962
- #: core/class-settings.php:525
3963
  msgctxt "settings"
3964
  msgid "Link to your site"
3965
  msgstr ""
3966
 
3967
- #: core/class-settings.php:476
3968
  msgctxt "admin settings"
3969
  msgid "Listing Renewal e-mail message"
3970
  msgstr ""
3971
 
3972
- #: core/class-settings.php:480
3973
  msgctxt "settings"
3974
  msgid ""
3975
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
3976
  "only."
3977
  msgstr ""
3978
 
3979
- #: core/class-settings.php:484 core/class-settings.php:523
3980
  msgctxt "settings"
3981
  msgid "Category that expired"
3982
  msgstr ""
3983
 
3984
- #: core/class-settings.php:489
3985
  msgctxt "admin settings"
3986
  msgid "Listing auto-renewal reminder (recurring payments)"
3987
  msgstr ""
3988
 
3989
- #: core/class-settings.php:493
3990
  msgctxt "settings"
3991
  msgid ""
3992
  "Sent some time before the listing is auto-renewed. Applies to recurring "
3993
  "renewals only."
3994
  msgstr ""
3995
 
3996
- #: core/class-settings.php:496 core/class-settings.php:510
3997
  msgctxt "settings"
3998
  msgid "Renewal date"
3999
  msgstr ""
4000
 
4001
- #: core/class-settings.php:497
4002
  msgctxt "settings"
4003
  msgid "Category that is going to be renewed"
4004
  msgstr ""
4005
 
4006
- #: core/class-settings.php:499
4007
  msgctxt "settings"
4008
  msgid "Link to manage subscriptions"
4009
  msgstr ""
4010
 
4011
- #: core/class-settings.php:502
4012
  msgctxt "admin settings"
4013
  msgid "Listing Renewal e-mail message (recurring payments)"
4014
  msgstr ""
4015
 
4016
- #: core/class-settings.php:506
4017
  msgctxt "settings"
4018
  msgid ""
4019
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4020
  msgstr ""
4021
 
4022
- #: core/class-settings.php:509
4023
  msgctxt "settings"
4024
  msgid "Renewed category"
4025
  msgstr ""
4026
 
4027
- #: core/class-settings.php:515
4028
  msgctxt "admin settings"
4029
  msgid "Renewal reminder e-mail message"
4030
  msgstr ""
4031
 
4032
- #: core/class-settings.php:519
4033
  msgctxt "settings"
4034
  msgid ""
4035
  "Sent some time after listing expiration and when no renewal has occurred. "
4036
  "Applies to both recurring and non-recurring renewals."
4037
  msgstr ""
4038
 
4039
- #: core/class-settings.php:529
4040
  msgctxt "admin settings"
4041
  msgid "Payment"
4042
  msgstr ""
4043
 
4044
- #: core/class-settings.php:530
4045
  msgctxt "admin settings"
4046
  msgid "Payment Settings"
4047
  msgstr ""
4048
 
4049
- #: core/class-settings.php:533
4050
  msgctxt "admin settings"
4051
  msgid "Turn On payments?"
4052
  msgstr ""
4053
 
4054
- #: core/class-settings.php:535
4055
  msgctxt "admin settings"
4056
  msgid "Put payment gateways in test mode?"
4057
  msgstr ""
4058
 
4059
- #: core/class-settings.php:540
4060
  msgctxt "admin settings"
4061
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4062
  msgstr ""
4063
 
4064
- #: core/class-settings.php:543
4065
  msgctxt "admin settings"
4066
  msgid ""
4067
  "Recommended for added security. For this to work you need to enable HTTPS on "
4068
  "your server and <a>obtain an SSL certificate</a>."
4069
  msgstr ""
4070
 
4071
- #: core/class-settings.php:547
4072
  msgctxt "admin settings"
4073
  msgid "Currency Code"
4074
  msgstr ""
4075
 
4076
- #: core/class-settings.php:549
4077
  msgctxt "admin settings"
4078
  msgid "Australian Dollar (AUD)"
4079
  msgstr ""
4080
 
4081
- #: core/class-settings.php:550
4082
  msgctxt "admin settings"
4083
  msgid "Brazilian Real (BRL)"
4084
  msgstr ""
4085
 
4086
- #: core/class-settings.php:551
4087
  msgctxt "admin settings"
4088
  msgid "Canadian Dollar (CAD)"
4089
  msgstr ""
4090
 
4091
- #: core/class-settings.php:552
4092
  msgctxt "admin settings"
4093
  msgid "Czech Koruna (CZK)"
4094
  msgstr ""
4095
 
4096
- #: core/class-settings.php:553
4097
  msgctxt "admin settings"
4098
  msgid "Danish Krone (DKK)"
4099
  msgstr ""
4100
 
4101
- #: core/class-settings.php:554
4102
  msgctxt "admin settings"
4103
  msgid "Euro (EUR)"
4104
  msgstr ""
4105
 
4106
- #: core/class-settings.php:555
4107
  msgctxt "admin settings"
4108
  msgid "Hong Kong Dollar (HKD)"
4109
  msgstr ""
4110
 
4111
- #: core/class-settings.php:556
4112
  msgctxt "admin settings"
4113
  msgid "Hungarian Forint (HUF)"
4114
  msgstr ""
4115
 
4116
- #: core/class-settings.php:557
4117
  msgctxt "admin settings"
4118
  msgid "Israeli New Shequel (ILS)"
4119
  msgstr ""
4120
 
4121
- #: core/class-settings.php:558
4122
  msgctxt "admin settings"
4123
  msgid "Japanese Yen (JPY)"
4124
  msgstr ""
4125
 
4126
- #: core/class-settings.php:559
4127
  msgctxt "admin settings"
4128
  msgid "Malasian Ringgit (MYR)"
4129
  msgstr ""
4130
 
4131
- #: core/class-settings.php:560
4132
  msgctxt "admin settings"
4133
  msgid "Mexican Peso (MXN)"
4134
  msgstr ""
4135
 
4136
- #: core/class-settings.php:561
4137
  msgctxt "admin settings"
4138
  msgid "Norwegian Krone (NOK)"
4139
  msgstr ""
4140
 
4141
- #: core/class-settings.php:562
4142
  msgctxt "admin settings"
4143
  msgid "New Zealand Dollar (NZD)"
4144
  msgstr ""
4145
 
4146
- #: core/class-settings.php:563
4147
  msgctxt "admin settings"
4148
  msgid "Philippine Peso (PHP)"
4149
  msgstr ""
4150
 
4151
- #: core/class-settings.php:564
4152
  msgctxt "admin settings"
4153
  msgid "Polish Zloty (PLN)"
4154
  msgstr ""
4155
 
4156
- #: core/class-settings.php:565
4157
  msgctxt "admin settings"
4158
  msgid "Pound Sterling (GBP)"
4159
  msgstr ""
4160
 
4161
- #: core/class-settings.php:566
4162
  msgctxt "admin settings"
4163
  msgid "Singapore Dollar (SGD)"
4164
  msgstr ""
4165
 
4166
- #: core/class-settings.php:567
4167
  msgctxt "admin settings"
4168
  msgid "Swedish Krona (SEK)"
4169
  msgstr ""
4170
 
4171
- #: core/class-settings.php:568
4172
  msgctxt "admin settings"
4173
  msgid "Swiss Franc (CHF)"
4174
  msgstr ""
4175
 
4176
- #: core/class-settings.php:569
4177
  msgctxt "admin settings"
4178
  msgid "Taiwan Dollar (TWD)"
4179
  msgstr ""
4180
 
4181
- #: core/class-settings.php:570
4182
  msgctxt "admin settings"
4183
  msgid "Thai Baht (THB)"
4184
  msgstr ""
4185
 
4186
- #: core/class-settings.php:571
4187
  msgctxt "admin settings"
4188
  msgid "Turkish Lira (TRY)"
4189
  msgstr ""
4190
 
4191
- #: core/class-settings.php:572
4192
  msgctxt "admin settings"
4193
  msgid "U.S. Dollar (USD)"
4194
  msgstr ""
4195
 
4196
- #: core/class-settings.php:576
4197
  msgctxt "admin settings"
4198
  msgid "Currency Symbol"
4199
  msgstr ""
4200
 
4201
- #: core/class-settings.php:581
4202
  msgctxt "admin settings"
4203
  msgid "Currency symbol display"
4204
  msgstr ""
4205
 
4206
- #: core/class-settings.php:585
4207
  msgctxt "admin settings"
4208
  msgid "Show currency symbol on the left"
4209
  msgstr ""
4210
 
4211
- #: core/class-settings.php:586
4212
  msgctxt "admin settings"
4213
  msgid "Show currency symbol on the right"
4214
  msgstr ""
4215
 
4216
- #: core/class-settings.php:587
4217
  msgctxt "admin settings"
4218
  msgid "Do not show currency symbol"
4219
  msgstr ""
4220
 
4221
- #: core/class-settings.php:589
4222
  msgctxt "admin settings"
4223
  msgid "Thank you for payment message"
4224
  msgstr ""
4225
 
4226
- #: core/class-settings.php:590
4227
  msgctxt "admin settings"
4228
  msgid ""
4229
  "Thank you for your payment. Your payment is being verified and your listing "
4230
  "reviewed. The verification and review process could take up to 48 hours."
4231
  msgstr ""
4232
 
4233
- #: core/class-settings.php:595
4234
  msgctxt "admin settings"
4235
  msgid "Ask users to come back for abandoned payments?"
4236
  msgstr ""
4237
 
4238
- #: core/class-settings.php:598
4239
  msgctxt "admin settings"
4240
  msgid ""
4241
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -4244,49 +4257,49 @@ msgid ""
4244
  "the transaction. BD can remind them to come back and continue."
4245
  msgstr ""
4246
 
4247
- #: core/class-settings.php:604
4248
  msgctxt "admin settings"
4249
  msgid "Listing abandonment threshold (hours)"
4250
  msgstr ""
4251
 
4252
- #: core/class-settings.php:609
4253
  msgctxt "admin settings"
4254
  msgid ""
4255
  "Listings with pending payments are marked as abandoned after this time. You "
4256
  "can also <a>customize the e-mail</a> users receive."
4257
  msgstr ""
4258
 
4259
- #: core/class-settings.php:614
4260
  msgctxt "admin settings"
4261
  msgid "Themes"
4262
  msgstr ""
4263
 
4264
- #: core/class-settings.php:616
4265
  msgctxt "admin settings"
4266
  msgid "You can manage your themes on <a>Directory Themes</a>."
4267
  msgstr ""
4268
 
4269
- #: core/class-settings.php:621
4270
  msgctxt "admin settings"
4271
  msgid "Theme button style"
4272
  msgstr ""
4273
 
4274
- #: core/class-settings.php:625
4275
  msgctxt "admin settings"
4276
  msgid "Use the BD theme style for BD buttons"
4277
  msgstr ""
4278
 
4279
- #: core/class-settings.php:626
4280
  msgctxt "admin settings"
4281
  msgid "Use the WP theme style for BD buttons"
4282
  msgstr ""
4283
 
4284
- #: core/class-settings.php:633
4285
  msgctxt "admin settings"
4286
  msgid "Image"
4287
  msgstr ""
4288
 
4289
- #: core/class-settings.php:634
4290
  msgctxt "admin settings"
4291
  msgid ""
4292
  "Any changes to these settings will affect new listings only. Existing "
@@ -4295,78 +4308,78 @@ msgid ""
4295
  "here."
4296
  msgstr ""
4297
 
4298
- #: core/class-settings.php:635
4299
  msgctxt "admin settings"
4300
  msgid "Image Settings"
4301
  msgstr ""
4302
 
4303
- #: core/class-settings.php:636
4304
  msgctxt "admin settings"
4305
  msgid "Allow images?"
4306
  msgstr ""
4307
 
4308
- #: core/class-settings.php:638
4309
  msgctxt "admin settings"
4310
  msgid "Min Image File Size (KB)"
4311
  msgstr ""
4312
 
4313
- #: core/class-settings.php:639
4314
  msgctxt "admin settings"
4315
  msgid "Max Image File Size (KB)"
4316
  msgstr ""
4317
 
4318
- #: core/class-settings.php:641
4319
  msgctxt "admin settings"
4320
  msgid "Min image width (px)"
4321
  msgstr ""
4322
 
4323
- #: core/class-settings.php:642
4324
  msgctxt "admin settings"
4325
  msgid "Min image height (px)"
4326
  msgstr ""
4327
 
4328
- #: core/class-settings.php:644
4329
  msgctxt "admin settings"
4330
  msgid "Max image width (px)"
4331
  msgstr ""
4332
 
4333
- #: core/class-settings.php:645
4334
  msgctxt "admin settings"
4335
  msgid "Max image height (px)"
4336
  msgstr ""
4337
 
4338
- #: core/class-settings.php:647
4339
  msgctxt "admin settings"
4340
  msgid "Turn on thickbox/lightbox?"
4341
  msgstr ""
4342
 
4343
- #: core/class-settings.php:647
4344
  msgctxt "admin settings"
4345
  msgid ""
4346
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4347
  msgstr ""
4348
 
4349
- #: core/class-settings.php:649
4350
  msgctxt "admin settings"
4351
  msgid "Thumbnails"
4352
  msgstr ""
4353
 
4354
- #: core/class-settings.php:650
4355
  msgctxt "admin settings"
4356
  msgid "Thumbnail width (px)"
4357
  msgstr ""
4358
 
4359
- #: core/class-settings.php:651
4360
  msgctxt "admin settings"
4361
  msgid "Thumbnail height (px)"
4362
  msgstr ""
4363
 
4364
- #: core/class-settings.php:654
4365
  msgctxt "admin settings"
4366
  msgid "Crop thumbnails to exact dimensions?"
4367
  msgstr ""
4368
 
4369
- #: core/class-settings.php:657
4370
  msgctxt "admin settings"
4371
  msgid ""
4372
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4375,150 +4388,150 @@ msgid ""
4375
  "Depending on the uploaded images, thumbnails may have different heights."
4376
  msgstr ""
4377
 
4378
- #: core/class-settings.php:663
4379
  msgctxt "admin settings"
4380
  msgid "Number of free images"
4381
  msgstr ""
4382
 
4383
- #: core/class-settings.php:668
4384
  msgctxt "admin settings"
4385
  msgid ""
4386
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4387
  "a> instead of this setting, which is ignored for paid listings."
4388
  msgstr ""
4389
 
4390
- #: core/class-settings.php:671
4391
  msgctxt "admin settings"
4392
  msgid "Use default picture for listings with no picture?"
4393
  msgstr ""
4394
 
4395
- #: core/class-settings.php:672
4396
  msgctxt "admin settings"
4397
  msgid "Show Thumbnail on main listings page?"
4398
  msgstr ""
4399
 
4400
- #: core/class-settings.php:701
4401
  msgctxt "admin settings"
4402
  msgid "User"
4403
  msgstr ""
4404
 
4405
- #: core/class-settings.php:702
4406
  msgctxt "admin settings"
4407
  msgid "User registration date"
4408
  msgstr ""
4409
 
4410
- #: core/class-settings.php:728
4411
  msgctxt "admin settings"
4412
  msgid ""
4413
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4414
  "not activated."
4415
  msgstr ""
4416
 
4417
- #: core/class-settings.php:736
4418
  msgctxt "admin settings"
4419
  msgid ""
4420
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4421
  "be created."
4422
  msgstr ""
4423
 
4424
- #: core/class-settings.php:745
4425
  msgctxt "admin settings"
4426
  msgid ""
4427
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4428
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4429
  msgstr ""
4430
 
4431
- #: core/class-settings.php:1065
4432
  msgctxt "settings"
4433
  msgid "Deactivate License"
4434
  msgstr ""
4435
 
4436
- #: core/class-settings.php:1067
4437
  msgctxt "settings"
4438
  msgid "Deactivating license..."
4439
  msgstr ""
4440
 
4441
- #: core/class-settings.php:1070
4442
  msgctxt "settings"
4443
  msgid "Activate License"
4444
  msgstr ""
4445
 
4446
- #: core/class-settings.php:1072
4447
  msgctxt "settings"
4448
  msgid "Activating license..."
4449
  msgstr ""
4450
 
4451
- #: core/class-settings.php:1095
4452
  msgctxt "admin settings"
4453
  msgid "Valid placeholders: %s"
4454
  msgstr ""
4455
 
4456
- #: core/class-settings.php:1129
4457
  msgctxt "settings email"
4458
  msgid "Click to edit e-mail"
4459
  msgstr ""
4460
 
4461
- #: core/class-settings.php:1130
4462
  msgctxt "settings email"
4463
  msgid "Click to edit"
4464
  msgstr ""
4465
 
4466
- #: core/class-settings.php:1143
4467
  msgctxt "settings email"
4468
  msgid "E-Mail Subject"
4469
  msgstr ""
4470
 
4471
- #: core/class-settings.php:1154
4472
  msgctxt "settings email"
4473
  msgid "E-Mail Body"
4474
  msgstr ""
4475
 
4476
- #: core/class-settings.php:1165
4477
  msgctxt "settings email"
4478
  msgid "You can use the following placeholders:"
4479
  msgstr ""
4480
 
4481
- #: core/class-settings.php:1188
4482
  msgctxt "settings email"
4483
  msgid "Preview e-mail"
4484
  msgstr ""
4485
 
4486
- #: core/class-settings.php:1189
4487
  msgctxt "settings email"
4488
  msgid "Cancel"
4489
  msgstr ""
4490
 
4491
- #: core/class-settings.php:1190
4492
  msgctxt "settings email"
4493
  msgid "Save Changes"
4494
  msgstr ""
4495
 
4496
- #: core/class-settings.php:1209
4497
  msgctxt "settings email"
4498
  msgid "Site title"
4499
  msgstr ""
4500
 
4501
- #: core/class-settings.php:1212
4502
  msgctxt "settings email"
4503
  msgid "Site title (with link)"
4504
  msgstr ""
4505
 
4506
- #: core/class-settings.php:1215
4507
  msgctxt "settings email"
4508
  msgid "Site address (with link)"
4509
  msgstr ""
4510
 
4511
- #: core/class-settings.php:1218
4512
  msgctxt "settings email"
4513
  msgid "Directory URL (with link)"
4514
  msgstr ""
4515
 
4516
- #: core/class-settings.php:1221
4517
  msgctxt "settings email"
4518
  msgid "Current date"
4519
  msgstr ""
4520
 
4521
- #: core/class-settings.php:1224
4522
  msgctxt "settings email"
4523
  msgid "Current time"
4524
  msgstr ""
@@ -6299,12 +6312,17 @@ msgctxt "templates"
6299
  msgid "Upgrade listing to %s for %s."
6300
  msgstr ""
6301
 
6302
- #: templates/main-box.tpl.php:16
 
 
 
 
 
6303
  msgctxt "main box"
6304
  msgid "Find Listings"
6305
  msgstr ""
6306
 
6307
- #: templates/main-box.tpl.php:17
6308
  msgctxt "main box"
6309
  msgid "Advanced Search"
6310
  msgstr ""
2
  # This file is distributed under the same license as the Business Directory Plugin package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Business Directory Plugin 4.1.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-09-20 02:40:34+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
116
  msgid "Renew Listing"
117
  msgstr ""
118
 
119
+ #: admin/class-admin.php:102
120
+ msgid ""
121
+ "Preview is only available after you've saved the first draft. This is due\n"
122
+ "to how WordPress stores the data."
123
+ msgstr ""
124
+
125
+ #: admin/class-admin.php:135
126
  msgctxt "drip pointer"
127
  msgid ""
128
  "Find out how to create a compelling, thriving business directory from "
130
  "a FREE premium module just for signing up."
131
  msgstr ""
132
 
133
+ #: admin/class-admin.php:137
134
  msgctxt "drip pointer"
135
  msgid "Email Address:"
136
  msgstr ""
137
 
138
+ #: admin/class-admin.php:143
139
  msgctxt "drip pointer"
140
  msgid "Want to know the Secrets of Building an Awesome Business Directory?"
141
  msgstr ""
142
 
143
+ #: admin/class-admin.php:145
144
  msgctxt "drip pointer"
145
  msgid "Yes, please!"
146
  msgstr ""
147
 
148
+ #: admin/class-admin.php:147
149
  msgctxt "drip pointer"
150
  msgid "No, thanks"
151
  msgstr ""
152
 
153
+ #: admin/class-admin.php:164
154
  msgctxt "admin"
155
  msgid "Business Directory"
156
  msgstr ""
157
 
158
+ #: admin/class-admin.php:175
159
  msgctxt "admin"
160
  msgid "You're all set. Visit your new <a>Business Directory</a> page."
161
  msgstr ""
162
 
163
+ #: admin/class-admin.php:196
164
  msgctxt "drip pointer"
165
  msgid "Invalid e-mail address."
166
  msgstr ""
167
 
168
+ #: admin/class-admin.php:230
169
  msgctxt "admin menu"
170
  msgid "Business Directory Admin"
171
  msgstr ""
172
 
173
+ #: admin/class-admin.php:231
174
  msgctxt "admin menu"
175
  msgid "Dir. Admin"
176
  msgstr ""
177
 
178
+ #: admin/class-admin.php:231
179
  msgctxt "admin menu"
180
  msgid "Directory Admin"
181
  msgstr ""
182
 
183
+ #: admin/class-admin.php:237 admin/class-admin.php:238
184
  msgctxt "admin menu"
185
  msgid "Add New Listing"
186
  msgstr ""
187
 
188
+ #: admin/class-admin.php:243 admin/class-admin.php:244
189
  msgctxt "admin menu"
190
  msgid "Manage Options"
191
  msgstr ""
192
 
193
+ #: admin/class-admin.php:249 admin/class-admin.php:250
194
  msgctxt "admin menu"
195
  msgid "Manage Fees"
196
  msgstr ""
197
 
198
+ #: admin/class-admin.php:255 admin/class-admin.php:256
199
  msgctxt "admin menu"
200
  msgid "Manage Form Fields"
201
  msgstr ""
202
 
203
+ #: admin/class-admin.php:261 admin/class-admin.php:262
204
  msgctxt "admin menu"
205
  msgid "Listings"
206
  msgstr ""
207
 
208
+ #: admin/class-admin.php:276 admin/class-admin.php:277
209
  msgctxt "admin menu"
210
  msgid "CSV Import"
211
  msgstr ""
212
 
213
+ #: admin/class-admin.php:282 admin/class-admin.php:283
214
  msgctxt "admin menu"
215
  msgid "CSV Export"
216
  msgstr ""
217
 
218
+ #: admin/class-admin.php:288 admin/class-admin.php:289
219
  msgctxt "admin menu"
220
  msgid "Debug"
221
  msgstr ""
222
 
223
+ #: admin/class-admin.php:298
224
  msgctxt "admin menu"
225
  msgid "Main Menu"
226
  msgstr ""
227
 
228
+ #: admin/class-admin.php:309
229
  msgctxt "admin menu"
230
  msgid "Uninstall Business Directory Plugin"
231
  msgstr ""
232
 
233
+ #: admin/class-admin.php:310
234
  msgctxt "admin menu"
235
  msgid "Uninstall"
236
  msgstr ""
237
 
238
+ #: admin/class-admin.php:424
239
  #: admin/templates/listing-metabox-categories.tpl.php:69
240
  msgctxt "admin infometabox"
241
  msgid "never"
242
  msgstr ""
243
 
244
+ #: admin/class-admin.php:518
245
  msgctxt "admin"
246
  msgid "Dismiss this notice."
247
  msgstr ""
248
 
249
+ #: admin/class-admin.php:546
250
  msgctxt "admin"
251
  msgid "The listing has been published."
252
  msgid_plural "The listings have been published."
253
  msgstr[0] ""
254
  msgstr[1] ""
255
 
256
+ #: admin/class-admin.php:564
257
  msgctxt "admin"
258
  msgid "The listing status has been set as paid."
259
  msgid_plural "The listings status has been set as paid."
260
  msgstr[0] ""
261
  msgstr[1] ""
262
 
263
+ #: admin/class-admin.php:570
264
  msgctxt "admin"
265
  msgid ""
266
  "Only invoices containing non-recurring items were marked as paid. Please "
272
  msgstr[0] ""
273
  msgstr[1] ""
274
 
275
+ #: admin/class-admin.php:589
276
  msgctxt "admin"
277
  msgid "The listing has been modified."
278
  msgid_plural "The listings have been modified."
279
  msgstr[0] ""
280
  msgstr[1] ""
281
 
282
+ #: admin/class-admin.php:602
283
  msgctxt "admin"
284
  msgid "The listing has been upgraded."
285
  msgid_plural "The listings have been upgraded."
286
  msgstr[0] ""
287
  msgstr[1] ""
288
 
289
+ #: admin/class-admin.php:614
290
  msgctxt "admin"
291
  msgid "The listing has been downgraded."
292
  msgid_plural "The listings have been downgraded."
293
  msgstr[0] ""
294
  msgstr[1] ""
295
 
296
+ #: admin/class-admin.php:625
297
  msgctxt "admin payments"
298
  msgid ""
299
  "The payment status was not changed. Recurring payments can't be manually "
301
  "went through."
302
  msgstr ""
303
 
304
+ #: admin/class-admin.php:630
305
  msgctxt "admin"
306
  msgid "The transaction has been approved."
307
  msgstr ""
308
 
309
+ #: admin/class-admin.php:640
310
  msgctxt "admin"
311
  msgid "The transaction has been rejected."
312
  msgstr ""
313
 
314
+ #: admin/class-admin.php:646
315
  msgctxt "admin"
316
  msgid "The fee was successfully assigned."
317
  msgstr ""
318
 
319
+ #: admin/class-admin.php:655
320
  msgctxt "admin"
321
  msgid "Listing was renewed."
322
  msgid_plural "Listings were renewed."
323
  msgstr[0] ""
324
  msgstr[1] ""
325
 
326
+ #: admin/class-admin.php:662
327
  msgctxt "admin"
328
  msgid "Renewal email sent."
329
  msgstr ""
330
 
331
+ #: admin/class-admin.php:696
332
  msgctxt "admin category id"
333
  msgid "ID"
334
  msgstr ""
335
 
336
+ #: admin/class-admin.php:698 admin/class-admin.php:704
337
  msgctxt "admin"
338
  msgid "Listing Count"
339
  msgstr ""
340
 
341
+ #: admin/class-admin.php:813
342
  msgctxt "admin"
343
  msgid ""
344
  "<b>Business Directory Plugin</b> requires fields with the following "
345
  "associations in order to work correctly: <b>%s</b>."
346
  msgstr ""
347
 
348
+ #: admin/class-admin.php:815
349
  msgctxt "admin"
350
  msgid ""
351
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
352
  "association in order to work correctly."
353
  msgstr ""
354
 
355
+ #: admin/class-admin.php:819
356
  msgctxt "admin"
357
  msgid ""
358
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
359
  "or let Business Directory do this for you automatically."
360
  msgstr ""
361
 
362
+ #: admin/class-admin.php:823
363
  msgctxt "admin"
364
  msgid "Go to \"Manage Form Fields\""
365
  msgstr ""
366
 
367
+ #: admin/class-admin.php:826
368
  msgctxt "admin"
369
  msgid "Create these required fields for me"
370
  msgstr ""
371
 
372
+ #: admin/class-admin.php:835
373
  msgctxt "admin"
374
  msgid ""
375
  "<b>Business Directory Plugin</b> requires a page with the "
376
  "<tt>[businessdirectory]</tt> shortcode to function properly."
377
  msgstr ""
378
 
379
+ #: admin/class-admin.php:837
380
  msgctxt "admin"
381
  msgid ""
382
  "You can create this page by yourself or let Business Directory do this for "
383
  "you automatically."
384
  msgstr ""
385
 
386
+ #: admin/class-admin.php:841
387
  msgctxt "admin"
388
  msgid "Create required pages for me"
389
  msgstr ""
390
 
391
+ #: admin/class-admin.php:881
392
  msgctxt "admin compat"
393
  msgid "Installed: %s"
394
  msgstr ""
395
 
396
+ #: admin/class-admin.php:881
397
  msgctxt "admin compat"
398
  msgid "N/A"
399
  msgstr ""
400
 
401
+ #: admin/class-admin.php:884
402
  msgctxt "admin compat"
403
  msgid "Required: %s"
404
  msgstr ""
405
 
406
+ #: admin/class-admin.php:896
407
  msgctxt "admin compat"
408
  msgid ""
409
  "Business Directory has detected some incompatible premium module versions "
410
  "installed."
411
  msgstr ""
412
 
413
+ #: admin/class-admin.php:898
414
  msgctxt "admin compat"
415
  msgid ""
416
  "Please upgrade to the required versions indicated below to make sure "
417
  "everything functions properly."
418
  msgstr ""
419
 
420
+ #: admin/class-admin.php:918
421
  msgctxt "admin"
422
  msgid ""
423
  "We noticed you want your Business Directory users to register before posting "
1314
  "available to PHP. Check your error logs for details."
1315
  msgstr ""
1316
 
1317
+ #: admin/templates/csv-import-progress.tpl.php:13
1318
+ #: admin/templates/csv-import-progress.tpl.php:20
 
 
 
 
 
1319
  msgctxt "admin csv-import"
1320
  msgid "← Return to CSV Import"
1321
  msgstr ""
1322
 
1323
+ #: admin/templates/csv-import-progress.tpl.php:18
1324
  msgctxt "admin csv-import"
1325
  msgid "Import Canceled"
1326
  msgstr ""
1327
 
1328
+ #: admin/templates/csv-import-progress.tpl.php:19
1329
  msgctxt "admin csv-import"
1330
  msgid "The import has been canceled."
1331
  msgstr ""
1332
 
1333
+ #: admin/templates/csv-import-progress.tpl.php:26
1334
  msgid "Import Progress"
1335
  msgstr ""
1336
 
1337
+ #: admin/templates/csv-import-progress.tpl.php:29
1338
  msgctxt "admin csv-import"
1339
  msgid "Files"
1340
  msgstr ""
1341
 
1342
+ #: admin/templates/csv-import-progress.tpl.php:32
1343
  msgctxt "admin csv-import"
1344
  msgid "Rows in file"
1345
  msgstr ""
1346
 
1347
+ #: admin/templates/csv-import-progress.tpl.php:35
1348
  msgctxt "admin csv-import"
1349
  msgid "Progress"
1350
  msgstr ""
1351
 
1352
+ #: admin/templates/csv-import-progress.tpl.php:39
1353
  msgctxt "admin csv-import"
1354
  msgid "Import has not started. Click \"Start Import\" to begin."
1355
  msgstr ""
1356
 
1357
+ #: admin/templates/csv-import-progress.tpl.php:40
1358
  msgctxt "admin csv-import"
1359
  msgid "Importing CSV file..."
1360
  msgstr ""
1361
 
1362
+ #: admin/templates/csv-import-progress.tpl.php:46
1363
  msgctxt "admin csv-import"
1364
  msgid "Start Import"
1365
  msgstr ""
1366
 
1367
+ #: admin/templates/csv-import-progress.tpl.php:47
1368
  msgctxt "admin csv-import"
1369
  msgid "Cancel Import"
1370
  msgstr ""
1371
 
1372
+ #: admin/templates/csv-import-progress.tpl.php:54
1373
  msgctxt "admin csv-import"
1374
  msgid "Import finished"
1375
  msgstr ""
1376
 
1377
+ #: admin/templates/csv-import-progress.tpl.php:57
1378
  msgctxt "admin csv-import"
1379
  msgid "Import was completed successfully."
1380
  msgstr ""
1381
 
1382
+ #: admin/templates/csv-import-progress.tpl.php:61
1383
  msgctxt "admin csv-import"
1384
  msgid "Import was completed but some rows were rejected."
1385
  msgstr ""
1386
 
1387
+ #: admin/templates/csv-import-progress.tpl.php:64
1388
  msgctxt "admin csv-import"
1389
  msgid "Import Summary"
1390
  msgstr ""
1391
 
1392
+ #: admin/templates/csv-import-progress.tpl.php:66
1393
  msgctxt "admin csv-import"
1394
  msgid "Rows in file:"
1395
  msgstr ""
1396
 
1397
+ #: admin/templates/csv-import-progress.tpl.php:69
1398
  msgctxt "admin csv-import"
1399
  msgid "Imported rows:"
1400
  msgstr ""
1401
 
1402
+ #: admin/templates/csv-import-progress.tpl.php:72
1403
  msgctxt "admin csv-import"
1404
  msgid "Rejected rows:"
1405
  msgstr ""
1406
 
1407
+ #: admin/templates/csv-import-progress.tpl.php:77
1408
  msgctxt "admin csv-import"
1409
  msgid "Import Warnings"
1410
  msgstr ""
1411
 
1412
+ #: admin/templates/csv-import-progress.tpl.php:80
1413
  msgctxt "admin csv-import"
1414
  msgid "Line #"
1415
  msgstr ""
1416
 
1417
+ #: admin/templates/csv-import-progress.tpl.php:81
1418
  msgctxt "admin csv-import"
1419
  msgid "Line"
1420
  msgstr ""
1421
 
1422
+ #: admin/templates/csv-import-progress.tpl.php:82
1423
  msgctxt "admin csv-import"
1424
  msgid "Warning"
1425
  msgstr ""
2088
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2089
  msgstr ""
2090
 
2091
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.1.2) #-#-#-#-#
2092
  #. Plugin Name of the plugin/theme
2093
  #: admin/templates/header.tpl.php:4
2094
  msgid "Business Directory Plugin"
2824
  msgid "Allow Tracking"
2825
  msgstr ""
2826
 
2827
+ #: business-directory-plugin.php:666
2828
  msgctxt "admin plugins"
2829
  msgid "Settings"
2830
  msgstr ""
2831
 
2832
+ #: business-directory-plugin.php:774 business-directory-plugin.php:781
2833
  msgctxt "rss feed"
2834
  msgid "%s Feed"
2835
  msgstr ""
2836
 
2837
+ #: business-directory-plugin.php:1119
2838
  msgctxt "title"
2839
  msgid "Submit A Listing"
2840
  msgstr ""
2841
 
2842
+ #: business-directory-plugin.php:1129
2843
  msgctxt "title"
2844
  msgid "Find a Listing"
2845
  msgstr ""
2846
 
2847
+ #: business-directory-plugin.php:1139
2848
  msgctxt "title"
2849
  msgid "View All Listings"
2850
  msgstr ""
2851
 
2852
+ #: business-directory-plugin.php:1159
2853
  msgctxt "title"
2854
  msgid "Listings tagged: %s"
2855
  msgstr ""
2856
 
2857
+ #: core/api.php:401
2858
  msgid "Free"
2859
  msgstr ""
2860
 
2861
+ #: core/class-csv-import.php:394
2862
+ msgctxt "admin csv-import"
2863
+ msgid ""
2864
+ "Could not create listing category \"<category-name>\". The operation failed "
2865
+ "with the following error: <error-message>."
2866
+ msgstr ""
2867
+
2868
+ #: core/class-csv-import.php:400
2869
  msgctxt "admin csv-import"
2870
  msgid "Could not create listing category \"%s\""
2871
  msgstr ""
2872
 
2873
+ #: core/class-csv-import.php:544
2874
  msgctxt "admin csv-import"
2875
  msgid "Username \"%s\" does not exist"
2876
  msgstr ""
2877
 
2878
+ #: core/class-csv-import.php:576
2879
  msgctxt "admin csv-import"
2880
  msgid "Missing required field: %s"
2881
  msgstr ""
2882
 
2883
+ #: core/class-csv-import.php:596
2884
  msgctxt "admin csv-import"
2885
  msgid "Listing category \"%s\" does not exist"
2886
  msgstr ""
3361
  msgid "Enable AJAX compatibility mode?"
3362
  msgstr ""
3363
 
3364
+ #: core/class-settings.php:181 core/class-settings.php:665
3365
  msgctxt "admin settings"
3366
  msgid "Listings"
3367
  msgstr ""
3368
 
3369
+ #: core/class-settings.php:182 core/class-settings.php:335
3370
+ #: core/class-settings.php:622
3371
  msgctxt "admin settings"
3372
  msgid "General Settings"
3373
  msgstr ""
3410
 
3411
  #: core/class-settings.php:200
3412
  msgctxt "admin settings"
3413
+ msgid "Open detailed view of listing in new tab?"
3414
+ msgstr ""
3415
+
3416
+ #: core/class-settings.php:205
3417
+ msgctxt "admin settings"
3418
  msgid "Require login for using the contact form?"
3419
  msgstr ""
3420
 
3421
+ #: core/class-settings.php:211
3422
  msgctxt "admin settings"
3423
  msgid "Maximum number of contact form submits per day"
3424
  msgstr ""
3425
 
3426
+ #: core/class-settings.php:214
3427
  msgctxt "admin settings"
3428
  msgid ""
3429
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
3430
  "per day."
3431
  msgstr ""
3432
 
3433
+ #: core/class-settings.php:220
3434
  msgctxt "admin settings"
3435
  msgid "Include comment form on listing pages?"
3436
  msgstr ""
3437
 
3438
+ #: core/class-settings.php:223
3439
  msgctxt "admin settings"
3440
  msgid ""
3441
  "Allow visitors to discuss listings using the standard WordPress comment "
3442
  "form. Comments are public."
3443
  msgstr ""
3444
 
3445
+ #: core/class-settings.php:224
3446
  msgctxt "admin settings"
3447
  msgid "Show listings under categories on main page?"
3448
  msgstr ""
3449
 
3450
+ #: core/class-settings.php:225
3451
  msgctxt "admin settings"
3452
  msgid "Status of listings upon uninstalling plugin"
3453
  msgstr ""
3454
 
3455
+ #: core/class-settings.php:226 core/class-settings.php:228
3456
  msgctxt "post status"
3457
  msgid "Draft"
3458
  msgstr ""
3459
 
3460
+ #: core/class-settings.php:226 core/class-settings.php:228
3461
  msgctxt "post status"
3462
  msgid "Trash"
3463
  msgstr ""
3464
 
3465
+ #: core/class-settings.php:227
3466
  msgctxt "admin settings"
3467
  msgid "Status of deleted listings"
3468
  msgstr ""
3469
 
3470
+ #: core/class-settings.php:229
3471
  msgctxt "admin settings"
3472
  msgid "Submit Listing instructions message"
3473
  msgstr ""
3474
 
3475
+ #: core/class-settings.php:229
3476
  msgctxt "admin settings"
3477
  msgid ""
3478
  "This text is displayed at the first page of the Submit Listing process for "
3480
  "form or anything you want to tell users before they get started."
3481
  msgstr ""
3482
 
3483
+ #: core/class-settings.php:231
3484
  msgctxt "admin settings"
3485
  msgid "Listing Renewal"
3486
  msgstr ""
3487
 
3488
+ #: core/class-settings.php:232
3489
  msgctxt "admin settings"
3490
  msgid "Turn on listing renewal option?"
3491
  msgstr ""
3492
 
3493
+ #: core/class-settings.php:235
3494
  msgctxt "admin settings"
3495
  msgid "Allow recurring renewal payments?"
3496
  msgstr ""
3497
 
3498
+ #: core/class-settings.php:238
3499
  msgctxt "admin settings"
3500
  msgid ""
3501
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3502
  "charged at the time the listing expires without user intervention."
3503
  msgstr ""
3504
 
3505
+ #: core/class-settings.php:242
3506
  msgctxt "admin settings"
3507
  msgid "Use recurring payments as the default payment method?"
3508
  msgstr ""
3509
 
3510
+ #: core/class-settings.php:245
3511
  msgctxt "admin settings"
3512
  msgid ""
3513
  "Enable automatic renewal without having users opt in during the submit "
3514
  "process."
3515
  msgstr ""
3516
 
3517
+ #: core/class-settings.php:250
3518
  msgctxt "admin settings"
3519
  msgid "Listing renewal e-mail threshold (in days)"
3520
  msgstr ""
3521
 
3522
+ #: core/class-settings.php:253
3523
  msgctxt "admin settings"
3524
  msgid ""
3525
  "Configure how many days before listing expiration is the renewal e-mail sent."
3526
  msgstr ""
3527
 
3528
+ #: core/class-settings.php:257
3529
  msgctxt "admin settings"
3530
  msgid ""
3531
  "Send expiration notices including a cancel links to auto-renewed listings?"
3532
  msgstr ""
3533
 
3534
+ #: core/class-settings.php:264
3535
  msgctxt "admin settings"
3536
  msgid "Remind listing owners of expired listings (past due)?"
3537
  msgstr ""
3538
 
3539
+ #: core/class-settings.php:269
3540
  msgctxt "admin settings"
3541
  msgid "Listing renewal reminder e-mail threshold (in days)"
3542
  msgstr ""
3543
 
3544
+ #: core/class-settings.php:272
3545
  msgctxt "admin settings"
3546
  msgid ""
3547
  "Configure how many days after the expiration of a listing an e-mail reminder "
3548
  "should be sent to the owner."
3549
  msgstr ""
3550
 
3551
+ #: core/class-settings.php:275
3552
  msgctxt "admin settings"
3553
  msgid "Post/Category Settings"
3554
  msgstr ""
3555
 
3556
+ #: core/class-settings.php:276
3557
  msgctxt "admin settings"
3558
  msgid "Default new post status"
3559
  msgstr ""
3560
 
3561
+ #: core/class-settings.php:277 core/class-settings.php:280
3562
  msgctxt "post status"
3563
  msgid "Published"
3564
  msgstr ""
3565
 
3566
+ #: core/class-settings.php:277 core/class-settings.php:280
3567
  msgctxt "post status"
3568
  msgid "Pending"
3569
  msgstr ""
3570
 
3571
+ #: core/class-settings.php:279
3572
  msgctxt "admin settings"
3573
  msgid "Edit post status"
3574
  msgstr ""
3575
 
3576
+ #: core/class-settings.php:281
3577
  msgctxt "admin settings"
3578
  msgid "Order categories list by"
3579
  msgstr ""
3580
 
3581
+ #: core/class-settings.php:283
3582
  msgctxt "admin settings"
3583
  msgid "Name"
3584
  msgstr ""
3585
 
3586
+ #: core/class-settings.php:284
3587
  msgctxt "admin settings"
3588
  msgid "Slug"
3589
  msgstr ""
3590
 
3591
+ #: core/class-settings.php:285
3592
  msgctxt "admin settings"
3593
  msgid "Listing Count"
3594
  msgstr ""
3595
 
3596
+ #: core/class-settings.php:287
3597
  msgctxt "admin settings"
3598
  msgid "Sort order for categories"
3599
  msgstr ""
3600
 
3601
+ #: core/class-settings.php:288 core/class-settings.php:306
3602
  msgctxt "admin settings"
3603
  msgid "Ascending"
3604
  msgstr ""
3605
 
3606
+ #: core/class-settings.php:288 core/class-settings.php:306
3607
  msgctxt "admin settings"
3608
  msgid "Descending"
3609
  msgstr ""
3610
 
3611
+ #: core/class-settings.php:289
3612
  msgctxt "admin settings"
3613
  msgid "Show category post count?"
3614
  msgstr ""
3615
 
3616
+ #: core/class-settings.php:290
3617
  msgctxt "admin settings"
3618
  msgid "Hide empty categories?"
3619
  msgstr ""
3620
 
3621
+ #: core/class-settings.php:291
3622
  msgctxt "admin settings"
3623
  msgid "Show only parent categories in category list?"
3624
  msgstr ""
3625
 
3626
+ #: core/class-settings.php:293
3627
  msgctxt "admin settings"
3628
  msgid "Listings Sorting"
3629
  msgstr ""
3630
 
3631
+ #: core/class-settings.php:294
3632
  msgctxt "admin settings"
3633
  msgid "Order directory listings by"
3634
  msgstr ""
3635
 
3636
+ #: core/class-settings.php:296
3637
  msgctxt "admin settings"
3638
  msgid "Title"
3639
  msgstr ""
3640
 
3641
+ #: core/class-settings.php:297
3642
  msgctxt "admin settings"
3643
  msgid "Author"
3644
  msgstr ""
3645
 
3646
+ #: core/class-settings.php:298 core/class-settings.php:708
3647
  msgctxt "admin settings"
3648
  msgid "Date posted"
3649
  msgstr ""
3650
 
3651
+ #: core/class-settings.php:299 core/class-settings.php:709
3652
  msgctxt "admin settings"
3653
  msgid "Date last modified"
3654
  msgstr ""
3655
 
3656
+ #: core/class-settings.php:300
3657
  msgctxt "admin settings"
3658
  msgid "Random"
3659
  msgstr ""
3660
 
3661
+ #: core/class-settings.php:301
3662
  msgctxt "admin settings"
3663
  msgid "Paid first then free. Inside each group by date."
3664
  msgstr ""
3665
 
3666
+ #: core/class-settings.php:302
3667
  msgctxt "admin settings"
3668
  msgid "Paid first then free. Inside each group by title."
3669
  msgstr ""
3670
 
3671
+ #: core/class-settings.php:304
3672
  msgctxt "admin settings"
3673
  msgid "Sort directory listings by"
3674
  msgstr ""
3675
 
3676
+ #: core/class-settings.php:305
3677
  msgctxt "admin settings"
3678
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3679
  msgstr ""
3680
 
3681
+ #: core/class-settings.php:310
3682
  msgctxt "admin settings"
3683
  msgid "Enable sort bar?"
3684
  msgstr ""
3685
 
3686
+ #: core/class-settings.php:315
3687
  msgctxt "admin settings"
3688
  msgid "Sortbar Fields"
3689
  msgstr ""
3690
 
3691
+ #: core/class-settings.php:324
3692
  msgctxt "admin settings"
3693
  msgid "Featured (Sticky) listing settings"
3694
  msgstr ""
3695
 
3696
+ #: core/class-settings.php:325
3697
  msgctxt "admin settings"
3698
  msgid "Offer sticky listings?"
3699
  msgstr ""
3700
 
3701
+ #: core/class-settings.php:326
3702
  msgctxt "admin settings"
3703
  msgid "Offer upgrades during submit process?"
3704
  msgstr ""
3705
 
3706
+ #: core/class-settings.php:327
3707
  msgctxt "admin settings"
3708
  msgid "Sticky listing price"
3709
  msgstr ""
3710
 
3711
+ #: core/class-settings.php:328
3712
  msgctxt "admin settings"
3713
  msgid "Sticky listing page description text"
3714
  msgstr ""
3715
 
3716
+ #: core/class-settings.php:329
3717
  msgctxt "admin settings"
3718
  msgid ""
3719
  "You can upgrade your listing to featured status. Featured listings will "
3720
  "always appear on top of regular listings."
3721
  msgstr ""
3722
 
3723
+ #: core/class-settings.php:334
3724
  msgctxt "admin settings"
3725
  msgid "E-Mail"
3726
  msgstr ""
3727
 
3728
+ #: core/class-settings.php:338
3729
  msgctxt "admin settings"
3730
  msgid "Display email address fields publicly?"
3731
  msgstr ""
3732
 
3733
+ #: core/class-settings.php:341
3734
  msgctxt "admin settings"
3735
  msgid ""
3736
  "Shows the email address of the listing owner to all web users. NOT "
3738
  "harvest it for future use."
3739
  msgstr ""
3740
 
3741
+ #: core/class-settings.php:344
3742
  msgctxt "admin settings"
3743
  msgid "How to determine the listing's email address?"
3744
  msgstr ""
3745
 
3746
+ #: core/class-settings.php:347
3747
  msgctxt "admin settings"
3748
  msgid ""
3749
  "This affects emails sent to listing owners via contact forms or when their "
3750
  "listings expire."
3751
  msgstr ""
3752
 
3753
+ #: core/class-settings.php:349
3754
  msgctxt "admin settings"
3755
  msgid "Try listing's email field first, then author's email."
3756
  msgstr ""
3757
 
3758
+ #: core/class-settings.php:350
3759
  msgctxt "admin settings"
3760
  msgid "Try author's email first and then listing's email field."
3761
  msgstr ""
3762
 
3763
+ #: core/class-settings.php:354
3764
  msgctxt "admin settings"
3765
  msgid "E-Mail Notifications"
3766
  msgstr ""
3767
 
3768
+ #: core/class-settings.php:357
3769
  msgctxt "admin settings"
3770
  msgid "Notify admin via e-mail when..."
3771
  msgstr ""
3772
 
3773
+ #: core/class-settings.php:361
3774
  msgctxt "admin settings"
3775
  msgid "A new listing is submitted."
3776
  msgstr ""
3777
 
3778
+ #: core/class-settings.php:362
3779
  msgctxt "admin settings"
3780
  msgid "A listing is edited."
3781
  msgstr ""
3782
 
3783
+ #: core/class-settings.php:363
3784
  msgctxt "admin settings"
3785
  msgid "A listing expires."
3786
  msgstr ""
3787
 
3788
+ #: core/class-settings.php:364
3789
  msgctxt "admin settings"
3790
  msgid "A contact message is sent to a listing's owner."
3791
  msgstr ""
3792
 
3793
+ #: core/class-settings.php:370
3794
  msgctxt "admin settings"
3795
  msgid "CC this e-mail address too"
3796
  msgstr ""
3797
 
3798
+ #: core/class-settings.php:376
3799
  msgctxt "admin settings"
3800
  msgid "Notify users via e-mail when..."
3801
  msgstr ""
3802
 
3803
+ #: core/class-settings.php:379
3804
  msgctxt "admin settings"
3805
  msgid "You can modify the text template used for most of these e-mails below."
3806
  msgstr ""
3807
 
3808
+ #: core/class-settings.php:380
3809
  msgctxt "admin settings"
3810
  msgid "Their listing is submitted."
3811
  msgstr ""
3812
 
3813
+ #: core/class-settings.php:381
3814
  msgctxt "admin settings"
3815
  msgid "Their listing is approved/published."
3816
  msgstr ""
3817
 
3818
+ #: core/class-settings.php:390
3819
  msgctxt "contact email"
3820
  msgid "You have received a reply from your listing at %s."
3821
  msgstr ""
3822
 
3823
+ #: core/class-settings.php:391
3824
  msgctxt "contact email"
3825
  msgid "Name: %s"
3826
  msgstr ""
3827
 
3828
+ #: core/class-settings.php:392
3829
  msgctxt "contact email"
3830
  msgid "E-Mail: %s"
3831
  msgstr ""
3832
 
3833
+ #: core/class-settings.php:393
3834
  msgctxt "contact email"
3835
  msgid "Message:"
3836
  msgstr ""
3837
 
3838
+ #: core/class-settings.php:395
3839
  msgctxt "contact email"
3840
  msgid "Time: %s"
3841
  msgstr ""
3842
 
3843
+ #: core/class-settings.php:397
3844
  msgctxt "admin settings"
3845
  msgid "E-Mail Templates"
3846
  msgstr ""
3847
 
3848
+ #: core/class-settings.php:400
3849
  msgctxt "admin settings"
3850
  msgid "Email confirmation message"
3851
  msgstr ""
3852
 
3853
+ #: core/class-settings.php:404
3854
  msgctxt "admin settings"
3855
  msgid "Sent after a listing has been submitted."
3856
  msgstr ""
3857
 
3858
+ #: core/class-settings.php:405 core/class-settings.php:413
3859
+ #: core/class-settings.php:454
3860
  msgctxt "admin settings"
3861
  msgid "Listing's title"
3862
  msgstr ""
3863
 
3864
+ #: core/class-settings.php:408
3865
  msgctxt "admin settings"
3866
  msgid "Listing published message"
3867
  msgstr ""
3868
 
3869
+ #: core/class-settings.php:411
3870
  msgctxt "admin settings"
3871
  msgid ""
3872
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
3873
  "viewed by the public."
3874
  msgstr ""
3875
 
3876
+ #: core/class-settings.php:412
3877
  msgctxt "admin settings"
3878
  msgid "Sent when the listing has been published or approved by an admin."
3879
  msgstr ""
3880
 
3881
+ #: core/class-settings.php:414
3882
  msgctxt "admin settings"
3883
  msgid "Listing's URL"
3884
  msgstr ""
3885
 
3886
+ #: core/class-settings.php:418
3887
  msgctxt "admin settings"
3888
  msgid "Listing Contact Message"
3889
  msgstr ""
3890
 
3891
+ #: core/class-settings.php:422
3892
  msgctxt "admin settings"
3893
  msgid ""
3894
  "Sent to listing owners when someone uses the contact form on their listing "
3895
  "pages."
3896
  msgstr ""
3897
 
3898
+ #: core/class-settings.php:432
3899
  msgctxt "admin settings"
3900
  msgid "Payment related"
3901
  msgstr ""
3902
 
3903
+ #: core/class-settings.php:449
3904
  msgctxt "admin settings"
3905
  msgid "Payment abandoned reminder message"
3906
  msgstr ""
3907
 
3908
+ #: core/class-settings.php:453
3909
  msgctxt "admin settings"
3910
  msgid "Sent some time after a pending payment is abandoned by users."
3911
  msgstr ""
3912
 
3913
+ #: core/class-settings.php:455
3914
  msgctxt "admin settings"
3915
  msgid "Checkout URL link"
3916
  msgstr ""
3917
 
3918
+ #: core/class-settings.php:461
3919
  msgctxt "admin settings"
3920
  msgid "Renewal Reminders"
3921
  msgstr ""
3922
 
3923
+ #: core/class-settings.php:464
3924
  msgctxt "admin settings"
3925
  msgid ""
3926
  "This section refers only to the text of the renewal/expiration notices. You "
3927
  "can also <a>configure when the e-mails are sent</a>."
3928
  msgstr ""
3929
 
3930
+ #: core/class-settings.php:468
3931
  msgctxt "admin settings"
3932
  msgid "Pending expiration e-mail message"
3933
  msgstr ""
3934
 
3935
+ #: core/class-settings.php:472
3936
  msgctxt "settings"
3937
  msgid ""
3938
  "Sent some time before the listing expires. Applies to non-recurring renewals "
3939
  "only."
3940
  msgstr ""
3941
 
3942
+ #: core/class-settings.php:473 core/class-settings.php:486
3943
+ #: core/class-settings.php:499 core/class-settings.php:512
3944
+ #: core/class-settings.php:525
3945
  msgctxt "settings"
3946
  msgid "Listing's name (with link)"
3947
  msgstr ""
3948
 
3949
+ #: core/class-settings.php:474 core/class-settings.php:487
3950
+ #: core/class-settings.php:500 core/class-settings.php:513
3951
+ #: core/class-settings.php:526
3952
  msgctxt "settings"
3953
  msgid "Author's name"
3954
  msgstr ""
3955
 
3956
+ #: core/class-settings.php:475 core/class-settings.php:488
3957
+ #: core/class-settings.php:527
3958
  msgctxt "settings"
3959
  msgid "Expiration date"
3960
  msgstr ""
3961
 
3962
+ #: core/class-settings.php:476
3963
  msgctxt "settings"
3964
  msgid "Category that is going to expire"
3965
  msgstr ""
3966
 
3967
+ #: core/class-settings.php:477 core/class-settings.php:490
3968
+ #: core/class-settings.php:529
3969
  msgctxt "settings"
3970
  msgid "Link to renewal page"
3971
  msgstr ""
3972
 
3973
+ #: core/class-settings.php:478 core/class-settings.php:491
3974
+ #: core/class-settings.php:503 core/class-settings.php:516
3975
+ #: core/class-settings.php:530
3976
  msgctxt "settings"
3977
  msgid "Link to your site"
3978
  msgstr ""
3979
 
3980
+ #: core/class-settings.php:481
3981
  msgctxt "admin settings"
3982
  msgid "Listing Renewal e-mail message"
3983
  msgstr ""
3984
 
3985
+ #: core/class-settings.php:485
3986
  msgctxt "settings"
3987
  msgid ""
3988
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
3989
  "only."
3990
  msgstr ""
3991
 
3992
+ #: core/class-settings.php:489 core/class-settings.php:528
3993
  msgctxt "settings"
3994
  msgid "Category that expired"
3995
  msgstr ""
3996
 
3997
+ #: core/class-settings.php:494
3998
  msgctxt "admin settings"
3999
  msgid "Listing auto-renewal reminder (recurring payments)"
4000
  msgstr ""
4001
 
4002
+ #: core/class-settings.php:498
4003
  msgctxt "settings"
4004
  msgid ""
4005
  "Sent some time before the listing is auto-renewed. Applies to recurring "
4006
  "renewals only."
4007
  msgstr ""
4008
 
4009
+ #: core/class-settings.php:501 core/class-settings.php:515
4010
  msgctxt "settings"
4011
  msgid "Renewal date"
4012
  msgstr ""
4013
 
4014
+ #: core/class-settings.php:502
4015
  msgctxt "settings"
4016
  msgid "Category that is going to be renewed"
4017
  msgstr ""
4018
 
4019
+ #: core/class-settings.php:504
4020
  msgctxt "settings"
4021
  msgid "Link to manage subscriptions"
4022
  msgstr ""
4023
 
4024
+ #: core/class-settings.php:507
4025
  msgctxt "admin settings"
4026
  msgid "Listing Renewal e-mail message (recurring payments)"
4027
  msgstr ""
4028
 
4029
+ #: core/class-settings.php:511
4030
  msgctxt "settings"
4031
  msgid ""
4032
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4033
  msgstr ""
4034
 
4035
+ #: core/class-settings.php:514
4036
  msgctxt "settings"
4037
  msgid "Renewed category"
4038
  msgstr ""
4039
 
4040
+ #: core/class-settings.php:520
4041
  msgctxt "admin settings"
4042
  msgid "Renewal reminder e-mail message"
4043
  msgstr ""
4044
 
4045
+ #: core/class-settings.php:524
4046
  msgctxt "settings"
4047
  msgid ""
4048
  "Sent some time after listing expiration and when no renewal has occurred. "
4049
  "Applies to both recurring and non-recurring renewals."
4050
  msgstr ""
4051
 
4052
+ #: core/class-settings.php:534
4053
  msgctxt "admin settings"
4054
  msgid "Payment"
4055
  msgstr ""
4056
 
4057
+ #: core/class-settings.php:535
4058
  msgctxt "admin settings"
4059
  msgid "Payment Settings"
4060
  msgstr ""
4061
 
4062
+ #: core/class-settings.php:538
4063
  msgctxt "admin settings"
4064
  msgid "Turn On payments?"
4065
  msgstr ""
4066
 
4067
+ #: core/class-settings.php:540
4068
  msgctxt "admin settings"
4069
  msgid "Put payment gateways in test mode?"
4070
  msgstr ""
4071
 
4072
+ #: core/class-settings.php:545
4073
  msgctxt "admin settings"
4074
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
4075
  msgstr ""
4076
 
4077
+ #: core/class-settings.php:548
4078
  msgctxt "admin settings"
4079
  msgid ""
4080
  "Recommended for added security. For this to work you need to enable HTTPS on "
4081
  "your server and <a>obtain an SSL certificate</a>."
4082
  msgstr ""
4083
 
4084
+ #: core/class-settings.php:552
4085
  msgctxt "admin settings"
4086
  msgid "Currency Code"
4087
  msgstr ""
4088
 
4089
+ #: core/class-settings.php:554
4090
  msgctxt "admin settings"
4091
  msgid "Australian Dollar (AUD)"
4092
  msgstr ""
4093
 
4094
+ #: core/class-settings.php:555
4095
  msgctxt "admin settings"
4096
  msgid "Brazilian Real (BRL)"
4097
  msgstr ""
4098
 
4099
+ #: core/class-settings.php:556
4100
  msgctxt "admin settings"
4101
  msgid "Canadian Dollar (CAD)"
4102
  msgstr ""
4103
 
4104
+ #: core/class-settings.php:557
4105
  msgctxt "admin settings"
4106
  msgid "Czech Koruna (CZK)"
4107
  msgstr ""
4108
 
4109
+ #: core/class-settings.php:558
4110
  msgctxt "admin settings"
4111
  msgid "Danish Krone (DKK)"
4112
  msgstr ""
4113
 
4114
+ #: core/class-settings.php:559
4115
  msgctxt "admin settings"
4116
  msgid "Euro (EUR)"
4117
  msgstr ""
4118
 
4119
+ #: core/class-settings.php:560
4120
  msgctxt "admin settings"
4121
  msgid "Hong Kong Dollar (HKD)"
4122
  msgstr ""
4123
 
4124
+ #: core/class-settings.php:561
4125
  msgctxt "admin settings"
4126
  msgid "Hungarian Forint (HUF)"
4127
  msgstr ""
4128
 
4129
+ #: core/class-settings.php:562
4130
  msgctxt "admin settings"
4131
  msgid "Israeli New Shequel (ILS)"
4132
  msgstr ""
4133
 
4134
+ #: core/class-settings.php:563
4135
  msgctxt "admin settings"
4136
  msgid "Japanese Yen (JPY)"
4137
  msgstr ""
4138
 
4139
+ #: core/class-settings.php:564
4140
  msgctxt "admin settings"
4141
  msgid "Malasian Ringgit (MYR)"
4142
  msgstr ""
4143
 
4144
+ #: core/class-settings.php:565
4145
  msgctxt "admin settings"
4146
  msgid "Mexican Peso (MXN)"
4147
  msgstr ""
4148
 
4149
+ #: core/class-settings.php:566
4150
  msgctxt "admin settings"
4151
  msgid "Norwegian Krone (NOK)"
4152
  msgstr ""
4153
 
4154
+ #: core/class-settings.php:567
4155
  msgctxt "admin settings"
4156
  msgid "New Zealand Dollar (NZD)"
4157
  msgstr ""
4158
 
4159
+ #: core/class-settings.php:568
4160
  msgctxt "admin settings"
4161
  msgid "Philippine Peso (PHP)"
4162
  msgstr ""
4163
 
4164
+ #: core/class-settings.php:569
4165
  msgctxt "admin settings"
4166
  msgid "Polish Zloty (PLN)"
4167
  msgstr ""
4168
 
4169
+ #: core/class-settings.php:570
4170
  msgctxt "admin settings"
4171
  msgid "Pound Sterling (GBP)"
4172
  msgstr ""
4173
 
4174
+ #: core/class-settings.php:571
4175
  msgctxt "admin settings"
4176
  msgid "Singapore Dollar (SGD)"
4177
  msgstr ""
4178
 
4179
+ #: core/class-settings.php:572
4180
  msgctxt "admin settings"
4181
  msgid "Swedish Krona (SEK)"
4182
  msgstr ""
4183
 
4184
+ #: core/class-settings.php:573
4185
  msgctxt "admin settings"
4186
  msgid "Swiss Franc (CHF)"
4187
  msgstr ""
4188
 
4189
+ #: core/class-settings.php:574
4190
  msgctxt "admin settings"
4191
  msgid "Taiwan Dollar (TWD)"
4192
  msgstr ""
4193
 
4194
+ #: core/class-settings.php:575
4195
  msgctxt "admin settings"
4196
  msgid "Thai Baht (THB)"
4197
  msgstr ""
4198
 
4199
+ #: core/class-settings.php:576
4200
  msgctxt "admin settings"
4201
  msgid "Turkish Lira (TRY)"
4202
  msgstr ""
4203
 
4204
+ #: core/class-settings.php:577
4205
  msgctxt "admin settings"
4206
  msgid "U.S. Dollar (USD)"
4207
  msgstr ""
4208
 
4209
+ #: core/class-settings.php:581
4210
  msgctxt "admin settings"
4211
  msgid "Currency Symbol"
4212
  msgstr ""
4213
 
4214
+ #: core/class-settings.php:586
4215
  msgctxt "admin settings"
4216
  msgid "Currency symbol display"
4217
  msgstr ""
4218
 
4219
+ #: core/class-settings.php:590
4220
  msgctxt "admin settings"
4221
  msgid "Show currency symbol on the left"
4222
  msgstr ""
4223
 
4224
+ #: core/class-settings.php:591
4225
  msgctxt "admin settings"
4226
  msgid "Show currency symbol on the right"
4227
  msgstr ""
4228
 
4229
+ #: core/class-settings.php:592
4230
  msgctxt "admin settings"
4231
  msgid "Do not show currency symbol"
4232
  msgstr ""
4233
 
4234
+ #: core/class-settings.php:594
4235
  msgctxt "admin settings"
4236
  msgid "Thank you for payment message"
4237
  msgstr ""
4238
 
4239
+ #: core/class-settings.php:595
4240
  msgctxt "admin settings"
4241
  msgid ""
4242
  "Thank you for your payment. Your payment is being verified and your listing "
4243
  "reviewed. The verification and review process could take up to 48 hours."
4244
  msgstr ""
4245
 
4246
+ #: core/class-settings.php:600
4247
  msgctxt "admin settings"
4248
  msgid "Ask users to come back for abandoned payments?"
4249
  msgstr ""
4250
 
4251
+ #: core/class-settings.php:603
4252
  msgctxt "admin settings"
4253
  msgid ""
4254
  "An abandoned payment is when a user attempts to place a listing and gets to "
4257
  "the transaction. BD can remind them to come back and continue."
4258
  msgstr ""
4259
 
4260
+ #: core/class-settings.php:609
4261
  msgctxt "admin settings"
4262
  msgid "Listing abandonment threshold (hours)"
4263
  msgstr ""
4264
 
4265
+ #: core/class-settings.php:614
4266
  msgctxt "admin settings"
4267
  msgid ""
4268
  "Listings with pending payments are marked as abandoned after this time. You "
4269
  "can also <a>customize the e-mail</a> users receive."
4270
  msgstr ""
4271
 
4272
+ #: core/class-settings.php:619
4273
  msgctxt "admin settings"
4274
  msgid "Themes"
4275
  msgstr ""
4276
 
4277
+ #: core/class-settings.php:621
4278
  msgctxt "admin settings"
4279
  msgid "You can manage your themes on <a>Directory Themes</a>."
4280
  msgstr ""
4281
 
4282
+ #: core/class-settings.php:626
4283
  msgctxt "admin settings"
4284
  msgid "Theme button style"
4285
  msgstr ""
4286
 
4287
+ #: core/class-settings.php:630
4288
  msgctxt "admin settings"
4289
  msgid "Use the BD theme style for BD buttons"
4290
  msgstr ""
4291
 
4292
+ #: core/class-settings.php:631
4293
  msgctxt "admin settings"
4294
  msgid "Use the WP theme style for BD buttons"
4295
  msgstr ""
4296
 
4297
+ #: core/class-settings.php:638
4298
  msgctxt "admin settings"
4299
  msgid "Image"
4300
  msgstr ""
4301
 
4302
+ #: core/class-settings.php:639
4303
  msgctxt "admin settings"
4304
  msgid ""
4305
  "Any changes to these settings will affect new listings only. Existing "
4308
  "here."
4309
  msgstr ""
4310
 
4311
+ #: core/class-settings.php:640
4312
  msgctxt "admin settings"
4313
  msgid "Image Settings"
4314
  msgstr ""
4315
 
4316
+ #: core/class-settings.php:641
4317
  msgctxt "admin settings"
4318
  msgid "Allow images?"
4319
  msgstr ""
4320
 
4321
+ #: core/class-settings.php:643
4322
  msgctxt "admin settings"
4323
  msgid "Min Image File Size (KB)"
4324
  msgstr ""
4325
 
4326
+ #: core/class-settings.php:644
4327
  msgctxt "admin settings"
4328
  msgid "Max Image File Size (KB)"
4329
  msgstr ""
4330
 
4331
+ #: core/class-settings.php:646
4332
  msgctxt "admin settings"
4333
  msgid "Min image width (px)"
4334
  msgstr ""
4335
 
4336
+ #: core/class-settings.php:647
4337
  msgctxt "admin settings"
4338
  msgid "Min image height (px)"
4339
  msgstr ""
4340
 
4341
+ #: core/class-settings.php:649
4342
  msgctxt "admin settings"
4343
  msgid "Max image width (px)"
4344
  msgstr ""
4345
 
4346
+ #: core/class-settings.php:650
4347
  msgctxt "admin settings"
4348
  msgid "Max image height (px)"
4349
  msgstr ""
4350
 
4351
+ #: core/class-settings.php:652
4352
  msgctxt "admin settings"
4353
  msgid "Turn on thickbox/lightbox?"
4354
  msgstr ""
4355
 
4356
+ #: core/class-settings.php:652
4357
  msgctxt "admin settings"
4358
  msgid ""
4359
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4360
  msgstr ""
4361
 
4362
+ #: core/class-settings.php:654
4363
  msgctxt "admin settings"
4364
  msgid "Thumbnails"
4365
  msgstr ""
4366
 
4367
+ #: core/class-settings.php:655
4368
  msgctxt "admin settings"
4369
  msgid "Thumbnail width (px)"
4370
  msgstr ""
4371
 
4372
+ #: core/class-settings.php:656
4373
  msgctxt "admin settings"
4374
  msgid "Thumbnail height (px)"
4375
  msgstr ""
4376
 
4377
+ #: core/class-settings.php:659
4378
  msgctxt "admin settings"
4379
  msgid "Crop thumbnails to exact dimensions?"
4380
  msgstr ""
4381
 
4382
+ #: core/class-settings.php:662
4383
  msgctxt "admin settings"
4384
  msgid ""
4385
  "When enabled images will match exactly the dimensions above but part of the "
4388
  "Depending on the uploaded images, thumbnails may have different heights."
4389
  msgstr ""
4390
 
4391
+ #: core/class-settings.php:668
4392
  msgctxt "admin settings"
4393
  msgid "Number of free images"
4394
  msgstr ""
4395
 
4396
+ #: core/class-settings.php:673
4397
  msgctxt "admin settings"
4398
  msgid ""
4399
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4400
  "a> instead of this setting, which is ignored for paid listings."
4401
  msgstr ""
4402
 
4403
+ #: core/class-settings.php:676
4404
  msgctxt "admin settings"
4405
  msgid "Use default picture for listings with no picture?"
4406
  msgstr ""
4407
 
4408
+ #: core/class-settings.php:677
4409
  msgctxt "admin settings"
4410
  msgid "Show Thumbnail on main listings page?"
4411
  msgstr ""
4412
 
4413
+ #: core/class-settings.php:706
4414
  msgctxt "admin settings"
4415
  msgid "User"
4416
  msgstr ""
4417
 
4418
+ #: core/class-settings.php:707
4419
  msgctxt "admin settings"
4420
  msgid "User registration date"
4421
  msgstr ""
4422
 
4423
+ #: core/class-settings.php:733
4424
  msgctxt "admin settings"
4425
  msgid ""
4426
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4427
  "not activated."
4428
  msgstr ""
4429
 
4430
+ #: core/class-settings.php:741
4431
  msgctxt "admin settings"
4432
  msgid ""
4433
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4434
  "be created."
4435
  msgstr ""
4436
 
4437
+ #: core/class-settings.php:750
4438
  msgctxt "admin settings"
4439
  msgid ""
4440
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4441
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4442
  msgstr ""
4443
 
4444
+ #: core/class-settings.php:1070
4445
  msgctxt "settings"
4446
  msgid "Deactivate License"
4447
  msgstr ""
4448
 
4449
+ #: core/class-settings.php:1072
4450
  msgctxt "settings"
4451
  msgid "Deactivating license..."
4452
  msgstr ""
4453
 
4454
+ #: core/class-settings.php:1075
4455
  msgctxt "settings"
4456
  msgid "Activate License"
4457
  msgstr ""
4458
 
4459
+ #: core/class-settings.php:1077
4460
  msgctxt "settings"
4461
  msgid "Activating license..."
4462
  msgstr ""
4463
 
4464
+ #: core/class-settings.php:1100
4465
  msgctxt "admin settings"
4466
  msgid "Valid placeholders: %s"
4467
  msgstr ""
4468
 
4469
+ #: core/class-settings.php:1134
4470
  msgctxt "settings email"
4471
  msgid "Click to edit e-mail"
4472
  msgstr ""
4473
 
4474
+ #: core/class-settings.php:1135
4475
  msgctxt "settings email"
4476
  msgid "Click to edit"
4477
  msgstr ""
4478
 
4479
+ #: core/class-settings.php:1148
4480
  msgctxt "settings email"
4481
  msgid "E-Mail Subject"
4482
  msgstr ""
4483
 
4484
+ #: core/class-settings.php:1159
4485
  msgctxt "settings email"
4486
  msgid "E-Mail Body"
4487
  msgstr ""
4488
 
4489
+ #: core/class-settings.php:1170
4490
  msgctxt "settings email"
4491
  msgid "You can use the following placeholders:"
4492
  msgstr ""
4493
 
4494
+ #: core/class-settings.php:1193
4495
  msgctxt "settings email"
4496
  msgid "Preview e-mail"
4497
  msgstr ""
4498
 
4499
+ #: core/class-settings.php:1194
4500
  msgctxt "settings email"
4501
  msgid "Cancel"
4502
  msgstr ""
4503
 
4504
+ #: core/class-settings.php:1195
4505
  msgctxt "settings email"
4506
  msgid "Save Changes"
4507
  msgstr ""
4508
 
4509
+ #: core/class-settings.php:1214
4510
  msgctxt "settings email"
4511
  msgid "Site title"
4512
  msgstr ""
4513
 
4514
+ #: core/class-settings.php:1217
4515
  msgctxt "settings email"
4516
  msgid "Site title (with link)"
4517
  msgstr ""
4518
 
4519
+ #: core/class-settings.php:1220
4520
  msgctxt "settings email"
4521
  msgid "Site address (with link)"
4522
  msgstr ""
4523
 
4524
+ #: core/class-settings.php:1223
4525
  msgctxt "settings email"
4526
  msgid "Directory URL (with link)"
4527
  msgstr ""
4528
 
4529
+ #: core/class-settings.php:1226
4530
  msgctxt "settings email"
4531
  msgid "Current date"
4532
  msgstr ""
4533
 
4534
+ #: core/class-settings.php:1229
4535
  msgctxt "settings email"
4536
  msgid "Current time"
4537
  msgstr ""
6312
  msgid "Upgrade listing to %s for %s."
6313
  msgstr ""
6314
 
6315
+ #: templates/main-box.tpl.php:13
6316
+ msgctxt "main box"
6317
+ msgid "Find listings for <keywords>"
6318
+ msgstr ""
6319
+
6320
+ #: templates/main-box.tpl.php:19
6321
  msgctxt "main box"
6322
  msgid "Find Listings"
6323
  msgstr ""
6324
 
6325
+ #: templates/main-box.tpl.php:20
6326
  msgctxt "main box"
6327
  msgid "Advanced Search"
6328
  msgstr ""
templates/main-box.tpl.php CHANGED
@@ -4,10 +4,13 @@
4
  <div class="main-fields box-row cols-2">
5
  <form action="<?php echo $search_url; ?>" method="get">
6
  <input type="hidden" name="wpbdp_view" value="search" />
 
 
 
7
  <div class="box-col search-fields">
8
  <div class="box-row cols-<?php echo $no_cols; ?>">
9
  <div class="box-col main-input">
10
- <input type="text" id="wpbdp-main-box-keyword-field" class="keywords-field" name="kw" placeholder="<?php esc_attr_e( _x( 'Find listings for <keywords>', 'main box', 'WPBDM' ) ); ?>" />
11
  </div>
12
  <?php echo $extra_fields; ?>
13
  </div>
4
  <div class="main-fields box-row cols-2">
5
  <form action="<?php echo $search_url; ?>" method="get">
6
  <input type="hidden" name="wpbdp_view" value="search" />
7
+ <?php if ( ! wpbdp_rewrite_on() ): ?>
8
+ <input type="hidden" name="page_id" value="<?php echo wpbdp_get_page_id(); ?>" />
9
+ <?php endif; ?>
10
  <div class="box-col search-fields">
11
  <div class="box-row cols-<?php echo $no_cols; ?>">
12
  <div class="box-col main-input">
13
+ <input type="text" id="wpbdp-main-box-keyword-field" class="keywords-field" name="kw" placeholder="<?php echo esc_attr( _x( 'Find listings for <keywords>', 'main box', 'WPBDM' ) ); ?>" />
14
  </div>
15
  <?php echo $extra_fields; ?>
16
  </div>
templates/parts/listing-buttons.tpl.php CHANGED
@@ -14,7 +14,7 @@
14
  <input type="button" value="←" onclick="window.location.href = '<?php echo wpbdp_url( '/'); ?>'" class="wpbdp-show-on-mobile button back-to-dir wpbdp-button" />
15
  <?php endif; ?>
16
  <?php elseif ($view == 'excerpt'): ?>
17
- <?php if (wpbdp_user_can('view', $listing_id)): ?><a class="wpbdp-button button view-listing" href="<?php the_permalink(); ?>"><?php _ex('View', 'templates', 'WPBDM'); ?></a><?php endif; ?>
18
  <?php if (wpbdp_user_can('edit', $listing_id)): ?><a class="wpbdp-button button edit-listing" href="<?php echo wpbdp_url( 'edit_listing', $listing_id ); ?>"><?php _ex('Edit', 'templates', 'WPBDM'); ?></a><?php endif; ?>
19
  <?php if (wpbdp_user_can('delete', $listing_id)): ?><a class="wpbdp-button button delete-listing" href="<?php echo wpbdp_url( 'delete_listing', $listing_id ); ?>"><?php _ex('Delete', 'templates', 'WPBDM'); ?></a><?php endif; ?>
20
  <?php endif; ?>
14
  <input type="button" value="←" onclick="window.location.href = '<?php echo wpbdp_url( '/'); ?>'" class="wpbdp-show-on-mobile button back-to-dir wpbdp-button" />
15
  <?php endif; ?>
16
  <?php elseif ($view == 'excerpt'): ?>
17
+ <?php if (wpbdp_user_can('view', $listing_id)): ?><a class="wpbdp-button button view-listing" href="<?php the_permalink(); ?>" <?php if ( wpbdp_get_option( 'listing-link-in-new-tab' ) ): ?>target="_blank"<?php endif; ?>><?php _ex('View', 'templates', 'WPBDM'); ?></a><?php endif; ?>
18
  <?php if (wpbdp_user_can('edit', $listing_id)): ?><a class="wpbdp-button button edit-listing" href="<?php echo wpbdp_url( 'edit_listing', $listing_id ); ?>"><?php _ex('Edit', 'templates', 'WPBDM'); ?></a><?php endif; ?>
19
  <?php if (wpbdp_user_can('delete', $listing_id)): ?><a class="wpbdp-button button delete-listing" href="<?php echo wpbdp_url( 'delete_listing', $listing_id ); ?>"><?php _ex('Delete', 'templates', 'WPBDM'); ?></a><?php endif; ?>
20
  <?php endif; ?>