Business Directory Plugin - Version 3.6.11

Version Description

Download this release

Release Info

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

Code changes from version 3.6.10.1 to 3.6.11

Files changed (44) hide show
  1. README.TXT +15 -5
  2. admin/class-admin-listings.php +54 -0
  3. admin/class-admin.php +1 -1
  4. admin/class-listing-fields-metabox.php +4 -4
  5. admin/js/listing.js +13 -1
  6. admin/js/listing.min.js +1 -1
  7. admin/templates/csv-export.tpl.php +5 -5
  8. admin/templates/csv-import.tpl.php +15 -4
  9. admin/templates/form-fields-addoredit.tpl.php +3 -3
  10. admin/templates/header.tpl.php +2 -2
  11. admin/templates/listing-metabox-categories.tpl.php +1 -1
  12. business-directory-plugin.php +3 -3
  13. core/api.php +3 -3
  14. core/class-csv-import.php +5 -1
  15. core/class-form-field.php +1 -1
  16. core/class-listing-image.php +59 -0
  17. core/class-listing.php +37 -13
  18. core/class-recaptcha.php +3 -0
  19. core/class-settings.php +1 -1
  20. core/class-utils.php +1 -1
  21. core/css/wpbdp.css +16 -0
  22. core/css/wpbdp.min.css +1 -1
  23. core/fieldtypes/class-fieldtypes-image.php +3 -2
  24. core/fieldtypes/class-fieldtypes-textarea.php +55 -12
  25. core/form-fields.php +1 -1
  26. core/helpers/class-fs.php +1 -1
  27. core/js/submit-listing.js +13 -0
  28. core/js/submit-listing.min.js +1 -0
  29. core/payment.php +1 -0
  30. core/templates-listings.php +9 -7
  31. core/utils.php +1 -1
  32. core/view-submit-listing.php +40 -1
  33. core/views.php +13 -0
  34. languages/WPBDM-de_DE.mo +0 -0
  35. languages/WPBDM-de_DE.po +146 -107
  36. languages/WPBDM-en_US.mo +0 -0
  37. languages/WPBDM-en_US.po +144 -107
  38. languages/WPBDM-es_ES.mo +0 -0
  39. languages/WPBDM-es_ES.po +151 -115
  40. languages/WPBDM-fr_FR.mo +0 -0
  41. languages/WPBDM-fr_FR.po +146 -107
  42. languages/WPBDM.pot +143 -107
  43. templates/submit-listing/images-single.tpl.php +9 -1
  44. templates/submit-listing/images.tpl.php +2 -0
README.TXT CHANGED
@@ -2,10 +2,10 @@
2
  Contributors: businessdirectoryplugin
3
  Donate link: http://businessdirectoryplugin.com/premium-modules/
4
  Tags: business directory,directory,wordpress directory,wordpress directory plugin, wordpress directory theme,wordpress business directory,wordpress local directory,classified ads,classifieds,directory plugin,business directory plugin,directory widget,church directory,address book,address,member directory,members directory,city portal,city portal plugin,city guide plugin,city guide
5
- Requires at least: 3.9
6
- Tested up to: 4.3.1
7
- Last Updated: 2015-Nov-23
8
- Stable tag: tags/3.6.10.1
9
  License: GPLv2 or later
10
 
11
  Build local directories, business provider listings, Yellow-Pages directories, Yelp-like review sections and much more!
@@ -83,7 +83,7 @@ If you love the plugin, [please consider purchasing a Premium Module](http://bus
83
 
84
 
85
  == Credits ==
86
- Copyright 2009-15, Dave Rodenbaugh
87
  Original Author: A. Lewis
88
 
89
  This program is free software; you can redistribute it and/or modify
@@ -116,6 +116,16 @@ If you are having problems please visit [support forum](http://www.businessdirec
116
 
117
 
118
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
119
 
120
  = Version 3.6.10.1 =
121
  * Fixes "no listings found" bug on some setups
2
  Contributors: businessdirectoryplugin
3
  Donate link: http://businessdirectoryplugin.com/premium-modules/
4
  Tags: business directory,directory,wordpress directory,wordpress directory plugin, wordpress directory theme,wordpress business directory,wordpress local directory,classified ads,classifieds,directory plugin,business directory plugin,directory widget,church directory,address book,address,member directory,members directory,city portal,city portal plugin,city guide plugin,city guide
5
+ Requires at least: 4.0
6
+ Tested up to: 4.4
7
+ Last Updated: 2015-Dec-15
8
+ Stable tag: tags/3.6.11
9
  License: GPLv2 or later
10
 
11
  Build local directories, business provider listings, Yellow-Pages directories, Yelp-like review sections and much more!
83
 
84
 
85
  == Credits ==
86
+ Copyright 2009-16, Dave Rodenbaugh
87
  Original Author: A. Lewis
88
 
89
  This program is free software; you can redistribute it and/or modify
116
 
117
 
118
  == Changelog ==
119
+ = Version 3.6.11 =
120
+ * Allow content fields to use a WYSIWYG editor on the frontend.
121
+ * Listing images can now be re-ordered by drag and drop.
122
+ * Make "Total listing cost" on the backend show the current listing cost.
123
+ * Rename some CSS classes to avoid conflicts with themes using Bootstrap.
124
+ * Allow filtering of listings by category on the backend.
125
+ * Add option to not delete previous listing images during CSV import.
126
+ * Add some database indexes to improve query performance.
127
+ * Update heading hierarchy for WP 4.4.
128
+ * Do not enqueue reCAPTCHA resources on non-BD pages to prevent conflicts.
129
 
130
  = Version 3.6.10.1 =
131
  * Fixes "no listings found" bug on some setups
admin/class-admin-listings.php CHANGED
@@ -17,8 +17,52 @@ class WPBDP_Admin_Listings {
17
 
18
  add_action('admin_footer', array($this, '_add_bulk_actions'));
19
  add_action('admin_footer', array($this, '_fix_new_links'));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  }
21
 
 
 
22
  function add_metaboxes() {
23
  add_meta_box( 'BusinessDirectory_listinginfo',
24
  __( 'Listing Information', 'WPBDM' ),
@@ -277,6 +321,16 @@ class WPBDP_Admin_Listings {
277
 
278
  if ( isset( $_POST['thumbnail_id'] ) )
279
  $listing->set_thumbnail_id( $_POST['thumbnail_id'] );
 
 
 
 
 
 
 
 
 
 
280
  }
281
 
282
  }
17
 
18
  add_action('admin_footer', array($this, '_add_bulk_actions'));
19
  add_action('admin_footer', array($this, '_fix_new_links'));
20
+
21
+ // Filter by category.
22
+ add_action( 'restrict_manage_posts', array( &$this, '_add_category_filter' ) );
23
+ add_action( 'parse_query', array( &$this, '_apply_category_filter' ) );
24
+ }
25
+
26
+ // Category filter. {{
27
+
28
+ function _add_category_filter() {
29
+ global $typenow;
30
+ global $wp_query;
31
+
32
+ if ( WPBDP_POST_TYPE != $typenow )
33
+ return;
34
+
35
+ wp_dropdown_categories( array(
36
+ 'show_option_all' => _x( 'All categories', 'admin category filter', 'WPBDM' ),
37
+ 'taxonomy' => WPBDP_CATEGORY_TAX,
38
+ 'name' => WPBDP_CATEGORY_TAX,
39
+ 'orderby' => 'name',
40
+ 'selected' => ( ! empty ( $wp_query->query[ WPBDP_CATEGORY_TAX ] ) ? $wp_query->query[ WPBDP_CATEGORY_TAX ] : 0 ),
41
+ 'hierarchical' => true,
42
+ 'hide_empty' => false,
43
+ 'depth' => 4
44
+ ) );
45
+ }
46
+
47
+ function _apply_category_filter( $query ) {
48
+ $screen = get_current_screen();
49
+
50
+ if ( ! is_admin() || 'edit' != $screen->base || WPBDP_POST_TYPE != $screen->post_type )
51
+ return;
52
+
53
+ if ( empty( $query->query_vars[ WPBDP_CATEGORY_TAX ] ) || ! is_numeric( $query->query_vars[ WPBDP_CATEGORY_TAX ] ) )
54
+ return;
55
+
56
+ $term = get_term_by( 'id', $query->query_vars[ WPBDP_CATEGORY_TAX ], WPBDP_CATEGORY_TAX );
57
+
58
+ if ( ! $term )
59
+ return;
60
+
61
+ $query->query_vars[ WPBDP_CATEGORY_TAX ] = $term->slug;
62
  }
63
 
64
+ // }}
65
+
66
  function add_metaboxes() {
67
  add_meta_box( 'BusinessDirectory_listinginfo',
68
  __( 'Listing Information', 'WPBDM' ),
321
 
322
  if ( isset( $_POST['thumbnail_id'] ) )
323
  $listing->set_thumbnail_id( $_POST['thumbnail_id'] );
324
+
325
+ // Images info.
326
+ if ( isset( $_POST['images_meta'] ) ) {
327
+ $meta = $_POST['images_meta'];
328
+
329
+ foreach ( $meta as $img_id => $img_meta ) {
330
+ update_post_meta( $img_id, '_wpbdp_image_weight', absint( $img_meta[ 'order' ] ) );
331
+ update_post_meta( $img_id, '_wpbdp_image_caption', strval( $img_meta[ 'caption' ] ) );
332
+ }
333
+ }
334
  }
335
 
336
  }
admin/class-admin.php CHANGED
@@ -762,7 +762,7 @@ class WPBDP_Admin {
762
  }
763
 
764
  /**
765
- * @since next-release
766
  */
767
  function process_admin_action() {
768
  if ( isset( $_REQUEST['wpbdp-action'] ) ) {
762
  }
763
 
764
  /**
765
+ * @since 3.6.10
766
  */
767
  function process_admin_action() {
768
  if ( isset( $_REQUEST['wpbdp-action'] ) ) {
admin/class-listing-fields-metabox.php CHANGED
@@ -33,7 +33,7 @@ class WPBDP_Admin_Listing_Fields_Metabox {
33
  if ( ! current_user_can( 'edit_posts' ) )
34
  return;
35
 
36
- $images = $this->listing->get_images( 'ids' );
37
  $thumbnail_id = $this->listing->get_thumbnail_id();
38
 
39
  // Current images.
@@ -41,10 +41,10 @@ class WPBDP_Admin_Listing_Fields_Metabox {
41
  echo '<div id="no-images-message" style="' . ( $images ? 'display: none;' : '' ) . '">' . _x( 'There are no images currently attached to the listing.', 'templates', 'WPBDM' ) . '</div>';
42
  echo '<div id="wpbdp-uploaded-images" class="cf">';
43
 
44
- foreach ( $images as $image_id ):
45
  echo wpbdp_render( 'submit-listing/images-single',
46
- array( 'image_id' => $image_id,
47
- 'is_thumbnail' => ( 1 == count( $images ) || $thumbnail_id == $image_id ) ),
48
  false );
49
  endforeach;
50
  echo '</div>';
33
  if ( ! current_user_can( 'edit_posts' ) )
34
  return;
35
 
36
+ $images = $this->listing->get_images( 'all', true );
37
  $thumbnail_id = $this->listing->get_thumbnail_id();
38
 
39
  // Current images.
41
  echo '<div id="no-images-message" style="' . ( $images ? 'display: none;' : '' ) . '">' . _x( 'There are no images currently attached to the listing.', 'templates', 'WPBDM' ) . '</div>';
42
  echo '<div id="wpbdp-uploaded-images" class="cf">';
43
 
44
+ foreach ( $images as $image ):
45
  echo wpbdp_render( 'submit-listing/images-single',
46
+ array( 'image' => $image,
47
+ 'is_thumbnail' => ( 1 == count( $images ) || $thumbnail_id == $image->id ) ),
48
  false );
49
  endforeach;
50
  echo '</div>';
admin/js/listing.js CHANGED
@@ -22,7 +22,19 @@ var admin = wpbdp.admin = wpbdp.admin || {};
22
  }, 'json' );
23
  } );
24
 
25
- // Image upload.
 
 
 
 
 
 
 
 
 
 
 
 
26
  wpbdp.dnd.setup( $( '#image-upload-dnd-area' ), {
27
  validate: function( data ) {
28
  $( this ).siblings( '.wpbdp-msg' ).remove();
22
  }, 'json' );
23
  } );
24
 
25
+ $( '#wpbdp-uploaded-images' ).sortable({
26
+ placeholder: 'wpbdp-image-draggable-highlight',
27
+ update: function( event, ui ) {
28
+ var sorted = $( '#wpbdp-uploaded-images' ).sortable( 'toArray', { attribute: "data-imageid" } );
29
+ var no_images = sorted.length;
30
+
31
+ $.each( sorted, function( i, v ) {
32
+ $( 'input[name="images_meta[' + v + '][order]"]' ).val( no_images - i );
33
+ } );
34
+ }
35
+ });
36
+
37
+ // Image upload.
38
  wpbdp.dnd.setup( $( '#image-upload-dnd-area' ), {
39
  validate: function( data ) {
40
  $( this ).siblings( '.wpbdp-msg' ).remove();
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.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()})})(jQuery);
admin/templates/csv-export.tpl.php CHANGED
@@ -30,7 +30,7 @@ echo $notice;
30
  <!--<h3><?php _ex('Export Configuration', 'admin csv-export', 'WPBDM'); ?></h3>-->
31
  <form id="wpbdp-csv-export-form" action="" method="POST">
32
 
33
- <h3><?php _ex( 'Export settings', 'admin csv-export', 'WPBDM' ); ?></h3>
34
  <table class="form-table">
35
  <tr>
36
  <th scope="row">
@@ -87,7 +87,7 @@ echo $notice;
87
  </tr>
88
  </table>
89
 
90
- <h3><?php _ex('CSV File Settings', 'admin csv-export', 'WPBDM'); ?></h3>
91
  <table class="form-table">
92
  <tr class="form-required">
93
  <th scope="row">
@@ -131,7 +131,7 @@ echo $notice;
131
  </div>
132
 
133
  <div class="step-2">
134
- <h3><?php _ex( 'Export in Progress...', 'admin csv-export', 'WPBDM' ); ?></h3>
135
  <p><?php _ex( 'Your export file is being prepared. Please <u>do not leave</u> this page until the export finishes.', 'admin csv-export', 'WPBDM' ); ?></p>
136
 
137
  <dl>
@@ -149,7 +149,7 @@ echo $notice;
149
  </div>
150
 
151
  <div class="step-3">
152
- <h3><?php _ex( 'Export Complete', 'admin csv-export' )?></h3>
153
  <p><?php _ex( 'Your export file has been successfully created and it is now ready for download.', 'admin csv-export', 'WPBDM' ); ?></p>
154
  <div class="download-link">
155
  <a href="" class="button button-primary">
@@ -165,7 +165,7 @@ echo $notice;
165
  </div>
166
 
167
  <div class="canceled-export">
168
- <h3><?php _ex( 'Export Canceled', 'admin csv-export' )?></h3>
169
  <p><?php _ex( 'The export has been canceled.', 'admin csv-export', 'WPBDM' ); ?></p>
170
  <p><a href="" class="button"><?php _ex( '← Return to CSV Export', 'admin csv-export', 'WPBDM' ); ?></a></p>
171
  </div>
30
  <!--<h3><?php _ex('Export Configuration', 'admin csv-export', 'WPBDM'); ?></h3>-->
31
  <form id="wpbdp-csv-export-form" action="" method="POST">
32
 
33
+ <h2><?php _ex( 'Export settings', 'admin csv-export', 'WPBDM' ); ?></h2>
34
  <table class="form-table">
35
  <tr>
36
  <th scope="row">
87
  </tr>
88
  </table>
89
 
90
+ <h2><?php _ex('CSV File Settings', 'admin csv-export', 'WPBDM'); ?></h2>
91
  <table class="form-table">
92
  <tr class="form-required">
93
  <th scope="row">
131
  </div>
132
 
133
  <div class="step-2">
134
+ <h2><?php _ex( 'Export in Progress...', 'admin csv-export', 'WPBDM' ); ?></h2>
135
  <p><?php _ex( 'Your export file is being prepared. Please <u>do not leave</u> this page until the export finishes.', 'admin csv-export', 'WPBDM' ); ?></p>
136
 
137
  <dl>
149
  </div>
150
 
151
  <div class="step-3">
152
+ <h2><?php _ex( 'Export Complete', 'admin csv-export' )?></h2>
153
  <p><?php _ex( 'Your export file has been successfully created and it is now ready for download.', 'admin csv-export', 'WPBDM' ); ?></p>
154
  <div class="download-link">
155
  <a href="" class="button button-primary">
165
  </div>
166
 
167
  <div class="canceled-export">
168
+ <h2><?php _ex( 'Export Canceled', 'admin csv-export' )?></h2>
169
  <p><?php _ex( 'The export has been canceled.', 'admin csv-export', 'WPBDM' ); ?></p>
170
  <p><a href="" class="button"><?php _ex( '← Return to CSV Export', 'admin csv-export', 'WPBDM' ); ?></a></p>
171
  </div>
admin/templates/csv-import.tpl.php CHANGED
@@ -35,7 +35,7 @@ echo str_replace(
35
  <form id="wpbdp-csv-import-form" action="" method="POST" enctype="multipart/form-data">
36
  <input type="hidden" name="action" value="do-import" />
37
 
38
- <h3><?php _ex('Import Files', 'admin csv-import'); ?></h3>
39
  <table class="form-table">
40
  <tbody>
41
  <tr class="form-field form-required">
@@ -102,7 +102,7 @@ echo str_replace(
102
  </tr>
103
  </table>
104
 
105
- <h3><?php _ex('CSV File Settings', 'admin csv-import', 'WPBDM'); ?></h3>
106
  <table class="form-table">
107
  <tr class="form-required">
108
  <th scope="row">
@@ -139,7 +139,7 @@ echo str_replace(
139
  </tr>
140
  </table>
141
 
142
- <h3><?php _ex('Import settings', 'admin csv-import', 'WPBDM'); ?></h3>
143
  <table class="form-table">
144
  <tr class="form-required">
145
  <th scope="row">
@@ -166,6 +166,17 @@ echo str_replace(
166
  value="0" <?php echo ( _defaults_or( $defaults, 'create-missing-categories', 1 ) == 0 ) ? 'checked="checked"' : ''; ?> /> <?php _ex('Generate errors when a category is not found', 'admin csv-import', 'WPBDM'); ?></label>
167
  </td>
168
  </tr>
 
 
 
 
 
 
 
 
 
 
 
169
  <tr class="form-required">
170
  <th scope="row">
171
  <label> <?php _ex('Assign listings to a user?', 'admin csv-import', 'WPBDM'); ?>
@@ -213,7 +224,7 @@ echo str_replace(
213
 
214
  <hr />
215
  <a name="help"></a>
216
- <h3><?php _ex('Help', 'admin csv-import', 'WPBDM'); ?></h3>
217
  <p>
218
  <?php echo sprintf(_x('The following are the valid header names to be used in the CSV file. Multivalued fields (such as category or tags) can appear multiple times in the file. Click <a href="%s">"See an example CSV import file"</a> to see how an import file should look like.', 'admin csv-import', 'WPBDM'),
219
  esc_url(add_query_arg('action', 'example-csv'))); ?>
35
  <form id="wpbdp-csv-import-form" action="" method="POST" enctype="multipart/form-data">
36
  <input type="hidden" name="action" value="do-import" />
37
 
38
+ <h2><?php _ex('Import Files', 'admin csv-import'); ?></h2>
39
  <table class="form-table">
40
  <tbody>
41
  <tr class="form-field form-required">
102
  </tr>
103
  </table>
104
 
105
+ <h2><?php _ex('CSV File Settings', 'admin csv-import', 'WPBDM'); ?></h2>
106
  <table class="form-table">
107
  <tr class="form-required">
108
  <th scope="row">
139
  </tr>
140
  </table>
141
 
142
+ <h2><?php _ex('Import settings', 'admin csv-import', 'WPBDM'); ?></h2>
143
  <table class="form-table">
144
  <tr class="form-required">
145
  <th scope="row">
166
  value="0" <?php echo ( _defaults_or( $defaults, 'create-missing-categories', 1 ) == 0 ) ? 'checked="checked"' : ''; ?> /> <?php _ex('Generate errors when a category is not found', 'admin csv-import', 'WPBDM'); ?></label>
167
  </td>
168
  </tr>
169
+ <tr class="form-required">
170
+ <th scope="row">
171
+ <label> <?php _ex( 'Keep existing listing images?', 'admin csv-import', 'WPBDM' ); ?>
172
+ </th>
173
+ <td>
174
+ <label><input name="settings[append-images]"
175
+ type="checkbox"
176
+ value="1" checked="checked" /> <?php _ex( 'Keep existing images.', 'admin csv-import', 'WPBDM' ); ?></label>
177
+ <span class="description"><?php _ex( 'Appends new images while keeping current ones.', 'admin csv-import', 'WPBDM' ); ?></span>
178
+ </td>
179
+ </tr>
180
  <tr class="form-required">
181
  <th scope="row">
182
  <label> <?php _ex('Assign listings to a user?', 'admin csv-import', 'WPBDM'); ?>
224
 
225
  <hr />
226
  <a name="help"></a>
227
+ <h2><?php _ex('Help', 'admin csv-import', 'WPBDM'); ?></h2>
228
  <p>
229
  <?php echo sprintf(_x('The following are the valid header names to be used in the CSV file. Multivalued fields (such as category or tags) can appear multiple times in the file. Click <a href="%s">"See an example CSV import file"</a> to see how an import file should look like.', 'admin csv-import', 'WPBDM'),
230
  esc_url(add_query_arg('action', 'example-csv'))); ?>
admin/templates/form-fields-addoredit.tpl.php CHANGED
@@ -83,7 +83,7 @@
83
  ob_end_clean();
84
  ?>
85
  <div id="wpbdp-fieldsettings" style="<?php echo $field_settings ? '' : 'display: none;'; ?>">
86
- <h3><?php _ex('Field-specific settings', 'form-fields admin', 'WPBDM'); ?></h3>
87
  <div id="wpbdp-fieldsettings-html">
88
  <?php echo $field_settings; ?>
89
  </div>
@@ -92,7 +92,7 @@
92
 
93
  <!-- validation -->
94
  <?php if ( ! $field->has_behavior_flag( 'no-validation' ) ): ?>
95
- <h3><?php _ex('Field validation options', 'form-fields admin', 'WPBDM'); ?></h3>
96
  <table class="form-table">
97
  <tr>
98
  <th scope="row">
@@ -126,7 +126,7 @@
126
  <?php endif; ?>
127
 
128
  <!-- display options -->
129
- <h3><?php _ex('Field display options', 'form-fields admin', 'WPBDM'); ?></h3>
130
  <table class="form-table">
131
  <tr>
132
  <th scope="row">
83
  ob_end_clean();
84
  ?>
85
  <div id="wpbdp-fieldsettings" style="<?php echo $field_settings ? '' : 'display: none;'; ?>">
86
+ <h2><?php _ex('Field-specific settings', 'form-fields admin', 'WPBDM'); ?></h2>
87
  <div id="wpbdp-fieldsettings-html">
88
  <?php echo $field_settings; ?>
89
  </div>
92
 
93
  <!-- validation -->
94
  <?php if ( ! $field->has_behavior_flag( 'no-validation' ) ): ?>
95
+ <h2><?php _ex('Field validation options', 'form-fields admin', 'WPBDM'); ?></h2>
96
  <table class="form-table">
97
  <tr>
98
  <th scope="row">
126
  <?php endif; ?>
127
 
128
  <!-- display options -->
129
+ <h2><?php _ex('Field display options', 'form-fields admin', 'WPBDM'); ?></h2>
130
  <table class="form-table">
131
  <tr>
132
  <th scope="row">
admin/templates/header.tpl.php CHANGED
@@ -1,6 +1,6 @@
1
  <div class="wrap wpbdp-admin <?php echo isset($page_id) ? 'wpbdp-page-' . $page_id : 'wpbdp-page'; ?>" id="<?php echo isset( $page_id ) ? 'wpbdp-admin-page-' . $page_id : ''; ?>">
2
  <div id="icon-edit-pages" class="icon32"></div>
3
- <h2>
4
  <?php echo isset($page_title) ? $page_title : __("Business Directory Plugin","WPBDM"); ?>
5
 
6
  <?php if ($h2items): ?>
@@ -8,7 +8,7 @@
8
  <a href="<?php echo $item[1]; ?>" class="add-new-h2"><?php echo $item[0]; ?></a>
9
  <?php endforeach; ?>
10
  <?php endif; ?>
11
- </h2>
12
 
13
  <?php echo $sidebar = $sidebar ? wpbdp_admin_sidebar() : false; ?>
14
 
1
  <div class="wrap wpbdp-admin <?php echo isset($page_id) ? 'wpbdp-page-' . $page_id : 'wpbdp-page'; ?>" id="<?php echo isset( $page_id ) ? 'wpbdp-admin-page-' . $page_id : ''; ?>">
2
  <div id="icon-edit-pages" class="icon32"></div>
3
+ <h1>
4
  <?php echo isset($page_title) ? $page_title : __("Business Directory Plugin","WPBDM"); ?>
5
 
6
  <?php if ($h2items): ?>
8
  <a href="<?php echo $item[1]; ?>" class="add-new-h2"><?php echo $item[0]; ?></a>
9
  <?php endforeach; ?>
10
  <?php endif; ?>
11
+ </h1>
12
 
13
  <?php echo $sidebar = $sidebar ? wpbdp_admin_sidebar() : false; ?>
14
 
admin/templates/listing-metabox-categories.tpl.php CHANGED
@@ -7,7 +7,7 @@
7
  * @param $admin_actions array() Optional.
8
  */
9
 
10
- $image_count = count( $listing->get_images() );
11
 
12
  if ( ! isset( $display ) )
13
  $display = array( 'fee label', 'fee images', 'expiration' );
7
  * @param $admin_actions array() Optional.
8
  */
9
 
10
+ $image_count = count( $listing->get_images( 'ids' ) );
11
 
12
  if ( ! isset( $display ) )
13
  $display = array( 'fee label', 'fee images', 'expiration' );
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: 3.6.10.1
7
  * Author: D. Rodenbaugh
8
  * Author URI: http://businessdirectoryplugin.com
9
  * License: GPLv2 or any later version
@@ -29,7 +29,7 @@
29
  if( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) )
30
  exit();
31
 
32
- define( 'WPBDP_VERSION', '3.6.10.1' );
33
 
34
  define( 'WPBDP_PATH', plugin_dir_path( __FILE__ ) );
35
  define( 'WPBDP_URL', trailingslashit( plugins_url( '/', __FILE__ ) ) );
@@ -957,7 +957,7 @@ class WPBDP_Plugin {
957
  }
958
 
959
  /**
960
- * @since next-release
961
  */
962
  function _single_listing_shortcode( $atts ) {
963
  $atts = shortcode_atts( array( 'id' => null, 'slug' => null ), $atts );
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: 3.6.11
7
  * Author: D. Rodenbaugh
8
  * Author URI: http://businessdirectoryplugin.com
9
  * License: GPLv2 or any later version
29
  if( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) )
30
  exit();
31
 
32
+ define( 'WPBDP_VERSION', '3.6.11' );
33
 
34
  define( 'WPBDP_PATH', plugin_dir_path( __FILE__ ) );
35
  define( 'WPBDP_URL', trailingslashit( plugins_url( '/', __FILE__ ) ) );
957
  }
958
 
959
  /**
960
+ * @since 3.6.10
961
  */
962
  function _single_listing_shortcode( $atts ) {
963
  $atts = shortcode_atts( array( 'id' => null, 'slug' => null ), $atts );
core/api.php CHANGED
@@ -375,7 +375,7 @@ function _wpbdp_resize_image_if_needed($id) {
375
 
376
  /*
377
  * @since 2.1.7
378
- * @deprecated since next-release. See {@link wpbdp_currency_format()}.
379
  */
380
  function wpbdp_format_currency($amount, $decimals = 2, $currency = null) {
381
  if ( $amount == 0.0 )
@@ -385,7 +385,7 @@ function wpbdp_format_currency($amount, $decimals = 2, $currency = null) {
385
  }
386
 
387
  /**
388
- * @since next-release
389
  */
390
  function wpbdp_currency_format( $amount, $args = array() ) {
391
  // We don't actually allow modification of the "format" string for now, but it could be useful in the future.
@@ -502,7 +502,7 @@ function wpbdp_current_query() {
502
  }
503
 
504
  /**
505
- * @since next-release
506
  */
507
  function wpbdp_experimental( $feature ) {
508
  global $wpbdp_development;
375
 
376
  /*
377
  * @since 2.1.7
378
+ * @deprecated since 3.6.10. See {@link wpbdp_currency_format()}.
379
  */
380
  function wpbdp_format_currency($amount, $decimals = 2, $currency = null) {
381
  if ( $amount == 0.0 )
385
  }
386
 
387
  /**
388
+ * @since 3.6.10
389
  */
390
  function wpbdp_currency_format( $amount, $args = array() ) {
391
  // We don't actually allow modification of the "format" string for now, but it could be useful in the future.
502
  }
503
 
504
  /**
505
+ * @since 3.6.10
506
  */
507
  function wpbdp_experimental( $feature ) {
508
  global $wpbdp_development;
core/class-csv-import.php CHANGED
@@ -46,6 +46,7 @@ class WPBDP_CSV_Import {
46
  'default-user' => '0',
47
  'post-status' => 'publish',
48
  'disable-email-notifications' => true,
 
49
 
50
  'test-import' => false,
51
 
@@ -66,6 +67,9 @@ class WPBDP_CSV_Import {
66
  if ( ! array_key_exists( 'disable-email-notifications', $settings ) )
67
  $settings['disable-email-notifications'] = false;
68
 
 
 
 
69
  $this->settings = wp_parse_args( $settings, $defaults );
70
 
71
  $file = new SplFileObject( $this->csv_file );
@@ -413,7 +417,7 @@ class WPBDP_CSV_Import {
413
  // Insert or update listing.
414
  if ( $listing_id ) {
415
  $listing = WPBDP_Listing::get( $listing_id );
416
- $listing->update( $state );
417
  $listing->set_post_status( wpbdp_get_option( 'edit-post-status' ) );
418
  } else {
419
  $listing = WPBDP_Listing::create( $state );
46
  'default-user' => '0',
47
  'post-status' => 'publish',
48
  'disable-email-notifications' => true,
49
+ 'append-images' => true,
50
 
51
  'test-import' => false,
52
 
67
  if ( ! array_key_exists( 'disable-email-notifications', $settings ) )
68
  $settings['disable-email-notifications'] = false;
69
 
70
+ if ( ! array_key_exists( 'append-images', $settings ) )
71
+ $settings['append-images'] = false;
72
+
73
  $this->settings = wp_parse_args( $settings, $defaults );
74
 
75
  $file = new SplFileObject( $this->csv_file );
417
  // Insert or update listing.
418
  if ( $listing_id ) {
419
  $listing = WPBDP_Listing::get( $listing_id );
420
+ $listing->update( $state, array( 'append-images' => $this->settings['append-images'] ) );
421
  $listing->set_post_status( wpbdp_get_option( 'edit-post-status' ) );
422
  } else {
423
  $listing = WPBDP_Listing::create( $state );
core/class-form-field.php CHANGED
@@ -173,7 +173,7 @@ class WPBDP_Form_Field {
173
  }
174
 
175
  /**
176
- * @since next-release
177
  */
178
  public function get_tag() {
179
  return $this->tag;
173
  }
174
 
175
  /**
176
+ * @since 3.6.10
177
  */
178
  public function get_tag() {
179
  return $this->tag;
core/class-listing-image.php ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ final class WPBDP_Listing_Image {
4
+
5
+ public $id = 0;
6
+ public $slug = '';
7
+ public $mime_type = '';
8
+
9
+ public $width = 0;
10
+ public $height = 0;
11
+ public $path = '';
12
+ public $url = '';
13
+
14
+ public $thumb_width = 0;
15
+ public $thumb_height = 0;
16
+ public $thumb_path = '';
17
+ public $thumb_url = '';
18
+
19
+ public $weight = 0;
20
+ public $caption = '';
21
+
22
+
23
+ private function __construct( $id ) {
24
+ $this->id = $id;
25
+
26
+ // Basic info about the image.
27
+ $post = get_post( $this->id );
28
+ $this->slug = $post->post_name;
29
+ $this->mime_type = $post->post_mime_type;
30
+
31
+ // Listing-related metadata.
32
+ $this->weight = (int) get_post_meta( $this->id, '_wpbdp_image_weight', true );
33
+ $this->caption = strval( get_post_meta( $this->id, '_wpbdp_image_caption', true ) );
34
+
35
+ $size_data = wp_get_attachment_image_src( $this->id, 'full' );
36
+ $this->width = (int) $size_data[1];
37
+ $this->height = (int) $size_data[2];
38
+ $this->url = (int) $size_data[0];
39
+
40
+ $size_data = wp_get_attachment_image_src( $this->id, 'wpbdp-thumb' );
41
+ $this->thumb_width = (int) $size_data[1];
42
+ $this->thumb_height = (int) $size_data[2];
43
+ $this->thumb_url = (int) $size_data[0];
44
+ }
45
+
46
+ public static function get( $id ) {
47
+ $id = absint( $id );
48
+
49
+ if ( ! $id )
50
+ return false;
51
+
52
+ $post = get_post( $id );
53
+ if ( 'attachment' != $post->post_type || WPBDP_POST_TYPE != get_post_type( $post->post_parent ) || ! wp_attachment_is_image( $post->ID ) )
54
+ return false;
55
+
56
+ return new WPBDP_Listing_Image( $post->ID );
57
+ }
58
+
59
+ }
core/class-listing.php CHANGED
@@ -1,5 +1,6 @@
1
  <?php
2
  require_once( WPBDP_PATH . 'core/class-payment.php' );
 
3
 
4
  /**
5
  * @since 3.4
@@ -50,20 +51,41 @@ class WPBDP_Listing {
50
  return date_i18n( get_option( 'date_format' ), get_post_modified_time( 'U', false, $this->id ) );
51
  }
52
 
53
- public function get_images( $fields = 'all' ) {
54
- $attachments = get_posts( array( 'numberposts' => -1, 'post_type' => 'attachment', 'post_parent' => $this->id ));
55
  $result = array();
56
 
57
- foreach ( $attachments as $attachment ) {
58
- if ( wp_attachment_is_image( $attachment->ID ) )
59
- $result[] = $attachment;
 
 
 
 
 
60
  }
61
 
62
- if ( 'ids' === $fields )
63
- return array_map( create_function( '$x', 'return $x->ID;' ), $result );
 
64
 
65
  return $result;
66
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
 
68
  /**
69
  * Sets listing images.
@@ -186,7 +208,7 @@ class WPBDP_Listing {
186
  $fee_info['fee_days'] = intval( isset( $fee['days'] ) ? $fee['days'] : $fee['fee_days'] );
187
  $fee_info['fee_images'] = intval( isset( $fee['images'] ) ? $fee['images'] : $fee['fee_images'] );
188
  $fee_info['recurring'] = $recurring ? 1 : 0;
189
- $fee_info['sticky'] = $fee['sticky'];
190
 
191
  if ( isset( $recurring_data ) )
192
  $fee_info['recurring_data'] = serialize( $recurring_data );
@@ -518,7 +540,7 @@ class WPBDP_Listing {
518
  }
519
 
520
  /**
521
- * @since next-release
522
  */
523
  public function get_sticky_status() {
524
  $sticky_status = get_post_meta( $this->id, '_wpbdp[sticky]', true );
@@ -526,7 +548,7 @@ class WPBDP_Listing {
526
  }
527
 
528
 
529
- public function update( $state ) {
530
  // Set title.
531
  $title = false;
532
 
@@ -551,8 +573,10 @@ class WPBDP_Listing {
551
  $this->set_field_values( $state->fields );
552
  }
553
 
554
- if ( isset( $state->images ) )
555
- $this->set_images( $state->images );
 
 
556
 
557
  $this->save();
558
  }
1
  <?php
2
  require_once( WPBDP_PATH . 'core/class-payment.php' );
3
+ require_once( WPBDP_PATH . 'core/class-listing-image.php' );
4
 
5
  /**
6
  * @since 3.4
51
  return date_i18n( get_option( 'date_format' ), get_post_modified_time( 'U', false, $this->id ) );
52
  }
53
 
54
+ public function get_images( $fields = 'all', $sorted = false ) {
55
+ $q = array( 'numberposts' => -1, 'post_type' => 'attachment', 'post_parent' => $this->id );
56
  $result = array();
57
 
58
+ foreach ( get_posts( $q ) as $attachment ) {
59
+ if ( ! wp_attachment_is_image( $attachment->ID ) )
60
+ continue;
61
+
62
+ if ( 'id' == $fields || 'ids' == $fields )
63
+ $result[] = $attachment->ID;
64
+ else
65
+ $result[] = WPBDP_Listing_Image::get( $attachment->ID );
66
  }
67
 
68
+ if ( $result && $sorted ) {
69
+ uasort( $result, create_function( '$x, $y', "return \$y->weight - \$x->weight;" ) );
70
+ }
71
 
72
  return $result;
73
+ }
74
+
75
+ /**
76
+ * @since 3.6.11
77
+ */
78
+ public function get_images_meta() {
79
+ $images = $this->get_images( 'ids' );
80
+ $meta = array();
81
+
82
+ foreach ( $images as $img_id ) {
83
+ $meta[ $img_id ] = array( 'order' => (int) get_post_meta( $img_id, '_wpbdp_image_weight', true ),
84
+ 'caption' => strval( get_post_meta( $img_id, '_wpbdp_image_caption', true ) ) );
85
+ }
86
+
87
+ return $meta;
88
+ }
89
 
90
  /**
91
  * Sets listing images.
208
  $fee_info['fee_days'] = intval( isset( $fee['days'] ) ? $fee['days'] : $fee['fee_days'] );
209
  $fee_info['fee_images'] = intval( isset( $fee['images'] ) ? $fee['images'] : $fee['fee_images'] );
210
  $fee_info['recurring'] = $recurring ? 1 : 0;
211
+ $fee_info['sticky'] = $fee['sticky'] ? 1 : 0;
212
 
213
  if ( isset( $recurring_data ) )
214
  $fee_info['recurring_data'] = serialize( $recurring_data );
540
  }
541
 
542
  /**
543
+ * @since 3.6.9
544
  */
545
  public function get_sticky_status() {
546
  $sticky_status = get_post_meta( $this->id, '_wpbdp[sticky]', true );
548
  }
549
 
550
 
551
+ public function update( $state, $opts = array() ) {
552
  // Set title.
553
  $title = false;
554
 
573
  $this->set_field_values( $state->fields );
574
  }
575
 
576
+ if ( isset( $state->images ) ) {
577
+ $append = ( ! empty( $opts['append-images'] ) );
578
+ $this->set_images( $state->images, $append );
579
+ }
580
 
581
  $this->save();
582
  }
core/class-recaptcha.php CHANGED
@@ -32,6 +32,9 @@ class WPBDP_reCAPTCHA {
32
  function _enqueue_js_api() {
33
  global $wpbdp;
34
 
 
 
 
35
  wp_enqueue_script( 'wpbdp-recaptcha',
36
  WPBDP_URL . 'core/js/recaptcha' . ( ! $wpbdp->is_debug_on() ? '.min' : '' ) . '.js',
37
  false,
32
  function _enqueue_js_api() {
33
  global $wpbdp;
34
 
35
+ if ( ! $wpbdp->controller->action )
36
+ return '';
37
+
38
  wp_enqueue_script( 'wpbdp-recaptcha',
39
  WPBDP_URL . 'core/js/recaptcha' . ( ! $wpbdp->is_debug_on() ? '.min' : '' ) . '.js',
40
  false,
core/class-settings.php CHANGED
@@ -603,7 +603,7 @@ EOF;
603
  $s = $this->add_section( $g, 'registration', _x( 'Registration Settings', 'admin settings', 'WPBDM' ), $msg );
604
  $this->add_setting($s, 'require-login', _x('Require login to post listings?', 'admin settings', 'WPBDM'), 'boolean', true);
605
 
606
- // deprecated as of 2.1, added again for @next-release
607
  $this->add_setting( $s,
608
  'login-url',
609
  _x( 'Login URL', 'admin settings', 'WPBDM'),
603
  $s = $this->add_section( $g, 'registration', _x( 'Registration Settings', 'admin settings', 'WPBDM' ), $msg );
604
  $this->add_setting($s, 'require-login', _x('Require login to post listings?', 'admin settings', 'WPBDM'), 'boolean', true);
605
 
606
+ // deprecated as of 2.1, added again for 3.6.10
607
  $this->add_setting( $s,
608
  'login-url',
609
  _x( 'Login URL', 'admin settings', 'WPBDM'),
core/class-utils.php CHANGED
@@ -3,7 +3,7 @@
3
  class WPBDP_Utils {
4
 
5
  /**
6
- * @since next-release
7
  */
8
  public static function normalize( $val = '', $opts = array() ) {
9
  $res = strtolower( $val );
3
  class WPBDP_Utils {
4
 
5
  /**
6
+ * @since 3.6.10
7
  */
8
  public static function normalize( $val = '', $opts = array() ) {
9
  $res = strtolower( $val );
core/css/wpbdp.css CHANGED
@@ -384,6 +384,15 @@ ul.wpbdp-categories > li {
384
  font-size: 80%;
385
  }
386
 
 
 
 
 
 
 
 
 
 
387
  .wpbdp-form-field .field-description {
388
  font-size: 90%;
389
  color: #696969;
@@ -436,6 +445,13 @@ ul.validation-errors li {
436
  height: auto;
437
  }
438
 
 
 
 
 
 
 
 
439
 
440
  .wpbdp-submit-page.step-images .area-and-conditions #image-upload-dnd-area {
441
  float: left;
384
  font-size: 80%;
385
  }
386
 
387
+ .wpbdp-submit-page .wpbdp-form-field-type-textarea textarea {
388
+ width: 90%;
389
+ min-height: 50px;
390
+ }
391
+
392
+ .wpbdp-submit-page .wpbdp-form-field-association-content textarea {
393
+ min-height: 80px;
394
+ }
395
+
396
  .wpbdp-form-field .field-description {
397
  font-size: 90%;
398
  color: #696969;
445
  height: auto;
446
  }
447
 
448
+ .wpbdp-submit-page.step-images .wpbdp-image-draggable-highlight {
449
+ width: 160px;
450
+ height: 160px;
451
+ margin: 0 10px;
452
+ background: red;
453
+ float: left;
454
+ }
455
 
456
  .wpbdp-submit-page.step-images .area-and-conditions #image-upload-dnd-area {
457
  float: left;
core/css/wpbdp.min.css CHANGED
@@ -1 +1 @@
1
- form#wpbdmsearchform{padding:12px 0;text-align:center}form#wpbdmsearchform input{display:inline}form#wpbdmsearchform .wpbdmsearchbutton{margin-top:5px}form#wpbdmsearchform a.advanced-search-link{font-size:70%;display:block}#wpbdp-search-form{padding-left:10px}#wpbdp-search-form .wpbdp-search-filter{margin-bottom:10px;clear:both}#wpbdp-search-form .wpbdp-search-filter>.wpbdp-search-field-label{display:block;width:40%;float:left}#wpbdp-search-form .wpbdp-search-filter>div.field{display:block;width:60%;margin-left:40%;padding-left:5px}#wpbdp-search-form .wpbdp-search-filter>div.field>input[type="text"]{width:90%}#wpbdp-search-form .wpbdp-search-filter>div.field>select{width:90%}#wpbdp-search-form input[type="submit"]{width:100px;float:none;margin:auto}.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.cf{*zoom:1}.wpbdp-pagination{margin:25px 0 0 0}.wpbdp-pagination .next{float:right}.listing-actions form{margin:0;padding:0;display:inline}.listing-actions input{margin:0}.listing-actions input.delete-listing{margin-left:5px;margin-right:30px;color:#f00 !important}.listing-actions a.button{padding:5px 10px;font-size:11px;text-decoration:none;background-color:#e6e6e6;color:#7c7c7c;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-ms-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-webkit-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-o-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:linear-gradient(top,#f4f4f4,#e6e6e6);border:1px solid #d2d2d2;border-radius:3px;box-shadow:0 1px 2px rgba(64,64,64,0.1);margin-right:3px}.listing-actions a.button:hover{color:#5e5e5e;background-color:#ebebeb;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-ms-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-webkit-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-o-linear-gradient(top,#f9f9f9,#ebebeb);background-image:linear-gradient(top,#f9f9f9,#ebebeb)}.listing-actions a.delete-listing{margin-left:20px;color:red}.wpbdp-listing .listing-details .field-value{margin-bottom:10px;width:100%;float:none}.wpbdmsingledetails .singledetailsview .field-value{margin-bottom:10px}.field-value label{color:#444;font-weight:bold}.wpbdp-listing-excerpt{padding:10px;border-bottom:dotted 1px #ddd}.wpbdp-listing-excerpt.odd{background:#eee}.wpbdp-listing-excerpt.sticky{background:#fff0cf;border-bottom:solid 1px #b37800}.wpbdp-listing-excerpt .listing-thumbnail{float:right;margin:0 10px 0 0}.wpbdp-listing-excerpt .listing-actions{margin-top:15px}.wpbdp-listing-single .listing-actions{margin-bottom:25px}.wpbdp-listing-single .stickytag{float:right;margin-top:-68px}.wpbdp-listing-single .stickytag img{border:0;box-shadow:none;background:transparent}.wpbdp-listing-single .listing-title{padding:2px 8px;background:#efefef;border:dotted 1px #ddd;margin-bottom:7px}.wpbdp-listing-single .listing-title h2{clear:none;margin:0}.wpbdp-listing-single .main-image{float:right;margin-left:10px;padding:5px}.wpbdp-listing-single .main-image a{position:relative !important}.wpbdp-listing-single .main-image img{border:solid 1px #333}.wpbdp-listing-single .extra-images{margin-top:10px;clear:both}.wpbdp-listing-single .extra-images ul{margin:0 auto;width:100%}.wpbdp-listing-single .extra-images ul li{list-style-type:none;display:inline;margin-left:5px}.wpbdp-listing-single .extra-images ul li img{display:inline;vertical-align:top;margin:0 auto;max-width:150px;border:solid 1px #333}.wpbdp-listing .social-fields{margin:20px 0}.wpbdp-listing .social-field{margin:5px 0;height:30px;vertical-align:middle}.social-field.facebook .fb-like>span{overflow:visible !important;width:450px !important}@media screen and (max-width:500px){.social-field.facebook .fb-like>span{width:100% !important}}.wpbdp-listing .contact-form{margin-top:20px;border-top:dotted 1px #ddd;padding-top:20px;padding-left:10px}.wpbdp-listing .contact-form .send-message-button{margin-left:-10px}.wpbdp-listing .contact-form h3{margin-left:-10px}.wpbdp-listing .contact-form textarea{width:98% !important}.wpbdp-listing .comments{margin-top:20px}.wpbdp-bar{background:#f7f7f7;margin:10px 0 20px 0;padding:5px 10px}.wpbdp-bar .wpbdp-main-links{float:left}.wpbdp-bar .wpbdp-search-form{margin:0;padding:0 !important;margin-left:50%}.wpbdp-main-links a{margin-right:15px}.wpbdp-bar .left{float:left;text-align:center}.wpbdp-bar .right{width:300px;float:right}.wpbdp-listings-sort-options{font-size:90%;margin:5px 0;text-align:right}.wpbdp-listings-sort-options .current{font-weight:bold}.wpbdp-main-page #wpbdp-categories{clear:both;margin-bottom:20px}ul.wpbdp-categories{margin:0 0 10px 15px;padding:0 10px}ul.wpbdp-categories>li{width:50%;float:left;margin:0}@media screen and (max-width:704px){ul.wpbdp-categories>li{float:none;width:initial}}@media screen and (max-width:500px){ul.wpbdp-categories{font-size:90%}ul.wpbdp-categories ul.children li.cat-item{margin-left:10px;padding:0}}.wpbdp-submit-page h3{margin-bottom:10px}.wpbdp-submit-page .wpbdmp{margin:0}.wpbdp-submit-page legend{font-size:85%;margin-bottom:20px}.wpbdp-submit-page .wpbdp-form-field{margin-bottom:8px}.wpbdp-submit-page .wpbdp-form-field .wpbdmcheckboxclass checkbox{margin-left:0}.wpbdp-submit-page .wpbdp-form-field.required .wpbdp-form-field-label:after{content:' *';font-size:80%}.wpbdp-form-field .field-description{font-size:90%;color:#696969;float:right}.wpbdp-form-field span.sublabel{font-size:90%;margin-left:10px;margin-right:10px}.wpbdp-form-field.image a.delete{margin-left:10px}ul.validation-errors{margin:15px 0 15px 0}ul.validation-errors li{color:red;margin:3px 0;list-style-position:inside}.wpbdp-submit-page.step-fees h4{background:#ddd;color:#333;padding:10px;margin-bottom:5px}.wpbdp-submit-page.step-images #image-upload-form{margin:15px 10px}.wpbdp-submit-page.step-images .wpbdp-image{float:left;border-bottom:dotted 1px #efefef;margin-right:10px;margin-bottom:10px;vertical-align:top}.wpbdp-submit-page.step-images .wpbdp-image img{vertical-align:top;text-align:center;max-width:150px;height:auto}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-dnd-area{float:left;width:72%}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions{float:right;width:25%;color:#666}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions dl{margin:0}.wpbdp-submit-page.step-images #image-upload-form-no-js{width:0;height:0;overflow:hidden;visibility:hidden}.wpbdp-submit-page.step-images .wpbdp-image .delete-image{color:red}.wpbdp-submit-page .upgrade-to-featured-option{border:solid 1px #666;padding:5px 10px;margin:25px 0 25px 0;font-size:90%}.wpbdp-msg{font-size:85%;padding:.6em;border:solid 1px #e6db55;color:#555;margin:5px 0;background:#fffbcc;border-radius:3px}.wpbdp-msg.error{background-color:#ffebe8;border-color:#C00}.wpbdp-submit-page table.fee-options{width:100%}.wpbdp-submit-page table.fee-options th,.wpbdp-submit-page table.fee-options td{text-align:center}.wpbdp-submit-page table.fee-options .fee-selection{width:5%}.wpbdp-submit-page table.fee-options tr.fee-option td.fee-label{font-weight:bold}.wpbdp-submit-page table.fee-options td.fee-description{font-size:90%;color:#666}#wpbdp-renewal-page .do-not-renew-listing{margin:40px 0;border:solid 1px #eee;font-size:95%}#wpbdp-renewal-page .do-not-renew-listing .header{background:#bc0b0b;color:#fff;text-align:center;font-weight:bold;padding:2px 0}#wpbdp-renewal-page .do-not-renew-listing input[type="submit"]{color:#900000}.wpbdp-recaptcha-error{color:red}#wpbdp-delete-listing-page form.confirm-form{margin-top:30px}#wpbdp-delete-listing-page input.delete-listing-confirm{margin-left:20px;color:#c00}#googlewallet-buy img{border:0;box-shadow:none}table#wpbdp-manage-recurring th.listing-title,table#wpbdp-manage-recurring td.listing-title{min-width:200px}table#wpbdp-manage-recurring a.cancel-subscription{color:red}#wpbdp-manage-recurring-cancel dl dd{margin-left:10px}.wpbdp-cc-form{padding:0;width:90%}.wpbdp-cc-form h4{margin:0}.wpbdp-cc-field input{width:auto}.wpbdp-cc-field label{display:block;font-weight:bold;text-align:right;padding-right:10px}#wpbdp-billing-information .billing-info-section h4{margin-bottom:5px}#wpbdp-billing-information .billing-info-section table{margin:10px 0 0 20px}#wpbdp-billing-information .form-buttons{margin:15px 0}.wpbdp-show-on-mobile{display:none}@media screen and (max-width:500px){.wpbdp-show-on-mobile{display:inline !important}.wpbdp-hide-on-mobile{display:none}.wpbdp-bar .wpbdp-main-links{display:block}.wpbdp-bar .wpbdp-main-links input[type="button"]{display:block;margin-bottom:2px}.wpbdp-bar form.wpbdp-search-form{width:49%;display:block}.wpbdp-bar form.wpbdp-search-form input[type="text"]{padding:4px 0;margin:0 0 2px 0}.wpbdp-listings-sort-options{font-size:90%}.wpbdp-listing.wpbdp-listing{font-size:90%}.wpbdp-listing.wpbdp-listing-excerpt .field-value>label{display:block}.wpbdp-listing.wpbdp-listing-excerpt .listing-thumbnail{padding:5px}.wpbdp-listing .listing-actions input{font-size:85%}.wpbdp-listing .listing-actions input.back-to-dir{float:right}.wpbdp-listing.wpbdp-listing-single .main-image{display:block;float:none;padding:0;margin:0 0 10px 0;text-align:center;max-width:90%}.wpbdp-listing.wpbdp-listing-single .field-value>label{display:block}.wpbdp-submit-page.step-images #image-upload-dnd-area{font-size:90%;float:none !important;width:100% !important}.wpbdp-submit-page.step-images .dnd-area-inside-error{margin-top:30px}.wpbdp-submit-page.step-images #image-upload-conditions{width:100% !important;float:none !important;font-size:90%}.wpbdp-submit-page.step-images #image-upload-conditions dl{margin:0;padding:0}.wpbdp-submit-page.step-images #image-upload-conditions dl dt{margin:0;margin-right:5px;padding:0;float:left}.wpbdp-submit-page.step-images #image-upload-conditions dl dd{margin:0;padding:0;display:block}.wpbdp-submit-page.step-images .wpbdp-image img{max-width:50%}.wpbdp-listings-sort-options.wpbdp-show-on-mobile{margin-bottom:10px}}body.business-directory #TB_ImageOff .screen-reader-text,body.business-directory #TB_closeWindowButton .screen-reader-text{visibility:hidden}body.business-directory #TB_next{float:right}body.business-directory #TB_prev{float:left}body.business-directory #TB_caption{float:none !important}body.business-directory #TB_closeWindow{padding:0;height:0}body.business-directory #TB_closeWindow .screen-reader-text{display:none}body.business-directory #TB_secondLine{text-align:center}
1
+ form#wpbdmsearchform{padding:12px 0;text-align:center}form#wpbdmsearchform input{display:inline}form#wpbdmsearchform .wpbdmsearchbutton{margin-top:5px}form#wpbdmsearchform a.advanced-search-link{font-size:70%;display:block}#wpbdp-search-form{padding-left:10px}#wpbdp-search-form .wpbdp-search-filter{margin-bottom:10px;clear:both}#wpbdp-search-form .wpbdp-search-filter>.wpbdp-search-field-label{display:block;width:40%;float:left}#wpbdp-search-form .wpbdp-search-filter>div.field{display:block;width:60%;margin-left:40%;padding-left:5px}#wpbdp-search-form .wpbdp-search-filter>div.field>input[type="text"]{width:90%}#wpbdp-search-form .wpbdp-search-filter>div.field>select{width:90%}#wpbdp-search-form input[type="submit"]{width:100px;float:none;margin:auto}.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.cf{*zoom:1}.wpbdp-pagination{margin:25px 0 0 0}.wpbdp-pagination .next{float:right}.listing-actions form{margin:0;padding:0;display:inline}.listing-actions input{margin:0}.listing-actions input.delete-listing{margin-left:5px;margin-right:30px;color:#f00 !important}.listing-actions a.button{padding:5px 10px;font-size:11px;text-decoration:none;background-color:#e6e6e6;color:#7c7c7c;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-ms-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-webkit-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-o-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:linear-gradient(top,#f4f4f4,#e6e6e6);border:1px solid #d2d2d2;border-radius:3px;box-shadow:0 1px 2px rgba(64,64,64,0.1);margin-right:3px}.listing-actions a.button:hover{color:#5e5e5e;background-color:#ebebeb;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-ms-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-webkit-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-o-linear-gradient(top,#f9f9f9,#ebebeb);background-image:linear-gradient(top,#f9f9f9,#ebebeb)}.listing-actions a.delete-listing{margin-left:20px;color:red}.wpbdp-listing .listing-details .field-value{margin-bottom:10px;width:100%;float:none}.wpbdmsingledetails .singledetailsview .field-value{margin-bottom:10px}.field-value label{color:#444;font-weight:bold}.wpbdp-listing-excerpt{padding:10px;border-bottom:dotted 1px #ddd}.wpbdp-listing-excerpt.odd{background:#eee}.wpbdp-listing-excerpt.sticky{background:#fff0cf;border-bottom:solid 1px #b37800}.wpbdp-listing-excerpt .listing-thumbnail{float:right;margin:0 10px 0 0}.wpbdp-listing-excerpt .listing-actions{margin-top:15px}.wpbdp-listing-single .listing-actions{margin-bottom:25px}.wpbdp-listing-single .stickytag{float:right;margin-top:-68px}.wpbdp-listing-single .stickytag img{border:0;box-shadow:none;background:transparent}.wpbdp-listing-single .listing-title{padding:2px 8px;background:#efefef;border:dotted 1px #ddd;margin-bottom:7px}.wpbdp-listing-single .listing-title h2{clear:none;margin:0}.wpbdp-listing-single .main-image{float:right;margin-left:10px;padding:5px}.wpbdp-listing-single .main-image a{position:relative !important}.wpbdp-listing-single .main-image img{border:solid 1px #333}.wpbdp-listing-single .extra-images{margin-top:10px;clear:both}.wpbdp-listing-single .extra-images ul{margin:0 auto;width:100%}.wpbdp-listing-single .extra-images ul li{list-style-type:none;display:inline;margin-left:5px}.wpbdp-listing-single .extra-images ul li img{display:inline;vertical-align:top;margin:0 auto;max-width:150px;border:solid 1px #333}.wpbdp-listing .social-fields{margin:20px 0}.wpbdp-listing .social-field{margin:5px 0;height:30px;vertical-align:middle}.social-field.facebook .fb-like>span{overflow:visible !important;width:450px !important}@media screen and (max-width:500px){.social-field.facebook .fb-like>span{width:100% !important}}.wpbdp-listing .contact-form{margin-top:20px;border-top:dotted 1px #ddd;padding-top:20px;padding-left:10px}.wpbdp-listing .contact-form .send-message-button{margin-left:-10px}.wpbdp-listing .contact-form h3{margin-left:-10px}.wpbdp-listing .contact-form textarea{width:98% !important}.wpbdp-listing .comments{margin-top:20px}.wpbdp-bar{background:#f7f7f7;margin:10px 0 20px 0;padding:5px 10px}.wpbdp-bar .wpbdp-main-links{float:left}.wpbdp-bar .wpbdp-search-form{margin:0;padding:0 !important;margin-left:50%}.wpbdp-main-links a{margin-right:15px}.wpbdp-bar .left{float:left;text-align:center}.wpbdp-bar .right{width:300px;float:right}.wpbdp-listings-sort-options{font-size:90%;margin:5px 0;text-align:right}.wpbdp-listings-sort-options .current{font-weight:bold}.wpbdp-main-page #wpbdp-categories{clear:both;margin-bottom:20px}ul.wpbdp-categories{margin:0 0 10px 15px;padding:0 10px}ul.wpbdp-categories>li{width:50%;float:left;margin:0}@media screen and (max-width:704px){ul.wpbdp-categories>li{float:none;width:initial}}@media screen and (max-width:500px){ul.wpbdp-categories{font-size:90%}ul.wpbdp-categories ul.children li.cat-item{margin-left:10px;padding:0}}.wpbdp-submit-page h3{margin-bottom:10px}.wpbdp-submit-page .wpbdmp{margin:0}.wpbdp-submit-page legend{font-size:85%;margin-bottom:20px}.wpbdp-submit-page .wpbdp-form-field{margin-bottom:8px}.wpbdp-submit-page .wpbdp-form-field .wpbdmcheckboxclass checkbox{margin-left:0}.wpbdp-submit-page .wpbdp-form-field.required .wpbdp-form-field-label:after{content:' *';font-size:80%}.wpbdp-submit-page .wpbdp-form-field-type-textarea textarea{width:90%;min-height:50px}.wpbdp-submit-page .wpbdp-form-field-association-content textarea{min-height:80px}.wpbdp-form-field .field-description{font-size:90%;color:#696969;float:right}.wpbdp-form-field span.sublabel{font-size:90%;margin-left:10px;margin-right:10px}.wpbdp-form-field.image a.delete{margin-left:10px}ul.validation-errors{margin:15px 0 15px 0}ul.validation-errors li{color:red;margin:3px 0;list-style-position:inside}.wpbdp-submit-page.step-fees h4{background:#ddd;color:#333;padding:10px;margin-bottom:5px}.wpbdp-submit-page.step-images #image-upload-form{margin:15px 10px}.wpbdp-submit-page.step-images .wpbdp-image{float:left;border-bottom:dotted 1px #efefef;margin-right:10px;margin-bottom:10px;vertical-align:top}.wpbdp-submit-page.step-images .wpbdp-image img{vertical-align:top;text-align:center;max-width:150px;height:auto}.wpbdp-submit-page.step-images .wpbdp-image-draggable-highlight{width:160px;height:160px;margin:0 10px;background:red;float:left}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-dnd-area{float:left;width:72%}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions{float:right;width:25%;color:#666}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions dl{margin:0}.wpbdp-submit-page.step-images #image-upload-form-no-js{width:0;height:0;overflow:hidden;visibility:hidden}.wpbdp-submit-page.step-images .wpbdp-image .delete-image{color:red}.wpbdp-submit-page .upgrade-to-featured-option{border:solid 1px #666;padding:5px 10px;margin:25px 0 25px 0;font-size:90%}.wpbdp-msg{font-size:85%;padding:.6em;border:solid 1px #e6db55;color:#555;margin:5px 0;background:#fffbcc;border-radius:3px}.wpbdp-msg.error{background-color:#ffebe8;border-color:#C00}.wpbdp-submit-page table.fee-options{width:100%}.wpbdp-submit-page table.fee-options th,.wpbdp-submit-page table.fee-options td{text-align:center}.wpbdp-submit-page table.fee-options .fee-selection{width:5%}.wpbdp-submit-page table.fee-options tr.fee-option td.fee-label{font-weight:bold}.wpbdp-submit-page table.fee-options td.fee-description{font-size:90%;color:#666}#wpbdp-renewal-page .do-not-renew-listing{margin:40px 0;border:solid 1px #eee;font-size:95%}#wpbdp-renewal-page .do-not-renew-listing .header{background:#bc0b0b;color:#fff;text-align:center;font-weight:bold;padding:2px 0}#wpbdp-renewal-page .do-not-renew-listing input[type="submit"]{color:#900000}.wpbdp-recaptcha-error{color:red}#wpbdp-delete-listing-page form.confirm-form{margin-top:30px}#wpbdp-delete-listing-page input.delete-listing-confirm{margin-left:20px;color:#c00}#googlewallet-buy img{border:0;box-shadow:none}table#wpbdp-manage-recurring th.listing-title,table#wpbdp-manage-recurring td.listing-title{min-width:200px}table#wpbdp-manage-recurring a.cancel-subscription{color:red}#wpbdp-manage-recurring-cancel dl dd{margin-left:10px}.wpbdp-cc-form{padding:0;width:90%}.wpbdp-cc-form h4{margin:0}.wpbdp-cc-field input{width:auto}.wpbdp-cc-field label{display:block;font-weight:bold;text-align:right;padding-right:10px}#wpbdp-billing-information .billing-info-section h4{margin-bottom:5px}#wpbdp-billing-information .billing-info-section table{margin:10px 0 0 20px}#wpbdp-billing-information .form-buttons{margin:15px 0}.wpbdp-show-on-mobile{display:none}@media screen and (max-width:500px){.wpbdp-show-on-mobile{display:inline !important}.wpbdp-hide-on-mobile{display:none}.wpbdp-bar .wpbdp-main-links{display:block}.wpbdp-bar .wpbdp-main-links input[type="button"]{display:block;margin-bottom:2px}.wpbdp-bar form.wpbdp-search-form{width:49%;display:block}.wpbdp-bar form.wpbdp-search-form input[type="text"]{padding:4px 0;margin:0 0 2px 0}.wpbdp-listings-sort-options{font-size:90%}.wpbdp-listing.wpbdp-listing{font-size:90%}.wpbdp-listing.wpbdp-listing-excerpt .field-value>label{display:block}.wpbdp-listing.wpbdp-listing-excerpt .listing-thumbnail{padding:5px}.wpbdp-listing .listing-actions input{font-size:85%}.wpbdp-listing .listing-actions input.back-to-dir{float:right}.wpbdp-listing.wpbdp-listing-single .main-image{display:block;float:none;padding:0;margin:0 0 10px 0;text-align:center;max-width:90%}.wpbdp-listing.wpbdp-listing-single .field-value>label{display:block}.wpbdp-submit-page.step-images #image-upload-dnd-area{font-size:90%;float:none !important;width:100% !important}.wpbdp-submit-page.step-images .dnd-area-inside-error{margin-top:30px}.wpbdp-submit-page.step-images #image-upload-conditions{width:100% !important;float:none !important;font-size:90%}.wpbdp-submit-page.step-images #image-upload-conditions dl{margin:0;padding:0}.wpbdp-submit-page.step-images #image-upload-conditions dl dt{margin:0;margin-right:5px;padding:0;float:left}.wpbdp-submit-page.step-images #image-upload-conditions dl dd{margin:0;padding:0;display:block}.wpbdp-submit-page.step-images .wpbdp-image img{max-width:50%}.wpbdp-listings-sort-options.wpbdp-show-on-mobile{margin-bottom:10px}}body.business-directory #TB_ImageOff .screen-reader-text,body.business-directory #TB_closeWindowButton .screen-reader-text{visibility:hidden}body.business-directory #TB_next{float:right}body.business-directory #TB_prev{float:left}body.business-directory #TB_caption{float:none !important}body.business-directory #TB_closeWindow{padding:0;height:0}body.business-directory #TB_closeWindow .screen-reader-text{display:none}body.business-directory #TB_secondLine{text-align:center}
core/fieldtypes/class-fieldtypes-image.php CHANGED
@@ -30,7 +30,7 @@ class WPBDP_FieldTypes_Image extends WPBDP_Form_Field_Type {
30
 
31
  $html .= '<div class="preview">';
32
  if ($value)
33
- $html .= wp_get_attachment_image( $value, 'thumb', false );
34
 
35
  $html .= sprintf( '<a href="http://google.com" class="delete" onclick="return WPBDP.fileUpload.deleteUpload(%d);" style="%s">%s</a>',
36
  $field->get_id(),
@@ -62,12 +62,13 @@ class WPBDP_FieldTypes_Image extends WPBDP_Form_Field_Type {
62
  if ( ! $img_id )
63
  return '';
64
 
 
65
  $img = wp_get_attachment_image_src( $img_id, 'large' );
66
 
67
  $html = '';
68
  $html .= '<br />';
69
  $html .= '<a href="' . esc_url( $img[0] ) . '" target="_blank" ' . ( wpbdp_get_option( 'use-thickbox' ) ? 'class="thickbox" data-lightbox="wpbdpgal" rel="wpbdpgal"' : '' ) . '>';
70
- $html .= wp_get_attachment_image( $img_id, 'thumb', false );
71
  $html .= '</a>';
72
 
73
  return $html;
30
 
31
  $html .= '<div class="preview">';
32
  if ($value)
33
+ $html .= wp_get_attachment_image( $value, 'wpbdp-thumb', false );
34
 
35
  $html .= sprintf( '<a href="http://google.com" class="delete" onclick="return WPBDP.fileUpload.deleteUpload(%d);" style="%s">%s</a>',
36
  $field->get_id(),
62
  if ( ! $img_id )
63
  return '';
64
 
65
+ _wpbdp_resize_image_if_needed( $img_id );
66
  $img = wp_get_attachment_image_src( $img_id, 'large' );
67
 
68
  $html = '';
69
  $html .= '<br />';
70
  $html .= '<a href="' . esc_url( $img[0] ) . '" target="_blank" ' . ( wpbdp_get_option( 'use-thickbox' ) ? 'class="thickbox" data-lightbox="wpbdpgal" rel="wpbdpgal"' : '' ) . '>';
71
+ $html .= wp_get_attachment_image( $img_id, 'wpbdp-thumb', false );
72
  $html .= '</a>';
73
 
74
  return $html;
core/fieldtypes/class-fieldtypes-textarea.php CHANGED
@@ -17,12 +17,27 @@ class WPBDP_FieldTypes_TextArea extends WPBDP_Form_Field_Type {
17
  return $wpbdp->formfields->get_field_type( 'textfield' )->render_field_inner( $field, $value, $context, $extra, $field_settings );
18
  }
19
 
20
- return sprintf('<textarea id="%s" name="%s" class="intextarea textarea %s">%s</textarea>',
 
 
 
 
21
  'wpbdp-field-' . $field->get_id(),
22
- 'listingfields[' . $field->get_id() . ']',
23
- $field->is_required() ? 'required' : '',
24
- $value ? esc_attr( $value ) : '' );
 
 
 
 
 
 
 
 
 
 
25
 
 
26
  }
27
 
28
  public function get_supported_associations() {
@@ -39,7 +54,13 @@ class WPBDP_FieldTypes_TextArea extends WPBDP_Form_Field_Type {
39
  $settings['allow_shortcodes'][] = _x( 'Allow WordPress shortcodes in this field?', 'form-fields admin', 'WPBDM' );
40
  $settings['allow_shortcodes'][] = '<input type="checkbox" value="1" name="field[allow_shortcodes]" ' . ( $field && $field->data( 'allow_shortcodes' ) ? ' checked="checked"' : '' ) . ' />';
41
 
42
- //$desc = _x( 'Useful for integrating with some plugins.', 'form-fields admin', 'WPBDM' ) . '<br />';
 
 
 
 
 
 
43
  $desc = _x( '<b>Advanced users only!</b> Unless you\'ve been told to change this, don\'t switch it unless you know what you\'re doing.', 'form-fields admin', 'WPBDM' );
44
  $settings['allow_filters'][] = _x( 'Apply "the_content" filter before displaying this field?', 'form-fields admin', 'WPBDM' );
45
  $settings['allow_filters'][] = '<input type="checkbox" value="1" name="field[allow_filters]" ' . ( $field && $field->data( 'allow_filters' ) ? ' checked="checked"' : '' ) . ' /> <span class="description">' . $desc . '</span>';
@@ -52,6 +73,23 @@ class WPBDP_FieldTypes_TextArea extends WPBDP_Form_Field_Type {
52
  $field->set_data( 'allow_html', isset( $_POST['field']['allow_html'] ) ? (bool) intval( $_POST['field']['allow_html'] ) : false );
53
  $field->set_data( 'allow_filters', isset( $_POST['field']['allow_filters'] ) ? (bool) intval( $_POST['field']['allow_filters'] ) : false );
54
  $field->set_data( 'allow_shortcodes', isset( $_POST['field']['allow_shortcodes'] ) ? (bool) intval( $_POST['field']['allow_shortcodes'] ) : false );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  }
56
 
57
  public function get_field_html_value( &$field, $post_id ) {
@@ -66,14 +104,19 @@ class WPBDP_FieldTypes_TextArea extends WPBDP_Form_Field_Type {
66
  if ( 'content' == $field->get_association() ) {
67
  if ( $field->data( 'allow_filters' ) ) {
68
  $value = apply_filters( 'the_content', $value );
69
- } elseif ( $field->data( 'allow_shortcodes' ) ) {
70
- global $post;
71
- // Try to protect us from sortcodes messing things for us.
72
- $current_post = $post;
73
- $value = do_shortcode( nl2br( $value ) );
74
- $post = $current_post;
75
  } else {
76
- $value = nl2br( $value );
 
 
 
 
 
 
 
 
 
 
 
77
  }
78
  } else {
79
  $value = nl2br( $value );
17
  return $wpbdp->formfields->get_field_type( 'textfield' )->render_field_inner( $field, $value, $context, $extra, $field_settings );
18
  }
19
 
20
+ $html = '';
21
+
22
+ if ( 'content' == $field->get_association() && $field->data( 'allow_html' ) && $field->data( 'wysiwyg_editor' ) ) {
23
+ ob_start();
24
+ wp_editor( $value ? $value: '',
25
  'wpbdp-field-' . $field->get_id(),
26
+ array( 'textarea_name' => 'listingfields[' . $field->get_id() . ']',
27
+ 'drag_drop_upload' => false,
28
+ 'media_buttons' => false,
29
+ 'quicktags' => ( (bool) $field->data( 'wysiwyg_images' ) ) ? true : false ) );
30
+ $html .= ob_get_contents();
31
+ ob_end_clean();
32
+ } else {
33
+ $html .= sprintf('<textarea id="%s" name="%s" class="intextarea textarea %s">%s</textarea>',
34
+ 'wpbdp-field-' . $field->get_id(),
35
+ 'listingfields[' . $field->get_id() . ']',
36
+ $field->is_required() ? 'required' : '',
37
+ $value ? esc_attr( $value ) : '' );
38
+ }
39
 
40
+ return $html;
41
  }
42
 
43
  public function get_supported_associations() {
54
  $settings['allow_shortcodes'][] = _x( 'Allow WordPress shortcodes in this field?', 'form-fields admin', 'WPBDM' );
55
  $settings['allow_shortcodes'][] = '<input type="checkbox" value="1" name="field[allow_shortcodes]" ' . ( $field && $field->data( 'allow_shortcodes' ) ? ' checked="checked"' : '' ) . ' />';
56
 
57
+ $settings['wysiwyg_editor'][] = _x( 'Display a WYSIWYG editor on the frontend?', 'form-fields admin', 'WPBDM' );
58
+ $settings['wysiwyg_editor'][] = '<input type="checkbox" value="1" name="field[wysiwyg_editor]" ' . ( $field && $field->data( 'wysiwyg_editor' ) ? ' checked="checked"' : '' ) . ' />';
59
+
60
+ $desc = _x( '<b>Warning:</b> Users can use this feature to get around your image limits in fee plans.', 'form-fields admin', 'WPBDM' );
61
+ $settings['wysiwyg_images'][] = _x( 'Allow images in WYSIWYG editor?', 'form-fields admin', 'WPBDM' );
62
+ $settings['wysiwyg_images'][] = '<input type="checkbox" value="1" name="field[wysiwyg_images]" ' . ( $field && $field->data( 'wysiwyg_images' ) ? ' checked="checked"' : '' ) . ' /> <span class="description">' . $desc . '</span>';
63
+
64
  $desc = _x( '<b>Advanced users only!</b> Unless you\'ve been told to change this, don\'t switch it unless you know what you\'re doing.', 'form-fields admin', 'WPBDM' );
65
  $settings['allow_filters'][] = _x( 'Apply "the_content" filter before displaying this field?', 'form-fields admin', 'WPBDM' );
66
  $settings['allow_filters'][] = '<input type="checkbox" value="1" name="field[allow_filters]" ' . ( $field && $field->data( 'allow_filters' ) ? ' checked="checked"' : '' ) . ' /> <span class="description">' . $desc . '</span>';
73
  $field->set_data( 'allow_html', isset( $_POST['field']['allow_html'] ) ? (bool) intval( $_POST['field']['allow_html'] ) : false );
74
  $field->set_data( 'allow_filters', isset( $_POST['field']['allow_filters'] ) ? (bool) intval( $_POST['field']['allow_filters'] ) : false );
75
  $field->set_data( 'allow_shortcodes', isset( $_POST['field']['allow_shortcodes'] ) ? (bool) intval( $_POST['field']['allow_shortcodes'] ) : false );
76
+ $field->set_data( 'wysiwyg_editor', isset( $_POST['field']['wysiwyg_editor'] ) ? (bool) intval( $_POST['field']['wysiwyg_editor'] ) : false );
77
+ $field->set_data( 'wysiwyg_images', isset( $_POST['field']['wysiwyg_images'] ) ? (bool) intval( $_POST['field']['wysiwyg_images'] ) : false );
78
+ }
79
+
80
+ public function store_field_value( &$field, $post_id, $value ) {
81
+ if ( 'content' == $field->get_association() ) {
82
+ if ( $field->data( 'allow_html' ) && $field->data( 'wysiwyg_editor' ) && ! $field->data( 'wysiwyg_images' ) ) {
83
+ $tags = wp_kses_allowed_html( 'post' );
84
+
85
+ if ( isset( $tags['img'] ) )
86
+ unset( $tags['img'] );
87
+
88
+ $value = wp_kses( $value, $tags );
89
+ }
90
+ }
91
+
92
+ return parent::store_field_value( $field, $post_id, $value );
93
  }
94
 
95
  public function get_field_html_value( &$field, $post_id ) {
104
  if ( 'content' == $field->get_association() ) {
105
  if ( $field->data( 'allow_filters' ) ) {
106
  $value = apply_filters( 'the_content', $value );
 
 
 
 
 
 
107
  } else {
108
+ if ( ! $field->data( 'wysiwyg_editor' ) ) {
109
+ // Do not modify HTML output from WYSIWYG editor.
110
+ $value = nl2br( $value );
111
+ }
112
+
113
+ if ( $field->data( 'allow_shortcodes' ) ) {
114
+ global $post;
115
+ // Try to protect us from sortcodes messing things for us.
116
+ $current_post = $post;
117
+ $value = do_shortcode( nl2br( $value ) );
118
+ $post = $current_post;
119
+ }
120
  }
121
  } else {
122
  $value = nl2br( $value );
core/form-fields.php CHANGED
@@ -296,7 +296,7 @@ class WPBDP_FormFields {
296
  }
297
 
298
  /**
299
- * @since next-release
300
  */
301
  public function get_default_fields( $id = '' ) {
302
  $default_fields = array(
296
  }
297
 
298
  /**
299
+ * @since 3.6.9
300
  */
301
  public function get_default_fields( $id = '' ) {
302
  $default_fields = array(
core/helpers/class-fs.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /**
3
- * @since next-release
4
  */
5
  final class WPBDP_FS {
6
 
1
  <?php
2
  /**
3
+ * @since 3.6.10
4
  */
5
  final class WPBDP_FS {
6
 
core/js/submit-listing.js ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ jQuery(function( $ ) {
2
+ $( '#wpbdp-submit-page.step-images #wpbdp-uploaded-images' ).sortable({
3
+ placeholder: 'wpbdp-image-draggable-highlight',
4
+ update: function( event, ui ) {
5
+ var sorted = $( '#wpbdp-uploaded-images' ).sortable( 'toArray', { attribute: "data-imageid" } );
6
+ var no_images = sorted.length;
7
+
8
+ $.each( sorted, function( i, v ) {
9
+ $( 'input[name="images_meta[' + v + '][order]"]' ).val( no_images - i );
10
+ } );
11
+ }
12
+ });
13
+ });
core/js/submit-listing.min.js ADDED
@@ -0,0 +1 @@
 
1
+ jQuery(function($){$("#wpbdp-submit-page.step-images #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)})}})});
core/payment.php CHANGED
@@ -21,6 +21,7 @@ class WPBDP_FeesAPI {
21
  $fee->days = intval(wpbdp_get_option('listing-duration'));
22
  $fee->categories = array('all' => true, 'categories' => array());
23
  $fee->extra_data = null;
 
24
 
25
  return $fee;
26
  }
21
  $fee->days = intval(wpbdp_get_option('listing-duration'));
22
  $fee->categories = array('all' => true, 'categories' => array());
23
  $fee->extra_data = null;
24
+ $fee->sticky = 0;
25
 
26
  return $fee;
27
  }
core/templates-listings.php CHANGED
@@ -64,24 +64,26 @@ function _wpbdp_render_single() {
64
  $listing_fields = implode( '', WPBDP_ListingFieldDisplayItem::walk_set( 'html', $d->fields ) );
65
  $social_fields = implode( '', WPBDP_ListingFieldDisplayItem::walk_set( 'html', $d->social ) );
66
 
 
 
67
  // images
68
- $thumbnail_id = wpbdp_listings_api()->get_thumbnail_id($post->ID);
69
- $images = wpbdp_listings_api()->get_images($post->ID);
70
  $extra_images = array();
71
 
72
  if ( wpbdp_get_option( 'allow-images' ) ) {
73
  foreach ($images as $img) {
74
  // create thumbnail of correct size if needed (only in single view to avoid consuming server resources)
75
- _wpbdp_resize_image_if_needed( $img->ID );
76
 
77
- if ($img->ID == $thumbnail_id) continue;
78
 
79
- $full_image_data = wp_get_attachment_image_src( $img->ID, 'wpbdp-large', false );
80
  $full_image_url = $full_image_data[0];
81
 
82
  $extra_images[] = sprintf('<a href="%s" class="thickbox" data-lightbox="wpbdpgal" rel="wpbdpgal" target="_blank">%s</a>',
83
  $full_image_url,
84
- wp_get_attachment_image( $img->ID, 'wpbdp-thumb', false, array(
85
  'class' => 'wpbdp-thumbnail size-thumbnail',
86
  'alt' => the_title(null, null, false),
87
  'title' => the_title(null, null, false)
@@ -198,7 +200,7 @@ function wpbdp_latest_listings($n=10, $before='<ul>', $after='</ul>', $before_it
198
  }
199
 
200
  /**
201
- * @since next-release
202
  */
203
  function wpbdp_listing_css_class( $class_ = '', $post_id = null ) {
204
  global $wpdb;
64
  $listing_fields = implode( '', WPBDP_ListingFieldDisplayItem::walk_set( 'html', $d->fields ) );
65
  $social_fields = implode( '', WPBDP_ListingFieldDisplayItem::walk_set( 'html', $d->social ) );
66
 
67
+ $listing = WPBDP_Listing::get( $post->ID );
68
+
69
  // images
70
+ $thumbnail_id = $listing->get_thumbnail_id();
71
+ $images = $listing->get_images( 'all', true );
72
  $extra_images = array();
73
 
74
  if ( wpbdp_get_option( 'allow-images' ) ) {
75
  foreach ($images as $img) {
76
  // create thumbnail of correct size if needed (only in single view to avoid consuming server resources)
77
+ _wpbdp_resize_image_if_needed( $img->id );
78
 
79
+ if ($img->id == $thumbnail_id) continue;
80
 
81
+ $full_image_data = wp_get_attachment_image_src( $img->id, 'wpbdp-large', false );
82
  $full_image_url = $full_image_data[0];
83
 
84
  $extra_images[] = sprintf('<a href="%s" class="thickbox" data-lightbox="wpbdpgal" rel="wpbdpgal" target="_blank">%s</a>',
85
  $full_image_url,
86
+ wp_get_attachment_image( $img->id, 'wpbdp-thumb', false, array(
87
  'class' => 'wpbdp-thumbnail size-thumbnail',
88
  'alt' => the_title(null, null, false),
89
  'title' => the_title(null, null, false)
200
  }
201
 
202
  /**
203
+ * @since 3.6.10
204
  */
205
  function wpbdp_listing_css_class( $class_ = '', $post_id = null ) {
206
  global $wpdb;
core/utils.php CHANGED
@@ -376,7 +376,7 @@ function wpbdp_scandir( $path, $args = array() ) {
376
  * Recursively deletes a directory.
377
  * @param string $path a directory.
378
  * @since 3.3
379
- * @deprecated since next-release. Use {@link WPBDP_FS::rmdir} instead.
380
  */
381
  function wpbdp_rrmdir( $path ) {
382
  return WPBDP_FS::rmdir( $path );
376
  * Recursively deletes a directory.
377
  * @param string $path a directory.
378
  * @since 3.3
379
+ * @deprecated since 3.6.10. Use {@link WPBDP_FS::rmdir} instead.
380
  */
381
  function wpbdp_rrmdir( $path ) {
382
  return WPBDP_FS::rmdir( $path );
core/view-submit-listing.php CHANGED
@@ -323,6 +323,28 @@ class WPBDP_Submit_Listing_Page extends WPBDP_View {
323
  );
324
  }
325
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
326
  protected function step_images() {
327
  // Calculate image slots this listing can use.
328
  $image_slots = 0;
@@ -338,7 +360,9 @@ class WPBDP_Submit_Listing_Page extends WPBDP_View {
338
  return $this->dispatch();
339
  }
340
 
341
- $images = $this->state->images;
 
 
342
  $thumbnail_id = $this->state->thumbnail_id;
343
  $image_slots_remaining = $image_slots - count( $images );
344
  $image_min_file_size = size_format( intval( wpbdp_get_option( 'image-min-filesize' ) ) * 1024 );
@@ -349,6 +373,13 @@ class WPBDP_Submit_Listing_Page extends WPBDP_View {
349
  $this->state->thumbnail_id = $thumbnail_id;
350
 
351
  if ( isset( $_POST['finish'] ) ) {
 
 
 
 
 
 
 
352
  $this->state->advance();
353
  return $this->dispatch();
354
  }
@@ -357,6 +388,7 @@ class WPBDP_Submit_Listing_Page extends WPBDP_View {
357
  compact( 'image_max_file_size',
358
  'image_min_file_size',
359
  'images',
 
360
  'image_slots',
361
  'image_slots_remaining' )
362
  );
@@ -385,6 +417,11 @@ class WPBDP_Submit_Listing_Page extends WPBDP_View {
385
  $listing->set_images( $this->state->images );
386
  $listing->set_thumbnail_id( $this->state->thumbnail_id );
387
 
 
 
 
 
 
388
  if ( ! $this->state->editing ) {
389
  // Generate payment for the listing.
390
  $payment = new WPBDP_Payment( array( 'listing_id' => $listing->get_id() ) );
@@ -498,6 +535,7 @@ class WPBDP_Listing_Submit_State {
498
  public $editing = false;
499
 
500
  public $images = array();
 
501
  public $thumbnail_id = 0;
502
 
503
 
@@ -518,6 +556,7 @@ class WPBDP_Listing_Submit_State {
518
 
519
  // Image information.
520
  $this->images = $listing->get_images( 'ids' );
 
521
  $this->thumbnail_id = $listing->get_thumbnail_id();
522
 
523
  // Fields.
323
  );
324
  }
325
 
326
+ private function sort_images( $images_, $meta ) {
327
+ // Sort inside $meta first.
328
+ uasort( $meta, create_function( '$x, $y', "return \$y['order'] - \$x['order'];" ) );
329
+
330
+ // Sort $images_ considering $meta.
331
+ $images = array();
332
+
333
+ foreach ( array_keys( $meta ) as $img_id ) {
334
+ if ( in_array( $img_id, $images_, true ) )
335
+ $images[] = $img_id;
336
+ }
337
+
338
+ foreach ( $images_ as $img_id ) {
339
+ if ( in_array( $img_id, $images, true ) )
340
+ continue;
341
+
342
+ $images[] = $img_id;
343
+ }
344
+
345
+ return $images;
346
+ }
347
+
348
  protected function step_images() {
349
  // Calculate image slots this listing can use.
350
  $image_slots = 0;
360
  return $this->dispatch();
361
  }
362
 
363
+ $images_meta = $this->state->images_meta;
364
+ $images = $this->sort_images( $this->state->images, $images_meta );
365
+
366
  $thumbnail_id = $this->state->thumbnail_id;
367
  $image_slots_remaining = $image_slots - count( $images );
368
  $image_min_file_size = size_format( intval( wpbdp_get_option( 'image-min-filesize' ) ) * 1024 );
373
  $this->state->thumbnail_id = $thumbnail_id;
374
 
375
  if ( isset( $_POST['finish'] ) ) {
376
+ foreach ( $this->state->images as $img_id ) {
377
+ $img_meta = isset( $_POST['images_meta'][ $img_id ] ) ? (array) $_POST['images_meta'][ $img_id ] : array();
378
+
379
+ $this->state->images_meta[ $img_id ]['order'] = ( ! empty( $img_meta['order'] ) ) ? intval( $img_meta['order'] ) : 0;
380
+ $this->state->images_meta[ $img_id ]['caption'] = ( ! empty( $img_meta['caption'] ) ) ? strval( $img_meta['caption'] ) : '';
381
+ }
382
+
383
  $this->state->advance();
384
  return $this->dispatch();
385
  }
388
  compact( 'image_max_file_size',
389
  'image_min_file_size',
390
  'images',
391
+ 'images_meta',
392
  'image_slots',
393
  'image_slots_remaining' )
394
  );
417
  $listing->set_images( $this->state->images );
418
  $listing->set_thumbnail_id( $this->state->thumbnail_id );
419
 
420
+ foreach ( $this->state->images_meta as $img_id => $img_meta ) {
421
+ update_post_meta( $img_id, '_wpbdp_image_weight', $img_meta[ 'order' ] );
422
+ update_post_meta( $img_id, '_wpbdp_image_caption', $img_meta[ 'caption' ] );
423
+ }
424
+
425
  if ( ! $this->state->editing ) {
426
  // Generate payment for the listing.
427
  $payment = new WPBDP_Payment( array( 'listing_id' => $listing->get_id() ) );
535
  public $editing = false;
536
 
537
  public $images = array();
538
+ public $images_meta = array();
539
  public $thumbnail_id = 0;
540
 
541
 
556
 
557
  // Image information.
558
  $this->images = $listing->get_images( 'ids' );
559
+ $this->images_meta = $listing->get_images_meta();
560
  $this->thumbnail_id = $listing->get_thumbnail_id();
561
 
562
  // Fields.
core/views.php CHANGED
@@ -19,6 +19,8 @@ class WPBDP_DirectoryController {
19
  add_action( 'template_redirect', array( &$this, 'handle_login_redirect' ), 20 );
20
 
21
  $this->_extra_sections = array();
 
 
22
  }
23
 
24
  public function check_main_page(&$msg) {
@@ -52,6 +54,17 @@ class WPBDP_DirectoryController {
52
  }
53
  }
54
 
 
 
 
 
 
 
 
 
 
 
 
55
  public function get_current_action() {
56
  return $this->action;
57
  }
19
  add_action( 'template_redirect', array( &$this, 'handle_login_redirect' ), 20 );
20
 
21
  $this->_extra_sections = array();
22
+
23
+ add_action( 'wpbdp_enqueue_scripts', array( &$this, '_enqueue_view_scripts' ) );
24
  }
25
 
26
  public function check_main_page(&$msg) {
54
  }
55
  }
56
 
57
+ function _enqueue_view_scripts() {
58
+ switch ( $this->action ) {
59
+ case 'submitlisting':
60
+ case 'editlisting':
61
+ wp_enqueue_script( 'wpbdp-submit-listing', WPBDP_URL . 'core/js/submit-listing.js', array( 'jquery-ui-sortable' ) );
62
+ break;
63
+ default:
64
+ break;
65
+ }
66
+ }
67
+
68
  public function get_current_action() {
69
  return $this->action;
70
  }
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: 2015-11-17 23:37:00+00:00\n"
8
  "PO-Revision-Date: 2015-03-10 03:22+0100\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
@@ -17,93 +17,99 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
 
20
- #: admin/class-admin-listings.php:24
 
 
 
 
 
 
21
  msgid "Listing Information"
22
  msgstr "Eintrag Informationen"
23
 
24
- #: admin/class-admin-listings.php:31
25
  msgctxt "admin"
26
  msgid "Listing Fields / Images"
27
  msgstr "Eintrag Felder / Bilder"
28
 
29
- #: admin/class-admin-listings.php:42
30
  msgctxt "admin"
31
  msgid "Categories"
32
  msgstr "Kategorien"
33
 
34
- #: admin/class-admin-listings.php:43
35
  msgid "Payment Status"
36
  msgstr "Zahlungsstatus"
37
 
38
- #: admin/class-admin-listings.php:44
39
  msgid "Featured (Sticky) Status"
40
  msgstr "unterstützter (unbeweglicher) Status"
41
 
42
- #: admin/class-admin-listings.php:75
43
  msgctxt "admin"
44
  msgid "(Listing expired in this category)"
45
  msgstr "(Der Eintrag ist in dieser Kategorie abgelaufen)"
46
 
47
- #: admin/class-admin-listings.php:93 admin/class-admin-listings.php:176
48
  msgid "Paid"
49
  msgstr "Bezahlt"
50
 
51
- #: admin/class-admin-listings.php:98
52
  msgid "Mark as"
53
  msgstr "Markieren als"
54
 
55
- #: admin/class-admin-listings.php:107 admin/class-admin-listings.php:186
56
  msgid "Pending Upgrade"
57
  msgstr "Ausstehende Aktualisierung"
58
 
59
- #: admin/class-admin-listings.php:115 admin/listing-metabox.php:68
60
  msgid "Upgrade to %s"
61
  msgstr "Aktualisieren auf %s"
62
 
63
- #: admin/class-admin-listings.php:122 admin/listing-metabox.php:75
64
  msgid "Downgrade to %s"
65
  msgstr "Zurücksetzen auf %s"
66
 
67
- #: admin/class-admin-listings.php:125 admin/class-admin-listings.php:295
68
  msgctxt "admin actions"
69
  msgid "Upgrade to Featured"
70
  msgstr "Aktualisieren auf Eingestellt"
71
 
72
- #: admin/class-admin-listings.php:181
73
  msgid "Unpaid"
74
  msgstr "Unbezahlt"
75
 
76
- #: admin/class-admin-listings.php:191
77
  msgctxt "admin"
78
  msgid "Expired"
79
  msgstr "Abgelaufen"
80
 
81
- #: admin/class-admin-listings.php:241
82
  msgctxt "admin actions"
83
  msgid "Edit Listing"
84
  msgstr "Eintrag Bearbeiten"
85
 
86
- #: admin/class-admin-listings.php:244
87
  msgctxt "admin actions"
88
  msgid "Delete Listing"
89
  msgstr "Eintrag Löschen"
90
 
91
- #: admin/class-admin-listings.php:293
92
  msgctxt "admin actions"
93
  msgid "Publish Listing"
94
  msgstr "Eintrag veröffentlichen"
95
 
96
- #: admin/class-admin-listings.php:296
97
  msgctxt "admin actions"
98
  msgid "Downgrade to Normal"
99
  msgstr "Zurücksetzen auf Normal"
100
 
101
- #: admin/class-admin-listings.php:298
102
  msgctxt "admin actions"
103
  msgid "Mark as Paid"
104
  msgstr "Als Bezahlt Markieren"
105
 
106
- #: admin/class-admin-listings.php:300
107
  msgctxt "admin actions"
108
  msgid "Renew Listing"
109
  msgstr "Eintrag erneuern"
@@ -1336,7 +1342,7 @@ msgctxt "admin csv-import"
1336
  msgid "Warning"
1337
  msgstr "Warnung"
1338
 
1339
- #: admin/templates/csv-import.tpl.php:12 admin/templates/csv-import.tpl.php:216
1340
  msgctxt "admin csv-import"
1341
  msgid "Help"
1342
  msgstr "Hilfe "
@@ -1431,25 +1437,41 @@ msgstr "Generiere Fehler when eine Kategorie nicht gefunden wird"
1431
 
1432
  #: admin/templates/csv-import.tpl.php:171
1433
  msgctxt "admin csv-import"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1434
  msgid "Assign listings to a user?"
1435
  msgstr "Einträge einem Benutzer zuweisen?"
1436
 
1437
- #: admin/templates/csv-import.tpl.php:177
1438
  msgctxt "admin csv-import"
1439
  msgid "Assign listings to a user."
1440
  msgstr "Einträge einem Benutzer zuweisen."
1441
 
1442
- #: admin/templates/csv-import.tpl.php:182
1443
  msgctxt "admin csv-import"
1444
  msgid "Default listing user"
1445
  msgstr "Standardbenutzer Einträge"
1446
 
1447
- #: admin/templates/csv-import.tpl.php:187
1448
  msgctxt "admin csv-import"
1449
  msgid "Use spreadsheet information only."
1450
  msgstr "Benutze nur Tabelleninformationen."
1451
 
1452
- #: admin/templates/csv-import.tpl.php:193
1453
  msgctxt "admin csv-import"
1454
  msgid ""
1455
  "This user will be used if the username column is not present in the CSV file."
@@ -1457,28 +1479,28 @@ msgstr ""
1457
  "Dieser Benutzer wird verwendet wenn die Spalte Benutzername nicht in der CSV "
1458
  "Datei vorhanden ist."
1459
 
1460
- #: admin/templates/csv-import.tpl.php:198
1461
  msgctxt "admin csv-import"
1462
  msgid "Disable e-mail notifications during import?"
1463
  msgstr ""
1464
 
1465
- #: admin/templates/csv-import.tpl.php:203
1466
  #, fuzzy
1467
  msgctxt "admin csv-import"
1468
  msgid "Disable e-mail notifications."
1469
  msgstr "Email Erinnerung"
1470
 
1471
- #: admin/templates/csv-import.tpl.php:209
1472
  msgctxt "admin csv-import"
1473
  msgid "Test Import"
1474
  msgstr "Importtest"
1475
 
1476
- #: admin/templates/csv-import.tpl.php:210
1477
  msgctxt "admin csv-import"
1478
  msgid "Import Listings"
1479
  msgstr "Einträge importieren"
1480
 
1481
- #: admin/templates/csv-import.tpl.php:218
1482
  msgctxt "admin csv-import"
1483
  msgid ""
1484
  "The following are the valid header names to be used in the CSV file. "
@@ -1491,42 +1513,42 @@ msgstr ""
1491
  "erscheinen. Klicke <a href=\"%s\">\"CSV Import Beispieldatei anschauen\"</"
1492
  "a>, um zu sehen wie eine Importdatei aussehen muss."
1493
 
1494
- #: admin/templates/csv-import.tpl.php:225
1495
  msgctxt "admin csv-import"
1496
  msgid "Header name/label"
1497
  msgstr "Kopfname/Bezeichnung"
1498
 
1499
- #: admin/templates/csv-import.tpl.php:226
1500
  msgctxt "admin csv-import"
1501
  msgid "Field"
1502
  msgstr "Feld"
1503
 
1504
- #: admin/templates/csv-import.tpl.php:227
1505
  msgctxt "admin csv-import"
1506
  msgid "Type"
1507
  msgstr "Typ"
1508
 
1509
- #: admin/templates/csv-import.tpl.php:228
1510
  msgctxt "admin csv-import"
1511
  msgid "Required?"
1512
  msgstr "Pflichtfeld?"
1513
 
1514
- #: admin/templates/csv-import.tpl.php:229
1515
  msgctxt "admin csv-import"
1516
  msgid "Multivalued?"
1517
  msgstr "Mehrfache Werte?"
1518
 
1519
- #: admin/templates/csv-import.tpl.php:251
1520
  msgctxt "admin csv-import"
1521
  msgid "Semicolon separated list of listing images (from the ZIP file)"
1522
  msgstr "Semikolon getrennte Liste der Eintragsbilder (aus der ZIP Datei)"
1523
 
1524
- #: admin/templates/csv-import.tpl.php:258
1525
  msgctxt "admin csv-import"
1526
  msgid "Listing author's username"
1527
  msgstr "Benutzername des Authors"
1528
 
1529
- #: admin/templates/csv-import.tpl.php:265
1530
  msgctxt "admin csv-import"
1531
  msgid ""
1532
  "Internal Sequence ID used to allow listing updates from external sources."
@@ -1534,7 +1556,7 @@ msgstr ""
1534
  "Interne Sequenz ID wird benutzt um Aktualisierungen von Einträgen aus "
1535
  "externer Quellen durchzuführen."
1536
 
1537
- #: admin/templates/csv-import.tpl.php:272
1538
  msgctxt "admin csv-import"
1539
  msgid ""
1540
  "Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
@@ -1910,7 +1932,7 @@ msgctxt "form-fields admin"
1910
  msgid "Please see the <a>Form Fields documentation</a> for more details."
1911
  msgstr ""
1912
 
1913
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.6.10) #-#-#-#-#
1914
  #. Plugin Name of the plugin/theme
1915
  #: admin/templates/header.tpl.php:4
1916
  msgid "Business Directory Plugin"
@@ -2645,22 +2667,22 @@ msgctxt "title"
2645
  msgid "Listings tagged: %s"
2646
  msgstr "Einträge getaggt: %s"
2647
 
2648
- #: core/class-csv-import.php:371
2649
  msgctxt "admin csv-import"
2650
  msgid "Could not create listing category \"%s\""
2651
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
2652
 
2653
- #: core/class-csv-import.php:515
2654
  msgctxt "admin csv-import"
2655
  msgid "Username \"%s\" does not exist"
2656
  msgstr "Benutzername \"%s\" existiert nicht"
2657
 
2658
- #: core/class-csv-import.php:547
2659
  msgctxt "admin csv-import"
2660
  msgid "Missing required field: %s"
2661
  msgstr "Benötigtes nicht vorhandenes Feld: %s"
2662
 
2663
- #: core/class-csv-import.php:567
2664
  msgctxt "admin csv-import"
2665
  msgid "Listing category \"%s\" does not exist"
2666
  msgstr "Eintragskategorie \"%s\" existiert nicht"
@@ -2764,7 +2786,7 @@ msgctxt "listings-api"
2764
  msgid "Featured Listing"
2765
  msgstr "Unterstützter Eintrag"
2766
 
2767
- #: core/class-listing.php:297 core/class-listing.php:323
2768
  msgctxt "listing"
2769
  msgid "(Fee Unavailable)"
2770
  msgstr "(Preis nicht verfügbar)"
@@ -2824,7 +2846,7 @@ msgctxt "listings"
2824
  msgid "Fee \"%s\" for category \"%s\""
2825
  msgstr "Preis \"%s\" für Kategorie \"%s\""
2826
 
2827
- #: core/class-recaptcha.php:87 core/class-recaptcha.php:102
2828
  #, fuzzy
2829
  msgctxt "recaptcha"
2830
  msgid "The reCAPTCHA wasn't entered correctly."
@@ -4486,17 +4508,34 @@ msgctxt "form-fields api"
4486
  msgid "Textarea"
4487
  msgstr "Textbereich"
4488
 
4489
- #: core/fieldtypes/class-fieldtypes-textarea.php:35
4490
  msgctxt "form-fields admin"
4491
  msgid "Allow HTML input for this field?"
4492
  msgstr "Erlaube HTML Eingaben für dieses Feld?"
4493
 
4494
- #: core/fieldtypes/class-fieldtypes-textarea.php:39
4495
  msgctxt "form-fields admin"
4496
  msgid "Allow WordPress shortcodes in this field?"
4497
  msgstr "Erlaube Wordpress Shortcodes in diesem Feld?"
4498
 
4499
- #: core/fieldtypes/class-fieldtypes-textarea.php:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4500
  msgctxt "form-fields admin"
4501
  msgid ""
4502
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
@@ -4505,7 +4544,7 @@ msgstr ""
4505
  "<b>Nur für Administratoren!</b> Wenn es dir nicht ausdrücklich gesagt wurde, "
4506
  "ändere diese Einstellung nicht bevor du nicht weist was du genau tust."
4507
 
4508
- #: core/fieldtypes/class-fieldtypes-textarea.php:44
4509
  msgctxt "form-fields admin"
4510
  msgid "Apply \"the_content\" filter before displaying this field?"
4511
  msgstr "\"the_content\" Filter zuweisen bevor das Feld angezeigt wird?"
@@ -4906,7 +4945,7 @@ msgctxt "default category name"
4906
  msgid "General"
4907
  msgstr "Allgemein"
4908
 
4909
- #: core/installer.php:464
4910
  msgctxt "installer"
4911
  msgid ""
4912
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
@@ -4917,41 +4956,41 @@ msgstr ""
4917
  "inkompatibel mit der aktuellen Version des Branchenverzeichnisses ist. Bitte "
4918
  "aktualisiere das Regionenmodul. "
4919
 
4920
- #: core/installer.php:530
4921
  msgctxt "installer"
4922
  msgid "Cleaning up listing fees information... %d/%d"
4923
  msgstr "Eintragpreisinformation säubern... %d/%d"
4924
 
4925
- #: core/installer.php:580
4926
  msgctxt "installer"
4927
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4928
  msgstr "Migriere vergangene Transaktionen zur neuen Bezahl API... %d/%d"
4929
 
4930
- #: core/installer.php:609
4931
  msgctxt "installer"
4932
  msgid "Initial listing payment (BD < 3.4)"
4933
  msgstr "Initialbezahlung Eintrag (BD < 3.4)"
4934
 
4935
- #: core/installer.php:620
4936
  msgctxt "installer"
4937
  msgid "Listing edit payment (BD < 3.4)"
4938
  msgstr "Bezahlung Eintrag bearbeiten (BD < 3.4)"
4939
 
4940
- #: core/installer.php:641
4941
  msgctxt "installer"
4942
  msgid "Renewal fee \"%s\" for category \"%s\""
4943
  msgstr "Erneuere Preis \"%s\" für Kategorie \"%s\""
4944
 
4945
- #: core/installer.php:660
4946
  msgctxt "installer"
4947
  msgid "Listing upgrade to featured"
4948
  msgstr "Eintrag aktualisieren auf Hervorhebung"
4949
 
4950
- #: core/installer.php:902
4951
  msgid "Business Directory - Manual Upgrade Required"
4952
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung erforderlich"
4953
 
4954
- #: core/installer.php:904
4955
  msgid ""
4956
  "Business Directory features are currently disabled because the plugin needs "
4957
  "to perform a manual upgrade before continuing."
@@ -4959,15 +4998,15 @@ msgstr ""
4959
  "Branchenverzeichnis Hervorhebungen sind aktuell deaktiviert, weil das Modul "
4960
  "manuell aktualisiert werden muss, bevor weiter hervorgehoben werden kann."
4961
 
4962
- #: core/installer.php:906
4963
  msgid "Perform Manual Upgrade"
4964
  msgstr "Manuelle Aktualisierung durchführen"
4965
 
4966
- #: core/installer.php:922 core/installer.php:923 core/installer.php:934
4967
  msgid "Business Directory - Manual Upgrade"
4968
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung"
4969
 
4970
- #: core/installer.php:938
4971
  msgid ""
4972
  "Business Directory features are currently disabled because the plugin needs "
4973
  "to perform a manual upgrade before it can be used."
@@ -4975,22 +5014,22 @@ msgstr ""
4975
  "Branchenverzeichnis Hervorhebungen sind momentan deaktiviert weil das Modul "
4976
  "manuell aktualisiert werden muss, bevor es weiter verwendet werden kann."
4977
 
4978
- #: core/installer.php:940
4979
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4980
  msgstr ""
4981
  "Klicke \"Starte Aktualisierung\" und warte bis der Vorgang beendet wurde."
4982
 
4983
- #: core/installer.php:943
4984
  msgctxt "manual-upgrade"
4985
  msgid "Start Upgrade"
4986
  msgstr "Starte Aktualisierung"
4987
 
4988
- #: core/installer.php:945
4989
  msgctxt "manual-upgrade"
4990
  msgid "Pause Upgrade"
4991
  msgstr "Aktualisierung pausieren"
4992
 
4993
- #: core/installer.php:951
4994
  msgctxt "manual-upgrade"
4995
  msgid ""
4996
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
@@ -4999,7 +5038,7 @@ msgstr ""
4999
  "Die Aktualisierung wurde erfolgreich durchgeführt. Branchenverzeichnis "
5000
  "Erweiterung ist nun verfügbar."
5001
 
5002
- #: core/installer.php:954
5003
  msgctxt "manual-upgrade"
5004
  msgid "Go to \"Directory Admin\""
5005
  msgstr "Nach \" Verzeichnis Administration\""
@@ -5086,41 +5125,41 @@ msgctxt "fees-api"
5086
  msgid "Free Listing"
5087
  msgstr "kostenloser Eintrag"
5088
 
5089
- #: core/payment.php:144
5090
  msgctxt "fees-api"
5091
  msgid "Fee label is required."
5092
  msgstr "Preisbezeichnung erforderlich."
5093
 
5094
- #: core/payment.php:147
5095
  msgctxt "fees-api"
5096
  msgid "Fee amount must be a non-negative decimal number."
5097
  msgstr "Preismenge muss eine nicht negative Zahl sein."
5098
 
5099
- #: core/payment.php:150 core/payment.php:153
5100
  msgctxt "fees-api"
5101
  msgid "Fee must apply to at least one category."
5102
  msgstr "Preis muss mindestens einer Kategorie zugewiesen werden."
5103
 
5104
- #: core/payment.php:156
5105
  msgctxt "fees-api"
5106
  msgid "Fee allowed images must be a non-negative integer."
5107
  msgstr ""
5108
  "Preis der Bilder erlaubt muss ein nicht negativer Wert einer ganzen Zahl "
5109
  "sein."
5110
 
5111
- #: core/payment.php:159
5112
  msgctxt "fees-api"
5113
  msgid "Fee listing run must be a non-negative integer."
5114
  msgstr "Preis Eintrag muss eine ganzem nicht negative Zahl sein."
5115
 
5116
- #: core/payment.php:164
5117
  msgctxt "fees-api"
5118
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
5119
  msgstr ""
5120
  "Preis Eintrag Zeitraum muss eine Nummer kleiner als 10 Jahre sein (3650 "
5121
  "Tage)."
5122
 
5123
- #: core/payment.php:339
5124
  msgctxt "payments-api"
5125
  msgid ""
5126
  "You are offering featured listings but have payments turned off. Go to <a "
@@ -5133,7 +5172,7 @@ msgstr ""
5133
  "Bezahlungseinstellungen zu verändern. Bis dahin ist die <i>Aktualisieren auf "
5134
  "Hervorgehoben</i> Option deaktiviert."
5135
 
5136
- #: core/payment.php:357
5137
  msgctxt "payments-api"
5138
  msgid ""
5139
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
@@ -5144,7 +5183,7 @@ msgstr ""
5144
  "Gateway funktioniert nicht bis folgende Probleme gelöst wurden: <b>%s</b>. "
5145
  "Prüfe die <a href=\"%s\">Bezahlung Einstellungen</a>."
5146
 
5147
- #: core/payment.php:367
5148
  msgctxt "admin"
5149
  msgid ""
5150
  "You have payments turned on but no gateway is active and properly "
@@ -5157,7 +5196,7 @@ msgstr ""
5157
  "Bezahleinstellungen zu ändern. Das Verzeichnis wird im <i>kostenlosen Modus</"
5158
  "i> ausgeführt, bis die Änderungen gemacht wurden."
5159
 
5160
- #: core/payment.php:371
5161
  msgid ""
5162
  "BD detected PayFast and another gateway were enabled. This setup is not "
5163
  "recommended due to PayFast supporting only ZAR and the other gateways not "
@@ -5167,7 +5206,7 @@ msgstr ""
5167
  "aktiviert wurde. Dieses Setup ist nicht empfohlen, weil PayFast nur ZAR und "
5168
  "andere Gateways unterstützt und nicht dieses Zahlungsmittel."
5169
 
5170
- #: core/payment.php:375
5171
  msgid ""
5172
  "You have recurring renewal of listing fees enabled but the payment gateways "
5173
  "installed don't support recurring payments. Until a gateway that supports "
@@ -5178,7 +5217,7 @@ msgstr ""
5178
  "unterstützt keine wiederholten Abbuchungen. Bitte benutze einen Dienst wie "
5179
  "Paypal. Solange bleiben automatische Erneuerungen deaktiviert."
5180
 
5181
- #: core/payment.php:380
5182
  msgid ""
5183
  "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
5184
  "supported by the gateway. All other fees will be charged as non-recurring."
@@ -5186,37 +5225,37 @@ msgstr ""
5186
  "Google Wallet unterstützt monatlich (30 Tage) wiederholte Abbuchungen durch "
5187
  "das Gateway. Alle anderen Gebühren werden als kostenlos abgerechnet."
5188
 
5189
- #: core/payment.php:413
5190
  msgctxt "payments-api"
5191
  msgid "Checkout"
5192
  msgstr "Kasse"
5193
 
5194
- #: core/payment.php:414
5195
  msgctxt "payments-api"
5196
  msgid "Pay %1$s through %2$s"
5197
  msgstr "Bezahle %1$s bekomme %2$s"
5198
 
5199
- #: core/payment.php:421
5200
  msgctxt "payments-api"
5201
  msgid "Your transaction has been approved."
5202
  msgstr "Ihre Transaktion wurde genehmigt."
5203
 
5204
- #: core/payment.php:602
5205
  msgctxt "payments"
5206
  msgid "Payment Details"
5207
  msgstr "Bezahldetails"
5208
 
5209
- #: core/payment.php:629
5210
  msgctxt "checkout"
5211
  msgid "Payment Method"
5212
  msgstr "Bezahlmethode"
5213
 
5214
- #: core/payment.php:658
5215
  msgctxt "payment"
5216
  msgid "Return to Directory."
5217
  msgstr "Zurück zum Verzeichnis."
5218
 
5219
- #: core/payment.php:664
5220
  msgctxt "payments"
5221
  msgid ""
5222
  "Your payment is being processed by the payment gateway. Please reload this "
@@ -5226,7 +5265,7 @@ msgstr ""
5226
  "Ihre Bezahlung wird durchgeführt. Bitte laden Sie die Seite ggf. neu, um zu "
5227
  "sehen ob der Status sich verändert hat oder kontaktieren Sie uns."
5228
 
5229
- #: core/payment.php:667
5230
  msgctxt "payments"
5231
  msgid ""
5232
  "The payment has been rejected by the payment gateway. Please contact the "
@@ -5237,30 +5276,30 @@ msgstr ""
5237
  "klicken Sie auf \"Bezahlungsmethode ändern\" oder versuchen Sie es später "
5238
  "noch einmal."
5239
 
5240
- #: core/payment.php:668
5241
  msgctxt "payments"
5242
  msgid "Change Payment Method"
5243
  msgstr "Bezahlungsmethode ändern"
5244
 
5245
- #: core/payment.php:670
5246
  msgctxt "payments"
5247
  msgid ""
5248
  "The payment has been rejected by the payment gateway. Please contact the "
5249
  "site administrator if you think there is an error."
5250
  msgstr "Die Zahlung wurde zurückgewiesen."
5251
 
5252
- #: core/payment.php:673
5253
  msgctxt "payments"
5254
  msgid "The payment has been canceled at your request."
5255
  msgstr "Die Bezahlung wurde auf Ihren Wunsch abgebrochen."
5256
 
5257
- #: core/payment.php:769
5258
  #, fuzzy
5259
  msgctxt "admin"
5260
  msgid "Pending Abandonment"
5261
  msgstr "Ausstehende Bezahlung"
5262
 
5263
- #: core/payment.php:774
5264
  msgctxt "admin"
5265
  msgid "Abandoned"
5266
  msgstr ""
@@ -5670,22 +5709,22 @@ msgctxt "templates"
5670
  msgid "I agree to the Terms and Conditions"
5671
  msgstr "Ich akzeptiere die AGBs"
5672
 
5673
- #: core/view-submit-listing.php:406
5674
  msgctxt "listings"
5675
  msgid "Fee \"%s\" for category \"%s\"%s"
5676
  msgstr "Preis \"%s\" für Kategorie \"%s\"%s"
5677
 
5678
- #: core/view-submit-listing.php:409
5679
  msgctxt "listings"
5680
  msgid "(recurring)"
5681
  msgstr "(wiederholt)"
5682
 
5683
- #: core/view-submit-listing.php:419 core/view-upgrade-listing.php:54
5684
  msgctxt "submit"
5685
  msgid "Listing upgrade to featured"
5686
  msgstr "Eintrag erneuert auf Hervorgehoben"
5687
 
5688
- #: core/view-submit-listing.php:452
5689
  msgctxt "submit_state"
5690
  msgid "Invalid submit state."
5691
  msgstr "Ungültiger Zustand beim Einsenden."
@@ -5706,7 +5745,7 @@ msgctxt "templates"
5706
  msgid "Return to listing."
5707
  msgstr "Zurück zum Eintrag."
5708
 
5709
- #: core/views.php:30
5710
  msgid ""
5711
  "You need to create a page with the [businessdirectory] shortcode for the "
5712
  "Business Directory plugin to work correctly."
@@ -5714,21 +5753,21 @@ msgstr ""
5714
  "Sie müssen ein Seite erstellen die den [businessdirecory] Shortcode enthält "
5715
  "damit die Erweiterung richtig funktioniert."
5716
 
5717
- #: core/views.php:32
5718
  msgid "The directory is temporarily disabled."
5719
  msgstr "Das Verzeichnis wurde temporär deaktiviert."
5720
 
5721
- #: core/views.php:190
5722
  msgctxt "preview"
5723
  msgid "This is just a preview. The listing has not been published yet."
5724
  msgstr "Dies ist nur eine Vorschau. Der Eintrag wurde bisher nicht publiziert."
5725
 
5726
- #: core/views.php:342
5727
  msgctxt "templates"
5728
  msgid "Listings tagged: %s"
5729
  msgstr "Getaggte Einträge: %s"
5730
 
5731
- #: core/views.php:459
5732
  msgctxt "templates"
5733
  msgid ""
5734
  "There are no categories assigned to the business directory yet. You need to "
@@ -5743,12 +5782,12 @@ msgstr ""
5743
  "nicht erstellt werden kann. Einträge können nicht erstellt werden bis ein "
5744
  "Kategorie zugewiesen wurde."
5745
 
5746
- #: core/views.php:461
5747
  msgctxt "templates"
5748
  msgid "There are currently no listings in the directory."
5749
  msgstr "Keine Einträge im Verzeichnis vorhanden. "
5750
 
5751
- #: core/views.php:479
5752
  msgctxt "templates"
5753
  msgid ""
5754
  "You have \"Hide Empty Categories\" on and some categories that don't have "
@@ -6382,7 +6421,7 @@ msgstr ""
6382
  #: templates/renew-listing.tpl.php:22
6383
  #: templates/submit-listing/category-selection.tpl.php:8
6384
  #: templates/submit-listing/fee-selection.tpl.php:37
6385
- #: templates/submit-listing/images.tpl.php:36
6386
  #: templates/submit-listing/listing-fields.tpl.php:34
6387
  msgctxt "templates"
6388
  msgid "Continue"
@@ -6479,12 +6518,12 @@ msgid ""
6479
  "Would you like to make your fee renew automatically at the end of the period?"
6480
  msgstr "Möchten Sie Ihren Eintrag automatisch erneuern am Ende der Periode?"
6481
 
6482
- #: templates/submit-listing/images-single.tpl.php:9
6483
  msgctxt "templates"
6484
  msgid "Delete Image"
6485
  msgstr "Bild löschen"
6486
 
6487
- #: templates/submit-listing/images-single.tpl.php:16
6488
  msgctxt "templates"
6489
  msgid "Set this image as the listing thumbnail."
6490
  msgstr "Dieses Bild als Eintragsbild setzen."
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: 2015-12-14 21:54:34+00:00\n"
8
  "PO-Revision-Date: 2015-03-10 03:22+0100\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
 
20
+ #: admin/class-admin-listings.php:36
21
+ #, fuzzy
22
+ msgctxt "admin category filter"
23
+ msgid "All categories"
24
+ msgstr "Alle Kategorien"
25
+
26
+ #: admin/class-admin-listings.php:68
27
  msgid "Listing Information"
28
  msgstr "Eintrag Informationen"
29
 
30
+ #: admin/class-admin-listings.php:75
31
  msgctxt "admin"
32
  msgid "Listing Fields / Images"
33
  msgstr "Eintrag Felder / Bilder"
34
 
35
+ #: admin/class-admin-listings.php:86
36
  msgctxt "admin"
37
  msgid "Categories"
38
  msgstr "Kategorien"
39
 
40
+ #: admin/class-admin-listings.php:87
41
  msgid "Payment Status"
42
  msgstr "Zahlungsstatus"
43
 
44
+ #: admin/class-admin-listings.php:88
45
  msgid "Featured (Sticky) Status"
46
  msgstr "unterstützter (unbeweglicher) Status"
47
 
48
+ #: admin/class-admin-listings.php:119
49
  msgctxt "admin"
50
  msgid "(Listing expired in this category)"
51
  msgstr "(Der Eintrag ist in dieser Kategorie abgelaufen)"
52
 
53
+ #: admin/class-admin-listings.php:137 admin/class-admin-listings.php:220
54
  msgid "Paid"
55
  msgstr "Bezahlt"
56
 
57
+ #: admin/class-admin-listings.php:142
58
  msgid "Mark as"
59
  msgstr "Markieren als"
60
 
61
+ #: admin/class-admin-listings.php:151 admin/class-admin-listings.php:230
62
  msgid "Pending Upgrade"
63
  msgstr "Ausstehende Aktualisierung"
64
 
65
+ #: admin/class-admin-listings.php:159 admin/listing-metabox.php:68
66
  msgid "Upgrade to %s"
67
  msgstr "Aktualisieren auf %s"
68
 
69
+ #: admin/class-admin-listings.php:166 admin/listing-metabox.php:75
70
  msgid "Downgrade to %s"
71
  msgstr "Zurücksetzen auf %s"
72
 
73
+ #: admin/class-admin-listings.php:169 admin/class-admin-listings.php:349
74
  msgctxt "admin actions"
75
  msgid "Upgrade to Featured"
76
  msgstr "Aktualisieren auf Eingestellt"
77
 
78
+ #: admin/class-admin-listings.php:225
79
  msgid "Unpaid"
80
  msgstr "Unbezahlt"
81
 
82
+ #: admin/class-admin-listings.php:235
83
  msgctxt "admin"
84
  msgid "Expired"
85
  msgstr "Abgelaufen"
86
 
87
+ #: admin/class-admin-listings.php:285
88
  msgctxt "admin actions"
89
  msgid "Edit Listing"
90
  msgstr "Eintrag Bearbeiten"
91
 
92
+ #: admin/class-admin-listings.php:288
93
  msgctxt "admin actions"
94
  msgid "Delete Listing"
95
  msgstr "Eintrag Löschen"
96
 
97
+ #: admin/class-admin-listings.php:347
98
  msgctxt "admin actions"
99
  msgid "Publish Listing"
100
  msgstr "Eintrag veröffentlichen"
101
 
102
+ #: admin/class-admin-listings.php:350
103
  msgctxt "admin actions"
104
  msgid "Downgrade to Normal"
105
  msgstr "Zurücksetzen auf Normal"
106
 
107
+ #: admin/class-admin-listings.php:352
108
  msgctxt "admin actions"
109
  msgid "Mark as Paid"
110
  msgstr "Als Bezahlt Markieren"
111
 
112
+ #: admin/class-admin-listings.php:354
113
  msgctxt "admin actions"
114
  msgid "Renew Listing"
115
  msgstr "Eintrag erneuern"
1342
  msgid "Warning"
1343
  msgstr "Warnung"
1344
 
1345
+ #: admin/templates/csv-import.tpl.php:12 admin/templates/csv-import.tpl.php:227
1346
  msgctxt "admin csv-import"
1347
  msgid "Help"
1348
  msgstr "Hilfe "
1437
 
1438
  #: admin/templates/csv-import.tpl.php:171
1439
  msgctxt "admin csv-import"
1440
+ msgid "Keep existing listing images?"
1441
+ msgstr ""
1442
+
1443
+ #: admin/templates/csv-import.tpl.php:176
1444
+ #, fuzzy
1445
+ msgctxt "admin csv-import"
1446
+ msgid "Keep existing images."
1447
+ msgstr "Eintrag Bilder"
1448
+
1449
+ #: admin/templates/csv-import.tpl.php:177
1450
+ msgctxt "admin csv-import"
1451
+ msgid "Appends new images while keeping current ones."
1452
+ msgstr ""
1453
+
1454
+ #: admin/templates/csv-import.tpl.php:182
1455
+ msgctxt "admin csv-import"
1456
  msgid "Assign listings to a user?"
1457
  msgstr "Einträge einem Benutzer zuweisen?"
1458
 
1459
+ #: admin/templates/csv-import.tpl.php:188
1460
  msgctxt "admin csv-import"
1461
  msgid "Assign listings to a user."
1462
  msgstr "Einträge einem Benutzer zuweisen."
1463
 
1464
+ #: admin/templates/csv-import.tpl.php:193
1465
  msgctxt "admin csv-import"
1466
  msgid "Default listing user"
1467
  msgstr "Standardbenutzer Einträge"
1468
 
1469
+ #: admin/templates/csv-import.tpl.php:198
1470
  msgctxt "admin csv-import"
1471
  msgid "Use spreadsheet information only."
1472
  msgstr "Benutze nur Tabelleninformationen."
1473
 
1474
+ #: admin/templates/csv-import.tpl.php:204
1475
  msgctxt "admin csv-import"
1476
  msgid ""
1477
  "This user will be used if the username column is not present in the CSV file."
1479
  "Dieser Benutzer wird verwendet wenn die Spalte Benutzername nicht in der CSV "
1480
  "Datei vorhanden ist."
1481
 
1482
+ #: admin/templates/csv-import.tpl.php:209
1483
  msgctxt "admin csv-import"
1484
  msgid "Disable e-mail notifications during import?"
1485
  msgstr ""
1486
 
1487
+ #: admin/templates/csv-import.tpl.php:214
1488
  #, fuzzy
1489
  msgctxt "admin csv-import"
1490
  msgid "Disable e-mail notifications."
1491
  msgstr "Email Erinnerung"
1492
 
1493
+ #: admin/templates/csv-import.tpl.php:220
1494
  msgctxt "admin csv-import"
1495
  msgid "Test Import"
1496
  msgstr "Importtest"
1497
 
1498
+ #: admin/templates/csv-import.tpl.php:221
1499
  msgctxt "admin csv-import"
1500
  msgid "Import Listings"
1501
  msgstr "Einträge importieren"
1502
 
1503
+ #: admin/templates/csv-import.tpl.php:229
1504
  msgctxt "admin csv-import"
1505
  msgid ""
1506
  "The following are the valid header names to be used in the CSV file. "
1513
  "erscheinen. Klicke <a href=\"%s\">\"CSV Import Beispieldatei anschauen\"</"
1514
  "a>, um zu sehen wie eine Importdatei aussehen muss."
1515
 
1516
+ #: admin/templates/csv-import.tpl.php:236
1517
  msgctxt "admin csv-import"
1518
  msgid "Header name/label"
1519
  msgstr "Kopfname/Bezeichnung"
1520
 
1521
+ #: admin/templates/csv-import.tpl.php:237
1522
  msgctxt "admin csv-import"
1523
  msgid "Field"
1524
  msgstr "Feld"
1525
 
1526
+ #: admin/templates/csv-import.tpl.php:238
1527
  msgctxt "admin csv-import"
1528
  msgid "Type"
1529
  msgstr "Typ"
1530
 
1531
+ #: admin/templates/csv-import.tpl.php:239
1532
  msgctxt "admin csv-import"
1533
  msgid "Required?"
1534
  msgstr "Pflichtfeld?"
1535
 
1536
+ #: admin/templates/csv-import.tpl.php:240
1537
  msgctxt "admin csv-import"
1538
  msgid "Multivalued?"
1539
  msgstr "Mehrfache Werte?"
1540
 
1541
+ #: admin/templates/csv-import.tpl.php:262
1542
  msgctxt "admin csv-import"
1543
  msgid "Semicolon separated list of listing images (from the ZIP file)"
1544
  msgstr "Semikolon getrennte Liste der Eintragsbilder (aus der ZIP Datei)"
1545
 
1546
+ #: admin/templates/csv-import.tpl.php:269
1547
  msgctxt "admin csv-import"
1548
  msgid "Listing author's username"
1549
  msgstr "Benutzername des Authors"
1550
 
1551
+ #: admin/templates/csv-import.tpl.php:276
1552
  msgctxt "admin csv-import"
1553
  msgid ""
1554
  "Internal Sequence ID used to allow listing updates from external sources."
1556
  "Interne Sequenz ID wird benutzt um Aktualisierungen von Einträgen aus "
1557
  "externer Quellen durchzuführen."
1558
 
1559
+ #: admin/templates/csv-import.tpl.php:283
1560
  msgctxt "admin csv-import"
1561
  msgid ""
1562
  "Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
1932
  msgid "Please see the <a>Form Fields documentation</a> for more details."
1933
  msgstr ""
1934
 
1935
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.6.11) #-#-#-#-#
1936
  #. Plugin Name of the plugin/theme
1937
  #: admin/templates/header.tpl.php:4
1938
  msgid "Business Directory Plugin"
2667
  msgid "Listings tagged: %s"
2668
  msgstr "Einträge getaggt: %s"
2669
 
2670
+ #: core/class-csv-import.php:375
2671
  msgctxt "admin csv-import"
2672
  msgid "Could not create listing category \"%s\""
2673
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
2674
 
2675
+ #: core/class-csv-import.php:519
2676
  msgctxt "admin csv-import"
2677
  msgid "Username \"%s\" does not exist"
2678
  msgstr "Benutzername \"%s\" existiert nicht"
2679
 
2680
+ #: core/class-csv-import.php:551
2681
  msgctxt "admin csv-import"
2682
  msgid "Missing required field: %s"
2683
  msgstr "Benötigtes nicht vorhandenes Feld: %s"
2684
 
2685
+ #: core/class-csv-import.php:571
2686
  msgctxt "admin csv-import"
2687
  msgid "Listing category \"%s\" does not exist"
2688
  msgstr "Eintragskategorie \"%s\" existiert nicht"
2786
  msgid "Featured Listing"
2787
  msgstr "Unterstützter Eintrag"
2788
 
2789
+ #: core/class-listing.php:319 core/class-listing.php:345
2790
  msgctxt "listing"
2791
  msgid "(Fee Unavailable)"
2792
  msgstr "(Preis nicht verfügbar)"
2846
  msgid "Fee \"%s\" for category \"%s\""
2847
  msgstr "Preis \"%s\" für Kategorie \"%s\""
2848
 
2849
+ #: core/class-recaptcha.php:90 core/class-recaptcha.php:105
2850
  #, fuzzy
2851
  msgctxt "recaptcha"
2852
  msgid "The reCAPTCHA wasn't entered correctly."
4508
  msgid "Textarea"
4509
  msgstr "Textbereich"
4510
 
4511
+ #: core/fieldtypes/class-fieldtypes-textarea.php:50
4512
  msgctxt "form-fields admin"
4513
  msgid "Allow HTML input for this field?"
4514
  msgstr "Erlaube HTML Eingaben für dieses Feld?"
4515
 
4516
+ #: core/fieldtypes/class-fieldtypes-textarea.php:54
4517
  msgctxt "form-fields admin"
4518
  msgid "Allow WordPress shortcodes in this field?"
4519
  msgstr "Erlaube Wordpress Shortcodes in diesem Feld?"
4520
 
4521
+ #: core/fieldtypes/class-fieldtypes-textarea.php:57
4522
+ msgctxt "form-fields admin"
4523
+ msgid "Display a WYSIWYG editor on the frontend?"
4524
+ msgstr ""
4525
+
4526
+ #: core/fieldtypes/class-fieldtypes-textarea.php:60
4527
+ msgctxt "form-fields admin"
4528
+ msgid ""
4529
+ "<b>Warning:</b> Users can use this feature to get around your image limits "
4530
+ "in fee plans."
4531
+ msgstr ""
4532
+
4533
+ #: core/fieldtypes/class-fieldtypes-textarea.php:61
4534
+ msgctxt "form-fields admin"
4535
+ msgid "Allow images in WYSIWYG editor?"
4536
+ msgstr ""
4537
+
4538
+ #: core/fieldtypes/class-fieldtypes-textarea.php:64
4539
  msgctxt "form-fields admin"
4540
  msgid ""
4541
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
4544
  "<b>Nur für Administratoren!</b> Wenn es dir nicht ausdrücklich gesagt wurde, "
4545
  "ändere diese Einstellung nicht bevor du nicht weist was du genau tust."
4546
 
4547
+ #: core/fieldtypes/class-fieldtypes-textarea.php:65
4548
  msgctxt "form-fields admin"
4549
  msgid "Apply \"the_content\" filter before displaying this field?"
4550
  msgstr "\"the_content\" Filter zuweisen bevor das Feld angezeigt wird?"
4945
  msgid "General"
4946
  msgstr "Allgemein"
4947
 
4948
+ #: core/installer.php:469
4949
  msgctxt "installer"
4950
  msgid ""
4951
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
4956
  "inkompatibel mit der aktuellen Version des Branchenverzeichnisses ist. Bitte "
4957
  "aktualisiere das Regionenmodul. "
4958
 
4959
+ #: core/installer.php:535
4960
  msgctxt "installer"
4961
  msgid "Cleaning up listing fees information... %d/%d"
4962
  msgstr "Eintragpreisinformation säubern... %d/%d"
4963
 
4964
+ #: core/installer.php:585
4965
  msgctxt "installer"
4966
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4967
  msgstr "Migriere vergangene Transaktionen zur neuen Bezahl API... %d/%d"
4968
 
4969
+ #: core/installer.php:614
4970
  msgctxt "installer"
4971
  msgid "Initial listing payment (BD < 3.4)"
4972
  msgstr "Initialbezahlung Eintrag (BD < 3.4)"
4973
 
4974
+ #: core/installer.php:625
4975
  msgctxt "installer"
4976
  msgid "Listing edit payment (BD < 3.4)"
4977
  msgstr "Bezahlung Eintrag bearbeiten (BD < 3.4)"
4978
 
4979
+ #: core/installer.php:646
4980
  msgctxt "installer"
4981
  msgid "Renewal fee \"%s\" for category \"%s\""
4982
  msgstr "Erneuere Preis \"%s\" für Kategorie \"%s\""
4983
 
4984
+ #: core/installer.php:665
4985
  msgctxt "installer"
4986
  msgid "Listing upgrade to featured"
4987
  msgstr "Eintrag aktualisieren auf Hervorhebung"
4988
 
4989
+ #: core/installer.php:907
4990
  msgid "Business Directory - Manual Upgrade Required"
4991
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung erforderlich"
4992
 
4993
+ #: core/installer.php:909
4994
  msgid ""
4995
  "Business Directory features are currently disabled because the plugin needs "
4996
  "to perform a manual upgrade before continuing."
4998
  "Branchenverzeichnis Hervorhebungen sind aktuell deaktiviert, weil das Modul "
4999
  "manuell aktualisiert werden muss, bevor weiter hervorgehoben werden kann."
5000
 
5001
+ #: core/installer.php:911
5002
  msgid "Perform Manual Upgrade"
5003
  msgstr "Manuelle Aktualisierung durchführen"
5004
 
5005
+ #: core/installer.php:927 core/installer.php:928 core/installer.php:939
5006
  msgid "Business Directory - Manual Upgrade"
5007
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung"
5008
 
5009
+ #: core/installer.php:943
5010
  msgid ""
5011
  "Business Directory features are currently disabled because the plugin needs "
5012
  "to perform a manual upgrade before it can be used."
5014
  "Branchenverzeichnis Hervorhebungen sind momentan deaktiviert weil das Modul "
5015
  "manuell aktualisiert werden muss, bevor es weiter verwendet werden kann."
5016
 
5017
+ #: core/installer.php:945
5018
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5019
  msgstr ""
5020
  "Klicke \"Starte Aktualisierung\" und warte bis der Vorgang beendet wurde."
5021
 
5022
+ #: core/installer.php:948
5023
  msgctxt "manual-upgrade"
5024
  msgid "Start Upgrade"
5025
  msgstr "Starte Aktualisierung"
5026
 
5027
+ #: core/installer.php:950
5028
  msgctxt "manual-upgrade"
5029
  msgid "Pause Upgrade"
5030
  msgstr "Aktualisierung pausieren"
5031
 
5032
+ #: core/installer.php:956
5033
  msgctxt "manual-upgrade"
5034
  msgid ""
5035
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
5038
  "Die Aktualisierung wurde erfolgreich durchgeführt. Branchenverzeichnis "
5039
  "Erweiterung ist nun verfügbar."
5040
 
5041
+ #: core/installer.php:959
5042
  msgctxt "manual-upgrade"
5043
  msgid "Go to \"Directory Admin\""
5044
  msgstr "Nach \" Verzeichnis Administration\""
5125
  msgid "Free Listing"
5126
  msgstr "kostenloser Eintrag"
5127
 
5128
+ #: core/payment.php:145
5129
  msgctxt "fees-api"
5130
  msgid "Fee label is required."
5131
  msgstr "Preisbezeichnung erforderlich."
5132
 
5133
+ #: core/payment.php:148
5134
  msgctxt "fees-api"
5135
  msgid "Fee amount must be a non-negative decimal number."
5136
  msgstr "Preismenge muss eine nicht negative Zahl sein."
5137
 
5138
+ #: core/payment.php:151 core/payment.php:154
5139
  msgctxt "fees-api"
5140
  msgid "Fee must apply to at least one category."
5141
  msgstr "Preis muss mindestens einer Kategorie zugewiesen werden."
5142
 
5143
+ #: core/payment.php:157
5144
  msgctxt "fees-api"
5145
  msgid "Fee allowed images must be a non-negative integer."
5146
  msgstr ""
5147
  "Preis der Bilder erlaubt muss ein nicht negativer Wert einer ganzen Zahl "
5148
  "sein."
5149
 
5150
+ #: core/payment.php:160
5151
  msgctxt "fees-api"
5152
  msgid "Fee listing run must be a non-negative integer."
5153
  msgstr "Preis Eintrag muss eine ganzem nicht negative Zahl sein."
5154
 
5155
+ #: core/payment.php:165
5156
  msgctxt "fees-api"
5157
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
5158
  msgstr ""
5159
  "Preis Eintrag Zeitraum muss eine Nummer kleiner als 10 Jahre sein (3650 "
5160
  "Tage)."
5161
 
5162
+ #: core/payment.php:340
5163
  msgctxt "payments-api"
5164
  msgid ""
5165
  "You are offering featured listings but have payments turned off. Go to <a "
5172
  "Bezahlungseinstellungen zu verändern. Bis dahin ist die <i>Aktualisieren auf "
5173
  "Hervorgehoben</i> Option deaktiviert."
5174
 
5175
+ #: core/payment.php:358
5176
  msgctxt "payments-api"
5177
  msgid ""
5178
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
5183
  "Gateway funktioniert nicht bis folgende Probleme gelöst wurden: <b>%s</b>. "
5184
  "Prüfe die <a href=\"%s\">Bezahlung Einstellungen</a>."
5185
 
5186
+ #: core/payment.php:368
5187
  msgctxt "admin"
5188
  msgid ""
5189
  "You have payments turned on but no gateway is active and properly "
5196
  "Bezahleinstellungen zu ändern. Das Verzeichnis wird im <i>kostenlosen Modus</"
5197
  "i> ausgeführt, bis die Änderungen gemacht wurden."
5198
 
5199
+ #: core/payment.php:372
5200
  msgid ""
5201
  "BD detected PayFast and another gateway were enabled. This setup is not "
5202
  "recommended due to PayFast supporting only ZAR and the other gateways not "
5206
  "aktiviert wurde. Dieses Setup ist nicht empfohlen, weil PayFast nur ZAR und "
5207
  "andere Gateways unterstützt und nicht dieses Zahlungsmittel."
5208
 
5209
+ #: core/payment.php:376
5210
  msgid ""
5211
  "You have recurring renewal of listing fees enabled but the payment gateways "
5212
  "installed don't support recurring payments. Until a gateway that supports "
5217
  "unterstützt keine wiederholten Abbuchungen. Bitte benutze einen Dienst wie "
5218
  "Paypal. Solange bleiben automatische Erneuerungen deaktiviert."
5219
 
5220
+ #: core/payment.php:381
5221
  msgid ""
5222
  "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
5223
  "supported by the gateway. All other fees will be charged as non-recurring."
5225
  "Google Wallet unterstützt monatlich (30 Tage) wiederholte Abbuchungen durch "
5226
  "das Gateway. Alle anderen Gebühren werden als kostenlos abgerechnet."
5227
 
5228
+ #: core/payment.php:414
5229
  msgctxt "payments-api"
5230
  msgid "Checkout"
5231
  msgstr "Kasse"
5232
 
5233
+ #: core/payment.php:415
5234
  msgctxt "payments-api"
5235
  msgid "Pay %1$s through %2$s"
5236
  msgstr "Bezahle %1$s bekomme %2$s"
5237
 
5238
+ #: core/payment.php:422
5239
  msgctxt "payments-api"
5240
  msgid "Your transaction has been approved."
5241
  msgstr "Ihre Transaktion wurde genehmigt."
5242
 
5243
+ #: core/payment.php:603
5244
  msgctxt "payments"
5245
  msgid "Payment Details"
5246
  msgstr "Bezahldetails"
5247
 
5248
+ #: core/payment.php:630
5249
  msgctxt "checkout"
5250
  msgid "Payment Method"
5251
  msgstr "Bezahlmethode"
5252
 
5253
+ #: core/payment.php:659
5254
  msgctxt "payment"
5255
  msgid "Return to Directory."
5256
  msgstr "Zurück zum Verzeichnis."
5257
 
5258
+ #: core/payment.php:665
5259
  msgctxt "payments"
5260
  msgid ""
5261
  "Your payment is being processed by the payment gateway. Please reload this "
5265
  "Ihre Bezahlung wird durchgeführt. Bitte laden Sie die Seite ggf. neu, um zu "
5266
  "sehen ob der Status sich verändert hat oder kontaktieren Sie uns."
5267
 
5268
+ #: core/payment.php:668
5269
  msgctxt "payments"
5270
  msgid ""
5271
  "The payment has been rejected by the payment gateway. Please contact the "
5276
  "klicken Sie auf \"Bezahlungsmethode ändern\" oder versuchen Sie es später "
5277
  "noch einmal."
5278
 
5279
+ #: core/payment.php:669
5280
  msgctxt "payments"
5281
  msgid "Change Payment Method"
5282
  msgstr "Bezahlungsmethode ändern"
5283
 
5284
+ #: core/payment.php:671
5285
  msgctxt "payments"
5286
  msgid ""
5287
  "The payment has been rejected by the payment gateway. Please contact the "
5288
  "site administrator if you think there is an error."
5289
  msgstr "Die Zahlung wurde zurückgewiesen."
5290
 
5291
+ #: core/payment.php:674
5292
  msgctxt "payments"
5293
  msgid "The payment has been canceled at your request."
5294
  msgstr "Die Bezahlung wurde auf Ihren Wunsch abgebrochen."
5295
 
5296
+ #: core/payment.php:770
5297
  #, fuzzy
5298
  msgctxt "admin"
5299
  msgid "Pending Abandonment"
5300
  msgstr "Ausstehende Bezahlung"
5301
 
5302
+ #: core/payment.php:775
5303
  msgctxt "admin"
5304
  msgid "Abandoned"
5305
  msgstr ""
5709
  msgid "I agree to the Terms and Conditions"
5710
  msgstr "Ich akzeptiere die AGBs"
5711
 
5712
+ #: core/view-submit-listing.php:443
5713
  msgctxt "listings"
5714
  msgid "Fee \"%s\" for category \"%s\"%s"
5715
  msgstr "Preis \"%s\" für Kategorie \"%s\"%s"
5716
 
5717
+ #: core/view-submit-listing.php:446
5718
  msgctxt "listings"
5719
  msgid "(recurring)"
5720
  msgstr "(wiederholt)"
5721
 
5722
+ #: core/view-submit-listing.php:456 core/view-upgrade-listing.php:54
5723
  msgctxt "submit"
5724
  msgid "Listing upgrade to featured"
5725
  msgstr "Eintrag erneuert auf Hervorgehoben"
5726
 
5727
+ #: core/view-submit-listing.php:489
5728
  msgctxt "submit_state"
5729
  msgid "Invalid submit state."
5730
  msgstr "Ungültiger Zustand beim Einsenden."
5745
  msgid "Return to listing."
5746
  msgstr "Zurück zum Eintrag."
5747
 
5748
+ #: core/views.php:32
5749
  msgid ""
5750
  "You need to create a page with the [businessdirectory] shortcode for the "
5751
  "Business Directory plugin to work correctly."
5753
  "Sie müssen ein Seite erstellen die den [businessdirecory] Shortcode enthält "
5754
  "damit die Erweiterung richtig funktioniert."
5755
 
5756
+ #: core/views.php:34
5757
  msgid "The directory is temporarily disabled."
5758
  msgstr "Das Verzeichnis wurde temporär deaktiviert."
5759
 
5760
+ #: core/views.php:203
5761
  msgctxt "preview"
5762
  msgid "This is just a preview. The listing has not been published yet."
5763
  msgstr "Dies ist nur eine Vorschau. Der Eintrag wurde bisher nicht publiziert."
5764
 
5765
+ #: core/views.php:355
5766
  msgctxt "templates"
5767
  msgid "Listings tagged: %s"
5768
  msgstr "Getaggte Einträge: %s"
5769
 
5770
+ #: core/views.php:472
5771
  msgctxt "templates"
5772
  msgid ""
5773
  "There are no categories assigned to the business directory yet. You need to "
5782
  "nicht erstellt werden kann. Einträge können nicht erstellt werden bis ein "
5783
  "Kategorie zugewiesen wurde."
5784
 
5785
+ #: core/views.php:474
5786
  msgctxt "templates"
5787
  msgid "There are currently no listings in the directory."
5788
  msgstr "Keine Einträge im Verzeichnis vorhanden. "
5789
 
5790
+ #: core/views.php:492
5791
  msgctxt "templates"
5792
  msgid ""
5793
  "You have \"Hide Empty Categories\" on and some categories that don't have "
6421
  #: templates/renew-listing.tpl.php:22
6422
  #: templates/submit-listing/category-selection.tpl.php:8
6423
  #: templates/submit-listing/fee-selection.tpl.php:37
6424
+ #: templates/submit-listing/images.tpl.php:38
6425
  #: templates/submit-listing/listing-fields.tpl.php:34
6426
  msgctxt "templates"
6427
  msgid "Continue"
6518
  "Would you like to make your fee renew automatically at the end of the period?"
6519
  msgstr "Möchten Sie Ihren Eintrag automatisch erneuern am Ende der Periode?"
6520
 
6521
+ #: templates/submit-listing/images-single.tpl.php:18
6522
  msgctxt "templates"
6523
  msgid "Delete Image"
6524
  msgstr "Bild löschen"
6525
 
6526
+ #: templates/submit-listing/images-single.tpl.php:24
6527
  msgctxt "templates"
6528
  msgid "Set this image as the listing thumbnail."
6529
  msgstr "Dieses Bild als Eintragsbild setzen."
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: 2015-11-17 23:37:00+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"
@@ -16,93 +16,98 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
 
19
- #: admin/class-admin-listings.php:24
 
 
 
 
 
20
  msgid "Listing Information"
21
  msgstr ""
22
 
23
- #: admin/class-admin-listings.php:31
24
  msgctxt "admin"
25
  msgid "Listing Fields / Images"
26
  msgstr ""
27
 
28
- #: admin/class-admin-listings.php:42
29
  msgctxt "admin"
30
  msgid "Categories"
31
  msgstr ""
32
 
33
- #: admin/class-admin-listings.php:43
34
  msgid "Payment Status"
35
  msgstr ""
36
 
37
- #: admin/class-admin-listings.php:44
38
  msgid "Featured (Sticky) Status"
39
  msgstr ""
40
 
41
- #: admin/class-admin-listings.php:75
42
  msgctxt "admin"
43
  msgid "(Listing expired in this category)"
44
  msgstr ""
45
 
46
- #: admin/class-admin-listings.php:93 admin/class-admin-listings.php:176
47
  msgid "Paid"
48
  msgstr ""
49
 
50
- #: admin/class-admin-listings.php:98
51
  msgid "Mark as"
52
  msgstr ""
53
 
54
- #: admin/class-admin-listings.php:107 admin/class-admin-listings.php:186
55
  msgid "Pending Upgrade"
56
  msgstr ""
57
 
58
- #: admin/class-admin-listings.php:115 admin/listing-metabox.php:68
59
  msgid "Upgrade to %s"
60
  msgstr ""
61
 
62
- #: admin/class-admin-listings.php:122 admin/listing-metabox.php:75
63
  msgid "Downgrade to %s"
64
  msgstr ""
65
 
66
- #: admin/class-admin-listings.php:125 admin/class-admin-listings.php:295
67
  msgctxt "admin actions"
68
  msgid "Upgrade to Featured"
69
  msgstr ""
70
 
71
- #: admin/class-admin-listings.php:181
72
  msgid "Unpaid"
73
  msgstr ""
74
 
75
- #: admin/class-admin-listings.php:191
76
  msgctxt "admin"
77
  msgid "Expired"
78
  msgstr ""
79
 
80
- #: admin/class-admin-listings.php:241
81
  msgctxt "admin actions"
82
  msgid "Edit Listing"
83
  msgstr ""
84
 
85
- #: admin/class-admin-listings.php:244
86
  msgctxt "admin actions"
87
  msgid "Delete Listing"
88
  msgstr ""
89
 
90
- #: admin/class-admin-listings.php:293
91
  msgctxt "admin actions"
92
  msgid "Publish Listing"
93
  msgstr ""
94
 
95
- #: admin/class-admin-listings.php:296
96
  msgctxt "admin actions"
97
  msgid "Downgrade to Normal"
98
  msgstr ""
99
 
100
- #: admin/class-admin-listings.php:298
101
  msgctxt "admin actions"
102
  msgid "Mark as Paid"
103
  msgstr ""
104
 
105
- #: admin/class-admin-listings.php:300
106
  msgctxt "admin actions"
107
  msgid "Renew Listing"
108
  msgstr ""
@@ -1249,7 +1254,7 @@ msgctxt "admin csv-import"
1249
  msgid "Warning"
1250
  msgstr ""
1251
 
1252
- #: admin/templates/csv-import.tpl.php:12 admin/templates/csv-import.tpl.php:216
1253
  msgctxt "admin csv-import"
1254
  msgid "Help"
1255
  msgstr ""
@@ -1343,51 +1348,66 @@ msgstr ""
1343
 
1344
  #: admin/templates/csv-import.tpl.php:171
1345
  msgctxt "admin csv-import"
1346
- msgid "Assign listings to a user?"
 
 
 
 
 
1347
  msgstr ""
1348
 
1349
  #: admin/templates/csv-import.tpl.php:177
1350
  msgctxt "admin csv-import"
1351
- msgid "Assign listings to a user."
1352
  msgstr ""
1353
 
1354
  #: admin/templates/csv-import.tpl.php:182
1355
  msgctxt "admin csv-import"
 
 
 
 
 
 
 
 
 
 
1356
  msgid "Default listing user"
1357
  msgstr ""
1358
 
1359
- #: admin/templates/csv-import.tpl.php:187
1360
  msgctxt "admin csv-import"
1361
  msgid "Use spreadsheet information only."
1362
  msgstr ""
1363
 
1364
- #: admin/templates/csv-import.tpl.php:193
1365
  msgctxt "admin csv-import"
1366
  msgid ""
1367
  "This user will be used if the username column is not present in the CSV file."
1368
  msgstr ""
1369
 
1370
- #: admin/templates/csv-import.tpl.php:198
1371
  msgctxt "admin csv-import"
1372
  msgid "Disable e-mail notifications during import?"
1373
  msgstr ""
1374
 
1375
- #: admin/templates/csv-import.tpl.php:203
1376
  msgctxt "admin csv-import"
1377
  msgid "Disable e-mail notifications."
1378
  msgstr ""
1379
 
1380
- #: admin/templates/csv-import.tpl.php:209
1381
  msgctxt "admin csv-import"
1382
  msgid "Test Import"
1383
  msgstr ""
1384
 
1385
- #: admin/templates/csv-import.tpl.php:210
1386
  msgctxt "admin csv-import"
1387
  msgid "Import Listings"
1388
  msgstr ""
1389
 
1390
- #: admin/templates/csv-import.tpl.php:218
1391
  msgctxt "admin csv-import"
1392
  msgid ""
1393
  "The following are the valid header names to be used in the CSV file. "
@@ -1396,48 +1416,48 @@ msgid ""
1396
  "how an import file should look like."
1397
  msgstr ""
1398
 
1399
- #: admin/templates/csv-import.tpl.php:225
1400
  msgctxt "admin csv-import"
1401
  msgid "Header name/label"
1402
  msgstr ""
1403
 
1404
- #: admin/templates/csv-import.tpl.php:226
1405
  msgctxt "admin csv-import"
1406
  msgid "Field"
1407
  msgstr ""
1408
 
1409
- #: admin/templates/csv-import.tpl.php:227
1410
  msgctxt "admin csv-import"
1411
  msgid "Type"
1412
  msgstr ""
1413
 
1414
- #: admin/templates/csv-import.tpl.php:228
1415
  msgctxt "admin csv-import"
1416
  msgid "Required?"
1417
  msgstr ""
1418
 
1419
- #: admin/templates/csv-import.tpl.php:229
1420
  msgctxt "admin csv-import"
1421
  msgid "Multivalued?"
1422
  msgstr ""
1423
 
1424
- #: admin/templates/csv-import.tpl.php:251
1425
  msgctxt "admin csv-import"
1426
  msgid "Semicolon separated list of listing images (from the ZIP file)"
1427
  msgstr ""
1428
 
1429
- #: admin/templates/csv-import.tpl.php:258
1430
  msgctxt "admin csv-import"
1431
  msgid "Listing author's username"
1432
  msgstr ""
1433
 
1434
- #: admin/templates/csv-import.tpl.php:265
1435
  msgctxt "admin csv-import"
1436
  msgid ""
1437
  "Internal Sequence ID used to allow listing updates from external sources."
1438
  msgstr ""
1439
 
1440
- #: admin/templates/csv-import.tpl.php:272
1441
  msgctxt "admin csv-import"
1442
  msgid ""
1443
  "Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
@@ -1795,7 +1815,7 @@ msgctxt "form-fields admin"
1795
  msgid "Please see the <a>Form Fields documentation</a> for more details."
1796
  msgstr ""
1797
 
1798
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.6.10) #-#-#-#-#
1799
  #. Plugin Name of the plugin/theme
1800
  #: admin/templates/header.tpl.php:4
1801
  msgid "Business Directory Plugin"
@@ -2490,22 +2510,22 @@ msgctxt "title"
2490
  msgid "Listings tagged: %s"
2491
  msgstr ""
2492
 
2493
- #: core/class-csv-import.php:371
2494
  msgctxt "admin csv-import"
2495
  msgid "Could not create listing category \"%s\""
2496
  msgstr ""
2497
 
2498
- #: core/class-csv-import.php:515
2499
  msgctxt "admin csv-import"
2500
  msgid "Username \"%s\" does not exist"
2501
  msgstr ""
2502
 
2503
- #: core/class-csv-import.php:547
2504
  msgctxt "admin csv-import"
2505
  msgid "Missing required field: %s"
2506
  msgstr ""
2507
 
2508
- #: core/class-csv-import.php:567
2509
  msgctxt "admin csv-import"
2510
  msgid "Listing category \"%s\" does not exist"
2511
  msgstr ""
@@ -2599,7 +2619,7 @@ msgctxt "listings-api"
2599
  msgid "Featured Listing"
2600
  msgstr ""
2601
 
2602
- #: core/class-listing.php:297 core/class-listing.php:323
2603
  msgctxt "listing"
2604
  msgid "(Fee Unavailable)"
2605
  msgstr ""
@@ -2659,7 +2679,7 @@ msgctxt "listings"
2659
  msgid "Fee \"%s\" for category \"%s\""
2660
  msgstr ""
2661
 
2662
- #: core/class-recaptcha.php:87 core/class-recaptcha.php:102
2663
  msgctxt "recaptcha"
2664
  msgid "The reCAPTCHA wasn't entered correctly."
2665
  msgstr ""
@@ -4208,24 +4228,41 @@ msgctxt "form-fields api"
4208
  msgid "Textarea"
4209
  msgstr ""
4210
 
4211
- #: core/fieldtypes/class-fieldtypes-textarea.php:35
4212
  msgctxt "form-fields admin"
4213
  msgid "Allow HTML input for this field?"
4214
  msgstr ""
4215
 
4216
- #: core/fieldtypes/class-fieldtypes-textarea.php:39
4217
  msgctxt "form-fields admin"
4218
  msgid "Allow WordPress shortcodes in this field?"
4219
  msgstr ""
4220
 
4221
- #: core/fieldtypes/class-fieldtypes-textarea.php:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4222
  msgctxt "form-fields admin"
4223
  msgid ""
4224
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
4225
  "switch it unless you know what you're doing."
4226
  msgstr ""
4227
 
4228
- #: core/fieldtypes/class-fieldtypes-textarea.php:44
4229
  msgctxt "form-fields admin"
4230
  msgid "Apply \"the_content\" filter before displaying this field?"
4231
  msgstr ""
@@ -4605,7 +4642,7 @@ msgctxt "default category name"
4605
  msgid "General"
4606
  msgstr ""
4607
 
4608
- #: core/installer.php:464
4609
  msgctxt "installer"
4610
  msgid ""
4611
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
@@ -4613,82 +4650,82 @@ msgid ""
4613
  "the Regions module."
4614
  msgstr ""
4615
 
4616
- #: core/installer.php:530
4617
  msgctxt "installer"
4618
  msgid "Cleaning up listing fees information... %d/%d"
4619
  msgstr ""
4620
 
4621
- #: core/installer.php:580
4622
  msgctxt "installer"
4623
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4624
  msgstr ""
4625
 
4626
- #: core/installer.php:609
4627
  msgctxt "installer"
4628
  msgid "Initial listing payment (BD < 3.4)"
4629
  msgstr ""
4630
 
4631
- #: core/installer.php:620
4632
  msgctxt "installer"
4633
  msgid "Listing edit payment (BD < 3.4)"
4634
  msgstr ""
4635
 
4636
- #: core/installer.php:641
4637
  msgctxt "installer"
4638
  msgid "Renewal fee \"%s\" for category \"%s\""
4639
  msgstr ""
4640
 
4641
- #: core/installer.php:660
4642
  msgctxt "installer"
4643
  msgid "Listing upgrade to featured"
4644
  msgstr ""
4645
 
4646
- #: core/installer.php:902
4647
  msgid "Business Directory - Manual Upgrade Required"
4648
  msgstr ""
4649
 
4650
- #: core/installer.php:904
4651
  msgid ""
4652
  "Business Directory features are currently disabled because the plugin needs "
4653
  "to perform a manual upgrade before continuing."
4654
  msgstr ""
4655
 
4656
- #: core/installer.php:906
4657
  msgid "Perform Manual Upgrade"
4658
  msgstr ""
4659
 
4660
- #: core/installer.php:922 core/installer.php:923 core/installer.php:934
4661
  msgid "Business Directory - Manual Upgrade"
4662
  msgstr ""
4663
 
4664
- #: core/installer.php:938
4665
  msgid ""
4666
  "Business Directory features are currently disabled because the plugin needs "
4667
  "to perform a manual upgrade before it can be used."
4668
  msgstr ""
4669
 
4670
- #: core/installer.php:940
4671
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4672
  msgstr ""
4673
 
4674
- #: core/installer.php:943
4675
  msgctxt "manual-upgrade"
4676
  msgid "Start Upgrade"
4677
  msgstr ""
4678
 
4679
- #: core/installer.php:945
4680
  msgctxt "manual-upgrade"
4681
  msgid "Pause Upgrade"
4682
  msgstr ""
4683
 
4684
- #: core/installer.php:951
4685
  msgctxt "manual-upgrade"
4686
  msgid ""
4687
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
4688
  "available."
4689
  msgstr ""
4690
 
4691
- #: core/installer.php:954
4692
  msgctxt "manual-upgrade"
4693
  msgid "Go to \"Directory Admin\""
4694
  msgstr ""
@@ -4769,37 +4806,37 @@ msgctxt "fees-api"
4769
  msgid "Free Listing"
4770
  msgstr ""
4771
 
4772
- #: core/payment.php:144
4773
  msgctxt "fees-api"
4774
  msgid "Fee label is required."
4775
  msgstr ""
4776
 
4777
- #: core/payment.php:147
4778
  msgctxt "fees-api"
4779
  msgid "Fee amount must be a non-negative decimal number."
4780
  msgstr ""
4781
 
4782
- #: core/payment.php:150 core/payment.php:153
4783
  msgctxt "fees-api"
4784
  msgid "Fee must apply to at least one category."
4785
  msgstr ""
4786
 
4787
- #: core/payment.php:156
4788
  msgctxt "fees-api"
4789
  msgid "Fee allowed images must be a non-negative integer."
4790
  msgstr ""
4791
 
4792
- #: core/payment.php:159
4793
  msgctxt "fees-api"
4794
  msgid "Fee listing run must be a non-negative integer."
4795
  msgstr ""
4796
 
4797
- #: core/payment.php:164
4798
  msgctxt "fees-api"
4799
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
4800
  msgstr ""
4801
 
4802
- #: core/payment.php:339
4803
  msgctxt "payments-api"
4804
  msgid ""
4805
  "You are offering featured listings but have payments turned off. Go to <a "
@@ -4808,7 +4845,7 @@ msgid ""
4808
  "disabled."
4809
  msgstr ""
4810
 
4811
- #: core/payment.php:357
4812
  msgctxt "payments-api"
4813
  msgid ""
4814
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
@@ -4816,7 +4853,7 @@ msgid ""
4816
  "Check the <a href=\"%s\">payment settings</a>."
4817
  msgstr ""
4818
 
4819
- #: core/payment.php:367
4820
  msgctxt "admin"
4821
  msgid ""
4822
  "You have payments turned on but no gateway is active and properly "
@@ -4825,14 +4862,14 @@ msgid ""
4825
  "<i>Free Mode</i>."
4826
  msgstr ""
4827
 
4828
- #: core/payment.php:371
4829
  msgid ""
4830
  "BD detected PayFast and another gateway were enabled. This setup is not "
4831
  "recommended due to PayFast supporting only ZAR and the other gateways not "
4832
  "supporting this currency."
4833
  msgstr ""
4834
 
4835
- #: core/payment.php:375
4836
  msgid ""
4837
  "You have recurring renewal of listing fees enabled but the payment gateways "
4838
  "installed don't support recurring payments. Until a gateway that supports "
@@ -4840,43 +4877,43 @@ msgid ""
4840
  "disabled."
4841
  msgstr ""
4842
 
4843
- #: core/payment.php:380
4844
  msgid ""
4845
  "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
4846
  "supported by the gateway. All other fees will be charged as non-recurring."
4847
  msgstr ""
4848
 
4849
- #: core/payment.php:413
4850
  msgctxt "payments-api"
4851
  msgid "Checkout"
4852
  msgstr ""
4853
 
4854
- #: core/payment.php:414
4855
  msgctxt "payments-api"
4856
  msgid "Pay %1$s through %2$s"
4857
  msgstr ""
4858
 
4859
- #: core/payment.php:421
4860
  msgctxt "payments-api"
4861
  msgid "Your transaction has been approved."
4862
  msgstr ""
4863
 
4864
- #: core/payment.php:602
4865
  msgctxt "payments"
4866
  msgid "Payment Details"
4867
  msgstr ""
4868
 
4869
- #: core/payment.php:629
4870
  msgctxt "checkout"
4871
  msgid "Payment Method"
4872
  msgstr ""
4873
 
4874
- #: core/payment.php:658
4875
  msgctxt "payment"
4876
  msgid "Return to Directory."
4877
  msgstr ""
4878
 
4879
- #: core/payment.php:664
4880
  msgctxt "payments"
4881
  msgid ""
4882
  "Your payment is being processed by the payment gateway. Please reload this "
@@ -4884,7 +4921,7 @@ msgid ""
4884
  "administrator."
4885
  msgstr ""
4886
 
4887
- #: core/payment.php:667
4888
  msgctxt "payments"
4889
  msgid ""
4890
  "The payment has been rejected by the payment gateway. Please contact the "
@@ -4892,29 +4929,29 @@ msgid ""
4892
  "Method\" to select another payment method and try again."
4893
  msgstr ""
4894
 
4895
- #: core/payment.php:668
4896
  msgctxt "payments"
4897
  msgid "Change Payment Method"
4898
  msgstr ""
4899
 
4900
- #: core/payment.php:670
4901
  msgctxt "payments"
4902
  msgid ""
4903
  "The payment has been rejected by the payment gateway. Please contact the "
4904
  "site administrator if you think there is an error."
4905
  msgstr ""
4906
 
4907
- #: core/payment.php:673
4908
  msgctxt "payments"
4909
  msgid "The payment has been canceled at your request."
4910
  msgstr ""
4911
 
4912
- #: core/payment.php:769
4913
  msgctxt "admin"
4914
  msgid "Pending Abandonment"
4915
  msgstr ""
4916
 
4917
- #: core/payment.php:774
4918
  msgctxt "admin"
4919
  msgid "Abandoned"
4920
  msgstr ""
@@ -5288,22 +5325,22 @@ msgctxt "templates"
5288
  msgid "I agree to the Terms and Conditions"
5289
  msgstr ""
5290
 
5291
- #: core/view-submit-listing.php:406
5292
  msgctxt "listings"
5293
  msgid "Fee \"%s\" for category \"%s\"%s"
5294
  msgstr ""
5295
 
5296
- #: core/view-submit-listing.php:409
5297
  msgctxt "listings"
5298
  msgid "(recurring)"
5299
  msgstr ""
5300
 
5301
- #: core/view-submit-listing.php:419 core/view-upgrade-listing.php:54
5302
  msgctxt "submit"
5303
  msgid "Listing upgrade to featured"
5304
  msgstr ""
5305
 
5306
- #: core/view-submit-listing.php:452
5307
  msgctxt "submit_state"
5308
  msgid "Invalid submit state."
5309
  msgstr ""
@@ -5323,27 +5360,27 @@ msgctxt "templates"
5323
  msgid "Return to listing."
5324
  msgstr ""
5325
 
5326
- #: core/views.php:30
5327
  msgid ""
5328
  "You need to create a page with the [businessdirectory] shortcode for the "
5329
  "Business Directory plugin to work correctly."
5330
  msgstr ""
5331
 
5332
- #: core/views.php:32
5333
  msgid "The directory is temporarily disabled."
5334
  msgstr ""
5335
 
5336
- #: core/views.php:190
5337
  msgctxt "preview"
5338
  msgid "This is just a preview. The listing has not been published yet."
5339
  msgstr ""
5340
 
5341
- #: core/views.php:342
5342
  msgctxt "templates"
5343
  msgid "Listings tagged: %s"
5344
  msgstr ""
5345
 
5346
- #: core/views.php:459
5347
  msgctxt "templates"
5348
  msgid ""
5349
  "There are no categories assigned to the business directory yet. You need to "
@@ -5353,12 +5390,12 @@ msgid ""
5353
  "categories to the business directory."
5354
  msgstr ""
5355
 
5356
- #: core/views.php:461
5357
  msgctxt "templates"
5358
  msgid "There are currently no listings in the directory."
5359
  msgstr ""
5360
 
5361
- #: core/views.php:479
5362
  msgctxt "templates"
5363
  msgid ""
5364
  "You have \"Hide Empty Categories\" on and some categories that don't have "
@@ -5952,7 +5989,7 @@ msgstr ""
5952
  #: templates/renew-listing.tpl.php:22
5953
  #: templates/submit-listing/category-selection.tpl.php:8
5954
  #: templates/submit-listing/fee-selection.tpl.php:37
5955
- #: templates/submit-listing/images.tpl.php:36
5956
  #: templates/submit-listing/listing-fields.tpl.php:34
5957
  msgctxt "templates"
5958
  msgid "Continue"
@@ -6049,12 +6086,12 @@ msgid ""
6049
  "Would you like to make your fee renew automatically at the end of the period?"
6050
  msgstr ""
6051
 
6052
- #: templates/submit-listing/images-single.tpl.php:9
6053
  msgctxt "templates"
6054
  msgid "Delete Image"
6055
  msgstr ""
6056
 
6057
- #: templates/submit-listing/images-single.tpl.php:16
6058
  msgctxt "templates"
6059
  msgid "Set this image as the listing thumbnail."
6060
  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: 2015-12-14 21:54: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"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
 
19
+ #: admin/class-admin-listings.php:36
20
+ msgctxt "admin category filter"
21
+ msgid "All categories"
22
+ msgstr ""
23
+
24
+ #: admin/class-admin-listings.php:68
25
  msgid "Listing Information"
26
  msgstr ""
27
 
28
+ #: admin/class-admin-listings.php:75
29
  msgctxt "admin"
30
  msgid "Listing Fields / Images"
31
  msgstr ""
32
 
33
+ #: admin/class-admin-listings.php:86
34
  msgctxt "admin"
35
  msgid "Categories"
36
  msgstr ""
37
 
38
+ #: admin/class-admin-listings.php:87
39
  msgid "Payment Status"
40
  msgstr ""
41
 
42
+ #: admin/class-admin-listings.php:88
43
  msgid "Featured (Sticky) Status"
44
  msgstr ""
45
 
46
+ #: admin/class-admin-listings.php:119
47
  msgctxt "admin"
48
  msgid "(Listing expired in this category)"
49
  msgstr ""
50
 
51
+ #: admin/class-admin-listings.php:137 admin/class-admin-listings.php:220
52
  msgid "Paid"
53
  msgstr ""
54
 
55
+ #: admin/class-admin-listings.php:142
56
  msgid "Mark as"
57
  msgstr ""
58
 
59
+ #: admin/class-admin-listings.php:151 admin/class-admin-listings.php:230
60
  msgid "Pending Upgrade"
61
  msgstr ""
62
 
63
+ #: admin/class-admin-listings.php:159 admin/listing-metabox.php:68
64
  msgid "Upgrade to %s"
65
  msgstr ""
66
 
67
+ #: admin/class-admin-listings.php:166 admin/listing-metabox.php:75
68
  msgid "Downgrade to %s"
69
  msgstr ""
70
 
71
+ #: admin/class-admin-listings.php:169 admin/class-admin-listings.php:349
72
  msgctxt "admin actions"
73
  msgid "Upgrade to Featured"
74
  msgstr ""
75
 
76
+ #: admin/class-admin-listings.php:225
77
  msgid "Unpaid"
78
  msgstr ""
79
 
80
+ #: admin/class-admin-listings.php:235
81
  msgctxt "admin"
82
  msgid "Expired"
83
  msgstr ""
84
 
85
+ #: admin/class-admin-listings.php:285
86
  msgctxt "admin actions"
87
  msgid "Edit Listing"
88
  msgstr ""
89
 
90
+ #: admin/class-admin-listings.php:288
91
  msgctxt "admin actions"
92
  msgid "Delete Listing"
93
  msgstr ""
94
 
95
+ #: admin/class-admin-listings.php:347
96
  msgctxt "admin actions"
97
  msgid "Publish Listing"
98
  msgstr ""
99
 
100
+ #: admin/class-admin-listings.php:350
101
  msgctxt "admin actions"
102
  msgid "Downgrade to Normal"
103
  msgstr ""
104
 
105
+ #: admin/class-admin-listings.php:352
106
  msgctxt "admin actions"
107
  msgid "Mark as Paid"
108
  msgstr ""
109
 
110
+ #: admin/class-admin-listings.php:354
111
  msgctxt "admin actions"
112
  msgid "Renew Listing"
113
  msgstr ""
1254
  msgid "Warning"
1255
  msgstr ""
1256
 
1257
+ #: admin/templates/csv-import.tpl.php:12 admin/templates/csv-import.tpl.php:227
1258
  msgctxt "admin csv-import"
1259
  msgid "Help"
1260
  msgstr ""
1348
 
1349
  #: admin/templates/csv-import.tpl.php:171
1350
  msgctxt "admin csv-import"
1351
+ msgid "Keep existing listing images?"
1352
+ msgstr ""
1353
+
1354
+ #: admin/templates/csv-import.tpl.php:176
1355
+ msgctxt "admin csv-import"
1356
+ msgid "Keep existing images."
1357
  msgstr ""
1358
 
1359
  #: admin/templates/csv-import.tpl.php:177
1360
  msgctxt "admin csv-import"
1361
+ msgid "Appends new images while keeping current ones."
1362
  msgstr ""
1363
 
1364
  #: admin/templates/csv-import.tpl.php:182
1365
  msgctxt "admin csv-import"
1366
+ msgid "Assign listings to a user?"
1367
+ msgstr ""
1368
+
1369
+ #: admin/templates/csv-import.tpl.php:188
1370
+ msgctxt "admin csv-import"
1371
+ msgid "Assign listings to a user."
1372
+ msgstr ""
1373
+
1374
+ #: admin/templates/csv-import.tpl.php:193
1375
+ msgctxt "admin csv-import"
1376
  msgid "Default listing user"
1377
  msgstr ""
1378
 
1379
+ #: admin/templates/csv-import.tpl.php:198
1380
  msgctxt "admin csv-import"
1381
  msgid "Use spreadsheet information only."
1382
  msgstr ""
1383
 
1384
+ #: admin/templates/csv-import.tpl.php:204
1385
  msgctxt "admin csv-import"
1386
  msgid ""
1387
  "This user will be used if the username column is not present in the CSV file."
1388
  msgstr ""
1389
 
1390
+ #: admin/templates/csv-import.tpl.php:209
1391
  msgctxt "admin csv-import"
1392
  msgid "Disable e-mail notifications during import?"
1393
  msgstr ""
1394
 
1395
+ #: admin/templates/csv-import.tpl.php:214
1396
  msgctxt "admin csv-import"
1397
  msgid "Disable e-mail notifications."
1398
  msgstr ""
1399
 
1400
+ #: admin/templates/csv-import.tpl.php:220
1401
  msgctxt "admin csv-import"
1402
  msgid "Test Import"
1403
  msgstr ""
1404
 
1405
+ #: admin/templates/csv-import.tpl.php:221
1406
  msgctxt "admin csv-import"
1407
  msgid "Import Listings"
1408
  msgstr ""
1409
 
1410
+ #: admin/templates/csv-import.tpl.php:229
1411
  msgctxt "admin csv-import"
1412
  msgid ""
1413
  "The following are the valid header names to be used in the CSV file. "
1416
  "how an import file should look like."
1417
  msgstr ""
1418
 
1419
+ #: admin/templates/csv-import.tpl.php:236
1420
  msgctxt "admin csv-import"
1421
  msgid "Header name/label"
1422
  msgstr ""
1423
 
1424
+ #: admin/templates/csv-import.tpl.php:237
1425
  msgctxt "admin csv-import"
1426
  msgid "Field"
1427
  msgstr ""
1428
 
1429
+ #: admin/templates/csv-import.tpl.php:238
1430
  msgctxt "admin csv-import"
1431
  msgid "Type"
1432
  msgstr ""
1433
 
1434
+ #: admin/templates/csv-import.tpl.php:239
1435
  msgctxt "admin csv-import"
1436
  msgid "Required?"
1437
  msgstr ""
1438
 
1439
+ #: admin/templates/csv-import.tpl.php:240
1440
  msgctxt "admin csv-import"
1441
  msgid "Multivalued?"
1442
  msgstr ""
1443
 
1444
+ #: admin/templates/csv-import.tpl.php:262
1445
  msgctxt "admin csv-import"
1446
  msgid "Semicolon separated list of listing images (from the ZIP file)"
1447
  msgstr ""
1448
 
1449
+ #: admin/templates/csv-import.tpl.php:269
1450
  msgctxt "admin csv-import"
1451
  msgid "Listing author's username"
1452
  msgstr ""
1453
 
1454
+ #: admin/templates/csv-import.tpl.php:276
1455
  msgctxt "admin csv-import"
1456
  msgid ""
1457
  "Internal Sequence ID used to allow listing updates from external sources."
1458
  msgstr ""
1459
 
1460
+ #: admin/templates/csv-import.tpl.php:283
1461
  msgctxt "admin csv-import"
1462
  msgid ""
1463
  "Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
1815
  msgid "Please see the <a>Form Fields documentation</a> for more details."
1816
  msgstr ""
1817
 
1818
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.6.11) #-#-#-#-#
1819
  #. Plugin Name of the plugin/theme
1820
  #: admin/templates/header.tpl.php:4
1821
  msgid "Business Directory Plugin"
2510
  msgid "Listings tagged: %s"
2511
  msgstr ""
2512
 
2513
+ #: core/class-csv-import.php:375
2514
  msgctxt "admin csv-import"
2515
  msgid "Could not create listing category \"%s\""
2516
  msgstr ""
2517
 
2518
+ #: core/class-csv-import.php:519
2519
  msgctxt "admin csv-import"
2520
  msgid "Username \"%s\" does not exist"
2521
  msgstr ""
2522
 
2523
+ #: core/class-csv-import.php:551
2524
  msgctxt "admin csv-import"
2525
  msgid "Missing required field: %s"
2526
  msgstr ""
2527
 
2528
+ #: core/class-csv-import.php:571
2529
  msgctxt "admin csv-import"
2530
  msgid "Listing category \"%s\" does not exist"
2531
  msgstr ""
2619
  msgid "Featured Listing"
2620
  msgstr ""
2621
 
2622
+ #: core/class-listing.php:319 core/class-listing.php:345
2623
  msgctxt "listing"
2624
  msgid "(Fee Unavailable)"
2625
  msgstr ""
2679
  msgid "Fee \"%s\" for category \"%s\""
2680
  msgstr ""
2681
 
2682
+ #: core/class-recaptcha.php:90 core/class-recaptcha.php:105
2683
  msgctxt "recaptcha"
2684
  msgid "The reCAPTCHA wasn't entered correctly."
2685
  msgstr ""
4228
  msgid "Textarea"
4229
  msgstr ""
4230
 
4231
+ #: core/fieldtypes/class-fieldtypes-textarea.php:50
4232
  msgctxt "form-fields admin"
4233
  msgid "Allow HTML input for this field?"
4234
  msgstr ""
4235
 
4236
+ #: core/fieldtypes/class-fieldtypes-textarea.php:54
4237
  msgctxt "form-fields admin"
4238
  msgid "Allow WordPress shortcodes in this field?"
4239
  msgstr ""
4240
 
4241
+ #: core/fieldtypes/class-fieldtypes-textarea.php:57
4242
+ msgctxt "form-fields admin"
4243
+ msgid "Display a WYSIWYG editor on the frontend?"
4244
+ msgstr ""
4245
+
4246
+ #: core/fieldtypes/class-fieldtypes-textarea.php:60
4247
+ msgctxt "form-fields admin"
4248
+ msgid ""
4249
+ "<b>Warning:</b> Users can use this feature to get around your image limits "
4250
+ "in fee plans."
4251
+ msgstr ""
4252
+
4253
+ #: core/fieldtypes/class-fieldtypes-textarea.php:61
4254
+ msgctxt "form-fields admin"
4255
+ msgid "Allow images in WYSIWYG editor?"
4256
+ msgstr ""
4257
+
4258
+ #: core/fieldtypes/class-fieldtypes-textarea.php:64
4259
  msgctxt "form-fields admin"
4260
  msgid ""
4261
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
4262
  "switch it unless you know what you're doing."
4263
  msgstr ""
4264
 
4265
+ #: core/fieldtypes/class-fieldtypes-textarea.php:65
4266
  msgctxt "form-fields admin"
4267
  msgid "Apply \"the_content\" filter before displaying this field?"
4268
  msgstr ""
4642
  msgid "General"
4643
  msgstr ""
4644
 
4645
+ #: core/installer.php:469
4646
  msgctxt "installer"
4647
  msgid ""
4648
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
4650
  "the Regions module."
4651
  msgstr ""
4652
 
4653
+ #: core/installer.php:535
4654
  msgctxt "installer"
4655
  msgid "Cleaning up listing fees information... %d/%d"
4656
  msgstr ""
4657
 
4658
+ #: core/installer.php:585
4659
  msgctxt "installer"
4660
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4661
  msgstr ""
4662
 
4663
+ #: core/installer.php:614
4664
  msgctxt "installer"
4665
  msgid "Initial listing payment (BD < 3.4)"
4666
  msgstr ""
4667
 
4668
+ #: core/installer.php:625
4669
  msgctxt "installer"
4670
  msgid "Listing edit payment (BD < 3.4)"
4671
  msgstr ""
4672
 
4673
+ #: core/installer.php:646
4674
  msgctxt "installer"
4675
  msgid "Renewal fee \"%s\" for category \"%s\""
4676
  msgstr ""
4677
 
4678
+ #: core/installer.php:665
4679
  msgctxt "installer"
4680
  msgid "Listing upgrade to featured"
4681
  msgstr ""
4682
 
4683
+ #: core/installer.php:907
4684
  msgid "Business Directory - Manual Upgrade Required"
4685
  msgstr ""
4686
 
4687
+ #: core/installer.php:909
4688
  msgid ""
4689
  "Business Directory features are currently disabled because the plugin needs "
4690
  "to perform a manual upgrade before continuing."
4691
  msgstr ""
4692
 
4693
+ #: core/installer.php:911
4694
  msgid "Perform Manual Upgrade"
4695
  msgstr ""
4696
 
4697
+ #: core/installer.php:927 core/installer.php:928 core/installer.php:939
4698
  msgid "Business Directory - Manual Upgrade"
4699
  msgstr ""
4700
 
4701
+ #: core/installer.php:943
4702
  msgid ""
4703
  "Business Directory features are currently disabled because the plugin needs "
4704
  "to perform a manual upgrade before it can be used."
4705
  msgstr ""
4706
 
4707
+ #: core/installer.php:945
4708
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4709
  msgstr ""
4710
 
4711
+ #: core/installer.php:948
4712
  msgctxt "manual-upgrade"
4713
  msgid "Start Upgrade"
4714
  msgstr ""
4715
 
4716
+ #: core/installer.php:950
4717
  msgctxt "manual-upgrade"
4718
  msgid "Pause Upgrade"
4719
  msgstr ""
4720
 
4721
+ #: core/installer.php:956
4722
  msgctxt "manual-upgrade"
4723
  msgid ""
4724
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
4725
  "available."
4726
  msgstr ""
4727
 
4728
+ #: core/installer.php:959
4729
  msgctxt "manual-upgrade"
4730
  msgid "Go to \"Directory Admin\""
4731
  msgstr ""
4806
  msgid "Free Listing"
4807
  msgstr ""
4808
 
4809
+ #: core/payment.php:145
4810
  msgctxt "fees-api"
4811
  msgid "Fee label is required."
4812
  msgstr ""
4813
 
4814
+ #: core/payment.php:148
4815
  msgctxt "fees-api"
4816
  msgid "Fee amount must be a non-negative decimal number."
4817
  msgstr ""
4818
 
4819
+ #: core/payment.php:151 core/payment.php:154
4820
  msgctxt "fees-api"
4821
  msgid "Fee must apply to at least one category."
4822
  msgstr ""
4823
 
4824
+ #: core/payment.php:157
4825
  msgctxt "fees-api"
4826
  msgid "Fee allowed images must be a non-negative integer."
4827
  msgstr ""
4828
 
4829
+ #: core/payment.php:160
4830
  msgctxt "fees-api"
4831
  msgid "Fee listing run must be a non-negative integer."
4832
  msgstr ""
4833
 
4834
+ #: core/payment.php:165
4835
  msgctxt "fees-api"
4836
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
4837
  msgstr ""
4838
 
4839
+ #: core/payment.php:340
4840
  msgctxt "payments-api"
4841
  msgid ""
4842
  "You are offering featured listings but have payments turned off. Go to <a "
4845
  "disabled."
4846
  msgstr ""
4847
 
4848
+ #: core/payment.php:358
4849
  msgctxt "payments-api"
4850
  msgid ""
4851
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
4853
  "Check the <a href=\"%s\">payment settings</a>."
4854
  msgstr ""
4855
 
4856
+ #: core/payment.php:368
4857
  msgctxt "admin"
4858
  msgid ""
4859
  "You have payments turned on but no gateway is active and properly "
4862
  "<i>Free Mode</i>."
4863
  msgstr ""
4864
 
4865
+ #: core/payment.php:372
4866
  msgid ""
4867
  "BD detected PayFast and another gateway were enabled. This setup is not "
4868
  "recommended due to PayFast supporting only ZAR and the other gateways not "
4869
  "supporting this currency."
4870
  msgstr ""
4871
 
4872
+ #: core/payment.php:376
4873
  msgid ""
4874
  "You have recurring renewal of listing fees enabled but the payment gateways "
4875
  "installed don't support recurring payments. Until a gateway that supports "
4877
  "disabled."
4878
  msgstr ""
4879
 
4880
+ #: core/payment.php:381
4881
  msgid ""
4882
  "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
4883
  "supported by the gateway. All other fees will be charged as non-recurring."
4884
  msgstr ""
4885
 
4886
+ #: core/payment.php:414
4887
  msgctxt "payments-api"
4888
  msgid "Checkout"
4889
  msgstr ""
4890
 
4891
+ #: core/payment.php:415
4892
  msgctxt "payments-api"
4893
  msgid "Pay %1$s through %2$s"
4894
  msgstr ""
4895
 
4896
+ #: core/payment.php:422
4897
  msgctxt "payments-api"
4898
  msgid "Your transaction has been approved."
4899
  msgstr ""
4900
 
4901
+ #: core/payment.php:603
4902
  msgctxt "payments"
4903
  msgid "Payment Details"
4904
  msgstr ""
4905
 
4906
+ #: core/payment.php:630
4907
  msgctxt "checkout"
4908
  msgid "Payment Method"
4909
  msgstr ""
4910
 
4911
+ #: core/payment.php:659
4912
  msgctxt "payment"
4913
  msgid "Return to Directory."
4914
  msgstr ""
4915
 
4916
+ #: core/payment.php:665
4917
  msgctxt "payments"
4918
  msgid ""
4919
  "Your payment is being processed by the payment gateway. Please reload this "
4921
  "administrator."
4922
  msgstr ""
4923
 
4924
+ #: core/payment.php:668
4925
  msgctxt "payments"
4926
  msgid ""
4927
  "The payment has been rejected by the payment gateway. Please contact the "
4929
  "Method\" to select another payment method and try again."
4930
  msgstr ""
4931
 
4932
+ #: core/payment.php:669
4933
  msgctxt "payments"
4934
  msgid "Change Payment Method"
4935
  msgstr ""
4936
 
4937
+ #: core/payment.php:671
4938
  msgctxt "payments"
4939
  msgid ""
4940
  "The payment has been rejected by the payment gateway. Please contact the "
4941
  "site administrator if you think there is an error."
4942
  msgstr ""
4943
 
4944
+ #: core/payment.php:674
4945
  msgctxt "payments"
4946
  msgid "The payment has been canceled at your request."
4947
  msgstr ""
4948
 
4949
+ #: core/payment.php:770
4950
  msgctxt "admin"
4951
  msgid "Pending Abandonment"
4952
  msgstr ""
4953
 
4954
+ #: core/payment.php:775
4955
  msgctxt "admin"
4956
  msgid "Abandoned"
4957
  msgstr ""
5325
  msgid "I agree to the Terms and Conditions"
5326
  msgstr ""
5327
 
5328
+ #: core/view-submit-listing.php:443
5329
  msgctxt "listings"
5330
  msgid "Fee \"%s\" for category \"%s\"%s"
5331
  msgstr ""
5332
 
5333
+ #: core/view-submit-listing.php:446
5334
  msgctxt "listings"
5335
  msgid "(recurring)"
5336
  msgstr ""
5337
 
5338
+ #: core/view-submit-listing.php:456 core/view-upgrade-listing.php:54
5339
  msgctxt "submit"
5340
  msgid "Listing upgrade to featured"
5341
  msgstr ""
5342
 
5343
+ #: core/view-submit-listing.php:489
5344
  msgctxt "submit_state"
5345
  msgid "Invalid submit state."
5346
  msgstr ""
5360
  msgid "Return to listing."
5361
  msgstr ""
5362
 
5363
+ #: core/views.php:32
5364
  msgid ""
5365
  "You need to create a page with the [businessdirectory] shortcode for the "
5366
  "Business Directory plugin to work correctly."
5367
  msgstr ""
5368
 
5369
+ #: core/views.php:34
5370
  msgid "The directory is temporarily disabled."
5371
  msgstr ""
5372
 
5373
+ #: core/views.php:203
5374
  msgctxt "preview"
5375
  msgid "This is just a preview. The listing has not been published yet."
5376
  msgstr ""
5377
 
5378
+ #: core/views.php:355
5379
  msgctxt "templates"
5380
  msgid "Listings tagged: %s"
5381
  msgstr ""
5382
 
5383
+ #: core/views.php:472
5384
  msgctxt "templates"
5385
  msgid ""
5386
  "There are no categories assigned to the business directory yet. You need to "
5390
  "categories to the business directory."
5391
  msgstr ""
5392
 
5393
+ #: core/views.php:474
5394
  msgctxt "templates"
5395
  msgid "There are currently no listings in the directory."
5396
  msgstr ""
5397
 
5398
+ #: core/views.php:492
5399
  msgctxt "templates"
5400
  msgid ""
5401
  "You have \"Hide Empty Categories\" on and some categories that don't have "
5989
  #: templates/renew-listing.tpl.php:22
5990
  #: templates/submit-listing/category-selection.tpl.php:8
5991
  #: templates/submit-listing/fee-selection.tpl.php:37
5992
+ #: templates/submit-listing/images.tpl.php:38
5993
  #: templates/submit-listing/listing-fields.tpl.php:34
5994
  msgctxt "templates"
5995
  msgid "Continue"
6086
  "Would you like to make your fee renew automatically at the end of the period?"
6087
  msgstr ""
6088
 
6089
+ #: templates/submit-listing/images-single.tpl.php:18
6090
  msgctxt "templates"
6091
  msgid "Delete Image"
6092
  msgstr ""
6093
 
6094
+ #: templates/submit-listing/images-single.tpl.php:24
6095
  msgctxt "templates"
6096
  msgid "Set this image as the listing thumbnail."
6097
  msgstr ""
languages/WPBDM-es_ES.mo CHANGED
Binary file
languages/WPBDM-es_ES.po CHANGED
@@ -2,10 +2,10 @@
2
  # This file is distributed under the same license as the package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Business Directory Plugin 3.6.9\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2015-11-17 23:37:00+00:00\n"
8
- "PO-Revision-Date: 2015-11-17 18:40-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"
@@ -17,93 +17,98 @@ msgstr ""
17
  "X-Poedit-Bookmarks: -1,-1,-1,-1,-1,-1,-1,-1,-1,543\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
 
20
- #: admin/class-admin-listings.php:24
 
 
 
 
 
21
  msgid "Listing Information"
22
  msgstr "Información del Listado"
23
 
24
- #: admin/class-admin-listings.php:31
25
  msgctxt "admin"
26
  msgid "Listing Fields / Images"
27
  msgstr "Campos del Listado / Imágenes"
28
 
29
- #: admin/class-admin-listings.php:42
30
  msgctxt "admin"
31
  msgid "Categories"
32
  msgstr "Categorías"
33
 
34
- #: admin/class-admin-listings.php:43
35
  msgid "Payment Status"
36
  msgstr "Estado de Pago"
37
 
38
- #: admin/class-admin-listings.php:44
39
  msgid "Featured (Sticky) Status"
40
  msgstr "Estado Destacado/Sticky"
41
 
42
- #: admin/class-admin-listings.php:75
43
  msgctxt "admin"
44
  msgid "(Listing expired in this category)"
45
  msgstr "(El listado ha expirado en esta categoría)"
46
 
47
- #: admin/class-admin-listings.php:93 admin/class-admin-listings.php:176
48
  msgid "Paid"
49
  msgstr "Pago"
50
 
51
- #: admin/class-admin-listings.php:98
52
  msgid "Mark as"
53
  msgstr "Marcar como"
54
 
55
- #: admin/class-admin-listings.php:107 admin/class-admin-listings.php:186
56
  msgid "Pending Upgrade"
57
  msgstr "Pendientes de Mejora"
58
 
59
- #: admin/class-admin-listings.php:115 admin/listing-metabox.php:68
60
  msgid "Upgrade to %s"
61
  msgstr "Mejorar a %s"
62
 
63
- #: admin/class-admin-listings.php:122 admin/listing-metabox.php:75
64
  msgid "Downgrade to %s"
65
  msgstr "Degradar a %s"
66
 
67
- #: admin/class-admin-listings.php:125 admin/class-admin-listings.php:295
68
  msgctxt "admin actions"
69
  msgid "Upgrade to Featured"
70
  msgstr "Mejorar a Destacado"
71
 
72
- #: admin/class-admin-listings.php:181
73
  msgid "Unpaid"
74
  msgstr "No pagado"
75
 
76
- #: admin/class-admin-listings.php:191
77
  msgctxt "admin"
78
  msgid "Expired"
79
  msgstr "Expirados"
80
 
81
- #: admin/class-admin-listings.php:241
82
  msgctxt "admin actions"
83
  msgid "Edit Listing"
84
  msgstr "Editar Listado"
85
 
86
- #: admin/class-admin-listings.php:244
87
  msgctxt "admin actions"
88
  msgid "Delete Listing"
89
  msgstr "Eliminar Listado"
90
 
91
- #: admin/class-admin-listings.php:293
92
  msgctxt "admin actions"
93
  msgid "Publish Listing"
94
  msgstr "Publicar Listado"
95
 
96
- #: admin/class-admin-listings.php:296
97
  msgctxt "admin actions"
98
  msgid "Downgrade to Normal"
99
  msgstr "Degradar a Normal"
100
 
101
- #: admin/class-admin-listings.php:298
102
  msgctxt "admin actions"
103
  msgid "Mark as Paid"
104
  msgstr "Marcar listado como Pagado"
105
 
106
- #: admin/class-admin-listings.php:300
107
  msgctxt "admin actions"
108
  msgid "Renew Listing"
109
  msgstr "Renovar Listado"
@@ -428,10 +433,9 @@ msgid "Directory Themes"
428
  msgstr ""
429
 
430
  #: admin/class-themes-admin.php:42
431
- #, fuzzy
432
  msgctxt "themes"
433
  msgid "Directory Themes %s"
434
- msgstr "El Directorio de Negocios corre gracias a %s"
435
 
436
  #: admin/class-themes-admin.php:97
437
  msgctxt "themes"
@@ -1320,7 +1324,7 @@ msgctxt "admin csv-import"
1320
  msgid "Warning"
1321
  msgstr "Advertencia"
1322
 
1323
- #: admin/templates/csv-import.tpl.php:12 admin/templates/csv-import.tpl.php:216
1324
  msgctxt "admin csv-import"
1325
  msgid "Help"
1326
  msgstr "Ayuda"
@@ -1417,25 +1421,40 @@ msgstr "Generar errores cuando una categoría no exista"
1417
 
1418
  #: admin/templates/csv-import.tpl.php:171
1419
  msgctxt "admin csv-import"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1420
  msgid "Assign listings to a user?"
1421
  msgstr "Asignar listados a un usuario?"
1422
 
1423
- #: admin/templates/csv-import.tpl.php:177
1424
  msgctxt "admin csv-import"
1425
  msgid "Assign listings to a user."
1426
  msgstr "Asignar listados a un usuario."
1427
 
1428
- #: admin/templates/csv-import.tpl.php:182
1429
  msgctxt "admin csv-import"
1430
  msgid "Default listing user"
1431
  msgstr "Usuario a usar por defecto"
1432
 
1433
- #: admin/templates/csv-import.tpl.php:187
1434
  msgctxt "admin csv-import"
1435
  msgid "Use spreadsheet information only."
1436
  msgstr "Utilizar únicamente la información del archivo CSV."
1437
 
1438
- #: admin/templates/csv-import.tpl.php:193
1439
  msgctxt "admin csv-import"
1440
  msgid ""
1441
  "This user will be used if the username column is not present in the CSV file."
@@ -1443,27 +1462,27 @@ msgstr ""
1443
  "Este usuario será utilizado si la columna \"username\" no está presente en "
1444
  "el archivo CSV."
1445
 
1446
- #: admin/templates/csv-import.tpl.php:198
1447
  msgctxt "admin csv-import"
1448
  msgid "Disable e-mail notifications during import?"
1449
  msgstr "Deshabilitar notificaciones de correo durante la importación?"
1450
 
1451
- #: admin/templates/csv-import.tpl.php:203
1452
  msgctxt "admin csv-import"
1453
  msgid "Disable e-mail notifications."
1454
  msgstr "Deshabilitar notificaciones de correo-e."
1455
 
1456
- #: admin/templates/csv-import.tpl.php:209
1457
  msgctxt "admin csv-import"
1458
  msgid "Test Import"
1459
  msgstr "Importación de Verificación"
1460
 
1461
- #: admin/templates/csv-import.tpl.php:210
1462
  msgctxt "admin csv-import"
1463
  msgid "Import Listings"
1464
  msgstr "Importar Listados"
1465
 
1466
- #: admin/templates/csv-import.tpl.php:218
1467
  msgctxt "admin csv-import"
1468
  msgid ""
1469
  "The following are the valid header names to be used in the CSV file. "
@@ -1477,44 +1496,44 @@ msgstr ""
1477
  "archivo CSV de ejemplo\"</a> para ver cómo debe lucir un archivo de "
1478
  "importación válido."
1479
 
1480
- #: admin/templates/csv-import.tpl.php:225
1481
  msgctxt "admin csv-import"
1482
  msgid "Header name/label"
1483
  msgstr "Nombre de cabecera"
1484
 
1485
- #: admin/templates/csv-import.tpl.php:226
1486
  msgctxt "admin csv-import"
1487
  msgid "Field"
1488
  msgstr "Campo"
1489
 
1490
- #: admin/templates/csv-import.tpl.php:227
1491
  msgctxt "admin csv-import"
1492
  msgid "Type"
1493
  msgstr "Tipo"
1494
 
1495
- #: admin/templates/csv-import.tpl.php:228
1496
  msgctxt "admin csv-import"
1497
  msgid "Required?"
1498
  msgstr "Requerido?"
1499
 
1500
- #: admin/templates/csv-import.tpl.php:229
1501
  msgctxt "admin csv-import"
1502
  msgid "Multivalued?"
1503
  msgstr "Multivaluado?"
1504
 
1505
- #: admin/templates/csv-import.tpl.php:251
1506
  msgctxt "admin csv-import"
1507
  msgid "Semicolon separated list of listing images (from the ZIP file)"
1508
  msgstr ""
1509
  "Lista de imágenes del listado separadas con punto y coma (deben encontrarse "
1510
  "en el archivo ZIP)"
1511
 
1512
- #: admin/templates/csv-import.tpl.php:258
1513
  msgctxt "admin csv-import"
1514
  msgid "Listing author's username"
1515
  msgstr "Autor del listado (nombre de usuario)"
1516
 
1517
- #: admin/templates/csv-import.tpl.php:265
1518
  msgctxt "admin csv-import"
1519
  msgid ""
1520
  "Internal Sequence ID used to allow listing updates from external sources."
@@ -1522,7 +1541,7 @@ msgstr ""
1522
  "ID de secuencia interno utilizado para permitir actualizaciones a los "
1523
  "listados desde fuentes externas."
1524
 
1525
- #: admin/templates/csv-import.tpl.php:272
1526
  msgctxt "admin csv-import"
1527
  msgid ""
1528
  "Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
@@ -2382,13 +2401,11 @@ msgid "Delete Directory Theme"
2382
  msgstr ""
2383
 
2384
  #: admin/templates/themes-delete-confirm.tpl.php:3
2385
- #, fuzzy
2386
  msgctxt "themes admin"
2387
  msgid "Are you sure you want to delete the directory theme \"%s\"?"
2388
- msgstr "Está seguro de que desea eliminar la comisión \"%s\"?"
2389
 
2390
  #: admin/templates/themes-delete-confirm.tpl.php:12
2391
- #, fuzzy
2392
  msgctxt "themes admin"
2393
  msgid "Cancel"
2394
  msgstr "Cancelar"
@@ -2620,22 +2637,22 @@ msgctxt "title"
2620
  msgid "Listings tagged: %s"
2621
  msgstr "Listados etiquetados: %s"
2622
 
2623
- #: core/class-csv-import.php:371
2624
  msgctxt "admin csv-import"
2625
  msgid "Could not create listing category \"%s\""
2626
  msgstr "No se pudo crear la categoría \"%s\""
2627
 
2628
- #: core/class-csv-import.php:515
2629
  msgctxt "admin csv-import"
2630
  msgid "Username \"%s\" does not exist"
2631
  msgstr "El usuario \"%s\" no existe"
2632
 
2633
- #: core/class-csv-import.php:547
2634
  msgctxt "admin csv-import"
2635
  msgid "Missing required field: %s"
2636
  msgstr "Falta campo requerido: %s"
2637
 
2638
- #: core/class-csv-import.php:567
2639
  msgctxt "admin csv-import"
2640
  msgid "Listing category \"%s\" does not exist"
2641
  msgstr "La categoría \"%s\" no existe"
@@ -2734,7 +2751,7 @@ msgctxt "listings-api"
2734
  msgid "Featured Listing"
2735
  msgstr "Listado Destacado"
2736
 
2737
- #: core/class-listing.php:297 core/class-listing.php:323
2738
  msgctxt "listing"
2739
  msgid "(Fee Unavailable)"
2740
  msgstr "(Comisión no disponible)"
@@ -2794,7 +2811,7 @@ msgctxt "listings"
2794
  msgid "Fee \"%s\" for category \"%s\""
2795
  msgstr "Comisión \"%s\" para categoría \"%s\""
2796
 
2797
- #: core/class-recaptcha.php:87 core/class-recaptcha.php:102
2798
  msgctxt "recaptcha"
2799
  msgid "The reCAPTCHA wasn't entered correctly."
2800
  msgstr "El reCAPTCHA no fue ingresado correctamente."
@@ -4465,17 +4482,36 @@ msgctxt "form-fields api"
4465
  msgid "Textarea"
4466
  msgstr "Área de texto"
4467
 
4468
- #: core/fieldtypes/class-fieldtypes-textarea.php:35
4469
  msgctxt "form-fields admin"
4470
  msgid "Allow HTML input for this field?"
4471
  msgstr "Permitir entrada HTML en este campo?"
4472
 
4473
- #: core/fieldtypes/class-fieldtypes-textarea.php:39
4474
  msgctxt "form-fields admin"
4475
  msgid "Allow WordPress shortcodes in this field?"
4476
  msgstr "Permitir shortcodes de WordPress en este campo?"
4477
 
4478
- #: core/fieldtypes/class-fieldtypes-textarea.php:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4479
  msgctxt "form-fields admin"
4480
  msgid ""
4481
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
@@ -4484,7 +4520,7 @@ msgstr ""
4484
  "<b>¡Usuarios avanzados únicamente!</b> No cambie esta configuración salvo si "
4485
  "está seguro de lo que está haciendo."
4486
 
4487
- #: core/fieldtypes/class-fieldtypes-textarea.php:44
4488
  msgctxt "form-fields admin"
4489
  msgid "Apply \"the_content\" filter before displaying this field?"
4490
  msgstr ""
@@ -4604,7 +4640,7 @@ msgstr "Etiquetas"
4604
 
4605
  #: core/form-fields.php:321
4606
  msgid "Business Address"
4607
- msgstr ""
4608
 
4609
  #: core/form-fields.php:323
4610
  msgid "ZIP Code"
@@ -4842,7 +4878,7 @@ msgstr "La transacción ha sido cancelada por solicitud del usuario."
4842
  #: core/helpers/class-fs.php:112
4843
  msgctxt "fs helper"
4844
  msgid "Destination dir \"%s\" is not writable."
4845
- msgstr ""
4846
 
4847
  #: core/helpers/class-themes-updater.php:126
4848
  msgctxt "themes"
@@ -4874,7 +4910,7 @@ msgctxt "default category name"
4874
  msgid "General"
4875
  msgstr "General"
4876
 
4877
- #: core/installer.php:464
4878
  msgctxt "installer"
4879
  msgid ""
4880
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
@@ -4885,41 +4921,41 @@ msgstr ""
4885
  "es incompatible con la versión actual de Business Directory. Por favor "
4886
  "actualice el módulode Regions."
4887
 
4888
- #: core/installer.php:530
4889
  msgctxt "installer"
4890
  msgid "Cleaning up listing fees information... %d/%d"
4891
  msgstr "Actualizando información de comisiones de listados... %d/%d"
4892
 
4893
- #: core/installer.php:580
4894
  msgctxt "installer"
4895
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4896
  msgstr "Migrando transacciones anteriores a la nueva API de pagos... %d/%d"
4897
 
4898
- #: core/installer.php:609
4899
  msgctxt "installer"
4900
  msgid "Initial listing payment (BD < 3.4)"
4901
  msgstr "Pago inicial de listado (BD < 3.4)"
4902
 
4903
- #: core/installer.php:620
4904
  msgctxt "installer"
4905
  msgid "Listing edit payment (BD < 3.4)"
4906
  msgstr "Pago por edición de listado (BD < 3.4)"
4907
 
4908
- #: core/installer.php:641
4909
  msgctxt "installer"
4910
  msgid "Renewal fee \"%s\" for category \"%s\""
4911
  msgstr "Comisión de renovación \"%s\" para categoría \"%s\""
4912
 
4913
- #: core/installer.php:660
4914
  msgctxt "installer"
4915
  msgid "Listing upgrade to featured"
4916
  msgstr "Mejora a Destacado"
4917
 
4918
- #: core/installer.php:902
4919
  msgid "Business Directory - Manual Upgrade Required"
4920
  msgstr "Business Directory - Actualización Manual Requerida"
4921
 
4922
- #: core/installer.php:904
4923
  msgid ""
4924
  "Business Directory features are currently disabled because the plugin needs "
4925
  "to perform a manual upgrade before continuing."
@@ -4927,15 +4963,15 @@ msgstr ""
4927
  "Las características de Business Directory se encuentran deshabitadas pues es "
4928
  "necesario realizar una actualización manual antes de continuar."
4929
 
4930
- #: core/installer.php:906
4931
  msgid "Perform Manual Upgrade"
4932
  msgstr "Realizar Actualización Manual"
4933
 
4934
- #: core/installer.php:922 core/installer.php:923 core/installer.php:934
4935
  msgid "Business Directory - Manual Upgrade"
4936
  msgstr "Business Directory - Actualización Manual"
4937
 
4938
- #: core/installer.php:938
4939
  msgid ""
4940
  "Business Directory features are currently disabled because the plugin needs "
4941
  "to perform a manual upgrade before it can be used."
@@ -4944,23 +4980,23 @@ msgstr ""
4944
  "necesario realizar una actualización manual antes de que el plugin pueda ser "
4945
  "utilizado."
4946
 
4947
- #: core/installer.php:940
4948
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4949
  msgstr ""
4950
  "Haga clic en \"Iniciar Actualización\" y espere hasta que el proceso "
4951
  "finalice."
4952
 
4953
- #: core/installer.php:943
4954
  msgctxt "manual-upgrade"
4955
  msgid "Start Upgrade"
4956
  msgstr "Iniciar Actualización"
4957
 
4958
- #: core/installer.php:945
4959
  msgctxt "manual-upgrade"
4960
  msgid "Pause Upgrade"
4961
  msgstr "Detener Actualización"
4962
 
4963
- #: core/installer.php:951
4964
  msgctxt "manual-upgrade"
4965
  msgid ""
4966
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
@@ -4969,7 +5005,7 @@ msgstr ""
4969
  "La actualización fue ejecutada con éxito. Business Directory Plugin ahora se "
4970
  "encienta disponible para su uso."
4971
 
4972
- #: core/installer.php:954
4973
  msgctxt "manual-upgrade"
4974
  msgid "Go to \"Directory Admin\""
4975
  msgstr "Ir a \"Administración del Directorio\""
@@ -5056,38 +5092,38 @@ msgctxt "fees-api"
5056
  msgid "Free Listing"
5057
  msgstr "Listado Gratuito"
5058
 
5059
- #: core/payment.php:144
5060
  msgctxt "fees-api"
5061
  msgid "Fee label is required."
5062
  msgstr "El nombre de la Comisión es requerido."
5063
 
5064
- #: core/payment.php:147
5065
  msgctxt "fees-api"
5066
  msgid "Fee amount must be a non-negative decimal number."
5067
  msgstr "El precio de la comisión de be ser un número decimal no negativo."
5068
 
5069
- #: core/payment.php:150 core/payment.php:153
5070
  msgctxt "fees-api"
5071
  msgid "Fee must apply to at least one category."
5072
  msgstr "La comisión debe aplicar al menos a una categoría."
5073
 
5074
- #: core/payment.php:156
5075
  msgctxt "fees-api"
5076
  msgid "Fee allowed images must be a non-negative integer."
5077
  msgstr "El número de imágenes permitidas por la comisión debe ser no negativo."
5078
 
5079
- #: core/payment.php:159
5080
  msgctxt "fees-api"
5081
  msgid "Fee listing run must be a non-negative integer."
5082
  msgstr "La Comisión de Listado debe ser un entero no negativo."
5083
 
5084
- #: core/payment.php:164
5085
  msgctxt "fees-api"
5086
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
5087
  msgstr ""
5088
  "La duración del listado debe ser un número menor a 10 años (3650 días)."
5089
 
5090
- #: core/payment.php:339
5091
  msgctxt "payments-api"
5092
  msgid ""
5093
  "You are offering featured listings but have payments turned off. Go to <a "
@@ -5100,7 +5136,7 @@ msgstr ""
5100
  "de pago. Hasta tanto la opción de <i>Mejorar a Destacado</i> estará "
5101
  "deshabilitada."
5102
 
5103
- #: core/payment.php:357
5104
  msgctxt "payments-api"
5105
  msgid ""
5106
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
@@ -5112,7 +5148,7 @@ msgstr ""
5112
  "siguientes problemas: <b>%s</b>.<br/> Revise sus <a href=\"%s"
5113
  "\">configuraciones de pago</a>."
5114
 
5115
- #: core/payment.php:367
5116
  msgctxt "admin"
5117
  msgid ""
5118
  "You have payments turned on but no gateway is active and properly "
@@ -5125,7 +5161,7 @@ msgstr ""
5125
  "para cambiar las configuraciones de pago. Hasta tanto, el Directorio operará "
5126
  "en <i>Modo Gratuito</i>."
5127
 
5128
- #: core/payment.php:371
5129
  msgid ""
5130
  "BD detected PayFast and another gateway were enabled. This setup is not "
5131
  "recommended due to PayFast supporting only ZAR and the other gateways not "
@@ -5135,7 +5171,7 @@ msgstr ""
5135
  "habilitadas. Esta configuración no es recomendada pues PayFast únicamente "
5136
  "soporta la moneda ZAR y las demás pasarelas no la soportan."
5137
 
5138
- #: core/payment.php:375
5139
  msgid ""
5140
  "You have recurring renewal of listing fees enabled but the payment gateways "
5141
  "installed don't support recurring payments. Until a gateway that supports "
@@ -5147,7 +5183,7 @@ msgstr ""
5147
  "recurrentes. Hasta tanto una pasarela que soporte pagos recurrentes (como "
5148
  "PayPal) sea habilitada las renovaciones automáticas estarán deshabilitadas."
5149
 
5150
- #: core/payment.php:380
5151
  msgid ""
5152
  "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
5153
  "supported by the gateway. All other fees will be charged as non-recurring."
@@ -5156,37 +5192,37 @@ msgstr ""
5156
  "mensualmente (30 días) están soportados por esta pasarela. Cualquier "
5157
  "comisión con otra duración será cobrada sin renovación automática."
5158
 
5159
- #: core/payment.php:413
5160
  msgctxt "payments-api"
5161
  msgid "Checkout"
5162
  msgstr "Pago"
5163
 
5164
- #: core/payment.php:414
5165
  msgctxt "payments-api"
5166
  msgid "Pay %1$s through %2$s"
5167
  msgstr "Pagar %1$s a través de %2$s"
5168
 
5169
- #: core/payment.php:421
5170
  msgctxt "payments-api"
5171
  msgid "Your transaction has been approved."
5172
  msgstr "Su transacción ha sido aprobada."
5173
 
5174
- #: core/payment.php:602
5175
  msgctxt "payments"
5176
  msgid "Payment Details"
5177
  msgstr "Detalles del Pago"
5178
 
5179
- #: core/payment.php:629
5180
  msgctxt "checkout"
5181
  msgid "Payment Method"
5182
  msgstr "Método de Pago"
5183
 
5184
- #: core/payment.php:658
5185
  msgctxt "payment"
5186
  msgid "Return to Directory."
5187
  msgstr "Regresar al Directorio."
5188
 
5189
- #: core/payment.php:664
5190
  msgctxt "payments"
5191
  msgid ""
5192
  "Your payment is being processed by the payment gateway. Please reload this "
@@ -5197,7 +5233,7 @@ msgstr ""
5197
  "esta página en un momento para ver el estado actualizado del mismo o "
5198
  "contacte al administrador del sitio."
5199
 
5200
- #: core/payment.php:667
5201
  msgctxt "payments"
5202
  msgid ""
5203
  "The payment has been rejected by the payment gateway. Please contact the "
@@ -5209,12 +5245,12 @@ msgstr ""
5209
  "\"Cambiar Método de Pago\" para seleccionar un método distinto de pago e "
5210
  "intentar nuevamente."
5211
 
5212
- #: core/payment.php:668
5213
  msgctxt "payments"
5214
  msgid "Change Payment Method"
5215
  msgstr "Cambiar Método de Pago"
5216
 
5217
- #: core/payment.php:670
5218
  msgctxt "payments"
5219
  msgid ""
5220
  "The payment has been rejected by the payment gateway. Please contact the "
@@ -5223,17 +5259,17 @@ msgstr ""
5223
  "El pago ha sido rechazado por la pasarela de pago. Por favor contacte el "
5224
  "administrador del sitio si cree que ha ocurrido un error."
5225
 
5226
- #: core/payment.php:673
5227
  msgctxt "payments"
5228
  msgid "The payment has been canceled at your request."
5229
  msgstr "La transacción ha sido cancelada por solicitud suya."
5230
 
5231
- #: core/payment.php:769
5232
  msgctxt "admin"
5233
  msgid "Pending Abandonment"
5234
  msgstr "Casi abandonado"
5235
 
5236
- #: core/payment.php:774
5237
  msgctxt "admin"
5238
  msgid "Abandoned"
5239
  msgstr "Abandonados"
@@ -5636,22 +5672,22 @@ msgctxt "templates"
5636
  msgid "I agree to the Terms and Conditions"
5637
  msgstr "Acepto los Términos y Condiciones"
5638
 
5639
- #: core/view-submit-listing.php:406
5640
  msgctxt "listings"
5641
  msgid "Fee \"%s\" for category \"%s\"%s"
5642
  msgstr "Comisión \"%s\" para categoría \"%s\"%s"
5643
 
5644
- #: core/view-submit-listing.php:409
5645
  msgctxt "listings"
5646
  msgid "(recurring)"
5647
  msgstr "(recurrente)"
5648
 
5649
- #: core/view-submit-listing.php:419 core/view-upgrade-listing.php:54
5650
  msgctxt "submit"
5651
  msgid "Listing upgrade to featured"
5652
  msgstr "Mejora a Destacado"
5653
 
5654
- #: core/view-submit-listing.php:452
5655
  msgctxt "submit_state"
5656
  msgid "Invalid submit state."
5657
  msgstr "Solicitud inválida."
@@ -5672,7 +5708,7 @@ msgctxt "templates"
5672
  msgid "Return to listing."
5673
  msgstr "Regresar al listado."
5674
 
5675
- #: core/views.php:30
5676
  msgid ""
5677
  "You need to create a page with the [businessdirectory] shortcode for the "
5678
  "Business Directory plugin to work correctly."
@@ -5680,22 +5716,22 @@ msgstr ""
5680
  "Debe crear una página con el shortcode [businessdirectory] para que el "
5681
  "Directorio de Negocios funcione correctamente."
5682
 
5683
- #: core/views.php:32
5684
  msgid "The directory is temporarily disabled."
5685
  msgstr "El Directorio está temporalmente deshabilitado."
5686
 
5687
- #: core/views.php:190
5688
  msgctxt "preview"
5689
  msgid "This is just a preview. The listing has not been published yet."
5690
  msgstr ""
5691
  "Esta es tan solo una previsualización. El listado no ha sido publicado aún."
5692
 
5693
- #: core/views.php:342
5694
  msgctxt "templates"
5695
  msgid "Listings tagged: %s"
5696
  msgstr "Listados etiquetados: %s"
5697
 
5698
- #: core/views.php:459
5699
  msgctxt "templates"
5700
  msgid ""
5701
  "There are no categories assigned to the business directory yet. You need to "
@@ -5710,12 +5746,12 @@ msgstr ""
5710
  "no pueden enviar listados en este momento. No pueden agregarse nuevos "
5711
  "listados hasta tanto haya categorías en el Directorio de Negocios."
5712
 
5713
- #: core/views.php:461
5714
  msgctxt "templates"
5715
  msgid "There are currently no listings in the directory."
5716
  msgstr "No hay listados en el Directorio."
5717
 
5718
- #: core/views.php:479
5719
  msgctxt "templates"
5720
  msgid ""
5721
  "You have \"Hide Empty Categories\" on and some categories that don't have "
@@ -6336,7 +6372,7 @@ msgstr ""
6336
  #: templates/renew-listing.tpl.php:22
6337
  #: templates/submit-listing/category-selection.tpl.php:8
6338
  #: templates/submit-listing/fee-selection.tpl.php:37
6339
- #: templates/submit-listing/images.tpl.php:36
6340
  #: templates/submit-listing/listing-fields.tpl.php:34
6341
  msgctxt "templates"
6342
  msgid "Continue"
@@ -6435,12 +6471,12 @@ msgstr ""
6435
  "¿Le gustaría que esta comisión se cobrara al final de cada período "
6436
  "(renovación automática)?"
6437
 
6438
- #: templates/submit-listing/images-single.tpl.php:9
6439
  msgctxt "templates"
6440
  msgid "Delete Image"
6441
  msgstr "Eliminar Imagen"
6442
 
6443
- #: templates/submit-listing/images-single.tpl.php:16
6444
  msgctxt "templates"
6445
  msgid "Set this image as the listing thumbnail."
6446
  msgstr "Usar esta imagen como imagen principal."
2
  # This file is distributed under the same license as the package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Business Directory Plugin 3.6.11\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2015-12-14 21:54:34+00:00\n"
8
+ "PO-Revision-Date: 2015-12-14 17:01-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"
17
  "X-Poedit-Bookmarks: -1,-1,-1,-1,-1,-1,-1,-1,-1,543\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
 
20
+ #: admin/class-admin-listings.php:36
21
+ msgctxt "admin category filter"
22
+ msgid "All categories"
23
+ msgstr "Todas las categorías"
24
+
25
+ #: admin/class-admin-listings.php:68
26
  msgid "Listing Information"
27
  msgstr "Información del Listado"
28
 
29
+ #: admin/class-admin-listings.php:75
30
  msgctxt "admin"
31
  msgid "Listing Fields / Images"
32
  msgstr "Campos del Listado / Imágenes"
33
 
34
+ #: admin/class-admin-listings.php:86
35
  msgctxt "admin"
36
  msgid "Categories"
37
  msgstr "Categorías"
38
 
39
+ #: admin/class-admin-listings.php:87
40
  msgid "Payment Status"
41
  msgstr "Estado de Pago"
42
 
43
+ #: admin/class-admin-listings.php:88
44
  msgid "Featured (Sticky) Status"
45
  msgstr "Estado Destacado/Sticky"
46
 
47
+ #: admin/class-admin-listings.php:119
48
  msgctxt "admin"
49
  msgid "(Listing expired in this category)"
50
  msgstr "(El listado ha expirado en esta categoría)"
51
 
52
+ #: admin/class-admin-listings.php:137 admin/class-admin-listings.php:220
53
  msgid "Paid"
54
  msgstr "Pago"
55
 
56
+ #: admin/class-admin-listings.php:142
57
  msgid "Mark as"
58
  msgstr "Marcar como"
59
 
60
+ #: admin/class-admin-listings.php:151 admin/class-admin-listings.php:230
61
  msgid "Pending Upgrade"
62
  msgstr "Pendientes de Mejora"
63
 
64
+ #: admin/class-admin-listings.php:159 admin/listing-metabox.php:68
65
  msgid "Upgrade to %s"
66
  msgstr "Mejorar a %s"
67
 
68
+ #: admin/class-admin-listings.php:166 admin/listing-metabox.php:75
69
  msgid "Downgrade to %s"
70
  msgstr "Degradar a %s"
71
 
72
+ #: admin/class-admin-listings.php:169 admin/class-admin-listings.php:349
73
  msgctxt "admin actions"
74
  msgid "Upgrade to Featured"
75
  msgstr "Mejorar a Destacado"
76
 
77
+ #: admin/class-admin-listings.php:225
78
  msgid "Unpaid"
79
  msgstr "No pagado"
80
 
81
+ #: admin/class-admin-listings.php:235
82
  msgctxt "admin"
83
  msgid "Expired"
84
  msgstr "Expirados"
85
 
86
+ #: admin/class-admin-listings.php:285
87
  msgctxt "admin actions"
88
  msgid "Edit Listing"
89
  msgstr "Editar Listado"
90
 
91
+ #: admin/class-admin-listings.php:288
92
  msgctxt "admin actions"
93
  msgid "Delete Listing"
94
  msgstr "Eliminar Listado"
95
 
96
+ #: admin/class-admin-listings.php:347
97
  msgctxt "admin actions"
98
  msgid "Publish Listing"
99
  msgstr "Publicar Listado"
100
 
101
+ #: admin/class-admin-listings.php:350
102
  msgctxt "admin actions"
103
  msgid "Downgrade to Normal"
104
  msgstr "Degradar a Normal"
105
 
106
+ #: admin/class-admin-listings.php:352
107
  msgctxt "admin actions"
108
  msgid "Mark as Paid"
109
  msgstr "Marcar listado como Pagado"
110
 
111
+ #: admin/class-admin-listings.php:354
112
  msgctxt "admin actions"
113
  msgid "Renew Listing"
114
  msgstr "Renovar Listado"
433
  msgstr ""
434
 
435
  #: admin/class-themes-admin.php:42
 
436
  msgctxt "themes"
437
  msgid "Directory Themes %s"
438
+ msgstr ""
439
 
440
  #: admin/class-themes-admin.php:97
441
  msgctxt "themes"
1324
  msgid "Warning"
1325
  msgstr "Advertencia"
1326
 
1327
+ #: admin/templates/csv-import.tpl.php:12 admin/templates/csv-import.tpl.php:227
1328
  msgctxt "admin csv-import"
1329
  msgid "Help"
1330
  msgstr "Ayuda"
1421
 
1422
  #: admin/templates/csv-import.tpl.php:171
1423
  msgctxt "admin csv-import"
1424
+ msgid "Keep existing listing images?"
1425
+ msgstr "Mantener imágenes existentes?"
1426
+
1427
+ #: admin/templates/csv-import.tpl.php:176
1428
+ msgctxt "admin csv-import"
1429
+ msgid "Keep existing images."
1430
+ msgstr "Preservar imágenes existentes."
1431
+
1432
+ #: admin/templates/csv-import.tpl.php:177
1433
+ msgctxt "admin csv-import"
1434
+ msgid "Appends new images while keeping current ones."
1435
+ msgstr "Adiciona nuevas imágenes mientras mantiene las existentes."
1436
+
1437
+ #: admin/templates/csv-import.tpl.php:182
1438
+ msgctxt "admin csv-import"
1439
  msgid "Assign listings to a user?"
1440
  msgstr "Asignar listados a un usuario?"
1441
 
1442
+ #: admin/templates/csv-import.tpl.php:188
1443
  msgctxt "admin csv-import"
1444
  msgid "Assign listings to a user."
1445
  msgstr "Asignar listados a un usuario."
1446
 
1447
+ #: admin/templates/csv-import.tpl.php:193
1448
  msgctxt "admin csv-import"
1449
  msgid "Default listing user"
1450
  msgstr "Usuario a usar por defecto"
1451
 
1452
+ #: admin/templates/csv-import.tpl.php:198
1453
  msgctxt "admin csv-import"
1454
  msgid "Use spreadsheet information only."
1455
  msgstr "Utilizar únicamente la información del archivo CSV."
1456
 
1457
+ #: admin/templates/csv-import.tpl.php:204
1458
  msgctxt "admin csv-import"
1459
  msgid ""
1460
  "This user will be used if the username column is not present in the CSV file."
1462
  "Este usuario será utilizado si la columna \"username\" no está presente en "
1463
  "el archivo CSV."
1464
 
1465
+ #: admin/templates/csv-import.tpl.php:209
1466
  msgctxt "admin csv-import"
1467
  msgid "Disable e-mail notifications during import?"
1468
  msgstr "Deshabilitar notificaciones de correo durante la importación?"
1469
 
1470
+ #: admin/templates/csv-import.tpl.php:214
1471
  msgctxt "admin csv-import"
1472
  msgid "Disable e-mail notifications."
1473
  msgstr "Deshabilitar notificaciones de correo-e."
1474
 
1475
+ #: admin/templates/csv-import.tpl.php:220
1476
  msgctxt "admin csv-import"
1477
  msgid "Test Import"
1478
  msgstr "Importación de Verificación"
1479
 
1480
+ #: admin/templates/csv-import.tpl.php:221
1481
  msgctxt "admin csv-import"
1482
  msgid "Import Listings"
1483
  msgstr "Importar Listados"
1484
 
1485
+ #: admin/templates/csv-import.tpl.php:229
1486
  msgctxt "admin csv-import"
1487
  msgid ""
1488
  "The following are the valid header names to be used in the CSV file. "
1496
  "archivo CSV de ejemplo\"</a> para ver cómo debe lucir un archivo de "
1497
  "importación válido."
1498
 
1499
+ #: admin/templates/csv-import.tpl.php:236
1500
  msgctxt "admin csv-import"
1501
  msgid "Header name/label"
1502
  msgstr "Nombre de cabecera"
1503
 
1504
+ #: admin/templates/csv-import.tpl.php:237
1505
  msgctxt "admin csv-import"
1506
  msgid "Field"
1507
  msgstr "Campo"
1508
 
1509
+ #: admin/templates/csv-import.tpl.php:238
1510
  msgctxt "admin csv-import"
1511
  msgid "Type"
1512
  msgstr "Tipo"
1513
 
1514
+ #: admin/templates/csv-import.tpl.php:239
1515
  msgctxt "admin csv-import"
1516
  msgid "Required?"
1517
  msgstr "Requerido?"
1518
 
1519
+ #: admin/templates/csv-import.tpl.php:240
1520
  msgctxt "admin csv-import"
1521
  msgid "Multivalued?"
1522
  msgstr "Multivaluado?"
1523
 
1524
+ #: admin/templates/csv-import.tpl.php:262
1525
  msgctxt "admin csv-import"
1526
  msgid "Semicolon separated list of listing images (from the ZIP file)"
1527
  msgstr ""
1528
  "Lista de imágenes del listado separadas con punto y coma (deben encontrarse "
1529
  "en el archivo ZIP)"
1530
 
1531
+ #: admin/templates/csv-import.tpl.php:269
1532
  msgctxt "admin csv-import"
1533
  msgid "Listing author's username"
1534
  msgstr "Autor del listado (nombre de usuario)"
1535
 
1536
+ #: admin/templates/csv-import.tpl.php:276
1537
  msgctxt "admin csv-import"
1538
  msgid ""
1539
  "Internal Sequence ID used to allow listing updates from external sources."
1541
  "ID de secuencia interno utilizado para permitir actualizaciones a los "
1542
  "listados desde fuentes externas."
1543
 
1544
+ #: admin/templates/csv-import.tpl.php:283
1545
  msgctxt "admin csv-import"
1546
  msgid ""
1547
  "Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
2401
  msgstr ""
2402
 
2403
  #: admin/templates/themes-delete-confirm.tpl.php:3
 
2404
  msgctxt "themes admin"
2405
  msgid "Are you sure you want to delete the directory theme \"%s\"?"
2406
+ msgstr ""
2407
 
2408
  #: admin/templates/themes-delete-confirm.tpl.php:12
 
2409
  msgctxt "themes admin"
2410
  msgid "Cancel"
2411
  msgstr "Cancelar"
2637
  msgid "Listings tagged: %s"
2638
  msgstr "Listados etiquetados: %s"
2639
 
2640
+ #: core/class-csv-import.php:375
2641
  msgctxt "admin csv-import"
2642
  msgid "Could not create listing category \"%s\""
2643
  msgstr "No se pudo crear la categoría \"%s\""
2644
 
2645
+ #: core/class-csv-import.php:519
2646
  msgctxt "admin csv-import"
2647
  msgid "Username \"%s\" does not exist"
2648
  msgstr "El usuario \"%s\" no existe"
2649
 
2650
+ #: core/class-csv-import.php:551
2651
  msgctxt "admin csv-import"
2652
  msgid "Missing required field: %s"
2653
  msgstr "Falta campo requerido: %s"
2654
 
2655
+ #: core/class-csv-import.php:571
2656
  msgctxt "admin csv-import"
2657
  msgid "Listing category \"%s\" does not exist"
2658
  msgstr "La categoría \"%s\" no existe"
2751
  msgid "Featured Listing"
2752
  msgstr "Listado Destacado"
2753
 
2754
+ #: core/class-listing.php:319 core/class-listing.php:345
2755
  msgctxt "listing"
2756
  msgid "(Fee Unavailable)"
2757
  msgstr "(Comisión no disponible)"
2811
  msgid "Fee \"%s\" for category \"%s\""
2812
  msgstr "Comisión \"%s\" para categoría \"%s\""
2813
 
2814
+ #: core/class-recaptcha.php:90 core/class-recaptcha.php:105
2815
  msgctxt "recaptcha"
2816
  msgid "The reCAPTCHA wasn't entered correctly."
2817
  msgstr "El reCAPTCHA no fue ingresado correctamente."
4482
  msgid "Textarea"
4483
  msgstr "Área de texto"
4484
 
4485
+ #: core/fieldtypes/class-fieldtypes-textarea.php:50
4486
  msgctxt "form-fields admin"
4487
  msgid "Allow HTML input for this field?"
4488
  msgstr "Permitir entrada HTML en este campo?"
4489
 
4490
+ #: core/fieldtypes/class-fieldtypes-textarea.php:54
4491
  msgctxt "form-fields admin"
4492
  msgid "Allow WordPress shortcodes in this field?"
4493
  msgstr "Permitir shortcodes de WordPress en este campo?"
4494
 
4495
+ #: core/fieldtypes/class-fieldtypes-textarea.php:57
4496
+ msgctxt "form-fields admin"
4497
+ msgid "Display a WYSIWYG editor on the frontend?"
4498
+ msgstr "Mostrar un editor WYSIWYG en la cara del sitio?"
4499
+
4500
+ #: core/fieldtypes/class-fieldtypes-textarea.php:60
4501
+ msgctxt "form-fields admin"
4502
+ msgid ""
4503
+ "<b>Warning:</b> Users can use this feature to get around your image limits "
4504
+ "in fee plans."
4505
+ msgstr ""
4506
+ "<b>Advertencia:</b> Los usuarios podrían usar esta característica para "
4507
+ "saltar los límites de imágenes."
4508
+
4509
+ #: core/fieldtypes/class-fieldtypes-textarea.php:61
4510
+ msgctxt "form-fields admin"
4511
+ msgid "Allow images in WYSIWYG editor?"
4512
+ msgstr "Permitir imágenes en el editor WYSIWYG?"
4513
+
4514
+ #: core/fieldtypes/class-fieldtypes-textarea.php:64
4515
  msgctxt "form-fields admin"
4516
  msgid ""
4517
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
4520
  "<b>¡Usuarios avanzados únicamente!</b> No cambie esta configuración salvo si "
4521
  "está seguro de lo que está haciendo."
4522
 
4523
+ #: core/fieldtypes/class-fieldtypes-textarea.php:65
4524
  msgctxt "form-fields admin"
4525
  msgid "Apply \"the_content\" filter before displaying this field?"
4526
  msgstr ""
4640
 
4641
  #: core/form-fields.php:321
4642
  msgid "Business Address"
4643
+ msgstr "Dirección del Negocio"
4644
 
4645
  #: core/form-fields.php:323
4646
  msgid "ZIP Code"
4878
  #: core/helpers/class-fs.php:112
4879
  msgctxt "fs helper"
4880
  msgid "Destination dir \"%s\" is not writable."
4881
+ msgstr "El directorio de destino \"%s\" no se puede escribir."
4882
 
4883
  #: core/helpers/class-themes-updater.php:126
4884
  msgctxt "themes"
4910
  msgid "General"
4911
  msgstr "General"
4912
 
4913
+ #: core/installer.php:469
4914
  msgctxt "installer"
4915
  msgid ""
4916
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
4921
  "es incompatible con la versión actual de Business Directory. Por favor "
4922
  "actualice el módulode Regions."
4923
 
4924
+ #: core/installer.php:535
4925
  msgctxt "installer"
4926
  msgid "Cleaning up listing fees information... %d/%d"
4927
  msgstr "Actualizando información de comisiones de listados... %d/%d"
4928
 
4929
+ #: core/installer.php:585
4930
  msgctxt "installer"
4931
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4932
  msgstr "Migrando transacciones anteriores a la nueva API de pagos... %d/%d"
4933
 
4934
+ #: core/installer.php:614
4935
  msgctxt "installer"
4936
  msgid "Initial listing payment (BD < 3.4)"
4937
  msgstr "Pago inicial de listado (BD < 3.4)"
4938
 
4939
+ #: core/installer.php:625
4940
  msgctxt "installer"
4941
  msgid "Listing edit payment (BD < 3.4)"
4942
  msgstr "Pago por edición de listado (BD < 3.4)"
4943
 
4944
+ #: core/installer.php:646
4945
  msgctxt "installer"
4946
  msgid "Renewal fee \"%s\" for category \"%s\""
4947
  msgstr "Comisión de renovación \"%s\" para categoría \"%s\""
4948
 
4949
+ #: core/installer.php:665
4950
  msgctxt "installer"
4951
  msgid "Listing upgrade to featured"
4952
  msgstr "Mejora a Destacado"
4953
 
4954
+ #: core/installer.php:907
4955
  msgid "Business Directory - Manual Upgrade Required"
4956
  msgstr "Business Directory - Actualización Manual Requerida"
4957
 
4958
+ #: core/installer.php:909
4959
  msgid ""
4960
  "Business Directory features are currently disabled because the plugin needs "
4961
  "to perform a manual upgrade before continuing."
4963
  "Las características de Business Directory se encuentran deshabitadas pues es "
4964
  "necesario realizar una actualización manual antes de continuar."
4965
 
4966
+ #: core/installer.php:911
4967
  msgid "Perform Manual Upgrade"
4968
  msgstr "Realizar Actualización Manual"
4969
 
4970
+ #: core/installer.php:927 core/installer.php:928 core/installer.php:939
4971
  msgid "Business Directory - Manual Upgrade"
4972
  msgstr "Business Directory - Actualización Manual"
4973
 
4974
+ #: core/installer.php:943
4975
  msgid ""
4976
  "Business Directory features are currently disabled because the plugin needs "
4977
  "to perform a manual upgrade before it can be used."
4980
  "necesario realizar una actualización manual antes de que el plugin pueda ser "
4981
  "utilizado."
4982
 
4983
+ #: core/installer.php:945
4984
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4985
  msgstr ""
4986
  "Haga clic en \"Iniciar Actualización\" y espere hasta que el proceso "
4987
  "finalice."
4988
 
4989
+ #: core/installer.php:948
4990
  msgctxt "manual-upgrade"
4991
  msgid "Start Upgrade"
4992
  msgstr "Iniciar Actualización"
4993
 
4994
+ #: core/installer.php:950
4995
  msgctxt "manual-upgrade"
4996
  msgid "Pause Upgrade"
4997
  msgstr "Detener Actualización"
4998
 
4999
+ #: core/installer.php:956
5000
  msgctxt "manual-upgrade"
5001
  msgid ""
5002
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
5005
  "La actualización fue ejecutada con éxito. Business Directory Plugin ahora se "
5006
  "encienta disponible para su uso."
5007
 
5008
+ #: core/installer.php:959
5009
  msgctxt "manual-upgrade"
5010
  msgid "Go to \"Directory Admin\""
5011
  msgstr "Ir a \"Administración del Directorio\""
5092
  msgid "Free Listing"
5093
  msgstr "Listado Gratuito"
5094
 
5095
+ #: core/payment.php:145
5096
  msgctxt "fees-api"
5097
  msgid "Fee label is required."
5098
  msgstr "El nombre de la Comisión es requerido."
5099
 
5100
+ #: core/payment.php:148
5101
  msgctxt "fees-api"
5102
  msgid "Fee amount must be a non-negative decimal number."
5103
  msgstr "El precio de la comisión de be ser un número decimal no negativo."
5104
 
5105
+ #: core/payment.php:151 core/payment.php:154
5106
  msgctxt "fees-api"
5107
  msgid "Fee must apply to at least one category."
5108
  msgstr "La comisión debe aplicar al menos a una categoría."
5109
 
5110
+ #: core/payment.php:157
5111
  msgctxt "fees-api"
5112
  msgid "Fee allowed images must be a non-negative integer."
5113
  msgstr "El número de imágenes permitidas por la comisión debe ser no negativo."
5114
 
5115
+ #: core/payment.php:160
5116
  msgctxt "fees-api"
5117
  msgid "Fee listing run must be a non-negative integer."
5118
  msgstr "La Comisión de Listado debe ser un entero no negativo."
5119
 
5120
+ #: core/payment.php:165
5121
  msgctxt "fees-api"
5122
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
5123
  msgstr ""
5124
  "La duración del listado debe ser un número menor a 10 años (3650 días)."
5125
 
5126
+ #: core/payment.php:340
5127
  msgctxt "payments-api"
5128
  msgid ""
5129
  "You are offering featured listings but have payments turned off. Go to <a "
5136
  "de pago. Hasta tanto la opción de <i>Mejorar a Destacado</i> estará "
5137
  "deshabilitada."
5138
 
5139
+ #: core/payment.php:358
5140
  msgctxt "payments-api"
5141
  msgid ""
5142
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
5148
  "siguientes problemas: <b>%s</b>.<br/> Revise sus <a href=\"%s"
5149
  "\">configuraciones de pago</a>."
5150
 
5151
+ #: core/payment.php:368
5152
  msgctxt "admin"
5153
  msgid ""
5154
  "You have payments turned on but no gateway is active and properly "
5161
  "para cambiar las configuraciones de pago. Hasta tanto, el Directorio operará "
5162
  "en <i>Modo Gratuito</i>."
5163
 
5164
+ #: core/payment.php:372
5165
  msgid ""
5166
  "BD detected PayFast and another gateway were enabled. This setup is not "
5167
  "recommended due to PayFast supporting only ZAR and the other gateways not "
5171
  "habilitadas. Esta configuración no es recomendada pues PayFast únicamente "
5172
  "soporta la moneda ZAR y las demás pasarelas no la soportan."
5173
 
5174
+ #: core/payment.php:376
5175
  msgid ""
5176
  "You have recurring renewal of listing fees enabled but the payment gateways "
5177
  "installed don't support recurring payments. Until a gateway that supports "
5183
  "recurrentes. Hasta tanto una pasarela que soporte pagos recurrentes (como "
5184
  "PayPal) sea habilitada las renovaciones automáticas estarán deshabilitadas."
5185
 
5186
+ #: core/payment.php:381
5187
  msgid ""
5188
  "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
5189
  "supported by the gateway. All other fees will be charged as non-recurring."
5192
  "mensualmente (30 días) están soportados por esta pasarela. Cualquier "
5193
  "comisión con otra duración será cobrada sin renovación automática."
5194
 
5195
+ #: core/payment.php:414
5196
  msgctxt "payments-api"
5197
  msgid "Checkout"
5198
  msgstr "Pago"
5199
 
5200
+ #: core/payment.php:415
5201
  msgctxt "payments-api"
5202
  msgid "Pay %1$s through %2$s"
5203
  msgstr "Pagar %1$s a través de %2$s"
5204
 
5205
+ #: core/payment.php:422
5206
  msgctxt "payments-api"
5207
  msgid "Your transaction has been approved."
5208
  msgstr "Su transacción ha sido aprobada."
5209
 
5210
+ #: core/payment.php:603
5211
  msgctxt "payments"
5212
  msgid "Payment Details"
5213
  msgstr "Detalles del Pago"
5214
 
5215
+ #: core/payment.php:630
5216
  msgctxt "checkout"
5217
  msgid "Payment Method"
5218
  msgstr "Método de Pago"
5219
 
5220
+ #: core/payment.php:659
5221
  msgctxt "payment"
5222
  msgid "Return to Directory."
5223
  msgstr "Regresar al Directorio."
5224
 
5225
+ #: core/payment.php:665
5226
  msgctxt "payments"
5227
  msgid ""
5228
  "Your payment is being processed by the payment gateway. Please reload this "
5233
  "esta página en un momento para ver el estado actualizado del mismo o "
5234
  "contacte al administrador del sitio."
5235
 
5236
+ #: core/payment.php:668
5237
  msgctxt "payments"
5238
  msgid ""
5239
  "The payment has been rejected by the payment gateway. Please contact the "
5245
  "\"Cambiar Método de Pago\" para seleccionar un método distinto de pago e "
5246
  "intentar nuevamente."
5247
 
5248
+ #: core/payment.php:669
5249
  msgctxt "payments"
5250
  msgid "Change Payment Method"
5251
  msgstr "Cambiar Método de Pago"
5252
 
5253
+ #: core/payment.php:671
5254
  msgctxt "payments"
5255
  msgid ""
5256
  "The payment has been rejected by the payment gateway. Please contact the "
5259
  "El pago ha sido rechazado por la pasarela de pago. Por favor contacte el "
5260
  "administrador del sitio si cree que ha ocurrido un error."
5261
 
5262
+ #: core/payment.php:674
5263
  msgctxt "payments"
5264
  msgid "The payment has been canceled at your request."
5265
  msgstr "La transacción ha sido cancelada por solicitud suya."
5266
 
5267
+ #: core/payment.php:770
5268
  msgctxt "admin"
5269
  msgid "Pending Abandonment"
5270
  msgstr "Casi abandonado"
5271
 
5272
+ #: core/payment.php:775
5273
  msgctxt "admin"
5274
  msgid "Abandoned"
5275
  msgstr "Abandonados"
5672
  msgid "I agree to the Terms and Conditions"
5673
  msgstr "Acepto los Términos y Condiciones"
5674
 
5675
+ #: core/view-submit-listing.php:443
5676
  msgctxt "listings"
5677
  msgid "Fee \"%s\" for category \"%s\"%s"
5678
  msgstr "Comisión \"%s\" para categoría \"%s\"%s"
5679
 
5680
+ #: core/view-submit-listing.php:446
5681
  msgctxt "listings"
5682
  msgid "(recurring)"
5683
  msgstr "(recurrente)"
5684
 
5685
+ #: core/view-submit-listing.php:456 core/view-upgrade-listing.php:54
5686
  msgctxt "submit"
5687
  msgid "Listing upgrade to featured"
5688
  msgstr "Mejora a Destacado"
5689
 
5690
+ #: core/view-submit-listing.php:489
5691
  msgctxt "submit_state"
5692
  msgid "Invalid submit state."
5693
  msgstr "Solicitud inválida."
5708
  msgid "Return to listing."
5709
  msgstr "Regresar al listado."
5710
 
5711
+ #: core/views.php:32
5712
  msgid ""
5713
  "You need to create a page with the [businessdirectory] shortcode for the "
5714
  "Business Directory plugin to work correctly."
5716
  "Debe crear una página con el shortcode [businessdirectory] para que el "
5717
  "Directorio de Negocios funcione correctamente."
5718
 
5719
+ #: core/views.php:34
5720
  msgid "The directory is temporarily disabled."
5721
  msgstr "El Directorio está temporalmente deshabilitado."
5722
 
5723
+ #: core/views.php:203
5724
  msgctxt "preview"
5725
  msgid "This is just a preview. The listing has not been published yet."
5726
  msgstr ""
5727
  "Esta es tan solo una previsualización. El listado no ha sido publicado aún."
5728
 
5729
+ #: core/views.php:355
5730
  msgctxt "templates"
5731
  msgid "Listings tagged: %s"
5732
  msgstr "Listados etiquetados: %s"
5733
 
5734
+ #: core/views.php:472
5735
  msgctxt "templates"
5736
  msgid ""
5737
  "There are no categories assigned to the business directory yet. You need to "
5746
  "no pueden enviar listados en este momento. No pueden agregarse nuevos "
5747
  "listados hasta tanto haya categorías en el Directorio de Negocios."
5748
 
5749
+ #: core/views.php:474
5750
  msgctxt "templates"
5751
  msgid "There are currently no listings in the directory."
5752
  msgstr "No hay listados en el Directorio."
5753
 
5754
+ #: core/views.php:492
5755
  msgctxt "templates"
5756
  msgid ""
5757
  "You have \"Hide Empty Categories\" on and some categories that don't have "
6372
  #: templates/renew-listing.tpl.php:22
6373
  #: templates/submit-listing/category-selection.tpl.php:8
6374
  #: templates/submit-listing/fee-selection.tpl.php:37
6375
+ #: templates/submit-listing/images.tpl.php:38
6376
  #: templates/submit-listing/listing-fields.tpl.php:34
6377
  msgctxt "templates"
6378
  msgid "Continue"
6471
  "¿Le gustaría que esta comisión se cobrara al final de cada período "
6472
  "(renovación automática)?"
6473
 
6474
+ #: templates/submit-listing/images-single.tpl.php:18
6475
  msgctxt "templates"
6476
  msgid "Delete Image"
6477
  msgstr "Eliminar Imagen"
6478
 
6479
+ #: templates/submit-listing/images-single.tpl.php:24
6480
  msgctxt "templates"
6481
  msgid "Set this image as the listing thumbnail."
6482
  msgstr "Usar esta imagen como imagen principal."
languages/WPBDM-fr_FR.mo CHANGED
Binary file
languages/WPBDM-fr_FR.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: 2015-11-17 23:37:00+00:00\n"
8
  "PO-Revision-Date: 2015-11-04 11:52+0100\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -16,93 +16,99 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
 
19
- #: admin/class-admin-listings.php:24
 
 
 
 
 
 
20
  msgid "Listing Information"
21
  msgstr "Information sur l'annonce"
22
 
23
- #: admin/class-admin-listings.php:31
24
  msgctxt "admin"
25
  msgid "Listing Fields / Images"
26
  msgstr "Champs des annonces / Images "
27
 
28
- #: admin/class-admin-listings.php:42
29
  msgctxt "admin"
30
  msgid "Categories"
31
  msgstr "Catégories"
32
 
33
- #: admin/class-admin-listings.php:43
34
  msgid "Payment Status"
35
  msgstr "Statut du paiement"
36
 
37
- #: admin/class-admin-listings.php:44
38
  msgid "Featured (Sticky) Status"
39
  msgstr "Statut sélectionné (Post-it)"
40
 
41
- #: admin/class-admin-listings.php:75
42
  msgctxt "admin"
43
  msgid "(Listing expired in this category)"
44
  msgstr "(Annonce expirée dans cette catégorie) "
45
 
46
- #: admin/class-admin-listings.php:93 admin/class-admin-listings.php:176
47
  msgid "Paid"
48
  msgstr "Payé"
49
 
50
- #: admin/class-admin-listings.php:98
51
  msgid "Mark as"
52
  msgstr "Marqué comme"
53
 
54
- #: admin/class-admin-listings.php:107 admin/class-admin-listings.php:186
55
  msgid "Pending Upgrade"
56
  msgstr "Mise à jour nécessaire"
57
 
58
- #: admin/class-admin-listings.php:115 admin/listing-metabox.php:68
59
  msgid "Upgrade to %s"
60
  msgstr "Mettre à jour vers %s"
61
 
62
- #: admin/class-admin-listings.php:122 admin/listing-metabox.php:75
63
  msgid "Downgrade to %s"
64
  msgstr "Déclasser vers %s"
65
 
66
- #: admin/class-admin-listings.php:125 admin/class-admin-listings.php:295
67
  msgctxt "admin actions"
68
  msgid "Upgrade to Featured"
69
  msgstr "Mettre à jour vers la version sélectionnée"
70
 
71
- #: admin/class-admin-listings.php:181
72
  msgid "Unpaid"
73
  msgstr "Impayé"
74
 
75
- #: admin/class-admin-listings.php:191
76
  msgctxt "admin"
77
  msgid "Expired"
78
  msgstr "Expiré "
79
 
80
- #: admin/class-admin-listings.php:241
81
  msgctxt "admin actions"
82
  msgid "Edit Listing"
83
  msgstr "Editer l'annonce"
84
 
85
- #: admin/class-admin-listings.php:244
86
  msgctxt "admin actions"
87
  msgid "Delete Listing"
88
  msgstr "Effacer l'annonce"
89
 
90
- #: admin/class-admin-listings.php:293
91
  msgctxt "admin actions"
92
  msgid "Publish Listing"
93
  msgstr "Publier l'annonce"
94
 
95
- #: admin/class-admin-listings.php:296
96
  msgctxt "admin actions"
97
  msgid "Downgrade to Normal"
98
  msgstr "Rétrograder vers le mode Normal "
99
 
100
- #: admin/class-admin-listings.php:298
101
  msgctxt "admin actions"
102
  msgid "Mark as Paid"
103
  msgstr "Marquer comme Payé "
104
 
105
- #: admin/class-admin-listings.php:300
106
  msgctxt "admin actions"
107
  msgid "Renew Listing"
108
  msgstr "Renouveler l'annonce"
@@ -1314,7 +1320,7 @@ msgctxt "admin csv-import"
1314
  msgid "Warning"
1315
  msgstr "Alerte"
1316
 
1317
- #: admin/templates/csv-import.tpl.php:12 admin/templates/csv-import.tpl.php:216
1318
  msgctxt "admin csv-import"
1319
  msgid "Help"
1320
  msgstr "Aide"
@@ -1414,25 +1420,41 @@ msgstr "Génération d'erreurs quand une catégorie n'est pas trouvée"
1414
 
1415
  #: admin/templates/csv-import.tpl.php:171
1416
  msgctxt "admin csv-import"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1417
  msgid "Assign listings to a user?"
1418
  msgstr "Assigner des listes à un utilisateur?"
1419
 
1420
- #: admin/templates/csv-import.tpl.php:177
1421
  msgctxt "admin csv-import"
1422
  msgid "Assign listings to a user."
1423
  msgstr "Assigner des listes à un utilisateur."
1424
 
1425
- #: admin/templates/csv-import.tpl.php:182
1426
  msgctxt "admin csv-import"
1427
  msgid "Default listing user"
1428
  msgstr "Annonce par défault de l'utilisateur"
1429
 
1430
- #: admin/templates/csv-import.tpl.php:187
1431
  msgctxt "admin csv-import"
1432
  msgid "Use spreadsheet information only."
1433
  msgstr "Utiliser les informations de feuille de calcul uniquement."
1434
 
1435
- #: admin/templates/csv-import.tpl.php:193
1436
  msgctxt "admin csv-import"
1437
  msgid ""
1438
  "This user will be used if the username column is not present in the CSV file."
@@ -1440,27 +1462,27 @@ msgstr ""
1440
  "Cet utilisateur ne sera utilisé que si la colonne de nom d'utilisateur ne "
1441
  "figure pas dans le fichier CSV."
1442
 
1443
- #: admin/templates/csv-import.tpl.php:198
1444
  msgctxt "admin csv-import"
1445
  msgid "Disable e-mail notifications during import?"
1446
  msgstr "Désactiver les notifications par e-mail durant l'importation?"
1447
 
1448
- #: admin/templates/csv-import.tpl.php:203
1449
  msgctxt "admin csv-import"
1450
  msgid "Disable e-mail notifications."
1451
  msgstr "Désactiver les notifications par e-mail."
1452
 
1453
- #: admin/templates/csv-import.tpl.php:209
1454
  msgctxt "admin csv-import"
1455
  msgid "Test Import"
1456
  msgstr "Tester l'importation"
1457
 
1458
- #: admin/templates/csv-import.tpl.php:210
1459
  msgctxt "admin csv-import"
1460
  msgid "Import Listings"
1461
  msgstr "Importation des listes"
1462
 
1463
- #: admin/templates/csv-import.tpl.php:218
1464
  msgctxt "admin csv-import"
1465
  msgid ""
1466
  "The following are the valid header names to be used in the CSV file. "
@@ -1474,44 +1496,44 @@ msgstr ""
1474
  "d'un fichier CSV d'importation \" </a> afin de voir à quoi un fichier "
1475
  "d'importation devrait ressembler."
1476
 
1477
- #: admin/templates/csv-import.tpl.php:225
1478
  msgctxt "admin csv-import"
1479
  msgid "Header name/label"
1480
  msgstr "Nom/Etiquette de l'en-tête"
1481
 
1482
- #: admin/templates/csv-import.tpl.php:226
1483
  msgctxt "admin csv-import"
1484
  msgid "Field"
1485
  msgstr "Champ"
1486
 
1487
- #: admin/templates/csv-import.tpl.php:227
1488
  msgctxt "admin csv-import"
1489
  msgid "Type"
1490
  msgstr "Type"
1491
 
1492
- #: admin/templates/csv-import.tpl.php:228
1493
  msgctxt "admin csv-import"
1494
  msgid "Required?"
1495
  msgstr "Requis?"
1496
 
1497
- #: admin/templates/csv-import.tpl.php:229
1498
  msgctxt "admin csv-import"
1499
  msgid "Multivalued?"
1500
  msgstr "Valeurs multiples?"
1501
 
1502
- #: admin/templates/csv-import.tpl.php:251
1503
  msgctxt "admin csv-import"
1504
  msgid "Semicolon separated list of listing images (from the ZIP file)"
1505
  msgstr ""
1506
  "Liste séparée de la cotation des images par un point-virgule (à partir du "
1507
  "fichier ZIP)"
1508
 
1509
- #: admin/templates/csv-import.tpl.php:258
1510
  msgctxt "admin csv-import"
1511
  msgid "Listing author's username"
1512
  msgstr "Nom d'utilisateur de l'auteur de l'annonce"
1513
 
1514
- #: admin/templates/csv-import.tpl.php:265
1515
  msgctxt "admin csv-import"
1516
  msgid ""
1517
  "Internal Sequence ID used to allow listing updates from external sources."
@@ -1519,7 +1541,7 @@ msgstr ""
1519
  "ID interne de séquence utilisé pour permettre l'annonce des mises à jour "
1520
  "provenant de sources externes."
1521
 
1522
- #: admin/templates/csv-import.tpl.php:272
1523
  msgctxt "admin csv-import"
1524
  msgid ""
1525
  "Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
@@ -1900,7 +1922,7 @@ msgstr ""
1900
  "Veuillez voir la <a>Documentation de champs de formulaire</a> pour plus de "
1901
  "détails."
1902
 
1903
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.6.10) #-#-#-#-#
1904
  #. Plugin Name of the plugin/theme
1905
  #: admin/templates/header.tpl.php:4
1906
  msgid "Business Directory Plugin"
@@ -2632,22 +2654,22 @@ msgctxt "title"
2632
  msgid "Listings tagged: %s"
2633
  msgstr "Annonces marquées: %s"
2634
 
2635
- #: core/class-csv-import.php:371
2636
  msgctxt "admin csv-import"
2637
  msgid "Could not create listing category \"%s\""
2638
  msgstr "Vous ne pouvez pas créer cette catégorie d'annonce \"%s\""
2639
 
2640
- #: core/class-csv-import.php:515
2641
  msgctxt "admin csv-import"
2642
  msgid "Username \"%s\" does not exist"
2643
  msgstr "Le nom d'utilisateur \"%s\" n'existe pas"
2644
 
2645
- #: core/class-csv-import.php:547
2646
  msgctxt "admin csv-import"
2647
  msgid "Missing required field: %s"
2648
  msgstr "Absence d'un champ requis: %s"
2649
 
2650
- #: core/class-csv-import.php:567
2651
  msgctxt "admin csv-import"
2652
  msgid "Listing category \"%s\" does not exist"
2653
  msgstr "La catégorie d'annonce \"%s\" n'existe pas"
@@ -2745,7 +2767,7 @@ msgctxt "listings-api"
2745
  msgid "Featured Listing"
2746
  msgstr "Annonce sélectionnée"
2747
 
2748
- #: core/class-listing.php:297 core/class-listing.php:323
2749
  msgctxt "listing"
2750
  msgid "(Fee Unavailable)"
2751
  msgstr "(Coûts Non disponible)"
@@ -2805,7 +2827,7 @@ msgctxt "listings"
2805
  msgid "Fee \"%s\" for category \"%s\""
2806
  msgstr "Frais \"%s\" pour catégorie \"%s\""
2807
 
2808
- #: core/class-recaptcha.php:87 core/class-recaptcha.php:102
2809
  #, fuzzy
2810
  msgctxt "recaptcha"
2811
  msgid "The reCAPTCHA wasn't entered correctly."
@@ -4490,17 +4512,34 @@ msgctxt "form-fields api"
4490
  msgid "Textarea"
4491
  msgstr "Zone de texte"
4492
 
4493
- #: core/fieldtypes/class-fieldtypes-textarea.php:35
4494
  msgctxt "form-fields admin"
4495
  msgid "Allow HTML input for this field?"
4496
  msgstr "Autoriser les ajouts HTML dans ce champ?"
4497
 
4498
- #: core/fieldtypes/class-fieldtypes-textarea.php:39
4499
  msgctxt "form-fields admin"
4500
  msgid "Allow WordPress shortcodes in this field?"
4501
  msgstr "Autoriser les shortcodes WordPress dans ce champ?"
4502
 
4503
- #: core/fieldtypes/class-fieldtypes-textarea.php:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4504
  msgctxt "form-fields admin"
4505
  msgid ""
4506
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
@@ -4509,7 +4548,7 @@ msgstr ""
4509
  "<b> Utilisateurs avancés seulement! </ b> Sauf si vous avez été dit de "
4510
  "changer cela, ne le coupez pas sauf si vous savez ce que vous faites."
4511
 
4512
- #: core/fieldtypes/class-fieldtypes-textarea.php:44
4513
  msgctxt "form-fields admin"
4514
  msgid "Apply \"the_content\" filter before displaying this field?"
4515
  msgstr "Appliquer le filtre \"the_content \" avant d'afannoncer ce champ?"
@@ -4901,7 +4940,7 @@ msgctxt "default category name"
4901
  msgid "General"
4902
  msgstr "Général"
4903
 
4904
- #: core/installer.php:464
4905
  msgctxt "installer"
4906
  msgid ""
4907
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
@@ -4912,43 +4951,43 @@ msgstr ""
4912
  "est incompatible avec la version actuelle du plugin. Veuillez mettre à jour "
4913
  "le module."
4914
 
4915
- #: core/installer.php:530
4916
  msgctxt "installer"
4917
  msgid "Cleaning up listing fees information... %d/%d"
4918
  msgstr "Nettoyage des informations sur les droits d'inscription ... %d/%d"
4919
 
4920
- #: core/installer.php:580
4921
  msgctxt "installer"
4922
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4923
  msgstr ""
4924
  "Migration des transactions antérieures vers de nouveaux paiements API ... %d/"
4925
  "%d"
4926
 
4927
- #: core/installer.php:609
4928
  msgctxt "installer"
4929
  msgid "Initial listing payment (BD < 3.4)"
4930
  msgstr "Annonce de paiement initial (BD<3.4)"
4931
 
4932
- #: core/installer.php:620
4933
  msgctxt "installer"
4934
  msgid "Listing edit payment (BD < 3.4)"
4935
  msgstr "Edition de l'annonce de paiement (BD<3.4)"
4936
 
4937
- #: core/installer.php:641
4938
  msgctxt "installer"
4939
  msgid "Renewal fee \"%s\" for category \"%s\""
4940
  msgstr "Renouvellement des frais \"%s\" pour la catégorie \"%s\""
4941
 
4942
- #: core/installer.php:660
4943
  msgctxt "installer"
4944
  msgid "Listing upgrade to featured"
4945
  msgstr "Mise à jour des annonces vers prioritaire"
4946
 
4947
- #: core/installer.php:902
4948
  msgid "Business Directory - Manual Upgrade Required"
4949
  msgstr "Business Directory - Mise à jour manuelle requise"
4950
 
4951
- #: core/installer.php:904
4952
  msgid ""
4953
  "Business Directory features are currently disabled because the plugin needs "
4954
  "to perform a manual upgrade before continuing."
@@ -4957,15 +4996,15 @@ msgstr ""
4957
  "désactivés car le plugin a besoin d'effectuer une mise à jour manuelle avant "
4958
  "de poursuivre."
4959
 
4960
- #: core/installer.php:906
4961
  msgid "Perform Manual Upgrade"
4962
  msgstr "Effectuer la mise à jour manuelle"
4963
 
4964
- #: core/installer.php:922 core/installer.php:923 core/installer.php:934
4965
  msgid "Business Directory - Manual Upgrade"
4966
  msgstr "Business Directory - Mise à jour manuelle"
4967
 
4968
- #: core/installer.php:938
4969
  msgid ""
4970
  "Business Directory features are currently disabled because the plugin needs "
4971
  "to perform a manual upgrade before it can be used."
@@ -4974,23 +5013,23 @@ msgstr ""
4974
  "désactivées car le plugin a besoin d'effectuer une mise à jour manuelle afin "
4975
  "d'être pleinement utilisable."
4976
 
4977
- #: core/installer.php:940
4978
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4979
  msgstr ""
4980
  "Cliquez sur \"Commencer la mise à jour\" et patientez jusqu'à la fin du "
4981
  "processus."
4982
 
4983
- #: core/installer.php:943
4984
  msgctxt "manual-upgrade"
4985
  msgid "Start Upgrade"
4986
  msgstr "Commencer la mise à jour"
4987
 
4988
- #: core/installer.php:945
4989
  msgctxt "manual-upgrade"
4990
  msgid "Pause Upgrade"
4991
  msgstr "Mettre en pause la mise à jour"
4992
 
4993
- #: core/installer.php:951
4994
  msgctxt "manual-upgrade"
4995
  msgid ""
4996
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
@@ -4999,7 +5038,7 @@ msgstr ""
4999
  "La mise à jour s'est bien effectué. Le plugin Business Directory est "
5000
  "maintenant disponible et fonctionnel."
5001
 
5002
- #: core/installer.php:954
5003
  msgctxt "manual-upgrade"
5004
  msgid "Go to \"Directory Admin\""
5005
  msgstr "Aller à \"Administrateur de l'annuaire\""
@@ -5086,39 +5125,39 @@ msgctxt "fees-api"
5086
  msgid "Free Listing"
5087
  msgstr "Annonce gratuite"
5088
 
5089
- #: core/payment.php:144
5090
  msgctxt "fees-api"
5091
  msgid "Fee label is required."
5092
  msgstr "Une étiquette de frais est requise."
5093
 
5094
- #: core/payment.php:147
5095
  msgctxt "fees-api"
5096
  msgid "Fee amount must be a non-negative decimal number."
5097
  msgstr "Le montant des frais doit être un nombre décimal non-négatif."
5098
 
5099
- #: core/payment.php:150 core/payment.php:153
5100
  msgctxt "fees-api"
5101
  msgid "Fee must apply to at least one category."
5102
  msgstr "Fee doit être appliqué à au moins une catégorie."
5103
 
5104
- #: core/payment.php:156
5105
  msgctxt "fees-api"
5106
  msgid "Fee allowed images must be a non-negative integer."
5107
  msgstr "Les frais autorisé doivent être un entier non négatif."
5108
 
5109
- #: core/payment.php:159
5110
  msgctxt "fees-api"
5111
  msgid "Fee listing run must be a non-negative integer."
5112
  msgstr "Les frais d'annonce doivent être un entier non-négatif."
5113
 
5114
- #: core/payment.php:164
5115
  msgctxt "fees-api"
5116
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
5117
  msgstr ""
5118
  "La durée des frais d'annonce doit être un nombre inférieur à 10 ans (3650 "
5119
  "jours)."
5120
 
5121
- #: core/payment.php:339
5122
  msgctxt "payments-api"
5123
  msgid ""
5124
  "You are offering featured listings but have payments turned off. Go to <a "
@@ -5131,7 +5170,7 @@ msgstr ""
5131
  "paramètres de paiement. Jusqu'à ce que vous effectuiez les modifications "
5132
  "voulues, l'option <i> Mise à niveau en vedette </ i>sera désactivée."
5133
 
5134
- #: core/payment.php:357
5135
  msgctxt "payments-api"
5136
  msgid ""
5137
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
@@ -5143,7 +5182,7 @@ msgstr ""
5143
  "soient fixés: <b>%s </b>. <br/> Vérifiez les <a href=\"%s\"> paramètres de "
5144
  "paiement </a>."
5145
 
5146
- #: core/payment.php:367
5147
  msgctxt "admin"
5148
  msgid ""
5149
  "You have payments turned on but no gateway is active and properly "
@@ -5156,7 +5195,7 @@ msgstr ""
5156
  "Paiement </a> pour modifier les paramètres de paiement. Jusqu'à ce que vous "
5157
  "modifiez cela, le répertoire fonctionnera en <i> Mode libre </ i>."
5158
 
5159
- #: core/payment.php:371
5160
  msgid ""
5161
  "BD detected PayFast and another gateway were enabled. This setup is not "
5162
  "recommended due to PayFast supporting only ZAR and the other gateways not "
@@ -5166,7 +5205,7 @@ msgstr ""
5166
  "Cette configuration est déconseillée étant donné que PayFast supporte la "
5167
  "devise ZAR (Rand sud-africain) et pas les autres passerelles."
5168
 
5169
- #: core/payment.php:375
5170
  msgid ""
5171
  "You have recurring renewal of listing fees enabled but the payment gateways "
5172
  "installed don't support recurring payments. Until a gateway that supports "
@@ -5179,7 +5218,7 @@ msgstr ""
5179
  "récurrents (comme PayPal) soit activé, les renouvellements automatiques "
5180
  "seront désactivées."
5181
 
5182
- #: core/payment.php:380
5183
  msgid ""
5184
  "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
5185
  "supported by the gateway. All other fees will be charged as non-recurring."
@@ -5188,37 +5227,37 @@ msgstr ""
5188
  "récurrents sont pris en charge par la passerelle. Tous les autres frais "
5189
  "seront facturés comme non récurrents."
5190
 
5191
- #: core/payment.php:413
5192
  msgctxt "payments-api"
5193
  msgid "Checkout"
5194
  msgstr "Vérification"
5195
 
5196
- #: core/payment.php:414
5197
  msgctxt "payments-api"
5198
  msgid "Pay %1$s through %2$s"
5199
  msgstr "Payez %1$s par %2$s"
5200
 
5201
- #: core/payment.php:421
5202
  msgctxt "payments-api"
5203
  msgid "Your transaction has been approved."
5204
  msgstr "Votre traansaction a été aapprouvée."
5205
 
5206
- #: core/payment.php:602
5207
  msgctxt "payments"
5208
  msgid "Payment Details"
5209
  msgstr "Détails de paiement"
5210
 
5211
- #: core/payment.php:629
5212
  msgctxt "checkout"
5213
  msgid "Payment Method"
5214
  msgstr "Méthode de paiement"
5215
 
5216
- #: core/payment.php:658
5217
  msgctxt "payment"
5218
  msgid "Return to Directory."
5219
  msgstr "Retourner vers l'annuaire."
5220
 
5221
- #: core/payment.php:664
5222
  msgctxt "payments"
5223
  msgid ""
5224
  "Your payment is being processed by the payment gateway. Please reload this "
@@ -5229,7 +5268,7 @@ msgstr ""
5229
  "Veuillez recharger cette page dans un instant pour voir si la situation a "
5230
  "changé ou contactez l'administrateur du site."
5231
 
5232
- #: core/payment.php:667
5233
  msgctxt "payments"
5234
  msgid ""
5235
  "The payment has been rejected by the payment gateway. Please contact the "
@@ -5241,12 +5280,12 @@ msgstr ""
5241
  "\"Changer de Paiement \" pour sélectionner une autre méthode de paiement et "
5242
  "essayez à nouveau."
5243
 
5244
- #: core/payment.php:668
5245
  msgctxt "payments"
5246
  msgid "Change Payment Method"
5247
  msgstr "Changer la méthode de paiement"
5248
 
5249
- #: core/payment.php:670
5250
  msgctxt "payments"
5251
  msgid ""
5252
  "The payment has been rejected by the payment gateway. Please contact the "
@@ -5255,17 +5294,17 @@ msgstr ""
5255
  "Le paiement a été rejeté par la passerelle de paiement. Veuillez contacter "
5256
  "l'administrateur du site si vous pensez qu'il y a une erreur."
5257
 
5258
- #: core/payment.php:673
5259
  msgctxt "payments"
5260
  msgid "The payment has been canceled at your request."
5261
  msgstr "Le paiement a été annulé à votre demande."
5262
 
5263
- #: core/payment.php:769
5264
  msgctxt "admin"
5265
  msgid "Pending Abandonment"
5266
  msgstr "Abandon en cours"
5267
 
5268
- #: core/payment.php:774
5269
  msgctxt "admin"
5270
  msgid "Abandoned"
5271
  msgstr "Abandonné"
@@ -5681,22 +5720,22 @@ msgctxt "templates"
5681
  msgid "I agree to the Terms and Conditions"
5682
  msgstr "Je suis en accord avec les Termes et Condiditons"
5683
 
5684
- #: core/view-submit-listing.php:406
5685
  msgctxt "listings"
5686
  msgid "Fee \"%s\" for category \"%s\"%s"
5687
  msgstr "Frais \"%s\" pour la catégorie \"%s\"%s"
5688
 
5689
- #: core/view-submit-listing.php:409
5690
  msgctxt "listings"
5691
  msgid "(recurring)"
5692
  msgstr "(récurrant)"
5693
 
5694
- #: core/view-submit-listing.php:419 core/view-upgrade-listing.php:54
5695
  msgctxt "submit"
5696
  msgid "Listing upgrade to featured"
5697
  msgstr "Mise à jour de l'annonce vers prioritaire"
5698
 
5699
- #: core/view-submit-listing.php:452
5700
  msgctxt "submit_state"
5701
  msgid "Invalid submit state."
5702
  msgstr "Etat de soumission invalide"
@@ -5718,7 +5757,7 @@ msgctxt "templates"
5718
  msgid "Return to listing."
5719
  msgstr "Retourner vers l'annonce."
5720
 
5721
- #: core/views.php:30
5722
  msgid ""
5723
  "You need to create a page with the [businessdirectory] shortcode for the "
5724
  "Business Directory plugin to work correctly."
@@ -5726,23 +5765,23 @@ msgstr ""
5726
  "Vous devez créer une page avec le shortcode [businessdirectory] pour que le "
5727
  "plugin Business Directory fonctionne correctement."
5728
 
5729
- #: core/views.php:32
5730
  msgid "The directory is temporarily disabled."
5731
  msgstr "L'annuaire est temporairement désactivé."
5732
 
5733
- #: core/views.php:190
5734
  msgctxt "preview"
5735
  msgid "This is just a preview. The listing has not been published yet."
5736
  msgstr ""
5737
  "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
5738
  "publié."
5739
 
5740
- #: core/views.php:342
5741
  msgctxt "templates"
5742
  msgid "Listings tagged: %s"
5743
  msgstr "Annonces étiquettées: %s"
5744
 
5745
- #: core/views.php:459
5746
  msgctxt "templates"
5747
  msgid ""
5748
  "There are no categories assigned to the business directory yet. You need to "
@@ -5758,12 +5797,12 @@ msgstr ""
5758
  "Les annonces ne peuvent pas être ajoutés tant que vous n'avez pas attribuer "
5759
  "des catégories à l'annuaire professionnel."
5760
 
5761
- #: core/views.php:461
5762
  msgctxt "templates"
5763
  msgid "There are currently no listings in the directory."
5764
  msgstr "Il n'y a actuellement aucune annonce dans l'annuaire."
5765
 
5766
- #: core/views.php:479
5767
  msgctxt "templates"
5768
  msgid ""
5769
  "You have \"Hide Empty Categories\" on and some categories that don't have "
@@ -6391,7 +6430,7 @@ msgstr ""
6391
  #: templates/renew-listing.tpl.php:22
6392
  #: templates/submit-listing/category-selection.tpl.php:8
6393
  #: templates/submit-listing/fee-selection.tpl.php:37
6394
- #: templates/submit-listing/images.tpl.php:36
6395
  #: templates/submit-listing/listing-fields.tpl.php:34
6396
  msgctxt "templates"
6397
  msgid "Continue"
@@ -6490,12 +6529,12 @@ msgstr ""
6490
  "Voulez vous que vos frais se renouvellent automatiquement à la fin de la "
6491
  "période?"
6492
 
6493
- #: templates/submit-listing/images-single.tpl.php:9
6494
  msgctxt "templates"
6495
  msgid "Delete Image"
6496
  msgstr "Effacer l'image"
6497
 
6498
- #: templates/submit-listing/images-single.tpl.php:16
6499
  msgctxt "templates"
6500
  msgid "Set this image as the listing thumbnail."
6501
  msgstr "Utiliser cette image comme miniature"
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: 2015-12-14 21:54:34+00:00\n"
8
  "PO-Revision-Date: 2015-11-04 11:52+0100\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
16
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
 
19
+ #: admin/class-admin-listings.php:36
20
+ #, fuzzy
21
+ msgctxt "admin category filter"
22
+ msgid "All categories"
23
+ msgstr "Toutes catégories"
24
+
25
+ #: admin/class-admin-listings.php:68
26
  msgid "Listing Information"
27
  msgstr "Information sur l'annonce"
28
 
29
+ #: admin/class-admin-listings.php:75
30
  msgctxt "admin"
31
  msgid "Listing Fields / Images"
32
  msgstr "Champs des annonces / Images "
33
 
34
+ #: admin/class-admin-listings.php:86
35
  msgctxt "admin"
36
  msgid "Categories"
37
  msgstr "Catégories"
38
 
39
+ #: admin/class-admin-listings.php:87
40
  msgid "Payment Status"
41
  msgstr "Statut du paiement"
42
 
43
+ #: admin/class-admin-listings.php:88
44
  msgid "Featured (Sticky) Status"
45
  msgstr "Statut sélectionné (Post-it)"
46
 
47
+ #: admin/class-admin-listings.php:119
48
  msgctxt "admin"
49
  msgid "(Listing expired in this category)"
50
  msgstr "(Annonce expirée dans cette catégorie) "
51
 
52
+ #: admin/class-admin-listings.php:137 admin/class-admin-listings.php:220
53
  msgid "Paid"
54
  msgstr "Payé"
55
 
56
+ #: admin/class-admin-listings.php:142
57
  msgid "Mark as"
58
  msgstr "Marqué comme"
59
 
60
+ #: admin/class-admin-listings.php:151 admin/class-admin-listings.php:230
61
  msgid "Pending Upgrade"
62
  msgstr "Mise à jour nécessaire"
63
 
64
+ #: admin/class-admin-listings.php:159 admin/listing-metabox.php:68
65
  msgid "Upgrade to %s"
66
  msgstr "Mettre à jour vers %s"
67
 
68
+ #: admin/class-admin-listings.php:166 admin/listing-metabox.php:75
69
  msgid "Downgrade to %s"
70
  msgstr "Déclasser vers %s"
71
 
72
+ #: admin/class-admin-listings.php:169 admin/class-admin-listings.php:349
73
  msgctxt "admin actions"
74
  msgid "Upgrade to Featured"
75
  msgstr "Mettre à jour vers la version sélectionnée"
76
 
77
+ #: admin/class-admin-listings.php:225
78
  msgid "Unpaid"
79
  msgstr "Impayé"
80
 
81
+ #: admin/class-admin-listings.php:235
82
  msgctxt "admin"
83
  msgid "Expired"
84
  msgstr "Expiré "
85
 
86
+ #: admin/class-admin-listings.php:285
87
  msgctxt "admin actions"
88
  msgid "Edit Listing"
89
  msgstr "Editer l'annonce"
90
 
91
+ #: admin/class-admin-listings.php:288
92
  msgctxt "admin actions"
93
  msgid "Delete Listing"
94
  msgstr "Effacer l'annonce"
95
 
96
+ #: admin/class-admin-listings.php:347
97
  msgctxt "admin actions"
98
  msgid "Publish Listing"
99
  msgstr "Publier l'annonce"
100
 
101
+ #: admin/class-admin-listings.php:350
102
  msgctxt "admin actions"
103
  msgid "Downgrade to Normal"
104
  msgstr "Rétrograder vers le mode Normal "
105
 
106
+ #: admin/class-admin-listings.php:352
107
  msgctxt "admin actions"
108
  msgid "Mark as Paid"
109
  msgstr "Marquer comme Payé "
110
 
111
+ #: admin/class-admin-listings.php:354
112
  msgctxt "admin actions"
113
  msgid "Renew Listing"
114
  msgstr "Renouveler l'annonce"
1320
  msgid "Warning"
1321
  msgstr "Alerte"
1322
 
1323
+ #: admin/templates/csv-import.tpl.php:12 admin/templates/csv-import.tpl.php:227
1324
  msgctxt "admin csv-import"
1325
  msgid "Help"
1326
  msgstr "Aide"
1420
 
1421
  #: admin/templates/csv-import.tpl.php:171
1422
  msgctxt "admin csv-import"
1423
+ msgid "Keep existing listing images?"
1424
+ msgstr ""
1425
+
1426
+ #: admin/templates/csv-import.tpl.php:176
1427
+ #, fuzzy
1428
+ msgctxt "admin csv-import"
1429
+ msgid "Keep existing images."
1430
+ msgstr "Liste des images"
1431
+
1432
+ #: admin/templates/csv-import.tpl.php:177
1433
+ msgctxt "admin csv-import"
1434
+ msgid "Appends new images while keeping current ones."
1435
+ msgstr ""
1436
+
1437
+ #: admin/templates/csv-import.tpl.php:182
1438
+ msgctxt "admin csv-import"
1439
  msgid "Assign listings to a user?"
1440
  msgstr "Assigner des listes à un utilisateur?"
1441
 
1442
+ #: admin/templates/csv-import.tpl.php:188
1443
  msgctxt "admin csv-import"
1444
  msgid "Assign listings to a user."
1445
  msgstr "Assigner des listes à un utilisateur."
1446
 
1447
+ #: admin/templates/csv-import.tpl.php:193
1448
  msgctxt "admin csv-import"
1449
  msgid "Default listing user"
1450
  msgstr "Annonce par défault de l'utilisateur"
1451
 
1452
+ #: admin/templates/csv-import.tpl.php:198
1453
  msgctxt "admin csv-import"
1454
  msgid "Use spreadsheet information only."
1455
  msgstr "Utiliser les informations de feuille de calcul uniquement."
1456
 
1457
+ #: admin/templates/csv-import.tpl.php:204
1458
  msgctxt "admin csv-import"
1459
  msgid ""
1460
  "This user will be used if the username column is not present in the CSV file."
1462
  "Cet utilisateur ne sera utilisé que si la colonne de nom d'utilisateur ne "
1463
  "figure pas dans le fichier CSV."
1464
 
1465
+ #: admin/templates/csv-import.tpl.php:209
1466
  msgctxt "admin csv-import"
1467
  msgid "Disable e-mail notifications during import?"
1468
  msgstr "Désactiver les notifications par e-mail durant l'importation?"
1469
 
1470
+ #: admin/templates/csv-import.tpl.php:214
1471
  msgctxt "admin csv-import"
1472
  msgid "Disable e-mail notifications."
1473
  msgstr "Désactiver les notifications par e-mail."
1474
 
1475
+ #: admin/templates/csv-import.tpl.php:220
1476
  msgctxt "admin csv-import"
1477
  msgid "Test Import"
1478
  msgstr "Tester l'importation"
1479
 
1480
+ #: admin/templates/csv-import.tpl.php:221
1481
  msgctxt "admin csv-import"
1482
  msgid "Import Listings"
1483
  msgstr "Importation des listes"
1484
 
1485
+ #: admin/templates/csv-import.tpl.php:229
1486
  msgctxt "admin csv-import"
1487
  msgid ""
1488
  "The following are the valid header names to be used in the CSV file. "
1496
  "d'un fichier CSV d'importation \" </a> afin de voir à quoi un fichier "
1497
  "d'importation devrait ressembler."
1498
 
1499
+ #: admin/templates/csv-import.tpl.php:236
1500
  msgctxt "admin csv-import"
1501
  msgid "Header name/label"
1502
  msgstr "Nom/Etiquette de l'en-tête"
1503
 
1504
+ #: admin/templates/csv-import.tpl.php:237
1505
  msgctxt "admin csv-import"
1506
  msgid "Field"
1507
  msgstr "Champ"
1508
 
1509
+ #: admin/templates/csv-import.tpl.php:238
1510
  msgctxt "admin csv-import"
1511
  msgid "Type"
1512
  msgstr "Type"
1513
 
1514
+ #: admin/templates/csv-import.tpl.php:239
1515
  msgctxt "admin csv-import"
1516
  msgid "Required?"
1517
  msgstr "Requis?"
1518
 
1519
+ #: admin/templates/csv-import.tpl.php:240
1520
  msgctxt "admin csv-import"
1521
  msgid "Multivalued?"
1522
  msgstr "Valeurs multiples?"
1523
 
1524
+ #: admin/templates/csv-import.tpl.php:262
1525
  msgctxt "admin csv-import"
1526
  msgid "Semicolon separated list of listing images (from the ZIP file)"
1527
  msgstr ""
1528
  "Liste séparée de la cotation des images par un point-virgule (à partir du "
1529
  "fichier ZIP)"
1530
 
1531
+ #: admin/templates/csv-import.tpl.php:269
1532
  msgctxt "admin csv-import"
1533
  msgid "Listing author's username"
1534
  msgstr "Nom d'utilisateur de l'auteur de l'annonce"
1535
 
1536
+ #: admin/templates/csv-import.tpl.php:276
1537
  msgctxt "admin csv-import"
1538
  msgid ""
1539
  "Internal Sequence ID used to allow listing updates from external sources."
1541
  "ID interne de séquence utilisé pour permettre l'annonce des mises à jour "
1542
  "provenant de sources externes."
1543
 
1544
+ #: admin/templates/csv-import.tpl.php:283
1545
  msgctxt "admin csv-import"
1546
  msgid ""
1547
  "Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
1922
  "Veuillez voir la <a>Documentation de champs de formulaire</a> pour plus de "
1923
  "détails."
1924
 
1925
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.6.11) #-#-#-#-#
1926
  #. Plugin Name of the plugin/theme
1927
  #: admin/templates/header.tpl.php:4
1928
  msgid "Business Directory Plugin"
2654
  msgid "Listings tagged: %s"
2655
  msgstr "Annonces marquées: %s"
2656
 
2657
+ #: core/class-csv-import.php:375
2658
  msgctxt "admin csv-import"
2659
  msgid "Could not create listing category \"%s\""
2660
  msgstr "Vous ne pouvez pas créer cette catégorie d'annonce \"%s\""
2661
 
2662
+ #: core/class-csv-import.php:519
2663
  msgctxt "admin csv-import"
2664
  msgid "Username \"%s\" does not exist"
2665
  msgstr "Le nom d'utilisateur \"%s\" n'existe pas"
2666
 
2667
+ #: core/class-csv-import.php:551
2668
  msgctxt "admin csv-import"
2669
  msgid "Missing required field: %s"
2670
  msgstr "Absence d'un champ requis: %s"
2671
 
2672
+ #: core/class-csv-import.php:571
2673
  msgctxt "admin csv-import"
2674
  msgid "Listing category \"%s\" does not exist"
2675
  msgstr "La catégorie d'annonce \"%s\" n'existe pas"
2767
  msgid "Featured Listing"
2768
  msgstr "Annonce sélectionnée"
2769
 
2770
+ #: core/class-listing.php:319 core/class-listing.php:345
2771
  msgctxt "listing"
2772
  msgid "(Fee Unavailable)"
2773
  msgstr "(Coûts Non disponible)"
2827
  msgid "Fee \"%s\" for category \"%s\""
2828
  msgstr "Frais \"%s\" pour catégorie \"%s\""
2829
 
2830
+ #: core/class-recaptcha.php:90 core/class-recaptcha.php:105
2831
  #, fuzzy
2832
  msgctxt "recaptcha"
2833
  msgid "The reCAPTCHA wasn't entered correctly."
4512
  msgid "Textarea"
4513
  msgstr "Zone de texte"
4514
 
4515
+ #: core/fieldtypes/class-fieldtypes-textarea.php:50
4516
  msgctxt "form-fields admin"
4517
  msgid "Allow HTML input for this field?"
4518
  msgstr "Autoriser les ajouts HTML dans ce champ?"
4519
 
4520
+ #: core/fieldtypes/class-fieldtypes-textarea.php:54
4521
  msgctxt "form-fields admin"
4522
  msgid "Allow WordPress shortcodes in this field?"
4523
  msgstr "Autoriser les shortcodes WordPress dans ce champ?"
4524
 
4525
+ #: core/fieldtypes/class-fieldtypes-textarea.php:57
4526
+ msgctxt "form-fields admin"
4527
+ msgid "Display a WYSIWYG editor on the frontend?"
4528
+ msgstr ""
4529
+
4530
+ #: core/fieldtypes/class-fieldtypes-textarea.php:60
4531
+ msgctxt "form-fields admin"
4532
+ msgid ""
4533
+ "<b>Warning:</b> Users can use this feature to get around your image limits "
4534
+ "in fee plans."
4535
+ msgstr ""
4536
+
4537
+ #: core/fieldtypes/class-fieldtypes-textarea.php:61
4538
+ msgctxt "form-fields admin"
4539
+ msgid "Allow images in WYSIWYG editor?"
4540
+ msgstr ""
4541
+
4542
+ #: core/fieldtypes/class-fieldtypes-textarea.php:64
4543
  msgctxt "form-fields admin"
4544
  msgid ""
4545
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
4548
  "<b> Utilisateurs avancés seulement! </ b> Sauf si vous avez été dit de "
4549
  "changer cela, ne le coupez pas sauf si vous savez ce que vous faites."
4550
 
4551
+ #: core/fieldtypes/class-fieldtypes-textarea.php:65
4552
  msgctxt "form-fields admin"
4553
  msgid "Apply \"the_content\" filter before displaying this field?"
4554
  msgstr "Appliquer le filtre \"the_content \" avant d'afannoncer ce champ?"
4940
  msgid "General"
4941
  msgstr "Général"
4942
 
4943
+ #: core/installer.php:469
4944
  msgctxt "installer"
4945
  msgid ""
4946
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
4951
  "est incompatible avec la version actuelle du plugin. Veuillez mettre à jour "
4952
  "le module."
4953
 
4954
+ #: core/installer.php:535
4955
  msgctxt "installer"
4956
  msgid "Cleaning up listing fees information... %d/%d"
4957
  msgstr "Nettoyage des informations sur les droits d'inscription ... %d/%d"
4958
 
4959
+ #: core/installer.php:585
4960
  msgctxt "installer"
4961
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4962
  msgstr ""
4963
  "Migration des transactions antérieures vers de nouveaux paiements API ... %d/"
4964
  "%d"
4965
 
4966
+ #: core/installer.php:614
4967
  msgctxt "installer"
4968
  msgid "Initial listing payment (BD < 3.4)"
4969
  msgstr "Annonce de paiement initial (BD<3.4)"
4970
 
4971
+ #: core/installer.php:625
4972
  msgctxt "installer"
4973
  msgid "Listing edit payment (BD < 3.4)"
4974
  msgstr "Edition de l'annonce de paiement (BD<3.4)"
4975
 
4976
+ #: core/installer.php:646
4977
  msgctxt "installer"
4978
  msgid "Renewal fee \"%s\" for category \"%s\""
4979
  msgstr "Renouvellement des frais \"%s\" pour la catégorie \"%s\""
4980
 
4981
+ #: core/installer.php:665
4982
  msgctxt "installer"
4983
  msgid "Listing upgrade to featured"
4984
  msgstr "Mise à jour des annonces vers prioritaire"
4985
 
4986
+ #: core/installer.php:907
4987
  msgid "Business Directory - Manual Upgrade Required"
4988
  msgstr "Business Directory - Mise à jour manuelle requise"
4989
 
4990
+ #: core/installer.php:909
4991
  msgid ""
4992
  "Business Directory features are currently disabled because the plugin needs "
4993
  "to perform a manual upgrade before continuing."
4996
  "désactivés car le plugin a besoin d'effectuer une mise à jour manuelle avant "
4997
  "de poursuivre."
4998
 
4999
+ #: core/installer.php:911
5000
  msgid "Perform Manual Upgrade"
5001
  msgstr "Effectuer la mise à jour manuelle"
5002
 
5003
+ #: core/installer.php:927 core/installer.php:928 core/installer.php:939
5004
  msgid "Business Directory - Manual Upgrade"
5005
  msgstr "Business Directory - Mise à jour manuelle"
5006
 
5007
+ #: core/installer.php:943
5008
  msgid ""
5009
  "Business Directory features are currently disabled because the plugin needs "
5010
  "to perform a manual upgrade before it can be used."
5013
  "désactivées car le plugin a besoin d'effectuer une mise à jour manuelle afin "
5014
  "d'être pleinement utilisable."
5015
 
5016
+ #: core/installer.php:945
5017
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5018
  msgstr ""
5019
  "Cliquez sur \"Commencer la mise à jour\" et patientez jusqu'à la fin du "
5020
  "processus."
5021
 
5022
+ #: core/installer.php:948
5023
  msgctxt "manual-upgrade"
5024
  msgid "Start Upgrade"
5025
  msgstr "Commencer la mise à jour"
5026
 
5027
+ #: core/installer.php:950
5028
  msgctxt "manual-upgrade"
5029
  msgid "Pause Upgrade"
5030
  msgstr "Mettre en pause la mise à jour"
5031
 
5032
+ #: core/installer.php:956
5033
  msgctxt "manual-upgrade"
5034
  msgid ""
5035
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
5038
  "La mise à jour s'est bien effectué. Le plugin Business Directory est "
5039
  "maintenant disponible et fonctionnel."
5040
 
5041
+ #: core/installer.php:959
5042
  msgctxt "manual-upgrade"
5043
  msgid "Go to \"Directory Admin\""
5044
  msgstr "Aller à \"Administrateur de l'annuaire\""
5125
  msgid "Free Listing"
5126
  msgstr "Annonce gratuite"
5127
 
5128
+ #: core/payment.php:145
5129
  msgctxt "fees-api"
5130
  msgid "Fee label is required."
5131
  msgstr "Une étiquette de frais est requise."
5132
 
5133
+ #: core/payment.php:148
5134
  msgctxt "fees-api"
5135
  msgid "Fee amount must be a non-negative decimal number."
5136
  msgstr "Le montant des frais doit être un nombre décimal non-négatif."
5137
 
5138
+ #: core/payment.php:151 core/payment.php:154
5139
  msgctxt "fees-api"
5140
  msgid "Fee must apply to at least one category."
5141
  msgstr "Fee doit être appliqué à au moins une catégorie."
5142
 
5143
+ #: core/payment.php:157
5144
  msgctxt "fees-api"
5145
  msgid "Fee allowed images must be a non-negative integer."
5146
  msgstr "Les frais autorisé doivent être un entier non négatif."
5147
 
5148
+ #: core/payment.php:160
5149
  msgctxt "fees-api"
5150
  msgid "Fee listing run must be a non-negative integer."
5151
  msgstr "Les frais d'annonce doivent être un entier non-négatif."
5152
 
5153
+ #: core/payment.php:165
5154
  msgctxt "fees-api"
5155
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
5156
  msgstr ""
5157
  "La durée des frais d'annonce doit être un nombre inférieur à 10 ans (3650 "
5158
  "jours)."
5159
 
5160
+ #: core/payment.php:340
5161
  msgctxt "payments-api"
5162
  msgid ""
5163
  "You are offering featured listings but have payments turned off. Go to <a "
5170
  "paramètres de paiement. Jusqu'à ce que vous effectuiez les modifications "
5171
  "voulues, l'option <i> Mise à niveau en vedette </ i>sera désactivée."
5172
 
5173
+ #: core/payment.php:358
5174
  msgctxt "payments-api"
5175
  msgid ""
5176
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
5182
  "soient fixés: <b>%s </b>. <br/> Vérifiez les <a href=\"%s\"> paramètres de "
5183
  "paiement </a>."
5184
 
5185
+ #: core/payment.php:368
5186
  msgctxt "admin"
5187
  msgid ""
5188
  "You have payments turned on but no gateway is active and properly "
5195
  "Paiement </a> pour modifier les paramètres de paiement. Jusqu'à ce que vous "
5196
  "modifiez cela, le répertoire fonctionnera en <i> Mode libre </ i>."
5197
 
5198
+ #: core/payment.php:372
5199
  msgid ""
5200
  "BD detected PayFast and another gateway were enabled. This setup is not "
5201
  "recommended due to PayFast supporting only ZAR and the other gateways not "
5205
  "Cette configuration est déconseillée étant donné que PayFast supporte la "
5206
  "devise ZAR (Rand sud-africain) et pas les autres passerelles."
5207
 
5208
+ #: core/payment.php:376
5209
  msgid ""
5210
  "You have recurring renewal of listing fees enabled but the payment gateways "
5211
  "installed don't support recurring payments. Until a gateway that supports "
5218
  "récurrents (comme PayPal) soit activé, les renouvellements automatiques "
5219
  "seront désactivées."
5220
 
5221
+ #: core/payment.php:381
5222
  msgid ""
5223
  "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
5224
  "supported by the gateway. All other fees will be charged as non-recurring."
5227
  "récurrents sont pris en charge par la passerelle. Tous les autres frais "
5228
  "seront facturés comme non récurrents."
5229
 
5230
+ #: core/payment.php:414
5231
  msgctxt "payments-api"
5232
  msgid "Checkout"
5233
  msgstr "Vérification"
5234
 
5235
+ #: core/payment.php:415
5236
  msgctxt "payments-api"
5237
  msgid "Pay %1$s through %2$s"
5238
  msgstr "Payez %1$s par %2$s"
5239
 
5240
+ #: core/payment.php:422
5241
  msgctxt "payments-api"
5242
  msgid "Your transaction has been approved."
5243
  msgstr "Votre traansaction a été aapprouvée."
5244
 
5245
+ #: core/payment.php:603
5246
  msgctxt "payments"
5247
  msgid "Payment Details"
5248
  msgstr "Détails de paiement"
5249
 
5250
+ #: core/payment.php:630
5251
  msgctxt "checkout"
5252
  msgid "Payment Method"
5253
  msgstr "Méthode de paiement"
5254
 
5255
+ #: core/payment.php:659
5256
  msgctxt "payment"
5257
  msgid "Return to Directory."
5258
  msgstr "Retourner vers l'annuaire."
5259
 
5260
+ #: core/payment.php:665
5261
  msgctxt "payments"
5262
  msgid ""
5263
  "Your payment is being processed by the payment gateway. Please reload this "
5268
  "Veuillez recharger cette page dans un instant pour voir si la situation a "
5269
  "changé ou contactez l'administrateur du site."
5270
 
5271
+ #: core/payment.php:668
5272
  msgctxt "payments"
5273
  msgid ""
5274
  "The payment has been rejected by the payment gateway. Please contact the "
5280
  "\"Changer de Paiement \" pour sélectionner une autre méthode de paiement et "
5281
  "essayez à nouveau."
5282
 
5283
+ #: core/payment.php:669
5284
  msgctxt "payments"
5285
  msgid "Change Payment Method"
5286
  msgstr "Changer la méthode de paiement"
5287
 
5288
+ #: core/payment.php:671
5289
  msgctxt "payments"
5290
  msgid ""
5291
  "The payment has been rejected by the payment gateway. Please contact the "
5294
  "Le paiement a été rejeté par la passerelle de paiement. Veuillez contacter "
5295
  "l'administrateur du site si vous pensez qu'il y a une erreur."
5296
 
5297
+ #: core/payment.php:674
5298
  msgctxt "payments"
5299
  msgid "The payment has been canceled at your request."
5300
  msgstr "Le paiement a été annulé à votre demande."
5301
 
5302
+ #: core/payment.php:770
5303
  msgctxt "admin"
5304
  msgid "Pending Abandonment"
5305
  msgstr "Abandon en cours"
5306
 
5307
+ #: core/payment.php:775
5308
  msgctxt "admin"
5309
  msgid "Abandoned"
5310
  msgstr "Abandonné"
5720
  msgid "I agree to the Terms and Conditions"
5721
  msgstr "Je suis en accord avec les Termes et Condiditons"
5722
 
5723
+ #: core/view-submit-listing.php:443
5724
  msgctxt "listings"
5725
  msgid "Fee \"%s\" for category \"%s\"%s"
5726
  msgstr "Frais \"%s\" pour la catégorie \"%s\"%s"
5727
 
5728
+ #: core/view-submit-listing.php:446
5729
  msgctxt "listings"
5730
  msgid "(recurring)"
5731
  msgstr "(récurrant)"
5732
 
5733
+ #: core/view-submit-listing.php:456 core/view-upgrade-listing.php:54
5734
  msgctxt "submit"
5735
  msgid "Listing upgrade to featured"
5736
  msgstr "Mise à jour de l'annonce vers prioritaire"
5737
 
5738
+ #: core/view-submit-listing.php:489
5739
  msgctxt "submit_state"
5740
  msgid "Invalid submit state."
5741
  msgstr "Etat de soumission invalide"
5757
  msgid "Return to listing."
5758
  msgstr "Retourner vers l'annonce."
5759
 
5760
+ #: core/views.php:32
5761
  msgid ""
5762
  "You need to create a page with the [businessdirectory] shortcode for the "
5763
  "Business Directory plugin to work correctly."
5765
  "Vous devez créer une page avec le shortcode [businessdirectory] pour que le "
5766
  "plugin Business Directory fonctionne correctement."
5767
 
5768
+ #: core/views.php:34
5769
  msgid "The directory is temporarily disabled."
5770
  msgstr "L'annuaire est temporairement désactivé."
5771
 
5772
+ #: core/views.php:203
5773
  msgctxt "preview"
5774
  msgid "This is just a preview. The listing has not been published yet."
5775
  msgstr ""
5776
  "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
5777
  "publié."
5778
 
5779
+ #: core/views.php:355
5780
  msgctxt "templates"
5781
  msgid "Listings tagged: %s"
5782
  msgstr "Annonces étiquettées: %s"
5783
 
5784
+ #: core/views.php:472
5785
  msgctxt "templates"
5786
  msgid ""
5787
  "There are no categories assigned to the business directory yet. You need to "
5797
  "Les annonces ne peuvent pas être ajoutés tant que vous n'avez pas attribuer "
5798
  "des catégories à l'annuaire professionnel."
5799
 
5800
+ #: core/views.php:474
5801
  msgctxt "templates"
5802
  msgid "There are currently no listings in the directory."
5803
  msgstr "Il n'y a actuellement aucune annonce dans l'annuaire."
5804
 
5805
+ #: core/views.php:492
5806
  msgctxt "templates"
5807
  msgid ""
5808
  "You have \"Hide Empty Categories\" on and some categories that don't have "
6430
  #: templates/renew-listing.tpl.php:22
6431
  #: templates/submit-listing/category-selection.tpl.php:8
6432
  #: templates/submit-listing/fee-selection.tpl.php:37
6433
+ #: templates/submit-listing/images.tpl.php:38
6434
  #: templates/submit-listing/listing-fields.tpl.php:34
6435
  msgctxt "templates"
6436
  msgid "Continue"
6529
  "Voulez vous que vos frais se renouvellent automatiquement à la fin de la "
6530
  "période?"
6531
 
6532
+ #: templates/submit-listing/images-single.tpl.php:18
6533
  msgctxt "templates"
6534
  msgid "Delete Image"
6535
  msgstr "Effacer l'image"
6536
 
6537
+ #: templates/submit-listing/images-single.tpl.php:24
6538
  msgctxt "templates"
6539
  msgid "Set this image as the listing thumbnail."
6540
  msgstr "Utiliser cette image comme miniature"
languages/WPBDM.pot CHANGED
@@ -3,9 +3,9 @@
3
  #, fuzzy
4
  msgid ""
5
  msgstr ""
6
- "Project-Id-Version: Business Directory Plugin 3.6.10\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
8
- "POT-Creation-Date: 2015-11-17 18:38-0500\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -15,93 +15,98 @@ msgstr ""
15
  "X-Generator: Poedit 1.8.5\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
 
18
- #: admin/class-admin-listings.php:24
 
 
 
 
 
19
  msgid "Listing Information"
20
  msgstr ""
21
 
22
- #: admin/class-admin-listings.php:31
23
  msgctxt "admin"
24
  msgid "Listing Fields / Images"
25
  msgstr ""
26
 
27
- #: admin/class-admin-listings.php:42
28
  msgctxt "admin"
29
  msgid "Categories"
30
  msgstr ""
31
 
32
- #: admin/class-admin-listings.php:43
33
  msgid "Payment Status"
34
  msgstr ""
35
 
36
- #: admin/class-admin-listings.php:44
37
  msgid "Featured (Sticky) Status"
38
  msgstr ""
39
 
40
- #: admin/class-admin-listings.php:75
41
  msgctxt "admin"
42
  msgid "(Listing expired in this category)"
43
  msgstr ""
44
 
45
- #: admin/class-admin-listings.php:93 admin/class-admin-listings.php:176
46
  msgid "Paid"
47
  msgstr ""
48
 
49
- #: admin/class-admin-listings.php:98
50
  msgid "Mark as"
51
  msgstr ""
52
 
53
- #: admin/class-admin-listings.php:107 admin/class-admin-listings.php:186
54
  msgid "Pending Upgrade"
55
  msgstr ""
56
 
57
- #: admin/class-admin-listings.php:115 admin/listing-metabox.php:68
58
  msgid "Upgrade to %s"
59
  msgstr ""
60
 
61
- #: admin/class-admin-listings.php:122 admin/listing-metabox.php:75
62
  msgid "Downgrade to %s"
63
  msgstr ""
64
 
65
- #: admin/class-admin-listings.php:125 admin/class-admin-listings.php:295
66
  msgctxt "admin actions"
67
  msgid "Upgrade to Featured"
68
  msgstr ""
69
 
70
- #: admin/class-admin-listings.php:181
71
  msgid "Unpaid"
72
  msgstr ""
73
 
74
- #: admin/class-admin-listings.php:191
75
  msgctxt "admin"
76
  msgid "Expired"
77
  msgstr ""
78
 
79
- #: admin/class-admin-listings.php:241
80
  msgctxt "admin actions"
81
  msgid "Edit Listing"
82
  msgstr ""
83
 
84
- #: admin/class-admin-listings.php:244
85
  msgctxt "admin actions"
86
  msgid "Delete Listing"
87
  msgstr ""
88
 
89
- #: admin/class-admin-listings.php:293
90
  msgctxt "admin actions"
91
  msgid "Publish Listing"
92
  msgstr ""
93
 
94
- #: admin/class-admin-listings.php:296
95
  msgctxt "admin actions"
96
  msgid "Downgrade to Normal"
97
  msgstr ""
98
 
99
- #: admin/class-admin-listings.php:298
100
  msgctxt "admin actions"
101
  msgid "Mark as Paid"
102
  msgstr ""
103
 
104
- #: admin/class-admin-listings.php:300
105
  msgctxt "admin actions"
106
  msgid "Renew Listing"
107
  msgstr ""
@@ -1236,7 +1241,7 @@ msgctxt "admin csv-import"
1236
  msgid "Warning"
1237
  msgstr ""
1238
 
1239
- #: admin/templates/csv-import.tpl.php:12 admin/templates/csv-import.tpl.php:216
1240
  msgctxt "admin csv-import"
1241
  msgid "Help"
1242
  msgstr ""
@@ -1330,50 +1335,65 @@ msgstr ""
1330
 
1331
  #: admin/templates/csv-import.tpl.php:171
1332
  msgctxt "admin csv-import"
1333
- msgid "Assign listings to a user?"
 
 
 
 
 
1334
  msgstr ""
1335
 
1336
  #: admin/templates/csv-import.tpl.php:177
1337
  msgctxt "admin csv-import"
1338
- msgid "Assign listings to a user."
1339
  msgstr ""
1340
 
1341
  #: admin/templates/csv-import.tpl.php:182
1342
  msgctxt "admin csv-import"
 
 
 
 
 
 
 
 
 
 
1343
  msgid "Default listing user"
1344
  msgstr ""
1345
 
1346
- #: admin/templates/csv-import.tpl.php:187
1347
  msgctxt "admin csv-import"
1348
  msgid "Use spreadsheet information only."
1349
  msgstr ""
1350
 
1351
- #: admin/templates/csv-import.tpl.php:193
1352
  msgctxt "admin csv-import"
1353
  msgid "This user will be used if the username column is not present in the CSV file."
1354
  msgstr ""
1355
 
1356
- #: admin/templates/csv-import.tpl.php:198
1357
  msgctxt "admin csv-import"
1358
  msgid "Disable e-mail notifications during import?"
1359
  msgstr ""
1360
 
1361
- #: admin/templates/csv-import.tpl.php:203
1362
  msgctxt "admin csv-import"
1363
  msgid "Disable e-mail notifications."
1364
  msgstr ""
1365
 
1366
- #: admin/templates/csv-import.tpl.php:209
1367
  msgctxt "admin csv-import"
1368
  msgid "Test Import"
1369
  msgstr ""
1370
 
1371
- #: admin/templates/csv-import.tpl.php:210
1372
  msgctxt "admin csv-import"
1373
  msgid "Import Listings"
1374
  msgstr ""
1375
 
1376
- #: admin/templates/csv-import.tpl.php:218
1377
  msgctxt "admin csv-import"
1378
  msgid ""
1379
  "The following are the valid header names to be used in the CSV file. Multivalued fields "
@@ -1381,47 +1401,47 @@ msgid ""
1381
  "\"See an example CSV import file\"</a> to see how an import file should look like."
1382
  msgstr ""
1383
 
1384
- #: admin/templates/csv-import.tpl.php:225
1385
  msgctxt "admin csv-import"
1386
  msgid "Header name/label"
1387
  msgstr ""
1388
 
1389
- #: admin/templates/csv-import.tpl.php:226
1390
  msgctxt "admin csv-import"
1391
  msgid "Field"
1392
  msgstr ""
1393
 
1394
- #: admin/templates/csv-import.tpl.php:227
1395
  msgctxt "admin csv-import"
1396
  msgid "Type"
1397
  msgstr ""
1398
 
1399
- #: admin/templates/csv-import.tpl.php:228
1400
  msgctxt "admin csv-import"
1401
  msgid "Required?"
1402
  msgstr ""
1403
 
1404
- #: admin/templates/csv-import.tpl.php:229
1405
  msgctxt "admin csv-import"
1406
  msgid "Multivalued?"
1407
  msgstr ""
1408
 
1409
- #: admin/templates/csv-import.tpl.php:251
1410
  msgctxt "admin csv-import"
1411
  msgid "Semicolon separated list of listing images (from the ZIP file)"
1412
  msgstr ""
1413
 
1414
- #: admin/templates/csv-import.tpl.php:258
1415
  msgctxt "admin csv-import"
1416
  msgid "Listing author's username"
1417
  msgstr ""
1418
 
1419
- #: admin/templates/csv-import.tpl.php:265
1420
  msgctxt "admin csv-import"
1421
  msgid "Internal Sequence ID used to allow listing updates from external sources."
1422
  msgstr ""
1423
 
1424
- #: admin/templates/csv-import.tpl.php:272
1425
  msgctxt "admin csv-import"
1426
  msgid ""
1427
  "Date of listing expiration formatted as YYYY-MM-DD. Use this column when adding or "
@@ -2464,22 +2484,22 @@ msgctxt "title"
2464
  msgid "Listings tagged: %s"
2465
  msgstr ""
2466
 
2467
- #: core/class-csv-import.php:371
2468
  msgctxt "admin csv-import"
2469
  msgid "Could not create listing category \"%s\""
2470
  msgstr ""
2471
 
2472
- #: core/class-csv-import.php:515
2473
  msgctxt "admin csv-import"
2474
  msgid "Username \"%s\" does not exist"
2475
  msgstr ""
2476
 
2477
- #: core/class-csv-import.php:547
2478
  msgctxt "admin csv-import"
2479
  msgid "Missing required field: %s"
2480
  msgstr ""
2481
 
2482
- #: core/class-csv-import.php:567
2483
  msgctxt "admin csv-import"
2484
  msgid "Listing category \"%s\" does not exist"
2485
  msgstr ""
@@ -2570,7 +2590,7 @@ msgctxt "listings-api"
2570
  msgid "Featured Listing"
2571
  msgstr ""
2572
 
2573
- #: core/class-listing.php:297 core/class-listing.php:323
2574
  msgctxt "listing"
2575
  msgid "(Fee Unavailable)"
2576
  msgstr ""
@@ -2630,7 +2650,7 @@ msgctxt "listings"
2630
  msgid "Fee \"%s\" for category \"%s\""
2631
  msgstr ""
2632
 
2633
- #: core/class-recaptcha.php:87 core/class-recaptcha.php:102
2634
  msgctxt "recaptcha"
2635
  msgid "The reCAPTCHA wasn't entered correctly."
2636
  msgstr ""
@@ -4147,24 +4167,40 @@ msgctxt "form-fields api"
4147
  msgid "Textarea"
4148
  msgstr ""
4149
 
4150
- #: core/fieldtypes/class-fieldtypes-textarea.php:35
4151
  msgctxt "form-fields admin"
4152
  msgid "Allow HTML input for this field?"
4153
  msgstr ""
4154
 
4155
- #: core/fieldtypes/class-fieldtypes-textarea.php:39
4156
  msgctxt "form-fields admin"
4157
  msgid "Allow WordPress shortcodes in this field?"
4158
  msgstr ""
4159
 
4160
- #: core/fieldtypes/class-fieldtypes-textarea.php:43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4161
  msgctxt "form-fields admin"
4162
  msgid ""
4163
  "<b>Advanced users only!</b> Unless you've been told to change this, don't switch it "
4164
  "unless you know what you're doing."
4165
  msgstr ""
4166
 
4167
- #: core/fieldtypes/class-fieldtypes-textarea.php:44
4168
  msgctxt "form-fields admin"
4169
  msgid "Apply \"the_content\" filter before displaying this field?"
4170
  msgstr ""
@@ -4544,7 +4580,7 @@ msgctxt "default category name"
4544
  msgid "General"
4545
  msgstr ""
4546
 
4547
- #: core/installer.php:464
4548
  msgctxt "installer"
4549
  msgid ""
4550
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
@@ -4552,80 +4588,80 @@ msgid ""
4552
  "module."
4553
  msgstr ""
4554
 
4555
- #: core/installer.php:530
4556
  msgctxt "installer"
4557
  msgid "Cleaning up listing fees information... %d/%d"
4558
  msgstr ""
4559
 
4560
- #: core/installer.php:580
4561
  msgctxt "installer"
4562
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4563
  msgstr ""
4564
 
4565
- #: core/installer.php:609
4566
  msgctxt "installer"
4567
  msgid "Initial listing payment (BD < 3.4)"
4568
  msgstr ""
4569
 
4570
- #: core/installer.php:620
4571
  msgctxt "installer"
4572
  msgid "Listing edit payment (BD < 3.4)"
4573
  msgstr ""
4574
 
4575
- #: core/installer.php:641
4576
  msgctxt "installer"
4577
  msgid "Renewal fee \"%s\" for category \"%s\""
4578
  msgstr ""
4579
 
4580
- #: core/installer.php:660
4581
  msgctxt "installer"
4582
  msgid "Listing upgrade to featured"
4583
  msgstr ""
4584
 
4585
- #: core/installer.php:902
4586
  msgid "Business Directory - Manual Upgrade Required"
4587
  msgstr ""
4588
 
4589
- #: core/installer.php:904
4590
  msgid ""
4591
  "Business Directory features are currently disabled because the plugin needs to perform a "
4592
  "manual upgrade before continuing."
4593
  msgstr ""
4594
 
4595
- #: core/installer.php:906
4596
  msgid "Perform Manual Upgrade"
4597
  msgstr ""
4598
 
4599
- #: core/installer.php:922 core/installer.php:923 core/installer.php:934
4600
  msgid "Business Directory - Manual Upgrade"
4601
  msgstr ""
4602
 
4603
- #: core/installer.php:938
4604
  msgid ""
4605
  "Business Directory features are currently disabled because the plugin needs to perform a "
4606
  "manual upgrade before it can be used."
4607
  msgstr ""
4608
 
4609
- #: core/installer.php:940
4610
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4611
  msgstr ""
4612
 
4613
- #: core/installer.php:943
4614
  msgctxt "manual-upgrade"
4615
  msgid "Start Upgrade"
4616
  msgstr ""
4617
 
4618
- #: core/installer.php:945
4619
  msgctxt "manual-upgrade"
4620
  msgid "Pause Upgrade"
4621
  msgstr ""
4622
 
4623
- #: core/installer.php:951
4624
  msgctxt "manual-upgrade"
4625
  msgid "The upgrade was sucessfully performed. Business Directory Plugin is now available."
4626
  msgstr ""
4627
 
4628
- #: core/installer.php:954
4629
  msgctxt "manual-upgrade"
4630
  msgid "Go to \"Directory Admin\""
4631
  msgstr ""
@@ -4705,37 +4741,37 @@ msgctxt "fees-api"
4705
  msgid "Free Listing"
4706
  msgstr ""
4707
 
4708
- #: core/payment.php:144
4709
  msgctxt "fees-api"
4710
  msgid "Fee label is required."
4711
  msgstr ""
4712
 
4713
- #: core/payment.php:147
4714
  msgctxt "fees-api"
4715
  msgid "Fee amount must be a non-negative decimal number."
4716
  msgstr ""
4717
 
4718
- #: core/payment.php:150 core/payment.php:153
4719
  msgctxt "fees-api"
4720
  msgid "Fee must apply to at least one category."
4721
  msgstr ""
4722
 
4723
- #: core/payment.php:156
4724
  msgctxt "fees-api"
4725
  msgid "Fee allowed images must be a non-negative integer."
4726
  msgstr ""
4727
 
4728
- #: core/payment.php:159
4729
  msgctxt "fees-api"
4730
  msgid "Fee listing run must be a non-negative integer."
4731
  msgstr ""
4732
 
4733
- #: core/payment.php:164
4734
  msgctxt "fees-api"
4735
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
4736
  msgstr ""
4737
 
4738
- #: core/payment.php:339
4739
  msgctxt "payments-api"
4740
  msgid ""
4741
  "You are offering featured listings but have payments turned off. Go to <a href=\"%s"
@@ -4743,7 +4779,7 @@ msgid ""
4743
  "the <i>Upgrade to Featured</i> option will be disabled."
4744
  msgstr ""
4745
 
4746
- #: core/payment.php:357
4747
  msgctxt "payments-api"
4748
  msgid ""
4749
  "The <b>%s</b> gateway is active but not properly configured. The gateway won't be "
@@ -4751,7 +4787,7 @@ msgid ""
4751
  "\">payment settings</a>."
4752
  msgstr ""
4753
 
4754
- #: core/payment.php:367
4755
  msgctxt "admin"
4756
  msgid ""
4757
  "You have payments turned on but no gateway is active and properly configured. Go to <a "
@@ -4759,63 +4795,63 @@ msgid ""
4759
  "change this, the directory will operate in <i>Free Mode</i>."
4760
  msgstr ""
4761
 
4762
- #: core/payment.php:371
4763
  msgid ""
4764
  "BD detected PayFast and another gateway were enabled. This setup is not recommended due "
4765
  "to PayFast supporting only ZAR and the other gateways not supporting this currency."
4766
  msgstr ""
4767
 
4768
- #: core/payment.php:375
4769
  msgid ""
4770
  "You have recurring renewal of listing fees enabled but the payment gateways installed "
4771
  "don't support recurring payments. Until a gateway that supports recurring payments (such "
4772
  "as PayPal) is enabled automatic renewals will be disabled."
4773
  msgstr ""
4774
 
4775
- #: core/payment.php:380
4776
  msgid ""
4777
  "Due to Google Wallet limitations only monthly (30 days) recurring fees are supported by "
4778
  "the gateway. All other fees will be charged as non-recurring."
4779
  msgstr ""
4780
 
4781
- #: core/payment.php:413
4782
  msgctxt "payments-api"
4783
  msgid "Checkout"
4784
  msgstr ""
4785
 
4786
- #: core/payment.php:414
4787
  msgctxt "payments-api"
4788
  msgid "Pay %1$s through %2$s"
4789
  msgstr ""
4790
 
4791
- #: core/payment.php:421
4792
  msgctxt "payments-api"
4793
  msgid "Your transaction has been approved."
4794
  msgstr ""
4795
 
4796
- #: core/payment.php:602
4797
  msgctxt "payments"
4798
  msgid "Payment Details"
4799
  msgstr ""
4800
 
4801
- #: core/payment.php:629
4802
  msgctxt "checkout"
4803
  msgid "Payment Method"
4804
  msgstr ""
4805
 
4806
- #: core/payment.php:658
4807
  msgctxt "payment"
4808
  msgid "Return to Directory."
4809
  msgstr ""
4810
 
4811
- #: core/payment.php:664
4812
  msgctxt "payments"
4813
  msgid ""
4814
  "Your payment is being processed by the payment gateway. Please reload this page in a "
4815
  "moment to see if the status has changed or contact the site administrator."
4816
  msgstr ""
4817
 
4818
- #: core/payment.php:667
4819
  msgctxt "payments"
4820
  msgid ""
4821
  "The payment has been rejected by the payment gateway. Please contact the site "
@@ -4823,29 +4859,29 @@ msgid ""
4823
  "select another payment method and try again."
4824
  msgstr ""
4825
 
4826
- #: core/payment.php:668
4827
  msgctxt "payments"
4828
  msgid "Change Payment Method"
4829
  msgstr ""
4830
 
4831
- #: core/payment.php:670
4832
  msgctxt "payments"
4833
  msgid ""
4834
  "The payment has been rejected by the payment gateway. Please contact the site "
4835
  "administrator if you think there is an error."
4836
  msgstr ""
4837
 
4838
- #: core/payment.php:673
4839
  msgctxt "payments"
4840
  msgid "The payment has been canceled at your request."
4841
  msgstr ""
4842
 
4843
- #: core/payment.php:769
4844
  msgctxt "admin"
4845
  msgid "Pending Abandonment"
4846
  msgstr ""
4847
 
4848
- #: core/payment.php:774
4849
  msgctxt "admin"
4850
  msgid "Abandoned"
4851
  msgstr ""
@@ -5213,22 +5249,22 @@ msgctxt "templates"
5213
  msgid "I agree to the Terms and Conditions"
5214
  msgstr ""
5215
 
5216
- #: core/view-submit-listing.php:406
5217
  msgctxt "listings"
5218
  msgid "Fee \"%s\" for category \"%s\"%s"
5219
  msgstr ""
5220
 
5221
- #: core/view-submit-listing.php:409
5222
  msgctxt "listings"
5223
  msgid "(recurring)"
5224
  msgstr ""
5225
 
5226
- #: core/view-submit-listing.php:419 core/view-upgrade-listing.php:54
5227
  msgctxt "submit"
5228
  msgid "Listing upgrade to featured"
5229
  msgstr ""
5230
 
5231
- #: core/view-submit-listing.php:452
5232
  msgctxt "submit_state"
5233
  msgid "Invalid submit state."
5234
  msgstr ""
@@ -5248,27 +5284,27 @@ msgctxt "templates"
5248
  msgid "Return to listing."
5249
  msgstr ""
5250
 
5251
- #: core/views.php:30
5252
  msgid ""
5253
  "You need to create a page with the [businessdirectory] shortcode for the Business "
5254
  "Directory plugin to work correctly."
5255
  msgstr ""
5256
 
5257
- #: core/views.php:32
5258
  msgid "The directory is temporarily disabled."
5259
  msgstr ""
5260
 
5261
- #: core/views.php:190
5262
  msgctxt "preview"
5263
  msgid "This is just a preview. The listing has not been published yet."
5264
  msgstr ""
5265
 
5266
- #: core/views.php:342
5267
  msgctxt "templates"
5268
  msgid "Listings tagged: %s"
5269
  msgstr ""
5270
 
5271
- #: core/views.php:459
5272
  msgctxt "templates"
5273
  msgid ""
5274
  "There are no categories assigned to the business directory yet. You need to assign some "
@@ -5277,12 +5313,12 @@ msgid ""
5277
  "cannot be added until you assign categories to the business directory."
5278
  msgstr ""
5279
 
5280
- #: core/views.php:461
5281
  msgctxt "templates"
5282
  msgid "There are currently no listings in the directory."
5283
  msgstr ""
5284
 
5285
- #: core/views.php:479
5286
  msgctxt "templates"
5287
  msgid ""
5288
  "You have \"Hide Empty Categories\" on and some categories that don't have listings in "
@@ -5859,7 +5895,7 @@ msgstr ""
5859
 
5860
  #: templates/renew-listing.tpl.php:22 templates/submit-listing/category-selection.tpl.php:8
5861
  #: templates/submit-listing/fee-selection.tpl.php:37
5862
- #: templates/submit-listing/images.tpl.php:36
5863
  #: templates/submit-listing/listing-fields.tpl.php:34
5864
  msgctxt "templates"
5865
  msgid "Continue"
@@ -5955,12 +5991,12 @@ msgctxt "submit"
5955
  msgid "Would you like to make your fee renew automatically at the end of the period?"
5956
  msgstr ""
5957
 
5958
- #: templates/submit-listing/images-single.tpl.php:9
5959
  msgctxt "templates"
5960
  msgid "Delete Image"
5961
  msgstr ""
5962
 
5963
- #: templates/submit-listing/images-single.tpl.php:16
5964
  msgctxt "templates"
5965
  msgid "Set this image as the listing thumbnail."
5966
  msgstr ""
3
  #, fuzzy
4
  msgid ""
5
  msgstr ""
6
+ "Project-Id-Version: Business Directory Plugin 3.6.11\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
8
+ "POT-Creation-Date: 2015-12-14 16:55-0500\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Generator: Poedit 1.8.5\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
 
18
+ #: admin/class-admin-listings.php:36
19
+ msgctxt "admin category filter"
20
+ msgid "All categories"
21
+ msgstr ""
22
+
23
+ #: admin/class-admin-listings.php:68
24
  msgid "Listing Information"
25
  msgstr ""
26
 
27
+ #: admin/class-admin-listings.php:75
28
  msgctxt "admin"
29
  msgid "Listing Fields / Images"
30
  msgstr ""
31
 
32
+ #: admin/class-admin-listings.php:86
33
  msgctxt "admin"
34
  msgid "Categories"
35
  msgstr ""
36
 
37
+ #: admin/class-admin-listings.php:87
38
  msgid "Payment Status"
39
  msgstr ""
40
 
41
+ #: admin/class-admin-listings.php:88
42
  msgid "Featured (Sticky) Status"
43
  msgstr ""
44
 
45
+ #: admin/class-admin-listings.php:119
46
  msgctxt "admin"
47
  msgid "(Listing expired in this category)"
48
  msgstr ""
49
 
50
+ #: admin/class-admin-listings.php:137 admin/class-admin-listings.php:220
51
  msgid "Paid"
52
  msgstr ""
53
 
54
+ #: admin/class-admin-listings.php:142
55
  msgid "Mark as"
56
  msgstr ""
57
 
58
+ #: admin/class-admin-listings.php:151 admin/class-admin-listings.php:230
59
  msgid "Pending Upgrade"
60
  msgstr ""
61
 
62
+ #: admin/class-admin-listings.php:159 admin/listing-metabox.php:68
63
  msgid "Upgrade to %s"
64
  msgstr ""
65
 
66
+ #: admin/class-admin-listings.php:166 admin/listing-metabox.php:75
67
  msgid "Downgrade to %s"
68
  msgstr ""
69
 
70
+ #: admin/class-admin-listings.php:169 admin/class-admin-listings.php:349
71
  msgctxt "admin actions"
72
  msgid "Upgrade to Featured"
73
  msgstr ""
74
 
75
+ #: admin/class-admin-listings.php:225
76
  msgid "Unpaid"
77
  msgstr ""
78
 
79
+ #: admin/class-admin-listings.php:235
80
  msgctxt "admin"
81
  msgid "Expired"
82
  msgstr ""
83
 
84
+ #: admin/class-admin-listings.php:285
85
  msgctxt "admin actions"
86
  msgid "Edit Listing"
87
  msgstr ""
88
 
89
+ #: admin/class-admin-listings.php:288
90
  msgctxt "admin actions"
91
  msgid "Delete Listing"
92
  msgstr ""
93
 
94
+ #: admin/class-admin-listings.php:347
95
  msgctxt "admin actions"
96
  msgid "Publish Listing"
97
  msgstr ""
98
 
99
+ #: admin/class-admin-listings.php:350
100
  msgctxt "admin actions"
101
  msgid "Downgrade to Normal"
102
  msgstr ""
103
 
104
+ #: admin/class-admin-listings.php:352
105
  msgctxt "admin actions"
106
  msgid "Mark as Paid"
107
  msgstr ""
108
 
109
+ #: admin/class-admin-listings.php:354
110
  msgctxt "admin actions"
111
  msgid "Renew Listing"
112
  msgstr ""
1241
  msgid "Warning"
1242
  msgstr ""
1243
 
1244
+ #: admin/templates/csv-import.tpl.php:12 admin/templates/csv-import.tpl.php:227
1245
  msgctxt "admin csv-import"
1246
  msgid "Help"
1247
  msgstr ""
1335
 
1336
  #: admin/templates/csv-import.tpl.php:171
1337
  msgctxt "admin csv-import"
1338
+ msgid "Keep existing listing images?"
1339
+ msgstr ""
1340
+
1341
+ #: admin/templates/csv-import.tpl.php:176
1342
+ msgctxt "admin csv-import"
1343
+ msgid "Keep existing images."
1344
  msgstr ""
1345
 
1346
  #: admin/templates/csv-import.tpl.php:177
1347
  msgctxt "admin csv-import"
1348
+ msgid "Appends new images while keeping current ones."
1349
  msgstr ""
1350
 
1351
  #: admin/templates/csv-import.tpl.php:182
1352
  msgctxt "admin csv-import"
1353
+ msgid "Assign listings to a user?"
1354
+ msgstr ""
1355
+
1356
+ #: admin/templates/csv-import.tpl.php:188
1357
+ msgctxt "admin csv-import"
1358
+ msgid "Assign listings to a user."
1359
+ msgstr ""
1360
+
1361
+ #: admin/templates/csv-import.tpl.php:193
1362
+ msgctxt "admin csv-import"
1363
  msgid "Default listing user"
1364
  msgstr ""
1365
 
1366
+ #: admin/templates/csv-import.tpl.php:198
1367
  msgctxt "admin csv-import"
1368
  msgid "Use spreadsheet information only."
1369
  msgstr ""
1370
 
1371
+ #: admin/templates/csv-import.tpl.php:204
1372
  msgctxt "admin csv-import"
1373
  msgid "This user will be used if the username column is not present in the CSV file."
1374
  msgstr ""
1375
 
1376
+ #: admin/templates/csv-import.tpl.php:209
1377
  msgctxt "admin csv-import"
1378
  msgid "Disable e-mail notifications during import?"
1379
  msgstr ""
1380
 
1381
+ #: admin/templates/csv-import.tpl.php:214
1382
  msgctxt "admin csv-import"
1383
  msgid "Disable e-mail notifications."
1384
  msgstr ""
1385
 
1386
+ #: admin/templates/csv-import.tpl.php:220
1387
  msgctxt "admin csv-import"
1388
  msgid "Test Import"
1389
  msgstr ""
1390
 
1391
+ #: admin/templates/csv-import.tpl.php:221
1392
  msgctxt "admin csv-import"
1393
  msgid "Import Listings"
1394
  msgstr ""
1395
 
1396
+ #: admin/templates/csv-import.tpl.php:229
1397
  msgctxt "admin csv-import"
1398
  msgid ""
1399
  "The following are the valid header names to be used in the CSV file. Multivalued fields "
1401
  "\"See an example CSV import file\"</a> to see how an import file should look like."
1402
  msgstr ""
1403
 
1404
+ #: admin/templates/csv-import.tpl.php:236
1405
  msgctxt "admin csv-import"
1406
  msgid "Header name/label"
1407
  msgstr ""
1408
 
1409
+ #: admin/templates/csv-import.tpl.php:237
1410
  msgctxt "admin csv-import"
1411
  msgid "Field"
1412
  msgstr ""
1413
 
1414
+ #: admin/templates/csv-import.tpl.php:238
1415
  msgctxt "admin csv-import"
1416
  msgid "Type"
1417
  msgstr ""
1418
 
1419
+ #: admin/templates/csv-import.tpl.php:239
1420
  msgctxt "admin csv-import"
1421
  msgid "Required?"
1422
  msgstr ""
1423
 
1424
+ #: admin/templates/csv-import.tpl.php:240
1425
  msgctxt "admin csv-import"
1426
  msgid "Multivalued?"
1427
  msgstr ""
1428
 
1429
+ #: admin/templates/csv-import.tpl.php:262
1430
  msgctxt "admin csv-import"
1431
  msgid "Semicolon separated list of listing images (from the ZIP file)"
1432
  msgstr ""
1433
 
1434
+ #: admin/templates/csv-import.tpl.php:269
1435
  msgctxt "admin csv-import"
1436
  msgid "Listing author's username"
1437
  msgstr ""
1438
 
1439
+ #: admin/templates/csv-import.tpl.php:276
1440
  msgctxt "admin csv-import"
1441
  msgid "Internal Sequence ID used to allow listing updates from external sources."
1442
  msgstr ""
1443
 
1444
+ #: admin/templates/csv-import.tpl.php:283
1445
  msgctxt "admin csv-import"
1446
  msgid ""
1447
  "Date of listing expiration formatted as YYYY-MM-DD. Use this column when adding or "
2484
  msgid "Listings tagged: %s"
2485
  msgstr ""
2486
 
2487
+ #: core/class-csv-import.php:375
2488
  msgctxt "admin csv-import"
2489
  msgid "Could not create listing category \"%s\""
2490
  msgstr ""
2491
 
2492
+ #: core/class-csv-import.php:519
2493
  msgctxt "admin csv-import"
2494
  msgid "Username \"%s\" does not exist"
2495
  msgstr ""
2496
 
2497
+ #: core/class-csv-import.php:551
2498
  msgctxt "admin csv-import"
2499
  msgid "Missing required field: %s"
2500
  msgstr ""
2501
 
2502
+ #: core/class-csv-import.php:571
2503
  msgctxt "admin csv-import"
2504
  msgid "Listing category \"%s\" does not exist"
2505
  msgstr ""
2590
  msgid "Featured Listing"
2591
  msgstr ""
2592
 
2593
+ #: core/class-listing.php:319 core/class-listing.php:345
2594
  msgctxt "listing"
2595
  msgid "(Fee Unavailable)"
2596
  msgstr ""
2650
  msgid "Fee \"%s\" for category \"%s\""
2651
  msgstr ""
2652
 
2653
+ #: core/class-recaptcha.php:90 core/class-recaptcha.php:105
2654
  msgctxt "recaptcha"
2655
  msgid "The reCAPTCHA wasn't entered correctly."
2656
  msgstr ""
4167
  msgid "Textarea"
4168
  msgstr ""
4169
 
4170
+ #: core/fieldtypes/class-fieldtypes-textarea.php:50
4171
  msgctxt "form-fields admin"
4172
  msgid "Allow HTML input for this field?"
4173
  msgstr ""
4174
 
4175
+ #: core/fieldtypes/class-fieldtypes-textarea.php:54
4176
  msgctxt "form-fields admin"
4177
  msgid "Allow WordPress shortcodes in this field?"
4178
  msgstr ""
4179
 
4180
+ #: core/fieldtypes/class-fieldtypes-textarea.php:57
4181
+ msgctxt "form-fields admin"
4182
+ msgid "Display a WYSIWYG editor on the frontend?"
4183
+ msgstr ""
4184
+
4185
+ #: core/fieldtypes/class-fieldtypes-textarea.php:60
4186
+ msgctxt "form-fields admin"
4187
+ msgid ""
4188
+ "<b>Warning:</b> Users can use this feature to get around your image limits in fee plans."
4189
+ msgstr ""
4190
+
4191
+ #: core/fieldtypes/class-fieldtypes-textarea.php:61
4192
+ msgctxt "form-fields admin"
4193
+ msgid "Allow images in WYSIWYG editor?"
4194
+ msgstr ""
4195
+
4196
+ #: core/fieldtypes/class-fieldtypes-textarea.php:64
4197
  msgctxt "form-fields admin"
4198
  msgid ""
4199
  "<b>Advanced users only!</b> Unless you've been told to change this, don't switch it "
4200
  "unless you know what you're doing."
4201
  msgstr ""
4202
 
4203
+ #: core/fieldtypes/class-fieldtypes-textarea.php:65
4204
  msgctxt "form-fields admin"
4205
  msgid "Apply \"the_content\" filter before displaying this field?"
4206
  msgstr ""
4580
  msgid "General"
4581
  msgstr ""
4582
 
4583
+ #: core/installer.php:469
4584
  msgctxt "installer"
4585
  msgid ""
4586
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
4588
  "module."
4589
  msgstr ""
4590
 
4591
+ #: core/installer.php:535
4592
  msgctxt "installer"
4593
  msgid "Cleaning up listing fees information... %d/%d"
4594
  msgstr ""
4595
 
4596
+ #: core/installer.php:585
4597
  msgctxt "installer"
4598
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4599
  msgstr ""
4600
 
4601
+ #: core/installer.php:614
4602
  msgctxt "installer"
4603
  msgid "Initial listing payment (BD < 3.4)"
4604
  msgstr ""
4605
 
4606
+ #: core/installer.php:625
4607
  msgctxt "installer"
4608
  msgid "Listing edit payment (BD < 3.4)"
4609
  msgstr ""
4610
 
4611
+ #: core/installer.php:646
4612
  msgctxt "installer"
4613
  msgid "Renewal fee \"%s\" for category \"%s\""
4614
  msgstr ""
4615
 
4616
+ #: core/installer.php:665
4617
  msgctxt "installer"
4618
  msgid "Listing upgrade to featured"
4619
  msgstr ""
4620
 
4621
+ #: core/installer.php:907
4622
  msgid "Business Directory - Manual Upgrade Required"
4623
  msgstr ""
4624
 
4625
+ #: core/installer.php:909
4626
  msgid ""
4627
  "Business Directory features are currently disabled because the plugin needs to perform a "
4628
  "manual upgrade before continuing."
4629
  msgstr ""
4630
 
4631
+ #: core/installer.php:911
4632
  msgid "Perform Manual Upgrade"
4633
  msgstr ""
4634
 
4635
+ #: core/installer.php:927 core/installer.php:928 core/installer.php:939
4636
  msgid "Business Directory - Manual Upgrade"
4637
  msgstr ""
4638
 
4639
+ #: core/installer.php:943
4640
  msgid ""
4641
  "Business Directory features are currently disabled because the plugin needs to perform a "
4642
  "manual upgrade before it can be used."
4643
  msgstr ""
4644
 
4645
+ #: core/installer.php:945
4646
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4647
  msgstr ""
4648
 
4649
+ #: core/installer.php:948
4650
  msgctxt "manual-upgrade"
4651
  msgid "Start Upgrade"
4652
  msgstr ""
4653
 
4654
+ #: core/installer.php:950
4655
  msgctxt "manual-upgrade"
4656
  msgid "Pause Upgrade"
4657
  msgstr ""
4658
 
4659
+ #: core/installer.php:956
4660
  msgctxt "manual-upgrade"
4661
  msgid "The upgrade was sucessfully performed. Business Directory Plugin is now available."
4662
  msgstr ""
4663
 
4664
+ #: core/installer.php:959
4665
  msgctxt "manual-upgrade"
4666
  msgid "Go to \"Directory Admin\""
4667
  msgstr ""
4741
  msgid "Free Listing"
4742
  msgstr ""
4743
 
4744
+ #: core/payment.php:145
4745
  msgctxt "fees-api"
4746
  msgid "Fee label is required."
4747
  msgstr ""
4748
 
4749
+ #: core/payment.php:148
4750
  msgctxt "fees-api"
4751
  msgid "Fee amount must be a non-negative decimal number."
4752
  msgstr ""
4753
 
4754
+ #: core/payment.php:151 core/payment.php:154
4755
  msgctxt "fees-api"
4756
  msgid "Fee must apply to at least one category."
4757
  msgstr ""
4758
 
4759
+ #: core/payment.php:157
4760
  msgctxt "fees-api"
4761
  msgid "Fee allowed images must be a non-negative integer."
4762
  msgstr ""
4763
 
4764
+ #: core/payment.php:160
4765
  msgctxt "fees-api"
4766
  msgid "Fee listing run must be a non-negative integer."
4767
  msgstr ""
4768
 
4769
+ #: core/payment.php:165
4770
  msgctxt "fees-api"
4771
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
4772
  msgstr ""
4773
 
4774
+ #: core/payment.php:340
4775
  msgctxt "payments-api"
4776
  msgid ""
4777
  "You are offering featured listings but have payments turned off. Go to <a href=\"%s"
4779
  "the <i>Upgrade to Featured</i> option will be disabled."
4780
  msgstr ""
4781
 
4782
+ #: core/payment.php:358
4783
  msgctxt "payments-api"
4784
  msgid ""
4785
  "The <b>%s</b> gateway is active but not properly configured. The gateway won't be "
4787
  "\">payment settings</a>."
4788
  msgstr ""
4789
 
4790
+ #: core/payment.php:368
4791
  msgctxt "admin"
4792
  msgid ""
4793
  "You have payments turned on but no gateway is active and properly configured. Go to <a "
4795
  "change this, the directory will operate in <i>Free Mode</i>."
4796
  msgstr ""
4797
 
4798
+ #: core/payment.php:372
4799
  msgid ""
4800
  "BD detected PayFast and another gateway were enabled. This setup is not recommended due "
4801
  "to PayFast supporting only ZAR and the other gateways not supporting this currency."
4802
  msgstr ""
4803
 
4804
+ #: core/payment.php:376
4805
  msgid ""
4806
  "You have recurring renewal of listing fees enabled but the payment gateways installed "
4807
  "don't support recurring payments. Until a gateway that supports recurring payments (such "
4808
  "as PayPal) is enabled automatic renewals will be disabled."
4809
  msgstr ""
4810
 
4811
+ #: core/payment.php:381
4812
  msgid ""
4813
  "Due to Google Wallet limitations only monthly (30 days) recurring fees are supported by "
4814
  "the gateway. All other fees will be charged as non-recurring."
4815
  msgstr ""
4816
 
4817
+ #: core/payment.php:414
4818
  msgctxt "payments-api"
4819
  msgid "Checkout"
4820
  msgstr ""
4821
 
4822
+ #: core/payment.php:415
4823
  msgctxt "payments-api"
4824
  msgid "Pay %1$s through %2$s"
4825
  msgstr ""
4826
 
4827
+ #: core/payment.php:422
4828
  msgctxt "payments-api"
4829
  msgid "Your transaction has been approved."
4830
  msgstr ""
4831
 
4832
+ #: core/payment.php:603
4833
  msgctxt "payments"
4834
  msgid "Payment Details"
4835
  msgstr ""
4836
 
4837
+ #: core/payment.php:630
4838
  msgctxt "checkout"
4839
  msgid "Payment Method"
4840
  msgstr ""
4841
 
4842
+ #: core/payment.php:659
4843
  msgctxt "payment"
4844
  msgid "Return to Directory."
4845
  msgstr ""
4846
 
4847
+ #: core/payment.php:665
4848
  msgctxt "payments"
4849
  msgid ""
4850
  "Your payment is being processed by the payment gateway. Please reload this page in a "
4851
  "moment to see if the status has changed or contact the site administrator."
4852
  msgstr ""
4853
 
4854
+ #: core/payment.php:668
4855
  msgctxt "payments"
4856
  msgid ""
4857
  "The payment has been rejected by the payment gateway. Please contact the site "
4859
  "select another payment method and try again."
4860
  msgstr ""
4861
 
4862
+ #: core/payment.php:669
4863
  msgctxt "payments"
4864
  msgid "Change Payment Method"
4865
  msgstr ""
4866
 
4867
+ #: core/payment.php:671
4868
  msgctxt "payments"
4869
  msgid ""
4870
  "The payment has been rejected by the payment gateway. Please contact the site "
4871
  "administrator if you think there is an error."
4872
  msgstr ""
4873
 
4874
+ #: core/payment.php:674
4875
  msgctxt "payments"
4876
  msgid "The payment has been canceled at your request."
4877
  msgstr ""
4878
 
4879
+ #: core/payment.php:770
4880
  msgctxt "admin"
4881
  msgid "Pending Abandonment"
4882
  msgstr ""
4883
 
4884
+ #: core/payment.php:775
4885
  msgctxt "admin"
4886
  msgid "Abandoned"
4887
  msgstr ""
5249
  msgid "I agree to the Terms and Conditions"
5250
  msgstr ""
5251
 
5252
+ #: core/view-submit-listing.php:443
5253
  msgctxt "listings"
5254
  msgid "Fee \"%s\" for category \"%s\"%s"
5255
  msgstr ""
5256
 
5257
+ #: core/view-submit-listing.php:446
5258
  msgctxt "listings"
5259
  msgid "(recurring)"
5260
  msgstr ""
5261
 
5262
+ #: core/view-submit-listing.php:456 core/view-upgrade-listing.php:54
5263
  msgctxt "submit"
5264
  msgid "Listing upgrade to featured"
5265
  msgstr ""
5266
 
5267
+ #: core/view-submit-listing.php:489
5268
  msgctxt "submit_state"
5269
  msgid "Invalid submit state."
5270
  msgstr ""
5284
  msgid "Return to listing."
5285
  msgstr ""
5286
 
5287
+ #: core/views.php:32
5288
  msgid ""
5289
  "You need to create a page with the [businessdirectory] shortcode for the Business "
5290
  "Directory plugin to work correctly."
5291
  msgstr ""
5292
 
5293
+ #: core/views.php:34
5294
  msgid "The directory is temporarily disabled."
5295
  msgstr ""
5296
 
5297
+ #: core/views.php:203
5298
  msgctxt "preview"
5299
  msgid "This is just a preview. The listing has not been published yet."
5300
  msgstr ""
5301
 
5302
+ #: core/views.php:355
5303
  msgctxt "templates"
5304
  msgid "Listings tagged: %s"
5305
  msgstr ""
5306
 
5307
+ #: core/views.php:472
5308
  msgctxt "templates"
5309
  msgid ""
5310
  "There are no categories assigned to the business directory yet. You need to assign some "
5313
  "cannot be added until you assign categories to the business directory."
5314
  msgstr ""
5315
 
5316
+ #: core/views.php:474
5317
  msgctxt "templates"
5318
  msgid "There are currently no listings in the directory."
5319
  msgstr ""
5320
 
5321
+ #: core/views.php:492
5322
  msgctxt "templates"
5323
  msgid ""
5324
  "You have \"Hide Empty Categories\" on and some categories that don't have listings in "
5895
 
5896
  #: templates/renew-listing.tpl.php:22 templates/submit-listing/category-selection.tpl.php:8
5897
  #: templates/submit-listing/fee-selection.tpl.php:37
5898
+ #: templates/submit-listing/images.tpl.php:38
5899
  #: templates/submit-listing/listing-fields.tpl.php:34
5900
  msgctxt "templates"
5901
  msgid "Continue"
5991
  msgid "Would you like to make your fee renew automatically at the end of the period?"
5992
  msgstr ""
5993
 
5994
+ #: templates/submit-listing/images-single.tpl.php:18
5995
  msgctxt "templates"
5996
  msgid "Delete Image"
5997
  msgstr ""
5998
 
5999
+ #: templates/submit-listing/images-single.tpl.php:24
6000
  msgctxt "templates"
6001
  msgid "Set this image as the listing thumbnail."
6002
  msgstr ""
templates/submit-listing/images-single.tpl.php CHANGED
@@ -1,8 +1,17 @@
1
  <?php
2
  $is_thumbnail = isset( $is_thumbnail ) ? $is_thumbnail : false;
 
 
 
 
 
 
3
  ?>
4
 
5
  <div class="wpbdp-image" data-imageid="<?php echo $image_id; ?>">
 
 
 
6
  <img src="<?php echo wp_get_attachment_thumb_url( $image_id ); ?>" /><br />
7
  <input type="button"
8
  class="wpbdp-button button delete-image"
@@ -10,7 +19,6 @@ $is_thumbnail = isset( $is_thumbnail ) ? $is_thumbnail : false;
10
  data-action="<?php echo esc_url( add_query_arg( array( 'action' => 'wpbdp-listing-submit-image-delete',
11
  'state_id' => isset( $state_id ) ? $state_id : '',
12
  'image_id' => $image_id ), admin_url( 'admin-ajax.php' ) ) ); ?>" /> <br />
13
-
14
  <label>
15
  <input type="radio" name="thumbnail_id" value="<?php echo $image_id; ?>" <?php echo $is_thumbnail ? 'checked="checked"' : ''; ?> />
16
  <?php _ex('Set this image as the listing thumbnail.', 'templates', 'WPBDM'); ?>
1
  <?php
2
  $is_thumbnail = isset( $is_thumbnail ) ? $is_thumbnail : false;
3
+
4
+ if ( isset( $image ) ) {
5
+ $image_id = $image->id;
6
+ $weight = $image->weight;
7
+ $caption = $image->caption;
8
+ }
9
  ?>
10
 
11
  <div class="wpbdp-image" data-imageid="<?php echo $image_id; ?>">
12
+ <input type="hidden" name="images_meta[<?php echo $image_id; ?>][order]" value="<?php echo ( isset( $weight ) ? $weight : 0 ); ?>" />
13
+ <input type="hidden" name="images_meta[<?php echo $image_id; ?>][caption]" value="<?php echo ( isset( $caption ) ? esc_attr( $caption ) : '' ); ?>" />
14
+
15
  <img src="<?php echo wp_get_attachment_thumb_url( $image_id ); ?>" /><br />
16
  <input type="button"
17
  class="wpbdp-button button delete-image"
19
  data-action="<?php echo esc_url( add_query_arg( array( 'action' => 'wpbdp-listing-submit-image-delete',
20
  'state_id' => isset( $state_id ) ? $state_id : '',
21
  'image_id' => $image_id ), admin_url( 'admin-ajax.php' ) ) ); ?>" /> <br />
 
22
  <label>
23
  <input type="radio" name="thumbnail_id" value="<?php echo $image_id; ?>" <?php echo $is_thumbnail ? 'checked="checked"' : ''; ?> />
24
  <?php _ex('Set this image as the listing thumbnail.', 'templates', 'WPBDM'); ?>
templates/submit-listing/images.tpl.php CHANGED
@@ -17,6 +17,8 @@ $thumbnail_id = ! isset( $thumbnail_id ) ? 0 : intval( $thumbnail_id );
17
  echo wpbdp_render( 'submit-listing/images-single',
18
  array( 'image_id' => $image_id,
19
  'is_thumbnail' => ( 1 == count( $images ) || $thumbnail_id == $image_id ),
 
 
20
  'state_id' => $_state->id ),
21
  false );
22
  endforeach;
17
  echo wpbdp_render( 'submit-listing/images-single',
18
  array( 'image_id' => $image_id,
19
  'is_thumbnail' => ( 1 == count( $images ) || $thumbnail_id == $image_id ),
20
+ 'weight' => $images_meta[ $image_id ]['order'],
21
+ 'caption' => $images_meta[ $image_id ]['caption'],
22
  'state_id' => $_state->id ),
23
  false );
24
  endforeach;