Business Directory Plugin - Version 3.7.4

Version Description

Download this release

Release Info

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

Code changes from version 3.7.3 to 3.7.4

README.TXT CHANGED
@@ -4,8 +4,8 @@ Donate link: http://businessdirectoryplugin.com/premium-modules/
4
  Tags: business directory,directory,wordpress directory,wordpress directory plugin,directory plugin,business directory plugin, wordpress directory theme,wordpress business directory,wordpress local directory,classified ads,classifieds,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.2
7
- Last Updated: 2016-Feb-5
8
- Stable tag: tags/3.7.3
9
  License: GPLv2 or later
10
 
11
  Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory and much more!
@@ -116,6 +116,15 @@ If you are having problems please visit [support forum](http://www.businessdirec
116
 
117
 
118
  == Changelog ==
 
 
 
 
 
 
 
 
 
119
  = Version 3.7.3 =
120
  * Make category-specific fees work again.
121
  * Improve the handling of deleted categories.
4
  Tags: business directory,directory,wordpress directory,wordpress directory plugin,directory plugin,business directory plugin, wordpress directory theme,wordpress business directory,wordpress local directory,classified ads,classifieds,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.2
7
+ Last Updated: 2016-Feb-24
8
+ Stable tag: tags/3.7.4
9
  License: GPLv2 or later
10
 
11
  Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory and much more!
116
 
117
 
118
  == Changelog ==
119
+
120
+ = Version 3.7.4 =
121
+ * Show WPML translations of form field labels in validation errors.
122
+ * Improve handling of line breaks in textarea fields.
123
+ * Fix handling of permalink URLs with cyrillic characters.
124
+ * Support "author" attribute in listings shortcode.
125
+ * Make CSV export encode line breaks in a way that is compatible with CSV import.
126
+ * Fix PHP warning on backend.
127
+
128
  = Version 3.7.3 =
129
  * Make category-specific fees work again.
130
  * Improve the handling of deleted categories.
admin/class-admin-listings.php CHANGED
@@ -288,10 +288,9 @@ class WPBDP_Admin_Listings {
288
  }
289
 
290
  function listings_admin_filters( $pieces ) {
291
- global $current_screen;
292
  global $wpdb;
293
 
294
- if ( ! is_admin() || ! isset( $_REQUEST['wpbdmfilter'] ) || 'edit-' . WPBDP_POST_TYPE != $current_screen->id )
295
  return $pieces;
296
 
297
  switch ( $_REQUEST['wpbdmfilter'] ) {
@@ -305,7 +304,7 @@ class WPBDP_Admin_Listings {
305
  $pieces['where'] = $wpdb->prepare( " AND pm.meta_key = %s AND pm.meta_value = %s ", '_wpbdp[sticky]', 'pending' );
306
  break;
307
  case 'paid':
308
- $pieces['where'] .= $wpdb->prepare( " AND NOT EXISTS ( SELECT 1 FROM {$wpdb->prefix}wpbdp_payments WHERE {$wpdb->posts}.ID = {$wpdb->prefix}wpbdp_payments.listing_id AND ( {$wpdb->prefix}wpbdp_payments.status IS NULL OR {$wpdb->prefix}wpbdp_payments.status != %s ) )", 'pending' );
309
  break;
310
  case 'unpaid':
311
  $pieces['join'] .= " LEFT JOIN {$wpdb->prefix}wpbdp_payments ON {$wpdb->posts}.ID = {$wpdb->prefix}wpbdp_payments.listing_id ";
288
  }
289
 
290
  function listings_admin_filters( $pieces ) {
 
291
  global $wpdb;
292
 
293
+ if ( ! is_admin() || ! isset( $_REQUEST['wpbdmfilter'] ) || ! function_exists( 'get_current_screen' ) || ! get_current_screen() || 'edit-' . WPBDP_POST_TYPE != get_current_screen()->id )
294
  return $pieces;
295
 
296
  switch ( $_REQUEST['wpbdmfilter'] ) {
304
  $pieces['where'] = $wpdb->prepare( " AND pm.meta_key = %s AND pm.meta_value = %s ", '_wpbdp[sticky]', 'pending' );
305
  break;
306
  case 'paid':
307
+ $pieces['where'] .= $wpdb->prepare( " AND NOT EXISTS ( SELECT 1 FROM {$wpdb->prefix}wpbdp_payments WHERE {$wpdb->posts}.ID = {$wpdb->prefix}wpbdp_payments.listing_id AND ( {$wpdb->prefix}wpbdp_payments.status IS NULL OR {$wpdb->prefix}wpbdp_payments.status != %s ) )", 'completed' );
308
  break;
309
  case 'unpaid':
310
  $pieces['join'] .= " LEFT JOIN {$wpdb->prefix}wpbdp_payments ON {$wpdb->posts}.ID = {$wpdb->prefix}wpbdp_payments.listing_id ";
admin/class-themes-admin.php CHANGED
@@ -115,7 +115,7 @@ class WPBDP_Themes_Admin {
115
  global $wpbdp;
116
  $wpbdp->formfields->create_default_fields( $missing );
117
 
118
- wp_safe_redirect( admin_url( 'admin.php?page=wpbdp-themes&message=2' ) );
119
  exit;
120
  }
121
 
@@ -147,17 +147,16 @@ class WPBDP_Themes_Admin {
147
  wpbdp_admin_message( sprintf( _x( 'Active theme changed to "%s".', 'themes', 'WPBDM' ), $this->api->get_active_theme() ) );
148
 
149
  if ( $missing_fields = $this->api->missing_suggested_fields( 'label' ) ) {
150
- $msg = sprintf( _x( 'For better results, "%s" theme suggests the following form fields to be created.', 'themes', 'WPBDM' ), $this->api->get_active_theme() );
151
  $msg .= '<br />';
152
 
153
  foreach ( $missing_fields as $mf )
154
  $msg .= '<span class="tag">' . $mf . '</span>';
155
 
156
  $msg .= '<br /><br />';
157
- $msg .= sprintf( '<a href="#" class="button button-secondary" id="dismiss-suggested-fields-warning">%s</a>', _x( 'Dismiss this warning', 'themes', 'WPBDM' ) );
158
- $msg .= sprintf( '<a href="%s" class="button button-primary next-to-secondary">%s</a>',
159
- wp_nonce_url( admin_url( 'admin.php?page=wpbdp-themes&wpbdp-action=create-theme-suggested-fields' ), 'create_suggested_fields' ),
160
- _x( 'Create suggested fields', 'themes', 'WPBDM' ) );
161
 
162
  wpbdp_admin_message( $msg, 'error' );
163
  }
115
  global $wpbdp;
116
  $wpbdp->formfields->create_default_fields( $missing );
117
 
118
+ wp_safe_redirect( admin_url( 'admin.php?page=wpbdp_admin_formfields&action=updatetags' ) );
119
  exit;
120
  }
121
 
147
  wpbdp_admin_message( sprintf( _x( 'Active theme changed to "%s".', 'themes', 'WPBDM' ), $this->api->get_active_theme() ) );
148
 
149
  if ( $missing_fields = $this->api->missing_suggested_fields( 'label' ) ) {
150
+ $msg = sprintf( _x( '%s requires that you tag your existing fields to match some places we want to put your data on the theme. Below are fields we think are missing.', 'themes', 'WPBDM' ), $this->api->get_active_theme() );
151
  $msg .= '<br />';
152
 
153
  foreach ( $missing_fields as $mf )
154
  $msg .= '<span class="tag">' . $mf . '</span>';
155
 
156
  $msg .= '<br /><br />';
157
+ $msg .= sprintf( '<a href="%s" class="button button-primary">%s</a>',
158
+ admin_url( 'admin.php?page=wpbdp_admin_formfields&action=updatetags' ),
159
+ _x( 'Map My Fields', 'themes', 'WPBDM' ) );
 
160
 
161
  wpbdp_admin_message( $msg, 'error' );
162
  }
admin/form-fields.php CHANGED
@@ -282,6 +282,8 @@ class WPBDP_FormFieldsAdmin {
282
  }
283
 
284
  private function update_field_tags() {
 
 
285
  $special_tags = array(
286
  'title' => _x( 'Title', 'form-fields admin', 'WPBDM' ),
287
  'category' => _x( 'Category', 'form-fields admin', 'WPBDM' ),
@@ -318,6 +320,8 @@ class WPBDP_FormFieldsAdmin {
318
  wpbdp_admin_message( _x( 'Tags updated.', 'form-fields admin', 'WPBDM' ) );
319
  }
320
 
 
 
321
  foreach ( $special_tags as $t => $td ) {
322
  $f = WPBDP_Form_Field::find_by_tag( $t );
323
 
@@ -328,7 +332,7 @@ class WPBDP_FormFieldsAdmin {
328
  }
329
 
330
  echo wpbdp_render_page( WPBDP_PATH . 'admin/templates/form-fields-tags.tpl.php',
331
- array( 'field_tags' => $field_tags ) );
332
  }
333
 
334
  }
282
  }
283
 
284
  private function update_field_tags() {
285
+ global $wpbdp;
286
+
287
  $special_tags = array(
288
  'title' => _x( 'Title', 'form-fields admin', 'WPBDM' ),
289
  'category' => _x( 'Category', 'form-fields admin', 'WPBDM' ),
320
  wpbdp_admin_message( _x( 'Tags updated.', 'form-fields admin', 'WPBDM' ) );
321
  }
322
 
323
+ $missing_fields = $wpbdp->themes->missing_suggested_fields( 'label' );
324
+
325
  foreach ( $special_tags as $t => $td ) {
326
  $f = WPBDP_Form_Field::find_by_tag( $t );
327
 
332
  }
333
 
334
  echo wpbdp_render_page( WPBDP_PATH . 'admin/templates/form-fields-tags.tpl.php',
335
+ array( 'field_tags' => $field_tags, 'missing_fields' => $missing_fields ) );
336
  }
337
 
338
  }
admin/js/themes.js CHANGED
@@ -1,9 +1,4 @@
1
  jQuery(function($) {
2
- $( '#wpbdp-admin-page-themes #dismiss-suggested-fields-warning' ).click( function( e ) {
3
- e.preventDefault();
4
- $( this ).parents( 'div.error' ).fadeOut( 'fast' );
5
- } );
6
-
7
  $( '#wpbdp-admin-page-themes-install #begin-theme-upload' ).attr( 'disabled', 'disabled' );
8
  $( '#wpbdp-admin-page-themes-install input[name="themezip"]' ).change( function( e ) {
9
  var v = $( this ).val();
1
  jQuery(function($) {
 
 
 
 
 
2
  $( '#wpbdp-admin-page-themes-install #begin-theme-upload' ).attr( 'disabled', 'disabled' );
3
  $( '#wpbdp-admin-page-themes-install input[name="themezip"]' ).change( function( e ) {
4
  var v = $( this ).val();
admin/js/themes.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(function($){$("#wpbdp-admin-page-themes #dismiss-suggested-fields-warning").click(function(e){e.preventDefault();$(this).parents("div.error").fadeOut("fast")});$("#wpbdp-admin-page-themes-install #begin-theme-upload").attr("disabled","disabled");$('#wpbdp-admin-page-themes-install input[name="themezip"]').change(function(e){var v=$(this).val();if(v){$("#wpbdp-admin-page-themes-install #begin-theme-upload").removeAttr("disabled")}});$('#wpbdp-admin-page-themes .license-activation input[type="button"]').click(function(){var activate=$(this).is('[name="activate"]');var $form=$(this).parents(".license-activation");var $license=$('input[name="license"]',$form);var $msg=$(".status-message",$form);var data={nonce:$(this).attr("data-nonce"),theme:$(this).attr("data-theme")};if(activate){data.action="wpbdp-themes-activate-license";data.license=$license.val()}else{data.action="wpbdp-themes-deactivate-license"}$msg.removeClass("ok error");$msg.html($(this).attr("data-l10n"));$.post(ajaxurl,data,function(res){if(!res.success){$msg.hide().html(res.error).removeClass("ok").addClass("error").show();return}$msg.hide().html(res.message).removeClass("error").addClass("ok").show();if(activate){$('input[name="activate"]',$form).hide();$('input[name="deactivate"]',$form).show();$license.attr("readonly","readonly")}else{$license.removeAttr("readonly").val("");$('input[name="deactivate"]',$form).hide();$('input[name="activate"]',$form).show()}},"json")});$("#wpbdp-admin-page-themes .wpbdp-theme .update-link").click(function(e){e.preventDefault();var $theme=$(this).parents(".wpbdp-theme");var $info=$(".wpbdp-theme-update-info",$theme);var $msg=$(".update-message",$info);$msg.html($info.attr("data-l10n-updating"));$.post(ajaxurl,{action:"wpbdp-themes-update",_wpnonce:$(this).attr("data-nonce"),theme:$(this).attr("data-theme-id")},function(res){if(!res.success){$info.addClass("update-error");$msg.html(res.error);return}var $html=$(res.data.html);$(".wpbdp-theme-details-wrapper",$theme).replaceWith($(".wpbdp-theme-details-wrapper",$html));$info.removeClass("update-available").addClass("theme-updated");$msg.html($info.attr("data-l10n-updated"))},"json")})});
1
+ jQuery(function($){$("#wpbdp-admin-page-themes-install #begin-theme-upload").attr("disabled","disabled");$('#wpbdp-admin-page-themes-install input[name="themezip"]').change(function(e){var v=$(this).val();if(v){$("#wpbdp-admin-page-themes-install #begin-theme-upload").removeAttr("disabled")}});$('#wpbdp-admin-page-themes .license-activation input[type="button"]').click(function(){var activate=$(this).is('[name="activate"]');var $form=$(this).parents(".license-activation");var $license=$('input[name="license"]',$form);var $msg=$(".status-message",$form);var data={nonce:$(this).attr("data-nonce"),theme:$(this).attr("data-theme")};if(activate){data.action="wpbdp-themes-activate-license";data.license=$license.val()}else{data.action="wpbdp-themes-deactivate-license"}$msg.removeClass("ok error");$msg.html($(this).attr("data-l10n"));$.post(ajaxurl,data,function(res){if(!res.success){$msg.hide().html(res.error).removeClass("ok").addClass("error").show();return}$msg.hide().html(res.message).removeClass("error").addClass("ok").show();if(activate){$('input[name="activate"]',$form).hide();$('input[name="deactivate"]',$form).show();$license.attr("readonly","readonly")}else{$license.removeAttr("readonly").val("");$('input[name="deactivate"]',$form).hide();$('input[name="activate"]',$form).show()}},"json")});$("#wpbdp-admin-page-themes .wpbdp-theme .update-link").click(function(e){e.preventDefault();var $theme=$(this).parents(".wpbdp-theme");var $info=$(".wpbdp-theme-update-info",$theme);var $msg=$(".update-message",$info);$msg.html($info.attr("data-l10n-updating"));$.post(ajaxurl,{action:"wpbdp-themes-update",_wpnonce:$(this).attr("data-nonce"),theme:$(this).attr("data-theme-id")},function(res){if(!res.success){$info.addClass("update-error");$msg.html(res.error);return}var $html=$(res.data.html);$(".wpbdp-theme-details-wrapper",$theme).replaceWith($(".wpbdp-theme-details-wrapper",$html));$info.removeClass("update-available").addClass("theme-updated");$msg.html($info.attr("data-l10n-updated"))},"json")})});
admin/templates/form-fields-tags.tpl.php CHANGED
@@ -14,6 +14,15 @@ function _fields_dropdown( $name, $field_id, $fixed = false ) {
14
  <?php echo wpbdp_admin_header( _x( 'Theme Tags', 'form-fields admin', 'WPBDM' ) ); ?>
15
  <?php wpbdp_admin_notices(); ?>
16
 
 
 
 
 
 
 
 
 
 
17
  <form action="" method="post">
18
  <table class="form-table">
19
  <!-- <thead>
14
  <?php echo wpbdp_admin_header( _x( 'Theme Tags', 'form-fields admin', 'WPBDM' ) ); ?>
15
  <?php wpbdp_admin_notices(); ?>
16
 
17
+ <?php if ( $missing_fields ): ?>
18
+ <div class="wpbdp-note">
19
+ <?php _ex( 'Before you create fields, make sure you\'ve mapped all of your EXISTING ones first, otherwise you\'ll appear to be "missing data" on your listings.',
20
+ 'form-fields admin',
21
+ 'WPBDM' ); ?><br /><br />
22
+ <a href="<?php echo wp_nonce_url( admin_url( 'admin.php?page=wpbdp-themes&wpbdp-action=create-theme-suggested-fields' ), 'create_suggested_fields' ); ?>" class="button"><?php _ex( 'Create Missing Fields', 'form-fields admin', 'WPBDM'); ?></a>
23
+ </div>
24
+ <?php endif; ?>
25
+
26
  <form action="" method="post">
27
  <table class="form-table">
28
  <!-- <thead>
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.7.3
7
  * Author: D. Rodenbaugh
8
  * Author URI: http://businessdirectoryplugin.com
9
  * Text Domain: WPBDM
@@ -31,7 +31,7 @@
31
  if( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) )
32
  exit();
33
 
34
- define( 'WPBDP_VERSION', '3.7.3' );
35
 
36
  define( 'WPBDP_PATH', plugin_dir_path( __FILE__ ) );
37
  define( 'WPBDP_URL', trailingslashit( plugins_url( '/', __FILE__ ) ) );
@@ -370,11 +370,14 @@ class WPBDP_Plugin {
370
 
371
  $rewrite_base = str_replace( 'index.php/', '', rtrim( str_replace( $home_url . '/', '', $page_link ), '/' ) );
372
 
 
 
 
373
  $rules['(' . $rewrite_base . ')/' . $wp_rewrite->pagination_base . '/?([0-9]{1,})/?$'] = 'index.php?page_id=' . $page_id . '&paged=$matches[2]';
374
- $rules['(' . $rewrite_base . ')/' . wpbdp_get_option('permalinks-category-slug') . '/(.+?)/' . $wp_rewrite->pagination_base . '/?([0-9]{1,})/?$'] = 'index.php?page_id=' . $page_id . '&category=$matches[2]&paged=$matches[3]';
375
- $rules['(' . $rewrite_base . ')/' . wpbdp_get_option('permalinks-category-slug') . '/(.+?)/?$'] = 'index.php?page_id=' . $page_id . '&category=$matches[2]';
376
- $rules['(' . $rewrite_base . ')/' . wpbdp_get_option('permalinks-tags-slug') . '/(.+?)/' . $wp_rewrite->pagination_base . '/?([0-9]{1,})/?$'] = 'index.php?page_id=' . $page_id . '&tag=$matches[2]&paged=$matches[3]';
377
- $rules['(' . $rewrite_base . ')/' . wpbdp_get_option('permalinks-tags-slug') . '/(.+?)$'] = 'index.php?page_id=' . $page_id . '&tag=$matches[2]';
378
 
379
  if ( wpbdp_get_option( 'permalinks-no-id' ) ) {
380
  //$rules['(' . $rewrite_base . ')/([0-9]{1,})/?$'] = 'index.php?page_id=' . $page_id . '&id=$matches[2]';
@@ -385,9 +388,20 @@ class WPBDP_Plugin {
385
  }
386
  }
387
 
388
- // wpbdp_debug_e($rules);
 
 
 
 
 
 
 
 
 
 
 
389
 
390
- return apply_filters( 'wpbdp_rewrite_rules', $rules );
391
  }
392
 
393
  public function _rewrite_rules($rules) {
@@ -898,12 +912,28 @@ class WPBDP_Plugin {
898
  'category' => '',
899
  'categories' => '',
900
  'title' => '',
901
- 'operator' => 'OR' ),
 
902
  $atts );
903
  $atts = array_map( 'trim', $atts );
904
 
905
- if ( ! $atts['category'] && ! $atts['categories'] && ! $atts['tag'] && ! $atts['tags'] )
906
- return $this->controller->view_listings( true );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
907
 
908
  if ( $atts['category'] || $atts['categories'] ) {
909
  $requested_categories = array();
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.7.4
7
  * Author: D. Rodenbaugh
8
  * Author URI: http://businessdirectoryplugin.com
9
  * Text Domain: WPBDM
31
  if( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) )
32
  exit();
33
 
34
+ define( 'WPBDP_VERSION', '3.7.4' );
35
 
36
  define( 'WPBDP_PATH', plugin_dir_path( __FILE__ ) );
37
  define( 'WPBDP_URL', trailingslashit( plugins_url( '/', __FILE__ ) ) );
370
 
371
  $rewrite_base = str_replace( 'index.php/', '', rtrim( str_replace( $home_url . '/', '', $page_link ), '/' ) );
372
 
373
+ $category_slug = urlencode( wpbdp_get_option( 'permalinks-category-slug' ) );
374
+ $tags_slug = urlencode( wpbdp_get_option( 'permalinks-tags-slug' ) );
375
+
376
  $rules['(' . $rewrite_base . ')/' . $wp_rewrite->pagination_base . '/?([0-9]{1,})/?$'] = 'index.php?page_id=' . $page_id . '&paged=$matches[2]';
377
+ $rules['(' . $rewrite_base . ')/' . $category_slug . '/(.+?)/' . $wp_rewrite->pagination_base . '/?([0-9]{1,})/?$'] = 'index.php?page_id=' . $page_id . '&category=$matches[2]&paged=$matches[3]';
378
+ $rules['(' . $rewrite_base . ')/' . $category_slug . '/(.+?)/?$'] = 'index.php?page_id=' . $page_id . '&category=$matches[2]';
379
+ $rules['(' . $rewrite_base . ')/' . $tags_slug . '/(.+?)/' . $wp_rewrite->pagination_base . '/?([0-9]{1,})/?$'] = 'index.php?page_id=' . $page_id . '&tag=$matches[2]&paged=$matches[3]';
380
+ $rules['(' . $rewrite_base . ')/' . $tags_slug . '/(.+?)$'] = 'index.php?page_id=' . $page_id . '&tag=$matches[2]';
381
 
382
  if ( wpbdp_get_option( 'permalinks-no-id' ) ) {
383
  //$rules['(' . $rewrite_base . ')/([0-9]{1,})/?$'] = 'index.php?page_id=' . $page_id . '&id=$matches[2]';
388
  }
389
  }
390
 
391
+ $rules = apply_filters( 'wpbdp_rewrite_rules', $rules );
392
+
393
+ // Create uppercase versions of rules involving octets (support for cyrillic characters).
394
+ foreach ( $rules as $def => $redirect ) {
395
+ $upper_r = preg_replace_callback( '/%[0-9a-zA-Z]{2}/',
396
+ create_function( '$x', 'return strtoupper( $x[0] );' ),
397
+ $def );
398
+
399
+ if ( 0 !== strcmp( $def, $upper_r ) ) {
400
+ $rules[ $upper_r ] = $redirect;
401
+ }
402
+ }
403
 
404
+ return $rules;
405
  }
406
 
407
  public function _rewrite_rules($rules) {
912
  'category' => '',
913
  'categories' => '',
914
  'title' => '',
915
+ 'operator' => 'OR',
916
+ 'author' => '' ),
917
  $atts );
918
  $atts = array_map( 'trim', $atts );
919
 
920
+ if ( ! $atts['category'] && ! $atts['categories'] && ! $atts['tag'] && ! $atts['tags'] ) {
921
+ $args = array();
922
+
923
+ if ( ! empty( $atts['author'] ) ) {
924
+ $u = false;
925
+
926
+ if ( is_numeric( $atts['author'] ) )
927
+ $u = get_user_by( 'id', absint( $atts['author'] ) );
928
+ else
929
+ $u = get_user_by( 'login', $atts['author'] );
930
+
931
+ if ( $u )
932
+ $args['author'] = $u->ID;
933
+ }
934
+
935
+ return $this->controller->view_listings( true, $args );
936
+ }
937
 
938
  if ( $atts['category'] || $atts['categories'] ) {
939
  $requested_categories = array();
core/api.php CHANGED
@@ -508,7 +508,7 @@ function wpbdp_experimental( $feature ) {
508
  static $file_overrides = false;
509
  global $wpbdp_development;
510
 
511
- if ( file_exists( WPBDP_PATH . '.experimental' ) )
512
  $file_overrides = explode( ',', trim( file_get_contents( WPBDP_PATH . 'experimental' ) ) );
513
 
514
  $res = false;
508
  static $file_overrides = false;
509
  global $wpbdp_development;
510
 
511
+ if ( file_exists( WPBDP_PATH . 'experimental' ) )
512
  $file_overrides = explode( ',', trim( file_get_contents( WPBDP_PATH . 'experimental' ) ) );
513
 
514
  $res = false;
core/fieldtypes/class-fieldtypes-textarea.php CHANGED
@@ -105,17 +105,14 @@ class WPBDP_FieldTypes_TextArea extends WPBDP_Form_Field_Type {
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 = wpautop( $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( shortcode_unautop( wpautop( $value ) ) );
118
  $post = $current_post;
 
 
119
  }
120
  }
121
  } else {
@@ -125,5 +122,13 @@ class WPBDP_FieldTypes_TextArea extends WPBDP_Form_Field_Type {
125
  return $value;
126
  }
127
 
 
 
 
 
 
 
 
 
128
  }
129
 
105
  if ( $field->data( 'allow_filters' ) ) {
106
  $value = apply_filters( 'the_content', $value );
107
  } else {
 
 
 
 
 
108
  if ( $field->data( 'allow_shortcodes' ) ) {
109
  global $post;
110
  // Try to protect us from sortcodes messing things for us.
111
  $current_post = $post;
112
  $value = do_shortcode( shortcode_unautop( wpautop( $value ) ) );
113
  $post = $current_post;
114
+ } else {
115
+ $value = wpautop( $value );
116
  }
117
  }
118
  } else {
122
  return $value;
123
  }
124
 
125
+ public function get_field_csv_value( &$field, $post_id ) {
126
+ $value = parent::get_field_csv_value( $field, $post_id );
127
+ $value = str_replace( "\r\n", "\n", $value );
128
+ $value = str_replace( "\n", "\\n", $value );
129
+
130
+ return $value;
131
+ }
132
+
133
  }
134
 
core/form-fields.php CHANGED
@@ -461,7 +461,7 @@ class WPBDP_FieldValidation {
461
  }
462
 
463
  public function validate_field( $field, $value, $validator, $args=array() ) {
464
- $args['field-label'] = is_object( $field ) && $field ? $field->get_label() : _x( 'Field', 'form-fields-api validation', 'WPBDM' );
465
  $args['field'] = $field;
466
 
467
  return call_user_func( array( $this, $validator ) , $value, $args );
461
  }
462
 
463
  public function validate_field( $field, $value, $validator, $args=array() ) {
464
+ $args['field-label'] = is_object( $field ) && $field ? apply_filters( 'wpbdp_render_field_label', $field->get_label(), $field ) : _x( 'Field', 'form-fields-api validation', 'WPBDM' );
465
  $args['field'] = $field;
466
 
467
  return call_user_func( array( $this, $validator ) , $value, $args );
core/templates-ui.php CHANGED
@@ -30,7 +30,7 @@ function wpbdp_the_directory_categories() {
30
  * @since 2.3
31
  * @access private
32
  */
33
- function _wpbdp_padded_count( &$term ) {
34
  global $wpdb;
35
 
36
  $found = false;
@@ -44,6 +44,9 @@ function _wpbdp_padded_count( &$term ) {
44
  $count = apply_filters( '_wpbdp_padded_count', intval( $wpdb->get_var( $query ) ), $term );
45
  }
46
 
 
 
 
47
  $term->count = $count;
48
  }
49
 
30
  * @since 2.3
31
  * @access private
32
  */
33
+ function _wpbdp_padded_count( &$term, $return = false ) {
34
  global $wpdb;
35
 
36
  $found = false;
44
  $count = apply_filters( '_wpbdp_padded_count', intval( $wpdb->get_var( $query ) ), $term );
45
  }
46
 
47
+ if ( $return )
48
+ return $count;
49
+
50
  $term->count = $count;
51
  }
52
 
core/views.php CHANGED
@@ -389,11 +389,14 @@ class WPBDP_DirectoryController {
389
  'post_status' => 'publish',
390
  'paged' => intval($paged),
391
  'orderby' => wpbdp_get_option('listings-order-by', 'date'),
392
- 'order' => wpbdp_get_option('listings-sort', 'ASC'),
393
  );
394
  if ( isset( $args_['numberposts'] ) )
395
  $args['numberposts'] = $args_['numberposts'];
396
 
 
 
 
397
  if ( wpbdp_experimental( 'themes' ) ) {
398
  $q = new WP_Query( $args );
399
  wpbdp_push_query( $q );
389
  'post_status' => 'publish',
390
  'paged' => intval($paged),
391
  'orderby' => wpbdp_get_option('listings-order-by', 'date'),
392
+ 'order' => wpbdp_get_option('listings-sort', 'ASC')
393
  );
394
  if ( isset( $args_['numberposts'] ) )
395
  $args['numberposts'] = $args_['numberposts'];
396
 
397
+ if ( ! empty( $args_['author'] ) )
398
+ $args['author'] = $args_['author'];
399
+
400
  if ( wpbdp_experimental( 'themes' ) ) {
401
  $q = new WP_Query( $args );
402
  wpbdp_push_query( $q );
languages/WPBDM-de_DE.mo CHANGED
Binary file
languages/WPBDM-de_DE.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.5.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-02-02 17:14:20+00:00\n"
8
  "PO-Revision-Date: 2016-01-21 08:45-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
@@ -70,7 +70,7 @@ msgstr "Aktualisieren auf %s"
70
  msgid "Downgrade to %s"
71
  msgstr "Zurücksetzen auf %s"
72
 
73
- #: admin/class-admin-listings.php:215 admin/class-admin-listings.php:395
74
  msgctxt "admin actions"
75
  msgid "Upgrade to Featured"
76
  msgstr "Aktualisieren auf Eingestellt"
@@ -84,32 +84,32 @@ msgctxt "admin"
84
  msgid "Expired"
85
  msgstr "Abgelaufen"
86
 
87
- #: admin/class-admin-listings.php:331
88
  msgctxt "admin actions"
89
  msgid "Edit Listing"
90
  msgstr "Eintrag Bearbeiten"
91
 
92
- #: admin/class-admin-listings.php:334
93
  msgctxt "admin actions"
94
  msgid "Delete Listing"
95
  msgstr "Eintrag Löschen"
96
 
97
- #: admin/class-admin-listings.php:393
98
  msgctxt "admin actions"
99
  msgid "Publish Listing"
100
  msgstr "Eintrag veröffentlichen"
101
 
102
- #: admin/class-admin-listings.php:396
103
  msgctxt "admin actions"
104
  msgid "Downgrade to Normal"
105
  msgstr "Zurücksetzen auf Normal"
106
 
107
- #: admin/class-admin-listings.php:398
108
  msgctxt "admin actions"
109
  msgid "Mark as Paid"
110
  msgstr "Als Bezahlt Markieren"
111
 
112
- #: admin/class-admin-listings.php:400
113
  msgctxt "admin actions"
114
  msgid "Renew Listing"
115
  msgstr "Eintrag erneuern"
@@ -453,89 +453,84 @@ msgstr ""
453
  #: admin/class-themes-admin.php:150
454
  msgctxt "themes"
455
  msgid ""
456
- "For better results, \"%s\" theme suggests the following form fields to be "
457
- "created."
458
  msgstr ""
459
 
460
- #: admin/class-themes-admin.php:157
461
- msgctxt "themes"
462
- msgid "Dismiss this warning"
463
- msgstr ""
464
-
465
- #: admin/class-themes-admin.php:160
466
  #, fuzzy
467
  msgctxt "themes"
468
- msgid "Create suggested fields"
469
- msgstr "Erstelle diese benötigten Felder für mich"
470
 
471
- #: admin/class-themes-admin.php:167
472
  #, fuzzy
473
  msgctxt "themes"
474
  msgid "Suggested fields created successfully."
475
  msgstr "Benötigtes Feld wurde erfolgreich erstellt."
476
 
477
- #: admin/class-themes-admin.php:170
478
  #, fuzzy
479
  msgctxt "themes"
480
  msgid "Theme installed successfully."
481
  msgstr "Benötigtes Feld wurde erfolgreich erstellt."
482
 
483
- #: admin/class-themes-admin.php:173
484
  #, fuzzy
485
  msgctxt "themes"
486
  msgid "Theme was deleted sucessfully."
487
  msgstr "Der Import wurde erfolgreich abgeschlossen."
488
 
489
- #: admin/class-themes-admin.php:176
490
  msgctxt "themes"
491
  msgid "Could not delete theme directory. Check permissions."
492
  msgstr ""
493
 
494
- #: admin/class-themes-admin.php:202
495
  #, fuzzy
496
  msgctxt "themes"
497
  msgid "Please upload a valid theme file."
498
  msgstr "Bitte eine gültige E-mailadresse eingeben."
499
 
500
- #: admin/class-themes-admin.php:209
501
  #, fuzzy
502
  msgctxt "themes"
503
  msgid "Could not move \"%s\" to a temporary directory."
504
  msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
505
 
506
- #: admin/class-themes-admin.php:310 admin/class-themes-admin.php:371
507
  #: core/licensing.php:127 core/licensing.php:159
508
  msgctxt "licensing"
509
  msgid "Could not contact licensing server"
510
  msgstr "Eine Verbindung zum Lizenzserver konnte nicht hergestellt werden."
511
 
512
- #: admin/class-themes-admin.php:316 core/licensing.php:132
513
  #: core/licensing.php:166
514
  msgctxt "licensing"
515
  msgid "License key is invalid"
516
  msgstr "Lizenzschlüssel ungültig "
517
 
518
- #: admin/class-themes-admin.php:321 core/licensing.php:330
519
  msgctxt "licensing"
520
  msgid "Could not activate license: %s."
521
  msgstr "Konnte Lizenz nicht aktivieren: %s"
522
 
523
- #: admin/class-themes-admin.php:334 core/licensing.php:332
524
  msgctxt "licensing"
525
  msgid "License activated"
526
  msgstr "Lizenz aktiviert"
527
 
528
- #: admin/class-themes-admin.php:377
529
  msgctxt "licensing"
530
  msgid "Invalid response from server"
531
  msgstr ""
532
 
533
- #: admin/class-themes-admin.php:394 core/licensing.php:350
534
  msgctxt "licensing"
535
  msgid "License deactivated"
536
  msgstr "Lizenz deaktiviert"
537
 
538
- #: admin/class-themes-admin.php:410
539
  msgctxt "themes"
540
  msgid "Activate your <a>license key</a> to use this theme."
541
  msgstr ""
@@ -813,7 +808,7 @@ msgctxt "fees order"
813
  msgid "Custom Order"
814
  msgstr "Benutzerdefinierter Auftrag"
815
 
816
- #: admin/fees.php:341
817
  msgctxt "fees admin"
818
  msgid "Fee updated."
819
  msgstr "Preis aktualisiert."
@@ -944,75 +939,75 @@ msgctxt "form-fields admin"
944
  msgid "Required fields created successfully."
945
  msgstr "Benötigtes Feld wurde erfolgreich erstellt."
946
 
947
- #: admin/form-fields.php:286
948
  #, fuzzy
949
  msgctxt "form-fields admin"
950
  msgid "Title"
951
  msgstr "Titel"
952
 
953
- #: admin/form-fields.php:287
954
  #, fuzzy
955
  msgctxt "form-fields admin"
956
  msgid "Category"
957
  msgstr "Kategorien"
958
 
959
- #: admin/form-fields.php:288
960
  #, fuzzy
961
  msgctxt "form-fields admin"
962
  msgid "Excerpt"
963
  msgstr "Im Textauszug"
964
 
965
- #: admin/form-fields.php:289
966
  #, fuzzy
967
  msgctxt "form-fields admin"
968
  msgid "Content"
969
  msgstr "Post Inhalt"
970
 
971
- #: admin/form-fields.php:290
972
  #, fuzzy
973
  msgctxt "form-fields admin"
974
  msgid "Tags"
975
  msgstr "Tags Entwurf"
976
 
977
- #: admin/form-fields.php:291
978
  #, fuzzy
979
  msgctxt "form-fields admin"
980
  msgid "Address"
981
  msgstr "E-mail Adresse:"
982
 
983
- #: admin/form-fields.php:292
984
  msgctxt "form-fields admin"
985
  msgid "ZIP Code"
986
  msgstr ""
987
 
988
- #: admin/form-fields.php:293
989
  msgctxt "form-fields admin"
990
  msgid "FAX Number"
991
  msgstr ""
992
 
993
- #: admin/form-fields.php:294
994
  #, fuzzy
995
  msgctxt "form-fields admin"
996
  msgid "Phone Number"
997
  msgstr "Telefonnummer geschäftlich"
998
 
999
- #: admin/form-fields.php:295
1000
  #, fuzzy
1001
  msgctxt "form-fields admin"
1002
  msgid "Ratings Field"
1003
  msgstr "Eintrag Felder"
1004
 
1005
- #: admin/form-fields.php:296
1006
  msgctxt "form-fields admin"
1007
  msgid "Twitter"
1008
  msgstr ""
1009
 
1010
- #: admin/form-fields.php:297
1011
  msgctxt "form-fields admin"
1012
  msgid "Website"
1013
  msgstr ""
1014
 
1015
- #: admin/form-fields.php:318
1016
  #, fuzzy
1017
  msgctxt "form-fields admin"
1018
  msgid "Tags updated."
@@ -2075,13 +2070,26 @@ msgctxt "form-fields admin"
2075
  msgid "Theme Tags"
2076
  msgstr ""
2077
 
2078
- #: admin/templates/form-fields-tags.tpl.php:21
 
 
 
 
 
 
 
 
 
 
 
 
 
2079
  #, fuzzy
2080
  msgctxt "form-fields admin"
2081
  msgid "Field Tag"
2082
  msgstr "Feldtyp"
2083
 
2084
- #: admin/templates/form-fields-tags.tpl.php:22
2085
  #, fuzzy
2086
  msgctxt "form-fields admin"
2087
  msgid "Field"
@@ -2116,7 +2124,7 @@ msgctxt "form-fields admin"
2116
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2117
  msgstr ""
2118
 
2119
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.7.2) #-#-#-#-#
2120
  #. Plugin Name of the plugin/theme
2121
  #: admin/templates/header.tpl.php:4
2122
  msgid "Business Directory Plugin"
@@ -2818,80 +2826,80 @@ msgctxt "tracking"
2818
  msgid "Allow Tracking"
2819
  msgstr "Verfolgung erlauben"
2820
 
2821
- #: business-directory-plugin.php:702
2822
  msgctxt "admin plugins"
2823
  msgid "Settings"
2824
  msgstr "Einstellungen"
2825
 
2826
- #: business-directory-plugin.php:712
2827
  msgctxt "post type general name"
2828
  msgid "Directory"
2829
  msgstr "Verzeichnis"
2830
 
2831
- #: business-directory-plugin.php:713
2832
  msgctxt "post type singular name"
2833
  msgid "Directory"
2834
  msgstr "Verzeichnis"
2835
 
2836
- #: business-directory-plugin.php:714
2837
  msgctxt "listing"
2838
  msgid "Add New Listing"
2839
  msgstr "Neuen Eintrag erstellen"
2840
 
2841
- #: business-directory-plugin.php:715
2842
  msgctxt "post type"
2843
  msgid "Add New Listing"
2844
  msgstr "Neuen Eintrag erstellen"
2845
 
2846
- #: business-directory-plugin.php:716 core/compatibility/deprecated.php:255
2847
  msgid "Edit Listing"
2848
  msgstr "Eintrag Bearbeiten"
2849
 
2850
- #: business-directory-plugin.php:717
2851
  msgid "New Listing"
2852
  msgstr "Neuer Eintag"
2853
 
2854
- #: business-directory-plugin.php:718
2855
  msgid "View Listing"
2856
  msgstr "Eintrag anschauen"
2857
 
2858
- #: business-directory-plugin.php:719
2859
  msgid "Search Listings"
2860
  msgstr "Einträge durchsuchen"
2861
 
2862
- #: business-directory-plugin.php:720
2863
  msgid "No listings found"
2864
  msgstr "Keine Einträge gefunden"
2865
 
2866
- #: business-directory-plugin.php:721
2867
  msgid "No listings found in trash"
2868
  msgstr "Keine Einträge im Papierkorb gefunden"
2869
 
2870
- #: business-directory-plugin.php:743
2871
  msgid "Directory Categories"
2872
  msgstr "Verzeichnis Kategorien"
2873
 
2874
- #: business-directory-plugin.php:856 business-directory-plugin.php:863
2875
  msgctxt "rss feed"
2876
  msgid "%s Feed"
2877
  msgstr "% Feed"
2878
 
2879
- #: business-directory-plugin.php:1265
2880
  msgctxt "title"
2881
  msgid "Submit A Listing"
2882
  msgstr "Eintrag zusenden"
2883
 
2884
- #: business-directory-plugin.php:1275
2885
  msgctxt "title"
2886
  msgid "Find a Listing"
2887
  msgstr "Eintrag finden"
2888
 
2889
- #: business-directory-plugin.php:1285
2890
  msgctxt "title"
2891
  msgid "View All Listings"
2892
  msgstr "Alle Einträge anschauen"
2893
 
2894
- #: business-directory-plugin.php:1305
2895
  msgctxt "title"
2896
  msgid "Listings tagged: %s"
2897
  msgstr "Einträge getaggt: %s"
@@ -3047,12 +3055,12 @@ msgctxt "listing"
3047
  msgid "(Fee Unavailable)"
3048
  msgstr "(Preis nicht verfügbar)"
3049
 
3050
- #: core/class-listings-api.php:300
3051
  msgctxt "notify email"
3052
  msgid "[%s] New listing notification"
3053
  msgstr "[%s] neue Eintragsbenachrichtigung"
3054
 
3055
- #: core/class-listings-api.php:319
3056
  msgctxt "notify email"
3057
  msgid "[%s] Listing edit notification"
3058
  msgstr "[%s] Eintrag bearbeiten Benachrichtigung"
@@ -4627,20 +4635,20 @@ msgstr "Löschen"
4627
  msgid "Upgrade Listing"
4628
  msgstr "Eintrag aktualisieren"
4629
 
4630
- #: core/compatibility/deprecated.php:214 core/templates-ui.php:183
4631
  msgid "Submit A Listing"
4632
  msgstr "Eintrag zusenden"
4633
 
4634
- #: core/compatibility/deprecated.php:227 core/templates-ui.php:192
4635
  msgid "View Listings"
4636
  msgstr "Eintrag anschauen"
4637
 
4638
- #: core/compatibility/deprecated.php:238 core/templates-ui.php:202
4639
  msgid "Directory"
4640
  msgstr "Verzeichnis"
4641
 
4642
  #: core/compatibility/templates/wpbusdirman-index-categories.php:12
4643
- #: core/templates-ui.php:229
4644
  msgctxt "templates"
4645
  msgid "Search Listings"
4646
  msgstr "Eintrag suchen"
@@ -5184,11 +5192,11 @@ msgctxt "installer"
5184
  msgid "Listing upgrade to featured"
5185
  msgstr "Eintrag aktualisieren auf Hervorhebung"
5186
 
5187
- #: core/installer.php:933
5188
  msgid "Business Directory - Manual Upgrade Required"
5189
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung erforderlich"
5190
 
5191
- #: core/installer.php:935
5192
  msgid ""
5193
  "Business Directory features are currently disabled because the plugin needs "
5194
  "to perform a manual upgrade before continuing."
@@ -5196,15 +5204,15 @@ msgstr ""
5196
  "Branchenverzeichnis Hervorhebungen sind aktuell deaktiviert, weil das Modul "
5197
  "manuell aktualisiert werden muss, bevor weiter hervorgehoben werden kann."
5198
 
5199
- #: core/installer.php:937
5200
  msgid "Perform Manual Upgrade"
5201
  msgstr "Manuelle Aktualisierung durchführen"
5202
 
5203
- #: core/installer.php:953 core/installer.php:954 core/installer.php:965
5204
  msgid "Business Directory - Manual Upgrade"
5205
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung"
5206
 
5207
- #: core/installer.php:969
5208
  msgid ""
5209
  "Business Directory features are currently disabled because the plugin needs "
5210
  "to perform a manual upgrade before it can be used."
@@ -5212,22 +5220,22 @@ msgstr ""
5212
  "Branchenverzeichnis Hervorhebungen sind momentan deaktiviert weil das Modul "
5213
  "manuell aktualisiert werden muss, bevor es weiter verwendet werden kann."
5214
 
5215
- #: core/installer.php:971
5216
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5217
  msgstr ""
5218
  "Klicke \"Starte Aktualisierung\" und warte bis der Vorgang beendet wurde."
5219
 
5220
- #: core/installer.php:974
5221
  msgctxt "manual-upgrade"
5222
  msgid "Start Upgrade"
5223
  msgstr "Starte Aktualisierung"
5224
 
5225
- #: core/installer.php:976
5226
  msgctxt "manual-upgrade"
5227
  msgid "Pause Upgrade"
5228
  msgstr "Aktualisierung pausieren"
5229
 
5230
- #: core/installer.php:982
5231
  msgctxt "manual-upgrade"
5232
  msgid ""
5233
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
@@ -5236,7 +5244,7 @@ msgstr ""
5236
  "Die Aktualisierung wurde erfolgreich durchgeführt. Branchenverzeichnis "
5237
  "Erweiterung ist nun verfügbar."
5238
 
5239
- #: core/installer.php:985
5240
  msgctxt "manual-upgrade"
5241
  msgid "Go to \"Directory Admin\""
5242
  msgstr "Nach \" Verzeichnis Administration\""
@@ -5463,7 +5471,7 @@ msgctxt "templates"
5463
  msgid "Featured Listing"
5464
  msgstr "Hervorgehobene Einträge"
5465
 
5466
- #: core/templates/listings.tpl.php:6
5467
  #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:21
5468
  msgctxt "templates"
5469
  msgid "No listings found."
@@ -5481,51 +5489,68 @@ msgctxt "templates"
5481
  msgid "Next &raquo;"
5482
  msgstr "Nächste &raquo;"
5483
 
5484
- #: core/templates-ui.php:159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5485
  msgctxt "templates"
5486
  msgid "No listing categories found."
5487
  msgstr "Keine Eintragskategorie gefunden."
5488
 
5489
- #: core/templates-ui.php:232
5490
  msgctxt "templates"
5491
  msgid "Advanced Search"
5492
  msgstr "Erweiterte Suche"
5493
 
5494
- #: core/templates-ui.php:258 core/templates-ui.php:283
5495
  msgctxt "templates sort"
5496
  msgid "Sort By:"
5497
  msgstr "Sortieren nach"
5498
 
5499
- #: core/templates-ui.php:277
5500
  msgctxt "sort"
5501
  msgid "Reset"
5502
  msgstr "Zurücksetzen"
5503
 
5504
- #: core/templates-ui.php:299
5505
  #, fuzzy
5506
  msgctxt "sort"
5507
  msgid "(Reset)"
5508
  msgstr "Zurücksetzen"
5509
 
5510
- #: core/themes.php:597
5511
  #, fuzzy
5512
  msgctxt "themes"
5513
  msgid "ZIP file is not a valid BD theme file."
5514
  msgstr "Bitte eine gültige E-mailadresse eingeben."
5515
 
5516
- #: core/themes.php:603
5517
  #, fuzzy
5518
  msgctxt "themes"
5519
  msgid "Could not create themes directory."
5520
  msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
5521
 
5522
- #: core/themes.php:611
5523
  #, fuzzy
5524
  msgctxt "themes"
5525
  msgid "Could not remove previous theme directory \"%s\"."
5526
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
5527
 
5528
- #: core/themes.php:617
5529
  #, fuzzy
5530
  msgctxt "themes"
5531
  msgid "Could not move new theme into theme directory."
@@ -5920,7 +5945,7 @@ msgctxt "templates"
5920
  msgid "Listings tagged: %s"
5921
  msgstr "Getaggte Einträge: %s"
5922
 
5923
- #: core/views.php:486
5924
  msgctxt "templates"
5925
  msgid ""
5926
  "There are no categories assigned to the business directory yet. You need to "
@@ -5935,12 +5960,12 @@ msgstr ""
5935
  "nicht erstellt werden kann. Einträge können nicht erstellt werden bis ein "
5936
  "Kategorie zugewiesen wurde."
5937
 
5938
- #: core/views.php:488
5939
  msgctxt "templates"
5940
  msgid "There are currently no listings in the directory."
5941
  msgstr "Keine Einträge im Verzeichnis vorhanden. "
5942
 
5943
- #: core/views.php:506
5944
  msgctxt "templates"
5945
  msgid ""
5946
  "You have \"Hide Empty Categories\" on and some categories that don't have "
@@ -6358,11 +6383,6 @@ msgctxt "templates"
6358
  msgid "You do not currently have any listings in the directory."
6359
  msgstr "Momentan sind keine Einträge im Verzeichnis vorhanden."
6360
 
6361
- #: templates/manage-listings.tpl.php:11 templates/search.tpl.php:24
6362
- msgctxt "templates"
6363
- msgid "Return to directory"
6364
- msgstr "Zurück zum Verzeichnis"
6365
-
6366
  #: templates/manage-recurring-cancel.tpl.php:1
6367
  msgctxt "manage recurring"
6368
  msgid "Manage Recurring Payments - Cancel"
@@ -6606,16 +6626,6 @@ msgctxt "search"
6606
  msgid "Clear"
6607
  msgstr "Säubern"
6608
 
6609
- #: templates/search-form.tpl.php:15 templates/search.tpl.php:6
6610
- msgctxt "search"
6611
- msgid "Search"
6612
- msgstr "Suche"
6613
-
6614
- #: templates/search.tpl.php:14
6615
- msgctxt "search"
6616
- msgid "Search Results"
6617
- msgstr "Ergebnisse durchsuchen"
6618
-
6619
  #: templates/submit-listing/category-selection.tpl.php:1
6620
  msgctxt "templates"
6621
  msgid "Category Selection"
@@ -6813,6 +6823,11 @@ msgstr "D. Rodenbaugh"
6813
  msgid "http://businessdirectoryplugin.com"
6814
  msgstr "http://businessdirectoryplugin.com"
6815
 
 
 
 
 
 
6816
  #~ msgctxt "fees admin"
6817
  #~ msgid "You do not have any listing fees setup yet."
6818
  #~ msgstr "Du hast bisher noch keine Konfiguration für Preise von Einträgen."
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.5.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-02-24 20:36:14+00:00\n"
8
  "PO-Revision-Date: 2016-01-21 08:45-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
70
  msgid "Downgrade to %s"
71
  msgstr "Zurücksetzen auf %s"
72
 
73
+ #: admin/class-admin-listings.php:215 admin/class-admin-listings.php:394
74
  msgctxt "admin actions"
75
  msgid "Upgrade to Featured"
76
  msgstr "Aktualisieren auf Eingestellt"
84
  msgid "Expired"
85
  msgstr "Abgelaufen"
86
 
87
+ #: admin/class-admin-listings.php:330
88
  msgctxt "admin actions"
89
  msgid "Edit Listing"
90
  msgstr "Eintrag Bearbeiten"
91
 
92
+ #: admin/class-admin-listings.php:333
93
  msgctxt "admin actions"
94
  msgid "Delete Listing"
95
  msgstr "Eintrag Löschen"
96
 
97
+ #: admin/class-admin-listings.php:392
98
  msgctxt "admin actions"
99
  msgid "Publish Listing"
100
  msgstr "Eintrag veröffentlichen"
101
 
102
+ #: admin/class-admin-listings.php:395
103
  msgctxt "admin actions"
104
  msgid "Downgrade to Normal"
105
  msgstr "Zurücksetzen auf Normal"
106
 
107
+ #: admin/class-admin-listings.php:397
108
  msgctxt "admin actions"
109
  msgid "Mark as Paid"
110
  msgstr "Als Bezahlt Markieren"
111
 
112
+ #: admin/class-admin-listings.php:399
113
  msgctxt "admin actions"
114
  msgid "Renew Listing"
115
  msgstr "Eintrag erneuern"
453
  #: admin/class-themes-admin.php:150
454
  msgctxt "themes"
455
  msgid ""
456
+ "%s requires that you tag your existing fields to match some places we want "
457
+ "to put your data on the theme. Below are fields we think are missing."
458
  msgstr ""
459
 
460
+ #: admin/class-themes-admin.php:159
 
 
 
 
 
461
  #, fuzzy
462
  msgctxt "themes"
463
+ msgid "Map My Fields"
464
+ msgstr "Form Felder verwalten"
465
 
466
+ #: admin/class-themes-admin.php:166
467
  #, fuzzy
468
  msgctxt "themes"
469
  msgid "Suggested fields created successfully."
470
  msgstr "Benötigtes Feld wurde erfolgreich erstellt."
471
 
472
+ #: admin/class-themes-admin.php:169
473
  #, fuzzy
474
  msgctxt "themes"
475
  msgid "Theme installed successfully."
476
  msgstr "Benötigtes Feld wurde erfolgreich erstellt."
477
 
478
+ #: admin/class-themes-admin.php:172
479
  #, fuzzy
480
  msgctxt "themes"
481
  msgid "Theme was deleted sucessfully."
482
  msgstr "Der Import wurde erfolgreich abgeschlossen."
483
 
484
+ #: admin/class-themes-admin.php:175
485
  msgctxt "themes"
486
  msgid "Could not delete theme directory. Check permissions."
487
  msgstr ""
488
 
489
+ #: admin/class-themes-admin.php:201
490
  #, fuzzy
491
  msgctxt "themes"
492
  msgid "Please upload a valid theme file."
493
  msgstr "Bitte eine gültige E-mailadresse eingeben."
494
 
495
+ #: admin/class-themes-admin.php:208
496
  #, fuzzy
497
  msgctxt "themes"
498
  msgid "Could not move \"%s\" to a temporary directory."
499
  msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
500
 
501
+ #: admin/class-themes-admin.php:309 admin/class-themes-admin.php:370
502
  #: core/licensing.php:127 core/licensing.php:159
503
  msgctxt "licensing"
504
  msgid "Could not contact licensing server"
505
  msgstr "Eine Verbindung zum Lizenzserver konnte nicht hergestellt werden."
506
 
507
+ #: admin/class-themes-admin.php:315 core/licensing.php:132
508
  #: core/licensing.php:166
509
  msgctxt "licensing"
510
  msgid "License key is invalid"
511
  msgstr "Lizenzschlüssel ungültig "
512
 
513
+ #: admin/class-themes-admin.php:320 core/licensing.php:330
514
  msgctxt "licensing"
515
  msgid "Could not activate license: %s."
516
  msgstr "Konnte Lizenz nicht aktivieren: %s"
517
 
518
+ #: admin/class-themes-admin.php:333 core/licensing.php:332
519
  msgctxt "licensing"
520
  msgid "License activated"
521
  msgstr "Lizenz aktiviert"
522
 
523
+ #: admin/class-themes-admin.php:376
524
  msgctxt "licensing"
525
  msgid "Invalid response from server"
526
  msgstr ""
527
 
528
+ #: admin/class-themes-admin.php:393 core/licensing.php:350
529
  msgctxt "licensing"
530
  msgid "License deactivated"
531
  msgstr "Lizenz deaktiviert"
532
 
533
+ #: admin/class-themes-admin.php:409
534
  msgctxt "themes"
535
  msgid "Activate your <a>license key</a> to use this theme."
536
  msgstr ""
808
  msgid "Custom Order"
809
  msgstr "Benutzerdefinierter Auftrag"
810
 
811
+ #: admin/fees.php:339
812
  msgctxt "fees admin"
813
  msgid "Fee updated."
814
  msgstr "Preis aktualisiert."
939
  msgid "Required fields created successfully."
940
  msgstr "Benötigtes Feld wurde erfolgreich erstellt."
941
 
942
+ #: admin/form-fields.php:288
943
  #, fuzzy
944
  msgctxt "form-fields admin"
945
  msgid "Title"
946
  msgstr "Titel"
947
 
948
+ #: admin/form-fields.php:289
949
  #, fuzzy
950
  msgctxt "form-fields admin"
951
  msgid "Category"
952
  msgstr "Kategorien"
953
 
954
+ #: admin/form-fields.php:290
955
  #, fuzzy
956
  msgctxt "form-fields admin"
957
  msgid "Excerpt"
958
  msgstr "Im Textauszug"
959
 
960
+ #: admin/form-fields.php:291
961
  #, fuzzy
962
  msgctxt "form-fields admin"
963
  msgid "Content"
964
  msgstr "Post Inhalt"
965
 
966
+ #: admin/form-fields.php:292
967
  #, fuzzy
968
  msgctxt "form-fields admin"
969
  msgid "Tags"
970
  msgstr "Tags Entwurf"
971
 
972
+ #: admin/form-fields.php:293
973
  #, fuzzy
974
  msgctxt "form-fields admin"
975
  msgid "Address"
976
  msgstr "E-mail Adresse:"
977
 
978
+ #: admin/form-fields.php:294
979
  msgctxt "form-fields admin"
980
  msgid "ZIP Code"
981
  msgstr ""
982
 
983
+ #: admin/form-fields.php:295
984
  msgctxt "form-fields admin"
985
  msgid "FAX Number"
986
  msgstr ""
987
 
988
+ #: admin/form-fields.php:296
989
  #, fuzzy
990
  msgctxt "form-fields admin"
991
  msgid "Phone Number"
992
  msgstr "Telefonnummer geschäftlich"
993
 
994
+ #: admin/form-fields.php:297
995
  #, fuzzy
996
  msgctxt "form-fields admin"
997
  msgid "Ratings Field"
998
  msgstr "Eintrag Felder"
999
 
1000
+ #: admin/form-fields.php:298
1001
  msgctxt "form-fields admin"
1002
  msgid "Twitter"
1003
  msgstr ""
1004
 
1005
+ #: admin/form-fields.php:299
1006
  msgctxt "form-fields admin"
1007
  msgid "Website"
1008
  msgstr ""
1009
 
1010
+ #: admin/form-fields.php:320
1011
  #, fuzzy
1012
  msgctxt "form-fields admin"
1013
  msgid "Tags updated."
2070
  msgid "Theme Tags"
2071
  msgstr ""
2072
 
2073
+ #: admin/templates/form-fields-tags.tpl.php:19
2074
+ msgctxt "form-fields admin"
2075
+ msgid ""
2076
+ "Before you create fields, make sure you've mapped all of your EXISTING ones "
2077
+ "first, otherwise you'll appear to be \"missing data\" on your listings."
2078
+ msgstr ""
2079
+
2080
+ #: admin/templates/form-fields-tags.tpl.php:22
2081
+ #, fuzzy
2082
+ msgctxt "form-fields admin"
2083
+ msgid "Create Missing Fields"
2084
+ msgstr "Eintrag Felder"
2085
+
2086
+ #: admin/templates/form-fields-tags.tpl.php:30
2087
  #, fuzzy
2088
  msgctxt "form-fields admin"
2089
  msgid "Field Tag"
2090
  msgstr "Feldtyp"
2091
 
2092
+ #: admin/templates/form-fields-tags.tpl.php:31
2093
  #, fuzzy
2094
  msgctxt "form-fields admin"
2095
  msgid "Field"
2124
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2125
  msgstr ""
2126
 
2127
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.7.4) #-#-#-#-#
2128
  #. Plugin Name of the plugin/theme
2129
  #: admin/templates/header.tpl.php:4
2130
  msgid "Business Directory Plugin"
2826
  msgid "Allow Tracking"
2827
  msgstr "Verfolgung erlauben"
2828
 
2829
+ #: business-directory-plugin.php:716
2830
  msgctxt "admin plugins"
2831
  msgid "Settings"
2832
  msgstr "Einstellungen"
2833
 
2834
+ #: business-directory-plugin.php:726
2835
  msgctxt "post type general name"
2836
  msgid "Directory"
2837
  msgstr "Verzeichnis"
2838
 
2839
+ #: business-directory-plugin.php:727
2840
  msgctxt "post type singular name"
2841
  msgid "Directory"
2842
  msgstr "Verzeichnis"
2843
 
2844
+ #: business-directory-plugin.php:728
2845
  msgctxt "listing"
2846
  msgid "Add New Listing"
2847
  msgstr "Neuen Eintrag erstellen"
2848
 
2849
+ #: business-directory-plugin.php:729
2850
  msgctxt "post type"
2851
  msgid "Add New Listing"
2852
  msgstr "Neuen Eintrag erstellen"
2853
 
2854
+ #: business-directory-plugin.php:730 core/compatibility/deprecated.php:255
2855
  msgid "Edit Listing"
2856
  msgstr "Eintrag Bearbeiten"
2857
 
2858
+ #: business-directory-plugin.php:731
2859
  msgid "New Listing"
2860
  msgstr "Neuer Eintag"
2861
 
2862
+ #: business-directory-plugin.php:732
2863
  msgid "View Listing"
2864
  msgstr "Eintrag anschauen"
2865
 
2866
+ #: business-directory-plugin.php:733
2867
  msgid "Search Listings"
2868
  msgstr "Einträge durchsuchen"
2869
 
2870
+ #: business-directory-plugin.php:734
2871
  msgid "No listings found"
2872
  msgstr "Keine Einträge gefunden"
2873
 
2874
+ #: business-directory-plugin.php:735
2875
  msgid "No listings found in trash"
2876
  msgstr "Keine Einträge im Papierkorb gefunden"
2877
 
2878
+ #: business-directory-plugin.php:757
2879
  msgid "Directory Categories"
2880
  msgstr "Verzeichnis Kategorien"
2881
 
2882
+ #: business-directory-plugin.php:870 business-directory-plugin.php:877
2883
  msgctxt "rss feed"
2884
  msgid "%s Feed"
2885
  msgstr "% Feed"
2886
 
2887
+ #: business-directory-plugin.php:1295
2888
  msgctxt "title"
2889
  msgid "Submit A Listing"
2890
  msgstr "Eintrag zusenden"
2891
 
2892
+ #: business-directory-plugin.php:1305
2893
  msgctxt "title"
2894
  msgid "Find a Listing"
2895
  msgstr "Eintrag finden"
2896
 
2897
+ #: business-directory-plugin.php:1315
2898
  msgctxt "title"
2899
  msgid "View All Listings"
2900
  msgstr "Alle Einträge anschauen"
2901
 
2902
+ #: business-directory-plugin.php:1335
2903
  msgctxt "title"
2904
  msgid "Listings tagged: %s"
2905
  msgstr "Einträge getaggt: %s"
3055
  msgid "(Fee Unavailable)"
3056
  msgstr "(Preis nicht verfügbar)"
3057
 
3058
+ #: core/class-listings-api.php:308
3059
  msgctxt "notify email"
3060
  msgid "[%s] New listing notification"
3061
  msgstr "[%s] neue Eintragsbenachrichtigung"
3062
 
3063
+ #: core/class-listings-api.php:327
3064
  msgctxt "notify email"
3065
  msgid "[%s] Listing edit notification"
3066
  msgstr "[%s] Eintrag bearbeiten Benachrichtigung"
4635
  msgid "Upgrade Listing"
4636
  msgstr "Eintrag aktualisieren"
4637
 
4638
+ #: core/compatibility/deprecated.php:214 core/templates-ui.php:186
4639
  msgid "Submit A Listing"
4640
  msgstr "Eintrag zusenden"
4641
 
4642
+ #: core/compatibility/deprecated.php:227 core/templates-ui.php:195
4643
  msgid "View Listings"
4644
  msgstr "Eintrag anschauen"
4645
 
4646
+ #: core/compatibility/deprecated.php:238 core/templates-ui.php:205
4647
  msgid "Directory"
4648
  msgstr "Verzeichnis"
4649
 
4650
  #: core/compatibility/templates/wpbusdirman-index-categories.php:12
4651
+ #: core/templates-ui.php:232
4652
  msgctxt "templates"
4653
  msgid "Search Listings"
4654
  msgstr "Eintrag suchen"
5192
  msgid "Listing upgrade to featured"
5193
  msgstr "Eintrag aktualisieren auf Hervorhebung"
5194
 
5195
+ #: core/installer.php:941
5196
  msgid "Business Directory - Manual Upgrade Required"
5197
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung erforderlich"
5198
 
5199
+ #: core/installer.php:943
5200
  msgid ""
5201
  "Business Directory features are currently disabled because the plugin needs "
5202
  "to perform a manual upgrade before continuing."
5204
  "Branchenverzeichnis Hervorhebungen sind aktuell deaktiviert, weil das Modul "
5205
  "manuell aktualisiert werden muss, bevor weiter hervorgehoben werden kann."
5206
 
5207
+ #: core/installer.php:945
5208
  msgid "Perform Manual Upgrade"
5209
  msgstr "Manuelle Aktualisierung durchführen"
5210
 
5211
+ #: core/installer.php:961 core/installer.php:962 core/installer.php:973
5212
  msgid "Business Directory - Manual Upgrade"
5213
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung"
5214
 
5215
+ #: core/installer.php:977
5216
  msgid ""
5217
  "Business Directory features are currently disabled because the plugin needs "
5218
  "to perform a manual upgrade before it can be used."
5220
  "Branchenverzeichnis Hervorhebungen sind momentan deaktiviert weil das Modul "
5221
  "manuell aktualisiert werden muss, bevor es weiter verwendet werden kann."
5222
 
5223
+ #: core/installer.php:979
5224
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5225
  msgstr ""
5226
  "Klicke \"Starte Aktualisierung\" und warte bis der Vorgang beendet wurde."
5227
 
5228
+ #: core/installer.php:982
5229
  msgctxt "manual-upgrade"
5230
  msgid "Start Upgrade"
5231
  msgstr "Starte Aktualisierung"
5232
 
5233
+ #: core/installer.php:984
5234
  msgctxt "manual-upgrade"
5235
  msgid "Pause Upgrade"
5236
  msgstr "Aktualisierung pausieren"
5237
 
5238
+ #: core/installer.php:990
5239
  msgctxt "manual-upgrade"
5240
  msgid ""
5241
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
5244
  "Die Aktualisierung wurde erfolgreich durchgeführt. Branchenverzeichnis "
5245
  "Erweiterung ist nun verfügbar."
5246
 
5247
+ #: core/installer.php:993
5248
  msgctxt "manual-upgrade"
5249
  msgid "Go to \"Directory Admin\""
5250
  msgstr "Nach \" Verzeichnis Administration\""
5471
  msgid "Featured Listing"
5472
  msgstr "Hervorgehobene Einträge"
5473
 
5474
+ #: core/templates/listings.tpl.php:6 core/templates/search.tpl.php:17
5475
  #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:21
5476
  msgctxt "templates"
5477
  msgid "No listings found."
5489
  msgid "Next &raquo;"
5490
  msgstr "Nächste &raquo;"
5491
 
5492
+ #: core/templates/search.tpl.php:3 templates/search-form.tpl.php:15
5493
+ #: templates/search.tpl.php:6
5494
+ msgctxt "search"
5495
+ msgid "Search"
5496
+ msgstr "Suche"
5497
+
5498
+ #: core/templates/search.tpl.php:10 templates/search.tpl.php:14
5499
+ msgctxt "search"
5500
+ msgid "Search Results"
5501
+ msgstr "Ergebnisse durchsuchen"
5502
+
5503
+ #: core/templates/search.tpl.php:20 templates/manage-listings.tpl.php:11
5504
+ #: templates/search.tpl.php:24
5505
+ msgctxt "templates"
5506
+ msgid "Return to directory"
5507
+ msgstr "Zurück zum Verzeichnis"
5508
+
5509
+ #: core/templates-ui.php:162
5510
  msgctxt "templates"
5511
  msgid "No listing categories found."
5512
  msgstr "Keine Eintragskategorie gefunden."
5513
 
5514
+ #: core/templates-ui.php:235
5515
  msgctxt "templates"
5516
  msgid "Advanced Search"
5517
  msgstr "Erweiterte Suche"
5518
 
5519
+ #: core/templates-ui.php:261 core/templates-ui.php:286
5520
  msgctxt "templates sort"
5521
  msgid "Sort By:"
5522
  msgstr "Sortieren nach"
5523
 
5524
+ #: core/templates-ui.php:280
5525
  msgctxt "sort"
5526
  msgid "Reset"
5527
  msgstr "Zurücksetzen"
5528
 
5529
+ #: core/templates-ui.php:302
5530
  #, fuzzy
5531
  msgctxt "sort"
5532
  msgid "(Reset)"
5533
  msgstr "Zurücksetzen"
5534
 
5535
+ #: core/themes.php:607
5536
  #, fuzzy
5537
  msgctxt "themes"
5538
  msgid "ZIP file is not a valid BD theme file."
5539
  msgstr "Bitte eine gültige E-mailadresse eingeben."
5540
 
5541
+ #: core/themes.php:613
5542
  #, fuzzy
5543
  msgctxt "themes"
5544
  msgid "Could not create themes directory."
5545
  msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
5546
 
5547
+ #: core/themes.php:621
5548
  #, fuzzy
5549
  msgctxt "themes"
5550
  msgid "Could not remove previous theme directory \"%s\"."
5551
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
5552
 
5553
+ #: core/themes.php:627
5554
  #, fuzzy
5555
  msgctxt "themes"
5556
  msgid "Could not move new theme into theme directory."
5945
  msgid "Listings tagged: %s"
5946
  msgstr "Getaggte Einträge: %s"
5947
 
5948
+ #: core/views.php:489
5949
  msgctxt "templates"
5950
  msgid ""
5951
  "There are no categories assigned to the business directory yet. You need to "
5960
  "nicht erstellt werden kann. Einträge können nicht erstellt werden bis ein "
5961
  "Kategorie zugewiesen wurde."
5962
 
5963
+ #: core/views.php:491
5964
  msgctxt "templates"
5965
  msgid "There are currently no listings in the directory."
5966
  msgstr "Keine Einträge im Verzeichnis vorhanden. "
5967
 
5968
+ #: core/views.php:509
5969
  msgctxt "templates"
5970
  msgid ""
5971
  "You have \"Hide Empty Categories\" on and some categories that don't have "
6383
  msgid "You do not currently have any listings in the directory."
6384
  msgstr "Momentan sind keine Einträge im Verzeichnis vorhanden."
6385
 
 
 
 
 
 
6386
  #: templates/manage-recurring-cancel.tpl.php:1
6387
  msgctxt "manage recurring"
6388
  msgid "Manage Recurring Payments - Cancel"
6626
  msgid "Clear"
6627
  msgstr "Säubern"
6628
 
 
 
 
 
 
 
 
 
 
 
6629
  #: templates/submit-listing/category-selection.tpl.php:1
6630
  msgctxt "templates"
6631
  msgid "Category Selection"
6823
  msgid "http://businessdirectoryplugin.com"
6824
  msgstr "http://businessdirectoryplugin.com"
6825
 
6826
+ #, fuzzy
6827
+ #~ msgctxt "themes"
6828
+ #~ msgid "Create suggested fields"
6829
+ #~ msgstr "Erstelle diese benötigten Felder für mich"
6830
+
6831
  #~ msgctxt "fees admin"
6832
  #~ msgid "You do not have any listing fees setup yet."
6833
  #~ msgstr "Du hast bisher noch keine Konfiguration für Preise von Einträgen."
languages/WPBDM-en_US.mo CHANGED
Binary file
languages/WPBDM-en_US.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-02-02 17:14:20+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"
@@ -68,7 +68,7 @@ msgstr ""
68
  msgid "Downgrade to %s"
69
  msgstr ""
70
 
71
- #: admin/class-admin-listings.php:215 admin/class-admin-listings.php:395
72
  msgctxt "admin actions"
73
  msgid "Upgrade to Featured"
74
  msgstr ""
@@ -82,32 +82,32 @@ msgctxt "admin"
82
  msgid "Expired"
83
  msgstr ""
84
 
85
- #: admin/class-admin-listings.php:331
86
  msgctxt "admin actions"
87
  msgid "Edit Listing"
88
  msgstr ""
89
 
90
- #: admin/class-admin-listings.php:334
91
  msgctxt "admin actions"
92
  msgid "Delete Listing"
93
  msgstr ""
94
 
95
- #: admin/class-admin-listings.php:393
96
  msgctxt "admin actions"
97
  msgid "Publish Listing"
98
  msgstr ""
99
 
100
- #: admin/class-admin-listings.php:396
101
  msgctxt "admin actions"
102
  msgid "Downgrade to Normal"
103
  msgstr ""
104
 
105
- #: admin/class-admin-listings.php:398
106
  msgctxt "admin actions"
107
  msgid "Mark as Paid"
108
  msgstr ""
109
 
110
- #: admin/class-admin-listings.php:400
111
  msgctxt "admin actions"
112
  msgid "Renew Listing"
113
  msgstr ""
@@ -424,83 +424,78 @@ msgstr ""
424
  #: admin/class-themes-admin.php:150
425
  msgctxt "themes"
426
  msgid ""
427
- "For better results, \"%s\" theme suggests the following form fields to be "
428
- "created."
429
  msgstr ""
430
 
431
- #: admin/class-themes-admin.php:157
432
  msgctxt "themes"
433
- msgid "Dismiss this warning"
434
  msgstr ""
435
 
436
- #: admin/class-themes-admin.php:160
437
- msgctxt "themes"
438
- msgid "Create suggested fields"
439
- msgstr ""
440
-
441
- #: admin/class-themes-admin.php:167
442
  msgctxt "themes"
443
  msgid "Suggested fields created successfully."
444
  msgstr ""
445
 
446
- #: admin/class-themes-admin.php:170
447
  msgctxt "themes"
448
  msgid "Theme installed successfully."
449
  msgstr ""
450
 
451
- #: admin/class-themes-admin.php:173
452
  msgctxt "themes"
453
  msgid "Theme was deleted sucessfully."
454
  msgstr ""
455
 
456
- #: admin/class-themes-admin.php:176
457
  msgctxt "themes"
458
  msgid "Could not delete theme directory. Check permissions."
459
  msgstr ""
460
 
461
- #: admin/class-themes-admin.php:202
462
  msgctxt "themes"
463
  msgid "Please upload a valid theme file."
464
  msgstr ""
465
 
466
- #: admin/class-themes-admin.php:209
467
  msgctxt "themes"
468
  msgid "Could not move \"%s\" to a temporary directory."
469
  msgstr ""
470
 
471
- #: admin/class-themes-admin.php:310 admin/class-themes-admin.php:371
472
  #: core/licensing.php:127 core/licensing.php:159
473
  msgctxt "licensing"
474
  msgid "Could not contact licensing server"
475
  msgstr ""
476
 
477
- #: admin/class-themes-admin.php:316 core/licensing.php:132
478
  #: core/licensing.php:166
479
  msgctxt "licensing"
480
  msgid "License key is invalid"
481
  msgstr ""
482
 
483
- #: admin/class-themes-admin.php:321 core/licensing.php:330
484
  msgctxt "licensing"
485
  msgid "Could not activate license: %s."
486
  msgstr ""
487
 
488
- #: admin/class-themes-admin.php:334 core/licensing.php:332
489
  msgctxt "licensing"
490
  msgid "License activated"
491
  msgstr ""
492
 
493
- #: admin/class-themes-admin.php:377
494
  msgctxt "licensing"
495
  msgid "Invalid response from server"
496
  msgstr ""
497
 
498
- #: admin/class-themes-admin.php:394 core/licensing.php:350
499
  msgctxt "licensing"
500
  msgid "License deactivated"
501
  msgstr ""
502
 
503
- #: admin/class-themes-admin.php:410
504
  msgctxt "themes"
505
  msgid "Activate your <a>license key</a> to use this theme."
506
  msgstr ""
@@ -758,7 +753,7 @@ msgctxt "fees order"
758
  msgid "Custom Order"
759
  msgstr ""
760
 
761
- #: admin/fees.php:341
762
  msgctxt "fees admin"
763
  msgid "Fee updated."
764
  msgstr ""
@@ -885,67 +880,67 @@ msgctxt "form-fields admin"
885
  msgid "Required fields created successfully."
886
  msgstr ""
887
 
888
- #: admin/form-fields.php:286
889
  msgctxt "form-fields admin"
890
  msgid "Title"
891
  msgstr ""
892
 
893
- #: admin/form-fields.php:287
894
  msgctxt "form-fields admin"
895
  msgid "Category"
896
  msgstr ""
897
 
898
- #: admin/form-fields.php:288
899
  msgctxt "form-fields admin"
900
  msgid "Excerpt"
901
  msgstr ""
902
 
903
- #: admin/form-fields.php:289
904
  msgctxt "form-fields admin"
905
  msgid "Content"
906
  msgstr ""
907
 
908
- #: admin/form-fields.php:290
909
  msgctxt "form-fields admin"
910
  msgid "Tags"
911
  msgstr ""
912
 
913
- #: admin/form-fields.php:291
914
  msgctxt "form-fields admin"
915
  msgid "Address"
916
  msgstr ""
917
 
918
- #: admin/form-fields.php:292
919
  msgctxt "form-fields admin"
920
  msgid "ZIP Code"
921
  msgstr ""
922
 
923
- #: admin/form-fields.php:293
924
  msgctxt "form-fields admin"
925
  msgid "FAX Number"
926
  msgstr ""
927
 
928
- #: admin/form-fields.php:294
929
  msgctxt "form-fields admin"
930
  msgid "Phone Number"
931
  msgstr ""
932
 
933
- #: admin/form-fields.php:295
934
  msgctxt "form-fields admin"
935
  msgid "Ratings Field"
936
  msgstr ""
937
 
938
- #: admin/form-fields.php:296
939
  msgctxt "form-fields admin"
940
  msgid "Twitter"
941
  msgstr ""
942
 
943
- #: admin/form-fields.php:297
944
  msgctxt "form-fields admin"
945
  msgid "Website"
946
  msgstr ""
947
 
948
- #: admin/form-fields.php:318
949
  msgctxt "form-fields admin"
950
  msgid "Tags updated."
951
  msgstr ""
@@ -1944,13 +1939,25 @@ msgctxt "form-fields admin"
1944
  msgid "Theme Tags"
1945
  msgstr ""
1946
 
1947
- #: admin/templates/form-fields-tags.tpl.php:21
1948
  msgctxt "form-fields admin"
1949
- msgid "Field Tag"
 
 
1950
  msgstr ""
1951
 
1952
  #: admin/templates/form-fields-tags.tpl.php:22
1953
  msgctxt "form-fields admin"
 
 
 
 
 
 
 
 
 
 
1954
  msgid "Field"
1955
  msgstr ""
1956
 
@@ -1982,7 +1989,7 @@ msgctxt "form-fields admin"
1982
  msgid "Please see the <a>Form Fields documentation</a> for more details."
1983
  msgstr ""
1984
 
1985
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.7.2) #-#-#-#-#
1986
  #. Plugin Name of the plugin/theme
1987
  #: admin/templates/header.tpl.php:4
1988
  msgid "Business Directory Plugin"
@@ -2637,80 +2644,80 @@ msgctxt "tracking"
2637
  msgid "Allow Tracking"
2638
  msgstr ""
2639
 
2640
- #: business-directory-plugin.php:702
2641
  msgctxt "admin plugins"
2642
  msgid "Settings"
2643
  msgstr ""
2644
 
2645
- #: business-directory-plugin.php:712
2646
  msgctxt "post type general name"
2647
  msgid "Directory"
2648
  msgstr ""
2649
 
2650
- #: business-directory-plugin.php:713
2651
  msgctxt "post type singular name"
2652
  msgid "Directory"
2653
  msgstr ""
2654
 
2655
- #: business-directory-plugin.php:714
2656
  msgctxt "listing"
2657
  msgid "Add New Listing"
2658
  msgstr ""
2659
 
2660
- #: business-directory-plugin.php:715
2661
  msgctxt "post type"
2662
  msgid "Add New Listing"
2663
  msgstr ""
2664
 
2665
- #: business-directory-plugin.php:716 core/compatibility/deprecated.php:255
2666
  msgid "Edit Listing"
2667
  msgstr ""
2668
 
2669
- #: business-directory-plugin.php:717
2670
  msgid "New Listing"
2671
  msgstr ""
2672
 
2673
- #: business-directory-plugin.php:718
2674
  msgid "View Listing"
2675
  msgstr ""
2676
 
2677
- #: business-directory-plugin.php:719
2678
  msgid "Search Listings"
2679
  msgstr ""
2680
 
2681
- #: business-directory-plugin.php:720
2682
  msgid "No listings found"
2683
  msgstr ""
2684
 
2685
- #: business-directory-plugin.php:721
2686
  msgid "No listings found in trash"
2687
  msgstr ""
2688
 
2689
- #: business-directory-plugin.php:743
2690
  msgid "Directory Categories"
2691
  msgstr ""
2692
 
2693
- #: business-directory-plugin.php:856 business-directory-plugin.php:863
2694
  msgctxt "rss feed"
2695
  msgid "%s Feed"
2696
  msgstr ""
2697
 
2698
- #: business-directory-plugin.php:1265
2699
  msgctxt "title"
2700
  msgid "Submit A Listing"
2701
  msgstr ""
2702
 
2703
- #: business-directory-plugin.php:1275
2704
  msgctxt "title"
2705
  msgid "Find a Listing"
2706
  msgstr ""
2707
 
2708
- #: business-directory-plugin.php:1285
2709
  msgctxt "title"
2710
  msgid "View All Listings"
2711
  msgstr ""
2712
 
2713
- #: business-directory-plugin.php:1305
2714
  msgctxt "title"
2715
  msgid "Listings tagged: %s"
2716
  msgstr ""
@@ -2854,12 +2861,12 @@ msgctxt "listing"
2854
  msgid "(Fee Unavailable)"
2855
  msgstr ""
2856
 
2857
- #: core/class-listings-api.php:300
2858
  msgctxt "notify email"
2859
  msgid "[%s] New listing notification"
2860
  msgstr ""
2861
 
2862
- #: core/class-listings-api.php:319
2863
  msgctxt "notify email"
2864
  msgid "[%s] Listing edit notification"
2865
  msgstr ""
@@ -4326,20 +4333,20 @@ msgstr ""
4326
  msgid "Upgrade Listing"
4327
  msgstr ""
4328
 
4329
- #: core/compatibility/deprecated.php:214 core/templates-ui.php:183
4330
  msgid "Submit A Listing"
4331
  msgstr ""
4332
 
4333
- #: core/compatibility/deprecated.php:227 core/templates-ui.php:192
4334
  msgid "View Listings"
4335
  msgstr ""
4336
 
4337
- #: core/compatibility/deprecated.php:238 core/templates-ui.php:202
4338
  msgid "Directory"
4339
  msgstr ""
4340
 
4341
  #: core/compatibility/templates/wpbusdirman-index-categories.php:12
4342
- #: core/templates-ui.php:229
4343
  msgctxt "templates"
4344
  msgid "Search Listings"
4345
  msgstr ""
@@ -4855,52 +4862,52 @@ msgctxt "installer"
4855
  msgid "Listing upgrade to featured"
4856
  msgstr ""
4857
 
4858
- #: core/installer.php:933
4859
  msgid "Business Directory - Manual Upgrade Required"
4860
  msgstr ""
4861
 
4862
- #: core/installer.php:935
4863
  msgid ""
4864
  "Business Directory features are currently disabled because the plugin needs "
4865
  "to perform a manual upgrade before continuing."
4866
  msgstr ""
4867
 
4868
- #: core/installer.php:937
4869
  msgid "Perform Manual Upgrade"
4870
  msgstr ""
4871
 
4872
- #: core/installer.php:953 core/installer.php:954 core/installer.php:965
4873
  msgid "Business Directory - Manual Upgrade"
4874
  msgstr ""
4875
 
4876
- #: core/installer.php:969
4877
  msgid ""
4878
  "Business Directory features are currently disabled because the plugin needs "
4879
  "to perform a manual upgrade before it can be used."
4880
  msgstr ""
4881
 
4882
- #: core/installer.php:971
4883
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4884
  msgstr ""
4885
 
4886
- #: core/installer.php:974
4887
  msgctxt "manual-upgrade"
4888
  msgid "Start Upgrade"
4889
  msgstr ""
4890
 
4891
- #: core/installer.php:976
4892
  msgctxt "manual-upgrade"
4893
  msgid "Pause Upgrade"
4894
  msgstr ""
4895
 
4896
- #: core/installer.php:982
4897
  msgctxt "manual-upgrade"
4898
  msgid ""
4899
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
4900
  "available."
4901
  msgstr ""
4902
 
4903
- #: core/installer.php:985
4904
  msgctxt "manual-upgrade"
4905
  msgid "Go to \"Directory Admin\""
4906
  msgstr ""
@@ -5098,7 +5105,7 @@ msgctxt "templates"
5098
  msgid "Featured Listing"
5099
  msgstr ""
5100
 
5101
- #: core/templates/listings.tpl.php:6
5102
  #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:21
5103
  msgctxt "templates"
5104
  msgid "No listings found."
@@ -5116,47 +5123,64 @@ msgctxt "templates"
5116
  msgid "Next &raquo;"
5117
  msgstr ""
5118
 
5119
- #: core/templates-ui.php:159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5120
  msgctxt "templates"
5121
  msgid "No listing categories found."
5122
  msgstr ""
5123
 
5124
- #: core/templates-ui.php:232
5125
  msgctxt "templates"
5126
  msgid "Advanced Search"
5127
  msgstr ""
5128
 
5129
- #: core/templates-ui.php:258 core/templates-ui.php:283
5130
  msgctxt "templates sort"
5131
  msgid "Sort By:"
5132
  msgstr ""
5133
 
5134
- #: core/templates-ui.php:277
5135
  msgctxt "sort"
5136
  msgid "Reset"
5137
  msgstr ""
5138
 
5139
- #: core/templates-ui.php:299
5140
  msgctxt "sort"
5141
  msgid "(Reset)"
5142
  msgstr ""
5143
 
5144
- #: core/themes.php:597
5145
  msgctxt "themes"
5146
  msgid "ZIP file is not a valid BD theme file."
5147
  msgstr ""
5148
 
5149
- #: core/themes.php:603
5150
  msgctxt "themes"
5151
  msgid "Could not create themes directory."
5152
  msgstr ""
5153
 
5154
- #: core/themes.php:611
5155
  msgctxt "themes"
5156
  msgid "Could not remove previous theme directory \"%s\"."
5157
  msgstr ""
5158
 
5159
- #: core/themes.php:617
5160
  msgctxt "themes"
5161
  msgid "Could not move new theme into theme directory."
5162
  msgstr ""
@@ -5516,7 +5540,7 @@ msgctxt "templates"
5516
  msgid "Listings tagged: %s"
5517
  msgstr ""
5518
 
5519
- #: core/views.php:486
5520
  msgctxt "templates"
5521
  msgid ""
5522
  "There are no categories assigned to the business directory yet. You need to "
@@ -5526,12 +5550,12 @@ msgid ""
5526
  "categories to the business directory."
5527
  msgstr ""
5528
 
5529
- #: core/views.php:488
5530
  msgctxt "templates"
5531
  msgid "There are currently no listings in the directory."
5532
  msgstr ""
5533
 
5534
- #: core/views.php:506
5535
  msgctxt "templates"
5536
  msgid ""
5537
  "You have \"Hide Empty Categories\" on and some categories that don't have "
@@ -5918,11 +5942,6 @@ msgctxt "templates"
5918
  msgid "You do not currently have any listings in the directory."
5919
  msgstr ""
5920
 
5921
- #: templates/manage-listings.tpl.php:11 templates/search.tpl.php:24
5922
- msgctxt "templates"
5923
- msgid "Return to directory"
5924
- msgstr ""
5925
-
5926
  #: templates/manage-recurring-cancel.tpl.php:1
5927
  msgctxt "manage recurring"
5928
  msgid "Manage Recurring Payments - Cancel"
@@ -6156,16 +6175,6 @@ msgctxt "search"
6156
  msgid "Clear"
6157
  msgstr ""
6158
 
6159
- #: templates/search-form.tpl.php:15 templates/search.tpl.php:6
6160
- msgctxt "search"
6161
- msgid "Search"
6162
- msgstr ""
6163
-
6164
- #: templates/search.tpl.php:14
6165
- msgctxt "search"
6166
- msgid "Search Results"
6167
- msgstr ""
6168
-
6169
  #: templates/submit-listing/category-selection.tpl.php:1
6170
  msgctxt "templates"
6171
  msgid "Category Selection"
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-02-24 20:36:14+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"
68
  msgid "Downgrade to %s"
69
  msgstr ""
70
 
71
+ #: admin/class-admin-listings.php:215 admin/class-admin-listings.php:394
72
  msgctxt "admin actions"
73
  msgid "Upgrade to Featured"
74
  msgstr ""
82
  msgid "Expired"
83
  msgstr ""
84
 
85
+ #: admin/class-admin-listings.php:330
86
  msgctxt "admin actions"
87
  msgid "Edit Listing"
88
  msgstr ""
89
 
90
+ #: admin/class-admin-listings.php:333
91
  msgctxt "admin actions"
92
  msgid "Delete Listing"
93
  msgstr ""
94
 
95
+ #: admin/class-admin-listings.php:392
96
  msgctxt "admin actions"
97
  msgid "Publish Listing"
98
  msgstr ""
99
 
100
+ #: admin/class-admin-listings.php:395
101
  msgctxt "admin actions"
102
  msgid "Downgrade to Normal"
103
  msgstr ""
104
 
105
+ #: admin/class-admin-listings.php:397
106
  msgctxt "admin actions"
107
  msgid "Mark as Paid"
108
  msgstr ""
109
 
110
+ #: admin/class-admin-listings.php:399
111
  msgctxt "admin actions"
112
  msgid "Renew Listing"
113
  msgstr ""
424
  #: admin/class-themes-admin.php:150
425
  msgctxt "themes"
426
  msgid ""
427
+ "%s requires that you tag your existing fields to match some places we want "
428
+ "to put your data on the theme. Below are fields we think are missing."
429
  msgstr ""
430
 
431
+ #: admin/class-themes-admin.php:159
432
  msgctxt "themes"
433
+ msgid "Map My Fields"
434
  msgstr ""
435
 
436
+ #: admin/class-themes-admin.php:166
 
 
 
 
 
437
  msgctxt "themes"
438
  msgid "Suggested fields created successfully."
439
  msgstr ""
440
 
441
+ #: admin/class-themes-admin.php:169
442
  msgctxt "themes"
443
  msgid "Theme installed successfully."
444
  msgstr ""
445
 
446
+ #: admin/class-themes-admin.php:172
447
  msgctxt "themes"
448
  msgid "Theme was deleted sucessfully."
449
  msgstr ""
450
 
451
+ #: admin/class-themes-admin.php:175
452
  msgctxt "themes"
453
  msgid "Could not delete theme directory. Check permissions."
454
  msgstr ""
455
 
456
+ #: admin/class-themes-admin.php:201
457
  msgctxt "themes"
458
  msgid "Please upload a valid theme file."
459
  msgstr ""
460
 
461
+ #: admin/class-themes-admin.php:208
462
  msgctxt "themes"
463
  msgid "Could not move \"%s\" to a temporary directory."
464
  msgstr ""
465
 
466
+ #: admin/class-themes-admin.php:309 admin/class-themes-admin.php:370
467
  #: core/licensing.php:127 core/licensing.php:159
468
  msgctxt "licensing"
469
  msgid "Could not contact licensing server"
470
  msgstr ""
471
 
472
+ #: admin/class-themes-admin.php:315 core/licensing.php:132
473
  #: core/licensing.php:166
474
  msgctxt "licensing"
475
  msgid "License key is invalid"
476
  msgstr ""
477
 
478
+ #: admin/class-themes-admin.php:320 core/licensing.php:330
479
  msgctxt "licensing"
480
  msgid "Could not activate license: %s."
481
  msgstr ""
482
 
483
+ #: admin/class-themes-admin.php:333 core/licensing.php:332
484
  msgctxt "licensing"
485
  msgid "License activated"
486
  msgstr ""
487
 
488
+ #: admin/class-themes-admin.php:376
489
  msgctxt "licensing"
490
  msgid "Invalid response from server"
491
  msgstr ""
492
 
493
+ #: admin/class-themes-admin.php:393 core/licensing.php:350
494
  msgctxt "licensing"
495
  msgid "License deactivated"
496
  msgstr ""
497
 
498
+ #: admin/class-themes-admin.php:409
499
  msgctxt "themes"
500
  msgid "Activate your <a>license key</a> to use this theme."
501
  msgstr ""
753
  msgid "Custom Order"
754
  msgstr ""
755
 
756
+ #: admin/fees.php:339
757
  msgctxt "fees admin"
758
  msgid "Fee updated."
759
  msgstr ""
880
  msgid "Required fields created successfully."
881
  msgstr ""
882
 
883
+ #: admin/form-fields.php:288
884
  msgctxt "form-fields admin"
885
  msgid "Title"
886
  msgstr ""
887
 
888
+ #: admin/form-fields.php:289
889
  msgctxt "form-fields admin"
890
  msgid "Category"
891
  msgstr ""
892
 
893
+ #: admin/form-fields.php:290
894
  msgctxt "form-fields admin"
895
  msgid "Excerpt"
896
  msgstr ""
897
 
898
+ #: admin/form-fields.php:291
899
  msgctxt "form-fields admin"
900
  msgid "Content"
901
  msgstr ""
902
 
903
+ #: admin/form-fields.php:292
904
  msgctxt "form-fields admin"
905
  msgid "Tags"
906
  msgstr ""
907
 
908
+ #: admin/form-fields.php:293
909
  msgctxt "form-fields admin"
910
  msgid "Address"
911
  msgstr ""
912
 
913
+ #: admin/form-fields.php:294
914
  msgctxt "form-fields admin"
915
  msgid "ZIP Code"
916
  msgstr ""
917
 
918
+ #: admin/form-fields.php:295
919
  msgctxt "form-fields admin"
920
  msgid "FAX Number"
921
  msgstr ""
922
 
923
+ #: admin/form-fields.php:296
924
  msgctxt "form-fields admin"
925
  msgid "Phone Number"
926
  msgstr ""
927
 
928
+ #: admin/form-fields.php:297
929
  msgctxt "form-fields admin"
930
  msgid "Ratings Field"
931
  msgstr ""
932
 
933
+ #: admin/form-fields.php:298
934
  msgctxt "form-fields admin"
935
  msgid "Twitter"
936
  msgstr ""
937
 
938
+ #: admin/form-fields.php:299
939
  msgctxt "form-fields admin"
940
  msgid "Website"
941
  msgstr ""
942
 
943
+ #: admin/form-fields.php:320
944
  msgctxt "form-fields admin"
945
  msgid "Tags updated."
946
  msgstr ""
1939
  msgid "Theme Tags"
1940
  msgstr ""
1941
 
1942
+ #: admin/templates/form-fields-tags.tpl.php:19
1943
  msgctxt "form-fields admin"
1944
+ msgid ""
1945
+ "Before you create fields, make sure you've mapped all of your EXISTING ones "
1946
+ "first, otherwise you'll appear to be \"missing data\" on your listings."
1947
  msgstr ""
1948
 
1949
  #: admin/templates/form-fields-tags.tpl.php:22
1950
  msgctxt "form-fields admin"
1951
+ msgid "Create Missing Fields"
1952
+ msgstr ""
1953
+
1954
+ #: admin/templates/form-fields-tags.tpl.php:30
1955
+ msgctxt "form-fields admin"
1956
+ msgid "Field Tag"
1957
+ msgstr ""
1958
+
1959
+ #: admin/templates/form-fields-tags.tpl.php:31
1960
+ msgctxt "form-fields admin"
1961
  msgid "Field"
1962
  msgstr ""
1963
 
1989
  msgid "Please see the <a>Form Fields documentation</a> for more details."
1990
  msgstr ""
1991
 
1992
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.7.4) #-#-#-#-#
1993
  #. Plugin Name of the plugin/theme
1994
  #: admin/templates/header.tpl.php:4
1995
  msgid "Business Directory Plugin"
2644
  msgid "Allow Tracking"
2645
  msgstr ""
2646
 
2647
+ #: business-directory-plugin.php:716
2648
  msgctxt "admin plugins"
2649
  msgid "Settings"
2650
  msgstr ""
2651
 
2652
+ #: business-directory-plugin.php:726
2653
  msgctxt "post type general name"
2654
  msgid "Directory"
2655
  msgstr ""
2656
 
2657
+ #: business-directory-plugin.php:727
2658
  msgctxt "post type singular name"
2659
  msgid "Directory"
2660
  msgstr ""
2661
 
2662
+ #: business-directory-plugin.php:728
2663
  msgctxt "listing"
2664
  msgid "Add New Listing"
2665
  msgstr ""
2666
 
2667
+ #: business-directory-plugin.php:729
2668
  msgctxt "post type"
2669
  msgid "Add New Listing"
2670
  msgstr ""
2671
 
2672
+ #: business-directory-plugin.php:730 core/compatibility/deprecated.php:255
2673
  msgid "Edit Listing"
2674
  msgstr ""
2675
 
2676
+ #: business-directory-plugin.php:731
2677
  msgid "New Listing"
2678
  msgstr ""
2679
 
2680
+ #: business-directory-plugin.php:732
2681
  msgid "View Listing"
2682
  msgstr ""
2683
 
2684
+ #: business-directory-plugin.php:733
2685
  msgid "Search Listings"
2686
  msgstr ""
2687
 
2688
+ #: business-directory-plugin.php:734
2689
  msgid "No listings found"
2690
  msgstr ""
2691
 
2692
+ #: business-directory-plugin.php:735
2693
  msgid "No listings found in trash"
2694
  msgstr ""
2695
 
2696
+ #: business-directory-plugin.php:757
2697
  msgid "Directory Categories"
2698
  msgstr ""
2699
 
2700
+ #: business-directory-plugin.php:870 business-directory-plugin.php:877
2701
  msgctxt "rss feed"
2702
  msgid "%s Feed"
2703
  msgstr ""
2704
 
2705
+ #: business-directory-plugin.php:1295
2706
  msgctxt "title"
2707
  msgid "Submit A Listing"
2708
  msgstr ""
2709
 
2710
+ #: business-directory-plugin.php:1305
2711
  msgctxt "title"
2712
  msgid "Find a Listing"
2713
  msgstr ""
2714
 
2715
+ #: business-directory-plugin.php:1315
2716
  msgctxt "title"
2717
  msgid "View All Listings"
2718
  msgstr ""
2719
 
2720
+ #: business-directory-plugin.php:1335
2721
  msgctxt "title"
2722
  msgid "Listings tagged: %s"
2723
  msgstr ""
2861
  msgid "(Fee Unavailable)"
2862
  msgstr ""
2863
 
2864
+ #: core/class-listings-api.php:308
2865
  msgctxt "notify email"
2866
  msgid "[%s] New listing notification"
2867
  msgstr ""
2868
 
2869
+ #: core/class-listings-api.php:327
2870
  msgctxt "notify email"
2871
  msgid "[%s] Listing edit notification"
2872
  msgstr ""
4333
  msgid "Upgrade Listing"
4334
  msgstr ""
4335
 
4336
+ #: core/compatibility/deprecated.php:214 core/templates-ui.php:186
4337
  msgid "Submit A Listing"
4338
  msgstr ""
4339
 
4340
+ #: core/compatibility/deprecated.php:227 core/templates-ui.php:195
4341
  msgid "View Listings"
4342
  msgstr ""
4343
 
4344
+ #: core/compatibility/deprecated.php:238 core/templates-ui.php:205
4345
  msgid "Directory"
4346
  msgstr ""
4347
 
4348
  #: core/compatibility/templates/wpbusdirman-index-categories.php:12
4349
+ #: core/templates-ui.php:232
4350
  msgctxt "templates"
4351
  msgid "Search Listings"
4352
  msgstr ""
4862
  msgid "Listing upgrade to featured"
4863
  msgstr ""
4864
 
4865
+ #: core/installer.php:941
4866
  msgid "Business Directory - Manual Upgrade Required"
4867
  msgstr ""
4868
 
4869
+ #: core/installer.php:943
4870
  msgid ""
4871
  "Business Directory features are currently disabled because the plugin needs "
4872
  "to perform a manual upgrade before continuing."
4873
  msgstr ""
4874
 
4875
+ #: core/installer.php:945
4876
  msgid "Perform Manual Upgrade"
4877
  msgstr ""
4878
 
4879
+ #: core/installer.php:961 core/installer.php:962 core/installer.php:973
4880
  msgid "Business Directory - Manual Upgrade"
4881
  msgstr ""
4882
 
4883
+ #: core/installer.php:977
4884
  msgid ""
4885
  "Business Directory features are currently disabled because the plugin needs "
4886
  "to perform a manual upgrade before it can be used."
4887
  msgstr ""
4888
 
4889
+ #: core/installer.php:979
4890
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4891
  msgstr ""
4892
 
4893
+ #: core/installer.php:982
4894
  msgctxt "manual-upgrade"
4895
  msgid "Start Upgrade"
4896
  msgstr ""
4897
 
4898
+ #: core/installer.php:984
4899
  msgctxt "manual-upgrade"
4900
  msgid "Pause Upgrade"
4901
  msgstr ""
4902
 
4903
+ #: core/installer.php:990
4904
  msgctxt "manual-upgrade"
4905
  msgid ""
4906
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
4907
  "available."
4908
  msgstr ""
4909
 
4910
+ #: core/installer.php:993
4911
  msgctxt "manual-upgrade"
4912
  msgid "Go to \"Directory Admin\""
4913
  msgstr ""
5105
  msgid "Featured Listing"
5106
  msgstr ""
5107
 
5108
+ #: core/templates/listings.tpl.php:6 core/templates/search.tpl.php:17
5109
  #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:21
5110
  msgctxt "templates"
5111
  msgid "No listings found."
5123
  msgid "Next &raquo;"
5124
  msgstr ""
5125
 
5126
+ #: core/templates/search.tpl.php:3 templates/search-form.tpl.php:15
5127
+ #: templates/search.tpl.php:6
5128
+ msgctxt "search"
5129
+ msgid "Search"
5130
+ msgstr ""
5131
+
5132
+ #: core/templates/search.tpl.php:10 templates/search.tpl.php:14
5133
+ msgctxt "search"
5134
+ msgid "Search Results"
5135
+ msgstr ""
5136
+
5137
+ #: core/templates/search.tpl.php:20 templates/manage-listings.tpl.php:11
5138
+ #: templates/search.tpl.php:24
5139
+ msgctxt "templates"
5140
+ msgid "Return to directory"
5141
+ msgstr ""
5142
+
5143
+ #: core/templates-ui.php:162
5144
  msgctxt "templates"
5145
  msgid "No listing categories found."
5146
  msgstr ""
5147
 
5148
+ #: core/templates-ui.php:235
5149
  msgctxt "templates"
5150
  msgid "Advanced Search"
5151
  msgstr ""
5152
 
5153
+ #: core/templates-ui.php:261 core/templates-ui.php:286
5154
  msgctxt "templates sort"
5155
  msgid "Sort By:"
5156
  msgstr ""
5157
 
5158
+ #: core/templates-ui.php:280
5159
  msgctxt "sort"
5160
  msgid "Reset"
5161
  msgstr ""
5162
 
5163
+ #: core/templates-ui.php:302
5164
  msgctxt "sort"
5165
  msgid "(Reset)"
5166
  msgstr ""
5167
 
5168
+ #: core/themes.php:607
5169
  msgctxt "themes"
5170
  msgid "ZIP file is not a valid BD theme file."
5171
  msgstr ""
5172
 
5173
+ #: core/themes.php:613
5174
  msgctxt "themes"
5175
  msgid "Could not create themes directory."
5176
  msgstr ""
5177
 
5178
+ #: core/themes.php:621
5179
  msgctxt "themes"
5180
  msgid "Could not remove previous theme directory \"%s\"."
5181
  msgstr ""
5182
 
5183
+ #: core/themes.php:627
5184
  msgctxt "themes"
5185
  msgid "Could not move new theme into theme directory."
5186
  msgstr ""
5540
  msgid "Listings tagged: %s"
5541
  msgstr ""
5542
 
5543
+ #: core/views.php:489
5544
  msgctxt "templates"
5545
  msgid ""
5546
  "There are no categories assigned to the business directory yet. You need to "
5550
  "categories to the business directory."
5551
  msgstr ""
5552
 
5553
+ #: core/views.php:491
5554
  msgctxt "templates"
5555
  msgid "There are currently no listings in the directory."
5556
  msgstr ""
5557
 
5558
+ #: core/views.php:509
5559
  msgctxt "templates"
5560
  msgid ""
5561
  "You have \"Hide Empty Categories\" on and some categories that don't have "
5942
  msgid "You do not currently have any listings in the directory."
5943
  msgstr ""
5944
 
 
 
 
 
 
5945
  #: templates/manage-recurring-cancel.tpl.php:1
5946
  msgctxt "manage recurring"
5947
  msgid "Manage Recurring Payments - Cancel"
6175
  msgid "Clear"
6176
  msgstr ""
6177
 
 
 
 
 
 
 
 
 
 
 
6178
  #: templates/submit-listing/category-selection.tpl.php:1
6179
  msgctxt "templates"
6180
  msgid "Category Selection"
languages/WPBDM-es_ES.mo CHANGED
Binary file
languages/WPBDM-es_ES.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6.13\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-02-02 17:14:20+00:00\n"
8
  "PO-Revision-Date: 2016-01-18 15:22-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -69,7 +69,7 @@ msgstr "Mejorar a %s"
69
  msgid "Downgrade to %s"
70
  msgstr "Degradar a %s"
71
 
72
- #: admin/class-admin-listings.php:215 admin/class-admin-listings.php:395
73
  msgctxt "admin actions"
74
  msgid "Upgrade to Featured"
75
  msgstr "Mejorar a Destacado"
@@ -83,32 +83,32 @@ msgctxt "admin"
83
  msgid "Expired"
84
  msgstr "Expirados"
85
 
86
- #: admin/class-admin-listings.php:331
87
  msgctxt "admin actions"
88
  msgid "Edit Listing"
89
  msgstr "Editar Listado"
90
 
91
- #: admin/class-admin-listings.php:334
92
  msgctxt "admin actions"
93
  msgid "Delete Listing"
94
  msgstr "Eliminar Listado"
95
 
96
- #: admin/class-admin-listings.php:393
97
  msgctxt "admin actions"
98
  msgid "Publish Listing"
99
  msgstr "Publicar Listado"
100
 
101
- #: admin/class-admin-listings.php:396
102
  msgctxt "admin actions"
103
  msgid "Downgrade to Normal"
104
  msgstr "Degradar a Normal"
105
 
106
- #: admin/class-admin-listings.php:398
107
  msgctxt "admin actions"
108
  msgid "Mark as Paid"
109
  msgstr "Marcar listado como Pagado"
110
 
111
- #: admin/class-admin-listings.php:400
112
  msgctxt "admin actions"
113
  msgid "Renew Listing"
114
  msgstr "Renovar Listado"
@@ -450,83 +450,79 @@ msgstr ""
450
  #: admin/class-themes-admin.php:150
451
  msgctxt "themes"
452
  msgid ""
453
- "For better results, \"%s\" theme suggests the following form fields to be "
454
- "created."
455
  msgstr ""
456
 
457
- #: admin/class-themes-admin.php:157
458
- msgctxt "themes"
459
- msgid "Dismiss this warning"
460
- msgstr ""
461
-
462
- #: admin/class-themes-admin.php:160
463
  msgctxt "themes"
464
- msgid "Create suggested fields"
465
- msgstr ""
466
 
467
- #: admin/class-themes-admin.php:167
468
  msgctxt "themes"
469
  msgid "Suggested fields created successfully."
470
  msgstr ""
471
 
472
- #: admin/class-themes-admin.php:170
473
  msgctxt "themes"
474
  msgid "Theme installed successfully."
475
  msgstr ""
476
 
477
- #: admin/class-themes-admin.php:173
478
  msgctxt "themes"
479
  msgid "Theme was deleted sucessfully."
480
  msgstr ""
481
 
482
- #: admin/class-themes-admin.php:176
483
  msgctxt "themes"
484
  msgid "Could not delete theme directory. Check permissions."
485
  msgstr ""
486
 
487
- #: admin/class-themes-admin.php:202
488
  msgctxt "themes"
489
  msgid "Please upload a valid theme file."
490
  msgstr ""
491
 
492
- #: admin/class-themes-admin.php:209
493
  msgctxt "themes"
494
  msgid "Could not move \"%s\" to a temporary directory."
495
  msgstr ""
496
 
497
- #: admin/class-themes-admin.php:310 admin/class-themes-admin.php:371
498
  #: core/licensing.php:127 core/licensing.php:159
499
  msgctxt "licensing"
500
  msgid "Could not contact licensing server"
501
  msgstr "No se pudo contactar el servidor de licencias"
502
 
503
- #: admin/class-themes-admin.php:316 core/licensing.php:132
504
  #: core/licensing.php:166
505
  msgctxt "licensing"
506
  msgid "License key is invalid"
507
  msgstr "La licencia es inválida"
508
 
509
- #: admin/class-themes-admin.php:321 core/licensing.php:330
510
  msgctxt "licensing"
511
  msgid "Could not activate license: %s."
512
  msgstr "No se pudo activar la licencia: %s."
513
 
514
- #: admin/class-themes-admin.php:334 core/licensing.php:332
515
  msgctxt "licensing"
516
  msgid "License activated"
517
  msgstr "Licencia activada"
518
 
519
- #: admin/class-themes-admin.php:377
520
  msgctxt "licensing"
521
  msgid "Invalid response from server"
522
  msgstr ""
523
 
524
- #: admin/class-themes-admin.php:394 core/licensing.php:350
525
  msgctxt "licensing"
526
  msgid "License deactivated"
527
  msgstr "Licencia desactivada"
528
 
529
- #: admin/class-themes-admin.php:410
530
  msgctxt "themes"
531
  msgid "Activate your <a>license key</a> to use this theme."
532
  msgstr ""
@@ -805,7 +801,7 @@ msgctxt "fees order"
805
  msgid "Custom Order"
806
  msgstr "Orden Especial"
807
 
808
- #: admin/fees.php:341
809
  msgctxt "fees admin"
810
  msgid "Fee updated."
811
  msgstr "Comisión actualizada."
@@ -943,67 +939,67 @@ msgctxt "form-fields admin"
943
  msgid "Required fields created successfully."
944
  msgstr "Campos requeridos creados satisfactoriamente."
945
 
946
- #: admin/form-fields.php:286
947
  msgctxt "form-fields admin"
948
  msgid "Title"
949
  msgstr ""
950
 
951
- #: admin/form-fields.php:287
952
  msgctxt "form-fields admin"
953
  msgid "Category"
954
  msgstr ""
955
 
956
- #: admin/form-fields.php:288
957
  msgctxt "form-fields admin"
958
  msgid "Excerpt"
959
  msgstr ""
960
 
961
- #: admin/form-fields.php:289
962
  msgctxt "form-fields admin"
963
  msgid "Content"
964
  msgstr ""
965
 
966
- #: admin/form-fields.php:290
967
  msgctxt "form-fields admin"
968
  msgid "Tags"
969
  msgstr ""
970
 
971
- #: admin/form-fields.php:291
972
  msgctxt "form-fields admin"
973
  msgid "Address"
974
  msgstr ""
975
 
976
- #: admin/form-fields.php:292
977
  msgctxt "form-fields admin"
978
  msgid "ZIP Code"
979
  msgstr ""
980
 
981
- #: admin/form-fields.php:293
982
  msgctxt "form-fields admin"
983
  msgid "FAX Number"
984
  msgstr ""
985
 
986
- #: admin/form-fields.php:294
987
  msgctxt "form-fields admin"
988
  msgid "Phone Number"
989
  msgstr ""
990
 
991
- #: admin/form-fields.php:295
992
  msgctxt "form-fields admin"
993
  msgid "Ratings Field"
994
  msgstr ""
995
 
996
- #: admin/form-fields.php:296
997
  msgctxt "form-fields admin"
998
  msgid "Twitter"
999
  msgstr ""
1000
 
1001
- #: admin/form-fields.php:297
1002
  msgctxt "form-fields admin"
1003
  msgid "Website"
1004
  msgstr ""
1005
 
1006
- #: admin/form-fields.php:318
1007
  msgctxt "form-fields admin"
1008
  msgid "Tags updated."
1009
  msgstr ""
@@ -2057,12 +2053,25 @@ msgctxt "form-fields admin"
2057
  msgid "Theme Tags"
2058
  msgstr ""
2059
 
2060
- #: admin/templates/form-fields-tags.tpl.php:21
2061
  msgctxt "form-fields admin"
2062
- msgid "Field Tag"
 
 
2063
  msgstr ""
2064
 
2065
  #: admin/templates/form-fields-tags.tpl.php:22
 
 
 
 
 
 
 
 
 
 
 
2066
  msgctxt "form-fields admin"
2067
  msgid "Field"
2068
  msgstr ""
@@ -2100,7 +2109,7 @@ msgstr ""
2100
  "Por favor vea la <a>documentación de Campos de Formulario</a> para más "
2101
  "detalles."
2102
 
2103
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.7.2) #-#-#-#-#
2104
  #. Plugin Name of the plugin/theme
2105
  #: admin/templates/header.tpl.php:4
2106
  msgid "Business Directory Plugin"
@@ -2784,80 +2793,80 @@ msgctxt "tracking"
2784
  msgid "Allow Tracking"
2785
  msgstr "Permitir Seguimiento"
2786
 
2787
- #: business-directory-plugin.php:702
2788
  msgctxt "admin plugins"
2789
  msgid "Settings"
2790
  msgstr "Configuración"
2791
 
2792
- #: business-directory-plugin.php:712
2793
  msgctxt "post type general name"
2794
  msgid "Directory"
2795
  msgstr "Directorio"
2796
 
2797
- #: business-directory-plugin.php:713
2798
  msgctxt "post type singular name"
2799
  msgid "Directory"
2800
  msgstr "Directorio"
2801
 
2802
- #: business-directory-plugin.php:714
2803
  msgctxt "listing"
2804
  msgid "Add New Listing"
2805
  msgstr "Agregar Nuevo Listado"
2806
 
2807
- #: business-directory-plugin.php:715
2808
  msgctxt "post type"
2809
  msgid "Add New Listing"
2810
  msgstr "Agregar Nuevo Listado"
2811
 
2812
- #: business-directory-plugin.php:716 core/compatibility/deprecated.php:255
2813
  msgid "Edit Listing"
2814
  msgstr "Editar Listado"
2815
 
2816
- #: business-directory-plugin.php:717
2817
  msgid "New Listing"
2818
  msgstr "Nuevo Listado"
2819
 
2820
- #: business-directory-plugin.php:718
2821
  msgid "View Listing"
2822
  msgstr "Ver Listado"
2823
 
2824
- #: business-directory-plugin.php:719
2825
  msgid "Search Listings"
2826
  msgstr "Buscar Listados"
2827
 
2828
- #: business-directory-plugin.php:720
2829
  msgid "No listings found"
2830
  msgstr "No se encontraron listados"
2831
 
2832
- #: business-directory-plugin.php:721
2833
  msgid "No listings found in trash"
2834
  msgstr "No se encontraron listados en la papelera"
2835
 
2836
- #: business-directory-plugin.php:743
2837
  msgid "Directory Categories"
2838
  msgstr "Categorías de Directorio"
2839
 
2840
- #: business-directory-plugin.php:856 business-directory-plugin.php:863
2841
  msgctxt "rss feed"
2842
  msgid "%s Feed"
2843
  msgstr "Feed %s"
2844
 
2845
- #: business-directory-plugin.php:1265
2846
  msgctxt "title"
2847
  msgid "Submit A Listing"
2848
  msgstr "Enviar Un Listado"
2849
 
2850
- #: business-directory-plugin.php:1275
2851
  msgctxt "title"
2852
  msgid "Find a Listing"
2853
  msgstr "Encontrar un listado"
2854
 
2855
- #: business-directory-plugin.php:1285
2856
  msgctxt "title"
2857
  msgid "View All Listings"
2858
  msgstr "Ver Listados"
2859
 
2860
- #: business-directory-plugin.php:1305
2861
  msgctxt "title"
2862
  msgid "Listings tagged: %s"
2863
  msgstr "Listados etiquetados: %s"
@@ -3007,12 +3016,12 @@ msgctxt "listing"
3007
  msgid "(Fee Unavailable)"
3008
  msgstr "(Comisión no disponible)"
3009
 
3010
- #: core/class-listings-api.php:300
3011
  msgctxt "notify email"
3012
  msgid "[%s] New listing notification"
3013
  msgstr "[%s] Notificación de nuevo listado"
3014
 
3015
- #: core/class-listings-api.php:319
3016
  msgctxt "notify email"
3017
  msgid "[%s] Listing edit notification"
3018
  msgstr "[%s] Notificación de listado editado"
@@ -4599,20 +4608,20 @@ msgstr "Eliminar"
4599
  msgid "Upgrade Listing"
4600
  msgstr "Mejorar Listado"
4601
 
4602
- #: core/compatibility/deprecated.php:214 core/templates-ui.php:183
4603
  msgid "Submit A Listing"
4604
  msgstr "Enviar Un Listado"
4605
 
4606
- #: core/compatibility/deprecated.php:227 core/templates-ui.php:192
4607
  msgid "View Listings"
4608
  msgstr "Ver Listados"
4609
 
4610
- #: core/compatibility/deprecated.php:238 core/templates-ui.php:202
4611
  msgid "Directory"
4612
  msgstr "Directorio"
4613
 
4614
  #: core/compatibility/templates/wpbusdirman-index-categories.php:12
4615
- #: core/templates-ui.php:229
4616
  msgctxt "templates"
4617
  msgid "Search Listings"
4618
  msgstr "Buscar Listados"
@@ -5144,11 +5153,11 @@ msgctxt "installer"
5144
  msgid "Listing upgrade to featured"
5145
  msgstr "Mejora a Destacado"
5146
 
5147
- #: core/installer.php:933
5148
  msgid "Business Directory - Manual Upgrade Required"
5149
  msgstr "Business Directory - Actualización Manual Requerida"
5150
 
5151
- #: core/installer.php:935
5152
  msgid ""
5153
  "Business Directory features are currently disabled because the plugin needs "
5154
  "to perform a manual upgrade before continuing."
@@ -5156,15 +5165,15 @@ msgstr ""
5156
  "Las características de Business Directory se encuentran deshabitadas pues es "
5157
  "necesario realizar una actualización manual antes de continuar."
5158
 
5159
- #: core/installer.php:937
5160
  msgid "Perform Manual Upgrade"
5161
  msgstr "Realizar Actualización Manual"
5162
 
5163
- #: core/installer.php:953 core/installer.php:954 core/installer.php:965
5164
  msgid "Business Directory - Manual Upgrade"
5165
  msgstr "Business Directory - Actualización Manual"
5166
 
5167
- #: core/installer.php:969
5168
  msgid ""
5169
  "Business Directory features are currently disabled because the plugin needs "
5170
  "to perform a manual upgrade before it can be used."
@@ -5173,23 +5182,23 @@ msgstr ""
5173
  "necesario realizar una actualización manual antes de que el plugin pueda ser "
5174
  "utilizado."
5175
 
5176
- #: core/installer.php:971
5177
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5178
  msgstr ""
5179
  "Haga clic en \"Iniciar Actualización\" y espere hasta que el proceso "
5180
  "finalice."
5181
 
5182
- #: core/installer.php:974
5183
  msgctxt "manual-upgrade"
5184
  msgid "Start Upgrade"
5185
  msgstr "Iniciar Actualización"
5186
 
5187
- #: core/installer.php:976
5188
  msgctxt "manual-upgrade"
5189
  msgid "Pause Upgrade"
5190
  msgstr "Detener Actualización"
5191
 
5192
- #: core/installer.php:982
5193
  msgctxt "manual-upgrade"
5194
  msgid ""
5195
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
@@ -5198,7 +5207,7 @@ msgstr ""
5198
  "La actualización fue ejecutada con éxito. Business Directory Plugin ahora se "
5199
  "encienta disponible para su uso."
5200
 
5201
- #: core/installer.php:985
5202
  msgctxt "manual-upgrade"
5203
  msgid "Go to \"Directory Admin\""
5204
  msgstr "Ir a \"Administración del Directorio\""
@@ -5430,7 +5439,7 @@ msgctxt "templates"
5430
  msgid "Featured Listing"
5431
  msgstr "Listado Destacado"
5432
 
5433
- #: core/templates/listings.tpl.php:6
5434
  #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:21
5435
  msgctxt "templates"
5436
  msgid "No listings found."
@@ -5448,47 +5457,64 @@ msgctxt "templates"
5448
  msgid "Next &raquo;"
5449
  msgstr "Siguiente &raquo;"
5450
 
5451
- #: core/templates-ui.php:159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5452
  msgctxt "templates"
5453
  msgid "No listing categories found."
5454
  msgstr "No se encontraron categorías."
5455
 
5456
- #: core/templates-ui.php:232
5457
  msgctxt "templates"
5458
  msgid "Advanced Search"
5459
  msgstr "Búsqueda Avanzada"
5460
 
5461
- #: core/templates-ui.php:258 core/templates-ui.php:283
5462
  msgctxt "templates sort"
5463
  msgid "Sort By:"
5464
  msgstr "Ordenar Por:"
5465
 
5466
- #: core/templates-ui.php:277
5467
  msgctxt "sort"
5468
  msgid "Reset"
5469
  msgstr "Restablecer"
5470
 
5471
- #: core/templates-ui.php:299
5472
  msgctxt "sort"
5473
  msgid "(Reset)"
5474
  msgstr "(Reestablecer)"
5475
 
5476
- #: core/themes.php:597
5477
  msgctxt "themes"
5478
  msgid "ZIP file is not a valid BD theme file."
5479
  msgstr ""
5480
 
5481
- #: core/themes.php:603
5482
  msgctxt "themes"
5483
  msgid "Could not create themes directory."
5484
  msgstr ""
5485
 
5486
- #: core/themes.php:611
5487
  msgctxt "themes"
5488
  msgid "Could not remove previous theme directory \"%s\"."
5489
  msgstr ""
5490
 
5491
- #: core/themes.php:617
5492
  msgctxt "themes"
5493
  msgid "Could not move new theme into theme directory."
5494
  msgstr ""
@@ -5881,7 +5907,7 @@ msgctxt "templates"
5881
  msgid "Listings tagged: %s"
5882
  msgstr "Listados etiquetados: %s"
5883
 
5884
- #: core/views.php:486
5885
  msgctxt "templates"
5886
  msgid ""
5887
  "There are no categories assigned to the business directory yet. You need to "
@@ -5896,12 +5922,12 @@ msgstr ""
5896
  "no pueden enviar listados en este momento. No pueden agregarse nuevos "
5897
  "listados hasta tanto haya categorías en el Directorio de Negocios."
5898
 
5899
- #: core/views.php:488
5900
  msgctxt "templates"
5901
  msgid "There are currently no listings in the directory."
5902
  msgstr "No hay listados en el Directorio."
5903
 
5904
- #: core/views.php:506
5905
  msgctxt "templates"
5906
  msgid ""
5907
  "You have \"Hide Empty Categories\" on and some categories that don't have "
@@ -6307,11 +6333,6 @@ msgctxt "templates"
6307
  msgid "You do not currently have any listings in the directory."
6308
  msgstr "Actualmente no tiene listados en el Directorio."
6309
 
6310
- #: templates/manage-listings.tpl.php:11 templates/search.tpl.php:24
6311
- msgctxt "templates"
6312
- msgid "Return to directory"
6313
- msgstr "Regresar al Directorio"
6314
-
6315
  #: templates/manage-recurring-cancel.tpl.php:1
6316
  msgctxt "manage recurring"
6317
  msgid "Manage Recurring Payments - Cancel"
@@ -6554,16 +6575,6 @@ msgctxt "search"
6554
  msgid "Clear"
6555
  msgstr "Limpiar"
6556
 
6557
- #: templates/search-form.tpl.php:15 templates/search.tpl.php:6
6558
- msgctxt "search"
6559
- msgid "Search"
6560
- msgstr "Buscar"
6561
-
6562
- #: templates/search.tpl.php:14
6563
- msgctxt "search"
6564
- msgid "Search Results"
6565
- msgstr "Resultados de Búsqueda"
6566
-
6567
  #: templates/submit-listing/category-selection.tpl.php:1
6568
  msgctxt "templates"
6569
  msgid "Category Selection"
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6.13\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-02-24 20:36:14+00:00\n"
8
  "PO-Revision-Date: 2016-01-18 15:22-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
69
  msgid "Downgrade to %s"
70
  msgstr "Degradar a %s"
71
 
72
+ #: admin/class-admin-listings.php:215 admin/class-admin-listings.php:394
73
  msgctxt "admin actions"
74
  msgid "Upgrade to Featured"
75
  msgstr "Mejorar a Destacado"
83
  msgid "Expired"
84
  msgstr "Expirados"
85
 
86
+ #: admin/class-admin-listings.php:330
87
  msgctxt "admin actions"
88
  msgid "Edit Listing"
89
  msgstr "Editar Listado"
90
 
91
+ #: admin/class-admin-listings.php:333
92
  msgctxt "admin actions"
93
  msgid "Delete Listing"
94
  msgstr "Eliminar Listado"
95
 
96
+ #: admin/class-admin-listings.php:392
97
  msgctxt "admin actions"
98
  msgid "Publish Listing"
99
  msgstr "Publicar Listado"
100
 
101
+ #: admin/class-admin-listings.php:395
102
  msgctxt "admin actions"
103
  msgid "Downgrade to Normal"
104
  msgstr "Degradar a Normal"
105
 
106
+ #: admin/class-admin-listings.php:397
107
  msgctxt "admin actions"
108
  msgid "Mark as Paid"
109
  msgstr "Marcar listado como Pagado"
110
 
111
+ #: admin/class-admin-listings.php:399
112
  msgctxt "admin actions"
113
  msgid "Renew Listing"
114
  msgstr "Renovar Listado"
450
  #: admin/class-themes-admin.php:150
451
  msgctxt "themes"
452
  msgid ""
453
+ "%s requires that you tag your existing fields to match some places we want "
454
+ "to put your data on the theme. Below are fields we think are missing."
455
  msgstr ""
456
 
457
+ #: admin/class-themes-admin.php:159
458
+ #, fuzzy
 
 
 
 
459
  msgctxt "themes"
460
+ msgid "Map My Fields"
461
+ msgstr "Administrar Campos de Formulario"
462
 
463
+ #: admin/class-themes-admin.php:166
464
  msgctxt "themes"
465
  msgid "Suggested fields created successfully."
466
  msgstr ""
467
 
468
+ #: admin/class-themes-admin.php:169
469
  msgctxt "themes"
470
  msgid "Theme installed successfully."
471
  msgstr ""
472
 
473
+ #: admin/class-themes-admin.php:172
474
  msgctxt "themes"
475
  msgid "Theme was deleted sucessfully."
476
  msgstr ""
477
 
478
+ #: admin/class-themes-admin.php:175
479
  msgctxt "themes"
480
  msgid "Could not delete theme directory. Check permissions."
481
  msgstr ""
482
 
483
+ #: admin/class-themes-admin.php:201
484
  msgctxt "themes"
485
  msgid "Please upload a valid theme file."
486
  msgstr ""
487
 
488
+ #: admin/class-themes-admin.php:208
489
  msgctxt "themes"
490
  msgid "Could not move \"%s\" to a temporary directory."
491
  msgstr ""
492
 
493
+ #: admin/class-themes-admin.php:309 admin/class-themes-admin.php:370
494
  #: core/licensing.php:127 core/licensing.php:159
495
  msgctxt "licensing"
496
  msgid "Could not contact licensing server"
497
  msgstr "No se pudo contactar el servidor de licencias"
498
 
499
+ #: admin/class-themes-admin.php:315 core/licensing.php:132
500
  #: core/licensing.php:166
501
  msgctxt "licensing"
502
  msgid "License key is invalid"
503
  msgstr "La licencia es inválida"
504
 
505
+ #: admin/class-themes-admin.php:320 core/licensing.php:330
506
  msgctxt "licensing"
507
  msgid "Could not activate license: %s."
508
  msgstr "No se pudo activar la licencia: %s."
509
 
510
+ #: admin/class-themes-admin.php:333 core/licensing.php:332
511
  msgctxt "licensing"
512
  msgid "License activated"
513
  msgstr "Licencia activada"
514
 
515
+ #: admin/class-themes-admin.php:376
516
  msgctxt "licensing"
517
  msgid "Invalid response from server"
518
  msgstr ""
519
 
520
+ #: admin/class-themes-admin.php:393 core/licensing.php:350
521
  msgctxt "licensing"
522
  msgid "License deactivated"
523
  msgstr "Licencia desactivada"
524
 
525
+ #: admin/class-themes-admin.php:409
526
  msgctxt "themes"
527
  msgid "Activate your <a>license key</a> to use this theme."
528
  msgstr ""
801
  msgid "Custom Order"
802
  msgstr "Orden Especial"
803
 
804
+ #: admin/fees.php:339
805
  msgctxt "fees admin"
806
  msgid "Fee updated."
807
  msgstr "Comisión actualizada."
939
  msgid "Required fields created successfully."
940
  msgstr "Campos requeridos creados satisfactoriamente."
941
 
942
+ #: admin/form-fields.php:288
943
  msgctxt "form-fields admin"
944
  msgid "Title"
945
  msgstr ""
946
 
947
+ #: admin/form-fields.php:289
948
  msgctxt "form-fields admin"
949
  msgid "Category"
950
  msgstr ""
951
 
952
+ #: admin/form-fields.php:290
953
  msgctxt "form-fields admin"
954
  msgid "Excerpt"
955
  msgstr ""
956
 
957
+ #: admin/form-fields.php:291
958
  msgctxt "form-fields admin"
959
  msgid "Content"
960
  msgstr ""
961
 
962
+ #: admin/form-fields.php:292
963
  msgctxt "form-fields admin"
964
  msgid "Tags"
965
  msgstr ""
966
 
967
+ #: admin/form-fields.php:293
968
  msgctxt "form-fields admin"
969
  msgid "Address"
970
  msgstr ""
971
 
972
+ #: admin/form-fields.php:294
973
  msgctxt "form-fields admin"
974
  msgid "ZIP Code"
975
  msgstr ""
976
 
977
+ #: admin/form-fields.php:295
978
  msgctxt "form-fields admin"
979
  msgid "FAX Number"
980
  msgstr ""
981
 
982
+ #: admin/form-fields.php:296
983
  msgctxt "form-fields admin"
984
  msgid "Phone Number"
985
  msgstr ""
986
 
987
+ #: admin/form-fields.php:297
988
  msgctxt "form-fields admin"
989
  msgid "Ratings Field"
990
  msgstr ""
991
 
992
+ #: admin/form-fields.php:298
993
  msgctxt "form-fields admin"
994
  msgid "Twitter"
995
  msgstr ""
996
 
997
+ #: admin/form-fields.php:299
998
  msgctxt "form-fields admin"
999
  msgid "Website"
1000
  msgstr ""
1001
 
1002
+ #: admin/form-fields.php:320
1003
  msgctxt "form-fields admin"
1004
  msgid "Tags updated."
1005
  msgstr ""
2053
  msgid "Theme Tags"
2054
  msgstr ""
2055
 
2056
+ #: admin/templates/form-fields-tags.tpl.php:19
2057
  msgctxt "form-fields admin"
2058
+ msgid ""
2059
+ "Before you create fields, make sure you've mapped all of your EXISTING ones "
2060
+ "first, otherwise you'll appear to be \"missing data\" on your listings."
2061
  msgstr ""
2062
 
2063
  #: admin/templates/form-fields-tags.tpl.php:22
2064
+ #, fuzzy
2065
+ msgctxt "form-fields admin"
2066
+ msgid "Create Missing Fields"
2067
+ msgstr "Campos del Listado"
2068
+
2069
+ #: admin/templates/form-fields-tags.tpl.php:30
2070
+ msgctxt "form-fields admin"
2071
+ msgid "Field Tag"
2072
+ msgstr ""
2073
+
2074
+ #: admin/templates/form-fields-tags.tpl.php:31
2075
  msgctxt "form-fields admin"
2076
  msgid "Field"
2077
  msgstr ""
2109
  "Por favor vea la <a>documentación de Campos de Formulario</a> para más "
2110
  "detalles."
2111
 
2112
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.7.4) #-#-#-#-#
2113
  #. Plugin Name of the plugin/theme
2114
  #: admin/templates/header.tpl.php:4
2115
  msgid "Business Directory Plugin"
2793
  msgid "Allow Tracking"
2794
  msgstr "Permitir Seguimiento"
2795
 
2796
+ #: business-directory-plugin.php:716
2797
  msgctxt "admin plugins"
2798
  msgid "Settings"
2799
  msgstr "Configuración"
2800
 
2801
+ #: business-directory-plugin.php:726
2802
  msgctxt "post type general name"
2803
  msgid "Directory"
2804
  msgstr "Directorio"
2805
 
2806
+ #: business-directory-plugin.php:727
2807
  msgctxt "post type singular name"
2808
  msgid "Directory"
2809
  msgstr "Directorio"
2810
 
2811
+ #: business-directory-plugin.php:728
2812
  msgctxt "listing"
2813
  msgid "Add New Listing"
2814
  msgstr "Agregar Nuevo Listado"
2815
 
2816
+ #: business-directory-plugin.php:729
2817
  msgctxt "post type"
2818
  msgid "Add New Listing"
2819
  msgstr "Agregar Nuevo Listado"
2820
 
2821
+ #: business-directory-plugin.php:730 core/compatibility/deprecated.php:255
2822
  msgid "Edit Listing"
2823
  msgstr "Editar Listado"
2824
 
2825
+ #: business-directory-plugin.php:731
2826
  msgid "New Listing"
2827
  msgstr "Nuevo Listado"
2828
 
2829
+ #: business-directory-plugin.php:732
2830
  msgid "View Listing"
2831
  msgstr "Ver Listado"
2832
 
2833
+ #: business-directory-plugin.php:733
2834
  msgid "Search Listings"
2835
  msgstr "Buscar Listados"
2836
 
2837
+ #: business-directory-plugin.php:734
2838
  msgid "No listings found"
2839
  msgstr "No se encontraron listados"
2840
 
2841
+ #: business-directory-plugin.php:735
2842
  msgid "No listings found in trash"
2843
  msgstr "No se encontraron listados en la papelera"
2844
 
2845
+ #: business-directory-plugin.php:757
2846
  msgid "Directory Categories"
2847
  msgstr "Categorías de Directorio"
2848
 
2849
+ #: business-directory-plugin.php:870 business-directory-plugin.php:877
2850
  msgctxt "rss feed"
2851
  msgid "%s Feed"
2852
  msgstr "Feed %s"
2853
 
2854
+ #: business-directory-plugin.php:1295
2855
  msgctxt "title"
2856
  msgid "Submit A Listing"
2857
  msgstr "Enviar Un Listado"
2858
 
2859
+ #: business-directory-plugin.php:1305
2860
  msgctxt "title"
2861
  msgid "Find a Listing"
2862
  msgstr "Encontrar un listado"
2863
 
2864
+ #: business-directory-plugin.php:1315
2865
  msgctxt "title"
2866
  msgid "View All Listings"
2867
  msgstr "Ver Listados"
2868
 
2869
+ #: business-directory-plugin.php:1335
2870
  msgctxt "title"
2871
  msgid "Listings tagged: %s"
2872
  msgstr "Listados etiquetados: %s"
3016
  msgid "(Fee Unavailable)"
3017
  msgstr "(Comisión no disponible)"
3018
 
3019
+ #: core/class-listings-api.php:308
3020
  msgctxt "notify email"
3021
  msgid "[%s] New listing notification"
3022
  msgstr "[%s] Notificación de nuevo listado"
3023
 
3024
+ #: core/class-listings-api.php:327
3025
  msgctxt "notify email"
3026
  msgid "[%s] Listing edit notification"
3027
  msgstr "[%s] Notificación de listado editado"
4608
  msgid "Upgrade Listing"
4609
  msgstr "Mejorar Listado"
4610
 
4611
+ #: core/compatibility/deprecated.php:214 core/templates-ui.php:186
4612
  msgid "Submit A Listing"
4613
  msgstr "Enviar Un Listado"
4614
 
4615
+ #: core/compatibility/deprecated.php:227 core/templates-ui.php:195
4616
  msgid "View Listings"
4617
  msgstr "Ver Listados"
4618
 
4619
+ #: core/compatibility/deprecated.php:238 core/templates-ui.php:205
4620
  msgid "Directory"
4621
  msgstr "Directorio"
4622
 
4623
  #: core/compatibility/templates/wpbusdirman-index-categories.php:12
4624
+ #: core/templates-ui.php:232
4625
  msgctxt "templates"
4626
  msgid "Search Listings"
4627
  msgstr "Buscar Listados"
5153
  msgid "Listing upgrade to featured"
5154
  msgstr "Mejora a Destacado"
5155
 
5156
+ #: core/installer.php:941
5157
  msgid "Business Directory - Manual Upgrade Required"
5158
  msgstr "Business Directory - Actualización Manual Requerida"
5159
 
5160
+ #: core/installer.php:943
5161
  msgid ""
5162
  "Business Directory features are currently disabled because the plugin needs "
5163
  "to perform a manual upgrade before continuing."
5165
  "Las características de Business Directory se encuentran deshabitadas pues es "
5166
  "necesario realizar una actualización manual antes de continuar."
5167
 
5168
+ #: core/installer.php:945
5169
  msgid "Perform Manual Upgrade"
5170
  msgstr "Realizar Actualización Manual"
5171
 
5172
+ #: core/installer.php:961 core/installer.php:962 core/installer.php:973
5173
  msgid "Business Directory - Manual Upgrade"
5174
  msgstr "Business Directory - Actualización Manual"
5175
 
5176
+ #: core/installer.php:977
5177
  msgid ""
5178
  "Business Directory features are currently disabled because the plugin needs "
5179
  "to perform a manual upgrade before it can be used."
5182
  "necesario realizar una actualización manual antes de que el plugin pueda ser "
5183
  "utilizado."
5184
 
5185
+ #: core/installer.php:979
5186
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5187
  msgstr ""
5188
  "Haga clic en \"Iniciar Actualización\" y espere hasta que el proceso "
5189
  "finalice."
5190
 
5191
+ #: core/installer.php:982
5192
  msgctxt "manual-upgrade"
5193
  msgid "Start Upgrade"
5194
  msgstr "Iniciar Actualización"
5195
 
5196
+ #: core/installer.php:984
5197
  msgctxt "manual-upgrade"
5198
  msgid "Pause Upgrade"
5199
  msgstr "Detener Actualización"
5200
 
5201
+ #: core/installer.php:990
5202
  msgctxt "manual-upgrade"
5203
  msgid ""
5204
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
5207
  "La actualización fue ejecutada con éxito. Business Directory Plugin ahora se "
5208
  "encienta disponible para su uso."
5209
 
5210
+ #: core/installer.php:993
5211
  msgctxt "manual-upgrade"
5212
  msgid "Go to \"Directory Admin\""
5213
  msgstr "Ir a \"Administración del Directorio\""
5439
  msgid "Featured Listing"
5440
  msgstr "Listado Destacado"
5441
 
5442
+ #: core/templates/listings.tpl.php:6 core/templates/search.tpl.php:17
5443
  #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:21
5444
  msgctxt "templates"
5445
  msgid "No listings found."
5457
  msgid "Next &raquo;"
5458
  msgstr "Siguiente &raquo;"
5459
 
5460
+ #: core/templates/search.tpl.php:3 templates/search-form.tpl.php:15
5461
+ #: templates/search.tpl.php:6
5462
+ msgctxt "search"
5463
+ msgid "Search"
5464
+ msgstr "Buscar"
5465
+
5466
+ #: core/templates/search.tpl.php:10 templates/search.tpl.php:14
5467
+ msgctxt "search"
5468
+ msgid "Search Results"
5469
+ msgstr "Resultados de Búsqueda"
5470
+
5471
+ #: core/templates/search.tpl.php:20 templates/manage-listings.tpl.php:11
5472
+ #: templates/search.tpl.php:24
5473
+ msgctxt "templates"
5474
+ msgid "Return to directory"
5475
+ msgstr "Regresar al Directorio"
5476
+
5477
+ #: core/templates-ui.php:162
5478
  msgctxt "templates"
5479
  msgid "No listing categories found."
5480
  msgstr "No se encontraron categorías."
5481
 
5482
+ #: core/templates-ui.php:235
5483
  msgctxt "templates"
5484
  msgid "Advanced Search"
5485
  msgstr "Búsqueda Avanzada"
5486
 
5487
+ #: core/templates-ui.php:261 core/templates-ui.php:286
5488
  msgctxt "templates sort"
5489
  msgid "Sort By:"
5490
  msgstr "Ordenar Por:"
5491
 
5492
+ #: core/templates-ui.php:280
5493
  msgctxt "sort"
5494
  msgid "Reset"
5495
  msgstr "Restablecer"
5496
 
5497
+ #: core/templates-ui.php:302
5498
  msgctxt "sort"
5499
  msgid "(Reset)"
5500
  msgstr "(Reestablecer)"
5501
 
5502
+ #: core/themes.php:607
5503
  msgctxt "themes"
5504
  msgid "ZIP file is not a valid BD theme file."
5505
  msgstr ""
5506
 
5507
+ #: core/themes.php:613
5508
  msgctxt "themes"
5509
  msgid "Could not create themes directory."
5510
  msgstr ""
5511
 
5512
+ #: core/themes.php:621
5513
  msgctxt "themes"
5514
  msgid "Could not remove previous theme directory \"%s\"."
5515
  msgstr ""
5516
 
5517
+ #: core/themes.php:627
5518
  msgctxt "themes"
5519
  msgid "Could not move new theme into theme directory."
5520
  msgstr ""
5907
  msgid "Listings tagged: %s"
5908
  msgstr "Listados etiquetados: %s"
5909
 
5910
+ #: core/views.php:489
5911
  msgctxt "templates"
5912
  msgid ""
5913
  "There are no categories assigned to the business directory yet. You need to "
5922
  "no pueden enviar listados en este momento. No pueden agregarse nuevos "
5923
  "listados hasta tanto haya categorías en el Directorio de Negocios."
5924
 
5925
+ #: core/views.php:491
5926
  msgctxt "templates"
5927
  msgid "There are currently no listings in the directory."
5928
  msgstr "No hay listados en el Directorio."
5929
 
5930
+ #: core/views.php:509
5931
  msgctxt "templates"
5932
  msgid ""
5933
  "You have \"Hide Empty Categories\" on and some categories that don't have "
6333
  msgid "You do not currently have any listings in the directory."
6334
  msgstr "Actualmente no tiene listados en el Directorio."
6335
 
 
 
 
 
 
6336
  #: templates/manage-recurring-cancel.tpl.php:1
6337
  msgctxt "manage recurring"
6338
  msgid "Manage Recurring Payments - Cancel"
6575
  msgid "Clear"
6576
  msgstr "Limpiar"
6577
 
 
 
 
 
 
 
 
 
 
 
6578
  #: templates/submit-listing/category-selection.tpl.php:1
6579
  msgctxt "templates"
6580
  msgid "Category Selection"
languages/WPBDM-fr_FR.mo CHANGED
Binary file
languages/WPBDM-fr_FR.po CHANGED
@@ -4,15 +4,15 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-02-02 17:14:20+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"
11
  "Language: fr\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.8.6\n"
16
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
 
@@ -69,7 +69,7 @@ msgstr "Mettre à jour vers %s"
69
  msgid "Downgrade to %s"
70
  msgstr "Déclasser vers %s"
71
 
72
- #: admin/class-admin-listings.php:215 admin/class-admin-listings.php:395
73
  msgctxt "admin actions"
74
  msgid "Upgrade to Featured"
75
  msgstr "Mettre à jour vers la version sélectionnée"
@@ -83,32 +83,32 @@ msgctxt "admin"
83
  msgid "Expired"
84
  msgstr "Expiré "
85
 
86
- #: admin/class-admin-listings.php:331
87
  msgctxt "admin actions"
88
  msgid "Edit Listing"
89
  msgstr "Editer l'annonce"
90
 
91
- #: admin/class-admin-listings.php:334
92
  msgctxt "admin actions"
93
  msgid "Delete Listing"
94
  msgstr "Effacer l'annonce"
95
 
96
- #: admin/class-admin-listings.php:393
97
  msgctxt "admin actions"
98
  msgid "Publish Listing"
99
  msgstr "Publier l'annonce"
100
 
101
- #: admin/class-admin-listings.php:396
102
  msgctxt "admin actions"
103
  msgid "Downgrade to Normal"
104
  msgstr "Rétrograder vers le mode Normal "
105
 
106
- #: admin/class-admin-listings.php:398
107
  msgctxt "admin actions"
108
  msgid "Mark as Paid"
109
  msgstr "Marquer comme Payé "
110
 
111
- #: admin/class-admin-listings.php:400
112
  msgctxt "admin actions"
113
  msgid "Renew Listing"
114
  msgstr "Renouveler l'annonce"
@@ -134,12 +134,12 @@ msgctxt "drip pointer"
134
  msgid "Want to know the Secrets of Building an Awesome Business Directory?"
135
  msgstr ""
136
  "Voulez-vous connaître les secrets de la création d'un superbe annuaire "
137
- "professionnel?"
138
 
139
  #: admin/class-admin.php:134
140
  msgctxt "drip pointer"
141
  msgid "Yes, please!"
142
- msgstr "Oui, s'il vous plait!"
143
 
144
  #: admin/class-admin.php:136
145
  msgctxt "drip pointer"
@@ -237,7 +237,7 @@ msgstr "jamais"
237
  msgctxt "admin"
238
  msgid "The listing has been published."
239
  msgid_plural "The listings have been published."
240
- msgstr[0] "La annonce a été publiée."
241
  msgstr[1] "Les annonces ont été publiées."
242
 
243
  #: admin/class-admin.php:505
@@ -251,7 +251,7 @@ msgstr[1] "Le statut des annocnes a été défini comme étant payées."
251
  msgctxt "admin"
252
  msgid "The listing has been modified."
253
  msgid_plural "The listings have been modified."
254
- msgstr[0] "l'annonce a été modifiée."
255
  msgstr[1] "Les annonces ont été modifiées."
256
 
257
  #: admin/class-admin.php:530
@@ -425,7 +425,7 @@ msgstr "Images actuelles"
425
  #: admin/class-listing-fields-metabox.php:41
426
  msgctxt "templates"
427
  msgid "There are no images currently attached to the listing."
428
- msgstr "Il n'y a aucune images attaché à cette annonce."
429
 
430
  #: admin/class-themes-admin.php:44
431
  msgctxt "themes"
@@ -446,91 +446,87 @@ msgstr "Vous ne pouvez pas changer le thème actif pour \"%s\""
446
  #: admin/class-themes-admin.php:147
447
  msgctxt "themes"
448
  msgid "Active theme changed to \"%s\"."
449
- msgstr ""
450
 
451
  #: admin/class-themes-admin.php:150
452
  msgctxt "themes"
453
  msgid ""
454
- "For better results, \"%s\" theme suggests the following form fields to be "
455
- "created."
456
- msgstr ""
457
-
458
- #: admin/class-themes-admin.php:157
459
- msgctxt "themes"
460
- msgid "Dismiss this warning"
461
  msgstr ""
462
 
463
- #: admin/class-themes-admin.php:160
 
464
  msgctxt "themes"
465
- msgid "Create suggested fields"
466
- msgstr "Créer ces champs"
467
 
468
- #: admin/class-themes-admin.php:167
469
  msgctxt "themes"
470
  msgid "Suggested fields created successfully."
471
  msgstr "Champs créés avec succès."
472
 
473
- #: admin/class-themes-admin.php:170
474
  msgctxt "themes"
475
  msgid "Theme installed successfully."
476
  msgstr "Thème installé avec succès"
477
 
478
- #: admin/class-themes-admin.php:173
479
  msgctxt "themes"
480
  msgid "Theme was deleted sucessfully."
481
  msgstr "Le thème a été supprimé"
482
 
483
- #: admin/class-themes-admin.php:176
484
  msgctxt "themes"
485
  msgid "Could not delete theme directory. Check permissions."
486
- msgstr ""
487
 
488
- #: admin/class-themes-admin.php:202
489
  msgctxt "themes"
490
  msgid "Please upload a valid theme file."
491
  msgstr "Veuillez télécharger un fichier de thème valide"
492
 
493
- #: admin/class-themes-admin.php:209
494
  msgctxt "themes"
495
  msgid "Could not move \"%s\" to a temporary directory."
496
  msgstr "Impossible de déplacer \"%s\" vers un dossier temporaire"
497
 
498
- #: admin/class-themes-admin.php:310 admin/class-themes-admin.php:371
499
  #: core/licensing.php:127 core/licensing.php:159
500
  msgctxt "licensing"
501
  msgid "Could not contact licensing server"
502
  msgstr "Impossible de contacter le serveur de licences"
503
 
504
- #: admin/class-themes-admin.php:316 core/licensing.php:132
505
  #: core/licensing.php:166
506
  msgctxt "licensing"
507
  msgid "License key is invalid"
508
  msgstr "La clé de licence est invalide"
509
 
510
- #: admin/class-themes-admin.php:321 core/licensing.php:330
511
  msgctxt "licensing"
512
  msgid "Could not activate license: %s."
513
  msgstr "Impossible d'activer la licence: %s."
514
 
515
- #: admin/class-themes-admin.php:334 core/licensing.php:332
516
  msgctxt "licensing"
517
  msgid "License activated"
518
- msgstr "Licence activé"
519
 
520
- #: admin/class-themes-admin.php:377
521
  msgctxt "licensing"
522
  msgid "Invalid response from server"
523
- msgstr ""
524
 
525
- #: admin/class-themes-admin.php:394 core/licensing.php:350
526
  msgctxt "licensing"
527
  msgid "License deactivated"
528
  msgstr "Licence désactivée"
529
 
530
- #: admin/class-themes-admin.php:410
531
  msgctxt "themes"
532
  msgid "Activate your <a>license key</a> to use this theme."
533
- msgstr ""
534
 
535
  #: admin/csv-export.php:136
536
  msgctxt "admin csv-export"
@@ -602,13 +598,14 @@ msgid ""
602
  "An error was detected while validating the CSV file for import. Please fix "
603
  "this before proceeding."
604
  msgstr ""
 
 
605
 
606
  #: admin/csv-import.php:324
607
  msgctxt "admin csv-import"
608
  msgid "Import is in \"test mode\". Nothing will be inserted into the database."
609
  msgstr ""
610
- "Importer est dans \"mode test \". Rien ne sera inséré dans la base de "
611
- "données."
612
 
613
  #: admin/fees.php:9
614
  msgctxt "fees admin"
@@ -761,13 +758,12 @@ msgstr "Toutes catégories"
761
  #: admin/fees.php:250
762
  msgctxt "fees admin"
763
  msgid "Yes"
764
- msgstr ""
765
 
766
  #: admin/fees.php:250
767
- #, fuzzy
768
  msgctxt "fees admin"
769
  msgid "No"
770
- msgstr "Novembre"
771
 
772
  #: admin/fees.php:285
773
  #, fuzzy
@@ -776,10 +772,9 @@ msgid "Fee enabled."
776
  msgstr "Frais effacé"
777
 
778
  #: admin/fees.php:293
779
- #, fuzzy
780
  msgctxt "fees admin"
781
  msgid "Fee disabled."
782
- msgstr "Frais effacé"
783
 
784
  #: admin/fees.php:318
785
  msgctxt "fees order"
@@ -806,7 +801,7 @@ msgctxt "fees order"
806
  msgid "Custom Order"
807
  msgstr "Ordre personnalisé"
808
 
809
- #: admin/fees.php:341
810
  msgctxt "fees admin"
811
  msgid "Fee updated."
812
  msgstr "Frais mis à jour"
@@ -938,67 +933,67 @@ msgctxt "form-fields admin"
938
  msgid "Required fields created successfully."
939
  msgstr "Champs requis créés avec succès."
940
 
941
- #: admin/form-fields.php:286
942
  msgctxt "form-fields admin"
943
  msgid "Title"
944
  msgstr "Titre"
945
 
946
- #: admin/form-fields.php:287
947
  msgctxt "form-fields admin"
948
  msgid "Category"
949
  msgstr "Catégorie"
950
 
951
- #: admin/form-fields.php:288
952
  msgctxt "form-fields admin"
953
  msgid "Excerpt"
954
  msgstr "Extrait"
955
 
956
- #: admin/form-fields.php:289
957
  msgctxt "form-fields admin"
958
  msgid "Content"
959
  msgstr "Contenu"
960
 
961
- #: admin/form-fields.php:290
962
  msgctxt "form-fields admin"
963
  msgid "Tags"
964
  msgstr "Étiquettes (tags)"
965
 
966
- #: admin/form-fields.php:291
967
  msgctxt "form-fields admin"
968
  msgid "Address"
969
  msgstr "Adresse"
970
 
971
- #: admin/form-fields.php:292
972
  msgctxt "form-fields admin"
973
  msgid "ZIP Code"
974
  msgstr "Code Postal"
975
 
976
- #: admin/form-fields.php:293
977
  msgctxt "form-fields admin"
978
  msgid "FAX Number"
979
  msgstr "Numéro de fax"
980
 
981
- #: admin/form-fields.php:294
982
  msgctxt "form-fields admin"
983
  msgid "Phone Number"
984
  msgstr "Numéro de téléphone"
985
 
986
- #: admin/form-fields.php:295
987
  msgctxt "form-fields admin"
988
  msgid "Ratings Field"
989
  msgstr "Champs d'évaluation"
990
 
991
- #: admin/form-fields.php:296
992
  msgctxt "form-fields admin"
993
  msgid "Twitter"
994
- msgstr ""
995
 
996
- #: admin/form-fields.php:297
997
  msgctxt "form-fields admin"
998
  msgid "Website"
999
  msgstr "Site Internet"
1000
 
1001
- #: admin/form-fields.php:318
1002
  msgctxt "form-fields admin"
1003
  msgid "Tags updated."
1004
  msgstr "Étiquettes mises à jour."
@@ -1011,7 +1006,7 @@ msgstr "Général"
1011
  #: admin/listing-metabox.php:12
1012
  msgctxt "admin"
1013
  msgid "Fee Details"
1014
- msgstr "Détails des Frais"
1015
 
1016
  #: admin/listing-metabox.php:13
1017
  msgctxt "admin"
@@ -1021,7 +1016,7 @@ msgstr "Transactions"
1021
  #: admin/listing-metabox.php:42
1022
  msgctxt "admin infometabox"
1023
  msgid "General Info"
1024
- msgstr "Inofrmations générales"
1025
 
1026
  #: admin/listing-metabox.php:44
1027
  msgctxt "admin infometabox"
@@ -1084,8 +1079,8 @@ msgid ""
1084
  "enough free disk space and memory available to PHP. Check your error logs "
1085
  "for details."
1086
  msgstr ""
1087
- "Une erreur inconnu est survenue durant l'export. Veuillez vous assurer que "
1088
- "que votre espace disque et mémoire disponible sur PHP soient suffisants. "
1089
  "Vérifiez votre journal d'erreurs pour plus de détails."
1090
 
1091
  #: admin/templates/csv-export.tpl.php:18
@@ -1096,8 +1091,8 @@ msgid ""
1096
  "the values of the 'memory_limit' and 'max_execution_time' directives in your "
1097
  "server's php.ini configuration file."
1098
  msgstr ""
1099
- "Veuillez noter que le processus d'exportation est une tâche intensive. Si "
1100
- "votre export échoue, essayez d'abord de désactiver d'autres plugins et/ou "
1101
  "d'augmenter la valeur de la 'limite-mémoire' et les directives 'temps-max-"
1102
  "d'exécution' dans votre fichier de configuration serveur php.ini."
1103
 
@@ -1114,7 +1109,7 @@ msgstr "Exportation des paramètres"
1114
  #: admin/templates/csv-export.tpl.php:37
1115
  msgctxt "admin csv-export"
1116
  msgid "Which listings to export?"
1117
- msgstr "Quelles listes exporter?"
1118
 
1119
  #: admin/templates/csv-export.tpl.php:41
1120
  msgctxt "admin csv-export"
@@ -1134,7 +1129,7 @@ msgstr "Actives + En Attente De Renouvellement"
1134
  #: admin/templates/csv-export.tpl.php:49
1135
  msgctxt "admin csv-export"
1136
  msgid "Export images?"
1137
- msgstr "Exporter les images?"
1138
 
1139
  #: admin/templates/csv-export.tpl.php:54
1140
  msgctxt "admin csv-export"
@@ -1285,12 +1280,12 @@ msgstr "Nettoyer"
1285
  #: admin/templates/csv-export.tpl.php:168
1286
  msgctxt "admin csv-export"
1287
  msgid "Export Canceled"
1288
- msgstr "Exportation annulé"
1289
 
1290
  #: admin/templates/csv-export.tpl.php:169
1291
  msgctxt "admin csv-export"
1292
  msgid "The export has been canceled."
1293
- msgstr "L'exportation a été annulé."
1294
 
1295
  #: admin/templates/csv-export.tpl.php:170
1296
  msgctxt "admin csv-export"
@@ -1301,7 +1296,7 @@ msgstr "←Retourner vers l'export CSV"
1301
  msgctxt "admin csv-import"
1302
  msgid "A fatal error occurred during the import. The reason given was: \"%s\"."
1303
  msgstr ""
1304
- "Une erreur fatal est survenue durant l'importation. La raison donnée était: "
1305
  "\"%s\"."
1306
 
1307
  #: admin/templates/csv-import-progress.tpl.php:10
@@ -1311,15 +1306,15 @@ msgid ""
1311
  "the import, please make sure that you have enough free disk space and memory "
1312
  "available to PHP. Check your error logs for details."
1313
  msgstr ""
1314
- "Une erreur fatal est survenue durant l'importation. Si la connection n'a pas "
1315
- "été perdu durant l'importation, veuillez vous assurer que vous aviez "
1316
  "suffisamment d'espace disque et de mémoire disponible sur PHP. Vérifiez "
1317
  "votre journal d'erreurs pour plus de détails."
1318
 
1319
  #: admin/templates/csv-import-progress.tpl.php:14
1320
  msgctxt "admin csv-import"
1321
  msgid "Last imported line from file:"
1322
- msgstr "Dernière ligne importé depuis le fichier:"
1323
 
1324
  #: admin/templates/csv-import-progress.tpl.php:18
1325
  #: admin/templates/csv-import-progress.tpl.php:25
@@ -1335,7 +1330,7 @@ msgstr "Importation annulée"
1335
  #: admin/templates/csv-import-progress.tpl.php:24
1336
  msgctxt "admin csv-import"
1337
  msgid "The import has been canceled."
1338
- msgstr "L'importation a été annulé."
1339
 
1340
  #: admin/templates/csv-import-progress.tpl.php:31
1341
  msgid "Import Progress"
@@ -1390,7 +1385,7 @@ msgstr "L'importation s'est déroulée sans accroc."
1390
  #: admin/templates/csv-import-progress.tpl.php:66
1391
  msgctxt "admin csv-import"
1392
  msgid "Import was completed but some rows were rejected."
1393
- msgstr "L'importation est finis, mais certaines lignes ont été rejetées."
1394
 
1395
  #: admin/templates/csv-import-progress.tpl.php:69
1396
  msgctxt "admin csv-import"
@@ -1455,7 +1450,7 @@ msgid ""
1455
  "We strongly recommend reading our <a>CSV import documentation</a> first to "
1456
  "help you do things in the right order."
1457
  msgstr ""
1458
- "Nous vous recommandons vivement la lecture de notre documents d'importation "
1459
  "<a> CSV </a> afin de vous aider à faire les choses dans le bon ordre."
1460
 
1461
  #: admin/templates/csv-import.tpl.php:38
@@ -1544,12 +1539,12 @@ msgstr "Liste des images"
1544
  #: admin/templates/csv-import.tpl.php:177
1545
  msgctxt "admin csv-import"
1546
  msgid "Appends new images while keeping current ones."
1547
- msgstr ""
1548
 
1549
  #: admin/templates/csv-import.tpl.php:182
1550
  msgctxt "admin csv-import"
1551
  msgid "Assign listings to a user?"
1552
- msgstr "Assigner des listes à un utilisateur?"
1553
 
1554
  #: admin/templates/csv-import.tpl.php:188
1555
  msgctxt "admin csv-import"
@@ -1626,12 +1621,12 @@ msgstr "Type"
1626
  #: admin/templates/csv-import.tpl.php:239
1627
  msgctxt "admin csv-import"
1628
  msgid "Required?"
1629
- msgstr "Requis?"
1630
 
1631
  #: admin/templates/csv-import.tpl.php:240
1632
  msgctxt "admin csv-import"
1633
  msgid "Multivalued?"
1634
- msgstr "Valeurs multiples?"
1635
 
1636
  #: admin/templates/csv-import.tpl.php:262
1637
  msgctxt "admin csv-import"
@@ -1710,7 +1705,7 @@ msgstr "Montant des Frais"
1710
  #: admin/templates/fees-addoredit.tpl.php:62
1711
  msgctxt "fees admin"
1712
  msgid "Listing run in days"
1713
- msgstr "Annonce créée chaque jours"
1714
 
1715
  #: admin/templates/fees-addoredit.tpl.php:65
1716
  msgctxt "fees admin"
@@ -1815,7 +1810,7 @@ msgstr ""
1815
  #: admin/templates/fees.tpl.php:24
1816
  msgctxt "fees admin"
1817
  msgid "Order fees on the frontend by:"
1818
- msgstr "Ordonner les honnoraires dans l'interface par:"
1819
 
1820
  #: admin/templates/fees.tpl.php:32
1821
  msgctxt "fees admin"
@@ -1881,7 +1876,7 @@ msgstr ""
1881
  #: admin/templates/fees.tpl.php:89 admin/templates/sidebar.tpl.php:13
1882
  msgctxt "admin sidebar"
1883
  msgid "PayPal Gateway Module"
1884
- msgstr "Module de passerelle PayPal"
1885
 
1886
  #: admin/templates/fees.tpl.php:90 admin/templates/sidebar.tpl.php:14
1887
  msgctxt "admin sidebar"
@@ -1976,7 +1971,7 @@ msgstr "Pas de validation"
1976
  #: admin/templates/form-fields-addoredit.tpl.php:115
1977
  msgctxt "form-fields admin"
1978
  msgid "Is field required?"
1979
- msgstr "Ce champ est-il requis?"
1980
 
1981
  #: admin/templates/form-fields-addoredit.tpl.php:121
1982
  msgctxt "form-fields admin"
@@ -1991,27 +1986,27 @@ msgstr "Champ d'options d'affichage"
1991
  #: admin/templates/form-fields-addoredit.tpl.php:133
1992
  msgctxt "form-fields admin"
1993
  msgid "Show this value in excerpt view?"
1994
- msgstr "Montrer un extrait de cette valeur?"
1995
 
1996
  #: admin/templates/form-fields-addoredit.tpl.php:139
1997
  msgctxt "form-fields admin"
1998
  msgid "Display this value in post excerpt view."
1999
- msgstr "Afannoncer dans un message un extrait de cette valeur."
2000
 
2001
  #: admin/templates/form-fields-addoredit.tpl.php:145
2002
  msgctxt "form-fields admin"
2003
  msgid "Show this value in listing view?"
2004
- msgstr "Montrer cette valeur dans la vue de l'annonce?"
2005
 
2006
  #: admin/templates/form-fields-addoredit.tpl.php:151
2007
  msgctxt "form-fields admin"
2008
  msgid "Display this value in the listing view."
2009
- msgstr "Afannoncer cette valeur dans la vue de l'annonce."
2010
 
2011
  #: admin/templates/form-fields-addoredit.tpl.php:157
2012
  msgctxt "form-fields admin"
2013
  msgid "Include this field in the search form?"
2014
- msgstr "Inclure ce champ dans la recherche de formulaire?"
2015
 
2016
  #: admin/templates/form-fields-addoredit.tpl.php:163
2017
  msgctxt "form-fields admin"
@@ -2021,12 +2016,12 @@ msgstr "Inclure ce champ dans la recherche de formulaire."
2021
  #: admin/templates/form-fields-addoredit.tpl.php:169
2022
  msgctxt "form-fields admin"
2023
  msgid "Hide this field's label?"
2024
- msgstr "Cacher l'étiquette de ce champ?"
2025
 
2026
  #: admin/templates/form-fields-addoredit.tpl.php:175
2027
  msgctxt "form-fields admin"
2028
  msgid "Hide this field's label when displaying it."
2029
- msgstr "Cacher l'étiquette de ce champ lorsqu'il est aaffiché."
2030
 
2031
  #: admin/templates/form-fields-addoredit.tpl.php:182
2032
  msgctxt "form-fields admin"
@@ -2063,12 +2058,25 @@ msgctxt "form-fields admin"
2063
  msgid "Theme Tags"
2064
  msgstr ""
2065
 
2066
- #: admin/templates/form-fields-tags.tpl.php:21
 
 
 
 
 
 
 
 
 
 
 
 
 
2067
  msgctxt "form-fields admin"
2068
  msgid "Field Tag"
2069
  msgstr "Identifiant du champ"
2070
 
2071
- #: admin/templates/form-fields-tags.tpl.php:22
2072
  #, fuzzy
2073
  msgctxt "form-fields admin"
2074
  msgid "Field"
@@ -2107,7 +2115,7 @@ msgstr ""
2107
  "Veuillez voir la <a>Documentation de champs de formulaire</a> pour plus de "
2108
  "détails."
2109
 
2110
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.7.2) #-#-#-#-#
2111
  #. Plugin Name of the plugin/theme
2112
  #: admin/templates/header.tpl.php:4
2113
  msgid "Business Directory Plugin"
@@ -2133,8 +2141,8 @@ msgid ""
2133
  "Our complete documentation is <a>here</a> which we encourage you to use "
2134
  "while setting things up."
2135
  msgstr ""
2136
- "NOtre documentation complète est <a>ICI</a> que nous vous encourageons à "
2137
- "utiliser tout en paramettrant le plugin."
2138
 
2139
  #: admin/templates/home.tpl.php:14
2140
  msgctxt "admin home"
@@ -2296,12 +2304,12 @@ msgstr "Montrer le lien de renouvellement"
2296
  #: admin/templates/listing-metabox-categories.tpl.php:99
2297
  msgctxt "admin infometabox"
2298
  msgid "Send renewal e-mail to user"
2299
- msgstr "Envoyer un e-mailà l'utilisateur"
2300
 
2301
  #: admin/templates/listing-metabox-categories.tpl.php:107
2302
  msgctxt "admin infometabox"
2303
  msgid "Renew manually..."
2304
- msgstr "Renouveller manuellement"
2305
 
2306
  #: admin/templates/listing-metabox-categories.tpl.php:107
2307
  msgctxt "admin infometabox"
@@ -2440,7 +2448,7 @@ msgstr "Approuver le paiement"
2440
  #: admin/templates/payment-details.tpl.php:44
2441
  msgctxt "admin payments"
2442
  msgid "Reject payment"
2443
- msgstr "Rejetter le paiement"
2444
 
2445
  #: admin/templates/settings-reset.tpl.php:2
2446
  #, fuzzy
@@ -2465,7 +2473,7 @@ msgstr ""
2465
 
2466
  #: admin/templates/settings-reset.tpl.php:11
2467
  msgid "Please note that all of your existing settings will be lost."
2468
- msgstr ""
2469
 
2470
  #: admin/templates/settings-reset.tpl.php:17
2471
  msgid "Reset Defaults"
@@ -2528,12 +2536,12 @@ msgstr "Module google maps"
2528
  #: admin/templates/sidebar.tpl.php:21
2529
  msgctxt "admin sidebar"
2530
  msgid "Like this plugin?"
2531
- msgstr "Vous aimez ce plugin?"
2532
 
2533
  #: admin/templates/sidebar.tpl.php:23
2534
  msgctxt "admin sidebar"
2535
  msgid "Why not do any or all of the following:"
2536
- msgstr "Pourquoi ne paas faire l'une des actions suivantes:"
2537
 
2538
  #: admin/templates/sidebar.tpl.php:25
2539
  msgctxt "admin sidebar"
@@ -2570,7 +2578,7 @@ msgstr "Pack licence pour plusieurs sites"
2570
  #: admin/templates/sidebar.tpl.php:51
2571
  msgctxt "admin sidebar"
2572
  msgid "Found a bug? Need support?"
2573
- msgstr "Vous avez trouvé un bug? Besoin d'assistance?"
2574
 
2575
  #: admin/templates/sidebar.tpl.php:56
2576
  msgctxt "admin sidebar"
@@ -2642,7 +2650,7 @@ msgstr ""
2642
  #: admin/templates/themes-install.tpl.php:8
2643
  msgctxt "themes"
2644
  msgid "This is a theme or skin from %s and is NOT a regular WordPress theme."
2645
- msgstr ""
2646
 
2647
  #: admin/templates/themes-install.tpl.php:21
2648
  msgctxt "themes"
@@ -2652,7 +2660,7 @@ msgstr ""
2652
  #: admin/templates/themes-install.tpl.php:30
2653
  msgctxt "themes"
2654
  msgid "Begin Upload"
2655
- msgstr ""
2656
 
2657
  #: admin/templates/themes-item.tpl.php:3
2658
  msgctxt "themes"
@@ -2667,7 +2675,7 @@ msgstr "Activer"
2667
  #: admin/templates/themes-item.tpl.php:33
2668
  msgctxt "themes"
2669
  msgid "Version:"
2670
- msgstr ""
2671
 
2672
  #: admin/templates/themes-item.tpl.php:36
2673
  #, fuzzy
@@ -2707,7 +2715,7 @@ msgstr "Transactions"
2707
  #: admin/templates/uninstall-capture-form.tpl.php:5
2708
  msgctxt "uninstall"
2709
  msgid "It doesn't work with my theme/plugins/site"
2710
- msgstr "ça ne marche pas avec mon/thèmes/plugins/site"
2711
 
2712
  #: admin/templates/uninstall-capture-form.tpl.php:6
2713
  msgctxt "uninstall"
@@ -2789,13 +2797,13 @@ msgid ""
2789
  "future releases?"
2790
  msgstr ""
2791
  "Est-ce que Business Directory peut continuer à analyser vos thèmes, plugins "
2792
- "et autres informations non-personnel, ou identifiante, afin de nous aider à "
2793
- "améliorer nos futures mises à jours?"
2794
 
2795
  #: admin/tracking.php:192
2796
  msgctxt "tracking"
2797
  msgid "What do you track?"
2798
- msgstr "Qu'est-ce que vous analysez?"
2799
 
2800
  #: admin/tracking.php:214
2801
  msgctxt "tracking"
@@ -2807,80 +2815,80 @@ msgctxt "tracking"
2807
  msgid "Allow Tracking"
2808
  msgstr "Autoriser l'analyse"
2809
 
2810
- #: business-directory-plugin.php:702
2811
  msgctxt "admin plugins"
2812
  msgid "Settings"
2813
  msgstr "Paramètres"
2814
 
2815
- #: business-directory-plugin.php:712
2816
  msgctxt "post type general name"
2817
  msgid "Directory"
2818
  msgstr "Annuaire"
2819
 
2820
- #: business-directory-plugin.php:713
2821
  msgctxt "post type singular name"
2822
  msgid "Directory"
2823
  msgstr "Annuaire"
2824
 
2825
- #: business-directory-plugin.php:714
2826
  msgctxt "listing"
2827
  msgid "Add New Listing"
2828
  msgstr "Ajouter une nouvelle annonce"
2829
 
2830
- #: business-directory-plugin.php:715
2831
  msgctxt "post type"
2832
  msgid "Add New Listing"
2833
  msgstr "Ajouter une nouvelle annonce"
2834
 
2835
- #: business-directory-plugin.php:716 core/compatibility/deprecated.php:255
2836
  msgid "Edit Listing"
2837
  msgstr "Editer l'annonce"
2838
 
2839
- #: business-directory-plugin.php:717
2840
  msgid "New Listing"
2841
  msgstr "Nouvelle annonce"
2842
 
2843
- #: business-directory-plugin.php:718
2844
  msgid "View Listing"
2845
  msgstr "Voir l'annonce"
2846
 
2847
- #: business-directory-plugin.php:719
2848
  msgid "Search Listings"
2849
  msgstr "Rechercher"
2850
 
2851
- #: business-directory-plugin.php:720
2852
  msgid "No listings found"
2853
  msgstr "Aucune annonce trouvée"
2854
 
2855
- #: business-directory-plugin.php:721
2856
  msgid "No listings found in trash"
2857
  msgstr "Aucunes annonces trouvées dans la corbeille"
2858
 
2859
- #: business-directory-plugin.php:743
2860
  msgid "Directory Categories"
2861
  msgstr "Catégories de l'aannuaire"
2862
 
2863
- #: business-directory-plugin.php:856 business-directory-plugin.php:863
2864
  msgctxt "rss feed"
2865
  msgid "%s Feed"
2866
  msgstr "%s diffusion"
2867
 
2868
- #: business-directory-plugin.php:1265
2869
  msgctxt "title"
2870
  msgid "Submit A Listing"
2871
  msgstr "Soumettre une annonce"
2872
 
2873
- #: business-directory-plugin.php:1275
2874
  msgctxt "title"
2875
  msgid "Find a Listing"
2876
- msgstr "trouver une annonce"
2877
 
2878
- #: business-directory-plugin.php:1285
2879
  msgctxt "title"
2880
  msgid "View All Listings"
2881
  msgstr "Voir toutes les annonces"
2882
 
2883
- #: business-directory-plugin.php:1305
2884
  msgctxt "title"
2885
  msgid "Listings tagged: %s"
2886
  msgstr "Annonces marquées: %s"
@@ -2918,7 +2926,7 @@ msgstr "Le montant des frais doit être un nombre décimal non-négatif."
2918
  #: core/class-fee-plan.php:52
2919
  msgctxt "fees-api"
2920
  msgid "Fee must apply to at least one category."
2921
- msgstr "Fee doit être appliqué à au moins une catégorie."
2922
 
2923
  #: core/class-fee-plan.php:57
2924
  msgctxt "fees-api"
@@ -2946,6 +2954,8 @@ msgstr "L'étiquette de champ est requise"
2946
  msgctxt "form-fields-api"
2947
  msgid "Requested field type change is incompatible. Type will not be modified."
2948
  msgstr ""
 
 
2949
 
2950
  #: core/class-form-field.php:480
2951
  msgctxt "form-fields-api"
@@ -3030,12 +3040,12 @@ msgctxt "listing"
3030
  msgid "(Fee Unavailable)"
3031
  msgstr "(Coûts Non disponible)"
3032
 
3033
- #: core/class-listings-api.php:300
3034
  msgctxt "notify email"
3035
  msgid "[%s] New listing notification"
3036
  msgstr "[%s] Nouvelle notification d'annonce"
3037
 
3038
- #: core/class-listings-api.php:319
3039
  msgctxt "notify email"
3040
  msgid "[%s] Listing edit notification"
3041
  msgstr "[%s] Notification d'édition d'annonce"
@@ -3108,7 +3118,7 @@ msgid ""
3108
  "themes and WP version?"
3109
  msgstr ""
3110
  "Autoriser le plugin à collecter anonymement des informations concernant vos "
3111
- "plugins installés, thèmes et versions de Worpdress?"
3112
 
3113
  #: core/class-settings.php:34
3114
  msgctxt "admin settings"
@@ -3118,7 +3128,7 @@ msgstr "<a> En savoir plus </a> sur ce qu'analyse et n'analyse pas le plugin."
3118
  #: core/class-settings.php:37
3119
  msgctxt "admin settings"
3120
  msgid "Permalink Settings"
3121
- msgstr "Paramètres de Lien permanent"
3122
 
3123
  #: core/class-settings.php:38
3124
  msgctxt "admin settings"
@@ -3184,7 +3194,7 @@ msgstr "Utiliser CAPTCHA pour le formulaire de contact"
3184
  #: core/class-settings.php:56
3185
  msgctxt "admin settings"
3186
  msgid "Use reCAPTCHA for listing submits"
3187
- msgstr "Utiliser CAPTCHA pour la soumission de annonce"
3188
 
3189
  #: core/class-settings.php:59
3190
  msgctxt "admin settings"
@@ -3217,7 +3227,7 @@ msgstr "Paramètres d'enregistrement"
3217
  #: core/class-settings.php:72
3218
  msgctxt "admin settings"
3219
  msgid "Require login to post listings?"
3220
- msgstr "Connexion obligatoire pour poster une annonce?"
3221
 
3222
  #: core/class-settings.php:77
3223
  #, fuzzy
@@ -3254,14 +3264,14 @@ msgstr ""
3254
  #: core/class-settings.php:93 core/class-settings.php:102
3255
  msgctxt "admin settings"
3256
  msgid "Terms and Conditions"
3257
- msgstr "Termes et conditions"
3258
 
3259
  #: core/class-settings.php:96
3260
  msgctxt "admin settings"
3261
  msgid "Display and require user agreement to Terms and Conditions"
3262
  msgstr ""
3263
- "Afannonce et nécessite l'accord de l'utilisateur avec les Termes et "
3264
- "Conditions"
3265
 
3266
  #: core/class-settings.php:105
3267
  msgctxt "admin settings"
@@ -3270,7 +3280,7 @@ msgid ""
3270
  "Conditions text will be replaced by a link to the appropiate page."
3271
  msgstr ""
3272
  "Saisissez du texte ou une URL commençant par http. Si vous utilisez une URL, "
3273
- "le texte des Termes et Conditions sera remplacé par un lien vers la page "
3274
  "appropriée."
3275
 
3276
  #: core/class-settings.php:109
@@ -3306,7 +3316,7 @@ msgstr "Recherche dans l'annuaire"
3306
  #: core/class-settings.php:126
3307
  msgctxt "admin settings"
3308
  msgid "Search form display"
3309
- msgstr ""
3310
 
3311
  #: core/class-settings.php:130
3312
  msgctxt "admin settings"
@@ -3364,7 +3374,7 @@ msgid ""
3364
  msgstr ""
3365
  "L'activation de cette option fait que le plugin perdra en qualité de "
3366
  "résultat pour améliorer la vitesse de recherche. Ceci est utile si vous êtes "
3367
- "sur les plans d'hébergement partagé, où la performance de base de données "
3368
  "est un problème."
3369
 
3370
  #: core/class-settings.php:158
@@ -3395,7 +3405,7 @@ msgstr ""
3395
  #: core/class-settings.php:168
3396
  msgctxt "admin settings"
3397
  msgid "Enable AJAX compatibility mode?"
3398
- msgstr "Activer le mode de comptabilité AJAX?"
3399
 
3400
  #: core/class-settings.php:176 core/class-settings.php:654
3401
  msgctxt "admin settings"
@@ -3419,13 +3429,13 @@ msgid ""
3419
  "Number of listings to show per page. Use a value of \"0\" to show all "
3420
  "listings."
3421
  msgstr ""
3422
- "Nombre d'annonces à afannoncer par page. Utilisez une valeur de \"0 \" pour "
3423
- "afannoncer toutes les annonces."
3424
 
3425
  #: core/class-settings.php:182
3426
  msgctxt "admin settings"
3427
  msgid "Listing duration for no-fee sites (in days)"
3428
- msgstr "Durée des annonces pour les sites sans honoraires(en jours)"
3429
 
3430
  #: core/class-settings.php:183
3431
  msgctxt "admin settings"
@@ -3440,7 +3450,7 @@ msgstr ""
3440
  msgctxt "admin settings"
3441
  msgid "Include listing contact form on listing pages?"
3442
  msgstr ""
3443
- "Inclure les annonces de formulaire de contact sur les pages d'annonces?"
3444
 
3445
  #: core/class-settings.php:192
3446
  msgctxt "admin settings"
@@ -3454,7 +3464,7 @@ msgstr ""
3454
  #: core/class-settings.php:195
3455
  msgctxt "admin settings"
3456
  msgid "Require login for using the contact form?"
3457
- msgstr "Exiger une connexion pour utiliser le formulaire de contact?"
3458
 
3459
  #: core/class-settings.php:201
3460
  msgctxt "admin settings"
@@ -3467,13 +3477,13 @@ msgid ""
3467
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
3468
  "per day."
3469
  msgstr ""
3470
- "Utilisez ceci pour prévenir les annonces contenant des spams. 0 siginifie un "
3471
  "nombre de soumission illimité par jour."
3472
 
3473
  #: core/class-settings.php:210
3474
  msgctxt "admin settings"
3475
  msgid "Include comment form on listing pages?"
3476
- msgstr "Inclure les formulaire de commentaires dans pages annonces?"
3477
 
3478
  #: core/class-settings.php:213
3479
  msgctxt "admin settings"
@@ -3497,7 +3507,7 @@ msgstr "Statut des annonces dès la désinstallation du plugin"
3497
  #: core/class-settings.php:217
3498
  msgctxt "admin settings"
3499
  msgid "Status of deleted listings"
3500
- msgstr "Statut des annonces effacés"
3501
 
3502
  #: core/class-settings.php:220
3503
  msgctxt "admin settings"
@@ -3507,12 +3517,12 @@ msgstr "Renouvellement des annonces"
3507
  #: core/class-settings.php:221
3508
  msgctxt "admin settings"
3509
  msgid "Turn on listing renewal option?"
3510
- msgstr "Activer l'option renouvellement des annonces?"
3511
 
3512
  #: core/class-settings.php:224
3513
  msgctxt "admin settings"
3514
  msgid "Allow recurring renewal payments?"
3515
- msgstr "Autoriser les paiements récurrents de renouvellement?"
3516
 
3517
  #: core/class-settings.php:227
3518
  msgctxt "admin settings"
@@ -3544,13 +3554,14 @@ msgctxt "admin settings"
3544
  msgid "Listing renewal e-mail threshold (in days)"
3545
  msgstr "Seuil de renouvellement des annonces par e-mail (en jours)"
3546
 
 
3547
  #: core/class-settings.php:242
3548
  msgctxt "admin settings"
3549
  msgid ""
3550
  "Configure how many days before listing expiration is the renewal e-mail sent."
3551
  msgstr ""
3552
  "Configurer le nombre de jours avant l'expiration des annonces doit se "
3553
- "dérouler le renouvellement d'envoie d'e-mail."
3554
 
3555
  #: core/class-settings.php:246
3556
  msgctxt "admin settings"
@@ -3558,7 +3569,7 @@ msgid ""
3558
  "Send expiration notices including a cancel links to auto-renewed listings?"
3559
  msgstr ""
3560
  "Envoyer des avis d'expiration y compris un lien d'annulation vers le "
3561
- "renouvellement automatique des annonces?"
3562
 
3563
  #: core/class-settings.php:253
3564
  msgctxt "admin settings"
@@ -3634,18 +3645,18 @@ msgstr "Descendant"
3634
  #: core/class-settings.php:278
3635
  msgctxt "admin settings"
3636
  msgid "Show category post count?"
3637
- msgstr "Montrer les catégories par messages postés?"
3638
 
3639
  #: core/class-settings.php:279
3640
  msgctxt "admin settings"
3641
  msgid "Hide empty categories?"
3642
- msgstr "Cacher les catégories vides?"
3643
 
3644
  #: core/class-settings.php:280
3645
  msgctxt "admin settings"
3646
  msgid "Show only parent categories in category list?"
3647
  msgstr ""
3648
- "Montrer seulement les catégories parentes dans la liste des catégories?"
3649
 
3650
  #: core/class-settings.php:282
3651
  msgctxt "admin settings"
@@ -3706,7 +3717,7 @@ msgstr ""
3706
  #: core/class-settings.php:299
3707
  msgctxt "admin settings"
3708
  msgid "Enable sort bar?"
3709
- msgstr "Activer la barre de tri?"
3710
 
3711
  #: core/class-settings.php:304
3712
  msgctxt "admin settings"
@@ -3721,12 +3732,12 @@ msgstr "Paramètres sélectionnés (Post-it) des annonces"
3721
  #: core/class-settings.php:314
3722
  msgctxt "admin settings"
3723
  msgid "Offer sticky listings?"
3724
- msgstr "Proposer des annonces par Post-it?"
3725
 
3726
  #: core/class-settings.php:315
3727
  msgctxt "admin settings"
3728
  msgid "Offer upgrades during submit process?"
3729
- msgstr "Proposer des améliorations durant le processus de soumission?"
3730
 
3731
  #: core/class-settings.php:316
3732
  msgctxt "admin settings"
@@ -3756,7 +3767,7 @@ msgstr "E-Mail"
3756
  #: core/class-settings.php:327
3757
  msgctxt "admin settings"
3758
  msgid "Display email address fields publicly?"
3759
- msgstr "Affichage des champs d'adresses e-mail au public?"
3760
 
3761
  #: core/class-settings.php:330
3762
  msgctxt "admin settings"
@@ -3765,14 +3776,14 @@ msgid ""
3765
  "RECOMMENDED as this increases spam to the address and allows spam bots to "
3766
  "harvest it for future use."
3767
  msgstr ""
3768
- "Afannonce l'adresse email du propriétaire de l'annonce à tous les "
3769
  "utilisateurs du Web. PAS RECOMMANDE car cela augmente le spam à l'adresse en "
3770
  "question et permet aux spam bots de la récolter pour une utilisation future."
3771
 
3772
  #: core/class-settings.php:333
3773
  msgctxt "admin settings"
3774
  msgid "How to determine the listing's email address?"
3775
- msgstr "Comment définir l'adresse e-mail de l'annonce?"
3776
 
3777
  #: core/class-settings.php:336
3778
  msgctxt "admin settings"
@@ -3780,7 +3791,7 @@ msgid ""
3780
  "This affects emails sent to listing owners via contact forms or when their "
3781
  "listings expire."
3782
  msgstr ""
3783
- "Cela affecte l'envoie des emails aux propriétaires des annonces via le "
3784
  "formulaire de contact ou quand leurs annonces expirent."
3785
 
3786
  #: core/class-settings.php:343
@@ -3801,7 +3812,7 @@ msgstr "Une nouvelle annonce a été soumise."
3801
  #: core/class-settings.php:351
3802
  msgctxt "admin settings"
3803
  msgid "A listing is edited."
3804
- msgstr "Une annonce est édité."
3805
 
3806
  #: core/class-settings.php:352
3807
  msgctxt "admin settings"
@@ -4072,7 +4083,7 @@ msgctxt "settings"
4072
  msgid ""
4073
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4074
  msgstr ""
4075
- "Envoyé dès que les annonces se soient auto-renouvellées. Appliqué aux "
4076
  "paiements récurrents seulement."
4077
 
4078
  #: core/class-settings.php:503
@@ -4083,7 +4094,7 @@ msgstr "Catégories renouvellées"
4083
  #: core/class-settings.php:509
4084
  msgctxt "admin settings"
4085
  msgid "Renewal reminder e-mail message"
4086
- msgstr "Rennouveller le rappel par mail"
4087
 
4088
  #: core/class-settings.php:513
4089
  msgctxt "settings"
@@ -4108,12 +4119,12 @@ msgstr "Paramètres de paiement"
4108
  #: core/class-settings.php:527
4109
  msgctxt "admin settings"
4110
  msgid "Turn On payments?"
4111
- msgstr "Activer les paiements?"
4112
 
4113
  #: core/class-settings.php:529
4114
  msgctxt "admin settings"
4115
  msgid "Put payment gateways in test mode?"
4116
- msgstr "Passer les passerelles de paiement en mode test?"
4117
 
4118
  #: core/class-settings.php:534
4119
  msgctxt "admin settings"
@@ -4269,12 +4280,12 @@ msgstr "Affichage de la devise"
4269
  #: core/class-settings.php:579
4270
  msgctxt "admin settings"
4271
  msgid "Show currency symbol on the left"
4272
- msgstr ""
4273
 
4274
  #: core/class-settings.php:580
4275
  msgctxt "admin settings"
4276
  msgid "Show currency symbol on the right"
4277
- msgstr ""
4278
 
4279
  #: core/class-settings.php:581
4280
  msgctxt "admin settings"
@@ -4299,7 +4310,7 @@ msgstr ""
4299
  #: core/class-settings.php:589
4300
  msgctxt "admin settings"
4301
  msgid "Ask users to come back for abandoned payments?"
4302
- msgstr "Demandez aux utilisateurs de revenir pour les paiements abandonnés?"
4303
 
4304
  #: core/class-settings.php:592
4305
  msgctxt "admin settings"
@@ -4309,7 +4320,7 @@ msgid ""
4309
  "in listings that look like they failed, when the user simply didn't complete "
4310
  "the transaction. BD can remind them to come back and continue."
4311
  msgstr ""
4312
- "Un paiement est abandonnée lorsqu'un utilisateur tente de placer une annonce "
4313
  "et arrive à la fin, mais ne parvient pas à terminer leur paiement pour "
4314
  "l'inscription. Il en résulte des annonces qui semblent raté, lorsque "
4315
  "l'utilisateur n'a tout simplement pas compléter la transaction. Le plugin "
@@ -4318,7 +4329,7 @@ msgstr ""
4318
  #: core/class-settings.php:598
4319
  msgctxt "admin settings"
4320
  msgid "Listing abandonment threshold (hours)"
4321
- msgstr "Seuil d'abandon de l'annonce (heurs)"
4322
 
4323
  #: core/class-settings.php:603
4324
  msgctxt "admin settings"
@@ -4333,22 +4344,22 @@ msgstr ""
4333
  #: core/class-settings.php:609
4334
  msgctxt "admin settings"
4335
  msgid "Themes"
4336
- msgstr ""
4337
 
4338
  #: core/class-settings.php:614
4339
  msgctxt "admin settings"
4340
  msgid "Theme button style"
4341
- msgstr ""
4342
 
4343
  #: core/class-settings.php:618
4344
  msgctxt "admin settings"
4345
  msgid "Use the BD theme style for BD buttons"
4346
- msgstr ""
4347
 
4348
  #: core/class-settings.php:619
4349
  msgctxt "admin settings"
4350
  msgid "Use the WP theme style for BD buttons"
4351
- msgstr ""
4352
 
4353
  #: core/class-settings.php:627
4354
  msgctxt "admin settings"
@@ -4377,7 +4388,7 @@ msgstr "Paraamètres des images"
4377
  #: core/class-settings.php:630
4378
  msgctxt "admin settings"
4379
  msgid "Allow images?"
4380
- msgstr "Autoriser les images?"
4381
 
4382
  #: core/class-settings.php:632
4383
  msgctxt "admin settings"
@@ -4412,7 +4423,7 @@ msgstr "Hauteur maximal des images (px)"
4412
  #: core/class-settings.php:641
4413
  msgctxt "admin settings"
4414
  msgid "Turn on thickbox/lightbox?"
4415
- msgstr "Activer thickbox/lightbox?"
4416
 
4417
  #: core/class-settings.php:641
4418
  msgctxt "admin settings"
@@ -4440,7 +4451,7 @@ msgstr "Hauteur des miniatures (en pixel)"
4440
  #: core/class-settings.php:648
4441
  msgctxt "admin settings"
4442
  msgid "Crop thumbnails to exact dimensions?"
4443
- msgstr "Recadrer les miniatures aux dimensions exacts?"
4444
 
4445
  #: core/class-settings.php:651
4446
  msgctxt "admin settings"
@@ -4475,12 +4486,12 @@ msgstr ""
4475
  #: core/class-settings.php:665
4476
  msgctxt "admin settings"
4477
  msgid "Use default picture for listings with no picture?"
4478
- msgstr "Utiliser l'image par défault pour les annonces sans images?"
4479
 
4480
  #: core/class-settings.php:666
4481
  msgctxt "admin settings"
4482
  msgid "Show Thumbnail on main listings page?"
4483
- msgstr "Montrer les miniatures sur page principale des annonces?"
4484
 
4485
  #: core/class-settings.php:722
4486
  msgctxt "admin settings"
@@ -4489,7 +4500,7 @@ msgid ""
4489
  "not activated."
4490
  msgstr ""
4491
  "Impossible de copier le plugin de compatibilité AJAX \"% s\". Le mode de "
4492
- "compatibilité n'a pas été activée."
4493
 
4494
  #: core/class-settings.php:730
4495
  msgctxt "admin settings"
@@ -4507,27 +4518,27 @@ msgid ""
4507
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4508
  msgstr ""
4509
  "Impossible de supprimer le \"Module de comptabilité AJAX du plugin \". "
4510
- "Veuillezt supprimer le fichier \"% s \" manuellement ou désactiver le plugin."
4511
 
4512
  #: core/class-settings.php:1057
4513
  msgctxt "settings"
4514
  msgid "Deactivate License"
4515
- msgstr "Désactiver la license"
4516
 
4517
  #: core/class-settings.php:1059
4518
  msgctxt "settings"
4519
  msgid "Deactivating license..."
4520
- msgstr "Désactivation de la license..."
4521
 
4522
  #: core/class-settings.php:1062
4523
  msgctxt "settings"
4524
  msgid "Activate License"
4525
- msgstr "Activer la license"
4526
 
4527
  #: core/class-settings.php:1064
4528
  msgctxt "settings"
4529
  msgid "Activating license..."
4530
- msgstr "Activation de la license"
4531
 
4532
  #: core/class-settings.php:1088
4533
  msgctxt "admin settings"
@@ -4612,7 +4623,7 @@ msgstr "Soumettre l'annonce"
4612
  #: core/compatibility/class-navxt-integration.php:163
4613
  msgctxt "navxt"
4614
  msgid "Edit Listing"
4615
- msgstr "Editer l'annonce"
4616
 
4617
  #: core/compatibility/class-navxt-integration.php:167
4618
  #, fuzzy
@@ -4636,20 +4647,20 @@ msgstr "Effacer"
4636
  msgid "Upgrade Listing"
4637
  msgstr "Mettre à jour l'annonce"
4638
 
4639
- #: core/compatibility/deprecated.php:214 core/templates-ui.php:183
4640
  msgid "Submit A Listing"
4641
  msgstr "Soumettre une annonce"
4642
 
4643
- #: core/compatibility/deprecated.php:227 core/templates-ui.php:192
4644
  msgid "View Listings"
4645
  msgstr "Vue des annonces"
4646
 
4647
- #: core/compatibility/deprecated.php:238 core/templates-ui.php:202
4648
  msgid "Directory"
4649
  msgstr "Annuaire"
4650
 
4651
  #: core/compatibility/templates/wpbusdirman-index-categories.php:12
4652
- #: core/templates-ui.php:229
4653
  msgctxt "templates"
4654
  msgid "Search Listings"
4655
  msgstr "Recherche d'annonces"
@@ -4682,7 +4693,7 @@ msgstr "Champ Date"
4682
 
4683
  #: core/fieldtypes/class-fieldtypes-date.php:32
4684
  msgid "%s (ex. %s)"
4685
- msgstr ""
4686
 
4687
  #: core/fieldtypes/class-fieldtypes-date.php:36
4688
  msgctxt "form-fields api"
@@ -4779,12 +4790,12 @@ msgstr "Autoriser les ajouts HTML dans ce champ?"
4779
  #: core/fieldtypes/class-fieldtypes-textarea.php:54
4780
  msgctxt "form-fields admin"
4781
  msgid "Allow WordPress shortcodes in this field?"
4782
- msgstr "Autoriser les shortcodes WordPress dans ce champ?"
4783
 
4784
  #: core/fieldtypes/class-fieldtypes-textarea.php:57
4785
  msgctxt "form-fields admin"
4786
  msgid "Display a WYSIWYG editor on the frontend?"
4787
- msgstr ""
4788
 
4789
  #: core/fieldtypes/class-fieldtypes-textarea.php:60
4790
  msgctxt "form-fields admin"
@@ -4792,11 +4803,13 @@ msgid ""
4792
  "<b>Warning:</b> Users can use this feature to get around your image limits "
4793
  "in fee plans."
4794
  msgstr ""
 
 
4795
 
4796
  #: core/fieldtypes/class-fieldtypes-textarea.php:61
4797
  msgctxt "form-fields admin"
4798
  msgid "Allow images in WYSIWYG editor?"
4799
- msgstr ""
4800
 
4801
  #: core/fieldtypes/class-fieldtypes-textarea.php:64
4802
  msgctxt "form-fields admin"
@@ -4804,13 +4817,13 @@ msgid ""
4804
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
4805
  "switch it unless you know what you're doing."
4806
  msgstr ""
4807
- "<b> Utilisateurs avancés seulement! </ b> Sauf si vous avez été dit de "
4808
  "changer cela, ne le coupez pas sauf si vous savez ce que vous faites."
4809
 
4810
  #: core/fieldtypes/class-fieldtypes-textarea.php:65
4811
  msgctxt "form-fields admin"
4812
  msgid "Apply \"the_content\" filter before displaying this field?"
4813
- msgstr "Appliquer le filtre \"the_content \" avant d'afannoncer ce champ?"
4814
 
4815
  #: core/fieldtypes/class-fieldtypes-textfield.php:5
4816
  msgctxt "form-fields api"
@@ -4825,7 +4838,7 @@ msgstr "Format 01/31/1969"
4825
  #: core/fieldtypes/class-fieldtypes-twitter.php:6
4826
  msgctxt "form-fields api"
4827
  msgid "Social Site (Twitter handle)"
4828
- msgstr "Réseaux sociaux (Page twitter)"
4829
 
4830
  #: core/fieldtypes/class-fieldtypes-url.php:5
4831
  msgctxt "form-fields api"
@@ -4835,7 +4848,7 @@ msgstr "Champ URL"
4835
  #: core/fieldtypes/class-fieldtypes-url.php:22
4836
  msgctxt "form-fields admin"
4837
  msgid "Open link in a new window?"
4838
- msgstr "Ouvrir le lien dans une nnouvelle fenêtre?"
4839
 
4840
  #: core/fieldtypes/class-fieldtypes-url.php:25
4841
  msgctxt "form-fields admin"
@@ -4917,7 +4930,7 @@ msgstr "Fax de l'entreprise"
4917
 
4918
  #: core/form-fields.php:324
4919
  msgid "Business Contact Email"
4920
- msgstr "Email de contact de l'entreprise"
4921
 
4922
  #: core/form-fields.php:326
4923
  msgid "Business Tags"
@@ -4949,7 +4962,7 @@ msgstr "Validateur de nombre entier"
4949
  #: core/form-fields.php:456
4950
  msgctxt "form-fields-api"
4951
  msgid "Decimal Number Validator"
4952
- msgstr "Validateur de nombre à décimal"
4953
 
4954
  #: core/form-fields.php:457
4955
  msgctxt "form-fields-api"
@@ -4979,7 +4992,7 @@ msgstr "%s est mal formaté. Un format valide d'email est requis."
4979
  #: core/form-fields.php:520
4980
  msgctxt "form-fields-api validation"
4981
  msgid "%s must be a number. Decimal values are not allowed."
4982
- msgstr "%s doit être un nombre. Les valeurs décimals ne sont pas autorisées."
4983
 
4984
  #: core/form-fields.php:526
4985
  msgctxt "form-fields-api validation"
@@ -5003,7 +5016,7 @@ msgstr "%s est invalide. "
5003
 
5004
  #: core/gateways-authorize-net.php:19
5005
  msgid "Activate Authorize.net?"
5006
- msgstr "Activer Authorize.net?"
5007
 
5008
  #: core/gateways-authorize-net.php:25
5009
  msgid "Login ID"
@@ -5029,7 +5042,7 @@ msgid ""
5029
  "The payment gateway didn't accept your credit card or billing information. "
5030
  "The following reason was given: \"%s\"."
5031
  msgstr ""
5032
- "Le support de paiement n'a pas accepté votre carte de crédit ou vos "
5033
  "informations de facturation. La raison est la suivante: \"%s \"."
5034
 
5035
  #: core/gateways-authorize-net.php:96
@@ -5044,7 +5057,7 @@ msgstr ""
5044
  #: core/gateways-authorize-net.php:99 core/gateways-authorize-net.php:122
5045
  msgctxt "authorize-net"
5046
  msgid "Payment was rejected. The following reason was given: \"%s\"."
5047
- msgstr "Votre paiement a été rejetée. La raison est la suivante: \"%s \"."
5048
 
5049
  #: core/gateways-authorize-net.php:116
5050
  #, fuzzy
@@ -5105,30 +5118,28 @@ msgstr "Le dossier \"%s\" n'est pas accessible en écriture"
5105
  #: core/helpers/class-themes-updater.php:125
5106
  msgctxt "themes"
5107
  msgid "Updating theme..."
5108
- msgstr ""
5109
 
5110
  #: core/helpers/class-themes-updater.php:126
5111
- #, fuzzy
5112
  msgctxt "themes"
5113
  msgid "Theme updated."
5114
- msgstr "Frais mis à jour"
5115
 
5116
  #: core/helpers/class-themes-updater.php:128
5117
  msgctxt "themes"
5118
  msgid "New version available (<b>%s</b>). <a>Update now.</a>"
5119
  msgstr ""
 
5120
 
5121
  #: core/helpers/class-themes-updater.php:156
5122
- #, fuzzy
5123
  msgctxt "themes"
5124
  msgid "Could not update theme: %s"
5125
- msgstr "Impossible de désactiver la licence: %s."
5126
 
5127
  #: core/helpers/class-themes-updater.php:162
5128
- #, fuzzy
5129
  msgctxt "themes"
5130
  msgid "Theme was updated sucessfully."
5131
- msgstr "Le thème a été supprimé"
5132
 
5133
  #: core/installer.php:42
5134
  msgctxt "default category name"
@@ -5136,10 +5147,9 @@ msgid "General"
5136
  msgstr "Général"
5137
 
5138
  #: core/installer.php:50
5139
- #, fuzzy
5140
  msgctxt "installer"
5141
  msgid "Default Fee"
5142
- msgstr "Effacer les Frais"
5143
 
5144
  #: core/installer.php:484
5145
  msgctxt "installer"
@@ -5148,9 +5158,9 @@ msgid ""
5148
  "incompatible with the current version of Business Directory. Please update "
5149
  "the Regions module."
5150
  msgstr ""
5151
- "<b>Business Directory Plugin - Module de Régions</b> a été désactivé car il "
5152
- "est incompatible avec la version actuelle du plugin. Veuillez mettre à jour "
5153
- "le module."
5154
 
5155
  #: core/installer.php:550
5156
  msgctxt "installer"
@@ -5184,11 +5194,11 @@ msgctxt "installer"
5184
  msgid "Listing upgrade to featured"
5185
  msgstr "Mise à jour des annonces vers prioritaire"
5186
 
5187
- #: core/installer.php:933
5188
  msgid "Business Directory - Manual Upgrade Required"
5189
  msgstr "Business Directory - Mise à jour manuelle requise"
5190
 
5191
- #: core/installer.php:935
5192
  msgid ""
5193
  "Business Directory features are currently disabled because the plugin needs "
5194
  "to perform a manual upgrade before continuing."
@@ -5197,15 +5207,15 @@ msgstr ""
5197
  "désactivés car le plugin a besoin d'effectuer une mise à jour manuelle avant "
5198
  "de poursuivre."
5199
 
5200
- #: core/installer.php:937
5201
  msgid "Perform Manual Upgrade"
5202
  msgstr "Effectuer la mise à jour manuelle"
5203
 
5204
- #: core/installer.php:953 core/installer.php:954 core/installer.php:965
5205
  msgid "Business Directory - Manual Upgrade"
5206
  msgstr "Business Directory - Mise à jour manuelle"
5207
 
5208
- #: core/installer.php:969
5209
  msgid ""
5210
  "Business Directory features are currently disabled because the plugin needs "
5211
  "to perform a manual upgrade before it can be used."
@@ -5214,32 +5224,32 @@ msgstr ""
5214
  "désactivées car le plugin a besoin d'effectuer une mise à jour manuelle afin "
5215
  "d'être pleinement utilisable."
5216
 
5217
- #: core/installer.php:971
5218
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5219
  msgstr ""
5220
- "Cliquez sur \"Commencer la mise à jour\" et patientez jusqu'à la fin du "
5221
  "processus."
5222
 
5223
- #: core/installer.php:974
5224
  msgctxt "manual-upgrade"
5225
  msgid "Start Upgrade"
5226
- msgstr "Commencer la mise à jour"
5227
 
5228
- #: core/installer.php:976
5229
  msgctxt "manual-upgrade"
5230
  msgid "Pause Upgrade"
5231
- msgstr "Mettre en pause la mise à jour"
5232
 
5233
- #: core/installer.php:982
5234
  msgctxt "manual-upgrade"
5235
  msgid ""
5236
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
5237
  "available."
5238
  msgstr ""
5239
- "La mise à jour s'est bien effectué. Le plugin Business Directory est "
5240
  "maintenant disponible et fonctionnel."
5241
 
5242
- #: core/installer.php:985
5243
  msgctxt "manual-upgrade"
5244
  msgid "Go to \"Directory Admin\""
5245
  msgstr "Aller à \"Administrateur de l'annuaire\""
@@ -5247,7 +5257,7 @@ msgstr "Aller à \"Administrateur de l'annuaire\""
5247
  #: core/licensing.php:43 core/licensing.php:65 core/licensing.php:66
5248
  msgctxt "settings"
5249
  msgid "Licenses"
5250
- msgstr "Licenses"
5251
 
5252
  #: core/licensing.php:46
5253
  msgctxt "settings"
@@ -5304,7 +5314,7 @@ msgstr ""
5304
  #: core/licensing.php:259
5305
  msgctxt "licensing"
5306
  msgid "Remind me later"
5307
- msgstr "Rappelez le moi plus tard"
5308
 
5309
  #: core/licensing.php:261
5310
  msgctxt "licensing"
@@ -5338,8 +5348,8 @@ msgid ""
5338
  msgstr ""
5339
  "Le <b>%s </b> passerelle est actif mais n'est pas correctement configuré. La "
5340
  "passerelle ne sera pas disponible jusqu'à ce que les problèmes suivants "
5341
- "soient fixés: <b>%s </b>. <br/> Vérifiez les <a href=\"%s\"> paramètres de "
5342
- "paiement </a>."
5343
 
5344
  #: core/payment.php:119
5345
  msgctxt "admin"
@@ -5349,7 +5359,7 @@ msgid ""
5349
  "payment settings. Until you change this, the directory will operate in "
5350
  "<i>Free Mode</i>."
5351
  msgstr ""
5352
- "Vous avez activer les paiements mais aucune passerelle n'est actif et "
5353
  "correctement configurée. Allez à <a href=\"%s\"> gérer les options - "
5354
  "Paiement </a> pour modifier les paramètres de paiement. Jusqu'à ce que vous "
5355
  "modifiez cela, le répertoire fonctionnera en <i> Mode libre </ i>."
@@ -5377,12 +5387,17 @@ msgstr ""
5377
  "récurrents (comme PayPal) soit activé, les renouvellements automatiques "
5378
  "seront désactivées."
5379
 
 
5380
  #: core/payment.php:135
5381
  msgid ""
5382
  "You have payments enabled but there are no fees available. Users won't be "
5383
  "able to post listings. Please <a href=\"fees\">create some fees</a> or <a "
5384
  "href=\"settings\">configure the Directory</a> to operate in \"Free Mode\"."
5385
  msgstr ""
 
 
 
 
5386
 
5387
  #: core/payment.php:169
5388
  msgctxt "payments-api"
@@ -5397,7 +5412,7 @@ msgstr "Payez %1$s par %2$s"
5397
  #: core/payment.php:177
5398
  msgctxt "payments-api"
5399
  msgid "Your transaction has been approved."
5400
- msgstr "Votre traansaction a été aapprouvée."
5401
 
5402
  #: core/payment.php:363
5403
  msgctxt "payments"
@@ -5433,7 +5448,7 @@ msgid ""
5433
  "Method\" to select another payment method and try again."
5434
  msgstr ""
5435
  "Le paiement a été rejeté par la passerelle de paiement. Veuillez contacter "
5436
- "l'administrateur du site si vous pensez qu'il ya une erreur ou cliquez sur "
5437
  "\"Changer de Paiement \" pour sélectionner une autre méthode de paiement et "
5438
  "essayez à nouveau."
5439
 
@@ -5472,7 +5487,7 @@ msgctxt "templates"
5472
  msgid "Featured Listing"
5473
  msgstr "Annonce sélectionnée"
5474
 
5475
- #: core/templates/listings.tpl.php:6
5476
  #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:21
5477
  msgctxt "templates"
5478
  msgid "No listings found."
@@ -5490,47 +5505,64 @@ msgctxt "templates"
5490
  msgid "Next &raquo;"
5491
  msgstr "Suivant &raquo;"
5492
 
5493
- #: core/templates-ui.php:159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5494
  msgctxt "templates"
5495
  msgid "No listing categories found."
5496
  msgstr "Aucune catégorie d'annonce trouvée"
5497
 
5498
- #: core/templates-ui.php:232
5499
  msgctxt "templates"
5500
  msgid "Advanced Search"
5501
  msgstr "Recherche avancée"
5502
 
5503
- #: core/templates-ui.php:258 core/templates-ui.php:283
5504
  msgctxt "templates sort"
5505
  msgid "Sort By:"
5506
  msgstr "Trier par:"
5507
 
5508
- #: core/templates-ui.php:277
5509
  msgctxt "sort"
5510
  msgid "Reset"
5511
  msgstr "Réinitialiser"
5512
 
5513
- #: core/templates-ui.php:299
5514
  msgctxt "sort"
5515
  msgid "(Reset)"
5516
  msgstr "(Réinitialiser)"
5517
 
5518
- #: core/themes.php:597
5519
  msgctxt "themes"
5520
  msgid "ZIP file is not a valid BD theme file."
5521
  msgstr "Le fichier ZIP n'est pas un fichier de thème valide"
5522
 
5523
- #: core/themes.php:603
5524
  msgctxt "themes"
5525
  msgid "Could not create themes directory."
5526
  msgstr "Impossible de créer le répertoire de thèmes"
5527
 
5528
- #: core/themes.php:611
5529
  msgctxt "themes"
5530
  msgid "Could not remove previous theme directory \"%s\"."
5531
  msgstr "Impossible de supprimer le dossier de thème précédent \"%s\"."
5532
 
5533
- #: core/themes.php:617
5534
  msgctxt "themes"
5535
  msgid "Could not move new theme into theme directory."
5536
  msgstr "Impossible de déplacer le nouveau thème dans le dossier à thèmes"
@@ -5563,7 +5595,7 @@ msgstr "Le type de fichier \"%s\" n'est pas autorisé"
5563
  #: core/utils.php:195
5564
  msgctxt "utils"
5565
  msgid "Unkown error while uploading file."
5566
- msgstr "Une erreur inconnu est survenu lors de l'upload du fichier."
5567
 
5568
  #: core/utils.php:214
5569
  msgctxt "utils"
@@ -5619,7 +5651,7 @@ msgid ""
5619
  "Payments are not allowed on the non-secure version of this site. Please "
5620
  "<a>continue to the secure server to proceed with your payment</a>."
5621
  msgstr ""
5622
- "Les paiements ne sont pas autorisés sur la version non-sécurisé du site. "
5623
  "Veuillez <a> continuer vers le serveur sécurisé afin de procéder à votre "
5624
  "paiement</a>."
5625
 
@@ -5655,7 +5687,7 @@ msgstr "Veuillez vous connecter pour effacer cette annonce."
5655
  #: core/view-delete-listing.php:23
5656
  msgctxt "delete listing"
5657
  msgid "Your listing has been deleted."
5658
- msgstr "Votre annonce a été effacé."
5659
 
5660
  #: core/view-listing-contact.php:48
5661
  msgctxt "contact-message"
@@ -5665,12 +5697,12 @@ msgstr "Veuillez entrer votre nom."
5665
  #: core/view-listing-contact.php:51
5666
  msgctxt "contact-message"
5667
  msgid "Please enter a valid email."
5668
- msgstr "Veuillez entrer un email valide."
5669
 
5670
  #: core/view-listing-contact.php:54
5671
  msgctxt "contact-message"
5672
  msgid "You did not enter a message."
5673
- msgstr "Vous n'avez pas entrer de message."
5674
 
5675
  #: core/view-listing-contact.php:57
5676
  msgctxt "contact-message"
@@ -5708,7 +5740,7 @@ msgstr "l F j, Y \\a\\t g:i a"
5708
  #: core/view-listing-contact.php:192
5709
  msgctxt "contact-message"
5710
  msgid "There was a problem encountered. Your message has not been sent"
5711
- msgstr "Un problem est survenu. Votre message n'a pas été envoyé"
5712
 
5713
  #: core/view-listing-contact.php:195
5714
  msgctxt "contact-message"
@@ -5739,7 +5771,7 @@ msgid ""
5739
  "e-mail message."
5740
  msgstr ""
5741
  "Votre ID de renouvellement est invalide. Veuillez utiliser l'URL que vous "
5742
- "avez reçu dans l'email de renouvellement."
5743
 
5744
  #: core/view-renew-listing.php:47
5745
  msgctxt "renewal"
@@ -5767,7 +5799,7 @@ msgid ""
5767
  "Because you are on a recurring fee plan you don't have to renew your listing "
5768
  "right now as this will be handled automatically when renewal comes."
5769
  msgstr ""
5770
- "Etant donné que vous êtes sur un plan de frais récurrents vous n'avez pas à "
5771
  "renouveler votre inscription immédiatement, cela sera géré automatiquement "
5772
  "lorsque le renouvellement surviendra."
5773
 
@@ -5806,11 +5838,11 @@ msgid ""
5806
  "listing at this time. Listings cannot be added until you assign categories "
5807
  "to the business directory."
5808
  msgstr ""
5809
- "Il n'y a pas encore de catégorie affectés à l'annuaire professionnel. Vous "
5810
  "devez affecter quelques catégories à l'annuaire professionnel. Seuls les "
5811
- "administrateurs peuvent voir ce message. Les utilisateurs réguliers voient "
5812
  "un message indiquant qu'ils ne peuvent ajouter leur annonce pour le moment. "
5813
- "Les annonces ne peuvent pas être ajoutés tant que vous n'avez pas attribuer "
5814
  "des catégories à l'annuaire professionnel."
5815
 
5816
  #: core/view-submit-listing.php:31
@@ -5820,9 +5852,9 @@ msgid ""
5820
  "is not the first time you see this warning, please ask the site "
5821
  "administrator to set up one or more categories inside the Directory."
5822
  msgstr ""
5823
- "Votre annonce ne peut être ajouté pour le moment. Veuillez réessayer plus "
5824
  "tard. Si vous avez déjà vu cette annonce, veuillez prévenir l'administrateur "
5825
- "du site pour installer une caatégorie suplémentaire dans l'annuaire."
5826
 
5827
  #: core/view-submit-listing.php:43
5828
  msgctxt "templates"
@@ -5832,7 +5864,7 @@ msgstr "Vous n'êtes pas autorisé à éditer cette annonce."
5832
  #: core/view-submit-listing.php:58
5833
  msgctxt "templates"
5834
  msgid "Edit Your Listing"
5835
- msgstr "Editer votre annonce"
5836
 
5837
  #: core/view-submit-listing.php:58
5838
  msgctxt "templates"
@@ -5844,18 +5876,18 @@ msgctxt "templates"
5844
  msgid ""
5845
  "You are logged in as an administrator. Any payment steps will be skipped."
5846
  msgstr ""
5847
- "Vous êtes connectés en tant qu'administrateur. TOutes les étapes de paiement "
5848
- "seront passé."
5849
 
5850
  #: core/view-submit-listing.php:205
5851
  msgctxt "templates"
5852
  msgid "Please select a fee option for the \"%s\" category."
5853
- msgstr "Veuillez sélectionner une option de frai pour la catégorie \"%s\"."
5854
 
5855
  #: core/view-submit-listing.php:273
5856
  msgctxt "templates"
5857
  msgid "Please agree to the Terms and Conditions."
5858
- msgstr "Veuillez accepter les Termes et Conditions."
5859
 
5860
  #: core/view-submit-listing.php:279
5861
  msgctxt "templates"
@@ -5865,17 +5897,17 @@ msgstr "Le CAPTCHA n'a pas été rentré correctement."
5865
  #: core/view-submit-listing.php:296
5866
  msgctxt "templates"
5867
  msgid "Read our Terms and Conditions"
5868
- msgstr "Lisez nos Termes et Conditions"
5869
 
5870
  #: core/view-submit-listing.php:301
5871
  msgctxt "templates"
5872
  msgid "Terms and Conditions:"
5873
- msgstr "Termes et Conditions:"
5874
 
5875
  #: core/view-submit-listing.php:312
5876
  msgctxt "templates"
5877
  msgid "I agree to the Terms and Conditions"
5878
- msgstr "Je suis en accord avec les Termes et Condiditons"
5879
 
5880
  #: core/view-submit-listing.php:449
5881
  msgctxt "listings"
@@ -5885,7 +5917,7 @@ msgstr "Frais \"%s\" pour la catégorie \"%s\"%s"
5885
  #: core/view-submit-listing.php:452
5886
  msgctxt "listings"
5887
  msgid "(recurring)"
5888
- msgstr "(récurrant)"
5889
 
5890
  #: core/view-submit-listing.php:462 core/view-upgrade-listing.php:54
5891
  msgctxt "submit"
@@ -5895,7 +5927,7 @@ msgstr "Mise à jour de l'annonce vers prioritaire"
5895
  #: core/view-submit-listing.php:495
5896
  msgctxt "submit_state"
5897
  msgid "Invalid submit state."
5898
- msgstr "Etat de soumission invalide"
5899
 
5900
  #: core/view-upgrade-listing.php:21
5901
  msgctxt "listing upgrade"
@@ -5919,7 +5951,7 @@ msgid ""
5919
  "You need to create a page with the [businessdirectory] shortcode for the "
5920
  "Business Directory plugin to work correctly."
5921
  msgstr ""
5922
- "Vous devez créer une page avec le shortcode [businessdirectory] pour que le "
5923
  "plugin Business Directory fonctionne correctement."
5924
 
5925
  #: core/views.php:34
@@ -5931,14 +5963,14 @@ msgctxt "preview"
5931
  msgid "This is just a preview. The listing has not been published yet."
5932
  msgstr ""
5933
  "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
5934
- "publié."
5935
 
5936
  #: core/views.php:369
5937
  msgctxt "templates"
5938
  msgid "Listings tagged: %s"
5939
- msgstr "Annonces étiquettées: %s"
5940
 
5941
- #: core/views.php:486
5942
  msgctxt "templates"
5943
  msgid ""
5944
  "There are no categories assigned to the business directory yet. You need to "
@@ -5947,19 +5979,19 @@ msgid ""
5947
  "listings in the directory. Listings cannot be added until you assign "
5948
  "categories to the business directory."
5949
  msgstr ""
5950
- "Il n'y a pas encore de catégorie affectés à l'annuaire professionnel. Vous "
5951
  "devez affecter quelques catégories à l'annuaire professionnel. Seuls les "
5952
- "administrateurs peuvent voir ce message. Les utilisateurs réguliers voient "
5953
  "un message indiquant qu'ils ne peuvent ajouter leur annonce pour le moment. "
5954
  "Les annonces ne peuvent pas être ajoutés tant que vous n'avez pas attribuer "
5955
  "des catégories à l'annuaire professionnel."
5956
 
5957
- #: core/views.php:488
5958
  msgctxt "templates"
5959
  msgid "There are currently no listings in the directory."
5960
  msgstr "Il n'y a actuellement aucune annonce dans l'annuaire."
5961
 
5962
- #: core/views.php:506
5963
  msgctxt "templates"
5964
  msgid ""
5965
  "You have \"Hide Empty Categories\" on and some categories that don't have "
@@ -5967,20 +5999,20 @@ msgid ""
5967
  "site. If you didn't want that, click <a>here</a> to change the setting."
5968
  msgstr ""
5969
  "Vous avez \"Cacher les catégories vides \" et certaines catégories qui ne "
5970
- "possèdent d'annonces. Cela signifie qu'ils ne seront pas visibles sur "
5971
- "l'extrémité avant de votre site. Si cela ne correspond pas à votre souhait, "
5972
- "cliquez </a> ici <a> pour modifier le réglage."
5973
 
5974
  #: core/widget-featured-listings.php:11
5975
  msgctxt "widgets"
5976
  msgid "Business Directory - Featured Listings"
5977
- msgstr "Business DIrectory - Annonces prioritaires"
5978
 
5979
  #: core/widget-featured-listings.php:12
5980
  msgctxt "widgets"
5981
  msgid "Displays a list of the featured/sticky listings in the directory."
5982
  msgstr ""
5983
- "Afannonce une liste des annonces prioritaires/récurrentes dans l'annuaire."
5984
 
5985
  #: core/widget-featured-listings.php:14
5986
  msgctxt "widgets"
@@ -5990,7 +6022,7 @@ msgstr "Annonces prioritaires."
5990
  #: core/widget-featured-listings.php:23
5991
  msgctxt "widgets"
5992
  msgid "Display listings in random order"
5993
- msgstr "Afannoncer les annonces de façon aléatoire"
5994
 
5995
  #: core/widget-latest-listings.php:11
5996
  msgctxt "widgets"
@@ -6001,7 +6033,7 @@ msgstr "Business Directory - Dernières annonces"
6001
  msgctxt "widgets"
6002
  msgid "Displays a list of the latest listings in the Business Directory."
6003
  msgstr ""
6004
- "Afannoncer une liste des dernières annonces dans l'annuaire professionnel."
6005
 
6006
  #: core/widget-latest-listings.php:14
6007
  msgctxt "widgets"
@@ -6016,8 +6048,7 @@ msgstr "Business Directory - Annonces aléatoires"
6016
  #: core/widget-random-listings.php:12
6017
  msgctxt "widgets"
6018
  msgid "Displays a list of random listings from the Business Directory."
6019
- msgstr ""
6020
- "Afannoncer une liste d'annonces aléatoires de l'annuaire professionnel."
6021
 
6022
  #: core/widget-random-listings.php:14
6023
  msgctxt "widgets"
@@ -6033,8 +6064,7 @@ msgstr "Business Directory - Recherche"
6033
  msgctxt "widgets"
6034
  msgid "Displays a search form to look for Business Directory listings."
6035
  msgstr ""
6036
- "Afannoncer un formulaire de recherche pour rechercher les annonces de "
6037
- "Business Directory."
6038
 
6039
  #: core/widget-search.php:18
6040
  msgctxt "widgets"
@@ -6064,7 +6094,7 @@ msgstr "Champ de recherche (mode avancé)"
6064
  #: core/widget-search.php:50
6065
  msgctxt "widgets"
6066
  msgid "Display the following fields in the form."
6067
- msgstr "Afannoncer les champs suivant dans le formulaire."
6068
 
6069
  #: core/widget-search.php:102
6070
  msgctxt "widgets"
@@ -6199,7 +6229,7 @@ msgstr "adresse ligne 2:"
6199
  #: templates/billing-information-form.tpl.php:127
6200
  msgctxt "checkout form"
6201
  msgid "ZIP Code:"
6202
- msgstr ""
6203
 
6204
  #: templates/billing-information-form.tpl.php:137
6205
  msgctxt "WPBDM"
@@ -6234,7 +6264,7 @@ msgid ""
6234
  "Please visit <a>Manage recurring payments</a> to review your current "
6235
  "recurring payments."
6236
  msgstr ""
6237
- "Veuillez visiter <a>Gérer les paiements récurrents</a> pour vérifer vos "
6238
  "paiement récurrents actuelles."
6239
 
6240
  #: templates/delete-listing-confirm.tpl.php:18
@@ -6245,7 +6275,7 @@ msgstr "Vous êtes sur le point d'effacer votre annonce \"%s\" de l'annuaire."
6245
  #: templates/delete-listing-confirm.tpl.php:19
6246
  msgctxt "delete listing"
6247
  msgid "Are you sure you want to do this?"
6248
- msgstr "Êtes-vous sûr de vouloir faire ça?"
6249
 
6250
  #: templates/delete-listing-confirm.tpl.php:24
6251
  msgctxt "delete listing"
@@ -6322,8 +6352,8 @@ msgid ""
6322
  "You are currently logged in as %s. Your message will be sent using your "
6323
  "logged in contact email."
6324
  msgstr ""
6325
- "Vous êtes actuellement connecté en taant que %s. Votre message sera envoyé "
6326
- "en utilisant votre compte email."
6327
 
6328
  #: templates/listing-contactform.tpl.php:23
6329
  msgctxt "templates"
@@ -6368,12 +6398,7 @@ msgstr ""
6368
  #: templates/manage-listings.tpl.php:9
6369
  msgctxt "templates"
6370
  msgid "You do not currently have any listings in the directory."
6371
- msgstr "Vous ne possédez pas actuellement aucune annonce dans l'annuaire."
6372
-
6373
- #: templates/manage-listings.tpl.php:11 templates/search.tpl.php:24
6374
- msgctxt "templates"
6375
- msgid "Return to directory"
6376
- msgstr "Retourner vers l'annuaire"
6377
 
6378
  #: templates/manage-recurring-cancel.tpl.php:1
6379
  msgctxt "manage recurring"
@@ -6420,6 +6445,7 @@ msgctxt "manage recurring"
6420
  msgid "Listing"
6421
  msgstr "Annonce"
6422
 
 
6423
  #: templates/manage-recurring.tpl.php:6
6424
  msgctxt "manage subscriptions"
6425
  msgid "Subscription / Fee Plan"
@@ -6461,10 +6487,9 @@ msgid "Images Allowed"
6461
  msgstr "Images autorisées"
6462
 
6463
  #: templates/parts/category-fee-selection.tpl.php:28
6464
- #, fuzzy
6465
  msgctxt "templates"
6466
  msgid "There are no fees available for this category."
6467
- msgstr "Veuillez sélectionner une option de frai pour la catégorie \"%s\"."
6468
 
6469
  #: templates/parts/category-fee-selection.tpl.php:50
6470
  msgctxt "templates"
@@ -6520,10 +6545,11 @@ msgid ""
6520
  "registering, you will receive an activation email. Be sure to check your "
6521
  "spam if you don't see it in your email within 60 minutes."
6522
  msgstr ""
6523
- "Vous n'êtes, actuellement, pas connecté. Veuillez d'abord vous connecter ou "
6524
- "vous inscrire. Lors de l'inscription, vous recevrez un email d'activation. "
6525
- "Assurez-vous de vérifier votre spam si vous ne le voyez pas dans votre boîte "
6526
- "de réception dans les 60 minutes qui suivent votre inscription."
 
6527
 
6528
  #: templates/parts/login-required.tpl.php:10
6529
  msgctxt "templates"
@@ -6533,12 +6559,12 @@ msgstr "Connexion"
6533
  #: templates/parts/login-required.tpl.php:31
6534
  msgctxt "templates"
6535
  msgid "Not yet registered?"
6536
- msgstr "Pas encore enregistré?"
6537
 
6538
  #: templates/parts/login-required.tpl.php:33
6539
  msgctxt "templates"
6540
  msgid "Lost your password?"
6541
- msgstr "Mot de passe perdu?"
6542
 
6543
  #: templates/payment/payment_items.tpl.php:5
6544
  msgctxt "payment_items"
@@ -6559,13 +6585,13 @@ msgstr "Total"
6559
  msgctxt "templates"
6560
  msgid "We can not process your payment at this moment. Please try again later."
6561
  msgstr ""
6562
- "Nous ne pouvons pas procéder à votre paiement pour le moment. Veuillez "
6563
- "réessayer plus tard."
6564
 
6565
  #: templates/renew-listing.tpl.php:3
6566
  msgctxt "templates"
6567
  msgid "Renew Listing"
6568
- msgstr "Renouveller l'annonce"
6569
 
6570
  #: templates/renew-listing.tpl.php:7
6571
  msgctxt "renewal"
@@ -6587,8 +6613,8 @@ msgid ""
6587
  "Please select a fee option or click \"Do not renew my listing\" to cancel "
6588
  "your renewal."
6589
  msgstr ""
6590
- "Veuillez sélectionner une option de frais ou cliquez sur \"Ne pas "
6591
- "renouveller mon annonce\" pour annuler votre renouvellement."
6592
 
6593
  #: templates/renew-listing.tpl.php:22
6594
  #: templates/submit-listing/category-selection.tpl.php:8
@@ -6607,7 +6633,7 @@ msgstr "Annuler le renouvellement de l'annonce"
6607
  #: templates/renew-listing.tpl.php:26
6608
  msgctxt "templates"
6609
  msgid "Do not renew my listing"
6610
- msgstr "Ne pas renouveller mon annonce"
6611
 
6612
  #: templates/search-form.tpl.php:3
6613
  msgctxt "templates"
@@ -6619,20 +6645,10 @@ msgctxt "search"
6619
  msgid "Clear"
6620
  msgstr "Effacer"
6621
 
6622
- #: templates/search-form.tpl.php:15 templates/search.tpl.php:6
6623
- msgctxt "search"
6624
- msgid "Search"
6625
- msgstr "Rechercher"
6626
-
6627
- #: templates/search.tpl.php:14
6628
- msgctxt "search"
6629
- msgid "Search Results"
6630
- msgstr "Résultats de la recherche"
6631
-
6632
  #: templates/submit-listing/category-selection.tpl.php:1
6633
  msgctxt "templates"
6634
  msgid "Category Selection"
6635
- msgstr "Selection de la catégorier"
6636
 
6637
  #: templates/submit-listing/done.tpl.php:1
6638
  msgctxt "templates"
@@ -6690,7 +6706,7 @@ msgid ""
6690
  "Would you like to make your fee renew automatically at the end of the period?"
6691
  msgstr ""
6692
  "Voulez vous que vos frais se renouvellent automatiquement à la fin de la "
6693
- "période?"
6694
 
6695
  #: templates/submit-listing/images-single.tpl.php:18
6696
  msgctxt "templates"
@@ -6793,6 +6809,8 @@ msgid ""
6793
  "There is a new version of %1$s available. <a target=\"_blank\" class="
6794
  "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
6795
  msgstr ""
 
 
6796
 
6797
  #: vendors/edd/EDD_SL_Plugin_Updater.php:185
6798
  msgid ""
@@ -6800,6 +6818,9 @@ msgid ""
6800
  "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
6801
  "\">update now</a>."
6802
  msgstr ""
 
 
 
6803
 
6804
  #: vendors/edd/EDD_SL_Plugin_Updater.php:325
6805
  msgid "You do not have permission to install plugin updates"
@@ -6829,6 +6850,18 @@ msgstr "D. Rodenbaugh"
6829
  msgid "http://businessdirectoryplugin.com"
6830
  msgstr "http://businessdirectoryplugin.com"
6831
 
 
 
 
 
 
 
 
 
 
 
 
 
6832
  #~ msgctxt "fees admin"
6833
  #~ msgid "You do not have any listing fees setup yet."
6834
  #~ msgstr "Vous n'avez aucun droits d'inscription mis en place actuellement."
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-02-24 20:36:14+00:00\n"
8
+ "PO-Revision-Date: 2016-02-24 15:34-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language: fr\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.8.5\n"
16
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
 
69
  msgid "Downgrade to %s"
70
  msgstr "Déclasser vers %s"
71
 
72
+ #: admin/class-admin-listings.php:215 admin/class-admin-listings.php:394
73
  msgctxt "admin actions"
74
  msgid "Upgrade to Featured"
75
  msgstr "Mettre à jour vers la version sélectionnée"
83
  msgid "Expired"
84
  msgstr "Expiré "
85
 
86
+ #: admin/class-admin-listings.php:330
87
  msgctxt "admin actions"
88
  msgid "Edit Listing"
89
  msgstr "Editer l'annonce"
90
 
91
+ #: admin/class-admin-listings.php:333
92
  msgctxt "admin actions"
93
  msgid "Delete Listing"
94
  msgstr "Effacer l'annonce"
95
 
96
+ #: admin/class-admin-listings.php:392
97
  msgctxt "admin actions"
98
  msgid "Publish Listing"
99
  msgstr "Publier l'annonce"
100
 
101
+ #: admin/class-admin-listings.php:395
102
  msgctxt "admin actions"
103
  msgid "Downgrade to Normal"
104
  msgstr "Rétrograder vers le mode Normal "
105
 
106
+ #: admin/class-admin-listings.php:397
107
  msgctxt "admin actions"
108
  msgid "Mark as Paid"
109
  msgstr "Marquer comme Payé "
110
 
111
+ #: admin/class-admin-listings.php:399
112
  msgctxt "admin actions"
113
  msgid "Renew Listing"
114
  msgstr "Renouveler l'annonce"
134
  msgid "Want to know the Secrets of Building an Awesome Business Directory?"
135
  msgstr ""
136
  "Voulez-vous connaître les secrets de la création d'un superbe annuaire "
137
+ "professionnel ?"
138
 
139
  #: admin/class-admin.php:134
140
  msgctxt "drip pointer"
141
  msgid "Yes, please!"
142
+ msgstr "Oui, s'il vous plait !"
143
 
144
  #: admin/class-admin.php:136
145
  msgctxt "drip pointer"
237
  msgctxt "admin"
238
  msgid "The listing has been published."
239
  msgid_plural "The listings have been published."
240
+ msgstr[0] "L'annonce a été publiée."
241
  msgstr[1] "Les annonces ont été publiées."
242
 
243
  #: admin/class-admin.php:505
251
  msgctxt "admin"
252
  msgid "The listing has been modified."
253
  msgid_plural "The listings have been modified."
254
+ msgstr[0] "L'annonce a été modifiée."
255
  msgstr[1] "Les annonces ont été modifiées."
256
 
257
  #: admin/class-admin.php:530
425
  #: admin/class-listing-fields-metabox.php:41
426
  msgctxt "templates"
427
  msgid "There are no images currently attached to the listing."
428
+ msgstr "Il n'y a aucune image attaché à cette annonce."
429
 
430
  #: admin/class-themes-admin.php:44
431
  msgctxt "themes"
446
  #: admin/class-themes-admin.php:147
447
  msgctxt "themes"
448
  msgid "Active theme changed to \"%s\"."
449
+ msgstr "Thème actuel modifié vers \"%s\"."
450
 
451
  #: admin/class-themes-admin.php:150
452
  msgctxt "themes"
453
  msgid ""
454
+ "%s requires that you tag your existing fields to match some places we want "
455
+ "to put your data on the theme. Below are fields we think are missing."
 
 
 
 
 
456
  msgstr ""
457
 
458
+ #: admin/class-themes-admin.php:159
459
+ #, fuzzy
460
  msgctxt "themes"
461
+ msgid "Map My Fields"
462
+ msgstr "Gestion des champs"
463
 
464
+ #: admin/class-themes-admin.php:166
465
  msgctxt "themes"
466
  msgid "Suggested fields created successfully."
467
  msgstr "Champs créés avec succès."
468
 
469
+ #: admin/class-themes-admin.php:169
470
  msgctxt "themes"
471
  msgid "Theme installed successfully."
472
  msgstr "Thème installé avec succès"
473
 
474
+ #: admin/class-themes-admin.php:172
475
  msgctxt "themes"
476
  msgid "Theme was deleted sucessfully."
477
  msgstr "Le thème a été supprimé"
478
 
479
+ #: admin/class-themes-admin.php:175
480
  msgctxt "themes"
481
  msgid "Could not delete theme directory. Check permissions."
482
+ msgstr "Impossible de supprimer le dossier du thème. Vérifier les permissions."
483
 
484
+ #: admin/class-themes-admin.php:201
485
  msgctxt "themes"
486
  msgid "Please upload a valid theme file."
487
  msgstr "Veuillez télécharger un fichier de thème valide"
488
 
489
+ #: admin/class-themes-admin.php:208
490
  msgctxt "themes"
491
  msgid "Could not move \"%s\" to a temporary directory."
492
  msgstr "Impossible de déplacer \"%s\" vers un dossier temporaire"
493
 
494
+ #: admin/class-themes-admin.php:309 admin/class-themes-admin.php:370
495
  #: core/licensing.php:127 core/licensing.php:159
496
  msgctxt "licensing"
497
  msgid "Could not contact licensing server"
498
  msgstr "Impossible de contacter le serveur de licences"
499
 
500
+ #: admin/class-themes-admin.php:315 core/licensing.php:132
501
  #: core/licensing.php:166
502
  msgctxt "licensing"
503
  msgid "License key is invalid"
504
  msgstr "La clé de licence est invalide"
505
 
506
+ #: admin/class-themes-admin.php:320 core/licensing.php:330
507
  msgctxt "licensing"
508
  msgid "Could not activate license: %s."
509
  msgstr "Impossible d'activer la licence: %s."
510
 
511
+ #: admin/class-themes-admin.php:333 core/licensing.php:332
512
  msgctxt "licensing"
513
  msgid "License activated"
514
+ msgstr "Licence activée"
515
 
516
+ #: admin/class-themes-admin.php:376
517
  msgctxt "licensing"
518
  msgid "Invalid response from server"
519
+ msgstr "Invalid response from server"
520
 
521
+ #: admin/class-themes-admin.php:393 core/licensing.php:350
522
  msgctxt "licensing"
523
  msgid "License deactivated"
524
  msgstr "Licence désactivée"
525
 
526
+ #: admin/class-themes-admin.php:409
527
  msgctxt "themes"
528
  msgid "Activate your <a>license key</a> to use this theme."
529
+ msgstr "Activer votre <a>numéro de licence</a> pour utiliser ce thème"
530
 
531
  #: admin/csv-export.php:136
532
  msgctxt "admin csv-export"
598
  "An error was detected while validating the CSV file for import. Please fix "
599
  "this before proceeding."
600
  msgstr ""
601
+ "Une erreur a été décelée lors de la validation du fichier CSV pour "
602
+ "l'importation. Merci de résoudre ce problème avant de continuer."
603
 
604
  #: admin/csv-import.php:324
605
  msgctxt "admin csv-import"
606
  msgid "Import is in \"test mode\". Nothing will be inserted into the database."
607
  msgstr ""
608
+ "Importer est en \"mode test \". Rien ne sera inséré dans la base de données."
 
609
 
610
  #: admin/fees.php:9
611
  msgctxt "fees admin"
758
  #: admin/fees.php:250
759
  msgctxt "fees admin"
760
  msgid "Yes"
761
+ msgstr "Oui"
762
 
763
  #: admin/fees.php:250
 
764
  msgctxt "fees admin"
765
  msgid "No"
766
+ msgstr "Non"
767
 
768
  #: admin/fees.php:285
769
  #, fuzzy
772
  msgstr "Frais effacé"
773
 
774
  #: admin/fees.php:293
 
775
  msgctxt "fees admin"
776
  msgid "Fee disabled."
777
+ msgstr "Frais désactivé"
778
 
779
  #: admin/fees.php:318
780
  msgctxt "fees order"
801
  msgid "Custom Order"
802
  msgstr "Ordre personnalisé"
803
 
804
+ #: admin/fees.php:339
805
  msgctxt "fees admin"
806
  msgid "Fee updated."
807
  msgstr "Frais mis à jour"
933
  msgid "Required fields created successfully."
934
  msgstr "Champs requis créés avec succès."
935
 
936
+ #: admin/form-fields.php:288
937
  msgctxt "form-fields admin"
938
  msgid "Title"
939
  msgstr "Titre"
940
 
941
+ #: admin/form-fields.php:289
942
  msgctxt "form-fields admin"
943
  msgid "Category"
944
  msgstr "Catégorie"
945
 
946
+ #: admin/form-fields.php:290
947
  msgctxt "form-fields admin"
948
  msgid "Excerpt"
949
  msgstr "Extrait"
950
 
951
+ #: admin/form-fields.php:291
952
  msgctxt "form-fields admin"
953
  msgid "Content"
954
  msgstr "Contenu"
955
 
956
+ #: admin/form-fields.php:292
957
  msgctxt "form-fields admin"
958
  msgid "Tags"
959
  msgstr "Étiquettes (tags)"
960
 
961
+ #: admin/form-fields.php:293
962
  msgctxt "form-fields admin"
963
  msgid "Address"
964
  msgstr "Adresse"
965
 
966
+ #: admin/form-fields.php:294
967
  msgctxt "form-fields admin"
968
  msgid "ZIP Code"
969
  msgstr "Code Postal"
970
 
971
+ #: admin/form-fields.php:295
972
  msgctxt "form-fields admin"
973
  msgid "FAX Number"
974
  msgstr "Numéro de fax"
975
 
976
+ #: admin/form-fields.php:296
977
  msgctxt "form-fields admin"
978
  msgid "Phone Number"
979
  msgstr "Numéro de téléphone"
980
 
981
+ #: admin/form-fields.php:297
982
  msgctxt "form-fields admin"
983
  msgid "Ratings Field"
984
  msgstr "Champs d'évaluation"
985
 
986
+ #: admin/form-fields.php:298
987
  msgctxt "form-fields admin"
988
  msgid "Twitter"
989
+ msgstr "Twitter"
990
 
991
+ #: admin/form-fields.php:299
992
  msgctxt "form-fields admin"
993
  msgid "Website"
994
  msgstr "Site Internet"
995
 
996
+ #: admin/form-fields.php:320
997
  msgctxt "form-fields admin"
998
  msgid "Tags updated."
999
  msgstr "Étiquettes mises à jour."
1006
  #: admin/listing-metabox.php:12
1007
  msgctxt "admin"
1008
  msgid "Fee Details"
1009
+ msgstr "Détails des frais"
1010
 
1011
  #: admin/listing-metabox.php:13
1012
  msgctxt "admin"
1016
  #: admin/listing-metabox.php:42
1017
  msgctxt "admin infometabox"
1018
  msgid "General Info"
1019
+ msgstr "Informations générales"
1020
 
1021
  #: admin/listing-metabox.php:44
1022
  msgctxt "admin infometabox"
1079
  "enough free disk space and memory available to PHP. Check your error logs "
1080
  "for details."
1081
  msgstr ""
1082
+ "Une erreur inconnue est survenue durant l'export. Veuillez vous assurer que "
1083
+ "votre espace disque et votre mémoire disponible sur PHP soient suffisants. "
1084
  "Vérifiez votre journal d'erreurs pour plus de détails."
1085
 
1086
  #: admin/templates/csv-export.tpl.php:18
1091
  "the values of the 'memory_limit' and 'max_execution_time' directives in your "
1092
  "server's php.ini configuration file."
1093
  msgstr ""
1094
+ "Veuillez noter que le processus d'exportation est une tâche lourde. Si votre "
1095
+ "exportation échoue, essayez d'abord de désactiver d'autres plugins et/ou "
1096
  "d'augmenter la valeur de la 'limite-mémoire' et les directives 'temps-max-"
1097
  "d'exécution' dans votre fichier de configuration serveur php.ini."
1098
 
1109
  #: admin/templates/csv-export.tpl.php:37
1110
  msgctxt "admin csv-export"
1111
  msgid "Which listings to export?"
1112
+ msgstr "Quelles listes exporter ?"
1113
 
1114
  #: admin/templates/csv-export.tpl.php:41
1115
  msgctxt "admin csv-export"
1129
  #: admin/templates/csv-export.tpl.php:49
1130
  msgctxt "admin csv-export"
1131
  msgid "Export images?"
1132
+ msgstr "Exporter les images ?"
1133
 
1134
  #: admin/templates/csv-export.tpl.php:54
1135
  msgctxt "admin csv-export"
1280
  #: admin/templates/csv-export.tpl.php:168
1281
  msgctxt "admin csv-export"
1282
  msgid "Export Canceled"
1283
+ msgstr "Exportation annulée"
1284
 
1285
  #: admin/templates/csv-export.tpl.php:169
1286
  msgctxt "admin csv-export"
1287
  msgid "The export has been canceled."
1288
+ msgstr "L'exportation a été annulée."
1289
 
1290
  #: admin/templates/csv-export.tpl.php:170
1291
  msgctxt "admin csv-export"
1296
  msgctxt "admin csv-import"
1297
  msgid "A fatal error occurred during the import. The reason given was: \"%s\"."
1298
  msgstr ""
1299
+ "Une erreur fatale est survenue durant l'importation. La raison donnée était: "
1300
  "\"%s\"."
1301
 
1302
  #: admin/templates/csv-import-progress.tpl.php:10
1306
  "the import, please make sure that you have enough free disk space and memory "
1307
  "available to PHP. Check your error logs for details."
1308
  msgstr ""
1309
+ "Une erreur fatale est survenue durant l'importation. Si la connexion n'a pas "
1310
+ "été perdue durant l'importation, veuillez vous assurer que vous aviez "
1311
  "suffisamment d'espace disque et de mémoire disponible sur PHP. Vérifiez "
1312
  "votre journal d'erreurs pour plus de détails."
1313
 
1314
  #: admin/templates/csv-import-progress.tpl.php:14
1315
  msgctxt "admin csv-import"
1316
  msgid "Last imported line from file:"
1317
+ msgstr "Dernière ligne importée depuis le fichier:"
1318
 
1319
  #: admin/templates/csv-import-progress.tpl.php:18
1320
  #: admin/templates/csv-import-progress.tpl.php:25
1330
  #: admin/templates/csv-import-progress.tpl.php:24
1331
  msgctxt "admin csv-import"
1332
  msgid "The import has been canceled."
1333
+ msgstr "L'importation a été annulée."
1334
 
1335
  #: admin/templates/csv-import-progress.tpl.php:31
1336
  msgid "Import Progress"
1385
  #: admin/templates/csv-import-progress.tpl.php:66
1386
  msgctxt "admin csv-import"
1387
  msgid "Import was completed but some rows were rejected."
1388
+ msgstr "L'importation est finie, mais certaines lignes ont été rejetées."
1389
 
1390
  #: admin/templates/csv-import-progress.tpl.php:69
1391
  msgctxt "admin csv-import"
1450
  "We strongly recommend reading our <a>CSV import documentation</a> first to "
1451
  "help you do things in the right order."
1452
  msgstr ""
1453
+ "Nous vous recommandons vivement la lecture de notre document d'importation "
1454
  "<a> CSV </a> afin de vous aider à faire les choses dans le bon ordre."
1455
 
1456
  #: admin/templates/csv-import.tpl.php:38
1539
  #: admin/templates/csv-import.tpl.php:177
1540
  msgctxt "admin csv-import"
1541
  msgid "Appends new images while keeping current ones."
1542
+ msgstr "Ajouts de nouvelles images tout en conservant celles existantes"
1543
 
1544
  #: admin/templates/csv-import.tpl.php:182
1545
  msgctxt "admin csv-import"
1546
  msgid "Assign listings to a user?"
1547
+ msgstr "Assigner des listes à un utilisateur ?"
1548
 
1549
  #: admin/templates/csv-import.tpl.php:188
1550
  msgctxt "admin csv-import"
1621
  #: admin/templates/csv-import.tpl.php:239
1622
  msgctxt "admin csv-import"
1623
  msgid "Required?"
1624
+ msgstr "Requis ?"
1625
 
1626
  #: admin/templates/csv-import.tpl.php:240
1627
  msgctxt "admin csv-import"
1628
  msgid "Multivalued?"
1629
+ msgstr "Valeurs multiples ?"
1630
 
1631
  #: admin/templates/csv-import.tpl.php:262
1632
  msgctxt "admin csv-import"
1705
  #: admin/templates/fees-addoredit.tpl.php:62
1706
  msgctxt "fees admin"
1707
  msgid "Listing run in days"
1708
+ msgstr "Annonce créée chaque jour"
1709
 
1710
  #: admin/templates/fees-addoredit.tpl.php:65
1711
  msgctxt "fees admin"
1810
  #: admin/templates/fees.tpl.php:24
1811
  msgctxt "fees admin"
1812
  msgid "Order fees on the frontend by:"
1813
+ msgstr "Ordonner les honoraires dans l'interface par:"
1814
 
1815
  #: admin/templates/fees.tpl.php:32
1816
  msgctxt "fees admin"
1876
  #: admin/templates/fees.tpl.php:89 admin/templates/sidebar.tpl.php:13
1877
  msgctxt "admin sidebar"
1878
  msgid "PayPal Gateway Module"
1879
+ msgstr "Module de plate-forme PayPal"
1880
 
1881
  #: admin/templates/fees.tpl.php:90 admin/templates/sidebar.tpl.php:14
1882
  msgctxt "admin sidebar"
1971
  #: admin/templates/form-fields-addoredit.tpl.php:115
1972
  msgctxt "form-fields admin"
1973
  msgid "Is field required?"
1974
+ msgstr "Ce champ est-il requis ?"
1975
 
1976
  #: admin/templates/form-fields-addoredit.tpl.php:121
1977
  msgctxt "form-fields admin"
1986
  #: admin/templates/form-fields-addoredit.tpl.php:133
1987
  msgctxt "form-fields admin"
1988
  msgid "Show this value in excerpt view?"
1989
+ msgstr "Montrer un extrait de cette valeur ?"
1990
 
1991
  #: admin/templates/form-fields-addoredit.tpl.php:139
1992
  msgctxt "form-fields admin"
1993
  msgid "Display this value in post excerpt view."
1994
+ msgstr "Afficher dans un message un extrait de cette valeur."
1995
 
1996
  #: admin/templates/form-fields-addoredit.tpl.php:145
1997
  msgctxt "form-fields admin"
1998
  msgid "Show this value in listing view?"
1999
+ msgstr "Montrer cette valeur dans la vue de l'annonce ?"
2000
 
2001
  #: admin/templates/form-fields-addoredit.tpl.php:151
2002
  msgctxt "form-fields admin"
2003
  msgid "Display this value in the listing view."
2004
+ msgstr "Afficher cette valeur dans la vue de l'annonce."
2005
 
2006
  #: admin/templates/form-fields-addoredit.tpl.php:157
2007
  msgctxt "form-fields admin"
2008
  msgid "Include this field in the search form?"
2009
+ msgstr "Inclure ce champ dans la recherche de formulaire ?"
2010
 
2011
  #: admin/templates/form-fields-addoredit.tpl.php:163
2012
  msgctxt "form-fields admin"
2016
  #: admin/templates/form-fields-addoredit.tpl.php:169
2017
  msgctxt "form-fields admin"
2018
  msgid "Hide this field's label?"
2019
+ msgstr "Cacher l'étiquette de ce champ ?"
2020
 
2021
  #: admin/templates/form-fields-addoredit.tpl.php:175
2022
  msgctxt "form-fields admin"
2023
  msgid "Hide this field's label when displaying it."
2024
+ msgstr "Cacher l'étiquette de ce champ lorsqu'il est affiché."
2025
 
2026
  #: admin/templates/form-fields-addoredit.tpl.php:182
2027
  msgctxt "form-fields admin"
2058
  msgid "Theme Tags"
2059
  msgstr ""
2060
 
2061
+ #: admin/templates/form-fields-tags.tpl.php:19
2062
+ msgctxt "form-fields admin"
2063
+ msgid ""
2064
+ "Before you create fields, make sure you've mapped all of your EXISTING ones "
2065
+ "first, otherwise you'll appear to be \"missing data\" on your listings."
2066
+ msgstr ""
2067
+
2068
+ #: admin/templates/form-fields-tags.tpl.php:22
2069
+ #, fuzzy
2070
+ msgctxt "form-fields admin"
2071
+ msgid "Create Missing Fields"
2072
+ msgstr "Champs d'annonce"
2073
+
2074
+ #: admin/templates/form-fields-tags.tpl.php:30
2075
  msgctxt "form-fields admin"
2076
  msgid "Field Tag"
2077
  msgstr "Identifiant du champ"
2078
 
2079
+ #: admin/templates/form-fields-tags.tpl.php:31
2080
  #, fuzzy
2081
  msgctxt "form-fields admin"
2082
  msgid "Field"
2115
  "Veuillez voir la <a>Documentation de champs de formulaire</a> pour plus de "
2116
  "détails."
2117
 
2118
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.7.4) #-#-#-#-#
2119
  #. Plugin Name of the plugin/theme
2120
  #: admin/templates/header.tpl.php:4
2121
  msgid "Business Directory Plugin"
2141
  "Our complete documentation is <a>here</a> which we encourage you to use "
2142
  "while setting things up."
2143
  msgstr ""
2144
+ "Notre documentation complète est <a>ICI</a> que nous vous encourageons à "
2145
+ "utiliser tout en paramétrant le plugin."
2146
 
2147
  #: admin/templates/home.tpl.php:14
2148
  msgctxt "admin home"
2304
  #: admin/templates/listing-metabox-categories.tpl.php:99
2305
  msgctxt "admin infometabox"
2306
  msgid "Send renewal e-mail to user"
2307
+ msgstr "Envoyer un e-mail à l'utilisateur"
2308
 
2309
  #: admin/templates/listing-metabox-categories.tpl.php:107
2310
  msgctxt "admin infometabox"
2311
  msgid "Renew manually..."
2312
+ msgstr "Renouveler manuellement"
2313
 
2314
  #: admin/templates/listing-metabox-categories.tpl.php:107
2315
  msgctxt "admin infometabox"
2448
  #: admin/templates/payment-details.tpl.php:44
2449
  msgctxt "admin payments"
2450
  msgid "Reject payment"
2451
+ msgstr "Rejeter le paiement"
2452
 
2453
  #: admin/templates/settings-reset.tpl.php:2
2454
  #, fuzzy
2473
 
2474
  #: admin/templates/settings-reset.tpl.php:11
2475
  msgid "Please note that all of your existing settings will be lost."
2476
+ msgstr "Merci de noter que tous vos paramètres existants seront perdus."
2477
 
2478
  #: admin/templates/settings-reset.tpl.php:17
2479
  msgid "Reset Defaults"
2536
  #: admin/templates/sidebar.tpl.php:21
2537
  msgctxt "admin sidebar"
2538
  msgid "Like this plugin?"
2539
+ msgstr "Vous aimez ce plugin ?"
2540
 
2541
  #: admin/templates/sidebar.tpl.php:23
2542
  msgctxt "admin sidebar"
2543
  msgid "Why not do any or all of the following:"
2544
+ msgstr "Pourquoi ne pas faire l'une des actions suivantes:"
2545
 
2546
  #: admin/templates/sidebar.tpl.php:25
2547
  msgctxt "admin sidebar"
2578
  #: admin/templates/sidebar.tpl.php:51
2579
  msgctxt "admin sidebar"
2580
  msgid "Found a bug? Need support?"
2581
+ msgstr "Vous avez trouvé un bug ? Besoin d'assistance ?"
2582
 
2583
  #: admin/templates/sidebar.tpl.php:56
2584
  msgctxt "admin sidebar"
2650
  #: admin/templates/themes-install.tpl.php:8
2651
  msgctxt "themes"
2652
  msgid "This is a theme or skin from %s and is NOT a regular WordPress theme."
2653
+ msgstr "This is a theme or skin from %s and is NOT a regular WordPress theme."
2654
 
2655
  #: admin/templates/themes-install.tpl.php:21
2656
  msgctxt "themes"
2660
  #: admin/templates/themes-install.tpl.php:30
2661
  msgctxt "themes"
2662
  msgid "Begin Upload"
2663
+ msgstr "Démarrer l'upload"
2664
 
2665
  #: admin/templates/themes-item.tpl.php:3
2666
  msgctxt "themes"
2675
  #: admin/templates/themes-item.tpl.php:33
2676
  msgctxt "themes"
2677
  msgid "Version:"
2678
+ msgstr "Version:"
2679
 
2680
  #: admin/templates/themes-item.tpl.php:36
2681
  #, fuzzy
2715
  #: admin/templates/uninstall-capture-form.tpl.php:5
2716
  msgctxt "uninstall"
2717
  msgid "It doesn't work with my theme/plugins/site"
2718
+ msgstr "Ça ne marche pas avec mon/thèmes/plugins/site"
2719
 
2720
  #: admin/templates/uninstall-capture-form.tpl.php:6
2721
  msgctxt "uninstall"
2797
  "future releases?"
2798
  msgstr ""
2799
  "Est-ce que Business Directory peut continuer à analyser vos thèmes, plugins "
2800
+ "et autres informations non-personnel, ou identifiants, afin de nous aider à "
2801
+ "améliorer nos futures mises à jour ?"
2802
 
2803
  #: admin/tracking.php:192
2804
  msgctxt "tracking"
2805
  msgid "What do you track?"
2806
+ msgstr "Qu'est-ce que vous analysez ?"
2807
 
2808
  #: admin/tracking.php:214
2809
  msgctxt "tracking"
2815
  msgid "Allow Tracking"
2816
  msgstr "Autoriser l'analyse"
2817
 
2818
+ #: business-directory-plugin.php:716
2819
  msgctxt "admin plugins"
2820
  msgid "Settings"
2821
  msgstr "Paramètres"
2822
 
2823
+ #: business-directory-plugin.php:726
2824
  msgctxt "post type general name"
2825
  msgid "Directory"
2826
  msgstr "Annuaire"
2827
 
2828
+ #: business-directory-plugin.php:727
2829
  msgctxt "post type singular name"
2830
  msgid "Directory"
2831
  msgstr "Annuaire"
2832
 
2833
+ #: business-directory-plugin.php:728
2834
  msgctxt "listing"
2835
  msgid "Add New Listing"
2836
  msgstr "Ajouter une nouvelle annonce"
2837
 
2838
+ #: business-directory-plugin.php:729
2839
  msgctxt "post type"
2840
  msgid "Add New Listing"
2841
  msgstr "Ajouter une nouvelle annonce"
2842
 
2843
+ #: business-directory-plugin.php:730 core/compatibility/deprecated.php:255
2844
  msgid "Edit Listing"
2845
  msgstr "Editer l'annonce"
2846
 
2847
+ #: business-directory-plugin.php:731
2848
  msgid "New Listing"
2849
  msgstr "Nouvelle annonce"
2850
 
2851
+ #: business-directory-plugin.php:732
2852
  msgid "View Listing"
2853
  msgstr "Voir l'annonce"
2854
 
2855
+ #: business-directory-plugin.php:733
2856
  msgid "Search Listings"
2857
  msgstr "Rechercher"
2858
 
2859
+ #: business-directory-plugin.php:734
2860
  msgid "No listings found"
2861
  msgstr "Aucune annonce trouvée"
2862
 
2863
+ #: business-directory-plugin.php:735
2864
  msgid "No listings found in trash"
2865
  msgstr "Aucunes annonces trouvées dans la corbeille"
2866
 
2867
+ #: business-directory-plugin.php:757
2868
  msgid "Directory Categories"
2869
  msgstr "Catégories de l'aannuaire"
2870
 
2871
+ #: business-directory-plugin.php:870 business-directory-plugin.php:877
2872
  msgctxt "rss feed"
2873
  msgid "%s Feed"
2874
  msgstr "%s diffusion"
2875
 
2876
+ #: business-directory-plugin.php:1295
2877
  msgctxt "title"
2878
  msgid "Submit A Listing"
2879
  msgstr "Soumettre une annonce"
2880
 
2881
+ #: business-directory-plugin.php:1305
2882
  msgctxt "title"
2883
  msgid "Find a Listing"
2884
+ msgstr "Trouver une annonce"
2885
 
2886
+ #: business-directory-plugin.php:1315
2887
  msgctxt "title"
2888
  msgid "View All Listings"
2889
  msgstr "Voir toutes les annonces"
2890
 
2891
+ #: business-directory-plugin.php:1335
2892
  msgctxt "title"
2893
  msgid "Listings tagged: %s"
2894
  msgstr "Annonces marquées: %s"
2926
  #: core/class-fee-plan.php:52
2927
  msgctxt "fees-api"
2928
  msgid "Fee must apply to at least one category."
2929
+ msgstr "Les frais doivent être appliqués à au moins une catégorie."
2930
 
2931
  #: core/class-fee-plan.php:57
2932
  msgctxt "fees-api"
2954
  msgctxt "form-fields-api"
2955
  msgid "Requested field type change is incompatible. Type will not be modified."
2956
  msgstr ""
2957
+ "La modification du type de champ est incompatible. Le type de champ ne sera "
2958
+ "pas modifié."
2959
 
2960
  #: core/class-form-field.php:480
2961
  msgctxt "form-fields-api"
3040
  msgid "(Fee Unavailable)"
3041
  msgstr "(Coûts Non disponible)"
3042
 
3043
+ #: core/class-listings-api.php:308
3044
  msgctxt "notify email"
3045
  msgid "[%s] New listing notification"
3046
  msgstr "[%s] Nouvelle notification d'annonce"
3047
 
3048
+ #: core/class-listings-api.php:327
3049
  msgctxt "notify email"
3050
  msgid "[%s] Listing edit notification"
3051
  msgstr "[%s] Notification d'édition d'annonce"
3118
  "themes and WP version?"
3119
  msgstr ""
3120
  "Autoriser le plugin à collecter anonymement des informations concernant vos "
3121
+ "plugins installés, thèmes et versions de Worpdress ?"
3122
 
3123
  #: core/class-settings.php:34
3124
  msgctxt "admin settings"
3128
  #: core/class-settings.php:37
3129
  msgctxt "admin settings"
3130
  msgid "Permalink Settings"
3131
+ msgstr "Paramètres de lien permanent"
3132
 
3133
  #: core/class-settings.php:38
3134
  msgctxt "admin settings"
3194
  #: core/class-settings.php:56
3195
  msgctxt "admin settings"
3196
  msgid "Use reCAPTCHA for listing submits"
3197
+ msgstr "Utiliser CAPTCHA pour la soumission des annonces"
3198
 
3199
  #: core/class-settings.php:59
3200
  msgctxt "admin settings"
3227
  #: core/class-settings.php:72
3228
  msgctxt "admin settings"
3229
  msgid "Require login to post listings?"
3230
+ msgstr "Connexion obligatoire pour poster une annonce ?"
3231
 
3232
  #: core/class-settings.php:77
3233
  #, fuzzy
3264
  #: core/class-settings.php:93 core/class-settings.php:102
3265
  msgctxt "admin settings"
3266
  msgid "Terms and Conditions"
3267
+ msgstr "Conditions d'utilisation"
3268
 
3269
  #: core/class-settings.php:96
3270
  msgctxt "admin settings"
3271
  msgid "Display and require user agreement to Terms and Conditions"
3272
  msgstr ""
3273
+ "Affiche et nécessite l'accord de l'utilisateur avec les conditions "
3274
+ "d'utilisation"
3275
 
3276
  #: core/class-settings.php:105
3277
  msgctxt "admin settings"
3280
  "Conditions text will be replaced by a link to the appropiate page."
3281
  msgstr ""
3282
  "Saisissez du texte ou une URL commençant par http. Si vous utilisez une URL, "
3283
+ "le texte des conditions d'utilisation sera remplacé par un lien vers la page "
3284
  "appropriée."
3285
 
3286
  #: core/class-settings.php:109
3316
  #: core/class-settings.php:126
3317
  msgctxt "admin settings"
3318
  msgid "Search form display"
3319
+ msgstr "Afficher le formulaire de recherche"
3320
 
3321
  #: core/class-settings.php:130
3322
  msgctxt "admin settings"
3374
  msgstr ""
3375
  "L'activation de cette option fait que le plugin perdra en qualité de "
3376
  "résultat pour améliorer la vitesse de recherche. Ceci est utile si vous êtes "
3377
+ "sur des plans d'hébergement partagé, où la performance de base de données "
3378
  "est un problème."
3379
 
3380
  #: core/class-settings.php:158
3405
  #: core/class-settings.php:168
3406
  msgctxt "admin settings"
3407
  msgid "Enable AJAX compatibility mode?"
3408
+ msgstr "Activer le mode de comptabilité AJAX ?"
3409
 
3410
  #: core/class-settings.php:176 core/class-settings.php:654
3411
  msgctxt "admin settings"
3429
  "Number of listings to show per page. Use a value of \"0\" to show all "
3430
  "listings."
3431
  msgstr ""
3432
+ "Nombre d'annonces à annoncer par page. Utilisez une valeur de \"0 \" pour "
3433
+ "annoncer toutes les annonces."
3434
 
3435
  #: core/class-settings.php:182
3436
  msgctxt "admin settings"
3437
  msgid "Listing duration for no-fee sites (in days)"
3438
+ msgstr "Durée des annonces pour les sites sans honoraires (en jours)"
3439
 
3440
  #: core/class-settings.php:183
3441
  msgctxt "admin settings"
3450
  msgctxt "admin settings"
3451
  msgid "Include listing contact form on listing pages?"
3452
  msgstr ""
3453
+ "Inclure les annonces de formulaire de contact sur les pages d'annonces ?"
3454
 
3455
  #: core/class-settings.php:192
3456
  msgctxt "admin settings"
3464
  #: core/class-settings.php:195
3465
  msgctxt "admin settings"
3466
  msgid "Require login for using the contact form?"
3467
+ msgstr "Exiger une connexion pour utiliser le formulaire de contact ?"
3468
 
3469
  #: core/class-settings.php:201
3470
  msgctxt "admin settings"
3477
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
3478
  "per day."
3479
  msgstr ""
3480
+ "Utilisez ceci pour prévenir les annonces contenant des spams. 0 signifie un "
3481
  "nombre de soumission illimité par jour."
3482
 
3483
  #: core/class-settings.php:210
3484
  msgctxt "admin settings"
3485
  msgid "Include comment form on listing pages?"
3486
+ msgstr "Inclure les formulaire de commentaires dans pages annonces ?"
3487
 
3488
  #: core/class-settings.php:213
3489
  msgctxt "admin settings"
3507
  #: core/class-settings.php:217
3508
  msgctxt "admin settings"
3509
  msgid "Status of deleted listings"
3510
+ msgstr "Statut des annonces effacées"
3511
 
3512
  #: core/class-settings.php:220
3513
  msgctxt "admin settings"
3517
  #: core/class-settings.php:221
3518
  msgctxt "admin settings"
3519
  msgid "Turn on listing renewal option?"
3520
+ msgstr "Activer l'option renouvellement des annonces ?"
3521
 
3522
  #: core/class-settings.php:224
3523
  msgctxt "admin settings"
3524
  msgid "Allow recurring renewal payments?"
3525
+ msgstr "Autoriser les paiements récurrents de renouvellement ?"
3526
 
3527
  #: core/class-settings.php:227
3528
  msgctxt "admin settings"
3554
  msgid "Listing renewal e-mail threshold (in days)"
3555
  msgstr "Seuil de renouvellement des annonces par e-mail (en jours)"
3556
 
3557
+ # Todo as soon as possible. I don't understand exactly what does this sentence...
3558
  #: core/class-settings.php:242
3559
  msgctxt "admin settings"
3560
  msgid ""
3561
  "Configure how many days before listing expiration is the renewal e-mail sent."
3562
  msgstr ""
3563
  "Configurer le nombre de jours avant l'expiration des annonces doit se "
3564
+ "dérouler le renouvellement d'envoi d'e-mail."
3565
 
3566
  #: core/class-settings.php:246
3567
  msgctxt "admin settings"
3569
  "Send expiration notices including a cancel links to auto-renewed listings?"
3570
  msgstr ""
3571
  "Envoyer des avis d'expiration y compris un lien d'annulation vers le "
3572
+ "renouvellement automatique des annonces ?"
3573
 
3574
  #: core/class-settings.php:253
3575
  msgctxt "admin settings"
3645
  #: core/class-settings.php:278
3646
  msgctxt "admin settings"
3647
  msgid "Show category post count?"
3648
+ msgstr "Montrer les catégories par messages postés ?"
3649
 
3650
  #: core/class-settings.php:279
3651
  msgctxt "admin settings"
3652
  msgid "Hide empty categories?"
3653
+ msgstr "Cacher les catégories vides ?"
3654
 
3655
  #: core/class-settings.php:280
3656
  msgctxt "admin settings"
3657
  msgid "Show only parent categories in category list?"
3658
  msgstr ""
3659
+ "Montrer seulement les catégories parentes dans la liste des catégories ?"
3660
 
3661
  #: core/class-settings.php:282
3662
  msgctxt "admin settings"
3717
  #: core/class-settings.php:299
3718
  msgctxt "admin settings"
3719
  msgid "Enable sort bar?"
3720
+ msgstr "Activer la barre de tri ?"
3721
 
3722
  #: core/class-settings.php:304
3723
  msgctxt "admin settings"
3732
  #: core/class-settings.php:314
3733
  msgctxt "admin settings"
3734
  msgid "Offer sticky listings?"
3735
+ msgstr "Proposer des annonces par Post-it ?"
3736
 
3737
  #: core/class-settings.php:315
3738
  msgctxt "admin settings"
3739
  msgid "Offer upgrades during submit process?"
3740
+ msgstr "Proposer des améliorations durant le processus de soumission ?"
3741
 
3742
  #: core/class-settings.php:316
3743
  msgctxt "admin settings"
3767
  #: core/class-settings.php:327
3768
  msgctxt "admin settings"
3769
  msgid "Display email address fields publicly?"
3770
+ msgstr "Affichage des champs d'adresses e-mail au public ?"
3771
 
3772
  #: core/class-settings.php:330
3773
  msgctxt "admin settings"
3776
  "RECOMMENDED as this increases spam to the address and allows spam bots to "
3777
  "harvest it for future use."
3778
  msgstr ""
3779
+ "Annonce l'adresse e-mail du propriétaire de l'annonce à tous les "
3780
  "utilisateurs du Web. PAS RECOMMANDE car cela augmente le spam à l'adresse en "
3781
  "question et permet aux spam bots de la récolter pour une utilisation future."
3782
 
3783
  #: core/class-settings.php:333
3784
  msgctxt "admin settings"
3785
  msgid "How to determine the listing's email address?"
3786
+ msgstr "Comment définir l'adresse e-mail de l'annonce ?"
3787
 
3788
  #: core/class-settings.php:336
3789
  msgctxt "admin settings"
3791
  "This affects emails sent to listing owners via contact forms or when their "
3792
  "listings expire."
3793
  msgstr ""
3794
+ "Cela affecte l'envoie des e-mails aux propriétaires des annonces via le "
3795
  "formulaire de contact ou quand leurs annonces expirent."
3796
 
3797
  #: core/class-settings.php:343
3812
  #: core/class-settings.php:351
3813
  msgctxt "admin settings"
3814
  msgid "A listing is edited."
3815
+ msgstr "Une annonce est éditée."
3816
 
3817
  #: core/class-settings.php:352
3818
  msgctxt "admin settings"
4083
  msgid ""
4084
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
4085
  msgstr ""
4086
+ "Envoyé dès que les annonces se soient auto-renouvelées. Appliqué aux "
4087
  "paiements récurrents seulement."
4088
 
4089
  #: core/class-settings.php:503
4094
  #: core/class-settings.php:509
4095
  msgctxt "admin settings"
4096
  msgid "Renewal reminder e-mail message"
4097
+ msgstr "Renouveler le rappel par mail"
4098
 
4099
  #: core/class-settings.php:513
4100
  msgctxt "settings"
4119
  #: core/class-settings.php:527
4120
  msgctxt "admin settings"
4121
  msgid "Turn On payments?"
4122
+ msgstr "Activer les paiements ?"
4123
 
4124
  #: core/class-settings.php:529
4125
  msgctxt "admin settings"
4126
  msgid "Put payment gateways in test mode?"
4127
+ msgstr "Passer les passerelles de paiement en mode test ?"
4128
 
4129
  #: core/class-settings.php:534
4130
  msgctxt "admin settings"
4280
  #: core/class-settings.php:579
4281
  msgctxt "admin settings"
4282
  msgid "Show currency symbol on the left"
4283
+ msgstr "Afficher le symbole de devise à gauche"
4284
 
4285
  #: core/class-settings.php:580
4286
  msgctxt "admin settings"
4287
  msgid "Show currency symbol on the right"
4288
+ msgstr "Afficher le symbole de devise à droite"
4289
 
4290
  #: core/class-settings.php:581
4291
  msgctxt "admin settings"
4310
  #: core/class-settings.php:589
4311
  msgctxt "admin settings"
4312
  msgid "Ask users to come back for abandoned payments?"
4313
+ msgstr "Demandez aux utilisateurs de revenir pour les paiements abandonnés ?"
4314
 
4315
  #: core/class-settings.php:592
4316
  msgctxt "admin settings"
4320
  "in listings that look like they failed, when the user simply didn't complete "
4321
  "the transaction. BD can remind them to come back and continue."
4322
  msgstr ""
4323
+ "Un paiement est abandonné lorsqu'un utilisateur tente de placer une annonce "
4324
  "et arrive à la fin, mais ne parvient pas à terminer leur paiement pour "
4325
  "l'inscription. Il en résulte des annonces qui semblent raté, lorsque "
4326
  "l'utilisateur n'a tout simplement pas compléter la transaction. Le plugin "
4329
  #: core/class-settings.php:598
4330
  msgctxt "admin settings"
4331
  msgid "Listing abandonment threshold (hours)"
4332
+ msgstr "Seuil d'abandon de l'annonce (heures)"
4333
 
4334
  #: core/class-settings.php:603
4335
  msgctxt "admin settings"
4344
  #: core/class-settings.php:609
4345
  msgctxt "admin settings"
4346
  msgid "Themes"
4347
+ msgstr "Thèmes"
4348
 
4349
  #: core/class-settings.php:614
4350
  msgctxt "admin settings"
4351
  msgid "Theme button style"
4352
+ msgstr "Boutons de thèmes"
4353
 
4354
  #: core/class-settings.php:618
4355
  msgctxt "admin settings"
4356
  msgid "Use the BD theme style for BD buttons"
4357
+ msgstr "Utiliser le thème BD pour les boutons BD"
4358
 
4359
  #: core/class-settings.php:619
4360
  msgctxt "admin settings"
4361
  msgid "Use the WP theme style for BD buttons"
4362
+ msgstr "Utiliser le thème WP pour les boutons BD"
4363
 
4364
  #: core/class-settings.php:627
4365
  msgctxt "admin settings"
4388
  #: core/class-settings.php:630
4389
  msgctxt "admin settings"
4390
  msgid "Allow images?"
4391
+ msgstr "Autoriser les images ?"
4392
 
4393
  #: core/class-settings.php:632
4394
  msgctxt "admin settings"
4423
  #: core/class-settings.php:641
4424
  msgctxt "admin settings"
4425
  msgid "Turn on thickbox/lightbox?"
4426
+ msgstr "Activer thickbox/lightbox ?"
4427
 
4428
  #: core/class-settings.php:641
4429
  msgctxt "admin settings"
4451
  #: core/class-settings.php:648
4452
  msgctxt "admin settings"
4453
  msgid "Crop thumbnails to exact dimensions?"
4454
+ msgstr "Recadrer les miniatures aux dimensions exactes ?"
4455
 
4456
  #: core/class-settings.php:651
4457
  msgctxt "admin settings"
4486
  #: core/class-settings.php:665
4487
  msgctxt "admin settings"
4488
  msgid "Use default picture for listings with no picture?"
4489
+ msgstr "Utiliser l'image par défault pour les annonces sans images ?"
4490
 
4491
  #: core/class-settings.php:666
4492
  msgctxt "admin settings"
4493
  msgid "Show Thumbnail on main listings page?"
4494
+ msgstr "Montrer les miniatures sur page principale des annonces ?"
4495
 
4496
  #: core/class-settings.php:722
4497
  msgctxt "admin settings"
4500
  "not activated."
4501
  msgstr ""
4502
  "Impossible de copier le plugin de compatibilité AJAX \"% s\". Le mode de "
4503
+ "compatibilité n'a pas été activé."
4504
 
4505
  #: core/class-settings.php:730
4506
  msgctxt "admin settings"
4518
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4519
  msgstr ""
4520
  "Impossible de supprimer le \"Module de comptabilité AJAX du plugin \". "
4521
+ "Veuillez supprimer le fichier \"% s \" manuellement ou désactiver le plugin."
4522
 
4523
  #: core/class-settings.php:1057
4524
  msgctxt "settings"
4525
  msgid "Deactivate License"
4526
+ msgstr "Désactiver la licence"
4527
 
4528
  #: core/class-settings.php:1059
4529
  msgctxt "settings"
4530
  msgid "Deactivating license..."
4531
+ msgstr "Désactivation de la licence..."
4532
 
4533
  #: core/class-settings.php:1062
4534
  msgctxt "settings"
4535
  msgid "Activate License"
4536
+ msgstr "Activer la licence"
4537
 
4538
  #: core/class-settings.php:1064
4539
  msgctxt "settings"
4540
  msgid "Activating license..."
4541
+ msgstr "Activation de la licence"
4542
 
4543
  #: core/class-settings.php:1088
4544
  msgctxt "admin settings"
4623
  #: core/compatibility/class-navxt-integration.php:163
4624
  msgctxt "navxt"
4625
  msgid "Edit Listing"
4626
+ msgstr "Éditer l'annonce"
4627
 
4628
  #: core/compatibility/class-navxt-integration.php:167
4629
  #, fuzzy
4647
  msgid "Upgrade Listing"
4648
  msgstr "Mettre à jour l'annonce"
4649
 
4650
+ #: core/compatibility/deprecated.php:214 core/templates-ui.php:186
4651
  msgid "Submit A Listing"
4652
  msgstr "Soumettre une annonce"
4653
 
4654
+ #: core/compatibility/deprecated.php:227 core/templates-ui.php:195
4655
  msgid "View Listings"
4656
  msgstr "Vue des annonces"
4657
 
4658
+ #: core/compatibility/deprecated.php:238 core/templates-ui.php:205
4659
  msgid "Directory"
4660
  msgstr "Annuaire"
4661
 
4662
  #: core/compatibility/templates/wpbusdirman-index-categories.php:12
4663
+ #: core/templates-ui.php:232
4664
  msgctxt "templates"
4665
  msgid "Search Listings"
4666
  msgstr "Recherche d'annonces"
4693
 
4694
  #: core/fieldtypes/class-fieldtypes-date.php:32
4695
  msgid "%s (ex. %s)"
4696
+ msgstr "%s (ex. %s)"
4697
 
4698
  #: core/fieldtypes/class-fieldtypes-date.php:36
4699
  msgctxt "form-fields api"
4790
  #: core/fieldtypes/class-fieldtypes-textarea.php:54
4791
  msgctxt "form-fields admin"
4792
  msgid "Allow WordPress shortcodes in this field?"
4793
+ msgstr "Autoriser les balises WordPress dans ce champ?"
4794
 
4795
  #: core/fieldtypes/class-fieldtypes-textarea.php:57
4796
  msgctxt "form-fields admin"
4797
  msgid "Display a WYSIWYG editor on the frontend?"
4798
+ msgstr "Afficher un éditeur WYSIWYG sur la partie frontal du site ?"
4799
 
4800
  #: core/fieldtypes/class-fieldtypes-textarea.php:60
4801
  msgctxt "form-fields admin"
4803
  "<b>Warning:</b> Users can use this feature to get around your image limits "
4804
  "in fee plans."
4805
  msgstr ""
4806
+ "<b>Attention:</b> Les utilisateurs peuvent utiliser cette fonctionnalité "
4807
+ "pour contourner les limitation d'images dans les formules payantes"
4808
 
4809
  #: core/fieldtypes/class-fieldtypes-textarea.php:61
4810
  msgctxt "form-fields admin"
4811
  msgid "Allow images in WYSIWYG editor?"
4812
+ msgstr "Permettre l'utilisation d'images dans l'éditeur WYSIWYG ?"
4813
 
4814
  #: core/fieldtypes/class-fieldtypes-textarea.php:64
4815
  msgctxt "form-fields admin"
4817
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
4818
  "switch it unless you know what you're doing."
4819
  msgstr ""
4820
+ "<b> Utilisateurs avancés seulement ! </ b> Sauf si vous avez été dit de "
4821
  "changer cela, ne le coupez pas sauf si vous savez ce que vous faites."
4822
 
4823
  #: core/fieldtypes/class-fieldtypes-textarea.php:65
4824
  msgctxt "form-fields admin"
4825
  msgid "Apply \"the_content\" filter before displaying this field?"
4826
+ msgstr "Appliquer le filtre \"the_content \" avant d'annoncer ce champ?"
4827
 
4828
  #: core/fieldtypes/class-fieldtypes-textfield.php:5
4829
  msgctxt "form-fields api"
4838
  #: core/fieldtypes/class-fieldtypes-twitter.php:6
4839
  msgctxt "form-fields api"
4840
  msgid "Social Site (Twitter handle)"
4841
+ msgstr "Réseaux sociaux (Page Twitter)"
4842
 
4843
  #: core/fieldtypes/class-fieldtypes-url.php:5
4844
  msgctxt "form-fields api"
4848
  #: core/fieldtypes/class-fieldtypes-url.php:22
4849
  msgctxt "form-fields admin"
4850
  msgid "Open link in a new window?"
4851
+ msgstr "Ouvrir le lien dans une nouvelle fenêtre?"
4852
 
4853
  #: core/fieldtypes/class-fieldtypes-url.php:25
4854
  msgctxt "form-fields admin"
4930
 
4931
  #: core/form-fields.php:324
4932
  msgid "Business Contact Email"
4933
+ msgstr "E-mail de contact de l'entreprise"
4934
 
4935
  #: core/form-fields.php:326
4936
  msgid "Business Tags"
4962
  #: core/form-fields.php:456
4963
  msgctxt "form-fields-api"
4964
  msgid "Decimal Number Validator"
4965
+ msgstr "Validateur de nombre décimal"
4966
 
4967
  #: core/form-fields.php:457
4968
  msgctxt "form-fields-api"
4992
  #: core/form-fields.php:520
4993
  msgctxt "form-fields-api validation"
4994
  msgid "%s must be a number. Decimal values are not allowed."
4995
+ msgstr "%s doit être un nombre. Les valeurs décimales ne sont pas autorisées."
4996
 
4997
  #: core/form-fields.php:526
4998
  msgctxt "form-fields-api validation"
5016
 
5017
  #: core/gateways-authorize-net.php:19
5018
  msgid "Activate Authorize.net?"
5019
+ msgstr "Activer Authorize.net ?"
5020
 
5021
  #: core/gateways-authorize-net.php:25
5022
  msgid "Login ID"
5042
  "The payment gateway didn't accept your credit card or billing information. "
5043
  "The following reason was given: \"%s\"."
5044
  msgstr ""
5045
+ "La plate-forme de paiement n'a pas accepté votre carte de crédit ou vos "
5046
  "informations de facturation. La raison est la suivante: \"%s \"."
5047
 
5048
  #: core/gateways-authorize-net.php:96
5057
  #: core/gateways-authorize-net.php:99 core/gateways-authorize-net.php:122
5058
  msgctxt "authorize-net"
5059
  msgid "Payment was rejected. The following reason was given: \"%s\"."
5060
+ msgstr "Votre paiement a été rejeté. La raison est la suivante: \"%s \"."
5061
 
5062
  #: core/gateways-authorize-net.php:116
5063
  #, fuzzy
5118
  #: core/helpers/class-themes-updater.php:125
5119
  msgctxt "themes"
5120
  msgid "Updating theme..."
5121
+ msgstr "Mise à jour du thème..."
5122
 
5123
  #: core/helpers/class-themes-updater.php:126
 
5124
  msgctxt "themes"
5125
  msgid "Theme updated."
5126
+ msgstr "Thème mis à jour"
5127
 
5128
  #: core/helpers/class-themes-updater.php:128
5129
  msgctxt "themes"
5130
  msgid "New version available (<b>%s</b>). <a>Update now.</a>"
5131
  msgstr ""
5132
+ "Nouvelle version disponible (<b>%s</b>). <a>Mettre à jour maintenant.</a>"
5133
 
5134
  #: core/helpers/class-themes-updater.php:156
 
5135
  msgctxt "themes"
5136
  msgid "Could not update theme: %s"
5137
+ msgstr "Impossible de mettre à jour le thème: %s."
5138
 
5139
  #: core/helpers/class-themes-updater.php:162
 
5140
  msgctxt "themes"
5141
  msgid "Theme was updated sucessfully."
5142
+ msgstr "Le thème a été mis à jour avec succès."
5143
 
5144
  #: core/installer.php:42
5145
  msgctxt "default category name"
5147
  msgstr "Général"
5148
 
5149
  #: core/installer.php:50
 
5150
  msgctxt "installer"
5151
  msgid "Default Fee"
5152
+ msgstr " Frais par défaut"
5153
 
5154
  #: core/installer.php:484
5155
  msgctxt "installer"
5158
  "incompatible with the current version of Business Directory. Please update "
5159
  "the Regions module."
5160
  msgstr ""
5161
+ "<b>Business Directory Plugin - Le module de régions</b> a été désactivé car "
5162
+ "il est incompatible avec la version actuelle du plugin. Veuillez mettre à "
5163
+ "jour le module."
5164
 
5165
  #: core/installer.php:550
5166
  msgctxt "installer"
5194
  msgid "Listing upgrade to featured"
5195
  msgstr "Mise à jour des annonces vers prioritaire"
5196
 
5197
+ #: core/installer.php:941
5198
  msgid "Business Directory - Manual Upgrade Required"
5199
  msgstr "Business Directory - Mise à jour manuelle requise"
5200
 
5201
+ #: core/installer.php:943
5202
  msgid ""
5203
  "Business Directory features are currently disabled because the plugin needs "
5204
  "to perform a manual upgrade before continuing."
5207
  "désactivés car le plugin a besoin d'effectuer une mise à jour manuelle avant "
5208
  "de poursuivre."
5209
 
5210
+ #: core/installer.php:945
5211
  msgid "Perform Manual Upgrade"
5212
  msgstr "Effectuer la mise à jour manuelle"
5213
 
5214
+ #: core/installer.php:961 core/installer.php:962 core/installer.php:973
5215
  msgid "Business Directory - Manual Upgrade"
5216
  msgstr "Business Directory - Mise à jour manuelle"
5217
 
5218
+ #: core/installer.php:977
5219
  msgid ""
5220
  "Business Directory features are currently disabled because the plugin needs "
5221
  "to perform a manual upgrade before it can be used."
5224
  "désactivées car le plugin a besoin d'effectuer une mise à jour manuelle afin "
5225
  "d'être pleinement utilisable."
5226
 
5227
+ #: core/installer.php:979
5228
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5229
  msgstr ""
5230
+ "Cliquez sur \"Démarrer la mise à jour\" et patientez jusqu'à la fin du "
5231
  "processus."
5232
 
5233
+ #: core/installer.php:982
5234
  msgctxt "manual-upgrade"
5235
  msgid "Start Upgrade"
5236
+ msgstr "Démarrer la mise à jour"
5237
 
5238
+ #: core/installer.php:984
5239
  msgctxt "manual-upgrade"
5240
  msgid "Pause Upgrade"
5241
+ msgstr "Mettre la mise à jour en pause"
5242
 
5243
+ #: core/installer.php:990
5244
  msgctxt "manual-upgrade"
5245
  msgid ""
5246
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
5247
  "available."
5248
  msgstr ""
5249
+ "La mise à jour s'est bien effectuée. Le plugin Business Directory est "
5250
  "maintenant disponible et fonctionnel."
5251
 
5252
+ #: core/installer.php:993
5253
  msgctxt "manual-upgrade"
5254
  msgid "Go to \"Directory Admin\""
5255
  msgstr "Aller à \"Administrateur de l'annuaire\""
5257
  #: core/licensing.php:43 core/licensing.php:65 core/licensing.php:66
5258
  msgctxt "settings"
5259
  msgid "Licenses"
5260
+ msgstr "Licences"
5261
 
5262
  #: core/licensing.php:46
5263
  msgctxt "settings"
5314
  #: core/licensing.php:259
5315
  msgctxt "licensing"
5316
  msgid "Remind me later"
5317
+ msgstr "Rappelez-le moi plus tard"
5318
 
5319
  #: core/licensing.php:261
5320
  msgctxt "licensing"
5348
  msgstr ""
5349
  "Le <b>%s </b> passerelle est actif mais n'est pas correctement configuré. La "
5350
  "passerelle ne sera pas disponible jusqu'à ce que les problèmes suivants "
5351
+ "soient corrigés: <b>%s </b>. <br/> Vérifiez les <a href=\"%s\"> paramètres "
5352
+ "de paiement </a>."
5353
 
5354
  #: core/payment.php:119
5355
  msgctxt "admin"
5359
  "payment settings. Until you change this, the directory will operate in "
5360
  "<i>Free Mode</i>."
5361
  msgstr ""
5362
+ "Vous avez activé les paiements mais aucune passerelle n'est actif et "
5363
  "correctement configurée. Allez à <a href=\"%s\"> gérer les options - "
5364
  "Paiement </a> pour modifier les paramètres de paiement. Jusqu'à ce que vous "
5365
  "modifiez cela, le répertoire fonctionnera en <i> Mode libre </ i>."
5387
  "récurrents (comme PayPal) soit activé, les renouvellements automatiques "
5388
  "seront désactivées."
5389
 
5390
+ # Traduction ambigue, à améliorer.
5391
  #: core/payment.php:135
5392
  msgid ""
5393
  "You have payments enabled but there are no fees available. Users won't be "
5394
  "able to post listings. Please <a href=\"fees\">create some fees</a> or <a "
5395
  "href=\"settings\">configure the Directory</a> to operate in \"Free Mode\"."
5396
  msgstr ""
5397
+ "Vous avez les paiements activés mais il n'y a pas de frais disponible. Users "
5398
+ "won't be able to post listings. Merci <a href=\"fees\">de créer quelques "
5399
+ "frais</a> ou <a href=\"settings\">configurer l'annuaire</a> pour opérer en "
5400
+ "\"Mode Free\"."
5401
 
5402
  #: core/payment.php:169
5403
  msgctxt "payments-api"
5412
  #: core/payment.php:177
5413
  msgctxt "payments-api"
5414
  msgid "Your transaction has been approved."
5415
+ msgstr "Votre transaction a été approuvée."
5416
 
5417
  #: core/payment.php:363
5418
  msgctxt "payments"
5448
  "Method\" to select another payment method and try again."
5449
  msgstr ""
5450
  "Le paiement a été rejeté par la passerelle de paiement. Veuillez contacter "
5451
+ "l'administrateur du site si vous pensez qu'il y a une erreur ou cliquez sur "
5452
  "\"Changer de Paiement \" pour sélectionner une autre méthode de paiement et "
5453
  "essayez à nouveau."
5454
 
5487
  msgid "Featured Listing"
5488
  msgstr "Annonce sélectionnée"
5489
 
5490
+ #: core/templates/listings.tpl.php:6 core/templates/search.tpl.php:17
5491
  #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:21
5492
  msgctxt "templates"
5493
  msgid "No listings found."
5505
  msgid "Next &raquo;"
5506
  msgstr "Suivant &raquo;"
5507
 
5508
+ #: core/templates/search.tpl.php:3 templates/search-form.tpl.php:15
5509
+ #: templates/search.tpl.php:6
5510
+ msgctxt "search"
5511
+ msgid "Search"
5512
+ msgstr "Rechercher"
5513
+
5514
+ #: core/templates/search.tpl.php:10 templates/search.tpl.php:14
5515
+ msgctxt "search"
5516
+ msgid "Search Results"
5517
+ msgstr "Résultats de la recherche"
5518
+
5519
+ #: core/templates/search.tpl.php:20 templates/manage-listings.tpl.php:11
5520
+ #: templates/search.tpl.php:24
5521
+ msgctxt "templates"
5522
+ msgid "Return to directory"
5523
+ msgstr "Retourner vers l'annuaire"
5524
+
5525
+ #: core/templates-ui.php:162
5526
  msgctxt "templates"
5527
  msgid "No listing categories found."
5528
  msgstr "Aucune catégorie d'annonce trouvée"
5529
 
5530
+ #: core/templates-ui.php:235
5531
  msgctxt "templates"
5532
  msgid "Advanced Search"
5533
  msgstr "Recherche avancée"
5534
 
5535
+ #: core/templates-ui.php:261 core/templates-ui.php:286
5536
  msgctxt "templates sort"
5537
  msgid "Sort By:"
5538
  msgstr "Trier par:"
5539
 
5540
+ #: core/templates-ui.php:280
5541
  msgctxt "sort"
5542
  msgid "Reset"
5543
  msgstr "Réinitialiser"
5544
 
5545
+ #: core/templates-ui.php:302
5546
  msgctxt "sort"
5547
  msgid "(Reset)"
5548
  msgstr "(Réinitialiser)"
5549
 
5550
+ #: core/themes.php:607
5551
  msgctxt "themes"
5552
  msgid "ZIP file is not a valid BD theme file."
5553
  msgstr "Le fichier ZIP n'est pas un fichier de thème valide"
5554
 
5555
+ #: core/themes.php:613
5556
  msgctxt "themes"
5557
  msgid "Could not create themes directory."
5558
  msgstr "Impossible de créer le répertoire de thèmes"
5559
 
5560
+ #: core/themes.php:621
5561
  msgctxt "themes"
5562
  msgid "Could not remove previous theme directory \"%s\"."
5563
  msgstr "Impossible de supprimer le dossier de thème précédent \"%s\"."
5564
 
5565
+ #: core/themes.php:627
5566
  msgctxt "themes"
5567
  msgid "Could not move new theme into theme directory."
5568
  msgstr "Impossible de déplacer le nouveau thème dans le dossier à thèmes"
5595
  #: core/utils.php:195
5596
  msgctxt "utils"
5597
  msgid "Unkown error while uploading file."
5598
+ msgstr "Une erreur inconnue est survenu lors de l'upload du fichier."
5599
 
5600
  #: core/utils.php:214
5601
  msgctxt "utils"
5651
  "Payments are not allowed on the non-secure version of this site. Please "
5652
  "<a>continue to the secure server to proceed with your payment</a>."
5653
  msgstr ""
5654
+ "Les paiements ne sont pas autorisés sur la version non-sécurisée du site. "
5655
  "Veuillez <a> continuer vers le serveur sécurisé afin de procéder à votre "
5656
  "paiement</a>."
5657
 
5687
  #: core/view-delete-listing.php:23
5688
  msgctxt "delete listing"
5689
  msgid "Your listing has been deleted."
5690
+ msgstr "Votre annonce a été effacée."
5691
 
5692
  #: core/view-listing-contact.php:48
5693
  msgctxt "contact-message"
5697
  #: core/view-listing-contact.php:51
5698
  msgctxt "contact-message"
5699
  msgid "Please enter a valid email."
5700
+ msgstr "Veuillez entrer un e-mail valide."
5701
 
5702
  #: core/view-listing-contact.php:54
5703
  msgctxt "contact-message"
5704
  msgid "You did not enter a message."
5705
+ msgstr "Vous n'avez pas entré de message."
5706
 
5707
  #: core/view-listing-contact.php:57
5708
  msgctxt "contact-message"
5740
  #: core/view-listing-contact.php:192
5741
  msgctxt "contact-message"
5742
  msgid "There was a problem encountered. Your message has not been sent"
5743
+ msgstr "Un problème est survenu. Votre message n'a pas été envoyé"
5744
 
5745
  #: core/view-listing-contact.php:195
5746
  msgctxt "contact-message"
5771
  "e-mail message."
5772
  msgstr ""
5773
  "Votre ID de renouvellement est invalide. Veuillez utiliser l'URL que vous "
5774
+ "avez reçu dans l'e-mail de renouvellement."
5775
 
5776
  #: core/view-renew-listing.php:47
5777
  msgctxt "renewal"
5799
  "Because you are on a recurring fee plan you don't have to renew your listing "
5800
  "right now as this will be handled automatically when renewal comes."
5801
  msgstr ""
5802
+ "Étant donné que vous êtes sur un plan de frais récurrents vous n'avez pas à "
5803
  "renouveler votre inscription immédiatement, cela sera géré automatiquement "
5804
  "lorsque le renouvellement surviendra."
5805
 
5838
  "listing at this time. Listings cannot be added until you assign categories "
5839
  "to the business directory."
5840
  msgstr ""
5841
+ "Il n'y a pas encore de catégorie affectées à l'annuaire professionnel. Vous "
5842
  "devez affecter quelques catégories à l'annuaire professionnel. Seuls les "
5843
+ "administrateurs peuvent voir ce message. Les utilisateurs ordinaires voient "
5844
  "un message indiquant qu'ils ne peuvent ajouter leur annonce pour le moment. "
5845
+ "Les annonces ne peuvent pas être ajoutées tant que vous n'avez pas attribuer "
5846
  "des catégories à l'annuaire professionnel."
5847
 
5848
  #: core/view-submit-listing.php:31
5852
  "is not the first time you see this warning, please ask the site "
5853
  "administrator to set up one or more categories inside the Directory."
5854
  msgstr ""
5855
+ "Votre annonce ne peut être ajoutée pour le moment. Veuillez réessayer plus "
5856
  "tard. Si vous avez déjà vu cette annonce, veuillez prévenir l'administrateur "
5857
+ "du site pour installer une catégorie supplémentaire dans l'annuaire."
5858
 
5859
  #: core/view-submit-listing.php:43
5860
  msgctxt "templates"
5864
  #: core/view-submit-listing.php:58
5865
  msgctxt "templates"
5866
  msgid "Edit Your Listing"
5867
+ msgstr "Éditer votre annonce"
5868
 
5869
  #: core/view-submit-listing.php:58
5870
  msgctxt "templates"
5876
  msgid ""
5877
  "You are logged in as an administrator. Any payment steps will be skipped."
5878
  msgstr ""
5879
+ "Vous êtes connecté en tant qu'administrateur. Toutes les étapes de paiement "
5880
+ "seront passées."
5881
 
5882
  #: core/view-submit-listing.php:205
5883
  msgctxt "templates"
5884
  msgid "Please select a fee option for the \"%s\" category."
5885
+ msgstr "Veuillez sélectionner une option de frais pour la catégorie \"%s\"."
5886
 
5887
  #: core/view-submit-listing.php:273
5888
  msgctxt "templates"
5889
  msgid "Please agree to the Terms and Conditions."
5890
+ msgstr "Veuillez accepter les conditions d'utilisation"
5891
 
5892
  #: core/view-submit-listing.php:279
5893
  msgctxt "templates"
5897
  #: core/view-submit-listing.php:296
5898
  msgctxt "templates"
5899
  msgid "Read our Terms and Conditions"
5900
+ msgstr "Lisez nos conditions d'utilisation"
5901
 
5902
  #: core/view-submit-listing.php:301
5903
  msgctxt "templates"
5904
  msgid "Terms and Conditions:"
5905
+ msgstr "Conditions d'utilisation:"
5906
 
5907
  #: core/view-submit-listing.php:312
5908
  msgctxt "templates"
5909
  msgid "I agree to the Terms and Conditions"
5910
+ msgstr "Je suis en accord avec les conditions d'utilisation"
5911
 
5912
  #: core/view-submit-listing.php:449
5913
  msgctxt "listings"
5917
  #: core/view-submit-listing.php:452
5918
  msgctxt "listings"
5919
  msgid "(recurring)"
5920
+ msgstr "(récurrent)"
5921
 
5922
  #: core/view-submit-listing.php:462 core/view-upgrade-listing.php:54
5923
  msgctxt "submit"
5927
  #: core/view-submit-listing.php:495
5928
  msgctxt "submit_state"
5929
  msgid "Invalid submit state."
5930
+ msgstr "État de soumission invalide"
5931
 
5932
  #: core/view-upgrade-listing.php:21
5933
  msgctxt "listing upgrade"
5951
  "You need to create a page with the [businessdirectory] shortcode for the "
5952
  "Business Directory plugin to work correctly."
5953
  msgstr ""
5954
+ "Vous devez créer une page avec la balise [businessdirectory] pour que le "
5955
  "plugin Business Directory fonctionne correctement."
5956
 
5957
  #: core/views.php:34
5963
  msgid "This is just a preview. The listing has not been published yet."
5964
  msgstr ""
5965
  "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
5966
+ "publiée."
5967
 
5968
  #: core/views.php:369
5969
  msgctxt "templates"
5970
  msgid "Listings tagged: %s"
5971
+ msgstr "Annonces étiquetées: %s"
5972
 
5973
+ #: core/views.php:489
5974
  msgctxt "templates"
5975
  msgid ""
5976
  "There are no categories assigned to the business directory yet. You need to "
5979
  "listings in the directory. Listings cannot be added until you assign "
5980
  "categories to the business directory."
5981
  msgstr ""
5982
+ "Il n'y a pas encore de catégorie affectées à l'annuaire professionnel. Vous "
5983
  "devez affecter quelques catégories à l'annuaire professionnel. Seuls les "
5984
+ "administrateurs peuvent voir ce message. Les utilisateurs ordinaires voient "
5985
  "un message indiquant qu'ils ne peuvent ajouter leur annonce pour le moment. "
5986
  "Les annonces ne peuvent pas être ajoutés tant que vous n'avez pas attribuer "
5987
  "des catégories à l'annuaire professionnel."
5988
 
5989
+ #: core/views.php:491
5990
  msgctxt "templates"
5991
  msgid "There are currently no listings in the directory."
5992
  msgstr "Il n'y a actuellement aucune annonce dans l'annuaire."
5993
 
5994
+ #: core/views.php:509
5995
  msgctxt "templates"
5996
  msgid ""
5997
  "You have \"Hide Empty Categories\" on and some categories that don't have "
5999
  "site. If you didn't want that, click <a>here</a> to change the setting."
6000
  msgstr ""
6001
  "Vous avez \"Cacher les catégories vides \" et certaines catégories qui ne "
6002
+ "possèdent pas d'annonces. Cela signifie qu'ils ne seront pas visibles sur le "
6003
+ "frontal votre site. Si cela ne correspond pas à votre souhait, cliquez </a> "
6004
+ "ici <a> pour modifier le paramétrage."
6005
 
6006
  #: core/widget-featured-listings.php:11
6007
  msgctxt "widgets"
6008
  msgid "Business Directory - Featured Listings"
6009
+ msgstr "Business Directory - Annonces prioritaires"
6010
 
6011
  #: core/widget-featured-listings.php:12
6012
  msgctxt "widgets"
6013
  msgid "Displays a list of the featured/sticky listings in the directory."
6014
  msgstr ""
6015
+ "Affiche une liste des annonces prioritaires/récurrentes dans l'annuaire."
6016
 
6017
  #: core/widget-featured-listings.php:14
6018
  msgctxt "widgets"
6022
  #: core/widget-featured-listings.php:23
6023
  msgctxt "widgets"
6024
  msgid "Display listings in random order"
6025
+ msgstr "Afficher les annonces de façon aléatoire"
6026
 
6027
  #: core/widget-latest-listings.php:11
6028
  msgctxt "widgets"
6033
  msgctxt "widgets"
6034
  msgid "Displays a list of the latest listings in the Business Directory."
6035
  msgstr ""
6036
+ "Afficher une liste des dernières annonces dans l'annuaire professionnel."
6037
 
6038
  #: core/widget-latest-listings.php:14
6039
  msgctxt "widgets"
6048
  #: core/widget-random-listings.php:12
6049
  msgctxt "widgets"
6050
  msgid "Displays a list of random listings from the Business Directory."
6051
+ msgstr "Afficher une liste d'annonces aléatoires de l'annuaire professionnel."
 
6052
 
6053
  #: core/widget-random-listings.php:14
6054
  msgctxt "widgets"
6064
  msgctxt "widgets"
6065
  msgid "Displays a search form to look for Business Directory listings."
6066
  msgstr ""
6067
+ "Afficher un formulaire de recherche pour les annonces de Business Directory."
 
6068
 
6069
  #: core/widget-search.php:18
6070
  msgctxt "widgets"
6094
  #: core/widget-search.php:50
6095
  msgctxt "widgets"
6096
  msgid "Display the following fields in the form."
6097
+ msgstr "Afficher les champs suivants dans le formulaire."
6098
 
6099
  #: core/widget-search.php:102
6100
  msgctxt "widgets"
6229
  #: templates/billing-information-form.tpl.php:127
6230
  msgctxt "checkout form"
6231
  msgid "ZIP Code:"
6232
+ msgstr "Code postal:"
6233
 
6234
  #: templates/billing-information-form.tpl.php:137
6235
  msgctxt "WPBDM"
6264
  "Please visit <a>Manage recurring payments</a> to review your current "
6265
  "recurring payments."
6266
  msgstr ""
6267
+ "Veuillez visiter <a>Gérer les paiements récurrents</a> pour vérifier vos "
6268
  "paiement récurrents actuelles."
6269
 
6270
  #: templates/delete-listing-confirm.tpl.php:18
6275
  #: templates/delete-listing-confirm.tpl.php:19
6276
  msgctxt "delete listing"
6277
  msgid "Are you sure you want to do this?"
6278
+ msgstr "Êtes-vous sûr de vouloir faire ça ?"
6279
 
6280
  #: templates/delete-listing-confirm.tpl.php:24
6281
  msgctxt "delete listing"
6352
  "You are currently logged in as %s. Your message will be sent using your "
6353
  "logged in contact email."
6354
  msgstr ""
6355
+ "Vous êtes actuellement connecté en tant que %s. Votre message sera envoyé en "
6356
+ "utilisant votre compte email."
6357
 
6358
  #: templates/listing-contactform.tpl.php:23
6359
  msgctxt "templates"
6398
  #: templates/manage-listings.tpl.php:9
6399
  msgctxt "templates"
6400
  msgid "You do not currently have any listings in the directory."
6401
+ msgstr "Vous n'avez actuellement aucune annonce dans l'annuaire."
 
 
 
 
 
6402
 
6403
  #: templates/manage-recurring-cancel.tpl.php:1
6404
  msgctxt "manage recurring"
6445
  msgid "Listing"
6446
  msgstr "Annonce"
6447
 
6448
+ # Je proposerais plutôt "Plan de financement" au lieu de "Plan de frais"
6449
  #: templates/manage-recurring.tpl.php:6
6450
  msgctxt "manage subscriptions"
6451
  msgid "Subscription / Fee Plan"
6487
  msgstr "Images autorisées"
6488
 
6489
  #: templates/parts/category-fee-selection.tpl.php:28
 
6490
  msgctxt "templates"
6491
  msgid "There are no fees available for this category."
6492
+ msgstr "Veuillez sélectionner une option de frais pour la catégorie \"%s\"."
6493
 
6494
  #: templates/parts/category-fee-selection.tpl.php:50
6495
  msgctxt "templates"
6545
  "registering, you will receive an activation email. Be sure to check your "
6546
  "spam if you don't see it in your email within 60 minutes."
6547
  msgstr ""
6548
+ "Vous n'êtes pas connecté actuellement. Veuillez d'abord vous connecter ou "
6549
+ "vous inscrire. Lors de l'inscription, vous recevrez un e-mail d'activation. "
6550
+ "Si vous ne recevez pas de message dans votre boîte de réception, pensez à "
6551
+ "vérifier vos autres dossiers (indésirable, spam, inconnu) dans les 60 "
6552
+ "minutes qui suivent votre inscription."
6553
 
6554
  #: templates/parts/login-required.tpl.php:10
6555
  msgctxt "templates"
6559
  #: templates/parts/login-required.tpl.php:31
6560
  msgctxt "templates"
6561
  msgid "Not yet registered?"
6562
+ msgstr "Pas encore inscrit ?"
6563
 
6564
  #: templates/parts/login-required.tpl.php:33
6565
  msgctxt "templates"
6566
  msgid "Lost your password?"
6567
+ msgstr "Mot de passe perdu ?"
6568
 
6569
  #: templates/payment/payment_items.tpl.php:5
6570
  msgctxt "payment_items"
6585
  msgctxt "templates"
6586
  msgid "We can not process your payment at this moment. Please try again later."
6587
  msgstr ""
6588
+ "Nous ne pouvons procéder à votre paiement pour le moment. Veuillez réessayer "
6589
+ "ultérieurement."
6590
 
6591
  #: templates/renew-listing.tpl.php:3
6592
  msgctxt "templates"
6593
  msgid "Renew Listing"
6594
+ msgstr "Renouveler l'annonce"
6595
 
6596
  #: templates/renew-listing.tpl.php:7
6597
  msgctxt "renewal"
6613
  "Please select a fee option or click \"Do not renew my listing\" to cancel "
6614
  "your renewal."
6615
  msgstr ""
6616
+ "Veuillez sélectionner une option de frais ou cliquez sur \"Ne pas renouveler "
6617
+ "mon annonce\" pour annuler votre renouvellement."
6618
 
6619
  #: templates/renew-listing.tpl.php:22
6620
  #: templates/submit-listing/category-selection.tpl.php:8
6633
  #: templates/renew-listing.tpl.php:26
6634
  msgctxt "templates"
6635
  msgid "Do not renew my listing"
6636
+ msgstr "Ne pas renouveler mon annonce"
6637
 
6638
  #: templates/search-form.tpl.php:3
6639
  msgctxt "templates"
6645
  msgid "Clear"
6646
  msgstr "Effacer"
6647
 
 
 
 
 
 
 
 
 
 
 
6648
  #: templates/submit-listing/category-selection.tpl.php:1
6649
  msgctxt "templates"
6650
  msgid "Category Selection"
6651
+ msgstr "Sélection de la catégorie"
6652
 
6653
  #: templates/submit-listing/done.tpl.php:1
6654
  msgctxt "templates"
6706
  "Would you like to make your fee renew automatically at the end of the period?"
6707
  msgstr ""
6708
  "Voulez vous que vos frais se renouvellent automatiquement à la fin de la "
6709
+ "période ?"
6710
 
6711
  #: templates/submit-listing/images-single.tpl.php:18
6712
  msgctxt "templates"
6809
  "There is a new version of %1$s available. <a target=\"_blank\" class="
6810
  "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
6811
  msgstr ""
6812
+ "Une nouvelle version de %1$s est disponible. <a target=\"_blank\" class="
6813
+ "\"thickbox\" href=\"%2$s\">Voir les détails de la version %3$s</a>."
6814
 
6815
  #: vendors/edd/EDD_SL_Plugin_Updater.php:185
6816
  msgid ""
6818
  "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
6819
  "\">update now</a>."
6820
  msgstr ""
6821
+ "Une nouvelle version de %1$s est disponible. <a target=\"_blank\" class="
6822
+ "\"thickbox\" href=\"%2$s\">Voir les détails de la version %3$s</a> ou <a "
6823
+ "href=\"%4$s\">mettre à jour maintenant/a>."
6824
 
6825
  #: vendors/edd/EDD_SL_Plugin_Updater.php:325
6826
  msgid "You do not have permission to install plugin updates"
6850
  msgid "http://businessdirectoryplugin.com"
6851
  msgstr "http://businessdirectoryplugin.com"
6852
 
6853
+ #~ msgctxt "themes"
6854
+ #~ msgid ""
6855
+ #~ "For better results, \"%s\" theme suggests the following form fields to be "
6856
+ #~ "created."
6857
+ #~ msgstr ""
6858
+ #~ "For better results, \"%s\" theme suggests the following form fields to be "
6859
+ #~ "created."
6860
+
6861
+ #~ msgctxt "themes"
6862
+ #~ msgid "Create suggested fields"
6863
+ #~ msgstr "Créer ces champs"
6864
+
6865
  #~ msgctxt "fees admin"
6866
  #~ msgid "You do not have any listing fees setup yet."
6867
  #~ msgstr "Vous n'avez aucun droits d'inscription mis en place actuellement."
languages/WPBDM.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Business Directory Plugin package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Business Directory Plugin 3.7.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-02-02 17:14:20+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -64,7 +64,7 @@ msgstr ""
64
  msgid "Downgrade to %s"
65
  msgstr ""
66
 
67
- #: admin/class-admin-listings.php:215 admin/class-admin-listings.php:395
68
  msgctxt "admin actions"
69
  msgid "Upgrade to Featured"
70
  msgstr ""
@@ -78,32 +78,32 @@ msgctxt "admin"
78
  msgid "Expired"
79
  msgstr ""
80
 
81
- #: admin/class-admin-listings.php:331
82
  msgctxt "admin actions"
83
  msgid "Edit Listing"
84
  msgstr ""
85
 
86
- #: admin/class-admin-listings.php:334
87
  msgctxt "admin actions"
88
  msgid "Delete Listing"
89
  msgstr ""
90
 
91
- #: admin/class-admin-listings.php:393
92
  msgctxt "admin actions"
93
  msgid "Publish Listing"
94
  msgstr ""
95
 
96
- #: admin/class-admin-listings.php:396
97
  msgctxt "admin actions"
98
  msgid "Downgrade to Normal"
99
  msgstr ""
100
 
101
- #: admin/class-admin-listings.php:398
102
  msgctxt "admin actions"
103
  msgid "Mark as Paid"
104
  msgstr ""
105
 
106
- #: admin/class-admin-listings.php:400
107
  msgctxt "admin actions"
108
  msgid "Renew Listing"
109
  msgstr ""
@@ -420,83 +420,78 @@ msgstr ""
420
  #: admin/class-themes-admin.php:150
421
  msgctxt "themes"
422
  msgid ""
423
- "For better results, \"%s\" theme suggests the following form fields to be "
424
- "created."
425
  msgstr ""
426
 
427
- #: admin/class-themes-admin.php:157
428
  msgctxt "themes"
429
- msgid "Dismiss this warning"
430
  msgstr ""
431
 
432
- #: admin/class-themes-admin.php:160
433
- msgctxt "themes"
434
- msgid "Create suggested fields"
435
- msgstr ""
436
-
437
- #: admin/class-themes-admin.php:167
438
  msgctxt "themes"
439
  msgid "Suggested fields created successfully."
440
  msgstr ""
441
 
442
- #: admin/class-themes-admin.php:170
443
  msgctxt "themes"
444
  msgid "Theme installed successfully."
445
  msgstr ""
446
 
447
- #: admin/class-themes-admin.php:173
448
  msgctxt "themes"
449
  msgid "Theme was deleted sucessfully."
450
  msgstr ""
451
 
452
- #: admin/class-themes-admin.php:176
453
  msgctxt "themes"
454
  msgid "Could not delete theme directory. Check permissions."
455
  msgstr ""
456
 
457
- #: admin/class-themes-admin.php:202
458
  msgctxt "themes"
459
  msgid "Please upload a valid theme file."
460
  msgstr ""
461
 
462
- #: admin/class-themes-admin.php:209
463
  msgctxt "themes"
464
  msgid "Could not move \"%s\" to a temporary directory."
465
  msgstr ""
466
 
467
- #: admin/class-themes-admin.php:310 admin/class-themes-admin.php:371
468
  #: core/licensing.php:127 core/licensing.php:159
469
  msgctxt "licensing"
470
  msgid "Could not contact licensing server"
471
  msgstr ""
472
 
473
- #: admin/class-themes-admin.php:316 core/licensing.php:132
474
  #: core/licensing.php:166
475
  msgctxt "licensing"
476
  msgid "License key is invalid"
477
  msgstr ""
478
 
479
- #: admin/class-themes-admin.php:321 core/licensing.php:330
480
  msgctxt "licensing"
481
  msgid "Could not activate license: %s."
482
  msgstr ""
483
 
484
- #: admin/class-themes-admin.php:334 core/licensing.php:332
485
  msgctxt "licensing"
486
  msgid "License activated"
487
  msgstr ""
488
 
489
- #: admin/class-themes-admin.php:377
490
  msgctxt "licensing"
491
  msgid "Invalid response from server"
492
  msgstr ""
493
 
494
- #: admin/class-themes-admin.php:394 core/licensing.php:350
495
  msgctxt "licensing"
496
  msgid "License deactivated"
497
  msgstr ""
498
 
499
- #: admin/class-themes-admin.php:410
500
  msgctxt "themes"
501
  msgid "Activate your <a>license key</a> to use this theme."
502
  msgstr ""
@@ -754,7 +749,7 @@ msgctxt "fees order"
754
  msgid "Custom Order"
755
  msgstr ""
756
 
757
- #: admin/fees.php:341
758
  msgctxt "fees admin"
759
  msgid "Fee updated."
760
  msgstr ""
@@ -881,67 +876,67 @@ msgctxt "form-fields admin"
881
  msgid "Required fields created successfully."
882
  msgstr ""
883
 
884
- #: admin/form-fields.php:286
885
  msgctxt "form-fields admin"
886
  msgid "Title"
887
  msgstr ""
888
 
889
- #: admin/form-fields.php:287
890
  msgctxt "form-fields admin"
891
  msgid "Category"
892
  msgstr ""
893
 
894
- #: admin/form-fields.php:288
895
  msgctxt "form-fields admin"
896
  msgid "Excerpt"
897
  msgstr ""
898
 
899
- #: admin/form-fields.php:289
900
  msgctxt "form-fields admin"
901
  msgid "Content"
902
  msgstr ""
903
 
904
- #: admin/form-fields.php:290
905
  msgctxt "form-fields admin"
906
  msgid "Tags"
907
  msgstr ""
908
 
909
- #: admin/form-fields.php:291
910
  msgctxt "form-fields admin"
911
  msgid "Address"
912
  msgstr ""
913
 
914
- #: admin/form-fields.php:292
915
  msgctxt "form-fields admin"
916
  msgid "ZIP Code"
917
  msgstr ""
918
 
919
- #: admin/form-fields.php:293
920
  msgctxt "form-fields admin"
921
  msgid "FAX Number"
922
  msgstr ""
923
 
924
- #: admin/form-fields.php:294
925
  msgctxt "form-fields admin"
926
  msgid "Phone Number"
927
  msgstr ""
928
 
929
- #: admin/form-fields.php:295
930
  msgctxt "form-fields admin"
931
  msgid "Ratings Field"
932
  msgstr ""
933
 
934
- #: admin/form-fields.php:296
935
  msgctxt "form-fields admin"
936
  msgid "Twitter"
937
  msgstr ""
938
 
939
- #: admin/form-fields.php:297
940
  msgctxt "form-fields admin"
941
  msgid "Website"
942
  msgstr ""
943
 
944
- #: admin/form-fields.php:318
945
  msgctxt "form-fields admin"
946
  msgid "Tags updated."
947
  msgstr ""
@@ -1940,13 +1935,25 @@ msgctxt "form-fields admin"
1940
  msgid "Theme Tags"
1941
  msgstr ""
1942
 
1943
- #: admin/templates/form-fields-tags.tpl.php:21
1944
  msgctxt "form-fields admin"
1945
- msgid "Field Tag"
 
 
1946
  msgstr ""
1947
 
1948
  #: admin/templates/form-fields-tags.tpl.php:22
1949
  msgctxt "form-fields admin"
 
 
 
 
 
 
 
 
 
 
1950
  msgid "Field"
1951
  msgstr ""
1952
 
@@ -1978,7 +1985,7 @@ msgctxt "form-fields admin"
1978
  msgid "Please see the <a>Form Fields documentation</a> for more details."
1979
  msgstr ""
1980
 
1981
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.7.2) #-#-#-#-#
1982
  #. Plugin Name of the plugin/theme
1983
  #: admin/templates/header.tpl.php:4
1984
  msgid "Business Directory Plugin"
@@ -2633,80 +2640,80 @@ msgctxt "tracking"
2633
  msgid "Allow Tracking"
2634
  msgstr ""
2635
 
2636
- #: business-directory-plugin.php:702
2637
  msgctxt "admin plugins"
2638
  msgid "Settings"
2639
  msgstr ""
2640
 
2641
- #: business-directory-plugin.php:712
2642
  msgctxt "post type general name"
2643
  msgid "Directory"
2644
  msgstr ""
2645
 
2646
- #: business-directory-plugin.php:713
2647
  msgctxt "post type singular name"
2648
  msgid "Directory"
2649
  msgstr ""
2650
 
2651
- #: business-directory-plugin.php:714
2652
  msgctxt "listing"
2653
  msgid "Add New Listing"
2654
  msgstr ""
2655
 
2656
- #: business-directory-plugin.php:715
2657
  msgctxt "post type"
2658
  msgid "Add New Listing"
2659
  msgstr ""
2660
 
2661
- #: business-directory-plugin.php:716 core/compatibility/deprecated.php:255
2662
  msgid "Edit Listing"
2663
  msgstr ""
2664
 
2665
- #: business-directory-plugin.php:717
2666
  msgid "New Listing"
2667
  msgstr ""
2668
 
2669
- #: business-directory-plugin.php:718
2670
  msgid "View Listing"
2671
  msgstr ""
2672
 
2673
- #: business-directory-plugin.php:719
2674
  msgid "Search Listings"
2675
  msgstr ""
2676
 
2677
- #: business-directory-plugin.php:720
2678
  msgid "No listings found"
2679
  msgstr ""
2680
 
2681
- #: business-directory-plugin.php:721
2682
  msgid "No listings found in trash"
2683
  msgstr ""
2684
 
2685
- #: business-directory-plugin.php:743
2686
  msgid "Directory Categories"
2687
  msgstr ""
2688
 
2689
- #: business-directory-plugin.php:856 business-directory-plugin.php:863
2690
  msgctxt "rss feed"
2691
  msgid "%s Feed"
2692
  msgstr ""
2693
 
2694
- #: business-directory-plugin.php:1265
2695
  msgctxt "title"
2696
  msgid "Submit A Listing"
2697
  msgstr ""
2698
 
2699
- #: business-directory-plugin.php:1275
2700
  msgctxt "title"
2701
  msgid "Find a Listing"
2702
  msgstr ""
2703
 
2704
- #: business-directory-plugin.php:1285
2705
  msgctxt "title"
2706
  msgid "View All Listings"
2707
  msgstr ""
2708
 
2709
- #: business-directory-plugin.php:1305
2710
  msgctxt "title"
2711
  msgid "Listings tagged: %s"
2712
  msgstr ""
@@ -2850,12 +2857,12 @@ msgctxt "listing"
2850
  msgid "(Fee Unavailable)"
2851
  msgstr ""
2852
 
2853
- #: core/class-listings-api.php:300
2854
  msgctxt "notify email"
2855
  msgid "[%s] New listing notification"
2856
  msgstr ""
2857
 
2858
- #: core/class-listings-api.php:319
2859
  msgctxt "notify email"
2860
  msgid "[%s] Listing edit notification"
2861
  msgstr ""
@@ -4322,20 +4329,20 @@ msgstr ""
4322
  msgid "Upgrade Listing"
4323
  msgstr ""
4324
 
4325
- #: core/compatibility/deprecated.php:214 core/templates-ui.php:183
4326
  msgid "Submit A Listing"
4327
  msgstr ""
4328
 
4329
- #: core/compatibility/deprecated.php:227 core/templates-ui.php:192
4330
  msgid "View Listings"
4331
  msgstr ""
4332
 
4333
- #: core/compatibility/deprecated.php:238 core/templates-ui.php:202
4334
  msgid "Directory"
4335
  msgstr ""
4336
 
4337
  #: core/compatibility/templates/wpbusdirman-index-categories.php:12
4338
- #: core/templates-ui.php:229
4339
  msgctxt "templates"
4340
  msgid "Search Listings"
4341
  msgstr ""
@@ -4851,52 +4858,52 @@ msgctxt "installer"
4851
  msgid "Listing upgrade to featured"
4852
  msgstr ""
4853
 
4854
- #: core/installer.php:933
4855
  msgid "Business Directory - Manual Upgrade Required"
4856
  msgstr ""
4857
 
4858
- #: core/installer.php:935
4859
  msgid ""
4860
  "Business Directory features are currently disabled because the plugin needs "
4861
  "to perform a manual upgrade before continuing."
4862
  msgstr ""
4863
 
4864
- #: core/installer.php:937
4865
  msgid "Perform Manual Upgrade"
4866
  msgstr ""
4867
 
4868
- #: core/installer.php:953 core/installer.php:954 core/installer.php:965
4869
  msgid "Business Directory - Manual Upgrade"
4870
  msgstr ""
4871
 
4872
- #: core/installer.php:969
4873
  msgid ""
4874
  "Business Directory features are currently disabled because the plugin needs "
4875
  "to perform a manual upgrade before it can be used."
4876
  msgstr ""
4877
 
4878
- #: core/installer.php:971
4879
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4880
  msgstr ""
4881
 
4882
- #: core/installer.php:974
4883
  msgctxt "manual-upgrade"
4884
  msgid "Start Upgrade"
4885
  msgstr ""
4886
 
4887
- #: core/installer.php:976
4888
  msgctxt "manual-upgrade"
4889
  msgid "Pause Upgrade"
4890
  msgstr ""
4891
 
4892
- #: core/installer.php:982
4893
  msgctxt "manual-upgrade"
4894
  msgid ""
4895
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
4896
  "available."
4897
  msgstr ""
4898
 
4899
- #: core/installer.php:985
4900
  msgctxt "manual-upgrade"
4901
  msgid "Go to \"Directory Admin\""
4902
  msgstr ""
@@ -5094,7 +5101,7 @@ msgctxt "templates"
5094
  msgid "Featured Listing"
5095
  msgstr ""
5096
 
5097
- #: core/templates/listings.tpl.php:6
5098
  #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:21
5099
  msgctxt "templates"
5100
  msgid "No listings found."
@@ -5112,47 +5119,64 @@ msgctxt "templates"
5112
  msgid "Next &raquo;"
5113
  msgstr ""
5114
 
5115
- #: core/templates-ui.php:159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5116
  msgctxt "templates"
5117
  msgid "No listing categories found."
5118
  msgstr ""
5119
 
5120
- #: core/templates-ui.php:232
5121
  msgctxt "templates"
5122
  msgid "Advanced Search"
5123
  msgstr ""
5124
 
5125
- #: core/templates-ui.php:258 core/templates-ui.php:283
5126
  msgctxt "templates sort"
5127
  msgid "Sort By:"
5128
  msgstr ""
5129
 
5130
- #: core/templates-ui.php:277
5131
  msgctxt "sort"
5132
  msgid "Reset"
5133
  msgstr ""
5134
 
5135
- #: core/templates-ui.php:299
5136
  msgctxt "sort"
5137
  msgid "(Reset)"
5138
  msgstr ""
5139
 
5140
- #: core/themes.php:597
5141
  msgctxt "themes"
5142
  msgid "ZIP file is not a valid BD theme file."
5143
  msgstr ""
5144
 
5145
- #: core/themes.php:603
5146
  msgctxt "themes"
5147
  msgid "Could not create themes directory."
5148
  msgstr ""
5149
 
5150
- #: core/themes.php:611
5151
  msgctxt "themes"
5152
  msgid "Could not remove previous theme directory \"%s\"."
5153
  msgstr ""
5154
 
5155
- #: core/themes.php:617
5156
  msgctxt "themes"
5157
  msgid "Could not move new theme into theme directory."
5158
  msgstr ""
@@ -5512,7 +5536,7 @@ msgctxt "templates"
5512
  msgid "Listings tagged: %s"
5513
  msgstr ""
5514
 
5515
- #: core/views.php:486
5516
  msgctxt "templates"
5517
  msgid ""
5518
  "There are no categories assigned to the business directory yet. You need to "
@@ -5522,12 +5546,12 @@ msgid ""
5522
  "categories to the business directory."
5523
  msgstr ""
5524
 
5525
- #: core/views.php:488
5526
  msgctxt "templates"
5527
  msgid "There are currently no listings in the directory."
5528
  msgstr ""
5529
 
5530
- #: core/views.php:506
5531
  msgctxt "templates"
5532
  msgid ""
5533
  "You have \"Hide Empty Categories\" on and some categories that don't have "
@@ -5914,11 +5938,6 @@ msgctxt "templates"
5914
  msgid "You do not currently have any listings in the directory."
5915
  msgstr ""
5916
 
5917
- #: templates/manage-listings.tpl.php:11 templates/search.tpl.php:24
5918
- msgctxt "templates"
5919
- msgid "Return to directory"
5920
- msgstr ""
5921
-
5922
  #: templates/manage-recurring-cancel.tpl.php:1
5923
  msgctxt "manage recurring"
5924
  msgid "Manage Recurring Payments - Cancel"
@@ -6152,16 +6171,6 @@ msgctxt "search"
6152
  msgid "Clear"
6153
  msgstr ""
6154
 
6155
- #: templates/search-form.tpl.php:15 templates/search.tpl.php:6
6156
- msgctxt "search"
6157
- msgid "Search"
6158
- msgstr ""
6159
-
6160
- #: templates/search.tpl.php:14
6161
- msgctxt "search"
6162
- msgid "Search Results"
6163
- msgstr ""
6164
-
6165
  #: templates/submit-listing/category-selection.tpl.php:1
6166
  msgctxt "templates"
6167
  msgid "Category Selection"
2
  # This file is distributed under the same license as the Business Directory Plugin package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Business Directory Plugin 3.7.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-02-24 20:36:14+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
64
  msgid "Downgrade to %s"
65
  msgstr ""
66
 
67
+ #: admin/class-admin-listings.php:215 admin/class-admin-listings.php:394
68
  msgctxt "admin actions"
69
  msgid "Upgrade to Featured"
70
  msgstr ""
78
  msgid "Expired"
79
  msgstr ""
80
 
81
+ #: admin/class-admin-listings.php:330
82
  msgctxt "admin actions"
83
  msgid "Edit Listing"
84
  msgstr ""
85
 
86
+ #: admin/class-admin-listings.php:333
87
  msgctxt "admin actions"
88
  msgid "Delete Listing"
89
  msgstr ""
90
 
91
+ #: admin/class-admin-listings.php:392
92
  msgctxt "admin actions"
93
  msgid "Publish Listing"
94
  msgstr ""
95
 
96
+ #: admin/class-admin-listings.php:395
97
  msgctxt "admin actions"
98
  msgid "Downgrade to Normal"
99
  msgstr ""
100
 
101
+ #: admin/class-admin-listings.php:397
102
  msgctxt "admin actions"
103
  msgid "Mark as Paid"
104
  msgstr ""
105
 
106
+ #: admin/class-admin-listings.php:399
107
  msgctxt "admin actions"
108
  msgid "Renew Listing"
109
  msgstr ""
420
  #: admin/class-themes-admin.php:150
421
  msgctxt "themes"
422
  msgid ""
423
+ "%s requires that you tag your existing fields to match some places we want "
424
+ "to put your data on the theme. Below are fields we think are missing."
425
  msgstr ""
426
 
427
+ #: admin/class-themes-admin.php:159
428
  msgctxt "themes"
429
+ msgid "Map My Fields"
430
  msgstr ""
431
 
432
+ #: admin/class-themes-admin.php:166
 
 
 
 
 
433
  msgctxt "themes"
434
  msgid "Suggested fields created successfully."
435
  msgstr ""
436
 
437
+ #: admin/class-themes-admin.php:169
438
  msgctxt "themes"
439
  msgid "Theme installed successfully."
440
  msgstr ""
441
 
442
+ #: admin/class-themes-admin.php:172
443
  msgctxt "themes"
444
  msgid "Theme was deleted sucessfully."
445
  msgstr ""
446
 
447
+ #: admin/class-themes-admin.php:175
448
  msgctxt "themes"
449
  msgid "Could not delete theme directory. Check permissions."
450
  msgstr ""
451
 
452
+ #: admin/class-themes-admin.php:201
453
  msgctxt "themes"
454
  msgid "Please upload a valid theme file."
455
  msgstr ""
456
 
457
+ #: admin/class-themes-admin.php:208
458
  msgctxt "themes"
459
  msgid "Could not move \"%s\" to a temporary directory."
460
  msgstr ""
461
 
462
+ #: admin/class-themes-admin.php:309 admin/class-themes-admin.php:370
463
  #: core/licensing.php:127 core/licensing.php:159
464
  msgctxt "licensing"
465
  msgid "Could not contact licensing server"
466
  msgstr ""
467
 
468
+ #: admin/class-themes-admin.php:315 core/licensing.php:132
469
  #: core/licensing.php:166
470
  msgctxt "licensing"
471
  msgid "License key is invalid"
472
  msgstr ""
473
 
474
+ #: admin/class-themes-admin.php:320 core/licensing.php:330
475
  msgctxt "licensing"
476
  msgid "Could not activate license: %s."
477
  msgstr ""
478
 
479
+ #: admin/class-themes-admin.php:333 core/licensing.php:332
480
  msgctxt "licensing"
481
  msgid "License activated"
482
  msgstr ""
483
 
484
+ #: admin/class-themes-admin.php:376
485
  msgctxt "licensing"
486
  msgid "Invalid response from server"
487
  msgstr ""
488
 
489
+ #: admin/class-themes-admin.php:393 core/licensing.php:350
490
  msgctxt "licensing"
491
  msgid "License deactivated"
492
  msgstr ""
493
 
494
+ #: admin/class-themes-admin.php:409
495
  msgctxt "themes"
496
  msgid "Activate your <a>license key</a> to use this theme."
497
  msgstr ""
749
  msgid "Custom Order"
750
  msgstr ""
751
 
752
+ #: admin/fees.php:339
753
  msgctxt "fees admin"
754
  msgid "Fee updated."
755
  msgstr ""
876
  msgid "Required fields created successfully."
877
  msgstr ""
878
 
879
+ #: admin/form-fields.php:288
880
  msgctxt "form-fields admin"
881
  msgid "Title"
882
  msgstr ""
883
 
884
+ #: admin/form-fields.php:289
885
  msgctxt "form-fields admin"
886
  msgid "Category"
887
  msgstr ""
888
 
889
+ #: admin/form-fields.php:290
890
  msgctxt "form-fields admin"
891
  msgid "Excerpt"
892
  msgstr ""
893
 
894
+ #: admin/form-fields.php:291
895
  msgctxt "form-fields admin"
896
  msgid "Content"
897
  msgstr ""
898
 
899
+ #: admin/form-fields.php:292
900
  msgctxt "form-fields admin"
901
  msgid "Tags"
902
  msgstr ""
903
 
904
+ #: admin/form-fields.php:293
905
  msgctxt "form-fields admin"
906
  msgid "Address"
907
  msgstr ""
908
 
909
+ #: admin/form-fields.php:294
910
  msgctxt "form-fields admin"
911
  msgid "ZIP Code"
912
  msgstr ""
913
 
914
+ #: admin/form-fields.php:295
915
  msgctxt "form-fields admin"
916
  msgid "FAX Number"
917
  msgstr ""
918
 
919
+ #: admin/form-fields.php:296
920
  msgctxt "form-fields admin"
921
  msgid "Phone Number"
922
  msgstr ""
923
 
924
+ #: admin/form-fields.php:297
925
  msgctxt "form-fields admin"
926
  msgid "Ratings Field"
927
  msgstr ""
928
 
929
+ #: admin/form-fields.php:298
930
  msgctxt "form-fields admin"
931
  msgid "Twitter"
932
  msgstr ""
933
 
934
+ #: admin/form-fields.php:299
935
  msgctxt "form-fields admin"
936
  msgid "Website"
937
  msgstr ""
938
 
939
+ #: admin/form-fields.php:320
940
  msgctxt "form-fields admin"
941
  msgid "Tags updated."
942
  msgstr ""
1935
  msgid "Theme Tags"
1936
  msgstr ""
1937
 
1938
+ #: admin/templates/form-fields-tags.tpl.php:19
1939
  msgctxt "form-fields admin"
1940
+ msgid ""
1941
+ "Before you create fields, make sure you've mapped all of your EXISTING ones "
1942
+ "first, otherwise you'll appear to be \"missing data\" on your listings."
1943
  msgstr ""
1944
 
1945
  #: admin/templates/form-fields-tags.tpl.php:22
1946
  msgctxt "form-fields admin"
1947
+ msgid "Create Missing Fields"
1948
+ msgstr ""
1949
+
1950
+ #: admin/templates/form-fields-tags.tpl.php:30
1951
+ msgctxt "form-fields admin"
1952
+ msgid "Field Tag"
1953
+ msgstr ""
1954
+
1955
+ #: admin/templates/form-fields-tags.tpl.php:31
1956
+ msgctxt "form-fields admin"
1957
  msgid "Field"
1958
  msgstr ""
1959
 
1985
  msgid "Please see the <a>Form Fields documentation</a> for more details."
1986
  msgstr ""
1987
 
1988
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.7.4) #-#-#-#-#
1989
  #. Plugin Name of the plugin/theme
1990
  #: admin/templates/header.tpl.php:4
1991
  msgid "Business Directory Plugin"
2640
  msgid "Allow Tracking"
2641
  msgstr ""
2642
 
2643
+ #: business-directory-plugin.php:716
2644
  msgctxt "admin plugins"
2645
  msgid "Settings"
2646
  msgstr ""
2647
 
2648
+ #: business-directory-plugin.php:726
2649
  msgctxt "post type general name"
2650
  msgid "Directory"
2651
  msgstr ""
2652
 
2653
+ #: business-directory-plugin.php:727
2654
  msgctxt "post type singular name"
2655
  msgid "Directory"
2656
  msgstr ""
2657
 
2658
+ #: business-directory-plugin.php:728
2659
  msgctxt "listing"
2660
  msgid "Add New Listing"
2661
  msgstr ""
2662
 
2663
+ #: business-directory-plugin.php:729
2664
  msgctxt "post type"
2665
  msgid "Add New Listing"
2666
  msgstr ""
2667
 
2668
+ #: business-directory-plugin.php:730 core/compatibility/deprecated.php:255
2669
  msgid "Edit Listing"
2670
  msgstr ""
2671
 
2672
+ #: business-directory-plugin.php:731
2673
  msgid "New Listing"
2674
  msgstr ""
2675
 
2676
+ #: business-directory-plugin.php:732
2677
  msgid "View Listing"
2678
  msgstr ""
2679
 
2680
+ #: business-directory-plugin.php:733
2681
  msgid "Search Listings"
2682
  msgstr ""
2683
 
2684
+ #: business-directory-plugin.php:734
2685
  msgid "No listings found"
2686
  msgstr ""
2687
 
2688
+ #: business-directory-plugin.php:735
2689
  msgid "No listings found in trash"
2690
  msgstr ""
2691
 
2692
+ #: business-directory-plugin.php:757
2693
  msgid "Directory Categories"
2694
  msgstr ""
2695
 
2696
+ #: business-directory-plugin.php:870 business-directory-plugin.php:877
2697
  msgctxt "rss feed"
2698
  msgid "%s Feed"
2699
  msgstr ""
2700
 
2701
+ #: business-directory-plugin.php:1295
2702
  msgctxt "title"
2703
  msgid "Submit A Listing"
2704
  msgstr ""
2705
 
2706
+ #: business-directory-plugin.php:1305
2707
  msgctxt "title"
2708
  msgid "Find a Listing"
2709
  msgstr ""
2710
 
2711
+ #: business-directory-plugin.php:1315
2712
  msgctxt "title"
2713
  msgid "View All Listings"
2714
  msgstr ""
2715
 
2716
+ #: business-directory-plugin.php:1335
2717
  msgctxt "title"
2718
  msgid "Listings tagged: %s"
2719
  msgstr ""
2857
  msgid "(Fee Unavailable)"
2858
  msgstr ""
2859
 
2860
+ #: core/class-listings-api.php:308
2861
  msgctxt "notify email"
2862
  msgid "[%s] New listing notification"
2863
  msgstr ""
2864
 
2865
+ #: core/class-listings-api.php:327
2866
  msgctxt "notify email"
2867
  msgid "[%s] Listing edit notification"
2868
  msgstr ""
4329
  msgid "Upgrade Listing"
4330
  msgstr ""
4331
 
4332
+ #: core/compatibility/deprecated.php:214 core/templates-ui.php:186
4333
  msgid "Submit A Listing"
4334
  msgstr ""
4335
 
4336
+ #: core/compatibility/deprecated.php:227 core/templates-ui.php:195
4337
  msgid "View Listings"
4338
  msgstr ""
4339
 
4340
+ #: core/compatibility/deprecated.php:238 core/templates-ui.php:205
4341
  msgid "Directory"
4342
  msgstr ""
4343
 
4344
  #: core/compatibility/templates/wpbusdirman-index-categories.php:12
4345
+ #: core/templates-ui.php:232
4346
  msgctxt "templates"
4347
  msgid "Search Listings"
4348
  msgstr ""
4858
  msgid "Listing upgrade to featured"
4859
  msgstr ""
4860
 
4861
+ #: core/installer.php:941
4862
  msgid "Business Directory - Manual Upgrade Required"
4863
  msgstr ""
4864
 
4865
+ #: core/installer.php:943
4866
  msgid ""
4867
  "Business Directory features are currently disabled because the plugin needs "
4868
  "to perform a manual upgrade before continuing."
4869
  msgstr ""
4870
 
4871
+ #: core/installer.php:945
4872
  msgid "Perform Manual Upgrade"
4873
  msgstr ""
4874
 
4875
+ #: core/installer.php:961 core/installer.php:962 core/installer.php:973
4876
  msgid "Business Directory - Manual Upgrade"
4877
  msgstr ""
4878
 
4879
+ #: core/installer.php:977
4880
  msgid ""
4881
  "Business Directory features are currently disabled because the plugin needs "
4882
  "to perform a manual upgrade before it can be used."
4883
  msgstr ""
4884
 
4885
+ #: core/installer.php:979
4886
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4887
  msgstr ""
4888
 
4889
+ #: core/installer.php:982
4890
  msgctxt "manual-upgrade"
4891
  msgid "Start Upgrade"
4892
  msgstr ""
4893
 
4894
+ #: core/installer.php:984
4895
  msgctxt "manual-upgrade"
4896
  msgid "Pause Upgrade"
4897
  msgstr ""
4898
 
4899
+ #: core/installer.php:990
4900
  msgctxt "manual-upgrade"
4901
  msgid ""
4902
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
4903
  "available."
4904
  msgstr ""
4905
 
4906
+ #: core/installer.php:993
4907
  msgctxt "manual-upgrade"
4908
  msgid "Go to \"Directory Admin\""
4909
  msgstr ""
5101
  msgid "Featured Listing"
5102
  msgstr ""
5103
 
5104
+ #: core/templates/listings.tpl.php:6 core/templates/search.tpl.php:17
5105
  #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:21
5106
  msgctxt "templates"
5107
  msgid "No listings found."
5119
  msgid "Next &raquo;"
5120
  msgstr ""
5121
 
5122
+ #: core/templates/search.tpl.php:3 templates/search-form.tpl.php:15
5123
+ #: templates/search.tpl.php:6
5124
+ msgctxt "search"
5125
+ msgid "Search"
5126
+ msgstr ""
5127
+
5128
+ #: core/templates/search.tpl.php:10 templates/search.tpl.php:14
5129
+ msgctxt "search"
5130
+ msgid "Search Results"
5131
+ msgstr ""
5132
+
5133
+ #: core/templates/search.tpl.php:20 templates/manage-listings.tpl.php:11
5134
+ #: templates/search.tpl.php:24
5135
+ msgctxt "templates"
5136
+ msgid "Return to directory"
5137
+ msgstr ""
5138
+
5139
+ #: core/templates-ui.php:162
5140
  msgctxt "templates"
5141
  msgid "No listing categories found."
5142
  msgstr ""
5143
 
5144
+ #: core/templates-ui.php:235
5145
  msgctxt "templates"
5146
  msgid "Advanced Search"
5147
  msgstr ""
5148
 
5149
+ #: core/templates-ui.php:261 core/templates-ui.php:286
5150
  msgctxt "templates sort"
5151
  msgid "Sort By:"
5152
  msgstr ""
5153
 
5154
+ #: core/templates-ui.php:280
5155
  msgctxt "sort"
5156
  msgid "Reset"
5157
  msgstr ""
5158
 
5159
+ #: core/templates-ui.php:302
5160
  msgctxt "sort"
5161
  msgid "(Reset)"
5162
  msgstr ""
5163
 
5164
+ #: core/themes.php:607
5165
  msgctxt "themes"
5166
  msgid "ZIP file is not a valid BD theme file."
5167
  msgstr ""
5168
 
5169
+ #: core/themes.php:613
5170
  msgctxt "themes"
5171
  msgid "Could not create themes directory."
5172
  msgstr ""
5173
 
5174
+ #: core/themes.php:621
5175
  msgctxt "themes"
5176
  msgid "Could not remove previous theme directory \"%s\"."
5177
  msgstr ""
5178
 
5179
+ #: core/themes.php:627
5180
  msgctxt "themes"
5181
  msgid "Could not move new theme into theme directory."
5182
  msgstr ""
5536
  msgid "Listings tagged: %s"
5537
  msgstr ""
5538
 
5539
+ #: core/views.php:489
5540
  msgctxt "templates"
5541
  msgid ""
5542
  "There are no categories assigned to the business directory yet. You need to "
5546
  "categories to the business directory."
5547
  msgstr ""
5548
 
5549
+ #: core/views.php:491
5550
  msgctxt "templates"
5551
  msgid "There are currently no listings in the directory."
5552
  msgstr ""
5553
 
5554
+ #: core/views.php:509
5555
  msgctxt "templates"
5556
  msgid ""
5557
  "You have \"Hide Empty Categories\" on and some categories that don't have "
5938
  msgid "You do not currently have any listings in the directory."
5939
  msgstr ""
5940
 
 
 
 
 
 
5941
  #: templates/manage-recurring-cancel.tpl.php:1
5942
  msgctxt "manage recurring"
5943
  msgid "Manage Recurring Payments - Cancel"
6171
  msgid "Clear"
6172
  msgstr ""
6173
 
 
 
 
 
 
 
 
 
 
 
6174
  #: templates/submit-listing/category-selection.tpl.php:1
6175
  msgctxt "templates"
6176
  msgid "Category Selection"